diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 91f1551288..aa2702ac7d 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.746-200609 +Version: 7.0NG.746-200612 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 b7d12ad61d..878c9ebed3 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.746-200609" +pandora_version="7.0NG.746-200612" 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 8e7691ae39..54e0609e6e 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.746'; -use constant AGENT_BUILD => '200609'; +use constant AGENT_BUILD => '200612'; # 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 3ee225b4d2..3d794681e5 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.746 -%define release 200609 +%define release 200612 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 5d86f42c13..54661b8c5c 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.746 -%define release 200609 +%define release 200612 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 9a0b6c68ab..ab67a79eee 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.746" -PI_BUILD="200609" +PI_BUILD="200612" OS_NAME=`uname -s` FORCE=0 @@ -164,7 +164,7 @@ uninstall () { rm -f $DESTDIR/etc/logrotate.d/pandora_agent # Remove systemd service if exists - if [ $(systemctl --v | grep systemd | wc -l) != 0 ] + if [ `systemctl --v 2> /dev/null | grep systemd | wc -l` != 0 ] then PANDORA_AGENT_SERVICE="/etc/systemd/system/pandora_agent_daemon.service" rm -f $PANDORA_AGENT_SERVICE @@ -480,7 +480,7 @@ install () { fi # Create systemd service - if [ $(systemctl --v | grep systemd | wc -l) != 0 ] + if [ `systemctl --v 2> /dev/null | grep systemd | wc -l` != 0 ] then echo "Creating systemd service for pandora_agent_daemon" diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 6a7e527c5f..69cdcd335b 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200609} +{200612} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 4a74065ff8..2988bcc3ce 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.746(Build 200609)") +#define PANDORA_VERSION ("7.0NG.746(Build 200612)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 8420db0322..f939e85581 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.746(Build 200609))" + VALUE "ProductVersion", "(7.0NG.746(Build 200612))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 6fc8c22bb2..554a289b1b 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.746-200609 +Version: 7.0NG.746-200612 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 0c5a4417bb..37ec4980df 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.746-200609" +pandora_version="7.0NG.746-200612" package_pear=0 package_pandora=1 diff --git a/pandora_console/godmode/massive/massive_operations.php b/pandora_console/godmode/massive/massive_operations.php index 7393265a3b..6b9ee73f5a 100755 --- a/pandora_console/godmode/massive/massive_operations.php +++ b/pandora_console/godmode/massive/massive_operations.php @@ -271,7 +271,7 @@ ui_print_page_header( $help_header, true, $onheader, - true, + false, 'massivemodal' ); diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index 0562b478a1..a8776e6b04 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -367,11 +367,11 @@ if ($search) { $found = false; if (!empty($filter_search)) { - if (preg_match('/.*'.$filter_search.'.*/', $user_info['fullname']) != 0) { + if (preg_match('/.*'.strtolower($filter_search).'.*/', strtolower($user_info['fullname'])) != 0) { $found = true; } - if (preg_match('/.*'.$filter_search.'.*/', $user_info['id_user']) != 0) { + if (preg_match('/.*'.strtolower($filter_search).'.*/', strtolower($user_info['id_user'])) != 0) { $found = true; } diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 786ac47d9f..26a05a40a6 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC200609'; +$build_version = 'PC200612'; $pandora_version = 'v7.0NG.746'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 724fe11fd6..e68f49bfe7 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -3718,6 +3718,14 @@ function series_type_graph_array($data, $show_elements_graph) } } + if ((int) $value['min'] === PHP_INT_MAX) { + $value['min'] = 0; + } + + if ((int) $value['max'] === (-PHP_INT_MAX)) { + $value['max'] = 0; + } + $data_return['legend'][$key] .= __('Min:').remove_right_zeros( number_format( $value['min'], diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index 76e10533aa..ea2b7494da 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -1506,6 +1506,12 @@ function api_set_new_agent($thrash1, $thrash2, $other, $thrash3) return; } + if ((int) $other['data'][3] == 0) { + $agent_creation_error = __('The agent could not be created, for security reasons use a group another than 0'); + returnError('generic error', $agent_creation_error); + return; + } + $alias = io_safe_input(trim(preg_replace('/[\/\\\|%#&$]/', '', $other['data'][0]))); $direccion_agente = io_safe_input($other['data'][1]); $nombre_agente = hash('sha256', $direccion_agente.'|'.$direccion_agente.'|'.time().'|'.sprintf('%04d', rand(0, 10000))); @@ -2048,31 +2054,31 @@ function api_get_all_agents($thrash1, $thrash2, $other, $returnType) // Filter by status switch ($other['data'][2]) { case 'warning': - if ($status == 2) { + if ($status == AGENT_MODULE_STATUS_WARNING || $status == AGENT_MODULE_STATUS_WARNING_ALERT) { $result_agents[] = $agent; } break; case 'critical': - if ($status == 1) { + if ($status == AGENT_MODULE_STATUS_CRITICAL_BAD || $status == AGENT_MODULE_STATUS_CRITICAL_ALERT) { $result_agents[] = $agent; } break; case 'unknown': - if ($status == 3) { + if ($status == AGENT_MODULE_STATUS_UNKNOWN) { $result_agents[] = $agent; } break; case 'normal': - if ($status == 0) { + if ($status == AGENT_MODULE_STATUS_NORMAL || $status == AGENT_MODULE_STATUS_NORMAL_ALERT) { $result_agents[] = $agent; } break; case 'alert_fired': - if ($status == 4) { + if ($status == AGENT_STATUS_ALERT_FIRED || $status == AGENT_MODULE_STATUS_WARNING_ALERT || $status == AGENT_MODULE_STATUS_CRITICAL_ALERT || $status == AGENT_MODULE_STATUS_NORMAL_ALERT) { $result_agents[] = $agent; } break; diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index 7fad691c74..a5b442d69c 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -633,6 +633,14 @@ function events_update_status($id_evento, $status, $filter=null, $history=false) break; case EVENT_STATUS_VALIDATED: + events_change_owner( + $id_evento, + $config['id_user'], + false, + is_metaconsole() ? true : false, + $history + ); + $status_string = 'Validated'; break; @@ -1870,6 +1878,16 @@ function events_change_status( return false; } + if ($new_status == EVENT_STATUS_VALIDATED) { + events_change_owner( + $id_event, + $config['id_user'], + false, + $meta, + $history + ); + } + events_comment( $id_event, '', diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index a3cf4ac0a5..cf587f8081 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -369,11 +369,21 @@ if ($delete_file) { $config['filemanager']['message'] = ui_print_success_message(__('Deleted'), '', true); if (is_dir($filename)) { - rmdir($filename); - $config['filemanager']['delete'] = 1; + if (rmdir($filename)) { + $config['filemanager']['delete'] = 1; + } else { + $config['filemanager']['delete'] = 0; + } } else { - unlink($filename); - $config['filemanager']['delete'] = 1; + if (unlink($filename)) { + $config['filemanager']['delete'] = 1; + } else { + $config['filemanager']['delete'] = 0; + } + } + + if ($config['filemanager']['delete'] == 0) { + $config['filemanager']['message'] = ui_print_error_message(__('Deleted'), '', true); } } } @@ -743,7 +753,7 @@ function filemanager_file_explorer( if (($editor) && (!$readOnly)) { if (($typefile != 'bin') && ($typefile != 'pdf') && ($typefile != 'png') && ($typefile != 'jpg') - && ($typefile != 'iso') && ($typefile != 'docx') && ($typefile != 'doc') + && ($typefile != 'iso') && ($typefile != 'docx') && ($typefile != 'doc') && ($fileinfo['mime'] != MIME_DIR) ) { $hash = md5($fileinfo['realpath'].$config['dbpass']); $data[4] .= "".html_print_image('images/edit.png', true, ['style' => 'margin-top: 2px;', 'title' => __('Edit file')]).''; diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index f8d5fc91f8..98f3d5f581 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -2123,13 +2123,6 @@ function html_print_input_number(array $settings):string $settings['maxlength'] = 255; } - // Check Size. - if (isset($settings['size']) === false - || $settings['size'] === 0 - ) { - $settings['size'] = 255; - } - foreach ($settings as $attribute => $attr_value) { // Check valid attribute. if (in_array($attribute, $valid_attrs) === false) { diff --git a/pandora_console/include/functions_snmp_browser.php b/pandora_console/include/functions_snmp_browser.php index 2b14ac86b3..35e56e27b8 100644 --- a/pandora_console/include/functions_snmp_browser.php +++ b/pandora_console/include/functions_snmp_browser.php @@ -238,8 +238,17 @@ function snmp_browser_print_tree( /** * Build the SNMP tree for the given SNMP agent. * - * @param target_ip string IP of the SNMP agent. - * @param community string SNMP community to use. + * @param string $target_ip Target_ip. + * @param string $community Community. + * @param string $starting_oid Starting_oid. + * @param string $version Version. + * @param string $snmp3_auth_user Snmp3_auth_user. + * @param string $snmp3_security_level Snmp3_security_level. + * @param string $snmp3_auth_method Snmp3_auth_method. + * @param string $snmp3_auth_pass Snmp3_auth_pass. + * @param string $snmp3_privacy_method Snmp3_privacy_method. + * @param string $snmp3_privacy_pass Snmp3_privacy_pass. + * @param string|null $snmp3_context_engine_id Snmp3_context_engine_id. * * @return array The SNMP tree. */ @@ -253,7 +262,8 @@ function snmp_browser_get_tree( $snmp3_auth_method='', $snmp3_auth_pass='', $snmp3_privacy_method='', - $snmp3_privacy_pass='' + $snmp3_privacy_pass='', + $snmp3_context_engine_id=null ) { global $config; @@ -277,6 +287,7 @@ function snmp_browser_get_tree( default: $snmp_version = SNMP::VERSION_2c; + break; } $snmp_session = new SNMP($snmp_version, $target_ip, $community); @@ -284,10 +295,34 @@ function snmp_browser_get_tree( // Set security if SNMP Version is 3. if ($snmp_version == SNMP::VERSION_3) { - $snmp_session->setSecurity($snmp3_security_level, $snmp3_auth_method, $snmp3_auth_pass, $snmp3_privacy_method, $snmp3_privacy_pass); + $snmp_session->setSecurity( + $snmp3_security_level, + $snmp3_auth_method, + $snmp3_auth_pass, + $snmp3_privacy_method, + $snmp3_privacy_pass, + $community, + $snmp3_context_engine_id + ); } - snmp_read_mib($config['homedir'].'/attachment/mibs'); + $mibs_dir = $config['homedir'].'/attachment/mibs'; + $_dir = opendir($mibs_dir); + + // Future. Recomemended: Use a global config limit of MIBs loaded. + while (($mib_file = readdir($_dir)) !== false) { + if ($mib_file == '..' || $mib_file == '.') { + continue; + } + + $rs = snmp_read_mib($mibs_dir.'/'.$mib_file); + if ($rs !== true) { + error_log('Failed while reading MIB file: '.$mib_file); + } + } + + closedir($_dir); + $output = $snmp_session->walk($starting_oid); if ($output == false) { $output = $snmp_session->getError(); diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 2cddd5d8c0..a5cf2777f1 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -3596,11 +3596,7 @@ function visual_map_print_visual_map( $proportion_width = ($mapWidth / $layout['width']); if ($layout['background'] != 'None.png') { - if (is_metaconsole()) { - $backgroundImage = '/include/Image/image_functions.php?getFile=1&thumb=1&thumb_size='.$mapWidth.'x'.$mapHeight.'&file='.$config['homeurl'].'images/console/background/'.$layout['background']; - } else { $backgroundImage = '/include/Image/image_functions.php?getFile=1&thumb=1&thumb_size='.$mapWidth.'x'.$mapHeight.'&file='.$config['homedir'].'/images/console/background/'.($layout['background']); - } } } else { $mapWidth = $layout['width']; diff --git a/pandora_console/include/graphs/flot/jquery.flot.exportdata.pandora.js b/pandora_console/include/graphs/flot/jquery.flot.exportdata.pandora.js index 0b745d8ff5..6466a72835 100644 --- a/pandora_console/include/graphs/flot/jquery.flot.exportdata.pandora.js +++ b/pandora_console/include/graphs/flot/jquery.flot.exportdata.pandora.js @@ -1,227 +1,19 @@ (function ($) { var options = { - export: { - export_data: false, // or true - labels_long: null, - homeurl: '' - } - }; - + export: { + export_data: false, // or true + labels_long: null, + homeurl: "", + }, + }; + function init(plot) { plot.exportDataCSV = function (args) { //amount = plot.getOptions().export.type, //options = options || {}; // Options - var type = 'csv'; - type = type.toLowerCase().trim(); - - var graphData, - dataObject, - dataObjects = plot.getData(), - result = []; - - // Throw errors - var retrieveDataOject = function (dataObjects, custom) { - var result; - if (typeof dataObjects === 'undefined') - throw new Error('Empty parameter'); - - // Try to retrieve the avg set (not 100% reliable, I know) - if (dataObjects.length == 1) { - result = dataObjects.shift(); - } - if (dataObjects.length > 1) { - dataObjects.forEach(function (element) { - if(custom){ - if (/^Avg.:/i.test(element.label)){ - result = element; - } - } else { - result = element; - } - }); - - // If the avg set is missing, retrieve the first set - if (typeof result === 'undefined') - result = dataObjects.shift(); - } - - if (typeof result === 'undefined') - throw new Error('Empty result'); - - return result; - } - - // Throw errors - var processDataObject = function (dataObject) { - var result; - - if (typeof dataObject === 'undefined') - throw new Error('Empty parameter'); - - if (typeof dataObject.data === 'undefined' - || !(dataObject.data instanceof Array)) - throw new Error('Object malformed'); - - /* { - * head: [,,...,], - * data: [ - * [,,...,], - * [,,...,], - * ..., - * [,,...,], - * ] - * } - */ - if (type === 'csv') { - result = { - head: ['timestap', 'date', 'value', 'label'], - data: [] - }; - - dataObject.data.forEach(function (item, index) { - var timestap = item[0]; - - var d = new Date(item[0]); - var monthNames = [ - "Jan", "Feb", "Mar", - "Apr", "May", "Jun", - "Jul", "Aug", "Sep", - "Oct", "Nov", "Dec" - ]; - - date_format = (d.getDate() <10?'0':'') + d.getDate() + " " + - monthNames[d.getMonth()] + " " + - d.getFullYear() + " " + - (d.getHours()<10?'0':'') + d.getHours() + ":" + - (d.getMinutes()<10?'0':'') + d.getMinutes() + ":" + - (d.getSeconds()<10?'0':'') + d.getSeconds(); - - var date = date_format; - - var value = item[1]; - - var clean_label = plot.getOptions().export.labels_long[dataObject.label]; - clean_label = clean_label.replace( new RegExp(" ", "g"), " "); - result.data.push([timestap, date, value, clean_label]); - }); - } - /* [ - * { - * 'date': , - * 'value': - * } - * ], - * [ - * { - * 'date': , - * 'value': - * } - * ], - * ..., - * [ - * { - * 'date': , - * 'value': - * } - * ] - */ - else if (type === 'json') { - result = []; - - dataObject.data.forEach(function (item, index) { - var date = '', value = item[1]; - - // Long labels are preferred - if (typeof labels_long[index] !== 'undefined') - date = labels_long[index]; - else if (typeof labels[index] !== 'undefined') - date = labels[index]; - - result.push({ - 'date': date, - 'value': value, - 'label': dataObject.label - }); - }); - } - - if (typeof result === 'undefined') - throw new Error('Empty result'); - - return result; - } - - try { - var elements = []; - var custom_graph = $('#hidden-custom_graph').val(); - - if (custom_graph) { - dataObject = retrieveDataOject(dataObjects,0); - dataObjects.forEach(function (element) { - elements.push(processDataObject(element)); - }); - graphData = elements; - } - else { - dataObject = retrieveDataOject(dataObjects,1); - elements.push(processDataObject(dataObject)); - graphData = elements; - } - - // Transform the object data into a string - // cause PHP has limitations in the number - // of POST params received. - var graphDataStr = JSON.stringify(graphData); - - // Build form - var $form = $('
'), - $dataInput = $(''), - $typeInput = $(''), - $separatorInput = $(''), - $excelInput = $(''); - - $dataInput - .prop('name', 'data') - .prop('type', 'text') - .prop('value', graphDataStr); - - $typeInput - .prop('name', 'type') - .prop('type', 'text') - .prop('value', type); - - $separatorInput - .prop('name', 'separator') - .prop('type', 'text') - .prop('value', ';'); - - $excelInput - .prop('name', 'excel_encoding') - .prop('type', 'text') - .prop('value', 0); - - $form - .prop('method', 'POST') - .prop('action', plot.getOptions().export.homeurl + 'include/graphs/export_data.php') - .append($dataInput, $typeInput, $separatorInput, $excelInput) - .hide() - // Firefox made me write into the DOM for this :( - .appendTo('body') - .submit(); - } - catch (e) { - alert('There was an error exporting the data'); - } - } - - plot.exportDataJSON = function (args) { - //amount = plot.getOptions().export.type, - //options = options || {}; - - // Options - var type = 'json'; + var type = "csv"; type = type.toLowerCase().trim(); var graphData, @@ -233,8 +25,8 @@ var retrieveDataOject = function (dataObjects) { var result; - if (typeof dataObjects === 'undefined') - throw new Error('Empty parameter'); + if (typeof dataObjects === "undefined") + throw new Error("Empty parameter"); // Try to retrieve the avg set (not 100% reliable, I know) if (dataObjects.length == 1) { @@ -242,31 +34,30 @@ } if (dataObjects.length > 1) { dataObjects.forEach(function (element) { - if (/^Avg.:/i.test(element.label)) - result = element; + if (/^Avg.:/i.test(element.label)) result = element; }); // If the avg set is missing, retrieve the first set - if (typeof result === 'undefined') - result = dataObjects.shift(); + if (typeof result === "undefined") result = dataObjects.shift(); } - if (typeof result === 'undefined') - throw new Error('Empty result'); + if (typeof result === "undefined") throw new Error("Empty result"); return result; - } + }; // Throw errors var processDataObject = function (dataObject) { var result; - if (typeof dataObject === 'undefined') - throw new Error('Empty parameter'); + if (typeof dataObject === "undefined") + throw new Error("Empty parameter"); - if (typeof dataObject.data === 'undefined' - || !(dataObject.data instanceof Array)) - throw new Error('Object malformed'); + if ( + typeof dataObject.data === "undefined" || + !(dataObject.data instanceof Array) + ) + throw new Error("Object malformed"); /* { * head: [,,...,], @@ -278,74 +69,291 @@ * ] * } */ - if (type === 'csv') { - + if (type === "csv") { result = { - head: ['date', 'value','label'], - data: [] + head: ["timestap", "date", "value", "label"], + data: [], }; dataObject.data.forEach(function (item, index) { - var date = '', value = item[1]; + var timestap = item[0]; - // Long labels are preferred - if (typeof plot.getOptions().export.labels_long[index] !== 'undefined') - date = plot.getOptions().export.labels_long[index]; - else if (typeof labels[index] !== 'undefined') - date = labels[index]; + var d = new Date(item[0]); + var monthNames = [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec", + ]; - result.data.push([date, value,dataObject.label]); + date_format = + (d.getDate() < 10 ? "0" : "") + + d.getDate() + + " " + + monthNames[d.getMonth()] + + " " + + d.getFullYear() + + " " + + (d.getHours() < 10 ? "0" : "") + + d.getHours() + + ":" + + (d.getMinutes() < 10 ? "0" : "") + + d.getMinutes() + + ":" + + (d.getSeconds() < 10 ? "0" : "") + + d.getSeconds(); + + var date = date_format; + + var value = item[1]; + + var clean_label = plot.getOptions().export.labels_long[ + dataObject.label + ]; + clean_label = clean_label.replace(new RegExp(" ", "g"), " "); + result.data.push([timestap, date, value, clean_label]); }); - } - /* [ - * { - * 'date': , - * 'value': - * } - * ], - * [ - * { - * 'date': , - * 'value': - * } - * ], - * ..., - * [ - * { - * 'date': , - * 'value': - * } - * ] - */ - else if (type === 'json') { + } else if (type === "json") { + /* [ + * { + * 'date': , + * 'value': + * } + * ], + * [ + * { + * 'date': , + * 'value': + * } + * ], + * ..., + * [ + * { + * 'date': , + * 'value': + * } + * ] + */ result = []; dataObject.data.forEach(function (item, index) { - var date = '', value = item[1]; + var date = "", + value = item[1]; // Long labels are preferred - if (typeof labels_long[index] !== 'undefined') + if (typeof labels_long[index] !== "undefined") date = labels_long[index]; - else if (typeof labels[index] !== 'undefined') - date = labels[index]; + else if (typeof labels[index] !== "undefined") date = labels[index]; result.push({ - 'date': date, - 'value': value, - 'label': dataObject.label + date: date, + value: value, + label: dataObject.label, }); }); } - if (typeof result === 'undefined') - throw new Error('Empty result'); + if (typeof result === "undefined") throw new Error("Empty result"); return result; - } + }; try { var elements = []; - var custom_graph = $('input:hidden[name=custom_graph]').value; + dataObject = retrieveDataOject(dataObjects); + if (dataObject) { + elements.push(processDataObject(dataObject)); + } + dataObjects.forEach(function (element) { + elements.push(processDataObject(element)); + }); + graphData = elements; + + + // Transform the object data into a string + // cause PHP has limitations in the number + // of POST params received. + var graphDataStr = JSON.stringify(graphData); + + // Build form + var $form = $("
"), + $dataInput = $(""), + $typeInput = $(""), + $separatorInput = $(""), + $excelInput = $(""); + + $dataInput + .prop("name", "data") + .prop("type", "text") + .prop("value", graphDataStr); + + $typeInput + .prop("name", "type") + .prop("type", "text") + .prop("value", type); + + $separatorInput + .prop("name", "separator") + .prop("type", "text") + .prop("value", ";"); + + $excelInput + .prop("name", "excel_encoding") + .prop("type", "text") + .prop("value", 0); + + $form + .prop("method", "POST") + .prop( + "action", + plot.getOptions().export.homeurl + "include/graphs/export_data.php" + ) + .append($dataInput, $typeInput, $separatorInput, $excelInput) + .hide() + // Firefox made me write into the DOM for this :( + .appendTo("body") + .submit(); + } catch (e) { + alert("There was an error exporting the data"); + } + }; + + plot.exportDataJSON = function (args) { + //amount = plot.getOptions().export.type, + //options = options || {}; + + // Options + var type = "json"; + type = type.toLowerCase().trim(); + + var graphData, + dataObject, + dataObjects = plot.getData(), + result = []; + + // Throw errors + var retrieveDataOject = function (dataObjects) { + var result; + + if (typeof dataObjects === "undefined") + throw new Error("Empty parameter"); + + // Try to retrieve the avg set (not 100% reliable, I know) + if (dataObjects.length == 1) { + result = dataObjects.shift(); + } + if (dataObjects.length > 1) { + dataObjects.forEach(function (element) { + if (/^Avg.:/i.test(element.label)) result = element; + }); + + // If the avg set is missing, retrieve the first set + if (typeof result === "undefined") result = dataObjects.shift(); + } + + if (typeof result === "undefined") throw new Error("Empty result"); + + return result; + }; + + // Throw errors + var processDataObject = function (dataObject) { + var result; + + if (typeof dataObject === "undefined") + throw new Error("Empty parameter"); + + if ( + typeof dataObject.data === "undefined" || + !(dataObject.data instanceof Array) + ) + throw new Error("Object malformed"); + + /* { + * head: [,,...,], + * data: [ + * [,,...,], + * [,,...,], + * ..., + * [,,...,], + * ] + * } + */ + if (type === "csv") { + result = { + head: ["date", "value", "label"], + data: [], + }; + + dataObject.data.forEach(function (item, index) { + var date = "", + value = item[1]; + + // Long labels are preferred + if ( + typeof plot.getOptions().export.labels_long[index] !== "undefined" + ) + date = plot.getOptions().export.labels_long[index]; + else if (typeof labels[index] !== "undefined") date = labels[index]; + + result.data.push([date, value, dataObject.label]); + }); + } else if (type === "json") { + /* [ + * { + * 'date': , + * 'value': + * } + * ], + * [ + * { + * 'date': , + * 'value': + * } + * ], + * ..., + * [ + * { + * 'date': , + * 'value': + * } + * ] + */ + result = []; + + dataObject.data.forEach(function (item, index) { + var date = "", + value = item[1]; + + // Long labels are preferred + if (typeof labels_long[index] !== "undefined") + date = labels_long[index]; + else if (typeof labels[index] !== "undefined") date = labels[index]; + + result.push({ + date: date, + value: value, + label: dataObject.label, + }); + }); + } + + if (typeof result === "undefined") throw new Error("Empty result"); + + return result; + }; + + try { + var elements = []; + var custom_graph = $("input:hidden[name=custom_graph]").value; if (custom_graph) { dataObject = retrieveDataOject(dataObjects); @@ -353,8 +361,7 @@ elements.push(processDataObject(element)); }); graphData = elements; - } - else { + } else { dataObject = retrieveDataOject(dataObjects); elements.push(processDataObject(dataObject)); graphData = elements; @@ -366,51 +373,53 @@ var graphDataStr = JSON.stringify(graphData); // Build form - var $form = $('
'), - $dataInput = $(''), - $typeInput = $(''), - $separatorInput = $(''), - $excelInput = $(''); + var $form = $("
"), + $dataInput = $(""), + $typeInput = $(""), + $separatorInput = $(""), + $excelInput = $(""); $dataInput - .prop('name', 'data') - .prop('type', 'text') - .prop('value', graphDataStr); + .prop("name", "data") + .prop("type", "text") + .prop("value", graphDataStr); $typeInput - .prop('name', 'type') - .prop('type', 'text') - .prop('value', type); + .prop("name", "type") + .prop("type", "text") + .prop("value", type); $separatorInput - .prop('name', 'separator') - .prop('type', 'text') - .prop('value', ';'); + .prop("name", "separator") + .prop("type", "text") + .prop("value", ";"); $excelInput - .prop('name', 'excel_encoding') - .prop('type', 'text') - .prop('value', 0); + .prop("name", "excel_encoding") + .prop("type", "text") + .prop("value", 0); $form - .prop('method', 'POST') - .prop('action', plot.getOptions().export.homeurl + 'include/graphs/export_data.php') + .prop("method", "POST") + .prop( + "action", + plot.getOptions().export.homeurl + "include/graphs/export_data.php" + ) .append($dataInput, $typeInput, $separatorInput, $excelInput) .hide() // Firefox made me write into the DOM for this :( - .appendTo('body') + .appendTo("body") .submit(); + } catch (e) { + alert("There was an error exporting the data"); } - catch (e) { - alert('There was an error exporting the data'); - } - } + }; } - $.plot.plugins.push({ - init: init, - options: options, - name: 'exportdata', - version: '0.1' - }); -})(jQuery); \ No newline at end of file + $.plot.plugins.push({ + init: init, + options: options, + name: "exportdata", + version: "0.1", + }); +})(jQuery); diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js index 175173160c..48aaa94ee5 100644 --- a/pandora_console/include/graphs/flot/pandora.flot.js +++ b/pandora_console/include/graphs/flot/pandora.flot.js @@ -3009,7 +3009,7 @@ function number_format(number, force_integer, unit, short_data, divisor) { var decimals = 2; if (unit == "KB") { - return number + unit; + return Math.round(number * decimals) + unit; } // Set maximum decimal precision to 99 in case short_data is not set. @@ -3038,6 +3038,12 @@ function number_format(number, force_integer, unit, short_data, divisor) { if (divisor) { number = Math.round(number * decimals) / decimals; + } else { + number = Math.round(number * decimals); + } + + if (isNaN(number)) { + number = 0; } return number + " " + shorts[pos] + unit; diff --git a/pandora_console/include/languages/en_GB.mo b/pandora_console/include/languages/en_GB.mo index 4b915e98e8..e9cf8e56b9 100644 Binary files a/pandora_console/include/languages/en_GB.mo and b/pandora_console/include/languages/en_GB.mo differ diff --git a/pandora_console/include/languages/en_GB.po b/pandora_console/include/languages/en_GB.po index c6e833bc32..2a8f3f8b88 100644 --- a/pandora_console/include/languages/en_GB.po +++ b/pandora_console/include/languages/en_GB.po @@ -7,1905 +7,27727 @@ msgid "" msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-03-14 10:58+0100\n" -"PO-Revision-Date: 2019-03-25 16:10+0000\n" -"Last-Translator: Zarzuelo \n" +"POT-Creation-Date: 2020-06-05 14:43+0200\n" +"PO-Revision-Date: 2020-05-17 09:49+0000\n" +"Last-Translator: Stephan Woidowski \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: 2019-03-25 16:24+0000\n" -"X-Generator: Launchpad (build 18910)\n" +"X-Launchpad-Export-Date: 2020-06-11 08:54+0000\n" +"X-Generator: Launchpad (build b190cebbf563f89e480a8b57f641753c8196bda0)\n" "Language: en_GB\n" -#: ../../extensions/agents_alerts.php:55 -#: ../../extensions/agents_modules.php:55 -#: ../../operation/agentes/group_view.php:61 -#: ../../operation/agentes/tactical.php:46 -#: ../../enterprise/extensions/ipam/ipam_list.php:188 -#: ../../enterprise/godmode/reporting/cluster_view.php:254 -#: ../../enterprise/operation/services/services.list.php:345 -#: ../../enterprise/operation/services/services.service.php:144 -msgid "Last update" -msgstr "Last update" - -#: ../../extensions/agents_alerts.php:95 -#: ../../extensions/agents_modules.php:138 ../../general/ui/agents_list.php:69 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/agent_manager.php:254 -#: ../../godmode/agentes/configurar_agente.php:386 -#: ../../godmode/agentes/modificar_agente.php:156 -#: ../../godmode/agentes/modificar_agente.php:473 -#: ../../godmode/agentes/planned_downtime.editor.php:495 -#: ../../godmode/agentes/planned_downtime.editor.php:780 -#: ../../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:82 -#: ../../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:187 -#: ../../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:260 -#: ../../godmode/massive/massive_edit_agents.php:353 -#: ../../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:120 -#: ../../godmode/netflow/nf_edit_form.php:193 -#: ../../godmode/reporting/create_container.php:228 -#: ../../godmode/reporting/create_container.php:478 -#: ../../godmode/reporting/create_container.php:559 -#: ../../godmode/reporting/graph_builder.main.php:127 -#: ../../godmode/reporting/graphs.php:158 -#: ../../godmode/reporting/map_builder.php:235 -#: ../../godmode/reporting/map_builder.php:259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:907 -#: ../../godmode/reporting/reporting_builder.main.php:69 -#: ../../godmode/reporting/reporting_builder.php:465 -#: ../../godmode/reporting/reporting_builder.php:595 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:198 -#: ../../godmode/reporting/visual_console_favorite.php:58 -#: ../../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:738 -#: ../../godmode/users/user_list.php:225 -#: ../../include/functions_pandora_networkmap.php:1636 -#: ../../include/functions_pandora_networkmap.php:1822 -#: ../../include/functions_container.php:132 -#: ../../include/functions_events.php:38 -#: ../../include/functions_events.php:2536 -#: ../../include/functions_events.php:3656 -#: ../../include/functions_visual_map.php:3943 -#: ../../include/functions_visual_map_editor.php:63 -#: ../../include/functions_visual_map_editor.php:450 -#: ../../include/functions_visual_map_editor.php:874 -#: ../../include/functions_graph.php:6423 -#: ../../include/functions_groups.php:739 -#: ../../include/functions_networkmap.php:1758 -#: ../../include/functions_reporting_html.php:2082 -#: ../../include/functions_reporting_html.php:2117 -#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:139 -#: ../../mobile/operation/agents.php:196 ../../mobile/operation/agents.php:197 -#: ../../mobile/operation/agents.php:340 ../../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:195 -#: ../../operation/agentes/estado_agente.php:562 -#: ../../operation/agentes/estado_generalagente.php:274 -#: ../../operation/agentes/exportdata.php:235 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/pandora_networkmap.editor.php:224 -#: ../../operation/agentes/pandora_networkmap.editor.php:248 -#: ../../operation/agentes/status_monitor.php:290 -#: ../../operation/agentes/ver_agente.php:762 -#: ../../operation/events/events.build_table.php:185 -#: ../../operation/events/events_list.php:615 -#: ../../operation/events/sound_events.php:79 -#: ../../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:516 -#: ../../enterprise/dashboard/dashboards.php:88 -#: ../../enterprise/dashboard/main_dashboard.php:319 -#: ../../enterprise/dashboard/main_dashboard.php:357 -#: ../../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:46 -#: ../../enterprise/extensions/cron/functions.php:40 -#: ../../enterprise/extensions/cron/main.php:317 -#: ../../enterprise/extensions/vmware/ajax.php:95 -#: ../../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/agentes/pandora_networkmap_empty.editor.php:101 -#: ../../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/massive/massive_add_modules_policy.php:78 -#: ../../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:554 -#: ../../enterprise/godmode/policies/policy_agents.php:577 -#: ../../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:115 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1486 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:308 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:83 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:276 -#: ../../enterprise/godmode/reporting/cluster_list.php:90 -#: ../../enterprise/godmode/reporting/cluster_list.php:162 -#: ../../enterprise/godmode/services/services.service.php:290 -#: ../../enterprise/include/ajax/clustermap.php:46 -#: ../../enterprise/include/functions_alert_event.php:926 -#: ../../enterprise/include/functions_events.php:76 -#: ../../enterprise/include/functions_reporting_pdf.php:2396 -#: ../../enterprise/include/functions_reporting_pdf.php:2446 -#: ../../enterprise/meta/advanced/synchronizing.user.php:576 -#: ../../enterprise/meta/agentsearch.php:105 -#: ../../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/pandora_networkmap.view.php:72 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 -#: ../../enterprise/operation/agentes/tag_view.php:75 -#: ../../enterprise/operation/agentes/tag_view.php:467 -#: ../../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:165 -#: ../../enterprise/operation/log/log_viewer.php:215 -#: ../../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:98 -msgid "Show modules without alerts" -msgstr "Show modules without alerts" - -#: ../../extensions/agents_alerts.php:103 -#: ../../extensions/agents_modules.php:225 ../../general/login_page.php:71 -#: ../../general/login_page.php:229 ../../include/ajax/module.php:844 -#: ../../include/functions_pandora_networkmap.php:1009 -#: ../../operation/events/events.php:490 -#: ../../operation/reporting/graph_viewer.php:259 -#: ../../operation/servers/recon_view.php:52 -#: ../../operation/visual_console/public_console.php:112 -#: ../../operation/visual_console/render_view.php:176 -#: ../../enterprise/dashboard/main_dashboard.php:201 -#: ../../enterprise/dashboard/widgets/top_n.php:286 -#: ../../enterprise/extensions/ipam/ipam_network.php:159 -#: ../../enterprise/godmode/policies/policy_queue.php:490 -#: ../../enterprise/meta/advanced/policymanager.queue.php:236 -msgid "Refresh" -msgstr "Refresh" - -#: ../../extensions/agents_alerts.php:105 -#: ../../extensions/agents_alerts.php:251 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../godmode/alerts/configure_alert_action.php:144 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../godmode/snmpconsole/snmp_alert.php:938 -#: ../../include/functions.php:430 ../../include/functions.php:564 -#: ../../include/functions_html.php:831 -#: ../../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:162 -msgid "seconds" -msgstr "seconds" - -#: ../../extensions/agents_alerts.php:106 ../../include/functions.php:2611 -#: ../../operation/gis_maps/render_view.php:138 -msgid "1 minute" -msgstr "1 minute" - -#: ../../extensions/agents_alerts.php:107 ../../include/functions.php:2612 -#: ../../operation/gis_maps/render_view.php:139 -msgid "2 minutes" -msgstr "2 minutes" - -#: ../../extensions/agents_alerts.php:108 ../../include/ajax/module.php:137 -#: ../../include/functions.php:2613 -#: ../../operation/gis_maps/render_view.php:140 -msgid "5 minutes" -msgstr "5 minutes" - -#: ../../extensions/agents_alerts.php:109 -#: ../../operation/gis_maps/render_view.php:141 -msgid "10 minutes" -msgstr "10 minutes" - -#: ../../extensions/agents_alerts.php:115 -#: ../../extensions/agents_modules.php:113 -#: ../../extensions/agents_modules.php:124 -#: ../../extensions/agents_modules.php:130 -#: ../../extensions/disabled/matrix_events.php:31 -#: ../../operation/gis_maps/render_view.php:111 -#: ../../operation/reporting/graph_viewer.php:165 -#: ../../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:151 -#: ../../enterprise/operation/agentes/manage_transmap.php:92 +#: ../../views/dashboard/header.php:40 +#: ../../enterprise/meta/screens/screens.visualmap.php:176 +#: ../../enterprise/operation/agentes/manage_transmap.php:108 +#: ../../extensions/disabled/matrix_events.php:28 +#: ../../extensions/agents_alerts.php:125 +#: ../../extensions/agents_modules.php:374 +#: ../../extensions/agents_modules.php:381 +#: ../../extensions/agents_modules.php:384 +#: ../../operation/visual_console/pure_ajax.php:169 +#: ../../operation/visual_console/view.php:184 +#: ../../operation/visual_console/legacy_view.php:172 +#: ../../operation/gis_maps/render_view.php:123 +#: ../../operation/reporting/reporting_viewer.php:114 +#: ../../operation/reporting/graph_viewer.php:173 msgid "Full screen mode" msgstr "Full screen mode" -#: ../../extensions/agents_alerts.php:120 -#: ../../extensions/agents_modules.php:216 -#: ../../operation/events/events.php:481 -#: ../../operation/gis_maps/render_view.php:115 -#: ../../operation/reporting/graph_viewer.php:170 -#: ../../operation/reporting/reporting_viewer.php:108 -#: ../../operation/visual_console/render_view.php:167 -#: ../../enterprise/dashboard/main_dashboard.php:165 +#: ../../views/dashboard/header.php:51 ../../extensions/agents_alerts.php:127 +#: ../../extensions/agents_modules.php:483 +#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/legacy_view.php:217 +#: ../../operation/gis_maps/render_view.php:125 +#: ../../operation/reporting/reporting_viewer.php:116 +#: ../../operation/reporting/graph_viewer.php:175 +#: ../../operation/events/events.php:669 msgid "Back to normal mode" msgstr "Back to normal mode" -#: ../../extensions/agents_alerts.php:133 -msgid "Agents/Alerts" -msgstr "Agents/Alerts" +#: ../../views/dashboard/header.php:59 ../../views/dashboard/list.php:209 +msgid "Update Dashboard" +msgstr "" -#: ../../extensions/agents_alerts.php:143 -#: ../../operation/agentes/networkmap.dinamic.php:103 -#: ../../operation/agentes/pandora_networkmap.view.php:784 -#: ../../operation/events/events.php:355 -#: ../../operation/snmpconsole/snmp_browser.php:112 -#: ../../operation/snmpconsole/snmp_statistics.php:49 -#: ../../operation/snmpconsole/snmp_view.php:90 -#: ../../enterprise/dashboard/dashboards.php:89 -#: ../../enterprise/dashboard/dashboards.php:142 +#: ../../views/dashboard/header.php:60 ../../views/dashboard/header.php:88 +#: ../../views/dashboard/list.php:210 ../../enterprise/load_enterprise.php:428 +#: ../../enterprise/load_enterprise.php:911 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:415 +#: ../../enterprise/include/class/Omnishell.class.php:1446 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/functions_update_manager.php:245 +#: ../../enterprise/operation/agentes/transactional_map.php:312 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:47 +#: ../../enterprise/operation/services/services.service.php:212 +#: ../../enterprise/operation/services/services.service_map.php:172 +#: ../../enterprise/operation/services/services.list.php:196 +#: ../../enterprise/operation/services/services.list.php:486 +#: ../../enterprise/operation/services/services.table_services.php:175 +#: ../../godmode/update_manager/update_manager.offline.php:104 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../include/functions_config.php:1168 +#: ../../include/functions_config.php:2839 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../include/lib/Dashboard/Widgets/service_map.php:334 +#: ../../include/functions_update_manager.php:1399 +#: ../../operation/gis_maps/render_view.php:153 +msgid "Ok" +msgstr "OK" + +#: ../../views/dashboard/header.php:61 ../../views/dashboard/header.php:89 +#: ../../views/dashboard/list.php:211 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1099 +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:469 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:355 +#: ../../enterprise/godmode/services/services.service.php:643 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:268 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:344 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:241 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1527 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1629 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1681 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1713 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1748 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/AgentRepository.class.php:882 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../enterprise/include/functions_update_manager.php:244 +#: ../../godmode/update_manager/update_manager.offline.php:103 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/events/custom_events.php:202 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../include/class/ConfigPEN.class.php:663 +#: ../../include/class/ConfigPEN.class.php:687 +#: ../../include/class/TreeGroupEdition.class.php:93 +#: ../../include/class/NetworkMap.class.php:2822 +#: ../../include/class/CredentialStore.class.php:1115 +#: ../../include/class/CredentialStore.class.php:1167 +#: ../../include/class/ModuleTemplates.class.php:1277 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:643 +#: ../../include/functions_update_manager.php:204 +#: ../../include/functions_update_manager.php:468 +#: ../../include/functions_update_manager.php:762 +#: ../../include/functions_update_manager.php:1398 +#: ../../operation/agentes/pandora_networkmap.editor.php:573 +#: ../../operation/snmpconsole/snmp_browser.php:157 +#: ../../operation/snmpconsole/snmp_browser.php:486 +#: ../../operation/snmpconsole/snmp_browser.php:566 +#: ../../operation/snmpconsole/snmp_browser.php:581 +#: ../../general/header.php:785 +msgid "Cancel" +msgstr "Cancel" + +#: ../../views/dashboard/header.php:71 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 +#: ../../enterprise/extensions/vmware/vmware_view.php:1292 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316 +#: ../../enterprise/include/class/DeploymentCenter.class.php:724 +#: ../../enterprise/include/class/AgentRepository.class.php:618 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2855 +#: ../../extensions/net_tools.php:493 +#: ../../godmode/update_manager/update_manager.php:35 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../include/class/ConfigPEN.class.php:595 +#: ../../include/class/CredentialStore.class.php:737 +#: ../../include/functions_events.php:295 +msgid "Options" +msgstr "Options" + +#: ../../views/dashboard/header.php:80 +msgid "Back to dashboards list" +msgstr "Back to dashboard list" + +#: ../../views/dashboard/header.php:87 +msgid "Slides" +msgstr "Slides" + +#: ../../views/dashboard/header.php:100 +msgid "Slides mode" +msgstr "Slides mode" + +#: ../../views/dashboard/header.php:112 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1243 +#: ../../enterprise/godmode/policies/policy_queue.php:566 +#: ../../enterprise/include/class/Omnishell.class.php:544 +#: ../../enterprise/include/class/Omnishell.class.php:1276 +#: ../../extensions/agents_alerts.php:101 +#: ../../extensions/agents_modules.php:492 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:175 +#: ../../include/ajax/module.php:919 +#: ../../include/class/NetworkMap.class.php:2816 +#: ../../operation/visual_console/view.php:339 +#: ../../operation/visual_console/legacy_public_view.php:120 +#: ../../operation/visual_console/legacy_view.php:231 +#: ../../operation/visual_console/public_view.php:104 +#: ../../operation/gis_maps/render_view.php:147 +#: ../../operation/reporting/graph_viewer.php:294 +#: ../../operation/events/events.php:679 +#: ../../operation/servers/recon_view.php:50 ../../general/login_page.php:70 +#: ../../general/login_page.php:294 +msgid "Refresh" +msgstr "Refresh" + +#: ../../views/dashboard/header.php:164 +msgid "Add Cell" +msgstr "" + +#: ../../views/dashboard/list.php:38 +msgid "Dashboards" +msgstr "Dashboards" + +#: ../../views/dashboard/list.php:48 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:243 +#: ../../enterprise/meta/advanced/metasetup.relations.php:86 +#: ../../enterprise/meta/advanced/links.php:81 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:148 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:222 +#: ../../enterprise/extensions/ipam/ipam_action.php:84 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:112 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:184 +#: ../../enterprise/godmode/modules/local_components.php:362 +#: ../../enterprise/godmode/policies/policies.php:172 +#: ../../enterprise/godmode/alerts/alert_events_list.php:180 +#: ../../enterprise/godmode/alerts/alert_events_list.php:232 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:135 +#: ../../enterprise/godmode/reporting/graph_template_list.php:99 +#: ../../enterprise/godmode/reporting/graph_template_list.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:301 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:97 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:235 +#: ../../enterprise/include/class/DatabaseHA.class.php:1034 +#: ../../enterprise/operation/agentes/transactional_map.php:156 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:65 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_nc_groups.php:141 +#: ../../godmode/modules/manage_network_components.php:414 +#: ../../godmode/users/profile_list.php:86 +#: ../../godmode/users/user_list.php:171 ../../godmode/users/user_list.php:218 +#: ../../godmode/users/configure_user.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:112 +#: ../../godmode/netflow/nf_item_list.php:122 +#: ../../godmode/netflow/nf_item_list.php:150 +#: ../../godmode/netflow/nf_edit.php:91 ../../godmode/netflow/nf_edit.php:124 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_filters.php:159 +#: ../../godmode/massive/massive_delete_action_alerts.php:124 +#: ../../godmode/massive/massive_delete_modules.php:143 +#: ../../godmode/massive/massive_delete_alerts.php:186 +#: ../../godmode/alerts/alert_actions.php:169 +#: ../../godmode/alerts/alert_commands.php:380 +#: ../../godmode/alerts/alert_templates.php:251 +#: ../../godmode/alerts/alert_special_days.php:250 +#: ../../godmode/alerts/alert_list.php:228 +#: ../../godmode/alerts/alert_list.php:316 ../../godmode/setup/news.php:112 +#: ../../godmode/setup/gis.php:58 ../../godmode/setup/links.php:73 +#: ../../godmode/reporting/map_builder.php:158 +#: ../../godmode/reporting/graphs.php:97 ../../godmode/reporting/graphs.php:107 +#: ../../godmode/reporting/graphs.php:150 +#: ../../godmode/reporting/reporting_builder.php:623 +#: ../../godmode/events/event_filter.php:54 +#: ../../godmode/events/event_filter.php:81 +#: ../../include/functions_api.php:13929 +#: ../../include/class/ConfigPEN.class.php:480 +#: ../../operation/messages/message_list.php:85 +#: ../../operation/messages/message_list.php:103 +#: ../../operation/snmpconsole/snmp_view.php:112 +#: ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/incident_detail.php:96 +#: ../../operation/incidents/incident_detail.php:134 +#: ../../operation/incidents/incident.php:98 +#: ../../operation/incidents/list_integriaims_incidents.php:85 +#: ../../operation/reporting/graph_viewer.php:39 +#: ../../operation/reporting/graph_viewer.php:47 +msgid "Successfully deleted" +msgstr "Successfully deleted" + +#: ../../views/dashboard/list.php:49 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:146 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:220 +#: ../../enterprise/extensions/ipam/ipam_action.php:82 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:110 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:182 +#: ../../enterprise/godmode/modules/local_components.php:363 +#: ../../enterprise/godmode/policies/policy_alerts.php:199 +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_modules.php:1291 +#: ../../enterprise/godmode/policies/policies.php:175 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:108 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:135 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:135 +#: ../../enterprise/godmode/policies/policy_collections.php:77 +#: ../../enterprise/godmode/policies/policy_agents.php:115 +#: ../../enterprise/godmode/policies/policy_agents.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:181 +#: ../../enterprise/godmode/alerts/alert_events_list.php:233 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:270 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:136 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 +#: ../../enterprise/operation/agentes/transactional_map.php:157 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:66 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_network_components.php:415 +#: ../../godmode/users/configure_user.php:651 +#: ../../godmode/massive/massive_delete_action_alerts.php:125 +#: ../../godmode/massive/massive_delete_alerts.php:187 +#: ../../godmode/alerts/alert_actions.php:170 +#: ../../godmode/alerts/alert_commands.php:381 +#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/alerts/alert_special_days.php:251 +#: ../../godmode/alerts/alert_list.php:229 +#: ../../godmode/alerts/alert_list.php:317 ../../godmode/setup/news.php:113 +#: ../../godmode/setup/gis.php:56 +#: ../../godmode/reporting/reporting_builder.php:624 +#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/messages/message_list.php:86 +#: ../../operation/snmpconsole/snmp_view.php:113 +#: ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/incident_detail.php:97 +#: ../../operation/incidents/incident_detail.php:135 +#: ../../operation/incidents/incident.php:99 +#: ../../operation/incidents/list_integriaims_incidents.php:86 +msgid "Could not be deleted" +msgstr "Could not be deleted" + +#: ../../views/dashboard/list.php:56 +msgid "Successfully duplicate" +msgstr "Successfully duplicated" + +#: ../../views/dashboard/list.php:57 +msgid "Could not be duplicate" +msgstr "Could not be duplicated" + +#: ../../views/dashboard/list.php:65 +msgid "There are no dashboards defined." +msgstr "No dashboards defined" + +#: ../../views/dashboard/list.php:90 ../../views/dashboard/formDashboard.php:71 +#: ../../enterprise/views/cluster/list.php:58 +#: ../../enterprise/meta/advanced/servers.build_table.php:58 +#: ../../enterprise/meta/include/functions_autoprovision.php:448 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:580 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1132 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1458 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1681 +#: ../../enterprise/meta/agentsearch.php:301 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:369 +#: ../../enterprise/extensions/ipam/ipam_list.php:135 +#: ../../enterprise/extensions/ipam/ipam_excel.php:105 +#: ../../enterprise/extensions/ipam/ipam_excel.php:175 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1198 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1677 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:270 +#: ../../enterprise/extensions/ipam/ipam_editor.php:99 +#: ../../enterprise/godmode/modules/configure_local_component.php:152 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:369 +#: ../../enterprise/godmode/modules/local_components.php:561 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:331 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:612 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:81 +#: ../../enterprise/godmode/agentes/collection_manager.php:115 +#: ../../enterprise/godmode/agentes/collection_manager.php:201 +#: ../../enterprise/godmode/agentes/inventory_manager.php:217 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:519 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/policies/configure_policy.php:76 +#: ../../enterprise/godmode/policies/policy_modules.php:1446 +#: ../../enterprise/godmode/policies/policies.php:432 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:253 +#: ../../enterprise/godmode/policies/policy_collections.php:149 +#: ../../enterprise/godmode/policies/policy_collections.php:244 +#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:1074 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 +#: ../../enterprise/godmode/alerts/alert_events.php:591 +#: ../../enterprise/godmode/alerts/alert_events_list.php:501 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 +#: ../../enterprise/godmode/services/services.service.php:385 +#: ../../enterprise/godmode/setup/setup_skins.php:84 +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/godmode/setup/edit_skin.php:230 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:135 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:139 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:105 +#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +#: ../../enterprise/godmode/reporting/mysql_builder.php:160 +#: ../../enterprise/godmode/reporting/mysql_builder.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1521 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:246 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:36 +#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:680 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2850 +#: ../../enterprise/include/functions_services.php:2475 +#: ../../enterprise/operation/agentes/policy_view.php:139 +#: ../../enterprise/operation/agentes/policy_view.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:654 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:68 +#: ../../enterprise/operation/agentes/collection_view.php:62 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:146 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:307 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:410 +#: ../../enterprise/operation/services/services.service.php:163 +#: ../../enterprise/operation/services/services.list.php:423 +#: ../../extensions/files_repo/files_repo_list.php:53 +#: ../../godmode/modules/manage_nc_groups_form.php:68 +#: ../../godmode/modules/manage_network_templates_form.php:156 +#: ../../godmode/modules/manage_nc_groups.php:231 +#: ../../godmode/modules/manage_network_components_form_common.php:59 +#: ../../godmode/modules/module_list.php:59 +#: ../../godmode/modules/manage_network_templates.php:234 +#: ../../godmode/groups/configure_group.php:118 +#: ../../godmode/groups/group_list.php:681 +#: ../../godmode/groups/configure_modu_group.php:64 +#: ../../godmode/groups/modu_group_list.php:235 +#: ../../godmode/users/user_list.php:329 +#: ../../godmode/agentes/planned_downtime.editor.php:637 +#: ../../godmode/agentes/planned_downtime.editor.php:1035 +#: ../../godmode/agentes/configure_field.php:71 +#: ../../godmode/agentes/module_manager_editor_common.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:1128 +#: ../../godmode/agentes/module_manager.php:639 +#: ../../godmode/netflow/nf_edit.php:146 +#: ../../godmode/netflow/nf_edit_form.php:198 +#: ../../godmode/alerts/configure_alert_command.php:172 +#: ../../godmode/alerts/alert_actions.php:225 +#: ../../godmode/alerts/alert_commands.php:412 +#: ../../godmode/alerts/alert_templates.php:365 +#: ../../godmode/alerts/configure_alert_action.php:128 +#: ../../godmode/alerts/configure_alert_template.php:918 +#: ../../godmode/setup/os.builder.php:33 ../../godmode/setup/os.list.php:32 +#: ../../godmode/setup/setup_integria.php:260 +#: ../../godmode/setup/setup_integria.php:383 +#: ../../godmode/reporting/create_container.php:205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:826 +#: ../../godmode/reporting/reporting_builder.main.php:79 +#: ../../godmode/reporting/reporting_builder.main.php:83 +#: ../../godmode/reporting/graph_builder.main.php:106 +#: ../../godmode/events/event_filter.php:121 +#: ../../godmode/events/event_responses.editor.php:76 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:65 +#: ../../godmode/servers/modificar_server.php:56 +#: ../../godmode/servers/plugin.php:328 ../../godmode/servers/plugin.php:969 +#: ../../godmode/tag/tag.php:175 ../../godmode/tag/edit_tag.php:168 +#: ../../godmode/category/edit_category.php:151 +#: ../../mobile/operation/visualmaps.php:162 +#: ../../include/functions_reporting_html.php:963 +#: ../../include/functions_reporting_html.php:971 +#: ../../include/functions_reporting_html.php:1958 +#: ../../include/functions_reporting_html.php:2655 +#: ../../include/functions_reporting_html.php:5172 +#: ../../include/functions_treeview.php:78 +#: ../../include/class/NetworkMap.class.php:2931 +#: ../../include/class/NetworkMap.class.php:2972 +#: ../../include/class/NetworkMap.class.php:2990 +#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/ManageNetScanScripts.class.php:408 +#: ../../include/class/ManageNetScanScripts.class.php:549 +#: ../../include/class/ModuleTemplates.class.php:815 +#: ../../include/class/ModuleTemplates.class.php:965 +#: ../../include/functions_filemanager.php:619 +#: ../../include/functions_snmp_browser.php:1334 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4131 ../../operation/search_users.php:35 +#: ../../operation/search_helps.php:32 +#: ../../operation/agentes/pandora_networkmap.editor.php:258 +#: ../../operation/agentes/pandora_networkmap.php:693 +#: ../../operation/netflow/nf_live_view.php:362 +#: ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:198 +#: ../../operation/search_policies.php:34 ../../operation/search_maps.php:27 +msgid "Name" +msgstr "Name" + +#: ../../views/dashboard/list.php:91 +msgid "Cells" +msgstr "Cells" + +#: ../../views/dashboard/list.php:92 +#: ../../views/dashboard/formDashboard.php:101 +#: ../../enterprise/views/cluster/list.php:60 +#: ../../enterprise/meta/advanced/synchronizing.user.php:633 +#: ../../enterprise/meta/advanced/cron_main.php:413 +#: ../../enterprise/meta/advanced/collections.php:321 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:138 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:255 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:352 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:417 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:606 +#: ../../enterprise/meta/include/functions_wizard_meta.php:193 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1803 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/agentsearch.php:117 +#: ../../enterprise/meta/agentsearch.php:303 +#: ../../enterprise/extensions/ipam/ipam_editor.php:173 +#: ../../enterprise/godmode/modules/configure_local_component.php:268 +#: ../../enterprise/godmode/modules/local_components.php:439 +#: ../../enterprise/godmode/modules/local_components.php:563 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:189 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:111 +#: ../../enterprise/godmode/agentes/collections.php:323 +#: ../../enterprise/godmode/policies/configure_policy.php:79 +#: ../../enterprise/godmode/policies/policies.php:333 +#: ../../enterprise/godmode/policies/policies.php:434 +#: ../../enterprise/godmode/policies/policy_agents.php:671 +#: ../../enterprise/godmode/policies/policy_agents.php:714 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:85 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 +#: ../../enterprise/godmode/alerts/alert_events.php:594 +#: ../../enterprise/godmode/alerts/alert_events_list.php:411 +#: ../../enterprise/godmode/alerts/alert_events_list.php:502 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:403 +#: ../../enterprise/godmode/services/services.service.php:391 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:147 +#: ../../enterprise/godmode/reporting/graph_template_list.php:148 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:164 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:375 +#: ../../enterprise/godmode/reporting/visual_console_template.php:171 +#: ../../enterprise/godmode/reporting/visual_console_template.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1807 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:94 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:642 +#: ../../enterprise/include/functions_tasklist.php:172 +#: ../../enterprise/include/functions_alert_event.php:1134 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../enterprise/include/class/Azure.cloud.php:760 +#: ../../enterprise/include/class/VMware.app.php:656 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/Aws.cloud.php:451 +#: ../../enterprise/include/class/Aws.cloud.php:1118 +#: ../../enterprise/include/class/MySQL.app.php:473 +#: ../../enterprise/include/class/Oracle.app.php:471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:692 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:842 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2747 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2851 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:817 +#: ../../enterprise/include/functions_events.php:97 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/tag_view.php:87 +#: ../../enterprise/operation/agentes/tag_view.php:582 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:71 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../enterprise/operation/agentes/ver_agente.php:49 +#: ../../enterprise/operation/agentes/ver_agente.php:70 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:310 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:413 +#: ../../enterprise/operation/log/log_viewer.php:477 +#: ../../enterprise/operation/inventory/inventory.php:180 +#: ../../enterprise/operation/services/services.service.php:166 +#: ../../enterprise/operation/services/services.list.php:219 +#: ../../enterprise/operation/services/services.list.php:428 +#: ../../enterprise/operation/services/services.table_services.php:198 +#: ../../extensions/agents_alerts.php:94 +#: ../../extensions/agents_modules.php:389 +#: ../../godmode/modules/manage_network_templates_form.php:223 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_templates_form.php:327 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/modules/manage_network_components.php:534 +#: ../../godmode/modules/manage_network_components.php:670 +#: ../../godmode/users/user_list.php:258 +#: ../../godmode/agentes/configurar_agente.php:449 +#: ../../godmode/agentes/modificar_agente.php:168 +#: ../../godmode/agentes/modificar_agente.php:495 +#: ../../godmode/agentes/planned_downtime.list.php:400 +#: ../../godmode/agentes/planned_downtime.editor.php:647 +#: ../../godmode/agentes/planned_downtime.editor.php:1036 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/netflow/nf_edit.php:147 +#: ../../godmode/netflow/nf_edit_form.php:202 +#: ../../godmode/snmpconsole/snmp_alert.php:778 +#: ../../godmode/gis_maps/configure_gis_map.php:462 +#: ../../godmode/gis_maps/configure_gis_map.php:566 +#: ../../godmode/massive/massive_copy_modules.php:84 +#: ../../godmode/massive/massive_copy_modules.php:237 +#: ../../godmode/massive/massive_standby_alerts.php:146 +#: ../../godmode/massive/massive_delete_action_alerts.php:163 +#: ../../godmode/massive/massive_add_alerts.php:183 +#: ../../godmode/massive/massive_delete_agents.php:114 +#: ../../godmode/massive/massive_enable_disable_alerts.php:146 +#: ../../godmode/massive/massive_edit_agents.php:400 +#: ../../godmode/massive/massive_edit_agents.php:550 +#: ../../godmode/massive/massive_delete_profiles.php:109 +#: ../../godmode/massive/massive_delete_alerts.php:254 +#: ../../godmode/massive/massive_add_action_alerts.php:156 +#: ../../godmode/massive/massive_add_profiles.php:102 +#: ../../godmode/alerts/configure_alert_command.php:180 +#: ../../godmode/alerts/alert_actions.php:197 +#: ../../godmode/alerts/alert_actions.php:226 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../godmode/alerts/alert_commands.php:414 +#: ../../godmode/alerts/configure_alert_special_days.php:69 +#: ../../godmode/alerts/alert_templates.php:366 +#: ../../godmode/alerts/configure_alert_action.php:140 +#: ../../godmode/alerts/configure_alert_template.php:922 +#: ../../godmode/alerts/alert_special_days.php:274 +#: ../../godmode/setup/news.php:178 ../../godmode/setup/gis.php:66 +#: ../../godmode/setup/gis_step_2.php:206 +#: ../../godmode/setup/setup_integria.php:286 +#: ../../godmode/setup/setup_integria.php:409 +#: ../../godmode/reporting/create_container.php:224 +#: ../../godmode/reporting/create_container.php:502 +#: ../../godmode/reporting/create_container.php:591 +#: ../../godmode/reporting/map_builder.php:308 +#: ../../godmode/reporting/map_builder.php:336 +#: ../../godmode/reporting/graphs.php:168 +#: ../../godmode/reporting/graphs.php:266 +#: ../../godmode/reporting/visual_console_favorite.php:111 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1210 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:270 +#: ../../godmode/reporting/reporting_builder.main.php:91 +#: ../../godmode/reporting/reporting_builder.php:643 +#: ../../godmode/reporting/reporting_builder.php:829 +#: ../../godmode/reporting/graph_builder.main.php:116 +#: ../../godmode/events/event_filter.php:122 +#: ../../godmode/events/event_responses.editor.php:87 +#: ../../godmode/events/event_edit_filter.php:265 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/events/custom_events.php:99 +#: ../../godmode/wizards/HostDevices.class.php:928 +#: ../../mobile/operation/agents.php:79 ../../mobile/operation/agents.php:143 +#: ../../mobile/operation/agents.php:219 ../../mobile/operation/agents.php:220 +#: ../../mobile/operation/agents.php:393 ../../mobile/operation/modules.php:147 +#: ../../mobile/operation/modules.php:152 +#: ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/modules.php:242 ../../mobile/operation/alerts.php:95 +#: ../../mobile/operation/alerts.php:100 ../../mobile/operation/alerts.php:212 +#: ../../mobile/operation/alerts.php:213 +#: ../../mobile/operation/visualmaps.php:55 +#: ../../mobile/operation/visualmaps.php:60 +#: ../../mobile/operation/visualmaps.php:164 +#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 +#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:662 +#: ../../mobile/operation/events.php:663 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:526 +#: ../../include/functions_visual_map_editor.php:1307 +#: ../../include/functions_reporting_html.php:2606 +#: ../../include/functions_reporting_html.php:2659 +#: ../../include/functions_cron.php:459 +#: ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:667 +#: ../../include/functions_graph.php:5050 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:213 +#: ../../include/functions_visual_map.php:4215 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:545 +#: ../../include/rest-api/models/VisualConsole/Item.php:2021 +#: ../../include/class/NetworkMap.class.php:2862 +#: ../../include/class/NetworkMap.class.php:2915 +#: ../../include/class/NetworkMap.class.php:3202 +#: ../../include/class/CredentialStore.class.php:732 +#: ../../include/class/CredentialStore.class.php:763 +#: ../../include/class/CredentialStore.class.php:848 +#: ../../include/class/CustomNetScan.class.php:499 +#: ../../include/class/ModuleTemplates.class.php:706 +#: ../../include/functions_container.php:150 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:220 +#: ../../include/functions_snmp_browser.php:1337 +#: ../../include/functions_events.php:193 +#: ../../include/functions_events.php:244 +#: ../../include/functions_events.php:4606 +#: ../../include/functions_events.php:6051 ../../operation/search_agents.php:45 +#: ../../operation/search_agents.php:51 ../../operation/users/user_edit.php:749 +#: ../../operation/visual_console/view.php:265 +#: ../../operation/agentes/estado_agente.php:218 +#: ../../operation/agentes/estado_agente.php:719 +#: ../../operation/agentes/pandora_networkmap.editor.php:268 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +#: ../../operation/agentes/exportdata.php:226 +#: ../../operation/agentes/status_monitor.php:357 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/ver_agente.php:848 +#: ../../operation/agentes/estado_generalagente.php:339 +#: ../../operation/agentes/alerts_status.functions.php:73 +#: ../../operation/netflow/nf_live_view.php:372 +#: ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/incident_detail.php:338 +#: ../../operation/incidents/configure_integriaims_incident.php:242 +#: ../../operation/incidents/incident.php:423 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:375 +#: ../../operation/incidents/list_integriaims_incidents.php:127 +#: ../../operation/events/events_list.php:903 +#: ../../operation/events/sound_events.php:71 +#: ../../operation/events/events.php:885 +#: ../../operation/events/events.build_table.php:222 +#: ../../operation/search_maps.php:28 ../../general/ui/agents_list.php:76 +msgid "Group" +msgstr "Group" + +#: ../../views/dashboard/list.php:93 +msgid "Favorite" +msgstr "" + +#: ../../views/dashboard/list.php:94 ../../extensions/agents_alerts.php:161 +#: ../../operation/agentes/networkmap.dinamic.php:111 +#: ../../operation/agentes/pandora_networkmap.view.php:813 +#: ../../operation/snmpconsole/snmp_statistics.php:43 +#: ../../operation/snmpconsole/snmp_browser.php:63 +#: ../../operation/snmpconsole/snmp_view.php:88 +#: ../../operation/events/events.php:718 msgid "Full screen" msgstr "Full screen" -#: ../../extensions/agents_alerts.php:179 -#: ../../extensions/agents_alerts.php:325 -#: ../../extensions/agents_modules.php:162 -#: ../../extensions/agents_modules.php:396 -#: ../../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:522 -#: ../../godmode/massive/massive_delete_tags.php:192 -#: ../../godmode/massive/massive_edit_agents.php:281 -#: ../../godmode/massive/massive_edit_modules.php:362 -#: ../../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:312 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1062 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1134 -#: ../../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:1831 -#: ../../include/functions_groups.php:46 -#: ../../include/functions_groups.php:778 -#: ../../include/functions_groups.php:780 -#: ../../include/functions_groups.php:782 -#: ../../include/functions_groups.php:783 -#: ../../include/functions_groups.php:784 -#: ../../include/functions_reporting_html.php:1325 -#: ../../include/functions_reporting_html.php:1565 -#: ../../mobile/include/functions_web.php:22 -#: ../../mobile/operation/agents.php:179 ../../mobile/operation/home.php:65 -#: ../../operation/agentes/group_view.php:120 -#: ../../operation/agentes/group_view.php:158 -#: ../../operation/search_results.php:74 -#: ../../enterprise/dashboard/widgets/agent_module.php:294 -#: ../../enterprise/dashboard/widgets/groups_status.php:86 -#: ../../enterprise/dashboard/widgets/service_map.php:93 -#: ../../enterprise/extensions/cron/functions.php:33 -#: ../../enterprise/extensions/cron/main.php:316 -#: ../../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:418 -#: ../../enterprise/godmode/policies/policy_agents.php:536 -#: ../../enterprise/godmode/policies/policy_queue.php:395 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:154 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:201 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:155 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:324 -#: ../../enterprise/include/functions_policies.php:3486 -#: ../../enterprise/include/functions_reporting.php:5834 -#: ../../enterprise/include/functions_reporting_pdf.php:608 -#: ../../enterprise/include/functions_reporting_pdf.php:741 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:278 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/meta/include/functions_autoprovision.php:384 -#: ../../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:133 -msgid "Agents" -msgstr "Agents" +#: ../../views/dashboard/list.php:97 +#: ../../enterprise/godmode/policies/policy_modules.php:1640 +#: ../../enterprise/godmode/policies/policies.php:591 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:213 +#: ../../godmode/massive/massive_copy_modules.php:300 +#: ../../godmode/alerts/alert_actions.php:227 +#: ../../godmode/reporting/map_builder.php:338 +#: ../../operation/agentes/pandora_networkmap.php:700 +#: ../../operation/agentes/pandora_networkmap.php:794 +msgid "Copy" +msgstr "Copy" -#: ../../extensions/agents_alerts.php:180 -#: ../../extensions/agents_modules.php:396 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:829 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:542 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:375 -#: ../../godmode/agentes/configurar_agente.php:325 -#: ../../godmode/agentes/configurar_agente.php:559 -#: ../../godmode/agentes/modificar_agente.php:574 -#: ../../godmode/agentes/planned_downtime.editor.php:783 -#: ../../godmode/agentes/planned_downtime.editor.php:857 -#: ../../godmode/massive/massive_add_tags.php:139 -#: ../../godmode/massive/massive_copy_modules.php:149 -#: ../../godmode/massive/massive_delete_modules.php:500 -#: ../../godmode/massive/massive_delete_tags.php:199 -#: ../../godmode/massive/massive_edit_modules.php:324 -#: ../../godmode/massive/massive_edit_plugins.php:308 -#: ../../godmode/reporting/graph_builder.graph_editor.php:314 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1104 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1153 -#: ../../godmode/reporting/reporting_builder.list_items.php:167 -#: ../../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:1325 -#: ../../include/functions_reporting_html.php:3359 -#: ../../include/functions_reports.php:563 -#: ../../include/functions_reports.php:565 -#: ../../include/functions_reports.php:567 -#: ../../include/functions_reports.php:569 -#: ../../include/functions_reports.php:571 -#: ../../include/functions_reports.php:573 -#: ../../include/functions_reports.php:575 -#: ../../include/functions_reports.php:577 -#: ../../mobile/operation/agent.php:266 ../../mobile/operation/agents.php:79 -#: ../../mobile/operation/agents.php:350 ../../mobile/operation/agents.php:351 -#: ../../mobile/operation/home.php:71 ../../mobile/operation/modules.php:186 -#: ../../operation/agentes/estado_agente.php:570 -#: ../../operation/agentes/exportdata.php:275 -#: ../../operation/agentes/graphs.php:154 -#: ../../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:294 -#: ../../enterprise/dashboard/widgets/groups_status.php:158 -#: ../../enterprise/dashboard/widgets/service_map.php:98 -#: ../../enterprise/dashboard/widgets/top_n.php:332 -#: ../../enterprise/dashboard/widgets/tree_view.php:39 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:104 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:137 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/policies/policies.php:389 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:813 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:527 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:374 -#: ../../enterprise/godmode/policies/policy_modules.php:389 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:157 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:161 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:556 -#: ../../enterprise/include/ajax/clustermap.php:255 -#: ../../enterprise/include/ajax/clustermap.php:466 -#: ../../enterprise/include/functions_policies.php:3391 -#: ../../enterprise/include/functions_reporting_pdf.php:608 -#: ../../enterprise/include/functions_reporting_pdf.php:760 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/agentsearch.php:106 -#: ../../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/agentes/tag_view.php:469 -#: ../../enterprise/operation/services/services.service_map.php:138 -msgid "Modules" -msgstr "Modules" +#: ../../views/dashboard/list.php:98 +#: ../../enterprise/meta/advanced/servers.build_table.php:135 +#: ../../enterprise/meta/advanced/metasetup.visual.php:406 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:501 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:711 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:712 +#: ../../enterprise/meta/advanced/links.php:152 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:280 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:446 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:638 +#: ../../enterprise/meta/include/functions_autoprovision.php:491 +#: ../../enterprise/meta/include/functions_autoprovision.php:492 +#: ../../enterprise/meta/include/functions_autoprovision.php:657 +#: ../../enterprise/meta/include/functions_autoprovision.php:658 +#: ../../enterprise/meta/include/functions_wizard_meta.php:396 +#: ../../enterprise/extensions/backup/main.php:234 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:428 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:443 +#: ../../enterprise/godmode/modules/local_components.php:613 +#: ../../enterprise/godmode/modules/local_components.php:626 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:668 +#: ../../enterprise/godmode/agentes/inventory_manager.php:246 +#: ../../enterprise/godmode/agentes/plugins_manager.php:124 +#: ../../enterprise/godmode/agentes/plugins_manager.php:168 +#: ../../enterprise/godmode/policies/policy_plugins.php:121 +#: ../../enterprise/godmode/policies/policy_alerts.php:474 +#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/policies/policy_modules.php:1585 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:515 +#: ../../enterprise/godmode/policies/policies.php:609 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:298 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:285 +#: ../../enterprise/godmode/policies/policy_agents.php:874 +#: ../../enterprise/godmode/policies/policy_agents.php:1225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:369 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:221 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:132 +#: ../../enterprise/godmode/alerts/alert_events_list.php:656 +#: ../../enterprise/godmode/alerts/alert_events_list.php:731 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:486 +#: ../../enterprise/godmode/setup/setup_acl.php:462 +#: ../../enterprise/godmode/reporting/graph_template_list.php:189 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:469 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:495 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:182 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:201 +#: ../../enterprise/godmode/reporting/mysql_builder.php:67 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:431 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/include/functions_tasklist.php:468 +#: ../../enterprise/include/functions_tasklist.php:495 +#: ../../enterprise/include/ajax/transactional.ajax.php:119 +#: ../../enterprise/include/ajax/transactional.ajax.php:208 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:74 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1497 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1536 +#: ../../enterprise/include/class/AgentRepository.class.php:758 +#: ../../enterprise/include/class/AgentRepository.class.php:793 +#: ../../enterprise/include/class/Omnishell.class.php:1111 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2987 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3297 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:624 +#: ../../enterprise/operation/agentes/transactional_map.php:376 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:229 +#: ../../enterprise/operation/services/services.list.php:567 +#: ../../extensions/files_repo/files_repo_list.php:109 +#: ../../godmode/modules/manage_network_templates_form.php:242 +#: ../../godmode/modules/manage_nc_groups.php:262 +#: ../../godmode/modules/manage_nc_groups.php:272 +#: ../../godmode/modules/manage_network_components.php:738 +#: ../../godmode/modules/manage_network_components.php:759 +#: ../../godmode/modules/manage_network_templates.php:269 +#: ../../godmode/modules/manage_network_templates.php:282 +#: ../../godmode/groups/group_list.php:756 +#: ../../godmode/groups/group_list.php:757 +#: ../../godmode/groups/modu_group_list.php:236 +#: ../../godmode/extensions.php:260 ../../godmode/extensions.php:262 +#: ../../godmode/users/user_list.php:542 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/planned_downtime.list.php:409 +#: ../../godmode/agentes/planned_downtime.list.php:489 +#: ../../godmode/agentes/planned_downtime.editor.php:1085 +#: ../../godmode/agentes/planned_downtime.editor.php:1088 +#: ../../godmode/agentes/planned_downtime.editor.php:1139 +#: ../../godmode/agentes/fields_manager.php:151 +#: ../../godmode/agentes/module_manager_editor_common.php:1223 +#: ../../godmode/agentes/module_manager.php:655 +#: ../../godmode/agentes/module_manager.php:936 +#: ../../godmode/agentes/module_manager.php:962 +#: ../../godmode/netflow/nf_item_list.php:265 +#: ../../godmode/netflow/nf_item_list.php:275 +#: ../../godmode/netflow/nf_edit.php:172 ../../godmode/netflow/nf_edit.php:183 +#: ../../godmode/snmpconsole/snmp_alert.php:1310 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_delete_action_alerts.php:256 +#: ../../godmode/massive/massive_delete_modules.php:563 +#: ../../godmode/massive/massive_delete_agents.php:192 +#: ../../godmode/massive/massive_delete_profiles.php:178 +#: ../../godmode/massive/massive_delete_alerts.php:326 +#: ../../godmode/alerts/alert_actions.php:228 +#: ../../godmode/alerts/alert_list.list.php:837 +#: ../../godmode/alerts/alert_templates.php:408 +#: ../../godmode/setup/news.php:241 ../../godmode/setup/gis.php:67 +#: ../../godmode/setup/links.php:143 ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1278 +#: ../../godmode/setup/setup_visuals.php:1298 +#: ../../godmode/reporting/reporting_builder.list_items.php:536 +#: ../../godmode/reporting/reporting_builder.list_items.php:566 +#: ../../godmode/reporting/reporting_builder.list_items.php:589 +#: ../../godmode/reporting/reporting_builder.list_items.php:690 +#: ../../godmode/reporting/create_container.php:596 +#: ../../godmode/reporting/create_container.php:649 +#: ../../godmode/reporting/map_builder.php:339 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/graphs.php:308 +#: ../../godmode/reporting/graphs.php:325 +#: ../../godmode/reporting/graph_builder.graph_editor.php:202 +#: ../../godmode/reporting/graph_builder.graph_editor.php:242 +#: ../../godmode/reporting/visual_console_builder.elements.php:666 +#: ../../godmode/reporting/reporting_builder.php:1060 +#: ../../godmode/reporting/reporting_builder.php:1151 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/events/event_filter.php:175 +#: ../../godmode/events/event_responses.list.php:63 +#: ../../godmode/servers/servers.build_table.php:213 +#: ../../include/functions_cron.php:708 ../../include/functions_cron.php:730 +#: ../../include/class/ConfigPEN.class.php:260 +#: ../../include/class/NetworkMap.class.php:2813 +#: ../../include/class/ManageNetScanScripts.class.php:410 +#: ../../include/class/CredentialStore.class.php:1010 +#: ../../include/class/CredentialStore.class.php:1163 +#: ../../include/class/ModuleTemplates.class.php:850 +#: ../../include/class/ModuleTemplates.class.php:1116 +#: ../../include/functions_container.php:188 +#: ../../include/functions_container.php:322 +#: ../../operation/visual_console/view.php:561 +#: ../../operation/agentes/pandora_networkmap.php:702 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/messages/message_list.php:169 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/messages/message_list.php:261 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/snmpconsole/snmp_view.php:1188 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/incident_detail.php:478 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:129 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:301 +#: ../../operation/incidents/list_integriaims_incidents.php:306 +msgid "Delete" +msgstr "Delete" -#: ../../extensions/agents_alerts.php:181 -#: ../../extensions/agents_alerts.php:199 -#: ../../extensions/module_groups.php:84 -#: ../../godmode/agentes/fields_manager.php:99 -#: ../../godmode/agentes/modificar_agente.php:478 -#: ../../godmode/agentes/planned_downtime.editor.php:786 -#: ../../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:378 ../../godmode/menu.php:156 -#: ../../godmode/tag/tag.php:205 ../../include/functions_treeview.php:388 -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_reporting_html.php:1961 -#: ../../enterprise/extensions/backup/main.php:103 -#: ../../enterprise/extensions/cron/main.php:251 -#: ../../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/reporting/cluster_builder.main.php:483 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:654 -#: ../../enterprise/godmode/reporting/cluster_list.php:177 -#: ../../enterprise/godmode/setup/setup_skins.php:120 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:323 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:359 -#: ../../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/include/functions_autoprovision.php:385 -#: ../../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" +#: ../../views/dashboard/list.php:131 +#, php-format +msgid "Private for (%s)" +msgstr "Private for (%s)" -#: ../../extensions/agents_alerts.php:191 -#: ../../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" +#: ../../views/dashboard/list.php:174 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:498 +#: ../../enterprise/meta/advanced/metasetup.relations.php:584 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:698 +#: ../../enterprise/meta/advanced/links.php:166 +#: ../../enterprise/meta/advanced/policymanager.queue.php:333 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1097 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 +#: ../../enterprise/extensions/backup/main.php:295 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:419 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:492 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:379 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:427 +#: ../../enterprise/godmode/modules/local_components.php:613 +#: ../../enterprise/godmode/agentes/inventory_manager.php:245 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 +#: ../../enterprise/godmode/policies/policy_alerts.php:453 +#: ../../enterprise/godmode/policies/policy_modules.php:1521 +#: ../../enterprise/godmode/policies/policy_modules.php:1534 +#: ../../enterprise/godmode/policies/policy_modules.php:1579 +#: ../../enterprise/godmode/policies/policy_queue.php:535 +#: ../../enterprise/godmode/policies/policy_queue.php:572 +#: ../../enterprise/godmode/policies/policy_queue.php:590 +#: ../../enterprise/godmode/policies/policies.php:582 +#: ../../enterprise/godmode/policies/policies.php:600 +#: ../../enterprise/godmode/policies/policies.php:625 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:277 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:279 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:284 +#: ../../enterprise/godmode/policies/policy_agents.php:413 +#: ../../enterprise/godmode/policies/policy_agents.php:635 +#: ../../enterprise/godmode/policies/policy_agents.php:867 +#: ../../enterprise/godmode/policies/policy_agents.php:933 +#: ../../enterprise/godmode/policies/policy_agents.php:1030 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:368 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:634 +#: ../../enterprise/godmode/alerts/alert_events_list.php:728 +#: ../../enterprise/godmode/alerts/alert_events_list.php:839 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:485 +#: ../../enterprise/godmode/setup/setup_skins.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:801 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:608 +#: ../../enterprise/godmode/reporting/graph_template_list.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:399 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:462 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +#: ../../enterprise/include/functions_tasklist.php:464 +#: ../../enterprise/include/functions_tasklist.php:491 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1518 +#: ../../enterprise/include/class/AgentRepository.class.php:775 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1103 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3282 +#: ../../enterprise/include/functions_services.php:2753 +#: ../../enterprise/operation/agentes/transactional_map.php:360 +#: ../../enterprise/operation/agentes/transactional_map.php:364 +#: ../../enterprise/operation/agentes/transactional_map.php:375 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:228 +#: ../../enterprise/operation/services/services.list.php:566 +#: ../../extensions/files_repo/files_repo_list.php:108 +#: ../../godmode/modules/manage_nc_groups.php:261 +#: ../../godmode/modules/manage_network_components.php:738 +#: ../../godmode/modules/manage_network_templates.php:259 +#: ../../godmode/modules/manage_network_templates.php:269 +#: ../../godmode/groups/group_list.php:745 +#: ../../godmode/groups/modu_group_list.php:249 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/users/profile_list.php:366 +#: ../../godmode/users/user_list.php:542 ../../godmode/users/user_list.php:544 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/modificar_agente.php:734 +#: ../../godmode/agentes/planned_downtime.editor.php:1133 +#: ../../godmode/agentes/fields_manager.php:151 +#: ../../godmode/agentes/agent_manager.php:231 +#: ../../godmode/agentes/module_manager_editor_common.php:209 +#: ../../godmode/agentes/module_manager.php:879 +#: ../../godmode/agentes/module_manager.php:890 +#: ../../godmode/agentes/module_manager.php:912 +#: ../../godmode/agentes/module_manager.php:932 +#: ../../godmode/agentes/module_manager.php:954 +#: ../../godmode/netflow/nf_item_list.php:264 +#: ../../godmode/netflow/nf_edit.php:171 +#: ../../godmode/snmpconsole/snmp_alert.php:1310 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_alert.php:1570 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_operations.php:312 +#: ../../godmode/massive/massive_operations.php:321 +#: ../../godmode/massive/massive_standby_alerts.php:215 +#: ../../godmode/massive/massive_delete_action_alerts.php:254 +#: ../../godmode/massive/massive_delete_modules.php:561 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_delete_agents.php:190 +#: ../../godmode/massive/massive_edit_plugins.php:588 +#: ../../godmode/massive/massive_enable_disable_alerts.php:203 +#: ../../godmode/massive/massive_delete_profiles.php:176 +#: ../../godmode/massive/massive_add_action_alerts.php:234 +#: ../../godmode/massive/massive_add_profiles.php:169 +#: ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/alerts/alert_list.list.php:969 +#: ../../godmode/alerts/alert_commands.php:463 +#: ../../godmode/alerts/alert_commands.php:465 +#: ../../godmode/alerts/alert_templates.php:405 +#: ../../godmode/alerts/alert_special_days.php:506 +#: ../../godmode/setup/news.php:280 ../../godmode/setup/links.php:157 +#: ../../godmode/reporting/create_container.php:648 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/graphs.php:307 +#: ../../godmode/reporting/visual_console_builder.elements.php:405 +#: ../../godmode/reporting/reporting_builder.php:1053 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:495 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:757 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:777 +#: ../../godmode/servers/plugin.php:1031 ../../godmode/tag/tag.php:294 +#: ../../godmode/category/category.php:129 +#: ../../godmode/category/category.php:134 +#: ../../include/functions_profile.php:257 +#: ../../include/class/ConfigPEN.class.php:660 +#: ../../include/class/TreeGroupEdition.class.php:94 +#: ../../include/class/CredentialStore.class.php:1161 +#: ../../include/class/ModuleTemplates.class.php:840 +#: ../../include/class/ModuleTemplates.class.php:850 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:727 +#: ../../include/functions_container.php:187 +#: ../../include/functions_container.php:321 +#: ../../include/functions_events.php:3528 +#: ../../operation/users/user_edit.php:1079 +#: ../../operation/agentes/pandora_networkmap.editor.php:570 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/snmpconsole/snmp_browser.php:578 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/incidents/incident_detail.php:446 +#: ../../operation/incidents/incident_detail.php:494 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:245 +#: ../../operation/incidents/list_integriaims_incidents.php:305 +#: ../../operation/events/events.build_table.php:966 +msgid "Are you sure?" +msgstr "Are you sure?" -#: ../../extensions/agents_alerts.php:210 -#: ../../godmode/alerts/alert_list.builder.php:94 -#: ../../godmode/alerts/configure_alert_template.php:567 -msgid "Default action" -msgstr "Default action" +#: ../../views/dashboard/list.php:219 +msgid "New dashboard" +msgstr "New dashboard" -#: ../../extensions/agents_alerts.php:213 -#: ../../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:176 -#: ../../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 matching alerts" +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85 +msgid "Add widget" +msgstr "Add widget" -#: ../../extensions/agents_alerts.php:215 -#: ../../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:180 -#: ../../include/functions_reporting.php:10658 -#: ../../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:5005 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:150 -msgid "to" -msgstr "to" +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "" -#: ../../extensions/agents_alerts.php:224 -#: ../../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" +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:74 +#: ../../operation/snmpconsole/snmp_view.php:1259 +#: ../../operation/events/events.php:2431 +msgid "Until next" +msgstr "Until next" -#: ../../extensions/agents_alerts.php:228 -#: ../../extensions/agents_alerts.php:496 -#: ../../godmode/alerts/alert_list.builder.php:113 -#: ../../godmode/alerts/alert_list.list.php:407 -#: ../../godmode/alerts/alert_view.php:75 -#: ../../include/functions_treeview.php:387 -#: ../../include/functions_treeview.php:428 -#: ../../include/functions_reporting_html.php:1960 -#: ../../include/functions_reporting_html.php:1963 -#: ../../mobile/operation/alerts.php:270 -#: ../../operation/agentes/alerts_status.php:462 -#: ../../operation/agentes/alerts_status.php:503 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:571 -#: ../../operation/search_alerts.php:45 -#: ../../operation/servers/recon_view.php:104 -#: ../../enterprise/extensions/cron/main.php:315 -#: ../../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" +#: ../../views/dashboard/formDashboard.php:84 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 +#: ../../godmode/reporting/reporting_builder.php:819 +msgid "Private" +msgstr "Private" -#: ../../extensions/agents_alerts.php:240 ../../extensions/insert_data.php:179 -#: ../../general/header.php:215 ../../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:428 -#: ../../godmode/massive/massive_delete_modules.php:502 -#: ../../godmode/massive/massive_edit_modules.php:266 -#: ../../godmode/massive/massive_edit_modules.php:326 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -#: ../../enterprise/godmode/alerts/alert_events.php:513 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103 -#: ../../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:549 -#: ../../enterprise/meta/general/main_header.php:394 -#: ../../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" +#: ../../views/dashboard/formDashboard.php:113 +#: ../../enterprise/godmode/services/services.service.php:440 +#: ../../enterprise/godmode/reporting/visual_console_template.php:200 +msgid "Favourite" +msgstr "" -#: ../../extensions/agents_alerts.php:246 -#: ../../godmode/alerts/alert_list.builder.php:131 -#: ../../godmode/alerts/configure_alert_template.php:502 -msgid "Create Template" -msgstr "Create template" +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "" -#: ../../extensions/agents_alerts.php:249 -#: ../../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:186 -#: ../../include/functions_reporting_html.php:2116 -#: ../../include/functions_reporting_html.php:3221 -#: ../../enterprise/godmode/alerts/alert_events_list.php:563 -#: ../../enterprise/godmode/alerts/alert_events_list.php:604 -#: ../../enterprise/include/functions_reporting_pdf.php:2445 -msgid "Threshold" -msgstr "Threshold" +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "Configure widget" -#: ../../extensions/agents_alerts.php:257 -#: ../../godmode/alerts/alert_list.builder.php:144 -msgid "Add alert" -msgstr "Add alert" +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "Delete widget" -#: ../../extensions/agents_alerts.php:262 -#: ../../extensions/agents_alerts.php:496 ../../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: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:205 -#: ../../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:322 -#: ../../godmode/reporting/create_container.php:492 -#: ../../godmode/reporting/create_container.php:561 -#: ../../godmode/reporting/graph_builder.graph_editor.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:962 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1711 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1910 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1917 -#: ../../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:151 -#: ../../include/functions_reporting.php:3900 -#: ../../include/functions_reporting.php:4044 -#: ../../include/functions_reporting.php:4186 -#: ../../include/functions_pandora_networkmap.php:1630 -#: ../../include/functions_pandora_networkmap.php:1800 -#: ../../include/functions_visual_map_editor.php:335 -#: ../../include/functions_visual_map_editor.php:367 -#: ../../include/functions_graph.php:6212 -#: ../../include/functions_reporting_html.php:399 -#: ../../include/functions_reporting_html.php:733 -#: ../../include/functions_reporting_html.php:813 -#: ../../include/functions_reporting_html.php:822 -#: ../../include/functions_reporting_html.php:1488 -#: ../../include/functions_reporting_html.php:1892 -#: ../../include/functions_reporting_html.php:1899 -#: ../../include/functions_reporting_html.php:1958 -#: ../../include/functions_reporting_html.php:2232 -#: ../../include/functions_reporting_html.php:2317 -#: ../../include/functions_reporting_html.php:2360 -#: ../../include/functions_reporting_html.php:2656 -#: ../../include/functions_reporting_html.php:2703 -#: ../../include/functions_reporting_html.php:2741 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3147 -#: ../../include/functions_reporting_html.php:3358 -#: ../../mobile/operation/agents.php:69 ../../mobile/operation/agents.php:333 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:510 -#: ../../mobile/operation/home.php:92 ../../mobile/operation/modules.php:496 -#: ../../operation/agentes/alerts_status.php:460 -#: ../../operation/agentes/alerts_status.php:535 -#: ../../operation/agentes/estado_agente.php:535 -#: ../../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:956 -#: ../../operation/agentes/ver_agente.php:893 -#: ../../operation/events/events.build_table.php:36 -#: ../../operation/events/sound_events.php:88 -#: ../../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:87 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:41 -#: ../../enterprise/dashboard/widgets/module_icon.php:52 -#: ../../enterprise/dashboard/widgets/module_status.php:41 -#: ../../enterprise/dashboard/widgets/module_table_value.php:49 -#: ../../enterprise/dashboard/widgets/module_value.php:52 -#: ../../enterprise/dashboard/widgets/single_graph.php:43 -#: ../../enterprise/dashboard/widgets/sla_percent.php:40 -#: ../../enterprise/dashboard/widgets/top_n.php:126 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:57 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:57 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:65 -#: ../../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/massive/massive_add_modules_policy.php:96 -#: ../../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:1534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2132 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2282 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2289 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:231 -#: ../../enterprise/godmode/services/services.elements.php:346 -#: ../../enterprise/godmode/services/services.elements.php:363 -#: ../../enterprise/include/ajax/clustermap.php:38 -#: ../../enterprise/include/functions_alert_event.php:923 -#: ../../enterprise/include/functions_events.php:111 -#: ../../enterprise/include/functions_inventory.php:235 -#: ../../enterprise/include/functions_inventory.php:651 -#: ../../enterprise/include/functions_inventory.php:707 -#: ../../enterprise/include/functions_log.php:369 -#: ../../enterprise/include/functions_reporting.php:1649 -#: ../../enterprise/include/functions_reporting.php:1862 -#: ../../enterprise/include/functions_reporting.php:1985 -#: ../../enterprise/include/functions_reporting.php:1999 -#: ../../enterprise/include/functions_reporting.php:2457 -#: ../../enterprise/include/functions_reporting.php:3234 -#: ../../enterprise/include/functions_reporting_csv.php:334 -#: ../../enterprise/include/functions_reporting_csv.php:358 -#: ../../enterprise/include/functions_reporting_csv.php:417 -#: ../../enterprise/include/functions_reporting_csv.php:443 -#: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:990 -#: ../../enterprise/include/functions_reporting_csv.php:1039 -#: ../../enterprise/include/functions_reporting_csv.php:1086 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/include/functions_reporting_csv.php:1274 -#: ../../enterprise/include/functions_reporting_csv.php:1416 -#: ../../enterprise/include/functions_reporting_csv.php:1486 -#: ../../enterprise/include/functions_reporting_pdf.php:357 -#: ../../enterprise/include/functions_reporting_pdf.php:415 -#: ../../enterprise/include/functions_reporting_pdf.php:820 -#: ../../enterprise/include/functions_reporting_pdf.php:881 -#: ../../enterprise/include/functions_reporting_pdf.php:908 -#: ../../enterprise/include/functions_reporting_pdf.php:941 -#: ../../enterprise/include/functions_reporting_pdf.php:1007 -#: ../../enterprise/include/functions_reporting_pdf.php:1345 -#: ../../enterprise/include/functions_reporting_pdf.php:1690 -#: ../../enterprise/include/functions_reporting_pdf.php:1923 -#: ../../enterprise/include/functions_reporting_pdf.php:1941 -#: ../../enterprise/include/functions_services.php:1531 -#: ../../enterprise/meta/agentsearch.php:102 -#: ../../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/agentes/tag_view.php:462 -#: ../../enterprise/operation/inventory/inventory.php:207 -#: ../../enterprise/operation/log/log_viewer.php:211 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:186 -msgid "Agent" -msgstr "Agent" - -#: ../../extensions/agents_alerts.php:262 -msgid "module" -msgstr "module" - -#: ../../extensions/agents_alerts.php:303 -msgid "There are no agents with alerts" -msgstr "There are no agents with alerts." - -#: ../../extensions/agents_alerts.php:325 -#: ../../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 "Alert templates" - -#: ../../extensions/agents_alerts.php:332 -msgid "Previous templates" -msgstr "Previous templates" - -#: ../../extensions/agents_alerts.php:370 -msgid "More templates" -msgstr "More templates" - -#: ../../extensions/agents_alerts.php:402 -#: ../../godmode/agentes/configurar_agente.php:335 -#: ../../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:267 -#: ../../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:376 -#: ../../godmode/massive/massive_copy_modules.php:158 -#: ../../godmode/menu.php:140 ../../include/functions_treeview.php:380 -#: ../../include/functions_graph.php:850 -#: ../../include/functions_graph.php:4626 -#: ../../include/functions_graph.php:5511 -#: ../../include/functions_reporting_html.php:1611 -#: ../../include/functions_reporting_html.php:3368 -#: ../../include/functions_reports.php:610 -#: ../../include/functions_reports.php:612 -#: ../../include/functions_reports.php:615 -#: ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/agent.php:283 ../../mobile/operation/agents.php:83 -#: ../../mobile/operation/agents.php:347 ../../mobile/operation/alerts.php:154 -#: ../../mobile/operation/home.php:58 -#: ../../operation/agentes/estado_agente.php:576 -#: ../../operation/agentes/ver_agente.php:1048 -#: ../../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:368 -#: ../../enterprise/include/functions_policies.php:3439 -#: ../../enterprise/include/functions_reporting_pdf.php:783 -#: ../../enterprise/meta/agentsearch.php:108 -#: ../../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 -#: ../../enterprise/operation/agentes/tag_view.php:471 -msgid "Alerts" -msgstr "Alerts" - -#: ../../extensions/agents_alerts.php:431 -#: ../../extensions/agents_modules.php:173 -#: ../../extensions/insert_data.php:173 ../../extensions/module_groups.php:43 -#: ../../godmode/agentes/agent_manager.php:325 -#: ../../godmode/agentes/agent_manager.php:341 -#: ../../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:865 -#: ../../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/alerts/alert_view.php:71 -#: ../../godmode/massive/massive_edit_agents.php:351 -#: ../../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:345 -#: ../../godmode/reporting/create_container.php:498 -#: ../../godmode/reporting/create_container.php:562 -#: ../../godmode/reporting/graph_builder.graph_editor.php:205 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1911 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1918 -#: ../../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/servers/plugin.php:67 -#: ../../include/ajax/alert_list.ajax.php:160 -#: ../../include/functions_reporting.php:3903 -#: ../../include/functions_reporting.php:4047 -#: ../../include/functions_reporting.php:4189 -#: ../../include/functions_treeview.php:66 -#: ../../include/functions_visual_map_editor.php:402 -#: ../../include/functions_graph.php:6328 -#: ../../include/functions_reporting_html.php:400 -#: ../../include/functions_reporting_html.php:734 -#: ../../include/functions_reporting_html.php:1489 -#: ../../include/functions_reporting_html.php:1959 -#: ../../include/functions_reporting_html.php:2233 -#: ../../include/functions_reporting_html.php:2324 -#: ../../include/functions_reporting_html.php:2367 -#: ../../include/functions_reporting_html.php:2657 -#: ../../include/functions_reporting_html.php:2704 -#: ../../mobile/operation/alerts.php:268 -#: ../../operation/agentes/alerts_status.php:461 -#: ../../operation/agentes/alerts_status.php:502 -#: ../../operation/agentes/alerts_status.php:536 -#: ../../operation/agentes/alerts_status.php:570 -#: ../../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:97 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:52 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:58 -#: ../../enterprise/dashboard/widgets/module_icon.php:63 -#: ../../enterprise/dashboard/widgets/module_icon.php:69 -#: ../../enterprise/dashboard/widgets/module_status.php:52 -#: ../../enterprise/dashboard/widgets/module_status.php:58 -#: ../../enterprise/dashboard/widgets/module_table_value.php:60 -#: ../../enterprise/dashboard/widgets/module_table_value.php:66 -#: ../../enterprise/dashboard/widgets/module_value.php:64 -#: ../../enterprise/dashboard/widgets/module_value.php:70 -#: ../../enterprise/dashboard/widgets/single_graph.php:55 -#: ../../enterprise/dashboard/widgets/single_graph.php:61 -#: ../../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:1546 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2133 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:241 -#: ../../enterprise/godmode/services/services.elements.php:345 -#: ../../enterprise/godmode/services/services.elements.php:366 -#: ../../enterprise/include/functions_alert_event.php:924 -#: ../../enterprise/include/functions_events.php:120 -#: ../../enterprise/include/functions_inventory.php:652 -#: ../../enterprise/include/functions_inventory.php:708 -#: ../../enterprise/include/functions_reporting.php:1649 -#: ../../enterprise/include/functions_reporting.php:2457 -#: ../../enterprise/include/functions_reporting.php:3234 -#: ../../enterprise/include/functions_reporting_csv.php:334 -#: ../../enterprise/include/functions_reporting_csv.php:359 -#: ../../enterprise/include/functions_reporting_csv.php:417 -#: ../../enterprise/include/functions_reporting_csv.php:443 -#: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:990 -#: ../../enterprise/include/functions_reporting_csv.php:1040 -#: ../../enterprise/include/functions_reporting_csv.php:1087 -#: ../../enterprise/include/functions_reporting_csv.php:1159 -#: ../../enterprise/include/functions_reporting_csv.php:1275 -#: ../../enterprise/include/functions_reporting_csv.php:1417 -#: ../../enterprise/include/functions_reporting_csv.php:1487 -#: ../../enterprise/include/functions_reporting_pdf.php:358 -#: ../../enterprise/include/functions_reporting_pdf.php:821 -#: ../../enterprise/include/functions_reporting_pdf.php:882 -#: ../../enterprise/include/functions_reporting_pdf.php:909 -#: ../../enterprise/include/functions_reporting_pdf.php:1008 -#: ../../enterprise/include/functions_reporting_pdf.php:1346 -#: ../../enterprise/include/functions_reporting_pdf.php:1690 -#: ../../enterprise/include/functions_reporting_pdf.php:1928 -#: ../../enterprise/include/functions_reporting_pdf.php:1947 -#: ../../enterprise/include/functions_services.php:1581 -#: ../../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:170 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:191 -msgid "Module" -msgstr "Module" - -#: ../../extensions/agents_alerts.php:432 ../../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:571 -#: ../../godmode/agentes/planned_downtime.editor.php:866 -#: ../../godmode/alerts/alert_list.list.php:608 -#: ../../godmode/alerts/alert_view.php:417 -#: ../../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/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:121 -#: ../../godmode/netflow/nf_item_list.php:152 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1717 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1912 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1921 -#: ../../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:226 -#: ../../godmode/users/configure_user.php:740 -#: ../../include/ajax/alert_list.ajax.php:168 ../../include/functions.php:2337 -#: ../../include/functions_ui_renders.php:97 -#: ../../include/functions_events.php:3713 -#: ../../include/functions_reporting_html.php:1962 -#: ../../include/functions_reporting_html.php:3710 -#: ../../mobile/operation/tactical.php:308 -#: ../../operation/agentes/alerts_status.functions.php:106 -#: ../../operation/agentes/alerts_status.php:463 -#: ../../operation/agentes/alerts_status.php:504 -#: ../../operation/agentes/alerts_status.php:538 -#: ../../operation/agentes/alerts_status.php:572 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/incidents/incident.php:343 -#: ../../operation/search_alerts.php:48 -#: ../../operation/snmpconsole/snmp_view.php:739 -#: ../../operation/snmpconsole/snmp_view.php:1041 -#: ../../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:1236 -#: ../../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:2137 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2292 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/include/functions_services.php:1521 -#: ../../enterprise/operation/agentes/policy_view.php:196 -msgid "Action" -msgstr "Action" - -#: ../../extensions/agents_alerts.php:433 -#: ../../godmode/alerts/alert_view.php:79 -#: ../../godmode/snmpconsole/snmp_alert.php:1169 -#: ../../include/functions_treeview.php:430 -#: ../../include/functions_reporting_html.php:3222 -#: ../../operation/agentes/alerts_status.php:464 -#: ../../operation/agentes/alerts_status.php:505 -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:573 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1528 -#: ../../enterprise/operation/agentes/policy_view.php:197 -msgid "Last fired" -msgstr "Last triggered" - -#: ../../extensions/agents_alerts.php:434 ../../extensions/net_tools.php:243 -#: ../../godmode/agentes/agent_incidents.php:86 -#: ../../godmode/agentes/agent_manager.php:359 -#: ../../godmode/agentes/module_manager.php:567 -#: ../../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:201 -#: ../../godmode/massive/massive_delete_agents.php:119 -#: ../../godmode/massive/massive_delete_modules.php:471 -#: ../../godmode/massive/massive_edit_agents.php:275 -#: ../../godmode/massive/massive_edit_agents.php:418 -#: ../../godmode/servers/servers.build_table.php:65 -#: ../../include/ajax/module.php:781 -#: ../../include/functions_pandora_networkmap.php:1647 -#: ../../include/functions_events.php:39 -#: ../../include/functions_events.php:2514 -#: ../../include/functions_events.php:3619 -#: ../../include/functions_snmp_browser.php:481 -#: ../../include/functions_reporting_html.php:404 -#: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:819 -#: ../../include/functions_reporting_html.php:1024 -#: ../../include/functions_reporting_html.php:1034 -#: ../../include/functions_reporting_html.php:1645 -#: ../../include/functions_reporting_html.php:2086 -#: ../../include/functions_reporting_html.php:2121 -#: ../../include/functions_reporting_html.php:2937 -#: ../../include/functions_snmp.php:325 ../../mobile/operation/agents.php:81 -#: ../../mobile/operation/agents.php:126 ../../mobile/operation/agents.php:205 -#: ../../mobile/operation/agents.php:206 ../../mobile/operation/agents.php:345 -#: ../../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/events.php:343 ../../mobile/operation/events.php:493 -#: ../../mobile/operation/events.php:613 ../../mobile/operation/events.php:614 -#: ../../mobile/operation/modules.php:119 -#: ../../mobile/operation/modules.php:120 -#: ../../mobile/operation/modules.php:212 -#: ../../mobile/operation/modules.php:213 -#: ../../mobile/operation/modules.php:503 -#: ../../mobile/operation/modules.php:507 -#: ../../mobile/operation/modules.php:511 -#: ../../mobile/operation/modules.php:515 -#: ../../mobile/operation/modules.php:523 -#: ../../mobile/operation/modules.php:528 -#: ../../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:465 -#: ../../operation/agentes/alerts_status.php:506 -#: ../../operation/agentes/alerts_status.php:540 -#: ../../operation/agentes/alerts_status.php:574 -#: ../../operation/agentes/estado_agente.php:221 -#: ../../operation/agentes/estado_agente.php:573 -#: ../../operation/agentes/status_monitor.php:979 -#: ../../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:101 -#: ../../operation/snmpconsole/snmp_view.php:461 +#: ../../views/dashboard/slides.php:40 #: ../../operation/snmpconsole/snmp_view.php:705 -#: ../../operation/snmpconsole/snmp_view.php:1025 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/extensions/backup/main.php:101 -#: ../../enterprise/extensions/vmware/vmware_view.php:1016 -#: ../../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/massive/massive_add_modules_policy.php:92 -#: ../../enterprise/godmode/policies/policies.php:253 -#: ../../enterprise/godmode/policies/policy_agents.php:574 -#: ../../enterprise/godmode/policies/policy_agents.php:819 -#: ../../enterprise/godmode/policies/policy_collections.php:124 -#: ../../enterprise/godmode/policies/policy_collections.php:195 -#: ../../enterprise/godmode/policies/policy_queue.php:368 -#: ../../enterprise/godmode/reporting/cluster_list.php:121 -#: ../../enterprise/godmode/reporting/cluster_list.php:173 -#: ../../enterprise/godmode/servers/list_satellite.php:36 -#: ../../enterprise/include/ajax/clustermap.php:65 -#: ../../enterprise/include/ajax/clustermap.php:275 -#: ../../enterprise/include/functions_reporting.php:1650 -#: ../../enterprise/include/functions_reporting.php:2458 -#: ../../enterprise/include/functions_reporting.php:3235 -#: ../../enterprise/include/functions_reporting.php:4846 -#: ../../enterprise/include/functions_reporting.php:5147 -#: ../../enterprise/include/functions_reporting_csv.php:1434 -#: ../../enterprise/include/functions_reporting_pdf.php:1350 -#: ../../enterprise/include/functions_reporting_pdf.php:1691 -#: ../../enterprise/include/functions_reporting_pdf.php:2123 -#: ../../enterprise/include/functions_reporting_pdf.php:2400 -#: ../../enterprise/include/functions_reporting_pdf.php:2450 -#: ../../enterprise/include/functions_services.php:1518 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:357 -#: ../../enterprise/meta/advanced/policymanager.queue.php:222 +msgid "Exit fullscreen" +msgstr "Exit fullscreen" + +#: ../../views/dashboard/slides.php:178 +msgid "Change every" +msgstr "Change every" + +#: ../../views/dashboard/slides.php:200 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 +#: ../../include/functions.php:3665 +msgid "Previous" +msgstr "Previous" + +#: ../../views/dashboard/slides.php:215 +#: ../../enterprise/operation/agentes/transactional_map.php:365 +msgid "Stop" +msgstr "Stop" + +#: ../../views/dashboard/slides.php:226 +msgid "Pause" +msgstr "Pause" + +#: ../../views/dashboard/slides.php:237 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:90 +#: ../../enterprise/godmode/alerts/alert_events.php:675 +#: ../../enterprise/godmode/wizards/Cloud.class.php:535 +#: ../../enterprise/include/class/VMware.app.php:489 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/SAP.app.php:432 +#: ../../enterprise/include/class/Aws.cloud.php:1310 +#: ../../enterprise/include/class/MySQL.app.php:587 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:752 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1766 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1869 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1173 +#: ../../godmode/alerts/configure_alert_template.php:1010 +#: ../../godmode/alerts/configure_alert_template.php:1017 +#: ../../godmode/wizards/HostDevices.class.php:765 +#: ../../include/class/CustomNetScan.class.php:548 +msgid "Next" +msgstr "Next" + +#: ../../views/dashboard/slides.php:249 +msgid "Mode Cell" +msgstr "" + +#: ../../views/dashboard/slides.php:255 +msgid "Mode Layout" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/extensions/ipam/ipam_editor.php:141 +#: ../../enterprise/operation/services/services.treeview_services.php:61 +#: ../../enterprise/operation/services/services.treeview_services.php:67 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../operation/agentes/ver_agente.php:1549 ../../operation/menu.php:33 +#: ../../operation/menu.php:166 +msgid "Monitoring" +msgstr "Monitoring" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:35 +msgid "Clusters" +msgstr "Clusters" + +#: ../../enterprise/views/cluster/list.php:59 +#: ../../enterprise/views/cluster/view.php:270 +#: ../../enterprise/meta/advanced/collections.php:322 +#: ../../enterprise/meta/include/functions_autoprovision.php:449 +#: ../../enterprise/meta/include/functions_wizard_meta.php:198 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:585 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1142 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1462 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1807 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:302 +#: ../../enterprise/extensions/backup/main.php:131 +#: ../../enterprise/extensions/backup/main.php:261 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:319 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:371 +#: ../../enterprise/extensions/ipam/ipam_list.php:136 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:410 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_excel.php:106 +#: ../../enterprise/extensions/ipam/ipam_excel.php:176 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:161 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1222 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1678 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:223 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:271 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_editor.php:133 +#: ../../enterprise/godmode/modules/configure_local_component.php:449 +#: ../../enterprise/godmode/modules/configure_local_component.php:610 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:370 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:334 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:82 +#: ../../enterprise/godmode/agentes/collection_manager.php:117 +#: ../../enterprise/godmode/agentes/collection_manager.php:203 +#: ../../enterprise/godmode/agentes/inventory_manager.php:218 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:134 +#: ../../enterprise/godmode/agentes/collections.php:324 +#: ../../enterprise/godmode/policies/configure_policy.php:95 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:254 +#: ../../enterprise/godmode/policies/policy_collections.php:151 +#: ../../enterprise/godmode/policies/policy_collections.php:246 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:522 +#: ../../enterprise/godmode/alerts/alert_events.php:606 +#: ../../enterprise/godmode/services/services.service.php:388 +#: ../../enterprise/godmode/services/services.elements.php:731 +#: ../../enterprise/godmode/setup/setup_skins.php:121 +#: ../../enterprise/godmode/setup/edit_skin.php:256 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:157 +#: ../../enterprise/godmode/reporting/graph_template_list.php:147 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:167 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:508 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:314 +#: ../../enterprise/mobile/include/enterprise.class.php:88 +#: ../../enterprise/include/functions_cron.php:261 +#: ../../enterprise/include/functions_reporting_pdf.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:454 +#: ../../enterprise/include/functions_reporting_csv.php:457 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:706 +#: ../../enterprise/include/functions_reporting_csv.php:733 +#: ../../enterprise/include/functions_reporting_csv.php:735 +#: ../../enterprise/include/functions_reporting_csv.php:764 +#: ../../enterprise/include/functions_reporting_csv.php:766 +#: ../../enterprise/include/functions_reporting_csv.php:796 +#: ../../enterprise/include/functions_reporting_csv.php:798 +#: ../../enterprise/include/functions_reporting_csv.php:833 +#: ../../enterprise/include/functions_reporting_csv.php:835 +#: ../../enterprise/include/functions_reporting_csv.php:856 +#: ../../enterprise/include/functions_reporting_csv.php:858 +#: ../../enterprise/include/functions_reporting_csv.php:907 +#: ../../enterprise/include/functions_reporting_csv.php:909 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:956 +#: ../../enterprise/include/functions_reporting_csv.php:980 +#: ../../enterprise/include/functions_reporting_csv.php:982 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1011 +#: ../../enterprise/include/functions_reporting_csv.php:1013 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1066 +#: ../../enterprise/include/functions_reporting_csv.php:1068 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1121 +#: ../../enterprise/include/functions_reporting_csv.php:1123 +#: ../../enterprise/include/functions_reporting_csv.php:1170 +#: ../../enterprise/include/functions_reporting_csv.php:1172 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1225 +#: ../../enterprise/include/functions_reporting_csv.php:1227 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1254 +#: ../../enterprise/include/functions_reporting_csv.php:1256 +#: ../../enterprise/include/functions_reporting_csv.php:1291 +#: ../../enterprise/include/functions_reporting_csv.php:1293 +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1531 +#: ../../enterprise/include/functions_reporting_csv.php:1677 +#: ../../enterprise/include/functions_reporting_csv.php:1679 +#: ../../enterprise/include/functions_reporting_csv.php:1731 +#: ../../enterprise/include/functions_reporting_csv.php:1799 +#: ../../enterprise/include/functions_reporting_csv.php:1968 +#: ../../enterprise/include/functions_reporting_csv.php:2005 +#: ../../enterprise/include/functions_reporting_csv.php:2009 +#: ../../enterprise/include/functions_reporting_csv.php:2061 +#: ../../enterprise/include/functions_reporting_csv.php:2063 +#: ../../enterprise/include/functions_reporting_csv.php:2092 +#: ../../enterprise/include/functions_reporting_csv.php:2094 +#: ../../enterprise/include/functions_reporting_csv.php:2128 +#: ../../enterprise/include/functions_reporting_csv.php:2130 +#: ../../enterprise/include/functions_reporting_csv.php:2160 +#: ../../enterprise/include/functions_reporting_csv.php:2162 +#: ../../enterprise/include/functions_reporting_csv.php:2182 +#: ../../enterprise/include/functions_reporting_csv.php:2184 +#: ../../enterprise/include/functions_reporting_csv.php:2223 +#: ../../enterprise/include/functions_reporting_csv.php:2225 +#: ../../enterprise/include/functions_reporting_csv.php:2277 +#: ../../enterprise/include/functions_reporting_csv.php:2279 +#: ../../enterprise/include/functions_reporting_csv.php:2310 +#: ../../enterprise/include/functions_reporting_csv.php:2312 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:716 +#: ../../enterprise/include/functions_services.php:2476 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../enterprise/include/functions_update_manager.php:209 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../enterprise/operation/agentes/transactional_map.php:181 +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:77 +#: ../../enterprise/operation/agentes/ver_agente.php:57 +#: ../../enterprise/operation/agentes/collection_view.php:64 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:411 +#: ../../enterprise/operation/services/services.service.php:164 +#: ../../enterprise/operation/services/services.list.php:426 +#: ../../extensions/files_repo/files_repo_form.php:62 +#: ../../extensions/files_repo/files_repo_list.php:54 +#: ../../godmode/modules/manage_network_templates_form.php:160 +#: ../../godmode/modules/manage_network_templates_form.php:222 +#: ../../godmode/modules/manage_network_components_form.php:296 +#: ../../godmode/modules/manage_network_components.php:669 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/modules/manage_network_templates.php:235 +#: ../../godmode/groups/configure_group.php:196 +#: ../../godmode/groups/group_list.php:689 +#: ../../godmode/users/user_list.php:334 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/modificar_agente.php:496 +#: ../../godmode/agentes/planned_downtime.list.php:399 +#: ../../godmode/agentes/planned_downtime.editor.php:663 +#: ../../godmode/agentes/agent_manager.php:400 +#: ../../godmode/agentes/module_manager_editor_common.php:997 +#: ../../godmode/agentes/module_manager.php:649 +#: ../../godmode/netflow/nf_item_list.php:177 +#: ../../godmode/snmpconsole/snmp_alert.php:754 +#: ../../godmode/snmpconsole/snmp_alert.php:1278 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/snmpconsole/snmp_filters.php:258 +#: ../../godmode/massive/massive_edit_plugins.php:506 +#: ../../godmode/massive/massive_edit_agents.php:598 +#: ../../godmode/massive/massive_edit_modules.php:671 +#: ../../godmode/alerts/configure_alert_command.php:194 +#: ../../godmode/alerts/alert_commands.php:415 +#: ../../godmode/alerts/configure_alert_special_days.php:92 +#: ../../godmode/alerts/alert_templates.php:46 +#: ../../godmode/alerts/configure_alert_template.php:935 +#: ../../godmode/setup/os.builder.php:34 ../../godmode/setup/os.list.php:33 +#: ../../godmode/setup/setup_integria.php:271 +#: ../../godmode/setup/setup_integria.php:394 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:234 +#: ../../godmode/reporting/graphs.php:264 +#: ../../godmode/reporting/reporting_builder.item_editor.php:898 +#: ../../godmode/reporting/reporting_builder.main.php:188 +#: ../../godmode/reporting/reporting_builder.php:792 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_responses.editor.php:93 +#: ../../godmode/events/event_responses.list.php:51 +#: ../../godmode/servers/modificar_server.php:64 +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:478 +#: ../../godmode/tag/tag.php:175 ../../godmode/tag/tag.php:225 +#: ../../godmode/tag/edit_tag.php:176 ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:133 +#: ../../include/functions_reporting_html.php:2609 +#: ../../include/functions_reporting_html.php:2660 +#: ../../include/functions_reporting_html.php:4182 +#: ../../include/functions_reporting_html.php:5173 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/module.php:844 +#: ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:631 +#: ../../include/class/ConfigPEN.class.php:442 +#: ../../include/class/ConfigPEN.class.php:593 +#: ../../include/class/ManageNetScanScripts.class.php:409 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 +#: ../../include/class/ModuleTemplates.class.php:816 +#: ../../include/class/ModuleTemplates.class.php:977 +#: ../../include/class/ModuleTemplates.class.php:1115 +#: ../../include/functions_container.php:148 +#: ../../include/functions_snmp_browser.php:536 +#: ../../include/functions_snmp_browser.php:1353 +#: ../../include/functions_events.php:3599 ../../operation/search_users.php:39 +#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 +#: ../../operation/agentes/gis_view.php:219 +#: ../../operation/agentes/estado_agente.php:707 +#: ../../operation/agentes/pandora_networkmap.editor.php:291 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/estado_generalagente.php:216 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/incident_detail.php:476 +#: ../../operation/incidents/incident_detail.php:526 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:256 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:298 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:311 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:443 +#: ../../operation/search_reports.php:35 ../../operation/search_graphs.php:30 +#: ../../operation/reporting/custom_reporting.php:35 +#: ../../operation/reporting/graph_viewer.php:377 +#: ../../operation/search_policies.php:35 +msgid "Description" +msgstr "Description" + +#: ../../enterprise/views/cluster/list.php:61 #: ../../enterprise/meta/advanced/servers.build_table.php:60 -#: ../../enterprise/meta/agentsearch.php:107 -#: ../../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/agentes/tag_view.php:470 -#: ../../enterprise/operation/agentes/tag_view.php:538 -#: ../../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 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:206 +#: ../../enterprise/godmode/policies/policy_modules.php:1447 +#: ../../enterprise/godmode/services/services.elements.php:637 +#: ../../enterprise/godmode/services/services.elements.php:660 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:274 +#: ../../enterprise/include/functions_reporting_csv.php:1406 +#: ../../enterprise/include/functions_reporting_csv.php:1522 +#: ../../enterprise/include/functions_reporting_csv.php:1722 +#: ../../enterprise/include/functions_reporting_csv.php:1790 +#: ../../enterprise/include/functions_services.php:2474 +#: ../../enterprise/operation/agentes/policy_view.php:325 +#: ../../enterprise/operation/agentes/tag_view.php:583 +#: ../../enterprise/operation/agentes/ver_agente.php:29 +#: ../../godmode/modules/manage_network_templates_form.php:220 +#: ../../godmode/modules/manage_network_components_form_common.php:75 +#: ../../godmode/modules/manage_network_components.php:668 +#: ../../godmode/agentes/agent_template.php:234 +#: ../../godmode/agentes/modificar_agente.php:494 +#: ../../godmode/agentes/planned_downtime.list.php:401 +#: ../../godmode/agentes/planned_downtime.editor.php:673 +#: ../../godmode/agentes/module_manager_editor_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:373 +#: ../../godmode/agentes/module_manager_editor_common.php:1221 +#: ../../godmode/agentes/module_manager.php:647 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:285 +#: ../../godmode/alerts/alert_templates.php:368 +#: ../../godmode/setup/news.php:237 ../../godmode/setup/gis_step_2.php:225 +#: ../../godmode/setup/setup_integria.php:333 +#: ../../godmode/setup/setup_integria.php:456 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:796 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:303 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../godmode/servers/servers.build_table.php:67 +#: ../../godmode/servers/modificar_server.php:70 +#: ../../godmode/servers/plugin.php:970 +#: ../../mobile/operation/visualmaps.php:67 +#: ../../mobile/operation/visualmaps.php:68 +#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 +#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:680 +#: ../../mobile/operation/events.php:681 +#: ../../include/functions_visual_map_editor.php:634 +#: ../../include/functions_visual_map_editor.php:652 +#: ../../include/functions_visual_map_editor.php:780 +#: ../../include/functions_reporting_html.php:964 +#: ../../include/functions_reporting_html.php:972 +#: ../../include/functions_reporting_html.php:1184 +#: ../../include/functions_reporting_html.php:1192 +#: ../../include/functions_reporting_html.php:1959 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:4181 +#: ../../include/ajax/module.php:842 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:461 +#: ../../include/class/ModuleTemplates.class.php:1114 +#: ../../include/class/AgentWizard.class.php:440 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:273 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:530 +#: ../../include/functions_events.php:2397 +#: ../../include/functions_events.php:4537 +#: ../../operation/agentes/estado_agente.php:722 +#: ../../operation/agentes/ver_agente.php:979 +#: ../../operation/netflow/nf_live_view.php:311 +#: ../../operation/incidents/configure_integriaims_incident.php:210 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:377 +#: ../../operation/search_modules.php:33 +#: ../../operation/events/sound_events.php:74 +msgid "Type" +msgstr "Type" + +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:4602 +#: ../../operation/agentes/pandora_networkmap.php:695 +msgid "Nodes" +msgstr "Nodes" + +#: ../../enterprise/views/cluster/list.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:59 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:414 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:692 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:119 +#: ../../enterprise/meta/agentsearch.php:304 +#: ../../enterprise/extensions/backup/main.php:134 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/extensions/vmware/vmware_view.php:1092 +#: ../../enterprise/godmode/agentes/collection_manager.php:118 +#: ../../enterprise/godmode/agentes/collection_manager.php:204 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_modules.php:1448 +#: ../../enterprise/godmode/policies/policy_queue.php:427 +#: ../../enterprise/godmode/policies/policies.php:431 +#: ../../enterprise/godmode/policies/policy_collections.php:152 +#: ../../enterprise/godmode/policies/policy_collections.php:247 +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:108 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/alerts/alert_events_list.php:504 +#: ../../enterprise/godmode/servers/HA_cluster.php:131 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/include/functions_reporting_csv.php:1754 +#: ../../enterprise/include/functions_reporting.php:1680 +#: ../../enterprise/include/functions_reporting.php:2580 +#: ../../enterprise/include/functions_reporting.php:3572 +#: ../../enterprise/include/functions_reporting.php:5361 +#: ../../enterprise/include/functions_services.php:2490 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:211 +#: ../../enterprise/operation/agentes/policy_view.php:326 +#: ../../enterprise/operation/agentes/tag_view.php:585 +#: ../../enterprise/operation/agentes/tag_view.php:662 +#: ../../enterprise/operation/agentes/collection_view.php:65 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/services.list.php:202 +#: ../../enterprise/operation/services/services.list.php:433 +#: ../../enterprise/operation/services/services.table_services.php:181 +#: ../../extensions/agents_alerts.php:522 ../../extensions/net_tools.php:241 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/module_manager.php:650 +#: ../../godmode/massive/massive_copy_modules.php:105 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_delete_modules.php:391 +#: ../../godmode/massive/massive_delete_agents.php:142 +#: ../../godmode/massive/massive_edit_agents.php:429 +#: ../../godmode/massive/massive_edit_agents.php:640 +#: ../../godmode/alerts/alert_list.list.php:457 +#: ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/setup/setup_integria.php:351 +#: ../../godmode/setup/setup_integria.php:474 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:435 +#: ../../godmode/servers/servers.build_table.php:66 +#: ../../mobile/operation/agents.php:83 ../../mobile/operation/agents.php:130 +#: ../../mobile/operation/agents.php:228 ../../mobile/operation/agents.php:229 +#: ../../mobile/operation/agents.php:396 ../../mobile/operation/modules.php:139 +#: ../../mobile/operation/modules.php:140 +#: ../../mobile/operation/modules.php:250 +#: ../../mobile/operation/modules.php:251 +#: ../../mobile/operation/modules.php:576 +#: ../../mobile/operation/modules.php:582 +#: ../../mobile/operation/modules.php:588 +#: ../../mobile/operation/modules.php:594 +#: ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:613 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:692 +#: ../../mobile/operation/modules.php:700 +#: ../../mobile/operation/modules.php:820 ../../mobile/operation/alerts.php:87 +#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:228 +#: ../../mobile/operation/alerts.php:229 ../../mobile/operation/alerts.php:331 +#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369 +#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:672 +#: ../../include/functions_reporting_html.php:497 +#: ../../include/functions_reporting_html.php:961 +#: ../../include/functions_reporting_html.php:970 +#: ../../include/functions_reporting_html.php:1182 +#: ../../include/functions_reporting_html.php:1190 +#: ../../include/functions_reporting_html.php:1953 +#: ../../include/functions_reporting_html.php:2610 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/ajax/alert_list.ajax.php:282 +#: ../../include/ajax/alert_list.ajax.php:307 ../../include/ajax/module.php:845 +#: ../../include/ajax/custom_fields.php:406 +#: ../../include/functions_snmp.php:369 +#: ../../include/class/NetworkMap.class.php:2932 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:291 +#: ../../include/functions_snmp_browser.php:560 +#: ../../include/functions_events.php:194 +#: ../../include/functions_events.php:247 +#: ../../include/functions_events.php:2415 +#: ../../include/functions_events.php:4580 +#: ../../include/functions_events.php:6007 ../../operation/search_agents.php:55 +#: ../../operation/agentes/alerts_status.php:526 +#: ../../operation/agentes/alerts_status.php:561 +#: ../../operation/agentes/alerts_status.php:596 +#: ../../operation/agentes/alerts_status.php:628 +#: ../../operation/agentes/estado_agente.php:244 +#: ../../operation/agentes/estado_agente.php:728 +#: ../../operation/agentes/status_monitor.php:1166 +#: ../../operation/agentes/alerts_status.functions.php:88 +#: ../../operation/messages/message_list.php:160 +#: ../../operation/snmpconsole/snmp_view.php:560 +#: ../../operation/snmpconsole/snmp_view.php:794 +#: ../../operation/snmpconsole/snmp_view.php:1145 +#: ../../operation/incidents/incident_detail.php:304 +#: ../../operation/incidents/integriaims_export_csv.php:91 +#: ../../operation/incidents/configure_integriaims_incident.php:226 +#: ../../operation/incidents/incident.php:303 +#: ../../operation/incidents/incident.php:420 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:373 +#: ../../operation/incidents/list_integriaims_incidents.php:116 +#: ../../operation/search_modules.php:35 +#: ../../operation/events/events.build_table.php:351 +#: ../../operation/search_policies.php:37 +#: ../../operation/servers/recon_view.php:103 msgid "Status" msgstr "Status" -#: ../../extensions/agents_alerts.php:464 -#: ../../godmode/agentes/module_manager_editor_common.php:397 -#: ../../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:460 -#: ../../godmode/setup/gis_step_2.php:367 -#: ../../godmode/setup/gis_step_2.php:451 -#: ../../godmode/setup/setup_visuals.php:183 -#: ../../godmode/setup/setup_visuals.php:662 -#: ../../godmode/setup/setup_visuals.php:674 -#: ../../godmode/users/configure_user.php:514 -#: ../../godmode/users/configure_user.php:586 -#: ../../include/functions_ui.php:935 -#: ../../operation/events/events_list.php:543 -#: ../../operation/gis_maps/gis_map.php:93 -#: ../../operation/snmpconsole/snmp_view.php:452 -#: ../../operation/users/user_edit.php:249 -#: ../../operation/users/user_edit.php:251 -#: ../../operation/users/user_edit.php:259 -#: ../../operation/users/user_edit.php:278 -#: ../../enterprise/dashboard/main_dashboard.php:74 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:186 -#: ../../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:237 -#: ../../enterprise/meta/advanced/metasetup.visual.php:290 -#: ../../enterprise/meta/advanced/metasetup.visual.php:295 -#: ../../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" +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:448 +#: ../../enterprise/godmode/policies/policy_agents.php:482 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:353 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:179 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:117 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:544 +#: ../../godmode/reporting/graph_builder.graph_editor.php:320 +#: ../../include/ajax/events.php:561 ../../include/functions_html.php:825 +#: ../../include/functions_html.php:968 +#: ../../include/functions_snmp_browser.php:1154 +#: ../../operation/events/events_list.php:426 +msgid "Filter group" +msgstr "Filter group" -#: ../../extensions/agents_alerts.php:475 -#: ../../godmode/alerts/alert_list.list.php:643 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions.php:1035 -#: ../../include/functions_reporting.php:8662 -#: ../../include/functions_agents.php:2201 -#: ../../include/functions_agents.php:2213 ../../include/functions_ui.php:948 -#: ../../include/functions_events.php:1158 -#: ../../include/functions_events.php:1408 -#: ../../mobile/operation/alerts.php:253 -#: ../../operation/agentes/group_view.php:174 -#: ../../operation/events/sound_events.php:83 -#: ../../operation/snmpconsole/snmp_view.php:843 -#: ../../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 -msgid "Alert fired" -msgstr "Alert triggered" +#: ../../enterprise/views/cluster/list.php:95 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1446 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:180 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:722 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2947 +#: ../../enterprise/include/functions_events.php:117 +#: ../../godmode/snmpconsole/snmp_alert.php:1119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2642 +#: ../../godmode/events/event_edit_filter.php:327 +#: ../../mobile/operation/agents.php:238 ../../mobile/operation/modules.php:293 +#: ../../mobile/operation/alerts.php:222 ../../mobile/operation/events.php:700 +#: ../../include/ajax/module.php:247 +#: ../../include/class/ConfigPEN.class.php:621 +#: ../../include/class/CredentialStore.class.php:776 +#: ../../operation/snmpconsole/snmp_view.php:576 +#: ../../operation/events/events_list.php:753 +#: ../../operation/events/events.php:952 +msgid "Free search" +msgstr "Free search" -#: ../../extensions/agents_alerts.php:475 -#: ../../godmode/alerts/alert_list.list.php:643 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions_ui.php:948 -#: ../../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 "times" +#: ../../enterprise/views/cluster/list.php:121 +msgid "New cluster" +msgstr "" -#: ../../extensions/agents_alerts.php:479 -#: ../../godmode/alerts/alert_list.list.php:647 -#: ../../godmode/alerts/alert_view.php:89 -#: ../../include/functions_reporting.php:8668 -#: ../../include/functions_ui.php:952 ../../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" +#: ../../enterprise/views/cluster/view.php:44 +#: ../../enterprise/views/cluster/view.php:62 +#: ../../enterprise/views/cluster/edit.php:41 +#: ../../enterprise/views/cluster/edit.php:67 +msgid "Cluster list" +msgstr "" -#: ../../extensions/agents_alerts.php:483 -#: ../../godmode/alerts/alert_list.list.php:651 -#: ../../godmode/alerts/alert_view.php:93 -#: ../../include/functions_reporting.php:8607 -#: ../../include/functions_agents.php:2204 -#: ../../include/functions_agents.php:2216 ../../include/functions_ui.php:956 -#: ../../mobile/operation/alerts.php:261 -#: ../../operation/snmpconsole/snmp_view.php:846 -#: ../../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 -msgid "Alert not fired" -msgstr "Alert not triggered" +#: ../../enterprise/views/cluster/view.php:50 +#: ../../enterprise/views/cluster/view.php:75 +msgid "Cluster details" +msgstr "" -#: ../../extensions/agents_alerts.php:499 -msgid "Agents/Alerts view" -msgstr "Agents/Alerts view" +#: ../../enterprise/views/cluster/view.php:70 +msgid "Edit this cluster" +msgstr "" -#: ../../extensions/agents_modules.php:141 -#: ../../godmode/agentes/modificar_agente.php:190 -#: ../../godmode/agentes/planned_downtime.editor.php:719 -#: ../../godmode/reporting/reporting_builder.item_editor.php:917 -#: ../../operation/agentes/estado_agente.php:203 -#: ../../enterprise/dashboard/widgets/agent_module.php:84 -#: ../../enterprise/godmode/policies/policies.php:233 -#: ../../enterprise/godmode/reporting/cluster_list.php:104 -msgid "Recursion" -msgstr "Recursion" +#: ../../enterprise/views/cluster/view.php:156 +#: ../../enterprise/views/cluster/view.php:158 +#: ../../enterprise/meta/include/functions_wizard_meta.php:242 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1146 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1531 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1815 +#: ../../enterprise/meta/agentsearch.php:225 +#: ../../enterprise/meta/agentsearch.php:232 +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:115 +#: ../../enterprise/godmode/policies/policy_agents.php:1399 +#: ../../enterprise/godmode/policies/policy_agents.php:1416 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:544 +#: ../../enterprise/godmode/setup/edit_skin.php:273 +#: ../../enterprise/include/class/VMware.app.php:777 +#: ../../enterprise/include/class/DatabaseHA.class.php:210 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3142 +#: ../../enterprise/include/functions_policies.php:4912 +#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/agentes/modificar_agente.php:586 +#: ../../godmode/agentes/module_manager_editor_common.php:230 +#: ../../godmode/agentes/module_manager_editor_common.php:827 +#: ../../godmode/agentes/module_manager_editor_common.php:975 +#: ../../godmode/massive/massive_edit_agents.php:642 +#: ../../godmode/massive/massive_edit_agents.php:718 +#: ../../godmode/massive/massive_edit_modules.php:693 +#: ../../godmode/alerts/alert_list.list.php:129 +#: ../../godmode/alerts/configure_alert_template.php:824 +#: ../../godmode/alerts/alert_view.php:512 ../../mobile/operation/agent.php:172 +#: ../../mobile/operation/alerts.php:50 +#: ../../include/functions_visual_map_editor.php:758 +#: ../../include/functions_reporting_html.php:2622 +#: ../../include/functions_treeview.php:72 +#: ../../include/functions_treeview.php:595 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:342 +#: ../../include/functions_reporting.php:4751 +#: ../../operation/search_agents.php:80 +#: ../../operation/agentes/estado_generalagente.php:109 +#: ../../operation/agentes/estado_generalagente.php:111 +#: ../../operation/agentes/alerts_status.functions.php:81 +msgid "Disabled" +msgstr "Disabled" -#: ../../extensions/agents_modules.php:144 -#: ../../godmode/agentes/module_manager_editor_common.php:174 -#: ../../godmode/massive/massive_edit_modules.php:544 -#: ../../godmode/modules/manage_network_components_form_common.php:95 -#: ../../godmode/reporting/create_container.php:484 -#: ../../godmode/reporting/reporting_builder.item_editor.php:951 -#: ../../include/functions_treeview.php:123 -#: ../../include/functions_events.php:2176 -#: ../../include/functions_graph.php:6234 -#: ../../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:476 -#: ../../operation/agentes/status_monitor.php:309 -#: ../../operation/agentes/ver_agente.php:885 -#: ../../enterprise/godmode/modules/configure_local_component.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1523 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1377 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:157 -#: ../../enterprise/operation/agentes/tag_view.php:94 -#: ../../enterprise/operation/agentes/ver_agente.php:33 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:206 -msgid "Module group" -msgstr "Module group" +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:871 +#: ../../enterprise/godmode/services/services.service.php:434 +#: ../../godmode/agentes/modificar_agente.php:595 +#: ../../godmode/agentes/planned_downtime.list.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:679 +#: ../../godmode/agentes/agent_manager.php:692 +#: ../../godmode/agentes/module_manager_editor_common.php:972 +#: ../../godmode/agentes/module_manager.php:746 +#: ../../godmode/massive/massive_edit_agents.php:691 +#: ../../godmode/massive/massive_edit_modules.php:1032 +#: ../../mobile/operation/agent.php:179 ../../include/ajax/module.php:993 +#: ../../include/class/Tree.class.php:808 ../../operation/search_agents.php:87 +#: ../../operation/agentes/estado_agente.php:791 +#: ../../operation/agentes/estado_generalagente.php:115 +#: ../../operation/agentes/estado_generalagente.php:117 +msgid "Quiet" +msgstr "Quiet" -#: ../../extensions/agents_modules.php:146 -#: ../../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:203 -#: ../../godmode/massive/massive_delete_agents.php:121 -#: ../../godmode/massive/massive_delete_agents.php:124 -#: ../../godmode/massive/massive_delete_modules.php:425 -#: ../../godmode/massive/massive_delete_modules.php:453 -#: ../../godmode/massive/massive_delete_modules.php:481 -#: ../../godmode/massive/massive_delete_modules.php:495 -#: ../../godmode/massive/massive_edit_agents.php:277 -#: ../../godmode/massive/massive_edit_agents.php:279 -#: ../../godmode/massive/massive_edit_modules.php:263 -#: ../../godmode/massive/massive_edit_modules.php:291 -#: ../../godmode/massive/massive_edit_modules.php:312 -#: ../../godmode/massive/massive_edit_modules.php:350 -#: ../../godmode/modules/manage_network_components.php:515 -#: ../../godmode/modules/manage_network_templates_form.php:269 -#: ../../godmode/reporting/create_container.php:487 -#: ../../godmode/reporting/reporting_builder.item_editor.php:946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:956 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1472 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1484 -#: ../../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 -#: ../../godmode/setup/setup_visuals.php:558 ../../include/functions.php:906 -#: ../../include/functions.php:1129 ../../include/functions_reporting.php:1751 -#: ../../include/functions_events.php:3438 -#: ../../include/functions_events.php:3951 -#: ../../include/functions_users.php:336 -#: ../../include/functions_users.php:1056 -#: ../../include/functions_graph.php:3355 -#: ../../include/functions_groups.php:616 -#: ../../include/functions_groups.php:2410 -#: ../../include/functions_modules.php:2585 -#: ../../include/functions_modules.php:2587 -#: ../../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:222 -#: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/agentes/estado_monitores.php:479 -#: ../../operation/agentes/status_monitor.php:305 -#: ../../operation/agentes/status_monitor.php:322 -#: ../../operation/agentes/status_monitor.php:332 -#: ../../operation/agentes/status_monitor.php:351 -#: ../../operation/agentes/status_monitor.php:400 -#: ../../operation/agentes/status_monitor.php:402 -#: ../../operation/agentes/status_monitor.php:472 -#: ../../operation/events/events.build_table.php:506 -#: ../../operation/events/events_list.php:519 -#: ../../operation/events/events_list.php:523 -#: ../../operation/events/events_list.php:532 -#: ../../operation/events/events_list.php:632 -#: ../../operation/events/events_list.php:636 -#: ../../operation/events/events_rss.php:110 -#: ../../operation/events/export_csv.php:54 -#: ../../operation/gis_maps/render_view.php:148 -#: ../../operation/snmpconsole/snmp_view.php:441 -#: ../../operation/snmpconsole/snmp_view.php:458 -#: ../../operation/snmpconsole/snmp_view.php:463 -#: ../../operation/snmpconsole/snmp_view.php:745 ../../operation/tree.php:136 -#: ../../operation/tree.php:168 -#: ../../enterprise/dashboard/widgets/events_list.php:52 -#: ../../enterprise/dashboard/widgets/tree_view.php:54 -#: ../../enterprise/dashboard/widgets/tree_view.php:67 -#: ../../enterprise/extensions/backup/main.php:85 -#: ../../enterprise/extensions/ipam/ipam_network.php:305 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:94 -#: ../../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:565 -#: ../../enterprise/godmode/policies/policy_queue.php:360 -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/godmode/policies/policy_queue.php:370 -#: ../../enterprise/godmode/policies/policy_queue.php:427 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:156 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:122 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1511 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1513 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1528 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1782 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1794 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:237 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:147 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:408 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:419 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 -#: ../../enterprise/godmode/reporting/cluster_list.php:122 -#: ../../enterprise/godmode/setup/setup_acl.php:367 -#: ../../enterprise/godmode/setup/setup_acl.php:372 -#: ../../enterprise/godmode/setup/setup_acl.php:377 -#: ../../enterprise/godmode/setup/setup_acl.php:583 -#: ../../enterprise/godmode/setup/setup_acl.php:593 -#: ../../enterprise/godmode/setup/setup_acl.php:605 -#: ../../enterprise/godmode/setup/setup_acl.php:650 -#: ../../enterprise/godmode/setup/setup_acl.php:679 -#: ../../enterprise/include/functions_metaconsole.php:668 -#: ../../enterprise/include/functions_metaconsole.php:669 -#: ../../enterprise/include/functions_metaconsole.php:930 -#: ../../enterprise/meta/advanced/metasetup.visual.php:134 -#: ../../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/views/cluster/view.php:172 +#: ../../enterprise/views/cluster/view.php:180 +#: ../../godmode/agentes/modificar_agente.php:599 +#: ../../operation/search_agents.php:98 +#: ../../operation/agentes/estado_agente.php:795 +#: ../../operation/agentes/estado_generalagente.php:125 +#: ../../operation/agentes/estado_generalagente.php:133 +msgid "Agent in planned downtime" +msgstr "Agent in planned downtime" + +#: ../../enterprise/views/cluster/view.php:217 +msgid "Force cluster status calculation" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:245 +#: ../../enterprise/meta/agentsearch.php:115 +#: ../../enterprise/extensions/ipam/ipam_network.php:326 +#: ../../enterprise/godmode/modules/configure_local_component.php:171 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:371 +#: ../../enterprise/godmode/modules/local_components.php:502 +#: ../../enterprise/godmode/modules/local_components.php:527 +#: ../../enterprise/godmode/modules/local_components.php:562 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:209 +#: ../../enterprise/include/class/DeploymentCenter.class.php:716 +#: ../../enterprise/include/class/DeploymentCenter.class.php:777 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1249 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../enterprise/include/class/AgentRepository.class.php:336 +#: ../../enterprise/include/class/AgentRepository.class.php:613 +#: ../../enterprise/include/class/AgentRepository.class.php:656 +#: ../../enterprise/operation/agentes/tag_view.php:580 +#: ../../godmode/agentes/modificar_agente.php:493 +#: ../../godmode/agentes/planned_downtime.editor.php:1037 +#: ../../godmode/agentes/agent_manager.php:358 +#: ../../godmode/massive/massive_edit_agents.php:557 +#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:392 +#: ../../include/functions_reporting_html.php:2607 +#: ../../include/class/Diagnostics.class.php:739 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 +#: ../../include/functions_events.php:4080 ../../operation/search_agents.php:43 +#: ../../operation/search_agents.php:49 ../../operation/tree.php:56 +#: ../../operation/tree.php:110 ../../operation/agentes/estado_agente.php:713 +#: ../../operation/agentes/estado_generalagente.php:188 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "OS" + +#: ../../enterprise/views/cluster/view.php:261 +#: ../../extensions/net_tools.php:364 +#: ../../operation/agentes/estado_generalagente.php:202 +msgid "IP address" +msgstr "IP address" + +#: ../../enterprise/views/cluster/view.php:263 +#: ../../enterprise/views/cluster/view.php:273 +#: ../../enterprise/meta/advanced/servers.build_table.php:98 +#: ../../enterprise/meta/advanced/servers.build_table.php:99 +#: ../../enterprise/meta/advanced/servers.build_table.php:105 +#: ../../enterprise/meta/advanced/metasetup.visual.php:802 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/extensions/ipam/ipam_network.php:363 +#: ../../enterprise/extensions/ipam/ipam_network.php:439 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:199 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:220 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:55 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:389 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_reporting.php:5379 +#: ../../enterprise/include/functions_services.php:2051 +#: ../../enterprise/include/functions_services.php:2259 +#: ../../enterprise/include/functions_services.php:2808 +#: ../../godmode/modules/manage_network_components.php:684 +#: ../../godmode/modules/manage_network_components.php:685 +#: ../../godmode/extensions.php:189 ../../godmode/extensions.php:204 +#: ../../godmode/agentes/planned_downtime.list.php:494 +#: ../../godmode/alerts/alert_view.php:108 +#: ../../godmode/servers/servers.build_table.php:115 +#: ../../godmode/servers/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:122 +#: ../../mobile/operation/agent.php:205 ../../mobile/operation/agent.php:215 +#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 +#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 +#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 +#: ../../include/functions_servers.php:1235 +#: ../../include/functions_reporting_html.php:591 +#: ../../include/functions_reporting_html.php:594 +#: ../../include/functions_reporting_html.php:4255 +#: ../../include/functions_reporting_html.php:4308 +#: ../../include/functions.php:1127 ../../include/functions.php:1133 +#: ../../include/functions.php:1137 ../../include/ajax/module.php:1033 +#: ../../include/functions_treeview.php:162 +#: ../../include/functions_treeview.php:331 +#: ../../include/functions_treeview.php:427 ../../include/functions_ui.php:2573 +#: ../../include/functions_ui.php:2581 ../../include/functions_db.php:208 +#: ../../include/functions_events.php:3554 +#: ../../include/functions_events.php:3664 +#: ../../include/functions_events.php:3685 +#: ../../include/functions_events.php:3690 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3704 +#: ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3767 +#: ../../include/functions_events.php:3794 +#: ../../include/functions_events.php:3814 +#: ../../include/functions_events.php:3908 +#: ../../include/functions_events.php:4045 +#: ../../include/functions_events.php:4076 +#: ../../include/functions_events.php:4090 +#: ../../include/functions_events.php:4095 +#: ../../include/functions_events.php:4125 +#: ../../include/functions_events.php:4218 +#: ../../include/functions_events.php:4285 +#: ../../include/functions_events.php:4295 +#: ../../include/functions_events.php:4454 +#: ../../include/functions_events.php:4522 +#: ../../include/functions_events.php:4598 +#: ../../include/functions_events.php:4627 +#: ../../include/functions_events.php:4642 +#: ../../include/functions_events.php:4652 +#: ../../include/functions_events.php:6786 +#: ../../include/functions_events.php:6805 +#: ../../include/functions_events.php:6810 +#: ../../include/functions_events.php:6817 +#: ../../include/functions_events.php:6830 +#: ../../include/functions_events.php:6843 +#: ../../include/functions_events.php:6855 +#: ../../include/functions_events.php:6906 +#: ../../include/functions_events.php:6933 +#: ../../include/functions_events.php:6953 +#: ../../operation/agentes/status_monitor.php:1511 +#: ../../operation/agentes/estado_generalagente.php:204 +#: ../../operation/agentes/estado_generalagente.php:210 +#: ../../operation/agentes/estado_generalagente.php:219 +#: ../../operation/agentes/estado_generalagente.php:347 +#: ../../operation/agentes/estado_generalagente.php:363 +#: ../../operation/agentes/estado_generalagente.php:374 +#: ../../operation/snmpconsole/snmp_view.php:919 +#: ../../operation/snmpconsole/snmp_view.php:939 +msgid "N/A" +msgstr "N/A" + +#: ../../enterprise/views/cluster/view.php:285 +#: ../../include/functions_treeview.php:708 +#: ../../operation/agentes/estado_generalagente.php:208 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "Agent version" + +#: ../../enterprise/views/cluster/view.php:287 +msgid "Cluster agent" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:342 +#: ../../operation/agentes/estado_generalagente.php:816 +msgid "Events (Last 24h)" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:414 +#: ../../operation/agentes/stat_win.php:380 +#: ../../operation/agentes/interface_traffic_graph_win.php:247 +msgid "Reload" +msgstr "Reload" + +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "" + +#: ../../enterprise/views/cluster/edit.php:84 +msgid "View this cluster" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:65 +msgid "Create visualmap" +msgstr "Create visual map" + +#: ../../enterprise/meta/screens/screens.visualmap.php:67 +#: ../../enterprise/meta/advanced/collections.editor.php:175 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:277 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:443 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:635 +#: ../../enterprise/meta/include/functions_autoprovision.php:480 +#: ../../enterprise/meta/include/functions_autoprovision.php:481 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/meta/include/functions_autoprovision.php:645 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2692 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:316 +#: ../../enterprise/godmode/agentes/collections.editor.php:210 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:184 +#: ../../enterprise/godmode/alerts/alert_events_list.php:720 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 +#: ../../enterprise/godmode/reporting/mysql_builder.php:112 +#: ../../enterprise/godmode/reporting/mysql_builder.php:124 +#: ../../enterprise/godmode/reporting/mysql_builder.php:133 +#: ../../enterprise/godmode/reporting/mysql_builder.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:425 +#: ../../enterprise/include/functions_tasklist.php:460 +#: ../../enterprise/include/functions_tasklist.php:485 +#: ../../enterprise/include/ajax/transactional.ajax.php:117 +#: ../../enterprise/include/ajax/transactional.ajax.php:205 +#: ../../enterprise/include/class/Omnishell.class.php:1086 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2975 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:611 +#: ../../enterprise/operation/agentes/tag_view.php:719 +#: ../../extensions/files_repo/files_repo_list.php:103 +#: ../../godmode/groups/group_list.php:736 +#: ../../godmode/groups/group_list.php:737 +#: ../../godmode/users/profile_list.php:364 +#: ../../godmode/users/user_list.php:540 +#: ../../godmode/agentes/modificar_agente.php:616 +#: ../../godmode/agentes/modificar_agente.php:622 +#: ../../godmode/agentes/planned_downtime.list.php:408 +#: ../../godmode/agentes/fields_manager.php:150 +#: ../../godmode/alerts/alert_special_days.php:504 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1797 +#: ../../godmode/reporting/reporting_builder.php:1042 +#: ../../godmode/events/event_responses.list.php:64 +#: ../../godmode/servers/servers.build_table.php:193 +#: ../../godmode/servers/plugin.php:163 ../../godmode/servers/plugin.php:1030 +#: ../../include/functions_cron.php:697 ../../include/functions_cron.php:719 +#: ../../include/ajax/module.php:975 +#: ../../include/class/NetworkMap.class.php:3038 +#: ../../operation/agentes/estado_agente.php:830 +#: ../../operation/agentes/estado_agente.php:833 +#: ../../operation/agentes/pandora_networkmap.php:701 +#: ../../operation/agentes/status_monitor.php:1341 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/list_integriaims_incidents.php:299 +#: ../../operation/search_reports.php:48 +#: ../../operation/servers/recon_view.php:115 +msgid "Edit" +msgstr "Edit" + +#: ../../enterprise/meta/screens/screens.visualmap.php:106 +#: ../../enterprise/meta/screens/screens.visualmap.php:125 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:90 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:597 +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../godmode/agentes/configurar_agente.php:369 +#: ../../godmode/agentes/modificar_agente.php:54 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/modificar_agente.php:654 ../../godmode/menu.php:531 +#: ../../godmode/setup/setup_visuals.php:159 +#: ../../godmode/setup/setup_visuals.php:223 +#: ../../godmode/setup/setup_visuals.php:277 +#: ../../godmode/setup/setup_visuals.php:282 +#: ../../godmode/setup/setup_visuals.php:321 +#: ../../godmode/setup/setup_visuals.php:358 +#: ../../godmode/setup/setup_visuals.php:380 +#: ../../godmode/setup/setup_visuals.php:405 +#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:443 +#: ../../godmode/setup/setup_visuals.php:462 +#: ../../godmode/setup/setup_visuals.php:612 +#: ../../godmode/reporting/visual_console_builder.php:795 +#: ../../godmode/module_library/module_library_view.php:56 +#: ../../godmode/module_library/module_library_view.php:65 +#: ../../operation/visual_console/pure_ajax.php:164 +#: ../../operation/visual_console/view.php:175 +#: ../../operation/visual_console/legacy_view.php:167 +#: ../../operation/agentes/estado_agente.php:811 +#: ../../operation/agentes/estado_agente.php:814 +#: ../../operation/agentes/status_monitor.php:50 +#: ../../operation/agentes/ver_agente.php:1550 +msgid "View" +msgstr "View" + +#: ../../enterprise/meta/screens/screens.visualmap.php:134 +#: ../../godmode/reporting/visual_console_builder.php:789 +#: ../../operation/visual_console/pure_ajax.php:160 +#: ../../operation/visual_console/legacy_view.php:163 +msgid "Builder" +msgstr "Builder" + +#: ../../enterprise/meta/screens/screens.visualmap.php:144 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:81 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:88 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:92 +#: ../../enterprise/include/functions_reporting.php:34 +#: ../../enterprise/include/functions_reporting.php:6973 +#: ../../enterprise/include/functions_reporting.php:6999 +#: ../../godmode/reporting/visual_console_builder.php:784 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../operation/visual_console/pure_ajax.php:155 +#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/legacy_view.php:158 +msgid "Wizard" +msgstr "Wizard" + +#: ../../enterprise/meta/screens/screens.visualmap.php:152 +#: ../../godmode/reporting/visual_console_builder.php:772 +#: ../../operation/visual_console/pure_ajax.php:141 +#: ../../operation/visual_console/view.php:154 +#: ../../operation/visual_console/legacy_view.php:144 +msgid "List elements" +msgstr "List of elements" + +#: ../../enterprise/meta/screens/screens.visualmap.php:160 +#: ../../godmode/reporting/visual_console_builder.php:768 +#: ../../godmode/reporting/graph_builder.php:253 +#: ../../godmode/reporting/reporting_builder.main.php:63 +#: ../../godmode/reporting/reporting_builder.php:3076 +#: ../../operation/visual_console/pure_ajax.php:136 +#: ../../operation/visual_console/view.php:149 +#: ../../operation/visual_console/legacy_view.php:139 +#: ../../operation/reporting/reporting_viewer.php:87 +#: ../../operation/reporting/graph_viewer.php:156 +msgid "Main data" +msgstr "Main data" + +#: ../../enterprise/meta/screens/screens.visualmap.php:168 +#: ../../godmode/reporting/visual_console_builder.php:764 +#: ../../operation/visual_console/pure_ajax.php:129 +#: ../../operation/visual_console/view.php:142 +#: ../../operation/visual_console/legacy_view.php:132 +#: ../../operation/gis_maps/render_view.php:132 +msgid "Show link to public Visual Console" +msgstr "Show link to public Visual Console" + +#: ../../enterprise/meta/screens/screens.visualmap.php:187 +#: ../../godmode/reporting/visual_console_builder.php:760 +#: ../../operation/visual_console/pure_ajax.php:118 +#: ../../operation/visual_console/view.php:117 +#: ../../operation/visual_console/legacy_view.php:119 +msgid "Visual consoles list" +msgstr "List of visual consoles" + +#: ../../enterprise/meta/screens/screens.visualmap.php:197 +#: ../../godmode/reporting/visual_console_builder.php:803 +msgid "New visual console" +msgstr "New visual console" + +#: ../../enterprise/meta/screens/screens.visualmap.php:205 +#: ../../enterprise/meta/screens/screens.visualmap.php:210 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:177 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:97 +#: ../../enterprise/godmode/reporting/visual_console_template.php:98 +#: ../../extensions/resource_exportation.php:426 +#: ../../godmode/users/configure_user.php:890 +#: ../../godmode/reporting/map_builder.php:93 +#: ../../godmode/reporting/visual_console_favorite.php:87 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:236 +#: ../../operation/users/user_edit.php:338 ../../operation/menu.php:189 +#: ../../operation/menu.php:193 +msgid "Visual console" +msgstr "Visual console" + +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:211 +#: ../../enterprise/meta/general/logon_ok.php:84 +msgid "Screens" +msgstr "Screens" + +#: ../../enterprise/meta/advanced/servers.build_table.php:32 +#: ../../godmode/servers/servers.build_table.php:37 +msgid "There are no servers configured into the database" +msgstr "There are no servers registered on the database." + +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:623 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:40 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/class/AgentRepository.class.php:360 +#: ../../enterprise/include/class/AgentRepository.class.php:615 +#: ../../extensions/realtime_graphs.php:175 ../../godmode/extensions.php:137 +#: ../../godmode/servers/servers.build_table.php:68 +#: ../../include/functions_snmp_browser.php:679 +msgid "Version" +msgstr "Version" + +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:426 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:536 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:615 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:227 +#: ../../enterprise/meta/monitoring/group_view.php:138 +#: ../../enterprise/meta/monitoring/group_view.php:179 +#: ../../enterprise/meta/include/functions_wizard_meta.php:407 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1819 +#: ../../enterprise/meta/agentsearch.php:118 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:109 +#: ../../enterprise/godmode/policies/policy_modules.php:449 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:559 +#: ../../enterprise/godmode/policies/policies.php:531 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:638 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:861 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:159 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:359 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:197 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/include/functions_reporting_csv.php:2133 +#: ../../enterprise/include/functions_policies.php:3719 +#: ../../enterprise/operation/agentes/tag_view.php:584 +#: ../../enterprise/operation/services/services.service_map.php:184 +#: ../../extensions/agents_alerts.php:206 +#: ../../extensions/agents_modules.php:693 +#: ../../godmode/agentes/configurar_agente.php:388 +#: ../../godmode/agentes/configurar_agente.php:623 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:573 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:613 +#: ../../godmode/agentes/modificar_agente.php:630 +#: ../../godmode/agentes/planned_downtime.editor.php:1039 +#: ../../godmode/agentes/planned_downtime.editor.php:1117 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:884 +#: ../../godmode/massive/massive_copy_modules.php:183 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_edit_plugins.php:363 +#: ../../godmode/massive/massive_edit_modules.php:398 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/graph_builder.graph_editor.php:336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1551 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:452 +#: ../../godmode/servers/servers.build_table.php:69 +#: ../../mobile/operation/agents.php:82 ../../mobile/operation/agents.php:399 +#: ../../mobile/operation/modules.php:212 ../../mobile/operation/home.php:78 +#: ../../mobile/operation/agent.php:304 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:4353 +#: ../../include/functions_reports.php:718 +#: ../../include/functions_reports.php:722 +#: ../../include/functions_reports.php:726 +#: ../../include/functions_reports.php:730 +#: ../../include/functions_reports.php:734 +#: ../../include/functions_reports.php:738 +#: ../../include/functions_reports.php:742 +#: ../../include/functions_reports.php:746 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:404 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:408 +#: ../../include/lib/Dashboard/Widgets/service_map.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 +#: ../../operation/search_agents.php:54 ../../operation/tree.php:83 +#: ../../operation/search_results.php:157 +#: ../../operation/agentes/estado_agente.php:725 +#: ../../operation/agentes/graphs.php:188 +#: ../../operation/agentes/exportdata.php:281 +#: ../../operation/agentes/group_view.php:155 +#: ../../operation/agentes/group_view.php:188 +msgid "Modules" +msgstr "Modules" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Lag" +msgstr "Lag" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "Avg. Delay(sec)/Modules delayed" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:71 +msgid "T/Q" +msgstr "T/Q" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:71 +msgid "Threads / Queued modules currently" +msgstr "Current threads/queued modules" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:283 +#: ../../enterprise/include/class/DatabaseHA.class.php:799 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:73 +#: ../../operation/incidents/integriaims_export_csv.php:94 +#: ../../operation/incidents/incident.php:424 +msgid "Updated" +msgstr "Updated" + +#: ../../enterprise/meta/advanced/servers.build_table.php:70 +#: ../../enterprise/meta/include/functions_autoprovision.php:616 +#: ../../enterprise/godmode/modules/local_components.php:564 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policies.php:435 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316 +#: ../../godmode/users/profile_list.php:301 +#: ../../godmode/users/user_list.php:335 +#: ../../godmode/alerts/alert_list.list.php:460 +#: ../../godmode/alerts/alert_templates.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/graphs.php:276 +#: ../../godmode/reporting/reporting_builder.php:838 +#: ../../godmode/reporting/reporting_builder.php:1029 +#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/plugin.php:973 +#: ../../include/functions_container.php:158 +#: ../../operation/gis_maps/gis_map.php:109 +msgid "Op." +msgstr "Op." + +#: ../../enterprise/meta/advanced/servers.build_table.php:89 +#: ../../godmode/servers/servers.build_table.php:101 +msgid "This is a master server" +msgstr "This is a master server." + +#: ../../enterprise/meta/advanced/servers.build_table.php:104 +#: ../../enterprise/meta/advanced/servers.build_table.php:110 +#: ../../godmode/servers/servers.build_table.php:121 +#: ../../godmode/servers/servers.build_table.php:127 +msgid "of" +msgstr "of" + +#: ../../enterprise/meta/advanced/servers.build_table.php:136 +#: ../../godmode/servers/servers.build_table.php:214 +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?" + +#: ../../enterprise/meta/advanced/servers.build_table.php:162 +#: ../../godmode/servers/servers.build_table.php:240 +msgid "Tactical server information" +msgstr "Tactical server information" + +#: ../../enterprise/meta/advanced/component_management.php:49 +#: ../../include/functions_menu.php:500 +msgid "Tags management" +msgstr "Tags management" + +#: ../../enterprise/meta/advanced/component_management.php:53 +msgid "Module groups Management" +msgstr "Module groups Management" + +#: ../../enterprise/meta/advanced/component_management.php:57 +msgid "OS Management" +msgstr "OS Management" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:48 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:43 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.auth.php:44 +#: ../../enterprise/meta/advanced/metasetup.performance.php:44 +#, php-format +msgid "Could not be update: Error in %s" +msgstr "Could not be updated: error in %s" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:55 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:50 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:153 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.auth.php:51 +#: ../../enterprise/meta/advanced/metasetup.performance.php:51 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:82 +msgid "Successfully update" +msgstr "Update successful" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:95 +#: ../../godmode/menu.php:320 ../../godmode/setup/setup.php:108 +#: ../../godmode/setup/setup.php:180 +msgid "Visual styles" +msgstr "Visual styles" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:101 +#: ../../enterprise/meta/include/functions_meta.php:1293 +#: ../../godmode/setup/setup_visuals.php:1175 +#: ../../include/functions_config.php:848 +msgid "Date format string" +msgstr "Date format string" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:104 +#: ../../godmode/setup/setup_visuals.php:1176 +msgid "Example" +msgstr "Example" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:130 +#: ../../godmode/setup/setup_visuals.php:1194 +msgid "Timestamp, time comparison, or compact mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:132 +#: ../../godmode/setup/setup_visuals.php:1196 +msgid "Comparation in rollover" +msgstr "Rollover comparison" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:141 +#: ../../godmode/setup/setup_visuals.php:1197 +msgid "Timestamp in rollover" +msgstr "Timestamp in rollover" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:150 +#: ../../godmode/setup/setup_visuals.php:1198 +msgid "Compact mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:159 +#: ../../godmode/setup/setup_visuals.php:740 +#: ../../include/functions_config.php:856 +msgid "Graph color #1" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:169 +#: ../../godmode/setup/setup_visuals.php:744 +#: ../../include/functions_config.php:860 +msgid "Graph color #2" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:179 +#: ../../godmode/setup/setup_visuals.php:748 +#: ../../include/functions_config.php:864 +msgid "Graph color #3" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:190 +msgid "Data precision for reports and visual consoles" +msgstr "Data precision for reports and visual consoles" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:193 +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:209 +#: ../../enterprise/meta/include/functions_meta.php:1338 +#: ../../godmode/setup/setup_visuals.php:855 +#: ../../godmode/reporting/visual_console_builder.wizard.php:305 +#: ../../include/functions_visual_map_editor.php:618 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:452 +msgid "Percentile" +msgstr "Percentile" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:212 +msgid "Show percentile 95 in graphs" +msgstr "Show percentile 95 in graphs" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:225 +#: ../../enterprise/meta/include/functions_meta.php:1392 +#: ../../godmode/setup/setup_visuals.php:780 +#: ../../include/functions_config.php:896 +msgid "Value to interface graphics" +msgstr "Value to interface graphics" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:235 +#: ../../enterprise/meta/include/functions_meta.php:1404 +#: ../../godmode/users/configure_user.php:932 +#: ../../godmode/setup/setup_visuals.php:60 +#: ../../godmode/events/event_edit_filter.php:359 +#: ../../include/functions_config.php:913 +#: ../../operation/users/user_edit.php:289 +#: ../../operation/snmpconsole/snmp_view.php:531 +#: ../../operation/events/events_list.php:838 +msgid "Block size for pagination" +msgstr "Block size for pagination" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:245 +#: ../../enterprise/meta/include/functions_meta.php:1413 +#: ../../godmode/setup/setup_visuals.php:812 +#: ../../include/functions_config.php:917 +msgid "Use round corners" +msgstr "Use round corners" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:253 +#: ../../enterprise/meta/include/functions_meta.php:1422 +#: ../../include/functions_config.php:1121 +msgid "Disable help" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:261 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:699 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:332 +#: ../../enterprise/meta/advanced/metasetup.setup.php:338 +#: ../../enterprise/meta/advanced/metasetup.setup.php:348 +#: ../../enterprise/meta/advanced/metasetup.setup.php:354 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:176 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:248 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:345 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:583 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 +#: ../../enterprise/meta/event/custom_events.php:225 +#: ../../enterprise/meta/event/custom_events.php:271 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:373 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:395 +#: ../../enterprise/extensions/ipam/ipam_network.php:518 +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/modules/configure_local_component.php:672 +#: ../../enterprise/godmode/modules/configure_local_component.php:678 +#: ../../enterprise/godmode/modules/configure_local_component.php:686 +#: ../../enterprise/godmode/modules/configure_local_component.php:692 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:838 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:433 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:564 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:660 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:164 +#: ../../enterprise/godmode/policies/policy_alerts.php:518 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:425 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:531 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:115 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:173 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:231 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:467 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:580 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:847 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:863 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:879 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:895 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:910 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:916 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:714 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:820 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1050 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1066 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1082 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1098 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1114 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1129 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1135 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_agents.php:406 +#: ../../enterprise/godmode/policies/policy_agents.php:1362 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:107 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:191 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:93 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:367 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:519 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:520 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:521 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:522 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:571 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:188 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:227 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:250 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:103 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:181 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:105 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:820 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:934 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:969 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../enterprise/godmode/alerts/alert_events.php:567 +#: ../../enterprise/godmode/alerts/alert_events_list.php:686 +#: ../../enterprise/godmode/setup/setup.php:678 +#: ../../enterprise/godmode/setup/setup.php:695 +#: ../../enterprise/godmode/setup/setup.php:704 +#: ../../enterprise/godmode/setup/setup.php:721 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:255 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:738 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:784 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:164 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:548 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:567 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:581 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:591 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:601 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:605 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:530 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:562 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:586 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:602 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:644 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:677 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:686 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:705 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:350 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:369 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:380 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:78 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:484 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:894 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:910 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:931 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:940 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1253 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1281 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1300 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1327 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:337 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:483 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:515 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:568 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:601 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:631 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:652 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:672 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:697 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:720 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:741 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:949 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1043 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1058 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1068 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1083 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1105 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:187 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:219 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:225 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:237 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:283 +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../enterprise/include/class/Omnishell.class.php:836 +#: ../../enterprise/include/class/SAP.app.php:591 +#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:830 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:838 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:986 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1107 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1116 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1810 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2399 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2444 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3402 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:142 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../enterprise/operation/log/log_viewer.php:600 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:330 +#: ../../godmode/modules/manage_network_components_form_network.php:235 +#: ../../godmode/modules/manage_network_components_form.php:572 +#: ../../godmode/modules/manage_network_components_form.php:578 +#: ../../godmode/modules/manage_network_components_form.php:587 +#: ../../godmode/modules/manage_network_components_form.php:593 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:856 +#: ../../godmode/users/configure_user.php:870 +#: ../../godmode/users/configure_user.php:977 +#: ../../godmode/users/configure_user.php:983 +#: ../../godmode/agentes/status_monitor_custom_fields.php:216 +#: ../../godmode/agentes/status_monitor_custom_fields.php:264 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:103 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:152 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:197 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:430 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:533 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:788 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:804 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:820 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:836 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:851 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:857 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:461 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:584 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:719 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1075 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1091 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1107 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1123 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1139 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1154 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1160 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:458 +#: ../../godmode/agentes/agent_manager.php:394 +#: ../../godmode/agentes/agent_manager.php:727 +#: ../../godmode/agentes/agent_manager.php:896 +#: ../../godmode/agentes/agent_manager.php:1171 +#: ../../godmode/agentes/module_manager_editor_common.php:667 +#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1297 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 +#: ../../godmode/agentes/module_manager_editor_common.php:1312 +#: ../../godmode/agentes/module_manager_editor_common.php:1318 +#: ../../godmode/snmpconsole/snmp_alert.php:25 +#: ../../godmode/snmpconsole/snmp_alert.php:1127 +#: ../../godmode/gis_maps/configure_gis_map.php:511 +#: ../../godmode/massive/massive_copy_modules.php:363 +#: ../../godmode/massive/massive_copy_modules.php:496 +#: ../../godmode/massive/massive_delete_modules.php:478 +#: ../../godmode/massive/massive_delete_modules.php:571 +#: ../../godmode/massive/massive_delete_modules.php:618 +#: ../../godmode/massive/massive_delete_modules.php:665 +#: ../../godmode/massive/massive_delete_modules.php:673 +#: ../../godmode/massive/massive_delete_modules.php:674 +#: ../../godmode/massive/massive_delete_modules.php:675 +#: ../../godmode/massive/massive_delete_modules.php:676 +#: ../../godmode/massive/massive_delete_modules.php:742 +#: ../../godmode/massive/massive_delete_modules.php:772 +#: ../../godmode/massive/massive_add_alerts.php:275 +#: ../../godmode/massive/massive_edit_plugins.php:316 +#: ../../godmode/massive/massive_edit_agents.php:578 +#: ../../godmode/massive/massive_delete_alerts.php:331 +#: ../../godmode/massive/massive_add_action_alerts.php:319 +#: ../../godmode/massive/massive_edit_modules.php:430 +#: ../../godmode/massive/massive_edit_modules.php:847 +#: ../../godmode/massive/massive_edit_modules.php:981 +#: ../../godmode/massive/massive_edit_modules.php:1097 +#: ../../godmode/massive/massive_edit_modules.php:1132 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/massive/massive_edit_modules.php:1243 +#: ../../godmode/massive/massive_edit_modules.php:1314 +#: ../../godmode/massive/massive_edit_modules.php:1423 +#: ../../godmode/massive/massive_edit_modules.php:1424 +#: ../../godmode/massive/massive_edit_modules.php:1425 +#: ../../godmode/massive/massive_edit_modules.php:1426 +#: ../../godmode/massive/massive_edit_modules.php:1659 +#: ../../godmode/massive/massive_edit_modules.php:1719 +#: ../../godmode/alerts/alert_list.list.php:717 +#: ../../godmode/alerts/configure_alert_action.php:164 +#: ../../godmode/alerts/configure_alert_template.php:694 +#: ../../godmode/alerts/configure_alert_template.php:714 +#: ../../godmode/setup/os.builder.php:38 +#: ../../godmode/setup/setup_visuals.php:396 +#: ../../godmode/setup/setup_visuals.php:415 +#: ../../godmode/setup/setup_visuals.php:862 +#: ../../godmode/reporting/create_container.php:457 +#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:408 +#: ../../godmode/reporting/graph_builder.graph_editor.php:428 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1588 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1724 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1777 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2548 +#: ../../godmode/reporting/visual_console_builder.elements.php:390 +#: ../../godmode/reporting/visual_console_builder.elements.php:537 +#: ../../godmode/reporting/visual_console_builder.elements.php:547 +#: ../../godmode/reporting/visual_console_builder.wizard.php:286 +#: ../../godmode/reporting/visual_console_builder.wizard.php:458 +#: ../../godmode/reporting/visual_console_builder.wizard.php:471 +#: ../../godmode/reporting/visual_console_builder.wizard.php:505 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../godmode/reporting/visual_console_builder.wizard.php:557 +#: ../../godmode/reporting/visual_console_builder.wizard.php:752 +#: ../../godmode/reporting/visual_console_builder.wizard.php:762 +#: ../../godmode/reporting/visual_console_builder.wizard.php:794 +#: ../../godmode/events/event_edit_filter.php:643 +#: ../../godmode/events/custom_events.php:178 +#: ../../godmode/events/custom_events.php:226 +#: ../../godmode/wizards/HostDevices.class.php:1095 +#: ../../mobile/operation/events.php:638 +#: ../../include/functions_visual_map_editor.php:370 +#: ../../include/functions_visual_map_editor.php:372 +#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:867 +#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:982 +#: ../../include/functions.php:1076 ../../include/functions_networkmap.php:1483 +#: ../../include/ajax/planned_downtime.ajax.php:82 +#: ../../include/ajax/alert_list.ajax.php:480 +#: ../../include/ajax/custom_fields.php:658 ../../include/ajax/events.php:393 +#: ../../include/functions_integriaims.php:146 +#: ../../include/functions_profile.php:276 +#: ../../include/functions_profile.php:293 +#: ../../include/functions_profile.php:308 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:363 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:398 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:616 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:628 +#: ../../include/rest-api/models/VisualConsole/Item.php:1969 +#: ../../include/rest-api/models/VisualConsole/Item.php:2080 +#: ../../include/rest-api/models/VisualConsole/Item.php:2193 +#: ../../include/rest-api/models/VisualConsole/Item.php:2311 +#: ../../include/functions_html.php:366 ../../include/functions_html.php:611 +#: ../../include/functions_html.php:821 ../../include/functions_html.php:866 +#: ../../include/functions_html.php:913 ../../include/functions_html.php:914 +#: ../../include/functions_html.php:964 ../../include/functions_html.php:1009 +#: ../../include/functions_html.php:3623 +#: ../../include/class/NetworkMap.class.php:2804 +#: ../../include/class/NetworkMap.class.php:3048 +#: ../../include/class/NetworkMap.class.php:3057 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3125 +#: ../../include/class/NetworkMap.class.php:3210 +#: ../../include/class/NetworkMap.class.php:3216 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:325 +#: ../../include/lib/Dashboard/Widgets/service_map.php:227 +#: ../../include/lib/Dashboard/Widgets/service_map.php:247 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:301 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:311 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3384 +#: ../../include/functions_events.php:3400 +#: ../../operation/users/user_edit.php:382 +#: ../../operation/users/user_edit.php:418 +#: ../../operation/users/user_edit.php:475 +#: ../../operation/users/user_edit.php:489 +#: ../../operation/users/user_edit.php:833 +#: ../../operation/users/user_edit.php:840 +#: ../../operation/users/user_edit.php:849 +#: ../../operation/users/user_edit.php:856 +#: ../../operation/agentes/pandora_networkmap.editor.php:319 +#: ../../operation/agentes/ver_agente.php:986 +#: ../../operation/agentes/ver_agente.php:1029 +#: ../../operation/agentes/ver_agente.php:1039 +#: ../../operation/snmpconsole/snmp_browser.php:324 +#: ../../operation/snmpconsole/snmp_browser.php:339 +#: ../../operation/snmpconsole/snmp_browser.php:349 +#: ../../operation/snmpconsole/snmp_browser.php:468 +#: ../../operation/snmpconsole/snmp_view.php:605 +#: ../../operation/snmpconsole/snmp_view.php:1030 +#: ../../operation/snmpconsole/snmp_view.php:1041 +#: ../../operation/gis_maps/render_view.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:278 +#: ../../operation/incidents/list_integriaims_incidents.php:282 +#: ../../operation/events/events_list.php:518 +#: ../../operation/events/events_list.php:1269 +#: ../../operation/events/events.php:1596 +msgid "None" +msgstr "None" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:262 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:381 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:300 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:208 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:235 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:253 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 #: ../../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/agentes/tag_view.php:90 -#: ../../enterprise/operation/agentes/tag_view.php:109 -#: ../../enterprise/operation/agentes/tag_view.php:137 -#: ../../enterprise/operation/agentes/tag_view.php:155 -#: ../../enterprise/operation/agentes/tag_view.php:199 -#: ../../enterprise/operation/agentes/tag_view.php:201 -#: ../../enterprise/operation/agentes/tag_view.php:265 -#: ../../enterprise/operation/inventory/inventory.php:55 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:320 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:278 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:325 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/extensions/backup/main.php:112 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1454 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1478 +#: ../../enterprise/godmode/modules/local_components.php:482 +#: ../../enterprise/godmode/modules/local_components.php:508 +#: ../../enterprise/godmode/modules/local_components.php:533 +#: ../../enterprise/godmode/agentes/collections.data.php:432 +#: ../../enterprise/godmode/policies/policy_queue.php:414 +#: ../../enterprise/godmode/policies/policy_queue.php:419 +#: ../../enterprise/godmode/policies/policy_queue.php:430 +#: ../../enterprise/godmode/policies/policy_queue.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:699 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:114 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:191 +#: ../../enterprise/godmode/setup/setup_acl.php:362 +#: ../../enterprise/godmode/setup/setup_acl.php:379 +#: ../../enterprise/godmode/setup/setup_acl.php:396 +#: ../../enterprise/godmode/setup/setup_acl.php:620 +#: ../../enterprise/godmode/setup/setup_acl.php:628 +#: ../../enterprise/godmode/setup/setup_acl.php:639 +#: ../../enterprise/godmode/setup/setup_acl.php:680 +#: ../../enterprise/godmode/setup/setup_acl.php:711 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:185 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:608 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:634 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1838 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1845 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1870 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2549 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576 +#: ../../enterprise/include/functions_metaconsole.php:839 +#: ../../enterprise/include/functions_metaconsole.php:840 +#: ../../enterprise/include/functions_metaconsole.php:1188 +#: ../../enterprise/operation/agentes/tag_view.php:124 +#: ../../enterprise/operation/agentes/tag_view.php:150 +#: ../../enterprise/operation/agentes/tag_view.php:188 +#: ../../enterprise/operation/agentes/tag_view.php:216 +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../enterprise/operation/agentes/tag_view.php:283 +#: ../../enterprise/operation/agentes/tag_view.php:369 +#: ../../enterprise/operation/agentes/agent_inventory.php:74 +#: ../../enterprise/operation/log/log_viewer.php:469 +#: ../../enterprise/operation/log/log_viewer.php:512 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 #: ../../enterprise/operation/inventory/inventory.php:57 -#: ../../enterprise/operation/inventory/inventory.php:120 -#: ../../enterprise/operation/inventory/inventory.php:122 -#: ../../enterprise/operation/inventory/inventory.php:177 -#: ../../enterprise/operation/log/log_viewer.php:212 -#: ../../enterprise/operation/log/log_viewer.php:228 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:32 +#: ../../enterprise/operation/inventory/inventory.php:58 +#: ../../enterprise/operation/inventory/inventory.php:134 +#: ../../enterprise/operation/inventory/inventory.php:135 +#: ../../enterprise/operation/inventory/inventory.php:193 +#: ../../extensions/agents_modules.php:401 +#: ../../extensions/files_repo/files_repo_form.php:46 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_components.php:574 +#: ../../godmode/massive/massive_copy_modules.php:111 +#: ../../godmode/massive/massive_copy_modules.php:271 +#: ../../godmode/massive/massive_delete_modules.php:303 +#: ../../godmode/massive/massive_delete_modules.php:350 +#: ../../godmode/massive/massive_delete_modules.php:405 +#: ../../godmode/massive/massive_delete_modules.php:426 +#: ../../godmode/massive/massive_delete_agents.php:148 +#: ../../godmode/massive/massive_delete_agents.php:162 +#: ../../godmode/massive/massive_edit_agents.php:435 +#: ../../godmode/massive/massive_edit_agents.php:448 +#: ../../godmode/massive/massive_edit_modules.php:284 +#: ../../godmode/massive/massive_edit_modules.php:331 +#: ../../godmode/massive/massive_edit_modules.php:369 +#: ../../godmode/massive/massive_edit_modules.php:454 +#: ../../godmode/admin_access_logs.php:83 +#: ../../godmode/admin_access_logs.php:87 +#: ../../godmode/alerts/alert_list.list.php:115 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:135 +#: ../../godmode/alerts/alert_templates.php:291 +#: ../../godmode/alerts/alert_list.php:413 +#: ../../godmode/alerts/alert_list.php:462 +#: ../../godmode/alerts/alert_list.php:476 +#: ../../godmode/setup/gis_step_2.php:207 +#: ../../godmode/setup/setup_visuals.php:863 +#: ../../godmode/reporting/reporting_builder.list_items.php:209 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.list_items.php:213 +#: ../../godmode/reporting/reporting_builder.list_items.php:235 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/create_container.php:514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1294 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2340 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2367 +#: ../../godmode/reporting/visual_console_builder.wizard.php:360 +#: ../../godmode/reporting/visual_console_builder.wizard.php:374 +#: ../../godmode/events/event_edit_filter.php:289 +#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:567 +#: ../../mobile/operation/agents.php:38 ../../mobile/operation/modules.php:48 +#: ../../mobile/operation/modules.php:264 +#: ../../mobile/operation/modules.php:279 ../../mobile/operation/alerts.php:47 +#: ../../mobile/operation/alerts.php:54 ../../mobile/operation/events.php:682 +#: ../../mobile/operation/events.php:692 ../../mobile/operation/events.php:1158 +#: ../../mobile/operation/events.php:1187 ../../include/functions.php:1074 +#: ../../include/functions.php:1333 ../../include/functions_groupview.php:95 +#: ../../include/functions_modules.php:3258 +#: ../../include/functions_modules.php:3260 +#: ../../include/functions_graph.php:3032 ../../include/functions_users.php:369 +#: ../../include/functions_users.php:612 +#: ../../include/functions_notifications.php:108 +#: ../../include/class/CredentialStore.class.php:494 +#: ../../include/functions_reporting.php:2306 +#: ../../include/lib/Dashboard/Widgets/events_list.php:350 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:371 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/functions_groups.php:685 +#: ../../include/functions_groups.php:1964 +#: ../../include/functions_events.php:5787 +#: ../../include/functions_events.php:6385 ../../operation/tree.php:157 +#: ../../operation/tree.php:201 ../../operation/agentes/estado_agente.php:245 +#: ../../operation/agentes/status_monitor.php:394 +#: ../../operation/agentes/status_monitor.php:422 +#: ../../operation/agentes/status_monitor.php:459 +#: ../../operation/agentes/status_monitor.php:538 +#: ../../operation/agentes/status_monitor.php:541 +#: ../../operation/agentes/status_monitor.php:641 +#: ../../operation/agentes/estado_monitores.php:513 +#: ../../operation/agentes/estado_monitores.php:558 +#: ../../operation/agentes/alerts_status.functions.php:78 +#: ../../operation/agentes/alerts_status.functions.php:84 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:118 +#: ../../operation/snmpconsole/snmp_view.php:525 +#: ../../operation/snmpconsole/snmp_view.php:554 +#: ../../operation/snmpconsole/snmp_view.php:562 +#: ../../operation/snmpconsole/snmp_view.php:847 +#: ../../operation/incidents/list_integriaims_incidents.php:122 +#: ../../operation/incidents/list_integriaims_incidents.php:133 +#: ../../operation/incidents/list_integriaims_incidents.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:161 +#: ../../operation/events/events_list.php:813 +#: ../../operation/events/events_list.php:825 +#: ../../operation/events/events_list.php:934 +#: ../../operation/events/events_list.php:946 +#: ../../operation/events/events.php:897 ../../operation/events/events.php:966 +#: ../../operation/events/events.php:1058 +#: ../../operation/events/events.php:1110 +#: ../../operation/events/events.php:2001 +#: ../../operation/events/events.build_table.php:616 +#: ../../general/subselect_data_module.php:62 msgid "All" msgstr "All" -#: ../../extensions/agents_modules.php:166 -#: ../../extensions/agents_modules.php:168 -#: ../../godmode/agentes/planned_downtime.editor.php:734 -#: ../../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:527 -#: ../../godmode/massive/massive_edit_modules.php:369 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 -#: ../../enterprise/dashboard/widgets/agent_module.php:91 -#: ../../enterprise/dashboard/widgets/agent_module.php:93 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:228 -msgid "Show common modules" -msgstr "Show common modules" +#: ../../enterprise/meta/advanced/metasetup.visual.php:263 +#: ../../godmode/setup/setup_visuals.php:864 +msgid "On Boolean graphs" +msgstr "On Boolean graphs" -#: ../../extensions/agents_modules.php:167 -#: ../../godmode/agentes/planned_downtime.editor.php:734 -#: ../../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:527 -#: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1097 -#: ../../enterprise/dashboard/widgets/agent_module.php:94 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:229 -msgid "Show all modules" -msgstr "Show all modules" +#: ../../enterprise/meta/advanced/metasetup.visual.php:266 +msgid "Graph TIP view" +msgstr "Graph TIP view" -#: ../../extensions/agents_modules.php:177 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1683 -#: ../../include/functions_visual_map_editor.php:890 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2100 -msgid "Update item" -msgstr "Update item" +#: ../../enterprise/meta/advanced/metasetup.visual.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 +#: ../../operation/agentes/interface_traffic_graph_win.php:223 +msgid "This option may cause performance issues" +msgstr "This option may cause performance issues" -#: ../../extensions/agents_modules.php:187 -#: ../../include/functions_reports.php:589 -#: ../../include/graphs/functions_pchart.php:1473 -msgid "Agents/Modules" -msgstr "Agents/Modules" +#: ../../enterprise/meta/advanced/metasetup.visual.php:281 +#: ../../godmode/setup/setup_visuals.php:873 +msgid "Standard mode" +msgstr "" -#: ../../extensions/agents_modules.php:233 -msgid "Agent/module view" -msgstr "Agent/module view" +#: ../../enterprise/meta/advanced/metasetup.visual.php:282 +#: ../../godmode/setup/setup_visuals.php:874 +msgid "Classic mode" +msgstr "" -#: ../../extensions/agents_modules.php:388 -#: ../../include/functions_reporting.php:1773 -msgid "There are no agents with modules" -msgstr "There are no agents with modules" +#: ../../enterprise/meta/advanced/metasetup.visual.php:284 +msgid "Soft graphs:" +msgstr "" -#: ../../extensions/agents_modules.php:414 -msgid "Previous modules" -msgstr "Previous modules" +#: ../../enterprise/meta/advanced/metasetup.visual.php:304 +#: ../../godmode/setup/setup_visuals.php:879 +msgid "Zoom graphs:" +msgstr "" -#: ../../extensions/agents_modules.php:453 -msgid "More modules" -msgstr "More modules" +#: ../../enterprise/meta/advanced/metasetup.visual.php:318 +#: ../../godmode/setup/setup_visuals.php:821 +msgid "Type of module charts" +msgstr "Type of module charts" -#: ../../extensions/agents_modules.php:572 -#: ../../extensions/module_groups.php:296 -#: ../../godmode/snmpconsole/snmp_alert.php:1343 -#: ../../include/functions_reporting_html.php:1447 -#: ../../operation/snmpconsole/snmp_view.php:1047 -#: ../../enterprise/dashboard/widgets/service_map.php:49 -#: ../../enterprise/dashboard/widgets/service_map.php:74 -#: ../../enterprise/operation/services/services.service_map.php:114 -msgid "Legend" -msgstr "Legend" +#: ../../enterprise/meta/advanced/metasetup.visual.php:320 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:213 +#: ../../godmode/setup/setup_visuals.php:822 +#: ../../godmode/setup/setup_visuals.php:839 +#: ../../godmode/reporting/create_container.php:326 +#: ../../godmode/reporting/graph_builder.main.php:151 +#: ../../include/functions_visual_map_editor.php:502 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:636 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:261 +#: ../../operation/agentes/graphs.php:229 +#: ../../operation/agentes/graphs.php:236 +#: ../../operation/agentes/graphs.php:402 +#: ../../operation/agentes/graphs.php:421 +#: ../../operation/reporting/graph_viewer.php:265 +msgid "Area" +msgstr "Area" -#: ../../extensions/agents_modules.php:573 -#: ../../include/functions_reporting_html.php:1448 -msgid "Orange cell when the module has fired alerts" -msgstr "Cell turns orange when there are alerts triggered for that module" +#: ../../enterprise/meta/advanced/metasetup.visual.php:329 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:215 +#: ../../godmode/setup/setup_visuals.php:829 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../godmode/reporting/create_container.php:327 +#: ../../godmode/reporting/visual_console_builder.elements.php:278 +#: ../../godmode/reporting/graph_builder.main.php:153 +#: ../../include/functions_visual_map_editor.php:72 +#: ../../include/functions_visual_map_editor.php:501 +#: ../../include/functions_visual_map_editor.php:1309 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:635 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:263 +#: ../../operation/visual_console/view.php:275 +#: ../../operation/agentes/graphs.php:231 +#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/graphs.php:410 +#: ../../operation/agentes/graphs.php:425 +#: ../../operation/reporting/graph_viewer.php:267 +msgid "Line" +msgstr "Line" -#: ../../extensions/agents_modules.php:574 -#: ../../include/functions_reporting_html.php:1449 -msgid "Red cell when the module has a critical status" -msgstr "Cell turns red when a module is in 'critical' status" +#: ../../enterprise/meta/advanced/metasetup.visual.php:339 +#: ../../enterprise/meta/include/functions_meta.php:1485 +msgid "Metaconsole elements" +msgstr "Metaconsole elements" -#: ../../extensions/agents_modules.php:575 -#: ../../include/functions_reporting_html.php:1450 -msgid "Yellow cell when the module has a warning status" -msgstr "Cell turns yellow when a module is in 'warning' status" +#: ../../enterprise/meta/advanced/metasetup.visual.php:341 +msgid "The number of elements retrieved for each instance in some views." +msgstr "The number of elements retrieved for each instance in some views." -#: ../../extensions/agents_modules.php:576 -#: ../../include/functions_reporting_html.php:1451 -msgid "Green cell when the module has a normal status" -msgstr "Cell turns green when a module is in 'normal' status" +#: ../../enterprise/meta/advanced/metasetup.visual.php:354 +#: ../../enterprise/meta/advanced/metasetup.visual.php:756 +#: ../../enterprise/meta/advanced/metasetup.visual.php:757 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 +#: ../../extensions/agents_alerts.php:104 +#: ../../extensions/agents_alerts.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:1039 +#: ../../godmode/setup/setup_visuals.php:926 +#: ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/setup/setup_visuals.php:1261 +#: ../../include/functions_visual_map_editor.php:1133 +#: ../../include/functions_visual_map_editor.php:1134 +#: ../../include/functions.php:493 ../../include/functions.php:633 +#: ../../include/functions_html.php:1431 +msgid "seconds" +msgstr "seconds" -#: ../../extensions/agents_modules.php:577 -#: ../../include/functions_reporting_html.php:1452 -msgid "Grey cell when the module has an unknown status" -msgstr "Cell turns grey when the module is in 'unknown' status" +#: ../../enterprise/meta/advanced/metasetup.visual.php:355 +#: ../../enterprise/meta/advanced/metasetup.visual.php:758 +#: ../../enterprise/meta/advanced/metasetup.visual.php:759 +#: ../../enterprise/meta/advanced/metasetup.visual.php:760 +#: ../../enterprise/meta/advanced/metasetup.visual.php:761 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/setup/setup_visuals.php:929 +#: ../../godmode/setup/setup_visuals.php:930 +#: ../../godmode/setup/setup_visuals.php:931 +#: ../../godmode/setup/setup_visuals.php:1262 +#: ../../include/functions_visual_map_editor.php:1135 +#: ../../include/functions_visual_map_editor.php:1136 +#: ../../include/functions_visual_map_editor.php:1137 +#: ../../include/functions_visual_map_editor.php:1138 +#: ../../include/functions.php:497 ../../include/functions.php:637 +#: ../../include/functions_html.php:1432 +msgid "minutes" +msgstr "minutes" -#: ../../extensions/agents_modules.php:578 -msgid "Cell turns blue when the module is in 'not initialize' status" -msgstr "Cell turns blue when the module is in 'not initialize' status" +#: ../../enterprise/meta/advanced/metasetup.visual.php:356 +#: ../../godmode/setup/setup_visuals.php:1263 ../../include/functions.php:498 +#: ../../include/functions.php:638 ../../include/functions_html.php:1433 +msgid "hours" +msgstr "hours" -#: ../../extensions/agents_modules.php:590 -msgid "Agents/Modules view" -msgstr "Agent/Module view" +#: ../../enterprise/meta/advanced/metasetup.visual.php:357 +#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 +#: ../../godmode/setup/setup_visuals.php:1264 ../../include/functions.php:494 +#: ../../include/functions.php:634 ../../include/functions_html.php:1434 +msgid "days" +msgstr "days" -#: ../../extensions/api_checker.php:92 ../../extensions/api_checker.php:228 -msgid "API checker" -msgstr "API checker" +#: ../../enterprise/meta/advanced/metasetup.visual.php:358 +#: ../../godmode/setup/setup_visuals.php:1265 ../../include/functions.php:495 +#: ../../include/functions.php:635 ../../include/functions_html.php:1436 +msgid "months" +msgstr "months" -#: ../../extensions/api_checker.php:99 ../../extensions/users_connected.php:78 +#: ../../enterprise/meta/advanced/metasetup.visual.php:359 +#: ../../godmode/setup/setup_visuals.php:1266 ../../include/functions.php:496 +#: ../../include/functions.php:636 ../../include/functions_html.php:1437 +msgid "years" +msgstr "years" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:362 +msgid "Add new custom value to intervals" +msgstr "Add new custom value to intervals" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:585 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:737 +#: ../../enterprise/meta/advanced/links.php:175 +#: ../../enterprise/meta/include/functions_autoprovision.php:675 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1367 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:468 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:354 +#: ../../enterprise/godmode/agentes/collection_manager.php:119 +#: ../../enterprise/godmode/agentes/collection_manager.php:139 +#: ../../enterprise/godmode/agentes/inventory_manager.php:182 +#: ../../enterprise/godmode/agentes/plugins_manager.php:104 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:223 +#: ../../enterprise/godmode/policies/policy_plugins.php:96 +#: ../../enterprise/godmode/policies/policy_alerts.php:540 +#: ../../enterprise/godmode/policies/policy_alerts.php:604 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:397 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:215 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:150 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:138 +#: ../../enterprise/godmode/alerts/alert_events_list.php:699 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:345 +#: ../../enterprise/godmode/setup/setup_acl.php:407 +#: ../../enterprise/godmode/setup/setup_acl.php:426 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:829 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:217 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:295 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:71 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2183 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:266 +#: ../../extensions/files_repo/files_repo_form.php:84 +#: ../../godmode/modules/manage_network_templates_form.php:335 +#: ../../godmode/users/configure_profile.php:355 +#: ../../godmode/agentes/planned_downtime.editor.php:854 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/agentes/planned_downtime.editor.php:1158 +#: ../../godmode/snmpconsole/snmp_alert.php:1436 +#: ../../godmode/gis_maps/configure_gis_map.php:562 +#: ../../godmode/massive/massive_add_alerts.php:267 +#: ../../godmode/massive/massive_add_action_alerts.php:236 +#: ../../godmode/alerts/alert_list.list.php:769 +#: ../../godmode/setup/news.php:289 ../../godmode/setup/links.php:166 +#: ../../godmode/setup/setup_visuals.php:1216 +#: ../../godmode/setup/setup_visuals.php:1271 +#: ../../godmode/setup/setup_visuals.php:1291 +#: ../../godmode/reporting/graph_builder.graph_editor.php:377 +#: ../../godmode/reporting/visual_console_builder.wizard.php:551 +#: ../../godmode/events/event_edit_filter.php:475 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../godmode/servers/plugin.php:1052 +#: ../../include/functions_notifications.php:853 +#: ../../include/class/ManageNetScanScripts.class.php:475 +#: ../../include/functions_snmp_browser.php:1234 +#: ../../operation/incidents/incident_detail.php:425 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:321 +#: ../../operation/events/events_list.php:601 +#: ../../operation/events/events_list.php:675 +#: ../../operation/events/events.php:528 ../../operation/events/events.php:602 +msgid "Add" +msgstr "Add" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:392 +#: ../../enterprise/meta/include/functions_meta.php:1641 +#: ../../godmode/setup/setup_visuals.php:1276 +#: ../../include/functions_config.php:1280 +msgid "Delete interval" +msgstr "Delete interval" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:426 +#: ../../enterprise/meta/include/functions_meta.php:1494 +#: ../../godmode/setup/setup_visuals.php:1166 +msgid "Show only the group name" +msgstr "Show only the name of the group" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:428 +#: ../../include/functions_config.php:1149 +msgid "Show the group name instead the group icon." +msgstr "Show group name instead of group icon" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:438 +#: ../../enterprise/meta/include/functions_meta.php:1693 +#: ../../godmode/setup/setup_visuals.php:82 +#: ../../include/functions_config.php:1165 +msgid "Display data of proc modules in other format" +msgstr "Display data of proc modules in other format" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:446 +#: ../../enterprise/meta/include/functions_meta.php:1698 +#: ../../godmode/setup/setup_visuals.php:91 +#: ../../include/functions_config.php:1169 +msgid "Display text proc modules have state is ok" +msgstr "Display text when proc modules are in OK status" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:456 +#: ../../enterprise/meta/include/functions_meta.php:1703 +#: ../../godmode/setup/setup_visuals.php:95 +#: ../../include/functions_config.php:1173 +msgid "Display text when proc modules have state critical" +msgstr "Display text when proc modules are in critical status" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:477 +#: ../../godmode/setup/setup_visuals.php:172 +#: ../../include/functions_config.php:993 +msgid "Login background" +msgstr "Login background" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:479 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "You can place custom images in the folder images/backgrounds/" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:493 +#: ../../enterprise/meta/advanced/metasetup.visual.php:527 +#: ../../enterprise/meta/advanced/metasetup.visual.php:882 +#: ../../enterprise/meta/advanced/metasetup.visual.php:973 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:427 +#: ../../enterprise/godmode/policies/policy_alerts.php:340 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:229 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:107 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:89 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/operation/agentes/policy_view.php:268 +#: ../../extensions/agents_alerts.php:556 +#: ../../godmode/users/configure_user.php:718 +#: ../../godmode/users/configure_user.php:889 +#: ../../godmode/agentes/module_manager_editor_common.php:576 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/alerts/alert_list.list.php:584 +#: ../../godmode/alerts/alert_special_days.php:306 +#: ../../godmode/alerts/alert_special_days.php:318 +#: ../../godmode/alerts/alert_view.php:43 +#: ../../godmode/setup/gis_step_2.php:403 +#: ../../godmode/setup/gis_step_2.php:489 +#: ../../godmode/setup/setup_visuals.php:192 +#: ../../godmode/setup/setup_visuals.php:214 +#: ../../godmode/setup/setup_visuals.php:434 +#: ../../godmode/setup/setup_visuals.php:453 +#: ../../godmode/setup/setup_visuals.php:1038 +#: ../../godmode/setup/setup_visuals.php:1075 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../include/functions_ui.php:1210 ../../operation/users/user_edit.php:298 +#: ../../operation/users/user_edit.php:301 +#: ../../operation/users/user_edit.php:312 +#: ../../operation/users/user_edit.php:337 +#: ../../operation/snmpconsole/snmp_view.php:542 +#: ../../operation/gis_maps/gis_map.php:106 +#: ../../operation/events/events_list.php:849 +msgid "Default" +msgstr "Default" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:517 +#: ../../enterprise/meta/include/functions_meta.php:1521 +#: ../../godmode/setup/setup_visuals.php:186 +#: ../../include/functions_config.php:937 +msgid "Custom favicon" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:519 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:544 +msgid "Custom logo (header)" +msgstr "Custom logo (header)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:573 +#: ../../godmode/setup/setup_visuals.php:285 +msgid "Custom logo (header white background)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:601 +#: ../../godmode/setup/setup_visuals.php:324 +msgid "Custom logo (login)" +msgstr "Custom logo (login)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:629 +#: ../../godmode/setup/setup_visuals.php:363 +msgid "Custom Splash (login)" +msgstr "Custom Splash (login)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:657 +#: ../../enterprise/meta/include/functions_meta.php:1548 +#: ../../godmode/setup/setup_visuals.php:507 +#: ../../include/functions_config.php:1005 +msgid "Product name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:668 +#: ../../enterprise/meta/include/functions_meta.php:1557 +#: ../../godmode/setup/setup_visuals.php:513 +#: ../../include/functions_config.php:1009 +msgid "Copyright notice" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:679 +#: ../../godmode/setup/setup_visuals.php:482 +msgid "Title 1 (login)" +msgstr "Title 1 (login)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:690 +#: ../../godmode/setup/setup_visuals.php:489 +msgid "Title 2 (login)" +msgstr "Title 2 (login)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:700 +#: ../../enterprise/meta/include/functions_meta.php:1584 +#: ../../godmode/setup/setup_visuals.php:495 +msgid "Docs URL (login)" +msgstr "Docs URL (login)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:710 +#: ../../enterprise/meta/include/functions_meta.php:1593 +#: ../../godmode/setup/setup_visuals.php:501 +msgid "Support URL (login)" +msgstr "Support URL (login)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:720 +#: ../../godmode/setup/setup_visuals.php:630 +msgid "Graphs font family" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:733 +#: ../../enterprise/meta/include/functions_meta.php:1467 +#: ../../godmode/setup/setup_visuals.php:563 +msgid "Visual effects and animation" +msgstr "Visual effects and animation" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:743 +#: ../../godmode/setup/setup_visuals.php:916 +msgid "Legacy Visual Console View" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:745 +msgid "To use the old view when using the Visual Console visor" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:762 +#: ../../godmode/setup/setup_visuals.php:932 +#: ../../include/functions_visual_map_editor.php:1139 +msgid "hour" +msgstr "hour" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:764 +#: ../../godmode/setup/setup_visuals.php:934 +msgid "Default cache expiration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:769 +#: ../../godmode/setup/setup_visuals.php:939 +#: ../../include/functions_visual_map_editor.php:1165 +msgid "No cache" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:781 +#: ../../enterprise/meta/include/functions_meta.php:1718 +#: ../../godmode/setup/setup_visuals.php:951 +#: ../../include/functions_config.php:1057 +msgid "Default interval for refresh on Visual Console" +msgstr "Default interval for Visual Console to refresh" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:784 +msgid "This interval will affect to Visual Console pages" +msgstr "This interval will affect the pages of the Visual Console" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:810 +#: ../../godmode/setup/setup_visuals.php:1330 +msgid "Data multiplier to use in graphs/data" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:814 +#: ../../godmode/setup/setup_visuals.php:1332 +msgid "Use 1024 when module unit are bytes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +#: ../../godmode/setup/setup_visuals.php:1333 +msgid "Use always 1000" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:816 +#: ../../godmode/setup/setup_visuals.php:1334 +msgid "Use always 1024" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:840 +msgid "Reports configuration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:846 +#: ../../godmode/setup/setup_visuals.php:1003 +msgid "Show report info with description" +msgstr "Show report info with description" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:847 +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." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:858 +#: ../../godmode/setup/setup_visuals.php:1012 +msgid "Custom report front page" +msgstr "Front page for custom reports" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:859 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" +"Custom report front page. It will be applied to all reports and templates by " +"default." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:870 +#: ../../enterprise/meta/include/functions_meta.php:1365 +#: ../../godmode/setup/setup_visuals.php:1022 +#: ../../include/functions_config.php:1316 +msgid "PDF font size (px)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:873 +#: ../../enterprise/meta/include/functions_meta.php:1356 +#: ../../godmode/setup/setup_visuals.php:1027 +#: ../../include/functions_config.php:1312 +msgid "HTML font size for SLA (em)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:876 +#: ../../godmode/setup/setup_visuals.php:1032 +msgid "PDF font family" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:887 +#: ../../enterprise/meta/include/functions_meta.php:1449 +#: ../../godmode/setup/setup_visuals.php:1046 +msgid "Graph image height for HTML reports" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:889 +msgid "" +"This is the height in pixels of the module graph or custom graph in the " +"reports (only: HTML)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:906 +#: ../../godmode/setup/setup_visuals.php:1319 +#: ../../include/functions_config.php:1344 +msgid "CSV divider" +msgstr "CSV divider" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:947 +#: ../../enterprise/meta/include/functions_meta.php:1374 +#: ../../enterprise/meta/include/functions_meta.php:1383 +#: ../../godmode/setup/setup_visuals.php:1055 +msgid "Interval description" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:949 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 " +"seconds”, a short one is 10h 20m 33s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:964 +#: ../../enterprise/meta/advanced/metasetup.visual.php:977 +#: ../../enterprise/meta/advanced/metasetup.visual.php:987 +#: ../../enterprise/meta/advanced/metasetup.visual.php:997 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1012 +#: ../../enterprise/meta/include/functions_meta.php:1657 +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../enterprise/meta/include/functions_meta.php:1673 +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../enterprise/meta/include/functions_meta.php:1683 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../godmode/setup/setup_visuals.php:1069 +#: ../../godmode/setup/setup_visuals.php:1080 +#: ../../godmode/setup/setup_visuals.php:1088 +#: ../../godmode/setup/setup_visuals.php:1099 +#: ../../godmode/setup/setup_visuals.php:1115 +#: ../../include/functions_config.php:1320 +#: ../../include/functions_config.php:1324 +#: ../../include/functions_config.php:1328 +#: ../../include/functions_config.php:1332 +#: ../../include/functions_config.php:1336 +#: ../../include/functions_config.php:1340 +msgid "Custom report front" +msgstr "Front side custom report" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:964 +#: ../../enterprise/meta/include/functions_meta.php:1503 +#: ../../enterprise/meta/include/functions_meta.php:1673 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:103 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1069 +#: ../../include/functions_config.php:941 +#: ../../include/functions_config.php:1328 +msgid "Custom logo" +msgstr "Custom logo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:965 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console " +"installation. You can upload more files (ONLY JPEG AND PNG) with the upload " +"tool." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:987 +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1088 +#: ../../include/functions_config.php:1332 +msgid "Header" +msgstr "Header" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:997 +#: ../../enterprise/meta/include/functions_meta.php:1683 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:119 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1099 +#: ../../include/functions_config.php:1336 +msgid "First page" +msgstr "First page" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1012 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1115 +#: ../../include/functions_config.php:1340 +msgid "Footer" +msgstr "Footer" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1028 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:228 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:154 +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:578 +#: ../../enterprise/meta/advanced/links.php:135 +#: ../../enterprise/meta/advanced/collections.data.php:150 +#: ../../enterprise/meta/advanced/collections.data.php:219 +#: ../../enterprise/meta/advanced/collections.data.php:260 +#: ../../enterprise/meta/advanced/collections.data.php:331 +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:123 +#: ../../enterprise/meta/advanced/collections.editor.php:196 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:156 +#: ../../enterprise/meta/advanced/cron_main.php:454 +#: ../../enterprise/meta/advanced/metasetup.setup.php:313 +#: ../../enterprise/meta/advanced/metasetup.performance.php:121 +#: ../../enterprise/meta/event/custom_events.php:211 +#: ../../enterprise/meta/include/functions_autoprovision.php:564 +#: ../../enterprise/meta/include/functions_autoprovision.php:763 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:327 +#: ../../enterprise/extensions/translate_string.php:364 +#: ../../enterprise/extensions/ipam/ipam_network.php:619 +#: ../../enterprise/extensions/ipam/ipam_massive.php:112 +#: ../../enterprise/extensions/ipam/ipam_editor.php:227 +#: ../../enterprise/extensions/vmware/vmware_view.php:1243 +#: ../../enterprise/extensions/vmware/vmware_view.php:1679 +#: ../../enterprise/godmode/modules/configure_local_component.php:651 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:410 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:342 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:654 +#: ../../enterprise/godmode/agentes/collection_manager.php:148 +#: ../../enterprise/godmode/agentes/collection_manager.php:149 +#: ../../enterprise/godmode/agentes/collection_manager.php:260 +#: ../../enterprise/godmode/agentes/collection_manager.php:261 +#: ../../enterprise/godmode/agentes/inventory_manager.php:180 +#: ../../enterprise/godmode/agentes/inventory_manager.php:250 +#: ../../enterprise/godmode/agentes/collections.data.php:98 +#: ../../enterprise/godmode/agentes/collections.data.php:225 +#: ../../enterprise/godmode/agentes/collections.data.php:294 +#: ../../enterprise/godmode/agentes/collections.data.php:381 +#: ../../enterprise/godmode/agentes/collections.data.php:382 +#: ../../enterprise/godmode/agentes/collections.editor.php:159 +#: ../../enterprise/godmode/agentes/collections.editor.php:230 +#: ../../enterprise/godmode/agentes/plugins_manager.php:122 +#: ../../enterprise/godmode/agentes/plugins_manager.php:147 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:250 +#: ../../enterprise/godmode/policies/configure_policy.php:112 +#: ../../enterprise/godmode/policies/policy_modules.php:419 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:213 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:289 +#: ../../enterprise/godmode/policies/policy_collections.php:202 +#: ../../enterprise/godmode/policies/policy_collections.php:275 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:364 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:361 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:174 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1012 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:271 +#: ../../enterprise/godmode/services/services.service.php:559 +#: ../../enterprise/godmode/services/services.elements.php:764 +#: ../../enterprise/godmode/setup/setup_history.php:79 +#: ../../enterprise/godmode/setup/setup.php:451 +#: ../../enterprise/godmode/setup/setup.php:630 +#: ../../enterprise/godmode/setup/setup_module_library.php:58 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:242 +#: ../../enterprise/godmode/setup/setup_log_collector.php:65 +#: ../../enterprise/godmode/setup/edit_skin.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:107 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:175 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:77 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1632 +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +#: ../../enterprise/include/class/AgentRepository.class.php:885 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/SAPView.class.php:308 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2183 +#: ../../enterprise/include/functions_update_manager.php:252 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:170 +#: ../../enterprise/operation/agentes/collection_view.php:100 +#: ../../enterprise/operation/agentes/collection_view.php:101 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:224 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:452 +#: ../../extensions/files_repo/files_repo_form.php:78 +#: ../../extensions/net_tools.php:499 +#: ../../godmode/modules/manage_nc_groups_form.php:90 +#: ../../godmode/modules/manage_network_templates_form.php:166 +#: ../../godmode/modules/manage_network_components_form.php:307 +#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_modu_group.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:271 +#: ../../godmode/users/configure_profile.php:360 +#: ../../godmode/users/configure_user.php:1087 +#: ../../godmode/agentes/agent_template.php:258 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 +#: ../../godmode/agentes/module_manager_editor.php:743 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:487 +#: ../../godmode/agentes/planned_downtime.list.php:492 +#: ../../godmode/agentes/planned_downtime.editor.php:846 +#: ../../godmode/agentes/agent_manager.php:981 +#: ../../godmode/agentes/configure_field.php:135 +#: ../../godmode/netflow/nf_edit_form.php:258 +#: ../../godmode/snmpconsole/snmp_alert.php:1098 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_filters.php:230 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_edit_plugins.php:376 +#: ../../godmode/massive/massive_edit_agents.php:818 +#: ../../godmode/massive/massive_edit_modules.php:1175 +#: ../../godmode/alerts/configure_alert_command.php:237 +#: ../../godmode/alerts/alert_list.list.php:150 +#: ../../godmode/alerts/alert_list.list.php:157 +#: ../../godmode/alerts/alert_list.list.php:845 +#: ../../godmode/alerts/configure_alert_special_days.php:104 +#: ../../godmode/alerts/configure_alert_action.php:282 +#: ../../godmode/alerts/configure_alert_action.php:286 +#: ../../godmode/setup/news.php:223 ../../godmode/setup/setup_ehorus.php:162 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/os.php:55 ../../godmode/setup/os.php:113 +#: ../../godmode/setup/setup_auth.php:306 +#: ../../godmode/setup/setup_integria.php:554 ../../godmode/setup/links.php:126 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/setup/setup_visuals.php:1346 +#: ../../godmode/setup/setup_general.php:397 +#: ../../godmode/setup/performance.php:672 +#: ../../godmode/reporting/visual_console_builder.data.php:220 +#: ../../godmode/reporting/create_container.php:298 +#: ../../godmode/reporting/visual_console_builder.elements.php:664 +#: ../../godmode/reporting/reporting_builder.main.php:46 +#: ../../godmode/reporting/graph_builder.main.php:182 +#: ../../godmode/events/event_responses.editor.php:205 +#: ../../godmode/events/event_edit_filter.php:622 +#: ../../godmode/events/custom_events.php:166 +#: ../../godmode/servers/modificar_server.php:98 +#: ../../godmode/servers/plugin.php:182 ../../godmode/servers/plugin.php:564 +#: ../../godmode/tag/edit_tag.php:229 +#: ../../godmode/category/edit_category.php:166 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../include/ajax/alert_list.ajax.php:541 +#: ../../include/class/ConfigPEN.class.php:691 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/ManageNetScanScripts.class.php:768 +#: ../../include/class/CredentialStore.class.php:1119 +#: ../../include/class/ModuleTemplates.class.php:927 +#: ../../include/functions_events.php:3405 +#: ../../include/functions_events.php:3485 +#: ../../include/functions_update_manager.php:1406 +#: ../../operation/users/user_edit.php:714 +#: ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/incidents/configure_integriaims_incident.php:320 +#: ../../operation/reporting/reporting_viewer.php:219 +#: ../../operation/events/events_list.php:1059 +msgid "Update" +msgstr "Update" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1210 +#: ../../godmode/setup/setup_visuals.php:1594 +msgid "Logo preview" +msgstr "Logo preview" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1232 +#: ../../godmode/setup/setup_visuals.php:1624 +msgid "Splash Preview" +msgstr "Splash Preview" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1237 +#: ../../godmode/setup/setup_visuals.php:1648 +msgid "Background preview" +msgstr "Background preview" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:272 +#: ../../enterprise/meta/advanced/synchronizing.user.php:564 +#: ../../enterprise/meta/advanced/synchronizing.user.php:651 +#: ../../enterprise/meta/advanced/synchronizing.component.php:279 +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../enterprise/meta/include/functions_meta.php:111 +#: ../../enterprise/meta/include/functions_meta.php:208 +#: ../../godmode/groups/group_list.php:530 +#, php-format +msgid "Error connecting to %s" +msgstr "Error connecting to %s" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:280 +#, php-format +msgid "Error creating/updating %s/%s comamnds" +msgstr "Error creating/updating %s/%s commands" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:284 +#, php-format +msgid "Created/Updated %s/%s commands" +msgstr "Created/updated %s/%s commands" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:289 +#, php-format +msgid "Error creating/updating %s/%s actions" +msgstr "Error creating/updating %s/%s actions" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:293 +#, php-format +msgid "Created/Updated %s/%s actions" +msgstr "Created/updated %s/%s actions" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:298 +#, php-format +msgid "Error creating/updating %s/%s templates" +msgstr "Error creating/updating %s/%s templates" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 +#, php-format +msgid "Created/Updated %s/%s templates" +msgstr "Created/updated %s/%s templates" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 +msgid "Synchronizing Alerts" +msgstr "Synchronizing alerts" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:320 +#: ../../enterprise/meta/advanced/synchronizing.group.php:177 +#: ../../enterprise/meta/advanced/synchronizing.user.php:583 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:75 +#: ../../enterprise/meta/advanced/synchronizing.component.php:300 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:88 +#: ../../enterprise/meta/advanced/synchronizing.os.php:71 +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:130 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:104 +#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../godmode/agentes/agent_incidents.php:94 +#: ../../godmode/massive/massive_copy_modules.php:128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1243 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/events/custom_events.php:108 +#: ../../include/functions_events.php:202 +#: ../../include/functions_events.php:271 +#: ../../include/functions_events.php:4223 +#: ../../include/functions_events.php:4291 +#: ../../include/functions_events.php:6094 +#: ../../operation/agentes/pandora_networkmap.editor.php:306 +#: ../../operation/incidents/incident_detail.php:317 +#: ../../operation/incidents/incident.php:425 +#: ../../operation/events/events_list.php:985 +#: ../../operation/events/events.php:1005 +#: ../../operation/events/events.build_table.php:293 +msgid "Source" +msgstr "Source" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:321 +#: ../../enterprise/meta/advanced/synchronizing.group.php:178 +#: ../../enterprise/meta/advanced/synchronizing.user.php:584 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:76 +#: ../../enterprise/meta/advanced/synchronizing.component.php:301 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:89 +#: ../../enterprise/meta/advanced/synchronizing.os.php:72 +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +msgid "This metaconsole" +msgstr "This Metaconsole" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:333 +#: ../../enterprise/meta/advanced/synchronizing.group.php:216 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:86 +#: ../../enterprise/meta/advanced/synchronizing.component.php:311 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:99 +#: ../../enterprise/meta/advanced/synchronizing.os.php:82 +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:182 +#: ../../godmode/massive/massive_copy_modules.php:223 +msgid "Targets" +msgstr "Targets" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:340 +#: ../../enterprise/meta/advanced/synchronizing.group.php:223 +#: ../../enterprise/meta/advanced/synchronizing.user.php:660 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:621 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:93 +#: ../../enterprise/meta/advanced/synchronizing.component.php:318 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:106 +#: ../../enterprise/meta/advanced/synchronizing.os.php:89 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:127 +#: ../../enterprise/include/functions_setup.php:172 +msgid "Sync" +msgstr "Sync" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 +msgid "Agent: " +msgstr "Agent: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 +msgid " already exists in target node" +msgstr " already exists in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +msgid " group does not exist in target node" +msgstr " group does not exist in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 +msgid "" +" policies definitions does not match with defined ones in target node" +msgstr " policy definitions do not match with defined ones in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 +msgid " plugins does not exist in target node" +msgstr " plugins do not exist in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +msgid " collections does not exist in target node" +msgstr " collections do not exist in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 +msgid " inventory does not exist in target node" +msgstr " inventory does not exist in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 +msgid " alerts template does not exist in target node" +msgstr " alert templates do not exist in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 +msgid " alerts action does not exist in target node" +msgstr " alert actions do not exist in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 +msgid "Exists agent conf for agent: " +msgstr "Agent configuration exists for agent: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 +msgid " please remove configuration file from target node." +msgstr " please remove configuration file from target node." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:129 +#: ../../enterprise/include/functions_metaconsole.php:2755 +msgid "There are differences between MR versions" +msgstr "There are differences between MR versions" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:133 +#: ../../enterprise/include/functions_metaconsole.php:2748 +msgid "Target server ip address is set" +msgstr "Target server IP address is set" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 +msgid "The agent: " +msgstr "The agent: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 +msgid " has been successfully added to the migration queue " +msgstr " has been successfully added to the migration queue " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 +msgid " has not been added due to problems in the insertion" +msgstr " has not been added due to problems in the insertion" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:227 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:244 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:100 +#: ../../enterprise/godmode/reporting/graph_template_list.php:127 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:126 +#: ../../godmode/modules/manage_nc_groups.php:142 +#: ../../godmode/agentes/planned_downtime.list.php:113 +#: ../../godmode/netflow/nf_item_list.php:123 +#: ../../godmode/netflow/nf_item_list.php:151 +#: ../../godmode/netflow/nf_edit.php:92 ../../godmode/netflow/nf_edit.php:125 +#: ../../godmode/reporting/map_builder.php:166 +#: ../../godmode/reporting/graphs.php:99 ../../godmode/reporting/graphs.php:110 +#: ../../godmode/reporting/graphs.php:151 +#: ../../godmode/events/event_filter.php:55 +#: ../../godmode/events/event_filter.php:82 +#: ../../operation/reporting/graph_viewer.php:41 +#: ../../operation/reporting/graph_viewer.php:49 +msgid "Not deleted. Error deleting data" +msgstr "Error deleting data" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:247 +msgid "Problems delete queue" +msgstr "Problems deleting queue" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:263 +msgid "Move Agents" +msgstr "Move agents" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:279 +msgid "Source Server" +msgstr "Source server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:281 +msgid "Destination Server" +msgstr "Destination server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:313 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:137 +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/include/functions_autoprovision.php:450 +#: ../../enterprise/godmode/agentes/collections.agents.php:55 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:110 +#: ../../enterprise/godmode/policies/policy_queue.php:459 +#: ../../enterprise/godmode/policies/policies.php:433 +#: ../../enterprise/godmode/policies/policies.php:553 +#: ../../enterprise/godmode/policies/policy_agents.php:532 +#: ../../enterprise/godmode/policies/policy_agents.php:651 +#: ../../enterprise/godmode/policies/policy.php:61 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../enterprise/include/functions_cron.php:210 +#: ../../enterprise/include/functions_tasklist.php:278 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/include/functions_reporting.php:6835 +#: ../../enterprise/include/functions_policies.php:3800 +#: ../../enterprise/operation/services/services.service_map.php:179 +#: ../../extensions/agents_alerts.php:205 +#: ../../extensions/agents_alerts.php:390 +#: ../../extensions/agents_modules.php:416 +#: ../../extensions/agents_modules.php:693 +#: ../../godmode/massive/massive_standby_alerts.php:164 +#: ../../godmode/massive/massive_delete_modules.php:511 +#: ../../godmode/massive/massive_add_alerts.php:203 +#: ../../godmode/massive/massive_delete_agents.php:172 +#: ../../godmode/massive/massive_edit_plugins.php:345 +#: ../../godmode/massive/massive_enable_disable_alerts.php:151 +#: ../../godmode/massive/massive_edit_agents.php:457 +#: ../../godmode/massive/massive_delete_alerts.php:278 +#: ../../godmode/massive/massive_edit_modules.php:483 +#: ../../godmode/alerts/alert_list.list.php:68 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1420 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1482 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1602 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +#: ../../mobile/include/functions_web.php:21 +#: ../../mobile/operation/agents.php:190 ../../mobile/operation/home.php:72 +#: ../../mobile/operation/agent.php:160 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:1890 +#: ../../include/functions_reporting_html.php:2344 +#: ../../include/functions_cron.php:557 +#: ../../include/class/Diagnostics.class.php:1152 +#: ../../include/class/Diagnostics.class.php:1156 +#: ../../include/class/Diagnostics.class.php:1160 +#: ../../include/class/Diagnostics.class.php:1164 +#: ../../include/class/NetworkMap.class.php:3214 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:333 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:336 +#: ../../include/lib/Dashboard/Widgets/service_map.php:341 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:79 +#: ../../operation/agentes/group_view.php:154 +#: ../../operation/agentes/group_view.php:187 +msgid "Agents" +msgstr "Agents" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:315 +msgid "Agents to move" +msgstr "Agents to be moved" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:336 +msgid "Add agents to destination server" +msgstr "Add agents to destination server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:344 +msgid "Remove agents to doesn't move to destination server" +msgstr "Removing agents does not move them to the destination server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +msgid "Discard history data" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:375 +msgid "Agents do not exist in target server." +msgstr "Agents do not exist in target server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:376 +msgid "Check group is synchronized with target server." +msgstr "Check group is synchronized with target server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:377 +msgid "All policies needed are synchronized with target server." +msgstr "All policies needed are synchronized with target server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:378 +msgid "All remote plugins needed are synchronized with target server." +msgstr "All remote plugins needed are synchronized with target server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:379 +msgid "All collections needed are syncronized with target server." +msgstr "All collections needed are synchronized with target server" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:380 +msgid "" +"All remote inventory definitions needed are syncronized with target server." +msgstr "" +"All remote inventory definitions needed are synchronized with target server." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:381 +msgid "" +"All alert templates definitions needed are syncronized with target server." +msgstr "" +"All alert template definitions needed are synchronized with target server." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:382 +msgid "All alert actions needed are syncronized with target server." +msgstr "All alert actions needed are synchronized with target server." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:383 +msgid "Agents conf does not exists in target server." +msgstr "Agents configuration does not exists in target server." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:384 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 +msgid "Check target server ip address is set" +msgstr "Check target server IP address is configured" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:395 +msgid "Move" +msgstr "Move" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:409 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:105 +#: ../../enterprise/include/functions_inventory.php:76 +#: ../../include/functions_events.php:238 +msgid "Agent alias" +msgstr "Agent alias" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:410 +msgid "Source node" +msgstr "Source node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:411 +msgid "Target node" +msgstr "Target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:187 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/alerts/alert_events.php:616 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:399 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:507 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:736 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1042 +#: ../../godmode/snmpconsole/snmp_alert.php:1126 +#: ../../godmode/alerts/alert_list.list.php:120 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:945 +#: ../../godmode/alerts/alert_view.php:97 +#: ../../godmode/setup/setup_integria.php:304 +#: ../../godmode/setup/setup_integria.php:427 +#: ../../include/functions_reporting_html.php:4065 +#: ../../include/functions_events.php:4255 +#: ../../operation/agentes/estado_generalagente.php:586 +#: ../../operation/incidents/incident_detail.php:347 +#: ../../operation/incidents/integriaims_export_csv.php:93 +#: ../../operation/incidents/configure_integriaims_incident.php:272 +#: ../../operation/incidents/incident.php:309 +#: ../../operation/incidents/incident.php:422 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:376 +#: ../../operation/incidents/list_integriaims_incidents.php:144 +msgid "Priority" +msgstr "Priority" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +#: ../../enterprise/godmode/alerts/alert_events.php:120 +#: ../../enterprise/godmode/alerts/alert_events.php:124 +#: ../../enterprise/godmode/alerts/alert_events.php:141 +#: ../../enterprise/godmode/alerts/alert_events.php:145 +#: ../../enterprise/godmode/alerts/alert_events.php:162 +#: ../../enterprise/godmode/alerts/alert_events.php:166 +#: ../../enterprise/godmode/setup/setup_history.php:66 +#: ../../godmode/alerts/configure_alert_template.php:178 +#: ../../godmode/alerts/configure_alert_template.php:182 +#: ../../godmode/alerts/configure_alert_template.php:199 +#: ../../godmode/alerts/configure_alert_template.php:203 +#: ../../godmode/alerts/configure_alert_template.php:220 +#: ../../godmode/alerts/configure_alert_template.php:224 +#: ../../include/functions_config.php:1458 +msgid "Step" +msgstr "Step" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 +msgid "Active db only" +msgstr "Active DB only" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:416 +#: ../../enterprise/meta/advanced/collections.php:324 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 +#: ../../enterprise/meta/include/functions_autoprovision.php:451 +#: ../../enterprise/meta/include/functions_alerts_meta.php:125 +#: ../../enterprise/meta/include/functions_alerts_meta.php:144 +#: ../../enterprise/extensions/backup/main.php:136 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:374 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:321 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:273 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:366 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:83 +#: ../../enterprise/godmode/agentes/inventory_manager.php:221 +#: ../../enterprise/godmode/agentes/collections.php:326 +#: ../../enterprise/godmode/policies/policy_alerts.php:287 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:256 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:343 +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 +#: ../../enterprise/godmode/setup/setup_skins.php:122 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2234 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2393 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3355 +#: ../../enterprise/operation/agentes/transactional_map.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:150 +#: ../../enterprise/operation/services/services.list.php:439 +#: ../../extensions/agents_alerts.php:207 +#: ../../extensions/agents_alerts.php:225 +#: ../../godmode/groups/group_list.php:691 +#: ../../godmode/agentes/modificar_agente.php:497 +#: ../../godmode/agentes/planned_downtime.editor.php:1042 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:221 +#: ../../godmode/alerts/alert_list.list.php:114 +#: ../../godmode/alerts/alert_list.list.php:459 +#: ../../godmode/alerts/alert_commands.php:416 +#: ../../godmode/alerts/alert_view.php:347 +#: ../../godmode/alerts/alert_list.builder.php:95 +#: ../../godmode/events/event_responses.list.php:53 +#: ../../godmode/tag/tag.php:230 ../../godmode/category/category.php:112 +#: ../../include/functions_reporting_html.php:2402 +#: ../../include/functions_cron.php:460 +#: ../../include/functions_treeview.php:417 +#: ../../include/functions_filemanager.php:622 +msgid "Actions" +msgstr "Actions" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:452 +msgid "Creating modules in target node" +msgstr "Creating modules in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:456 +msgid "Disabling agent in source node and enabling in target one" +msgstr "Disabling agent in source node and enabling in target one" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:460 +msgid "Transferring data" +msgstr "Transferring data" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 +msgid "Creating agent in target node" +msgstr "Creating agent in target node" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:471 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1578 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1583 +#: ../../enterprise/include/class/DatabaseHA.class.php:207 +#: ../../enterprise/include/class/AgentRepository.class.php:832 +#: ../../enterprise/include/class/AgentRepository.class.php:837 +#: ../../enterprise/include/class/Omnishell.class.php:1029 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/transactional_map.php:318 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:450 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 +#: ../../include/ajax/snmp_browser.ajax.php:219 +#: ../../include/class/ConfigPEN.class.php:738 +#: ../../include/class/ConfigPEN.class.php:743 +#: ../../include/class/HelpFeedBack.class.php:353 +#: ../../include/class/Diagnostics.class.php:2077 +#: ../../include/class/CredentialStore.class.php:1065 +#: ../../include/class/CredentialStore.class.php:1070 +#: ../../include/class/ModuleTemplates.class.php:1319 +#: ../../include/class/ModuleTemplates.class.php:1324 +#: ../../include/class/AgentWizard.class.php:687 +#: ../../include/class/AgentWizard.class.php:692 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:597 +#: ../../operation/visual_console/view.php:602 +msgid "Failed" +msgstr "Failed" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:481 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:414 +#: ../../enterprise/include/class/Omnishell.class.php:362 +msgid "Finished" +msgstr "Finished" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:476 +msgid "Completed" +msgstr "Completed" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:481 +msgid "Queued" +msgstr "Queued" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:486 +#: ../../enterprise/extensions/backup/main.php:170 +#: ../../enterprise/operation/agentes/transactional_map.php:241 +#: ../../godmode/agentes/planned_downtime.list.php:404 +#: ../../godmode/agentes/planned_downtime.list.php:470 +msgid "Running" +msgstr "Running" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 +msgid "checking migration requirements" +msgstr "checking migration requirements" + +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:138 +msgid "Server deleted successfully" +msgstr "Server deleted successfully" + +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:140 +msgid "There was a problem deleting the server" +msgstr "Error deleting the server" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:126 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:128 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:141 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:143 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:171 +#: ../../enterprise/extensions/translate_string.php:302 +#: ../../godmode/users/configure_user.php:712 +#: ../../operation/users/user_edit.php:306 +msgid "Language" +msgstr "Language" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:183 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:244 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:341 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:508 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:579 +#: ../../enterprise/meta/agentsearch.php:89 +#: ../../enterprise/meta/general/main_header.php:687 +#: ../../enterprise/meta/general/main_header.php:689 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:514 +#: ../../enterprise/godmode/modules/local_components.php:539 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:307 +#: ../../enterprise/godmode/policies/policy_collections.php:234 +#: ../../enterprise/godmode/policies/policy_agents.php:695 +#: ../../enterprise/godmode/policies/policy_agents.php:700 +#: ../../enterprise/godmode/alerts/alert_events_list.php:423 +#: ../../enterprise/godmode/alerts/alert_events_list.php:434 +#: ../../enterprise/operation/agentes/tag_view.php:198 +#: ../../enterprise/operation/agentes/agent_inventory.php:109 +#: ../../enterprise/operation/agentes/agent_inventory.php:114 +#: ../../enterprise/operation/log/log_viewer.php:382 +#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../enterprise/operation/inventory/inventory.php:196 +#: ../../enterprise/operation/inventory/inventory.php:237 +#: ../../enterprise/operation/services/services.treeview_services.php:118 +#: ../../enterprise/operation/services/services.list.php:184 +#: ../../enterprise/operation/services/services.list.php:262 +#: ../../enterprise/operation/services/services.table_services.php:163 +#: ../../enterprise/operation/services/services.table_services.php:241 +#: ../../extensions/module_groups.php:270 +#: ../../godmode/modules/manage_network_components.php:599 +#: ../../godmode/groups/group_list.php:631 +#: ../../godmode/groups/group_list.php:634 +#: ../../godmode/users/user_list.php:270 ../../godmode/users/user_list.php:280 +#: ../../godmode/agentes/modificar_agente.php:208 +#: ../../godmode/agentes/modificar_agente.php:214 +#: ../../godmode/agentes/planned_downtime.list.php:144 +#: ../../godmode/agentes/planned_downtime.list.php:183 +#: ../../godmode/agentes/module_manager.php:44 #: ../../godmode/admin_access_logs.php:69 +#: ../../godmode/alerts/alert_actions.php:188 +#: ../../godmode/alerts/alert_actions.php:201 +#: ../../godmode/alerts/alert_templates.php:297 +#: ../../godmode/alerts/alert_templates.php:308 +#: ../../godmode/reporting/map_builder.php:302 +#: ../../godmode/reporting/map_builder.php:323 +#: ../../godmode/reporting/graphs.php:178 +#: ../../godmode/reporting/visual_console_favorite.php:108 +#: ../../godmode/reporting/visual_console_favorite.php:138 +#: ../../godmode/reporting/reporting_builder.item_editor.php:954 +#: ../../godmode/reporting/reporting_builder.php:681 +#: ../../godmode/module_library/module_library_view.php:84 +#: ../../godmode/module_library/module_library_view.php:94 +#: ../../include/functions_snmp.php:358 +#: ../../include/functions_snmp_browser.php:766 +#: ../../include/functions_snmp_browser.php:1177 +#: ../../operation/search_results.php:191 +#: ../../operation/agentes/estado_agente.php:231 +#: ../../operation/agentes/estado_agente.php:255 +#: ../../operation/agentes/status_monitor.php:444 +#: ../../operation/agentes/alerts_status.functions.php:178 +#: ../../operation/agentes/alerts_status.functions.php:187 +#: ../../operation/incidents/incident.php:368 +#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "Search" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:184 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:303 +#: ../../enterprise/godmode/policies/policies.php:352 +#: ../../enterprise/godmode/policies/policy_collections.php:228 #: ../../godmode/admin_access_logs.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:564 -#: ../../include/functions_visual_map_editor.php:916 -#: ../../include/functions_reporting_html.php:1910 -#: ../../include/functions_reporting_html.php:2084 -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -#: ../../enterprise/include/functions_reporting_pdf.php:2398 -msgid "IP" -msgstr "IP" +msgid "Free text for search (*)" +msgstr "Free text for search (*)" -#: ../../extensions/api_checker.php:104 -msgid "Pandora Console URL" -msgstr "Pandora FMS Console URL" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:203 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "Original string" -#: ../../extensions/api_checker.php:109 -msgid "API Pass" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:204 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "Translation in selected language" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:205 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "Customize translation" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:598 +#: ../../enterprise/godmode/setup/setup_acl.php:338 +#: ../../enterprise/godmode/setup/setup_acl.php:632 +#: ../../enterprise/include/functions_cron.php:546 +#: ../../enterprise/include/functions_backup.php:523 +#: ../../enterprise/include/functions_backup.php:524 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:747 +#: ../../include/functions_html.php:1208 ../../include/functions_html.php:1209 +#: ../../include/functions_html.php:1313 ../../include/functions_html.php:1314 +#: ../../include/functions_html.php:1474 ../../include/functions_html.php:1475 +#: ../../include/class/CredentialStore.class.php:869 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Custom" +msgstr "Custom" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3082 +#: ../../include/class/NetworkMap.class.php:3083 +msgid "Relations" +msgstr "Relations" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:615 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:363 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:532 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:670 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2268 +#: ../../enterprise/include/functions_reporting_csv.php:959 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/operation/services/services.service.php:171 +#: ../../enterprise/operation/services/services.list.php:432 +#: ../../godmode/agentes/module_manager_editor_common.php:1130 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:102 +#: ../../godmode/massive/massive_edit_modules.php:812 +#: ../../godmode/alerts/configure_alert_template.php:730 +#: ../../godmode/setup/setup_visuals.php:1207 +#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1288 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2078 +#: ../../godmode/reporting/visual_console_builder.wizard.php:339 +#: ../../include/functions_visual_map_editor.php:625 +#: ../../include/functions_reporting_html.php:856 +#: ../../include/functions_reporting_html.php:1785 +#: ../../include/functions_reporting_html.php:3665 +#: ../../include/functions_reporting_html.php:4183 +#: ../../include/ajax/events.php:1690 ../../include/functions_graph.php:5285 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:499 +#: ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:526 +msgid "Value" +msgstr "Value" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:550 +#: ../../enterprise/extensions/ipam/ipam_list.php:145 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:375 +#: ../../enterprise/godmode/policies/policy_alerts.php:510 +#: ../../enterprise/godmode/policies/policy_modules.php:1448 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../enterprise/godmode/alerts/alert_events.php:630 +#: ../../enterprise/godmode/alerts/alert_events.php:649 +#: ../../enterprise/godmode/alerts/alert_events_list.php:503 +#: ../../enterprise/godmode/reporting/graph_template_list.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3367 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3390 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:389 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2517 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 +#: ../../enterprise/include/functions_services.php:2494 +#: ../../enterprise/operation/agentes/policy_view.php:209 +#: ../../extensions/agents_alerts.php:520 +#: ../../godmode/modules/manage_nc_groups.php:232 +#: ../../godmode/modules/manage_network_components.php:672 +#: ../../godmode/modules/manage_network_templates.php:236 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/planned_downtime.editor.php:1126 +#: ../../godmode/agentes/module_manager.php:654 +#: ../../godmode/netflow/nf_item_list.php:180 +#: ../../godmode/netflow/nf_edit.php:148 +#: ../../godmode/snmpconsole/snmp_alert.php:1287 +#: ../../godmode/snmpconsole/snmp_alert.php:1364 +#: ../../godmode/snmpconsole/snmp_filters.php:260 +#: ../../godmode/massive/massive_operations.php:340 +#: ../../godmode/massive/massive_standby_alerts.php:211 +#: ../../godmode/massive/massive_delete_action_alerts.php:224 +#: ../../godmode/massive/massive_enable_disable_alerts.php:199 +#: ../../godmode/massive/massive_add_action_alerts.php:210 +#: ../../godmode/admin_access_logs.php:82 +#: ../../godmode/admin_access_logs.php:197 +#: ../../godmode/alerts/alert_list.list.php:714 +#: ../../godmode/alerts/alert_view.php:415 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2897 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3299 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3320 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:126 +#: ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:2403 +#: ../../include/functions_reporting_html.php:4689 +#: ../../include/functions.php:2889 ../../include/ajax/alert_list.ajax.php:280 +#: ../../include/ajax/alert_list.ajax.php:305 +#: ../../include/ajax/alert_list.ajax.php:472 +#: ../../include/functions_profile.php:216 +#: ../../include/class/ModuleTemplates.class.php:817 +#: ../../include/functions_events.php:6130 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.php:524 +#: ../../operation/agentes/alerts_status.php:559 +#: ../../operation/agentes/alerts_status.php:594 +#: ../../operation/agentes/alerts_status.php:626 +#: ../../operation/agentes/alerts_status.functions.php:110 +#: ../../operation/snmpconsole/snmp_view.php:836 +#: ../../operation/snmpconsole/snmp_view.php:1185 +#: ../../operation/search_alerts.php:36 +#: ../../operation/events/events.build_table.php:362 +#: ../../general/logon_ok.php:246 +msgid "Action" +msgstr "Action" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:70 +msgid "Passwords" +msgstr "Passwords" + +#: ../../enterprise/meta/advanced/metasetup.password.php:76 +#: ../../enterprise/meta/include/functions_meta.php:567 +#: ../../enterprise/godmode/setup/setup.php:480 +#: ../../include/functions_config.php:473 +msgid "Enable password policy" +msgstr "Enable password policy" + +#: ../../enterprise/meta/advanced/metasetup.password.php:77 +#: ../../enterprise/meta/advanced/metasetup.password.php:119 +#: ../../enterprise/meta/advanced/metasetup.password.php:124 +#: ../../enterprise/meta/advanced/metasetup.password.php:130 +#: ../../enterprise/meta/advanced/metasetup.password.php:136 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/advanced/metasetup.setup.php:146 +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:217 +#: ../../enterprise/meta/advanced/metasetup.setup.php:275 +#: ../../enterprise/meta/advanced/metasetup.setup.php:286 +#: ../../enterprise/meta/advanced/metasetup.performance.php:80 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:439 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:508 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:848 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:876 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:330 +#: ../../enterprise/godmode/setup/setup_auth.php:372 +#: ../../enterprise/godmode/setup/setup_auth.php:1102 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:176 +#: ../../enterprise/godmode/reporting/visual_console_template.php:214 +#: ../../enterprise/include/functions_cron.php:718 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2141 +#: ../../godmode/update_manager/update_manager.setup.php:261 +#: ../../godmode/users/configure_user.php:882 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:687 +#: ../../godmode/massive/massive_edit_agents.php:696 +#: ../../godmode/massive/massive_edit_modules.php:588 +#: ../../godmode/massive/massive_edit_modules.php:657 +#: ../../godmode/massive/massive_edit_modules.php:697 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1009 +#: ../../godmode/massive/massive_edit_modules.php:1037 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/reporting/reporting_builder.main.php:172 +#: ../../godmode/reporting/reporting_builder.php:965 +#: ../../godmode/reporting/visual_console_builder.wizard.php:400 +#: ../../godmode/reporting/visual_console_builder.wizard.php:487 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_profile.php:255 ../../include/functions_snmp.php:390 +#: ../../operation/users/user_edit.php:302 +#: ../../operation/netflow/nf_live_view.php:452 +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Yes" +msgstr "Yes" + +#: ../../enterprise/meta/advanced/metasetup.password.php:78 +#: ../../enterprise/meta/advanced/metasetup.password.php:120 +#: ../../enterprise/meta/advanced/metasetup.password.php:125 +#: ../../enterprise/meta/advanced/metasetup.password.php:131 +#: ../../enterprise/meta/advanced/metasetup.password.php:137 +#: ../../enterprise/meta/advanced/metasetup.password.php:141 +#: ../../enterprise/meta/advanced/metasetup.password.php:145 +#: ../../enterprise/meta/advanced/metasetup.setup.php:143 +#: ../../enterprise/meta/advanced/metasetup.setup.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:207 +#: ../../enterprise/meta/advanced/metasetup.setup.php:214 +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +#: ../../enterprise/meta/advanced/metasetup.setup.php:276 +#: ../../enterprise/meta/advanced/metasetup.setup.php:296 +#: ../../enterprise/meta/advanced/metasetup.performance.php:81 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:509 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:549 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:877 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:333 +#: ../../enterprise/godmode/setup/setup_auth.php:375 +#: ../../enterprise/godmode/setup/setup_auth.php:1105 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:427 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:178 +#: ../../enterprise/godmode/reporting/visual_console_template.php:214 +#: ../../enterprise/include/functions_cron.php:717 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2141 +#: ../../godmode/update_manager/update_manager.setup.php:262 +#: ../../godmode/users/configure_user.php:883 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:538 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:697 +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/massive/massive_edit_modules.php:658 +#: ../../godmode/massive/massive_edit_modules.php:698 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1010 +#: ../../godmode/massive/massive_edit_modules.php:1038 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/alerts/alert_view.php:384 ../../godmode/setup/news.php:277 +#: ../../godmode/reporting/reporting_builder.main.php:179 +#: ../../godmode/reporting/reporting_builder.php:967 +#: ../../godmode/reporting/visual_console_builder.wizard.php:410 +#: ../../godmode/reporting/visual_console_builder.wizard.php:488 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 +#: ../../include/functions_profile.php:255 ../../include/functions_snmp.php:382 +#: ../../include/functions_events.php:4550 +#: ../../include/functions_events.php:4555 +#: ../../operation/users/user_edit.php:303 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/snmpconsole/snmp_view.php:629 +msgid "No" +msgstr "No" + +#: ../../enterprise/meta/advanced/metasetup.password.php:98 +#: ../../enterprise/meta/include/functions_meta.php:576 +#: ../../enterprise/godmode/setup/setup.php:489 +#: ../../include/functions_config.php:477 +msgid "Min. size password" +msgstr "Min. password size" + +#: ../../enterprise/meta/advanced/metasetup.password.php:99 +#: ../../enterprise/godmode/setup/setup.php:497 +msgid " Caracters" +msgstr " Characters" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/meta/include/functions_meta.php:603 +#: ../../enterprise/godmode/setup/setup.php:518 +#: ../../include/functions_config.php:481 +msgid "Password expiration" +msgstr "Password expiration" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +msgid "Set 0 if never expire." +msgstr "Set it to '0' to prevent it from ever expiring" + +#: ../../enterprise/meta/advanced/metasetup.password.php:103 +#: ../../enterprise/godmode/setup/setup.php:526 +msgid " Days" +msgstr " Days" + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/meta/include/functions_meta.php:621 +#: ../../enterprise/godmode/setup/setup.php:538 +#: ../../include/functions_config.php:489 +msgid "User blocked if login fails" +msgstr "Block user if login fails" + +#: ../../enterprise/meta/advanced/metasetup.password.php:107 +#: ../../enterprise/godmode/setup/setup.php:546 +msgid " Minutes" +msgstr " Minutes" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/meta/include/functions_meta.php:630 +#: ../../enterprise/godmode/setup/setup.php:549 +#: ../../include/functions_config.php:493 +msgid "Number of failed login attempts" +msgstr "Number of failed login attempts" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +msgid "Two attempts minimum" +msgstr "Two attempts minimum" + +#: ../../enterprise/meta/advanced/metasetup.password.php:111 +#: ../../enterprise/godmode/setup/setup.php:557 +msgid " Attempts" +msgstr " Attempts" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/meta/include/functions_meta.php:650 +#: ../../enterprise/godmode/setup/setup.php:578 +#: ../../include/functions_config.php:513 +msgid "Compare previous password" +msgstr "Compare to previous password" + +#: ../../enterprise/meta/advanced/metasetup.password.php:118 +#: ../../enterprise/meta/include/functions_meta.php:639 +#: ../../enterprise/godmode/setup/setup.php:569 +#: ../../include/functions_config.php:509 +msgid "Enable password history" +msgstr "Enable password history" + +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/include/functions_meta.php:660 +#: ../../enterprise/godmode/setup/setup.php:560 +#: ../../include/functions_config.php:505 +msgid "Apply password policy to admin users" +msgstr "Apply password policy to admin users" + +#: ../../enterprise/meta/advanced/metasetup.password.php:129 +#: ../../enterprise/meta/include/functions_meta.php:612 +#: ../../enterprise/godmode/setup/setup.php:529 +#: ../../include/functions_config.php:485 +msgid "Force change password on first login" +msgstr "Force password change on first login" + +#: ../../enterprise/meta/advanced/metasetup.password.php:135 +#: ../../enterprise/meta/include/functions_meta.php:585 +#: ../../enterprise/godmode/setup/setup.php:500 +#: ../../include/functions_config.php:497 +msgid "Password must have numbers" +msgstr "The password must include numbers." + +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/include/functions_meta.php:594 +#: ../../enterprise/godmode/setup/setup.php:509 +#: ../../include/functions_config.php:501 +msgid "Password must have symbols" +msgstr "The password must include symbols." + +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/include/functions_meta.php:670 +#: ../../enterprise/godmode/setup/setup.php:590 +#: ../../include/functions_config.php:517 +msgid "Activate reset password" +msgstr "Activate reset password" + +#: ../../enterprise/meta/advanced/agents_setup.php:34 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/advanced/synchronizing.php:32 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:38 +#: ../../enterprise/meta/monitoring/group_view.php:34 +#: ../../enterprise/meta/monitoring/tactical.php:36 +#: ../../enterprise/meta/index.php:784 ../../enterprise/meta/agentsearch.php:29 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../godmode/netflow/nf_item_list.php:51 +#: ../../godmode/netflow/nf_edit.php:53 +#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../operation/agentes/ver_agente.php:1162 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Main" +msgstr "Main" + +#: ../../enterprise/meta/advanced/agents_setup.php:38 +msgid "Propagation" +msgstr "Propagation" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "Cannot create an unnamed rule" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "Error creating provisioning rule" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "Error updating provisioning rule" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "Error deleting provisioning rule" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "There was an error rule when moving the provisioning." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:170 +msgid "Create rule" +msgstr "Create rule" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "Edit rule" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 +#: ../../godmode/update_manager/update_manager.setup.php:127 +#: ../../godmode/update_manager/update_manager.setup.php:178 +msgid "Succesful Update the url config vars." +msgstr "URL configuration variables successfully updated" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:89 +#: ../../godmode/update_manager/update_manager.setup.php:128 +#: ../../godmode/update_manager/update_manager.setup.php:179 +msgid "Unsuccesful Update the url config vars." +msgstr "Error updating the URL configuration variables" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:96 +#: ../../godmode/setup/setup_general.php:359 +msgid "Mail configuration" +msgstr "Mail configuration" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:101 +#: ../../include/functions_config.php:335 +msgid "From dir" +msgstr "From dir" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:364 +#: ../../include/functions_config.php:339 +msgid "From name" +msgstr "From name" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:107 +#: ../../include/functions_config.php:331 +msgid "Server SMTP" +msgstr "Server SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:110 +#: ../../include/functions_config.php:343 +msgid "Port SMTP" +msgstr "Port SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:113 +#: ../../godmode/setup/setup_general.php:376 +#: ../../include/functions_config.php:351 +msgid "Email user" +msgstr "E-mail user" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:116 +#: ../../godmode/setup/setup_general.php:379 +#: ../../include/functions_config.php:355 +msgid "Email password" +msgstr "E-mail password" + +#: ../../enterprise/meta/advanced/metasetup.php:49 +msgid "Consoles Setup" +msgstr "Consoles Setup" + +#: ../../enterprise/meta/advanced/metasetup.php:57 +#: ../../enterprise/meta/advanced/metasetup.php:179 +msgid "General setup" +msgstr "General setup" + +#: ../../enterprise/meta/advanced/metasetup.php:65 +#: ../../enterprise/meta/advanced/metasetup.php:182 +msgid "Passwords setup" +msgstr "Passwords setup" + +#: ../../enterprise/meta/advanced/metasetup.php:74 +#: ../../enterprise/meta/advanced/metasetup.php:186 ../../godmode/menu.php:314 +#: ../../godmode/setup/setup.php:98 ../../godmode/setup/setup.php:169 +msgid "Authentication" +msgstr "Authentication" + +#: ../../enterprise/meta/advanced/metasetup.php:84 +#: ../../enterprise/meta/advanced/metasetup.php:190 +msgid "Visual setup" +msgstr "Visual setup" + +#: ../../enterprise/meta/advanced/metasetup.php:92 +#: ../../enterprise/meta/advanced/metasetup.php:194 +msgid "Performance setup" +msgstr "Performance setup" + +#: ../../enterprise/meta/advanced/metasetup.php:100 +#: ../../enterprise/meta/advanced/metasetup.php:198 ../../godmode/menu.php:378 +#: ../../godmode/setup/file_manager.php:28 +msgid "File manager" +msgstr "File manager" + +#: ../../enterprise/meta/advanced/metasetup.php:108 +#: ../../enterprise/meta/advanced/metasetup.php:202 +msgid "Strings translation" +msgstr "Strings translation" + +#: ../../enterprise/meta/advanced/metasetup.php:116 +#: ../../enterprise/meta/advanced/metasetup.php:206 +msgid "Mail" +msgstr "Mail" + +#: ../../enterprise/meta/advanced/metasetup.php:128 +msgid "Relations rules" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:141 +msgid "Options Update Manager" +msgstr "Update Manager Options" + +#: ../../enterprise/meta/advanced/metasetup.php:149 +#: ../../enterprise/meta/advanced/metasetup.php:218 +msgid "Offline Update Manager" +msgstr "Update Manager Offline" + +#: ../../enterprise/meta/advanced/metasetup.php:157 +#: ../../enterprise/meta/advanced/metasetup.php:222 +msgid "Online Update Manager" +msgstr "Update Manager Online" + +#: ../../enterprise/meta/advanced/metasetup.php:174 +msgid "Consoles setup" +msgstr "Consoles setup" + +#: ../../enterprise/meta/advanced/metasetup.php:210 +msgid "Relations Rules" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:214 +msgid "Online Update Options" +msgstr "Online Update Options" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:41 +#: ../../enterprise/meta/advanced/metasetup.auth.php:24 +msgid "" +"Be aware that group synchronization can change the group configuration of " +"the node" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:77 +#: ../../enterprise/meta/advanced/synchronizing.group.php:78 +#: ../../enterprise/meta/advanced/synchronizing.group.php:97 +#: ../../enterprise/meta/advanced/synchronizing.group.php:98 +msgid "Open for more details" +msgstr "Open for more details" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:86 +#, php-format +msgid "Error creating %s groups" +msgstr "Error creating %s groups" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:106 +#, php-format +msgid "Error updating %s groups" +msgstr "Error updating %s groups" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:117 +#: ../../enterprise/meta/advanced/synchronizing.group.php:118 +msgid "Open for more details in creation" +msgstr "Open for more details in creation" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:128 +#: ../../enterprise/meta/advanced/synchronizing.group.php:129 +msgid "Open for more details in update" +msgstr "Open for more details about the update" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:137 +#, php-format +msgid "Error creating/updating %s/%s groups" +msgstr "Error in creating/updating %s/%s groups" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:149 +#, php-format +msgid "Created %s / Updated %s groups (" +msgstr "Created %s / Updated %s groups (" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:158 +msgid "None update or create group" +msgstr "No updated or created group" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:170 +msgid "Synchronizing Groups" +msgstr "Synchronizing groups" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:188 +#: ../../enterprise/godmode/policies/policy_agents.php:554 +#: ../../enterprise/godmode/setup/setup_auth.php:225 +#: ../../enterprise/godmode/setup/setup_auth.php:492 +#: ../../enterprise/godmode/setup/setup_auth.php:1224 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:298 +#: ../../godmode/reporting/visual_console_builder.wizard.php:382 +#: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 +#: ../../include/functions_networkmap.php:1283 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:216 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:270 +#: ../../include/lib/Dashboard/Widgets/events_list.php:357 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:282 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:326 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:282 +#: ../../operation/tree.php:65 +#: ../../operation/agentes/pandora_networkmap.php:698 +msgid "Groups" +msgstr "Groups" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:311 +#, php-format +msgid "Error updating user %s" +msgstr "Error updating user %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:315 +#, php-format +msgid "Updated user %s" +msgstr "Updated user %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:327 +#, php-format +msgid "Error creating user %s" +msgstr "Error creating user %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:331 +#, php-format +msgid "Created user %s" +msgstr "Created user %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:533 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements " +"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d)" +msgstr "" +"There are groups that do not exist in node. The following elements " +"groups/profiles/user profiles were created/updated successfully (%d/%d/%d)." + +#: ../../enterprise/meta/advanced/synchronizing.user.php:542 +#, 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)" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:554 +#, 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 " +"successfully (%d/%d/%d)." + +#: ../../enterprise/meta/advanced/synchronizing.user.php:576 +msgid "Synchronizing Users" +msgstr "Synchronizing users" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:586 +#: ../../godmode/massive/massive_delete_profiles.php:110 +#: ../../godmode/massive/massive_add_profiles.php:103 +#: ../../include/functions_reporting.php:9290 +#: ../../operation/search_results.php:92 +msgid "Users" +msgstr "Users" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:598 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/include/functions_ui.php:92 +msgid "Target" +msgstr "Target" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:608 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:336 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:574 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 +#: ../../enterprise/meta/general/main_header.php:556 +#: ../../enterprise/godmode/policies/policy_alerts.php:582 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:387 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:198 +#: ../../enterprise/godmode/alerts/alert_events.php:636 +#: ../../enterprise/godmode/services/services.service.php:514 +#: ../../enterprise/godmode/services/services.service.php:525 +#: ../../enterprise/godmode/services/services.service.php:544 +#: ../../extensions/agents_alerts.php:282 ../../extensions/insert_data.php:183 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:146 +#: ../../godmode/massive/massive_copy_modules.php:122 +#: ../../godmode/massive/massive_delete_modules.php:310 +#: ../../godmode/massive/massive_delete_modules.php:445 +#: ../../godmode/massive/massive_add_alerts.php:255 +#: ../../godmode/massive/massive_delete_alerts.php:247 +#: ../../godmode/massive/massive_edit_modules.php:291 +#: ../../godmode/massive/massive_edit_modules.php:404 +#: ../../godmode/alerts/alert_list.builder.php:81 +#: ../../godmode/alerts/alert_list.builder.php:148 +#: ../../godmode/setup/setup_integria.php:292 +#: ../../godmode/setup/setup_integria.php:310 +#: ../../godmode/setup/setup_integria.php:339 +#: ../../godmode/setup/setup_integria.php:357 +#: ../../godmode/setup/setup_integria.php:415 +#: ../../godmode/setup/setup_integria.php:433 +#: ../../godmode/setup/setup_integria.php:462 +#: ../../godmode/setup/setup_integria.php:480 +#: ../../operation/incidents/configure_integriaims_incident.php:216 +#: ../../operation/incidents/configure_integriaims_incident.php:232 +#: ../../operation/incidents/configure_integriaims_incident.php:278 +#: ../../general/header.php:261 +msgid "Select" +msgstr "Select" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 +msgid "Profile mode" +msgstr "Profile mode" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 +msgid "Profile synchronization mode." +msgstr "Profile synchronization mode" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "New profile" +msgstr "New profile" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +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." + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "Copy profile" +msgstr "Copy profile" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +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." + +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 +msgid "Create groups if not exist" +msgstr "Create groups if they do not exist" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 +msgid "Create groups assigned to user profile if not exist in node" +msgstr "Create groups assigned to user profile if they do not exist in node" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:224 +#: ../../enterprise/godmode/setup/setup_auth.php:491 +#: ../../enterprise/godmode/setup/setup_auth.php:1223 +#: ../../godmode/users/profile_list.php:276 ../../godmode/menu.php:133 +msgid "Profiles" +msgstr "Profiles" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:178 +#: ../../enterprise/godmode/policies/policy.php:220 +#: ../../enterprise/include/functions_enterprise_api.php:3341 +msgid "Duplicated or incompatible operation in the queue" +msgstr "Duplicated or incompatible operation in the queue" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:170 +#: ../../enterprise/godmode/policies/policy.php:216 +msgid "Operation successfully added to the queue" +msgstr "Operation successfully added to the queue" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +msgid "Only database" +msgstr "Only database" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:174 +#: ../../enterprise/godmode/policies/policy.php:217 +#: ../../enterprise/include/functions_enterprise_api.php:3338 +msgid "Operation cannot be added to the queue" +msgstr "Operation cannot be added to the queue" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "Apply policies" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:218 +#: ../../include/functions_networkmap.php:1287 +#: ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/tree.php:93 ../../operation/search_results.php:170 +#: ../../operation/search_main.php:73 +msgid "Policies" +msgstr "Policies" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../godmode/menu.php:264 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../mobile/include/functions_web.php:26 +msgid "Servers" +msgstr "Servers" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:213 +#: ../../enterprise/meta/advanced/policymanager.queue.php:307 +#: ../../enterprise/godmode/policies/policy_queue.php:507 +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/include/functions_update_manager.php:247 +#: ../../godmode/update_manager/update_manager.offline.php:106 +#: ../../include/functions_visual_map_editor.php:573 +#: ../../include/functions_update_manager.php:1401 +msgid "Apply" +msgstr "Apply" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 +msgid "Node synchronization process failed" +msgstr "Node synchronisation process failed" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 +msgid "" +"If you are trying to migrate this node to a new metaconsole, please use the " +"form available at Settings > Enterprise at node console." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:154 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:83 +msgid "Could not be update" +msgstr "Could not be updated" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:194 +msgid "Could not be create, duplicated register found." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:254 +#: ../../enterprise/meta/advanced/links.php:46 +#: ../../enterprise/meta/advanced/cron_main.php:156 +#: ../../enterprise/meta/advanced/cron_main.php:202 +#: ../../enterprise/meta/advanced/cron_main.php:290 +#: ../../enterprise/extensions/ipam/ipam_action.php:135 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:37 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:217 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:230 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:278 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:291 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:388 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:77 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:108 +#: ../../enterprise/operation/agentes/transactional_map.php:108 +#: ../../godmode/modules/manage_nc_groups.php:82 +#: ../../godmode/users/profile_list.php:222 +#: ../../godmode/users/configure_user.php:359 +#: ../../godmode/agentes/configurar_agente.php:780 +#: ../../godmode/agentes/planned_downtime.editor.php:517 +#: ../../godmode/snmpconsole/snmp_alert.php:260 +#: ../../godmode/snmpconsole/snmp_filters.php:143 +#: ../../godmode/alerts/alert_commands.php:351 +#: ../../godmode/alerts/configure_alert_template.php:488 +#: ../../godmode/alerts/alert_special_days.php:164 +#: ../../godmode/alerts/alert_list.php:177 ../../godmode/setup/news.php:62 +#: ../../godmode/setup/gis.php:44 ../../godmode/setup/links.php:41 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:834 +msgid "Successfully created" +msgstr "Successfully created" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:255 +#: ../../enterprise/extensions/ipam/ipam_action.php:129 +#: ../../enterprise/godmode/modules/local_components.php:108 +#: ../../enterprise/godmode/modules/local_components.php:273 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:385 +#: ../../enterprise/godmode/policies/policies.php:211 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:38 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:78 +#: ../../enterprise/operation/agentes/transactional_map.php:109 +#: ../../godmode/modules/manage_nc_groups.php:83 +#: ../../godmode/modules/manage_network_components.php:172 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/users/configure_user.php:360 +#: ../../godmode/agentes/configurar_agente.php:351 +#: ../../godmode/agentes/configurar_agente.php:775 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:421 +#: ../../godmode/agentes/planned_downtime.editor.php:510 +#: ../../godmode/alerts/alert_commands.php:338 +#: ../../godmode/alerts/configure_alert_template.php:150 +#: ../../godmode/alerts/configure_alert_template.php:479 +#: ../../godmode/alerts/alert_special_days.php:159 +#: ../../godmode/alerts/alert_list.php:164 ../../godmode/setup/news.php:63 +#: ../../godmode/setup/gis.php:46 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4578 +#: ../../include/functions_alerts.php:2825 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:829 +#: ../../operation/agentes/pandora_networkmap.php:126 +#: ../../operation/agentes/pandora_networkmap.php:367 +msgid "Could not be created" +msgstr "Could not be created" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:271 +msgid "Successfully delete" +msgstr "Successfully deleted" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:272 +msgid "Could not be delete" +msgstr "Could not be deleted" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:288 +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:491 +#: ../../enterprise/godmode/alerts/alert_events_list.php:252 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:144 +#: ../../godmode/users/user_list.php:240 +#: ../../godmode/agentes/configurar_agente.php:2177 +#: ../../godmode/agentes/modificar_agente.php:133 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:337 +#: ../../include/ajax/alert_list.ajax.php:344 +msgid "Successfully enabled" +msgstr "Successfully enabled" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:289 +#: ../../enterprise/godmode/policies/policy_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_modules.php:492 +#: ../../enterprise/godmode/alerts/alert_events_list.php:253 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:145 +#: ../../godmode/agentes/configurar_agente.php:2178 +#: ../../godmode/agentes/modificar_agente.php:134 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:338 +#: ../../include/ajax/alert_list.ajax.php:346 +msgid "Could not be enabled" +msgstr "Could not be enabled" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:305 +#: ../../enterprise/godmode/policies/policy_alerts.php:115 +#: ../../enterprise/godmode/policies/policy_modules.php:507 +#: ../../enterprise/godmode/alerts/alert_events_list.php:272 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:153 +#: ../../godmode/users/user_list.php:234 +#: ../../godmode/agentes/configurar_agente.php:2196 +#: ../../godmode/agentes/modificar_agente.php:156 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:358 +#: ../../include/ajax/alert_list.ajax.php:365 +msgid "Successfully disabled" +msgstr "Successfully disabled" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:306 +#: ../../enterprise/godmode/policies/policy_alerts.php:116 +#: ../../enterprise/godmode/policies/policy_modules.php:508 +#: ../../enterprise/godmode/alerts/alert_events_list.php:273 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:154 +#: ../../godmode/agentes/configurar_agente.php:2197 +#: ../../godmode/agentes/modificar_agente.php:157 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:359 +#: ../../include/ajax/alert_list.ajax.php:367 +msgid "Could not be disabled" +msgstr "Could not be disabled" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:373 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:622 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:523 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1549 +#: ../../enterprise/include/functions_reporting_csv.php:959 +#: ../../godmode/reporting/graph_builder.graph_editor.php:200 +#: ../../godmode/reporting/reporting_builder.item_editor.php:931 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:246 +#: ../../godmode/reporting/visual_console_builder.wizard.php:466 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../include/functions_visual_map_editor.php:194 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:1823 +#: ../../include/rest-api/models/VisualConsole/Item.php:2017 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 +#: ../../include/lib/Dashboard/Widgets/module_value.php:278 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 +#: ../../include/lib/Dashboard/Widgets/module_status.php:294 +#: ../../operation/visual_console/view.php:250 +msgid "Label" +msgstr "Label" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +msgid "Custom label to identify this setup." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:624 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:203 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +msgid "Console URL" +msgstr "Console URL" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "Auth token" +msgstr "Auth token" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:386 +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use " +"delegated authentification." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:398 +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 +#: ../../enterprise/meta/include/functions_meta.php:487 +#: ../../enterprise/meta/include/functions_meta.php:496 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:207 +#: ../../godmode/setup/setup_general.php:164 +#: ../../include/functions_config.php:205 +msgid "API password" msgstr "API password" -#: ../../extensions/api_checker.php:114 -#: ../../extensions/users_connected.php:77 ../../general/login_page.php:165 -#: ../../general/login_page.php:194 ../../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:2336 -#: ../../include/functions_config.php:372 -#: ../../include/functions_config.php:383 -#: ../../include/functions_events.php:37 -#: ../../include/functions_events.php:3646 -#: ../../include/functions_events.php:4027 -#: ../../include/functions_reporting_html.php:3708 -#: ../../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:246 -#: ../../enterprise/extensions/disabled/check_acls.php:42 -#: ../../enterprise/extensions/disabled/check_acls.php:120 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 -#: ../../enterprise/godmode/servers/manage_export_form.php:97 -#: ../../enterprise/godmode/setup/setup_auth.php:613 -#: ../../enterprise/godmode/setup/setup_auth.php:644 -#: ../../enterprise/meta/general/login_page.php:107 -#: ../../enterprise/meta/general/login_page.php:136 -#: ../../enterprise/meta/include/functions_events_meta.php:64 -#: ../../enterprise/meta/include/functions_meta.php:943 -#: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/meta/include/functions_meta.php:1049 -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 -msgid "User" -msgstr "User" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:408 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:230 +msgid "Console User" +msgstr "Console user" -#: ../../extensions/api_checker.php:119 ../../general/login_page.php:173 -#: ../../general/login_page.php:201 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:307 -#: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/massive/massive_edit_modules.php:554 -#: ../../godmode/modules/manage_network_components_form_wmi.php:50 -#: ../../godmode/setup/setup_ehorus.php:79 -#: ../../godmode/users/configure_user.php:517 -#: ../../include/functions_config.php:374 -#: ../../include/functions_config.php:385 -#: ../../mobile/include/user.class.php:252 -#: ../../enterprise/extensions/vmware/functions.php:416 -#: ../../enterprise/godmode/agentes/inventory_manager.php:191 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:306 -#: ../../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:619 -#: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/include/functions_setup.php:30 -#: ../../enterprise/include/functions_setup.php:59 -#: ../../enterprise/meta/general/login_page.php:115 -#: ../../enterprise/meta/general/login_page.php:144 -#: ../../enterprise/meta/include/functions_meta.php:953 -#: ../../enterprise/meta/include/functions_meta.php:1006 -#: ../../enterprise/meta/include/functions_meta.php:1059 -#: ../../enterprise/meta/include/functions_wizard_meta.php:406 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1315 -msgid "Password" -msgstr "Password" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:417 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:234 +msgid "Console Password" +msgstr "Console Password" -#: ../../extensions/api_checker.php:127 -msgid "Action (get or set)" -msgstr "Action (get or set)" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:427 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:625 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:212 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "DB Host" +msgstr "DB Host" -#: ../../extensions/api_checker.php:132 ../../extensions/net_tools.php:118 -#: ../../godmode/extensions.php:153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1919 -#: ../../include/functions_menu.php:595 -#: ../../include/functions_reporting_html.php:1490 -#: ../../include/functions_reporting_html.php:2659 -#: ../../enterprise/dashboard/widgets/top_n.php:128 -#: ../../enterprise/dashboard/widgets/top_n.php:337 -#: ../../enterprise/godmode/policies/policy_queue.php:362 -#: ../../enterprise/godmode/policies/policy_queue.php:396 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:174 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2291 -#: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting_pdf.php:884 -#: ../../enterprise/include/functions_reporting_pdf.php:1009 -#: ../../enterprise/meta/advanced/policymanager.queue.php:216 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/meta/include/functions_autoprovision.php:539 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:436 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:216 +msgid "DB Name" +msgstr "DB Name" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:445 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 +msgid "DB User" +msgstr "DB User" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:454 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:225 +msgid "DB Password" +msgstr "DB Password" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:463 +#: ../../enterprise/include/class/DatabaseHA.class.php:936 +msgid "DB port" +msgstr "DB port" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:559 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 +#: ../../enterprise/godmode/alerts/alert_events_list.php:688 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:169 +#: ../../extensions/quick_shell.php:477 +#: ../../godmode/agentes/module_manager_editor.php:719 +#: ../../godmode/agentes/agent_manager.php:800 +#: ../../godmode/agentes/agent_manager.php:939 +#: ../../godmode/massive/massive_edit_agents.php:728 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +#: ../../include/functions_visual_map_editor.php:805 +#: ../../operation/events/events_list.php:1016 +#: ../../operation/events/events.php:1254 +msgid "Advanced options" +msgstr "Advanced options" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:496 +msgid "Metaconsole DB Host" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:505 +msgid "Metaconsole DB Name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:514 +msgid "Metaconsole DB User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:523 +msgid "Metaconsole DB Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:532 +#: ../../enterprise/godmode/setup/setup.php:249 +msgid "Metaconsole DB port" +msgstr "Metaconsole DB port" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:616 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:267 +msgid "DB" +msgstr "DB" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:617 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:268 +msgid "API" +msgstr "API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:618 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:269 +msgid "Compatibility" +msgstr "Compatibility" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:619 +#: ../../enterprise/godmode/setup/setup.php:104 +#: ../../include/functions_config.php:390 +msgid "Events replication" +msgstr "Event replication" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:620 +#: ../../enterprise/include/functions_setup.php:163 +msgid "Agent cache" +msgstr "Agent cache" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:626 +#: ../../enterprise/extensions/disabled/check_acls.php:66 +#: ../../enterprise/extensions/disabled/check_acls.php:159 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 +#: ../../enterprise/godmode/servers/HA_cluster.php:138 +#: ../../godmode/users/user_list.php:332 ../../godmode/users/user_list.php:483 +#: ../../operation/search_users.php:51 +msgid "Admin" +msgstr "Admin" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:701 +msgid "The rules for this module may stop working. Are you sure?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 +msgid "There aren't server added to metaconsole" +msgstr "There are no added servers to the Metaconsole." + +#: ../../enterprise/meta/advanced/links.php:44 ../../godmode/setup/links.php:39 +msgid "There was a problem creating link" +msgstr "Error creating the link" + +#: ../../enterprise/meta/advanced/links.php:57 +msgid "The link was not updated, the data is identical" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:65 ../../godmode/setup/links.php:58 +msgid "There was a problem modifying link" +msgstr "Error modifying the link" + +#: ../../enterprise/meta/advanced/links.php:67 +#: ../../enterprise/extensions/ipam/ipam_action.php:193 +#: ../../enterprise/extensions/ipam/ipam_massive.php:47 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:104 +#: ../../enterprise/godmode/policies/policy_modules.php:1219 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:105 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:288 +#: ../../enterprise/godmode/alerts/alert_events.php:428 +#: ../../enterprise/godmode/alerts/alert_events_list.php:99 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:126 +#: ../../enterprise/operation/agentes/transactional_map.php:140 +#: ../../godmode/modules/manage_nc_groups.php:111 +#: ../../godmode/users/profile_list.php:205 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/configurar_agente.php:1115 +#: ../../godmode/agentes/planned_downtime.editor.php:519 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:383 +#: ../../godmode/snmpconsole/snmp_filters.php:89 +#: ../../godmode/massive/massive_edit_modules.php:166 +#: ../../godmode/alerts/configure_alert_command.php:112 +#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/configure_alert_template.php:506 +#: ../../godmode/alerts/alert_special_days.php:232 +#: ../../godmode/alerts/alert_list.php:93 +#: ../../godmode/alerts/alert_list.php:295 ../../godmode/setup/news.php:99 +#: ../../godmode/setup/gis.php:36 ../../godmode/setup/links.php:60 +#: ../../godmode/events/event_edit_filter.php:191 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:137 +#: ../../operation/incidents/incident.php:157 +msgid "Successfully updated" +msgstr "Successfully updated" + +#: ../../enterprise/meta/advanced/links.php:79 ../../godmode/setup/links.php:71 +msgid "There was a problem deleting link" +msgstr "Error deleting the link" + +#: ../../enterprise/meta/advanced/links.php:97 +msgid "Link Name error" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:124 +#: ../../enterprise/meta/advanced/links.php:151 +#: ../../godmode/setup/links.php:113 ../../godmode/setup/links.php:142 +msgid "Link name" +msgstr "Link name" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/godmode/policies/policy_linking.php:170 +#: ../../godmode/setup/links.php:116 +msgid "Link" +msgstr "Link" + +#: ../../enterprise/meta/advanced/links.php:133 +#: ../../enterprise/meta/advanced/collections.data.php:44 +#: ../../enterprise/meta/advanced/collections.data.php:73 +#: ../../enterprise/meta/advanced/collections.data.php:95 +#: ../../enterprise/meta/advanced/collections.data.php:112 +#: ../../enterprise/meta/advanced/collections.data.php:134 +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.editor.php:110 +#: ../../enterprise/meta/advanced/cron_main.php:462 +#: ../../enterprise/meta/advanced/collections.php:391 +#: ../../enterprise/meta/advanced/collections.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:277 +#: ../../enterprise/meta/include/functions_autoprovision.php:562 +#: ../../enterprise/meta/include/functions_autoprovision.php:761 +#: ../../enterprise/extensions/backup/main.php:284 +#: ../../enterprise/extensions/ipam/ipam_list.php:210 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/extensions/ipam/ipam_editor.php:229 +#: ../../enterprise/godmode/modules/configure_local_component.php:654 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:454 +#: ../../enterprise/godmode/modules/local_components.php:634 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:652 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:701 +#: ../../enterprise/godmode/agentes/collections.agents.php:40 +#: ../../enterprise/godmode/agentes/collections.data.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:139 +#: ../../enterprise/godmode/agentes/collections.data.php:163 +#: ../../enterprise/godmode/agentes/collections.data.php:180 +#: ../../enterprise/godmode/agentes/collections.data.php:204 +#: ../../enterprise/godmode/agentes/collections.data.php:251 +#: ../../enterprise/godmode/agentes/collections.editor.php:146 +#: ../../enterprise/godmode/agentes/collections.php:391 +#: ../../enterprise/godmode/policies/configure_policy.php:115 +#: ../../enterprise/godmode/policies/policy_modules.php:423 +#: ../../enterprise/godmode/policies/policies.php:654 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:267 +#: ../../enterprise/godmode/alerts/alert_events_list.php:753 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:517 +#: ../../enterprise/godmode/services/services.service.php:555 +#: ../../enterprise/godmode/services/services.elements.php:768 +#: ../../enterprise/godmode/setup/edit_skin.php:296 +#: ../../enterprise/godmode/reporting/aws_view.php:167 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:237 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:575 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3027 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:348 +#: ../../godmode/modules/manage_nc_groups_form.php:93 +#: ../../godmode/modules/manage_network_templates_form.php:168 +#: ../../godmode/modules/manage_nc_groups.php:283 +#: ../../godmode/modules/manage_network_components_form.php:311 +#: ../../godmode/modules/manage_network_components.php:792 +#: ../../godmode/modules/manage_network_templates.php:291 +#: ../../godmode/groups/configure_group.php:237 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/users/profile_list.php:381 +#: ../../godmode/users/configure_user.php:1084 +#: ../../godmode/agentes/module_manager_editor.php:761 +#: ../../godmode/agentes/planned_downtime.list.php:373 +#: ../../godmode/agentes/planned_downtime.list.php:536 +#: ../../godmode/agentes/agent_manager.php:990 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/agentes/module_manager.php:164 +#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/snmpconsole/snmp_alert.php:1100 +#: ../../godmode/snmpconsole/snmp_alert.php:1456 +#: ../../godmode/snmpconsole/snmp_filters.php:232 +#: ../../godmode/snmpconsole/snmp_filters.php:305 +#: ../../godmode/massive/massive_add_profiles.php:171 +#: ../../godmode/alerts/configure_alert_command.php:240 +#: ../../godmode/alerts/alert_actions.php:323 +#: ../../godmode/alerts/alert_list.list.php:886 +#: ../../godmode/alerts/alert_commands.php:480 +#: ../../godmode/alerts/configure_alert_special_days.php:107 +#: ../../godmode/alerts/alert_templates.php:427 +#: ../../godmode/alerts/configure_alert_action.php:290 +#: ../../godmode/alerts/alert_special_days.php:521 +#: ../../godmode/alerts/alert_special_days.php:539 +#: ../../godmode/alerts/alert_list.php:449 ../../godmode/setup/news.php:221 +#: ../../godmode/setup/gis.php:94 ../../godmode/setup/os.php:50 +#: ../../godmode/setup/os.php:77 ../../godmode/setup/links.php:124 +#: ../../godmode/reporting/create_container.php:301 +#: ../../godmode/reporting/map_builder.php:492 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1789 +#: ../../godmode/reporting/graph_builder.main.php:184 +#: ../../godmode/events/event_responses.editor.php:193 +#: ../../godmode/events/event_edit_filter.php:625 +#: ../../godmode/servers/plugin.php:562 ../../godmode/tag/edit_tag.php:238 +#: ../../godmode/category/edit_category.php:176 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../include/class/ManageNetScanScripts.class.php:766 +#: ../../include/class/ModuleTemplates.class.php:877 +#: ../../include/class/ModuleTemplates.class.php:922 +#: ../../include/functions_filemanager.php:797 +#: ../../include/functions_filemanager.php:803 +#: ../../operation/gis_maps/gis_map.php:202 +#: ../../operation/incidents/incident_detail.php:402 +#: ../../operation/incidents/configure_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +msgid "Create" +msgstr "Create" + +#: ../../enterprise/meta/advanced/links.php:147 +#: ../../godmode/setup/links.php:138 +msgid "There isn't links" +msgstr "There are no links." + +#: ../../enterprise/meta/advanced/policymanager.php:58 +msgid "Policy Manager" +msgstr "Policy manager" + +#: ../../enterprise/meta/advanced/policymanager.php:80 +msgid "Apply policies" +msgstr "Apply policies" + +#: ../../enterprise/meta/advanced/policymanager.php:84 +#: ../../enterprise/meta/advanced/policymanager.php:102 +msgid "Policies queue" +msgstr "Policies queue" + +#: ../../enterprise/meta/advanced/policymanager.php:98 +msgid "Policies apply" +msgstr "Policies apply" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:49 +#, php-format +msgid "Error connecting to %s." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 +#, php-format +msgid "Error creating/updating %s/%s module groups." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:57 +#, php-format +msgid "Created/Updated %s/%s module groups." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 +msgid "Synchronizing Module Groups" +msgstr "Synchronizing module groups" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:254 +#, php-format +msgid "Error creating %s components groups " +msgstr "Error creating %s component groups " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:258 +#, php-format +msgid "Created %s component groups" +msgstr "Created %s component groups" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:263 +#, php-format +msgid "Error creating/updating %s/%s local components " +msgstr "Error creating/updating %s/%s local components " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:267 +#, php-format +msgid "Created/Updated %s/%s local components" +msgstr "Created/updated %s/%s local components" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:272 +#, php-format +msgid "Error creating/updating %s/%s network components " +msgstr "Error creating/updating %s/%s network components " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:276 +#, php-format +msgid "Created/Updated %s/%s network components" +msgstr "Created/updated %s/%s network components" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:293 +msgid "Synchronizing Components" +msgstr "Synchronising components" + +#: ../../enterprise/meta/advanced/collections.data.php:35 +#: ../../enterprise/meta/advanced/collections.editor.php:39 +#: ../../enterprise/meta/include/functions_agents_meta.php:514 +#: ../../enterprise/godmode/agentes/collections.agents.php:46 +#: ../../enterprise/godmode/agentes/collections.data.php:45 +#: ../../enterprise/godmode/agentes/collections.editor.php:61 +#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:58 +#: ../../enterprise/include/functions_policies.php:3784 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "Collections" + +#: ../../enterprise/meta/advanced/collections.data.php:48 +#: ../../enterprise/meta/advanced/collections.data.php:88 +#: ../../enterprise/meta/advanced/collections.data.php:103 +#: ../../enterprise/meta/advanced/collections.data.php:120 +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:162 +#: ../../enterprise/meta/advanced/collections.data.php:184 +#: ../../enterprise/meta/advanced/collections.data.php:225 +#: ../../enterprise/meta/advanced/collections.data.php:250 +#: ../../enterprise/meta/advanced/collections.editor.php:33 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:49 +#: ../../enterprise/godmode/agentes/collections.agents.php:58 +#: ../../enterprise/godmode/agentes/collections.data.php:65 +#: ../../enterprise/godmode/agentes/collections.data.php:104 +#: ../../enterprise/godmode/agentes/collections.data.php:154 +#: ../../enterprise/godmode/agentes/collections.data.php:171 +#: ../../enterprise/godmode/agentes/collections.data.php:188 +#: ../../enterprise/godmode/agentes/collections.data.php:212 +#: ../../enterprise/godmode/agentes/collections.data.php:237 +#: ../../enterprise/godmode/agentes/collections.data.php:261 +#: ../../enterprise/godmode/agentes/collections.data.php:284 +#: ../../enterprise/godmode/agentes/collections.editor.php:51 +#: ../../enterprise/include/functions_reporting_pdf.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:739 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2187 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/functions_reporting_csv.php:2315 +#: ../../enterprise/include/functions_reporting.php:2008 +#: ../../enterprise/include/functions_reporting.php:2041 +#: ../../enterprise/include/functions_reporting.php:2045 +#: ../../enterprise/include/functions_services.php:2489 +#: ../../enterprise/operation/agentes/policy_view.php:327 +#: ../../enterprise/operation/agentes/tag_view.php:661 +#: ../../extensions/insert_data.php:191 ../../extensions/insert_data.php:192 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:114 +#: ../../mobile/operation/modules.php:690 +#: ../../mobile/operation/modules.php:691 +#: ../../mobile/operation/modules.php:692 +#: ../../mobile/operation/modules.php:693 +#: ../../mobile/operation/modules.php:694 +#: ../../mobile/operation/modules.php:695 +#: ../../mobile/operation/modules.php:696 +#: ../../mobile/operation/modules.php:697 +#: ../../mobile/operation/modules.php:698 +#: ../../mobile/operation/modules.php:700 +#: ../../mobile/operation/modules.php:823 +#: ../../include/functions_reporting_html.php:2140 +#: ../../include/functions_reporting_html.php:2144 +#: ../../include/functions_reporting_html.php:2147 +#: ../../include/functions_reporting_html.php:2152 +#: ../../include/functions_reporting_html.php:2198 +#: ../../include/ajax/module.php:847 ../../include/ajax/custom_fields.php:402 +#: ../../include/functions_graph.php:3673 +#: ../../include/functions_netflow.php:297 +#: ../../include/functions_reporting.php:3206 +#: ../../include/functions_reporting.php:3247 +#: ../../include/functions_events.php:208 +#: ../../include/functions_events.php:289 +#: ../../include/functions_events.php:6118 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1188 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_modules.php:37 +#: ../../operation/events/events.build_table.php:330 +msgid "Data" +msgstr "Data" + +#: ../../enterprise/meta/advanced/collections.data.php:78 +#: ../../enterprise/godmode/agentes/collections.data.php:144 +msgid "" +"Unable to create the collection. Another collection with the same short name." +msgstr "" +"Unable to create the collection. There is another collection with the same " +"short name." + +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +msgid "Unable to create the collection" +msgstr "Unable to create the collection" + +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +msgid "Invalid characters in short name" +msgstr "Invalid characters in short name" + +#: ../../enterprise/meta/advanced/collections.data.php:110 +#: ../../enterprise/godmode/agentes/collections.data.php:50 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:161 +#: ../../enterprise/godmode/agentes/collections.data.php:178 +#: ../../enterprise/godmode/agentes/collections.data.php:202 +#: ../../enterprise/godmode/agentes/collections.data.php:249 +msgid "Manager configuration > New" +msgstr "Manager configuration > New" + +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +#: ../../enterprise/include/functions_local_components.php:170 +msgid "Empty name" +msgstr "Empty name" + +#: ../../enterprise/meta/advanced/collections.data.php:138 +#: ../../enterprise/meta/advanced/collections.data.php:180 +#: ../../enterprise/godmode/agentes/collections.data.php:208 +#: ../../enterprise/godmode/agentes/collections.data.php:257 +msgid "Unable to create the collection." +msgstr "Unable to create the collection" + +#: ../../enterprise/meta/advanced/collections.data.php:156 +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:327 +msgid "Correct create collection" +msgstr "Collection created successfully" + +#: ../../enterprise/meta/advanced/collections.data.php:164 +#: ../../enterprise/meta/advanced/collections.data.php:228 +#: ../../enterprise/meta/advanced/collections.data.php:252 +#: ../../enterprise/meta/advanced/collections.editor.php:36 +#: ../../enterprise/meta/advanced/collections.editor.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:350 +#: ../../enterprise/godmode/agentes/collections.agents.php:52 +#: ../../enterprise/godmode/agentes/collections.data.php:107 +#: ../../enterprise/godmode/agentes/collections.data.php:239 +#: ../../enterprise/godmode/agentes/collections.data.php:286 +#: ../../enterprise/godmode/agentes/collections.editor.php:57 +#: ../../enterprise/godmode/agentes/collections.editor.php:378 +#: ../../enterprise/godmode/agentes/collections.editor.php:401 +#: ../../enterprise/include/functions_collection.php:136 +#: ../../operation/agentes/ver_agente.php:1322 +msgid "Files" +msgstr "Files" + +#: ../../enterprise/meta/advanced/collections.data.php:218 +#: ../../enterprise/godmode/agentes/collections.data.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:223 +#: ../../enterprise/godmode/agentes/collections.data.php:303 +#: ../../enterprise/godmode/agentes/collections.data.php:316 +#: ../../enterprise/godmode/agentes/collections.data.php:321 +#: ../../enterprise/godmode/agentes/collections.editor.php:70 +msgid "Manager configuration > Edit " +msgstr "Manager configuration > Edit " + +#: ../../enterprise/meta/advanced/collections.data.php:271 +#: ../../enterprise/godmode/agentes/collections.data.php:307 +msgid "Unable to edit the collection, empty name." +msgstr "Unable to edit the collection, empty name." + +#: ../../enterprise/meta/advanced/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:319 +msgid "Unable to edit the collection." +msgstr "Unable to edit the collection" + +#: ../../enterprise/meta/advanced/collections.data.php:303 +#: ../../enterprise/meta/include/functions_autoprovision.php:540 +#: ../../enterprise/godmode/agentes/collections.data.php:352 +#: ../../godmode/setup/os.builder.php:32 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "Name:" + +#: ../../enterprise/meta/advanced/collections.data.php:315 +#: ../../enterprise/godmode/agentes/collections.data.php:365 +msgid "Recreate file" +msgstr "Create file again" + +#: ../../enterprise/meta/advanced/collections.data.php:343 +#: ../../enterprise/meta/advanced/collections.data.php:344 +#: ../../enterprise/godmode/agentes/collection_manager.php:161 +#: ../../enterprise/godmode/agentes/collection_manager.php:162 +#: ../../enterprise/godmode/agentes/collection_manager.php:273 +#: ../../enterprise/godmode/agentes/collection_manager.php:274 +#: ../../enterprise/godmode/agentes/collections.data.php:393 +#: ../../enterprise/godmode/agentes/collections.data.php:394 +msgid "Need to regenerate" +msgstr "Must regenerate" + +#: ../../enterprise/meta/advanced/collections.data.php:353 +#: ../../enterprise/meta/advanced/collections.data.php:354 +#: ../../enterprise/meta/advanced/collections.php:370 +#: ../../enterprise/meta/advanced/collections.php:371 +#: ../../enterprise/godmode/agentes/collection_manager.php:170 +#: ../../enterprise/godmode/agentes/collection_manager.php:171 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collection_manager.php:283 +#: ../../enterprise/godmode/agentes/collections.data.php:403 +#: ../../enterprise/godmode/agentes/collections.data.php:404 +#: ../../enterprise/godmode/agentes/collections.php:372 +#: ../../enterprise/godmode/agentes/collections.php:373 +#: ../../enterprise/operation/agentes/collection_view.php:122 +#: ../../enterprise/operation/agentes/collection_view.php:123 +msgid "The collection directory does not exist." +msgstr "The collection directory does not exist." + +#: ../../enterprise/meta/advanced/collections.data.php:367 +#: ../../enterprise/godmode/agentes/collections.data.php:418 +#: ../../godmode/reporting/visual_console_builder.data.php:136 +msgid "Group:" +msgstr "Group:" + +#: ../../enterprise/meta/advanced/collections.data.php:389 +#: ../../enterprise/godmode/agentes/collections.data.php:440 +msgid "Short name:" +msgstr "Short name:" + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "" +"The collection's short name is the name of dir in attachment dir and the " +"package collection." +msgstr "" +"The short name of the collection is the name of dir in attachment dir and " +"the package collection." + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "Short name must contain only alphanumeric characters, - or _ ." + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +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/meta/advanced/collections.data.php:401 +#: ../../enterprise/meta/include/functions_autoprovision.php:543 +#: ../../enterprise/godmode/agentes/collections.data.php:449 +#: ../../operation/snmpconsole/snmp_view.php:1023 +msgid "Description:" +msgstr "Description:" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:63 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "Provisioning custom data %s successfully deleted" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:70 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "Cannot delete custom data %s" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:83 +msgid "There was an error when moving the custom provisioning data." +msgstr "There was an error when moving the custom provisioning data." + +#: ../../enterprise/meta/advanced/collections.editor.php:99 +#: ../../enterprise/meta/advanced/collections.editor.php:165 +#: ../../enterprise/godmode/agentes/collections.editor.php:135 +#: ../../enterprise/godmode/agentes/collections.editor.php:200 +#: ../../godmode/servers/plugin.php:157 +#: ../../include/functions_filemanager.php:749 +msgid "Edit file" +msgstr "Edit file" + +#: ../../enterprise/meta/advanced/collections.editor.php:102 +#: ../../enterprise/meta/advanced/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:138 +#: ../../enterprise/godmode/agentes/collections.editor.php:202 +msgid "Back to file explorer" +msgstr "Back to file explorer" + +#: ../../enterprise/meta/advanced/collections.editor.php:139 +#: ../../enterprise/meta/advanced/collections.editor.php:304 +#: ../../enterprise/godmode/agentes/collections.editor.php:174 +#: ../../enterprise/godmode/agentes/collections.editor.php:350 +#: ../../include/functions_filemanager.php:334 +msgid "Security error." +msgstr "Security error" + +#: ../../enterprise/meta/advanced/collections.editor.php:190 +#: ../../enterprise/godmode/agentes/collections.editor.php:224 +#: ../../godmode/servers/plugin.php:176 +msgid "Compatibility mode" +msgstr "Compatibility mode" + +#: ../../enterprise/meta/advanced/collections.editor.php:235 +#: ../../enterprise/godmode/agentes/collections.editor.php:269 +msgid "Correct update file." +msgstr "File updated correctly" + +#: ../../enterprise/meta/advanced/collections.editor.php:236 +#: ../../enterprise/godmode/agentes/collections.editor.php:270 +msgid "Incorrect update file." +msgstr "Error updating file" + +#: ../../enterprise/meta/advanced/collections.editor.php:351 +#: ../../enterprise/godmode/agentes/collections.editor.php:402 +msgid "Please, first save a new collection before to upload files." +msgstr "Please save a new collection before uploading files." + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:101 +#: ../../godmode/update_manager/update_manager.setup.php:193 +msgid "URL update manager:" +msgstr "Update manager URL:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:105 +#: ../../godmode/update_manager/update_manager.setup.php:197 +msgid "URL update manager" +msgstr "Update Manager URL" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:111 +#: ../../godmode/update_manager/update_manager.setup.php:203 +msgid "Proxy server:" +msgstr "Proxy server:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:115 +#: ../../godmode/update_manager/update_manager.setup.php:207 +msgid "Proxy server" +msgstr "Proxy server" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:121 +#: ../../godmode/update_manager/update_manager.setup.php:213 +msgid "Proxy port:" +msgstr "Proxy port:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:125 +#: ../../godmode/update_manager/update_manager.setup.php:217 +msgid "Proxy port" +msgstr "Proxy port" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:131 +#: ../../godmode/update_manager/update_manager.setup.php:223 +msgid "Proxy user:" +msgstr "Proxy user:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:135 +#: ../../godmode/update_manager/update_manager.setup.php:227 +msgid "Proxy user" +msgstr "Proxy user" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:141 +#: ../../godmode/update_manager/update_manager.setup.php:233 +msgid "Proxy password:" +msgstr "Proxy password:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:145 +#: ../../godmode/update_manager/update_manager.setup.php:237 +msgid "Proxy password" +msgstr "Proxy password" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:66 +#, php-format +msgid "Error creating/updating %s/%s tags" +msgstr "Error creating/updating %s/%s tags" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:70 +#, php-format +msgid "Created/Updated %s/%s tags" +msgstr "Created/updated %s/%s tags" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:81 +msgid "Synchronizing Tags" +msgstr "Synchronizing tags" + +#: ../../enterprise/meta/advanced/cron_main.php:72 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "Cron jobs" + +#: ../../enterprise/meta/advanced/cron_main.php:84 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:527 +msgid "Add new job" +msgstr "Add new job" + +#: ../../enterprise/meta/advanced/cron_main.php:157 +#: ../../enterprise/meta/advanced/cron_main.php:203 +#: ../../enterprise/meta/advanced/cron_main.php:291 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:209 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:271 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:360 +msgid "Path doesn't exists or is not writable" +msgstr "Path does not exist or is not writable." + +#: ../../enterprise/meta/advanced/cron_main.php:171 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:240 +msgid "Only administrator users can create this type of functions" +msgstr "Only administrator users can create this type of functions." + +#: ../../enterprise/meta/advanced/cron_main.php:239 +#: ../../enterprise/meta/advanced/cron_main.php:273 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:345 +msgid "Edit job" +msgstr "Edit job" + +#: ../../enterprise/meta/advanced/cron_main.php:324 +msgid "" +"In order to make backups it is necessary to have mysqldump on your console." +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:345 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:603 +#: ../../enterprise/include/functions_tasklist.php:168 +#: ../../include/functions_cron.php:455 +msgid "Task" +msgstr "Task" + +#: ../../enterprise/meta/advanced/cron_main.php:376 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:613 +#: ../../enterprise/include/functions_tasklist.php:169 +#: ../../include/functions_cron.php:456 +msgid "Scheduled" +msgstr "Scheduled" + +#: ../../enterprise/meta/advanced/cron_main.php:389 +#: ../../enterprise/include/functions_tasklist.php:170 +#: ../../include/functions_cron.php:457 +msgid "Next execution" +msgstr "Next execution" + +#: ../../enterprise/meta/advanced/cron_main.php:398 +msgid "Date format in Pandora is year/month/day" +msgstr "Date format for Pandora FMS is YY/MM/DD" + +#: ../../enterprise/meta/advanced/cron_main.php:409 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "Time format in Pandora FMS is hours(24h):minutes:seconds" + +#: ../../enterprise/meta/advanced/cron_main.php:435 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:542 +#: ../../godmode/events/event_responses.editor.php:128 +#: ../../include/ajax/events.php:1685 +#: ../../include/lib/Dashboard/Widgets/events_list.php:590 +#: ../../include/functions_events.php:3606 +#: ../../operation/events/events.php:1577 +msgid "Parameters" +msgstr "Parameters" + +#: ../../enterprise/meta/advanced/cron_main.php:521 +#: ../../enterprise/godmode/alerts/alert_events.php:700 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:967 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3593 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/operation/log/log_viewer.php:754 +#: ../../enterprise/operation/log/log_viewer.php:766 +#: ../../extensions/insert_data.php:221 +#: ../../godmode/agentes/planned_downtime.editor.php:1463 +#: ../../godmode/alerts/configure_alert_template.php:1277 +#: ../../godmode/setup/news.php:311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3779 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:642 +#: ../../operation/tree.php:475 ../../operation/agentes/stat_win.php:447 +#: ../../operation/agentes/interface_traffic_graph_win.php:312 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:448 +#: ../../operation/network/network_report.php:356 +#: ../../operation/network/network_usage_map.php:208 +#: ../../operation/netflow/nf_live_view.php:739 +#: ../../operation/snmpconsole/snmp_view.php:1227 +#: ../../operation/snmpconsole/snmp_view.php:1239 +#: ../../operation/reporting/reporting_viewer.php:275 +#: ../../operation/reporting/reporting_viewer.php:295 +#: ../../operation/reporting/graph_viewer.php:315 +#: ../../operation/events/events_list.php:2007 +#: ../../operation/events/events.php:2474 +msgid "Choose time" +msgstr "Choose time" + +#: ../../enterprise/meta/advanced/cron_main.php:522 +#: ../../enterprise/godmode/alerts/alert_events.php:701 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:968 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:928 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3843 +#: ../../enterprise/operation/log/log_viewer.php:755 +#: ../../enterprise/operation/log/log_viewer.php:767 +#: ../../extensions/insert_data.php:222 +#: ../../godmode/agentes/planned_downtime.editor.php:1464 +#: ../../godmode/alerts/configure_alert_template.php:1278 +#: ../../godmode/setup/news.php:312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3780 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:476 ../../operation/agentes/stat_win.php:448 +#: ../../operation/agentes/interface_traffic_graph_win.php:313 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:449 +#: ../../operation/network/network_report.php:357 +#: ../../operation/network/network_usage_map.php:209 +#: ../../operation/netflow/nf_live_view.php:740 +#: ../../operation/snmpconsole/snmp_view.php:1228 +#: ../../operation/snmpconsole/snmp_view.php:1240 +#: ../../operation/reporting/reporting_viewer.php:276 +#: ../../operation/reporting/reporting_viewer.php:296 +#: ../../operation/reporting/graph_viewer.php:316 +#: ../../operation/events/events_list.php:2008 +#: ../../operation/events/events.php:2475 +msgid "Time" +msgstr "Time" + +#: ../../enterprise/meta/advanced/cron_main.php:523 +#: ../../enterprise/godmode/alerts/alert_events.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:969 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3595 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3844 +#: ../../enterprise/operation/log/log_viewer.php:756 +#: ../../enterprise/operation/log/log_viewer.php:768 +#: ../../extensions/insert_data.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:1465 +#: ../../godmode/alerts/configure_alert_template.php:1279 +#: ../../godmode/setup/news.php:313 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3781 +#: ../../include/functions_html.php:1594 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:644 +#: ../../operation/tree.php:477 ../../operation/agentes/stat_win.php:449 +#: ../../operation/agentes/interface_traffic_graph_win.php:314 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:450 +#: ../../operation/network/network_report.php:358 +#: ../../operation/network/network_usage_map.php:210 +#: ../../operation/netflow/nf_live_view.php:741 +#: ../../operation/snmpconsole/snmp_view.php:1229 +#: ../../operation/snmpconsole/snmp_view.php:1241 +#: ../../operation/reporting/reporting_viewer.php:277 +#: ../../operation/reporting/reporting_viewer.php:297 +#: ../../operation/reporting/graph_viewer.php:317 +#: ../../operation/events/events_list.php:2009 +#: ../../operation/events/events.php:2476 +msgid "Hour" +msgstr "Hour" + +#: ../../enterprise/meta/advanced/cron_main.php:524 +#: ../../enterprise/godmode/alerts/alert_events.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:970 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3596 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3845 +#: ../../enterprise/operation/log/log_viewer.php:757 +#: ../../enterprise/operation/log/log_viewer.php:769 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1466 +#: ../../godmode/alerts/configure_alert_template.php:1280 +#: ../../godmode/setup/news.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3782 +#: ../../include/functions_html.php:1595 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 +#: ../../operation/tree.php:478 ../../operation/agentes/stat_win.php:450 +#: ../../operation/agentes/interface_traffic_graph_win.php:315 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:451 +#: ../../operation/network/network_report.php:359 +#: ../../operation/network/network_usage_map.php:211 +#: ../../operation/netflow/nf_live_view.php:742 +#: ../../operation/snmpconsole/snmp_view.php:1230 +#: ../../operation/snmpconsole/snmp_view.php:1242 +#: ../../operation/reporting/reporting_viewer.php:278 +#: ../../operation/reporting/reporting_viewer.php:298 +#: ../../operation/reporting/graph_viewer.php:318 +#: ../../operation/events/events_list.php:2010 +#: ../../operation/events/events.php:2477 +msgid "Minute" +msgstr "Minute" + +#: ../../enterprise/meta/advanced/cron_main.php:525 +#: ../../enterprise/godmode/alerts/alert_events.php:704 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:971 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3597 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3846 +#: ../../enterprise/operation/log/log_viewer.php:758 +#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1467 +#: ../../godmode/alerts/configure_alert_template.php:1281 +#: ../../godmode/setup/news.php:315 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3783 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:646 +#: ../../operation/tree.php:479 ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:316 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:452 +#: ../../operation/network/network_report.php:360 +#: ../../operation/network/network_usage_map.php:212 +#: ../../operation/netflow/nf_live_view.php:743 +#: ../../operation/snmpconsole/snmp_view.php:1231 +#: ../../operation/snmpconsole/snmp_view.php:1243 +#: ../../operation/reporting/reporting_viewer.php:279 +#: ../../operation/reporting/reporting_viewer.php:299 +#: ../../operation/reporting/graph_viewer.php:319 +#: ../../operation/events/events_list.php:2011 +#: ../../operation/events/events.php:2478 +msgid "Second" +msgstr "Second" + +#: ../../enterprise/meta/advanced/cron_main.php:526 +#: ../../enterprise/godmode/alerts/alert_events.php:705 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:972 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3598 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3847 +#: ../../enterprise/operation/agentes/agent_inventory.php:108 +#: ../../enterprise/operation/log/log_viewer.php:759 +#: ../../enterprise/operation/log/log_viewer.php:771 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1468 +#: ../../godmode/alerts/configure_alert_template.php:1282 +#: ../../godmode/setup/news.php:316 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3784 +#: ../../include/functions.php:499 ../../include/functions.php:639 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:480 ../../operation/agentes/stat_win.php:452 +#: ../../operation/agentes/interface_traffic_graph_win.php:317 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:453 +#: ../../operation/network/network_report.php:361 +#: ../../operation/network/network_usage_map.php:213 +#: ../../operation/netflow/nf_live_view.php:744 +#: ../../operation/snmpconsole/snmp_view.php:1232 +#: ../../operation/snmpconsole/snmp_view.php:1244 +#: ../../operation/reporting/reporting_viewer.php:280 +#: ../../operation/reporting/reporting_viewer.php:300 +#: ../../operation/reporting/graph_viewer.php:320 +#: ../../operation/events/events_list.php:2012 +#: ../../operation/events/events.php:2479 +msgid "Now" +msgstr "Now" + +#: ../../enterprise/meta/advanced/cron_main.php:527 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:413 +#: ../../enterprise/godmode/alerts/alert_events.php:706 +#: ../../enterprise/godmode/setup/setup.php:739 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:973 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3599 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3848 +#: ../../enterprise/operation/log/log_viewer.php:760 +#: ../../enterprise/operation/log/log_viewer.php:772 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1469 +#: ../../godmode/alerts/configure_alert_template.php:1283 +#: ../../godmode/setup/news.php:317 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3785 +#: ../../godmode/wizards/HostDevices.class.php:792 +#: ../../mobile/include/ui.class.php:670 ../../mobile/include/ui.class.php:728 +#: ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../include/functions_snmp_browser.php:566 ../../operation/tree.php:481 +#: ../../operation/agentes/stat_win.php:453 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:454 +#: ../../operation/network/network_report.php:362 +#: ../../operation/network/network_usage_map.php:214 +#: ../../operation/netflow/nf_live_view.php:745 +#: ../../operation/snmpconsole/snmp_view.php:1233 +#: ../../operation/snmpconsole/snmp_view.php:1245 +#: ../../operation/reporting/reporting_viewer.php:281 +#: ../../operation/reporting/reporting_viewer.php:301 +#: ../../operation/reporting/graph_viewer.php:321 +#: ../../operation/events/events_list.php:2013 +#: ../../operation/events/events.php:2480 +msgid "Close" +msgstr "Close" + +#: ../../enterprise/meta/advanced/synchronizing.php:36 +#: ../../enterprise/meta/general/main_header.php:304 +msgid "Synchronizing" +msgstr "Synchronizing" + +#: ../../enterprise/meta/advanced/synchronizing.php:60 +#: ../../enterprise/meta/advanced/synchronizing.php:92 +msgid "Users synchronization" +msgstr "Users synchronization" + +#: ../../enterprise/meta/advanced/synchronizing.php:64 +#: ../../enterprise/meta/advanced/synchronizing.php:96 +msgid "Groups synchronization" +msgstr "Groups synchronization" + +#: ../../enterprise/meta/advanced/synchronizing.php:68 +#: ../../enterprise/meta/advanced/synchronizing.php:100 +msgid "Alerts synchronization" +msgstr "Alerts synchronization" + +#: ../../enterprise/meta/advanced/synchronizing.php:72 +#: ../../enterprise/meta/advanced/synchronizing.php:104 +msgid "Components synchronization" +msgstr "Components synchronization" + +#: ../../enterprise/meta/advanced/synchronizing.php:76 +#: ../../enterprise/meta/advanced/synchronizing.php:108 +msgid "Tags synchronization" +msgstr "Tags synchronization" + +#: ../../enterprise/meta/advanced/synchronizing.php:80 +#: ../../enterprise/meta/advanced/synchronizing.php:112 +msgid "OS synchronization" +msgstr "OS synchronization" + +#: ../../enterprise/meta/advanced/synchronizing.php:84 +#: ../../enterprise/meta/advanced/synchronizing.php:116 +msgid "Module Groups synchronization" +msgstr "Module groups synchronization" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:160 +#: ../../godmode/modules/manage_network_components_form_common.php:65 +#: ../../godmode/users/configure_user.php:947 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/alert_commands.php:137 +#: ../../godmode/alerts/configure_alert_template.php:857 +#: ../../godmode/alerts/configure_alert_template.php:871 +#: ../../godmode/alerts/configure_alert_template.php:962 +msgid "Basic" +msgstr "Basic" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:370 +#: ../../include/functions_config.php:161 +msgid "Language settings" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:379 +#: ../../godmode/setup/setup_general.php:126 +#: ../../include/functions_config.php:173 +msgid "Auto login (hash) password" +msgstr "Automatic login (hash) password" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:136 +#: ../../enterprise/meta/include/functions_meta.php:388 +#: ../../godmode/setup/setup_general.php:129 +#: ../../include/functions_config.php:177 +msgid "Time source" +msgstr "Time source" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:137 +#: ../../godmode/setup/setup_general.php:130 +#: ../../mobile/operation/events.php:127 +#: ../../include/functions_reporting_html.php:1039 +#: ../../include/functions_reporting_html.php:2016 +#: ../../include/functions.php:1238 ../../include/functions_graph.php:2683 +#: ../../include/functions_graph.php:3101 +#: ../../include/functions_graph.php:3562 +#: ../../include/functions_graph.php:3564 +#: ../../include/functions_reporting.php:8474 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:412 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:408 +#: ../../include/functions_events.php:2482 +#: ../../include/functions_events.php:3052 +#: ../../operation/events/events.php:1993 +msgid "System" +msgstr "System" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:138 +#: ../../godmode/setup/setup_general.php:131 +msgid "Database" +msgstr "Database" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:141 +#: ../../enterprise/meta/include/functions_meta.php:397 +#: ../../godmode/setup/setup_general.php:141 +#: ../../include/functions_config.php:189 +msgid "Enforce https" +msgstr "Enforce https" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. " +"Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../enterprise/meta/include/functions_meta.php:406 +msgid "Centralized management" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/include/functions_meta.php:415 +#: ../../godmode/setup/setup_general.php:152 +#: ../../include/functions_config.php:197 +msgid "Attachment store" +msgstr "Attachment directory" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +msgid "Directory where temporary data is stored." +msgstr "Directory in which temporary data is stored." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:424 +#: ../../godmode/setup/setup_general.php:123 +msgid "Phantomjs bin directory" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "" +"Directory where phantomjs binary file exists and has execution grants." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:156 +#: ../../godmode/setup/setup_general.php:188 +#: ../../include/functions_visual_map_editor.php:268 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_update_manager.php:159 +msgid "Africa" +msgstr "Africa" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:157 +#: ../../godmode/setup/setup_general.php:189 +#: ../../include/functions_visual_map_editor.php:269 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_update_manager.php:160 +msgid "America" +msgstr "America" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../godmode/setup/setup_general.php:190 +#: ../../include/functions_visual_map_editor.php:270 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_update_manager.php:161 +msgid "Antarctica" +msgstr "Antarctica" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:159 +#: ../../godmode/setup/setup_general.php:191 +#: ../../include/functions_visual_map_editor.php:271 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_update_manager.php:162 +msgid "Arctic" +msgstr "Arctic" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:160 +#: ../../godmode/setup/setup_general.php:192 +#: ../../include/functions_visual_map_editor.php:272 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_update_manager.php:163 +msgid "Asia" +msgstr "Asia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:161 +#: ../../godmode/setup/setup_general.php:193 +#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_update_manager.php:164 +msgid "Atlantic" +msgstr "Atlantic" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../godmode/setup/setup_general.php:194 +#: ../../include/functions_visual_map_editor.php:274 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_update_manager.php:165 +msgid "Australia" +msgstr "Australia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +#: ../../godmode/setup/setup_general.php:195 +#: ../../include/functions_visual_map_editor.php:275 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_update_manager.php:166 +msgid "Europe" +msgstr "Europe" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../godmode/setup/setup_general.php:196 +#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_update_manager.php:167 +msgid "Indian" +msgstr "Indian" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +#: ../../godmode/setup/setup_general.php:197 +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_update_manager.php:168 +msgid "Pacific" +msgstr "Pacific" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:198 +#: ../../include/functions_visual_map_editor.php:278 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_update_manager.php:169 +msgid "UTC" +msgstr "UTC" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:185 +#: ../../enterprise/meta/include/functions_meta.php:433 +#: ../../godmode/setup/setup_general.php:218 +#: ../../include/functions_config.php:235 +#: ../../include/functions_update_manager.php:189 +msgid "Timezone setup" +msgstr "Timezone setup" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:187 +#: ../../godmode/setup/setup_general.php:231 +msgid "Change timezone" +msgstr "Change timezone" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:442 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_config.php:267 +msgid "Public URL" +msgstr "Public URL" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:192 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:195 +#: ../../enterprise/meta/include/functions_meta.php:451 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_config.php:271 +msgid "Force use Public URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:196 +msgid "Force using defined public URL)." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s " +"Console. Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#: ../../enterprise/meta/include/functions_meta.php:460 +#: ../../godmode/setup/setup_general.php:266 +#: ../../include/functions_config.php:275 +msgid "Public URL host exclusions" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../include/functions_config.php:1378 +msgid "Disable custom live view filters" +msgstr "Disable custom live view filters" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 +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." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 +#: ../../enterprise/meta/include/functions_meta.php:478 +#: ../../godmode/setup/setup_general.php:276 +#: ../../include/functions_config.php:287 +msgid "Command Snapshot" +msgstr "Command line snapshot" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 +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." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:221 +msgid "Customize sections" +msgstr "Customise sections" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:242 +msgid "Disabled sections" +msgstr "Disabled sections" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:244 +msgid "Enabled sections" +msgstr "Enabled sections" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:249 +msgid "Push selected sections to enable it" +msgstr "Push selected sections to enable it" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:251 +msgid "Pop selected sections to disable it" +msgstr "Pop selected sections to disable it" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 +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." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:263 +#: ../../enterprise/meta/include/functions_meta.php:505 +#: ../../godmode/setup/setup_general.php:155 +#: ../../include/functions_config.php:201 +msgid "IP list with API access" +msgstr "IP list with API access" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:273 +#: ../../enterprise/meta/include/functions_meta.php:514 +#: ../../enterprise/godmode/setup/setup.php:377 +msgid "Enable update manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +#: ../../enterprise/meta/include/functions_meta.php:538 +#: ../../godmode/setup/setup_general.php:332 +#: ../../include/functions_config.php:323 +msgid "Audit log directory" +msgstr "Audit log directory" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +msgid "Directory where audit log is stored." +msgstr "Directory where audit log is stored." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:281 +#: ../../enterprise/meta/include/functions_meta.php:547 +#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../include/functions_config.php:386 +msgid "Size of collection" +msgstr "Collection size" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:282 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr " Bytes" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:285 +msgid "Enable Agent API" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:49 +#, php-format +msgid "Error creating/updating %s/%s OS" +msgstr "Error creating/updating %s/%s OS" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:53 +#, php-format +msgid "Created/Updated %s/%s OS" +msgstr "Created/Updated %s/%s OS" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:64 +msgid "Synchronizing OS" +msgstr "Synchronizing OS" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "Error creating %s policies" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "Created %s policies" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "Error creating/updating %s/%s policy modules" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "Created/updated %s/%s policy modules" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "Error deleting %s policy modules" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "Deleted %s policy modules" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "Error creating %s policy alerts" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "%s policy alerts successfully created" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "Error deleting %s policy alerts" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "%s policy alerts deleted successfully" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../enterprise/meta/advanced/policymanager.queue.php:257 +#: ../../enterprise/extensions/resource_exportation/functions.php:18 +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/godmode/agentes/plugins_manager.php:121 +#: ../../enterprise/godmode/policies/policy_queue.php:404 +#: ../../enterprise/godmode/policies/policy_queue.php:458 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:98 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:84 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:191 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:94 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:96 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:348 +#: ../../enterprise/include/functions_policies.php:4046 +#: ../../enterprise/operation/agentes/policy_view.php:50 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/status_monitor_custom_fields.php:73 +#: ../../godmode/agentes/status_monitor_custom_fields.php:142 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/alerts/alert_view.php:115 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:839 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:547 +#: ../../operation/agentes/status_monitor.php:1134 +msgid "Policy" +msgstr "Policy" + +#: ../../enterprise/meta/advanced/license_meta.php:50 +#: ../../include/functions_api.php:13610 +msgid "Metaconsole and all nodes license updated" +msgstr "Metaconsole and all nodes license updated" + +#: ../../enterprise/meta/advanced/license_meta.php:52 +#: ../../include/functions_api.php:13612 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "Metaconsole license updated but %d of %d node synchronization failed" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:71 +#: ../../godmode/menu.php:317 ../../godmode/setup/setup.php:103 +#: ../../godmode/setup/setup.php:174 +msgid "Performance" +msgstr "Performance" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:76 +#: ../../enterprise/meta/include/functions_meta.php:1730 +#: ../../godmode/setup/performance.php:251 +#: ../../godmode/setup/performance.php:470 +#: ../../include/functions_config.php:738 +msgid "Max. days before delete events" +msgstr "Max. days before events are deleted" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1739 +msgid "Active events history" +msgstr "Active events history" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1748 +#: ../../godmode/setup/performance.php:272 +#: ../../include/functions_config.php:751 +msgid "Max. days before delete audit events" +msgstr "Max. days before audited events are deleted" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/include/functions_meta.php:1757 +#: ../../godmode/setup/performance.php:561 +#: ../../include/functions_config.php:783 +msgid "Default hours for event view" +msgstr "Default hours for event view" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +msgid "Migration block size" +msgstr "Migration block size" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:99 +#: ../../godmode/setup/performance.php:635 +msgid "Events response max. execution" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:101 +msgid "" +"Number of events that will perform the desired action at the same time" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:28 +msgid "" +"The previous configuration of collections has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:28 +#: ../../godmode/servers/plugin.php:589 +msgid "Note:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:29 +msgid "" +"These definitions will not be operational until you manually \n" +" copy the files from the nodes to the atachment/collection/ directory of " +"the meta console." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:31 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:466 +#: ../../godmode/servers/plugin.php:592 +msgid "You can find more information at:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:51 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:123 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:220 +#: ../../enterprise/meta/monitoring/group_view.php:192 +#: ../../enterprise/meta/monitoring/group_view.php:198 +#: ../../enterprise/meta/monitoring/tactical.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:974 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1061 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1706 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1726 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:48 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103 +#: ../../enterprise/godmode/services/services.service.php:411 +#: ../../enterprise/godmode/services/services.service.php:566 +#: ../../enterprise/include/functions_reporting.php:4466 +#: ../../enterprise/include/functions_services.php:2324 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:111 +#: ../../enterprise/operation/services/services.service.php:170 +#: ../../enterprise/operation/services/services.service.php:225 +#: ../../enterprise/operation/services/services.service_map.php:171 +#: ../../enterprise/operation/services/services.treeview_services.php:248 +#: ../../enterprise/operation/services/services.list.php:197 +#: ../../enterprise/operation/services/services.list.php:431 +#: ../../enterprise/operation/services/services.list.php:498 +#: ../../enterprise/operation/services/services.table_services.php:176 +#: ../../godmode/groups/group_list.php:870 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:260 +#: ../../godmode/massive/massive_delete_modules.php:395 +#: ../../godmode/massive/massive_delete_modules.php:416 +#: ../../godmode/massive/massive_delete_agents.php:137 +#: ../../godmode/massive/massive_edit_agents.php:424 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/massive/massive_edit_modules.php:359 +#: ../../godmode/massive/massive_edit_modules.php:444 +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../godmode/servers/plugin.php:602 ../../mobile/operation/agents.php:41 +#: ../../mobile/operation/modules.php:50 +#: ../../include/functions_reporting_html.php:1899 +#: ../../include/functions.php:1038 ../../include/functions.php:1275 +#: ../../include/functions.php:1278 ../../include/functions.php:1317 +#: ../../include/functions_graph.php:3485 +#: ../../include/functions_graph.php:3486 +#: ../../include/functions_graph.php:4959 ../../include/functions_ui.php:291 +#: ../../include/functions_ui.php:2568 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/class/Diagnostics.class.php:1800 +#: ../../include/class/AgentWizard.class.php:442 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:285 +#: ../../include/lib/Dashboard/Widgets/service_map.php:333 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:624 +#: ../../include/functions_events.php:3108 ../../operation/tree.php:160 +#: ../../operation/tree.php:204 ../../operation/tree.php:372 +#: ../../operation/agentes/estado_agente.php:238 +#: ../../operation/agentes/status_monitor.php:381 +#: ../../operation/agentes/group_view.php:198 +#: ../../operation/agentes/group_view.php:203 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/tactical.php:148 +#: ../../operation/netflow/nf_live_view.php:451 +#: ../../operation/gis_maps/render_view.php:152 +msgid "Warning" +msgstr "Warning" + +#: ../../enterprise/meta/advanced/collections.php:122 +msgid "Deleted collection to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:123 +msgid "The collection could not be deleted to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:134 +#: ../../enterprise/meta/advanced/collections.php:156 +#: ../../enterprise/godmode/agentes/collection_manager.php:100 +#: ../../enterprise/godmode/agentes/collections.php:182 +#: ../../enterprise/godmode/agentes/collections.php:204 +msgid "Successful create collection package." +msgstr "Collection package created successfully" + +#: ../../enterprise/meta/advanced/collections.php:157 +#: ../../enterprise/godmode/agentes/collection_manager.php:101 +#: ../../enterprise/godmode/agentes/collections.php:205 +msgid "Can not create collection package." +msgstr "Error creating collection package" + +#: ../../enterprise/meta/advanced/collections.php:171 +msgid "Added collection to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:172 +msgid "The collection could not be added to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:255 +msgid "To manage collections you must activate centralized management" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:260 +#: ../../enterprise/godmode/agentes/collections.php:239 +msgid "Error: The main directory of collections does not exist." +msgstr "Error: the main directory of collections does not exist." + +#: ../../enterprise/meta/advanced/collections.php:319 +#: ../../enterprise/godmode/agentes/collections.php:321 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:201 +#: ../../godmode/agentes/configurar_agente.php:606 +msgid "Collection" +msgstr "Collection" + +#: ../../enterprise/meta/advanced/collections.php:320 +#: ../../enterprise/godmode/agentes/collection_manager.php:116 +#: ../../enterprise/godmode/agentes/collections.php:322 +#: ../../enterprise/godmode/policies/policy_collections.php:150 +#: ../../enterprise/godmode/policies/policy_collections.php:245 +msgid "Short Name" +msgstr "Short name" + +#: ../../enterprise/meta/advanced/collections.php:346 +#: ../../enterprise/godmode/agentes/collections.php:347 +msgid "Are you sure to delete?" +msgstr "Are you sure you want to delete it?" + +#: ../../enterprise/meta/advanced/collections.php:347 +#: ../../enterprise/godmode/agentes/collections.php:348 +msgid "Delete collection" +msgstr "Delete collection" + +#: ../../enterprise/meta/advanced/collections.php:353 +#: ../../enterprise/godmode/agentes/collections.php:355 +msgid "Are you sure to re-apply?" +msgstr "Are you sure you want to reapply?" + +#: ../../enterprise/meta/advanced/collections.php:354 +#: ../../enterprise/godmode/agentes/collections.php:356 +msgid "Re-Apply changes" +msgstr "Reapply changes" + +#: ../../enterprise/meta/advanced/collections.php:361 +#: ../../enterprise/godmode/agentes/collections.php:363 +msgid "Are you sure to apply?" +msgstr "Are you sure you want to apply?" + +#: ../../enterprise/meta/advanced/collections.php:362 +#: ../../enterprise/godmode/agentes/collections.php:364 +msgid "Apply changes" +msgstr "Apply changes" + +#: ../../enterprise/meta/advanced/collections.php:398 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "There are no collections defined yet." + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:62 +msgid "Operation successfully deleted from the queue" +msgstr "Operation successfully deleted from the queue" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "Operation cannot be deleted from the queue" +msgstr "Operation cannot be deleted from the queue" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:613 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:361 +#: ../../enterprise/godmode/policies/policy_queue.php:416 +#: ../../enterprise/godmode/policies/policy_queue.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:140 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../extensions/api_checker.php:156 ../../extensions/net_tools.php:345 +#: ../../godmode/extensions.php:146 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../include/functions_reporting_html.php:1784 +#: ../../include/functions_reporting_html.php:3662 +#: ../../include/functions_menu.php:604 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:96 -#: ../../godmode/agentes/module_manager_editor_common.php:156 -#: ../../godmode/alerts/alert_commands.php:349 -#: ../../godmode/groups/group_list.php:374 -#: ../../godmode/groups/modu_group_list.php:189 -#: ../../godmode/modules/module_list.php:58 ../../godmode/setup/os.list.php:33 -#: ../../include/functions_events.php:3610 -#: ../../operation/events/events.build_table.php:133 -#: ../../operation/incidents/incident.php:335 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:71 -msgid "ID" -msgstr "ID" +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:420 +msgid "Apply (database and files)" +msgstr "Apply (database and files)" -#: ../../extensions/api_checker.php:142 -msgid "ID 2" -msgstr "ID 2" +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:311 +#: ../../enterprise/godmode/policies/policy_queue.php:421 +#: ../../enterprise/godmode/policies/policy_queue.php:511 +msgid "Apply (only database)" +msgstr "Apply (only database)" -#: ../../extensions/api_checker.php:147 -msgid "Return Type" -msgstr "Return Type" +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:431 +msgid "Complete" +msgstr "Complete" -#: ../../extensions/api_checker.php:152 -#: ../../godmode/groups/configure_group.php:190 -#: ../../godmode/snmpconsole/snmp_alert.php:33 -#: ../../godmode/users/configure_user.php:593 -#: ../../include/functions_graph.php:3073 -#: ../../include/functions_graph.php:3227 -#: ../../include/functions_graph.php:3268 -#: ../../include/functions_graph.php:3309 -#: ../../include/functions_graph.php:3365 -#: ../../include/functions_graph.php:3421 +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:432 +msgid "Incomplete" +msgstr "Incomplete" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/extensions/backup/main.php:120 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1516 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:141 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policies.php:363 +#: ../../enterprise/godmode/policies/policy_linking.php:101 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:192 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:254 +#: ../../enterprise/godmode/setup/setup_skins.php:93 +#: ../../enterprise/godmode/setup/setup_acl.php:442 +#: ../../enterprise/include/class/SAPView.class.php:400 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2779 +#: ../../enterprise/operation/services/services.treeview_services.php:139 +#: ../../enterprise/operation/services/services.treeview_services.php:144 +#: ../../enterprise/operation/services/services.list.php:380 +#: ../../enterprise/operation/services/services.list.php:385 +#: ../../enterprise/operation/services/services.table_services.php:356 +#: ../../enterprise/operation/services/services.table_services.php:361 +#: ../../godmode/modules/manage_network_templates_form.php:265 +#: ../../godmode/modules/manage_network_templates_form.php:325 +#: ../../godmode/agentes/module_manager.php:48 +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/snmpconsole/snmp_alert.php:1134 +#: ../../godmode/snmpconsole/snmp_filters.php:182 +#: ../../godmode/snmpconsole/snmp_filters.php:259 +#: ../../godmode/admin_access_logs.php:90 +#: ../../godmode/admin_access_logs.php:97 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:861 +#: ../../godmode/tag/tag.php:180 ../../include/functions_ui.php:3318 +#: ../../include/functions_ui.php:3337 ../../include/functions_ui.php:3348 +#: ../../include/class/ModuleTemplates.class.php:691 +#: ../../operation/tree.php:193 ../../operation/agentes/graphs.php:258 +#: ../../operation/agentes/estado_monitores.php:587 +#: ../../operation/agentes/alerts_status.functions.php:121 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/netflow/nf_live_view.php:383 +#: ../../operation/incidents/incident.php:293 +#: ../../operation/incidents/list_integriaims_incidents.php:227 +#: ../../operation/incidents/list_integriaims_incidents.php:231 +msgid "Filter" +msgstr "Filter" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:324 +#: ../../enterprise/meta/agentsearch.php:92 +#: ../../enterprise/godmode/modules/local_components.php:525 +#: ../../enterprise/godmode/alerts/alert_events_list.php:451 +#: ../../godmode/modules/manage_network_components.php:611 +#: ../../godmode/users/user_list.php:293 +#: ../../godmode/alerts/alert_actions.php:214 +#: ../../godmode/alerts/alert_templates.php:320 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:193 ../../godmode/tag/tag.php:302 +#: ../../operation/tree.php:238 ../../operation/agentes/alerts_status.php:458 +#: ../../operation/agentes/status_monitor.php:720 +#: ../../operation/events/events_list.php:1088 +msgid "Show Options" +msgstr "Show Options" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:97 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:691 +#: ../../enterprise/meta/include/functions_wizard_meta.php:173 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1794 +#: ../../enterprise/meta/agentsearch.php:112 +#: ../../enterprise/meta/agentsearch.php:300 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1772 +#: ../../enterprise/include/class/CSVImportAgents.class.php:152 +#: ../../enterprise/include/class/SAPView.class.php:207 +#: ../../enterprise/include/functions_events.php:283 +#: ../../godmode/agentes/agent_manager.php:380 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../godmode/massive/massive_edit_agents.php:581 +#: ../../godmode/reporting/reporting_builder.item_editor.php:910 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +#: ../../include/functions_events.php:6001 +#: ../../operation/events/events_list.php:807 +#: ../../operation/events/events.php:1052 +#: ../../operation/events/events.build_table.php:156 +#: ../../operation/servers/recon_view.php:174 +msgid "Server" +msgstr "Server" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1254 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1259 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1264 +#: ../../enterprise/godmode/policies/policy_queue.php:461 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:673 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:441 +#: ../../operation/servers/recon_view.php:109 +#: ../../operation/servers/recon_view.php:158 +msgid "Progress" +msgstr "Progress" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:337 +#: ../../enterprise/godmode/policies/policy_queue.php:541 +msgid "Delete from queue" +msgstr "Delete from queue" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +msgid "Empty queue." +msgstr "Empty queue" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:95 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:689 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:356 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:612 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3468 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/extensions/ipam/ipam_network.php:325 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:212 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:396 +#: ../../enterprise/godmode/agentes/collections.agents.php:106 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:82 +#: ../../enterprise/godmode/policies/policy_linking.php:122 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/services/services.elements.php:616 +#: ../../enterprise/godmode/services/services.elements.php:641 +#: ../../enterprise/godmode/services/services.elements.php:656 +#: ../../enterprise/godmode/services/services.elements.php:663 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1879 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3148 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3357 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:287 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/include/functions_inventory.php:253 +#: ../../enterprise/include/functions_inventory.php:710 +#: ../../enterprise/include/functions_inventory.php:766 +#: ../../enterprise/include/functions_reporting_pdf.php:465 +#: ../../enterprise/include/functions_reporting_pdf.php:473 +#: ../../enterprise/include/functions_reporting_pdf.php:481 +#: ../../enterprise/include/functions_reporting_pdf.php:497 +#: ../../enterprise/include/functions_reporting_pdf.php:654 +#: ../../enterprise/include/functions_alert_event.php:1131 +#: ../../enterprise/include/functions_reporting_csv.php:462 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:1303 +#: ../../enterprise/include/functions_reporting_csv.php:1349 +#: ../../enterprise/include/functions_reporting_csv.php:1422 +#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1736 +#: ../../enterprise/include/functions_reporting_csv.php:1809 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2133 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:839 +#: ../../enterprise/include/functions_reporting.php:1675 +#: ../../enterprise/include/functions_reporting.php:2009 +#: ../../enterprise/include/functions_reporting.php:2040 +#: ../../enterprise/include/functions_reporting.php:2058 +#: ../../enterprise/include/functions_reporting.php:2575 +#: ../../enterprise/include/functions_reporting.php:3567 +#: ../../enterprise/include/functions_services.php:2507 +#: ../../enterprise/include/functions_events.php:147 +#: ../../enterprise/operation/agentes/tag_view.php:577 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:147 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:412 +#: ../../enterprise/operation/log/log_viewer.php:463 +#: ../../enterprise/operation/inventory/inventory.php:224 +#: ../../extensions/agents_alerts.php:312 +#: ../../extensions/agents_alerts.php:586 ../../extensions/insert_data.php:155 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:112 +#: ../../godmode/agentes/planned_downtime.list.php:177 +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +#: ../../godmode/agentes/module_manager_editor_common.php:1219 +#: ../../godmode/gis_maps/configure_gis_map.php:517 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/alerts/alert_list.list.php:452 +#: ../../godmode/alerts/alert_list.list.php:696 +#: ../../godmode/alerts/alert_view.php:64 +#: ../../godmode/alerts/alert_list.builder.php:55 +#: ../../godmode/reporting/reporting_builder.list_items.php:377 +#: ../../godmode/reporting/create_container.php:355 +#: ../../godmode/reporting/create_container.php:522 +#: ../../godmode/reporting/create_container.php:593 +#: ../../godmode/reporting/graph_builder.graph_editor.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1301 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2852 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3281 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3305 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:470 +#: ../../godmode/reporting/visual_console_builder.wizard.php:758 +#: ../../godmode/reporting/visual_console_builder.wizard.php:781 +#: ../../godmode/servers/plugin.php:70 ../../mobile/operation/agents.php:75 +#: ../../mobile/operation/agents.php:388 ../../mobile/operation/modules.php:570 +#: ../../mobile/operation/home.php:92 ../../mobile/operation/alerts.php:316 +#: ../../mobile/operation/events.php:553 +#: ../../include/functions_visual_map_editor.php:388 +#: ../../include/functions_visual_map_editor.php:421 +#: ../../include/functions_reporting_html.php:492 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:965 +#: ../../include/functions_reporting_html.php:973 +#: ../../include/functions_reporting_html.php:1782 +#: ../../include/functions_reporting_html.php:2307 +#: ../../include/functions_reporting_html.php:2399 +#: ../../include/functions_reporting_html.php:2702 +#: ../../include/functions_reporting_html.php:2760 +#: ../../include/functions_reporting_html.php:2768 +#: ../../include/functions_reporting_html.php:2776 +#: ../../include/functions_reporting_html.php:2788 +#: ../../include/functions_reporting_html.php:2908 +#: ../../include/functions_reporting_html.php:3031 +#: ../../include/functions_reporting_html.php:3116 +#: ../../include/functions_reporting_html.php:3659 +#: ../../include/functions_reporting_html.php:3715 +#: ../../include/functions_reporting_html.php:3753 +#: ../../include/functions_reporting_html.php:4062 +#: ../../include/functions_reporting_html.php:4102 +#: ../../include/functions_reporting_html.php:4352 +#: ../../include/functions_reporting_html.php:5113 +#: ../../include/ajax/alert_list.ajax.php:436 +#: ../../include/functions_graph.php:5175 ../../include/functions_gis.php:229 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:540 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:307 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:331 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:492 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:196 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:572 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:213 +#: ../../include/class/NetworkMap.class.php:2856 +#: ../../include/class/NetworkMap.class.php:2909 +#: ../../include/class/NetworkMap.class.php:3158 +#: ../../include/functions_reporting.php:4982 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:248 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 +#: ../../include/lib/Dashboard/Widgets/module_value.php:290 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 +#: ../../include/lib/Dashboard/Widgets/module_status.php:306 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1299 +#: ../../operation/search_agents.php:41 ../../operation/search_agents.php:47 +#: ../../operation/agentes/alerts_status.php:521 +#: ../../operation/agentes/alerts_status.php:591 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:704 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1139 +#: ../../operation/agentes/estado_monitores.php:116 +#: ../../operation/agentes/ver_agente.php:991 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 +#: ../../operation/search_alerts.php:33 +#: ../../operation/incidents/incident_detail.php:376 +#: ../../operation/search_modules.php:32 +#: ../../operation/events/sound_events.php:77 +#: ../../operation/events/events.php:1637 +#: ../../operation/events/events.build_table.php:80 +msgid "Agent" +msgstr "Agent" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:96 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +#: ../../enterprise/godmode/servers/HA_cluster.php:122 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../enterprise/include/class/DeploymentCenter.class.php:715 +#: ../../enterprise/include/class/DeploymentCenter.class.php:765 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1240 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../extensions/api_checker.php:123 ../../extensions/users_connected.php:78 +#: ../../godmode/admin_access_logs.php:75 +#: ../../godmode/admin_access_logs.php:76 +#: ../../godmode/reporting/visual_console_builder.elements.php:693 +#: ../../include/functions_visual_map_editor.php:1363 +#: ../../include/functions_reporting_html.php:2324 +#: ../../include/functions_reporting_html.php:2608 +#: ../../operation/network/network_report.php:195 +msgid "IP" +msgstr "IP" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:98 +#: ../../godmode/massive/massive_edit_modules.php:440 +msgid "Agent Status" +msgstr "Agent Status" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:113 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:219 +#: ../../enterprise/meta/monitoring/group_view.php:191 +#: ../../enterprise/meta/monitoring/group_view.php:197 +#: ../../enterprise/meta/monitoring/tactical.php:241 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/include/functions_services.php:2312 +#: ../../enterprise/operation/agentes/tag_view.php:110 +#: ../../enterprise/operation/services/services.treeview_services.php:263 +#: ../../godmode/groups/group_list.php:885 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../godmode/massive/massive_copy_modules.php:99 +#: ../../godmode/massive/massive_copy_modules.php:259 +#: ../../godmode/massive/massive_delete_modules.php:394 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_delete_agents.php:136 +#: ../../godmode/massive/massive_edit_agents.php:423 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../godmode/massive/massive_edit_modules.php:443 +#: ../../mobile/operation/agents.php:40 ../../mobile/operation/modules.php:49 +#: ../../include/functions_reporting_html.php:1897 +#: ../../include/functions.php:1034 ../../include/functions.php:1273 +#: ../../include/functions.php:1280 ../../include/functions.php:1313 #: ../../include/functions_graph.php:3475 -#: ../../include/functions_graph.php:3653 -#: ../../include/functions_graph.php:3798 -#: ../../include/functions_graph.php:3848 -#: ../../include/functions_graph.php:3948 -#: ../../include/functions_graph.php:3949 -#: ../../include/functions_graph.php:3952 -#: ../../include/functions_graph.php:3953 -#: ../../include/functions_graph.php:5206 -#: ../../operation/gis_maps/render_view.php:152 -#: ../../operation/snmpconsole/snmp_statistics.php:172 -#: ../../operation/snmpconsole/snmp_statistics.php:219 -#: ../../operation/snmpconsole/snmp_view.php:496 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:944 -#: ../../operation/users/user_edit.php:284 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../enterprise/godmode/setup/setup_acl.php:366 -msgid "Other" -msgstr "Other" +#: ../../include/functions_graph.php:3476 +#: ../../include/functions_graph.php:4955 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:284 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:639 +#: ../../include/functions_events.php:3104 ../../operation/tree.php:159 +#: ../../operation/tree.php:203 ../../operation/tree.php:387 +#: ../../operation/agentes/estado_agente.php:237 +#: ../../operation/agentes/status_monitor.php:380 +#: ../../operation/agentes/group_view.php:197 +#: ../../operation/agentes/group_view.php:202 +#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/tactical.php:149 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Normal" +msgstr "Normal" -#: ../../extensions/api_checker.php:157 -msgid "Other Mode" -msgstr "Alternate mode" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:118 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:221 +#: ../../enterprise/meta/monitoring/group_view.php:193 +#: ../../enterprise/meta/monitoring/group_view.php:199 +#: ../../enterprise/meta/monitoring/tactical.php:239 +#: ../../enterprise/meta/include/functions_wizard_meta.php:983 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1070 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1715 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1733 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:104 +#: ../../enterprise/godmode/services/services.service.php:407 +#: ../../enterprise/godmode/services/services.elements.php:751 +#: ../../enterprise/include/functions_reporting.php:2882 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4471 +#: ../../enterprise/include/functions_reporting.php:5420 +#: ../../enterprise/include/functions_services.php:2320 +#: ../../enterprise/include/functions_services.php:2484 +#: ../../enterprise/operation/agentes/tag_view.php:112 +#: ../../enterprise/operation/services/services.service.php:169 +#: ../../enterprise/operation/services/services.service.php:219 +#: ../../enterprise/operation/services/services.service_map.php:170 +#: ../../enterprise/operation/services/services.treeview_services.php:243 +#: ../../enterprise/operation/services/services.list.php:198 +#: ../../enterprise/operation/services/services.list.php:430 +#: ../../enterprise/operation/services/services.list.php:492 +#: ../../enterprise/operation/services/services.table_services.php:177 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/groups/group_list.php:865 +#: ../../godmode/massive/massive_copy_modules.php:101 +#: ../../godmode/massive/massive_copy_modules.php:261 +#: ../../godmode/massive/massive_delete_modules.php:396 +#: ../../godmode/massive/massive_delete_modules.php:417 +#: ../../godmode/massive/massive_delete_agents.php:138 +#: ../../godmode/massive/massive_edit_agents.php:425 +#: ../../godmode/massive/massive_edit_modules.php:360 +#: ../../godmode/massive/massive_edit_modules.php:445 +#: ../../mobile/operation/agents.php:39 ../../mobile/operation/modules.php:51 +#: ../../include/functions_reporting_html.php:775 +#: ../../include/functions_reporting_html.php:1898 +#: ../../include/functions_reporting_html.php:3575 +#: ../../include/functions.php:1042 ../../include/functions.php:1277 +#: ../../include/functions.php:1278 ../../include/functions.php:1280 +#: ../../include/functions.php:1321 ../../include/functions_graph.php:3495 +#: ../../include/functions_graph.php:3496 +#: ../../include/functions_graph.php:4963 ../../include/functions_ui.php:2568 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/class/AgentWizard.class.php:443 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:286 +#: ../../include/lib/Dashboard/Widgets/service_map.php:332 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:619 +#: ../../include/functions_events.php:3112 ../../operation/tree.php:161 +#: ../../operation/tree.php:205 ../../operation/tree.php:367 +#: ../../operation/agentes/estado_agente.php:239 +#: ../../operation/agentes/status_monitor.php:382 +#: ../../operation/agentes/group_view.php:199 +#: ../../operation/agentes/group_view.php:204 +#: ../../operation/agentes/estado_monitores.php:514 +#: ../../operation/agentes/tactical.php:147 +#: ../../operation/gis_maps/render_view.php:151 +msgid "Critical" +msgstr "Critical" -#: ../../extensions/api_checker.php:165 -msgid "Raw URL" -msgstr "Raw URL" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 +#: ../../enterprise/meta/monitoring/group_view.php:189 +#: ../../enterprise/meta/monitoring/group_view.php:195 +#: ../../enterprise/meta/monitoring/tactical.php:242 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:105 +#: ../../enterprise/include/functions_cron.php:549 +#: ../../enterprise/include/functions_reporting_pdf.php:578 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:222 +#: ../../enterprise/include/functions_reporting.php:1712 +#: ../../enterprise/include/functions_reporting.php:2623 +#: ../../enterprise/include/functions_reporting.php:3616 +#: ../../enterprise/include/functions_reporting.php:4476 +#: ../../enterprise/include/functions_reporting.php:5380 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:579 +#: ../../enterprise/operation/agentes/transactional_map.php:330 +#: ../../enterprise/operation/agentes/transactional_map.php:348 +#: ../../enterprise/operation/agentes/tag_view.php:113 +#: ../../enterprise/operation/services/services.service.php:231 +#: ../../enterprise/operation/services/services.service_map.php:173 +#: ../../enterprise/operation/services/services.treeview_services.php:253 +#: ../../enterprise/operation/services/services.list.php:199 +#: ../../enterprise/operation/services/services.list.php:505 +#: ../../enterprise/operation/services/services.table_services.php:178 +#: ../../extensions/module_groups.php:52 +#: ../../godmode/groups/group_list.php:875 +#: ../../godmode/massive/massive_copy_modules.php:102 +#: ../../godmode/massive/massive_copy_modules.php:262 +#: ../../godmode/massive/massive_delete_modules.php:397 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_agents.php:139 +#: ../../godmode/massive/massive_edit_agents.php:426 +#: ../../godmode/massive/massive_edit_modules.php:361 +#: ../../godmode/massive/massive_edit_modules.php:446 +#: ../../godmode/alerts/alert_list.builder.php:282 +#: ../../mobile/operation/agents.php:42 ../../mobile/operation/modules.php:52 +#: ../../include/functions_reporting_html.php:1887 +#: ../../include/functions_reporting_html.php:1900 +#: ../../include/functions_reporting_html.php:2514 +#: ../../include/functions_reporting_html.php:2867 +#: ../../include/functions.php:1228 ../../include/functions.php:3798 +#: ../../include/ajax/module.php:936 ../../include/functions_ui.php:538 +#: ../../include/functions_ui.php:539 +#: ../../include/functions_visual_map.php:2455 +#: ../../include/functions_visual_map.php:2483 +#: ../../include/functions_visual_map.php:2501 +#: ../../include/functions_visual_map.php:2519 +#: ../../include/functions_alerts.php:685 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:550 ../../include/functions_maps.php:54 +#: ../../include/functions_netflow.php:1608 +#: ../../include/functions_reporting.php:4592 +#: ../../include/functions_filemanager.php:681 +#: ../../include/lib/Dashboard/Widgets/events_list.php:549 +#: ../../include/lib/Dashboard/Widgets/service_map.php:335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:408 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:629 +#: ../../include/functions_events.php:3016 +#: ../../include/functions_events.php:5179 ../../operation/tree.php:162 +#: ../../operation/tree.php:206 ../../operation/tree.php:377 +#: ../../operation/agentes/estado_agente.php:240 +#: ../../operation/agentes/status_monitor.php:383 +#: ../../operation/agentes/group_view.php:195 +#: ../../operation/agentes/group_view.php:200 +#: ../../operation/agentes/estado_monitores.php:519 +#: ../../operation/agentes/pandora_networkmap.view.php:266 +#: ../../operation/agentes/tactical.php:150 +#: ../../operation/events/events.php:1929 +msgid "Unknown" +msgstr "Unknown" -#: ../../extensions/api_checker.php:171 -#: ../../enterprise/meta/include/functions_wizard_meta.php:833 -#: ../../enterprise/meta/include/functions_wizard_meta.php:918 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:132 +msgid "No init" +msgstr "No initialized" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:48 +msgid "Custom fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:60 +msgid "Custom Fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:160 +#: ../../enterprise/godmode/policies/policies.php:350 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:567 +#: ../../extensions/agents_modules.php:392 +#: ../../godmode/agentes/modificar_agente.php:204 +#: ../../godmode/agentes/planned_downtime.editor.php:936 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +#: ../../operation/agentes/estado_agente.php:226 +msgid "Recursion" +msgstr "Recursion" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:170 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../godmode/events/event_edit_filter.php:580 +#: ../../operation/events/events_list.php:795 +#: ../../operation/events/events.php:1063 +msgid "Module search" +msgstr "Module search" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:197 +msgid "Custom Fields Data" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:223 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:106 +#: ../../enterprise/operation/agentes/tag_view.php:114 +#: ../../godmode/massive/massive_copy_modules.php:103 +#: ../../godmode/massive/massive_copy_modules.php:263 +#: ../../godmode/massive/massive_delete_modules.php:398 +#: ../../godmode/massive/massive_delete_modules.php:419 +#: ../../godmode/massive/massive_delete_agents.php:140 +#: ../../godmode/massive/massive_edit_agents.php:427 +#: ../../godmode/massive/massive_edit_modules.php:362 +#: ../../godmode/massive/massive_edit_modules.php:447 +#: ../../godmode/events/event_edit_filter.php:281 +#: ../../mobile/operation/modules.php:53 ../../include/functions.php:1279 +#: ../../include/lib/Dashboard/Widgets/events_list.php:262 +#: ../../include/functions_events.php:3064 +#: ../../operation/agentes/estado_agente.php:241 +#: ../../operation/agentes/status_monitor.php:384 +#: ../../operation/events/events_list.php:928 +#: ../../operation/events/events.php:891 +msgid "Not normal" +msgstr "Not normal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:225 +#: ../../enterprise/meta/monitoring/group_view.php:190 +#: ../../enterprise/meta/monitoring/group_view.php:196 +#: ../../enterprise/meta/monitoring/tactical.php:243 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:107 +#: ../../enterprise/operation/agentes/transactional_map.php:336 +#: ../../enterprise/operation/agentes/tag_view.php:116 +#: ../../enterprise/operation/services/services.treeview_services.php:258 +#: ../../godmode/groups/group_list.php:880 +#: ../../godmode/massive/massive_copy_modules.php:104 +#: ../../godmode/massive/massive_copy_modules.php:264 +#: ../../godmode/massive/massive_delete_modules.php:399 +#: ../../godmode/massive/massive_delete_modules.php:420 +#: ../../godmode/massive/massive_delete_agents.php:141 +#: ../../godmode/massive/massive_edit_agents.php:428 +#: ../../godmode/massive/massive_edit_modules.php:363 +#: ../../godmode/massive/massive_edit_modules.php:448 +#: ../../mobile/operation/modules.php:55 +#: ../../include/functions_reporting_html.php:592 +#: ../../include/functions_reporting_html.php:1901 +#: ../../include/functions_reporting_html.php:3445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:376 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:409 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:634 +#: ../../operation/tree.php:163 ../../operation/tree.php:207 +#: ../../operation/tree.php:382 ../../operation/agentes/estado_agente.php:242 +#: ../../operation/agentes/status_monitor.php:386 +#: ../../operation/agentes/group_view.php:196 +#: ../../operation/agentes/group_view.php:201 +#: ../../operation/agentes/tactical.php:151 +msgid "Not init" +msgstr "Not initialised" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 +msgid "Status agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:247 +msgid "Status module" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:267 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:273 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:274 +#: ../../include/ajax/events.php:622 ../../operation/events/events_list.php:364 +#: ../../operation/events/events_list.php:481 +#: ../../operation/events/events_list.php:1036 +#: ../../operation/events/events.php:991 +msgid "Save filter" +msgstr "Save filter" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:281 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:287 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:288 +#: ../../include/ajax/custom_fields.php:577 ../../include/ajax/events.php:387 +#: ../../include/ajax/events.php:403 +#: ../../operation/netflow/nf_live_view.php:389 +#: ../../operation/events/events_list.php:372 +#: ../../operation/events/events_list.php:512 +#: ../../operation/events/events_list.php:523 +#: ../../operation/events/events_list.php:1039 +#: ../../operation/events/events.php:983 +msgid "Load filter" +msgstr "Load filter" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:296 +#: ../../enterprise/extensions/vmware/vmware_view.php:1450 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1493 +#: ../../enterprise/include/class/AgentRepository.class.php:754 +#: ../../enterprise/include/class/Omnishell.class.php:1074 +#: ../../enterprise/operation/agentes/tag_view.php:154 +#: ../../include/class/ConfigPEN.class.php:251 +#: ../../include/class/CredentialStore.class.php:1006 +#: ../../operation/agentes/status_monitor.php:426 +#: ../../operation/incidents/incident.php:301 +msgid "Show" +msgstr "Show" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:310 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:437 +#: ../../enterprise/operation/log/log_viewer.php:662 +#: ../../enterprise/operation/reporting/custom_reporting.php:62 +#: ../../godmode/modules/manage_network_templates.php:270 +#: ../../godmode/agentes/planned_downtime.list.php:524 +#: ../../godmode/admin_access_logs.php:39 +#: ../../include/graphs/functions_flot.php:359 +#: ../../include/class/ModuleTemplates.class.php:851 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:220 +msgid "Export to CSV" +msgstr "Export to CSV" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:337 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:339 +#: ../../enterprise/include/class/DatabaseHA.class.php:216 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:574 +#: ../../include/functions_ui.php:3359 +msgid "Processing" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:364 +#: ../../mobile/operation/groups.php:143 +#: ../../include/functions_reporting_html.php:4534 +#: ../../include/functions_agents.php:3485 +msgid "Agents critical" +msgstr "Agents in critical status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:377 +#: ../../include/functions_reporting_html.php:4537 +#: ../../include/functions_agents.php:3495 +msgid "Agents warning" +msgstr "Agents in warning status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:390 +#: ../../include/functions_reporting_html.php:4543 +#: ../../include/functions_agents.php:3475 +#: ../../include/functions_agents.php:3529 +msgid "Agents ok" +msgstr "Agents in OK status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:403 +#: ../../mobile/operation/groups.php:146 +#: ../../include/functions_reporting_html.php:4546 +#: ../../include/functions_agents.php:3505 +msgid "Agents unknown" +msgstr "Unknown agents" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:416 +#: ../../mobile/operation/groups.php:140 +#: ../../include/functions_reporting_html.php:4552 +#: ../../include/functions_agents.php:3519 +msgid "Agents not init" +msgstr "Not initialised agents" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:442 +#: ../../include/functions_reporting.php:9145 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor critical" +msgstr "Monitor in critical status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:453 +#: ../../include/functions_reporting.php:9149 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor warning" +msgstr "Monitor in warning status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:464 +#: ../../include/functions_reporting.php:9156 +msgid "Monitor normal" +msgstr "Monitor in normal status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:475 +#: ../../include/functions_reporting.php:9160 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor unknown" +msgstr "Monitor in unknown status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:486 +#: ../../include/functions_reporting.php:9167 +msgid "Monitor not init" +msgstr "Monitor not initialized" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:501 +#: ../../include/functions_reporting_html.php:4561 +#: ../../include/functions_reporting_html.php:4566 +msgid "Agents by status" +msgstr "Agents by status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:509 +#: ../../include/functions_reporting.php:9187 +#: ../../include/functions_reporting.php:9193 +msgid "Monitors by status" +msgstr "Monitors by status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:523 +#: ../../enterprise/operation/services/services.treeview_services.php:241 +#: ../../godmode/groups/group_list.php:863 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 +#: ../../operation/tree.php:365 +msgid "Critical agents" +msgstr "Critical agents" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 +#: ../../enterprise/operation/services/services.treeview_services.php:246 +#: ../../godmode/groups/group_list.php:868 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 +#: ../../operation/tree.php:370 +msgid "Warning agents" +msgstr "Agents in 'warning' status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 +#: ../../enterprise/operation/services/services.treeview_services.php:261 +#: ../../godmode/groups/group_list.php:883 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:637 +#: ../../operation/tree.php:385 +msgid "Normal agents" +msgstr "Agents in 'normal' status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 +#: ../../enterprise/operation/services/services.treeview_services.php:251 +#: ../../godmode/groups/group_list.php:873 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:627 +#: ../../operation/tree.php:375 +msgid "Unknown agents" +msgstr "Agents in 'unknown' status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 +#: ../../enterprise/operation/services/services.treeview_services.php:256 +#: ../../godmode/groups/group_list.php:878 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:632 +#: ../../operation/tree.php:380 +msgid "Not init agents" +msgstr "Not initialized agents" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:592 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:242 +#: ../../godmode/groups/group_list.php:864 +#: ../../mobile/operation/groups.php:161 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:618 +#: ../../operation/tree.php:366 +msgid "Critical modules" +msgstr "Modules in critical status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:247 +#: ../../godmode/groups/group_list.php:869 +#: ../../mobile/operation/groups.php:158 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:623 +#: ../../operation/tree.php:371 +msgid "Warning modules" +msgstr "Modules in warning status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:612 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:262 +#: ../../godmode/groups/group_list.php:884 +#: ../../mobile/operation/groups.php:155 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:638 +#: ../../operation/tree.php:386 +msgid "Normal modules" +msgstr "Modules in normal status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:622 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:252 +#: ../../godmode/groups/group_list.php:874 +#: ../../mobile/operation/groups.php:149 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:628 +#: ../../operation/tree.php:376 +msgid "Unknown modules" +msgstr "Unknown modules" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:632 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:257 +#: ../../godmode/groups/group_list.php:879 +#: ../../mobile/operation/groups.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:633 +#: ../../operation/tree.php:381 +msgid "Not init modules" +msgstr "Modules in not initialised status" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:657 +msgid "Total counters" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:660 +msgid "Total Agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:669 +msgid "Total Modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:690 +msgid "I.P" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +#: ../../include/functions_api.php:143 +msgid "No data to show." +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:712 +msgid "There are no custom search defined." +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1098 +#: ../../enterprise/meta/event/custom_events.php:247 +#: ../../godmode/agentes/status_monitor_custom_fields.php:239 +#: ../../godmode/events/custom_events.php:201 +#: ../../include/class/TreeGroupEdition.class.php:92 +msgid "Confirm" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:455 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:668 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:244 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:169 +#: ../../godmode/agentes/planned_downtime.list.php:403 +#: ../../godmode/menu.php:197 ../../godmode/setup/setup.php:236 +#: ../../include/functions_reports.php:854 +#: ../../include/functions_reports.php:858 +#: ../../include/class/ConfigPEN.class.php:321 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "Configuration" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1540 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1756 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1830 +msgid "Preview" +msgstr "Preview" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:211 +#: ../../godmode/agentes/configurar_agente.php:741 +#: ../../godmode/agentes/modificar_agente.php:758 +#: ../../operation/agentes/estado_agente.php:906 +#: ../../operation/agentes/estado_agente.php:917 +#: ../../operation/snmpconsole/snmp_statistics.php:155 +#: ../../operation/snmpconsole/snmp_view.php:901 +msgid "Create agent" +msgstr "Create agent" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "Edit agent" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "Please, set a valid IP/Name address" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 +msgid "Advanced configuration" +msgstr "Advanced configuration" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:618 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:232 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1535 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1751 +#: ../../enterprise/meta/agentsearch.php:120 +#: ../../enterprise/godmode/policies/policy_alerts.php:35 +#: ../../enterprise/godmode/policies/policies.php:541 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +#: ../../enterprise/godmode/alerts/alert_events.php:84 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +#: ../../enterprise/godmode/services/services.service.php:487 +#: ../../enterprise/include/functions_policies.php:3760 +#: ../../enterprise/operation/agentes/tag_view.php:586 +#: ../../extensions/agents_alerts.php:472 +#: ../../godmode/groups/configure_group.php:184 +#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/agentes/configurar_agente.php:397 +#: ../../godmode/agentes/modificar_agente.php:636 ../../godmode/menu.php:207 +#: ../../godmode/massive/massive_copy_modules.php:200 +#: ../../godmode/alerts/configure_alert_command.php:43 +#: ../../godmode/alerts/alert_actions.php:52 +#: ../../godmode/alerts/alert_commands.php:284 +#: ../../godmode/alerts/configure_alert_special_days.php:55 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/configure_alert_action.php:60 +#: ../../godmode/alerts/configure_alert_action.php:73 +#: ../../godmode/alerts/configure_alert_template.php:69 +#: ../../godmode/alerts/configure_alert_template.php:93 +#: ../../godmode/alerts/configure_alert_template.php:126 +#: ../../godmode/alerts/alert_special_days.php:45 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/alerts/alert_list.php:449 +#: ../../mobile/include/functions_web.php:24 +#: ../../mobile/operation/agents.php:84 ../../mobile/operation/agents.php:397 +#: ../../mobile/operation/home.php:65 ../../mobile/operation/agent.php:328 +#: ../../mobile/operation/alerts.php:176 +#: ../../include/functions_reporting_html.php:1918 +#: ../../include/functions_reporting_html.php:4362 +#: ../../include/functions_treeview.php:409 +#: ../../include/functions_reports.php:812 +#: ../../include/functions_reports.php:816 +#: ../../include/functions_reports.php:821 ../../operation/search_agents.php:56 +#: ../../operation/search_results.php:105 +#: ../../operation/agentes/estado_agente.php:731 +#: ../../operation/agentes/ver_agente.php:1173 +msgid "Alerts" +msgstr "Alerts" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:309 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 +#: ../../operation/snmpconsole/snmp_browser.php:574 +msgid "Create module" +msgstr "Create module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:376 +msgid "Edit module" +msgstr "Edit module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:173 +#, php-format +msgid "Cannot connect to %s instance." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +msgid "Invalid characters founded in module name" +msgstr "Invalid characters found in module name" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:216 +#: ../../godmode/agentes/configurar_agente.php:718 +#: ../../godmode/agentes/configurar_agente.php:740 ../../godmode/menu.php:71 +msgid "Manage agents" +msgstr "Manage agents" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:609 +#: ../../enterprise/meta/agentsearch.php:33 +#: ../../enterprise/meta/agentsearch.php:39 +#: ../../godmode/events/event_edit_filter.php:337 +#: ../../operation/events/events_list.php:755 +#: ../../operation/events/events.php:1046 +msgid "Agent search" +msgstr "Agent search" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 +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:274 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:440 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:632 +#: ../../mobile/operation/agents.php:195 ../../mobile/operation/modules.php:217 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:154 +#: ../../mobile/operation/alerts.php:181 +#: ../../mobile/operation/visualmap.php:125 +#: ../../mobile/operation/visualmaps.php:114 +#: ../../mobile/operation/module_graph.php:367 +#: ../../mobile/operation/module_graph.php:379 +#: ../../mobile/operation/events.php:614 +#: ../../mobile/operation/tactical.php:104 +msgid "Back" +msgstr "Back" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:314 +msgid "Manage modules" +msgstr "Manage modules" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:360 +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:373 +msgid "Create Module" +msgstr "Create module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:430 +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:473 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:553 +#: ../../extensions/agents_alerts.php:217 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +msgid "Create alert" +msgstr "Create alert" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:478 +#: ../../godmode/users/configure_profile.php:243 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/alerts/alert_list.php:449 +msgid "Manage alerts" +msgstr "Manage alerts" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:540 +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:622 +msgid "Select the alert to be edited or deleted" +msgstr "Select the alert to be edited or deleted" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "Please set a name" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "Please set an interval" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/massive/massive_delete_modules.php:299 +#: ../../godmode/massive/massive_edit_modules.php:279 +msgid "Module type" +msgstr "Module type" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/functions_reporting_html.php:4103 +#: ../../include/functions_reporting_html.php:4257 +msgid "Monitor" +msgstr "Monitor" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "Web check" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:253 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:675 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1862 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../extensions/agents_modules.php:395 +#: ../../godmode/modules/manage_network_components_form_common.php:122 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +#: ../../godmode/massive/massive_edit_modules.php:817 +#: ../../godmode/reporting/create_container.php:508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1286 +#: ../../mobile/operation/modules.php:159 +#: ../../mobile/operation/modules.php:160 +#: ../../mobile/operation/modules.php:268 +#: ../../mobile/operation/modules.php:269 +#: ../../include/functions_graph.php:5198 +#: ../../include/functions_treeview.php:122 +#: ../../include/functions_events.php:4137 +#: ../../operation/agentes/status_monitor.php:405 +#: ../../operation/agentes/estado_monitores.php:545 +#: ../../operation/agentes/ver_agente.php:983 +msgid "Module group" +msgstr "Module group" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3475 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:21 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 +#: ../../enterprise/godmode/policies/policy_alerts.php:286 +#: ../../enterprise/godmode/policies/policy_alerts.php:502 +#: ../../enterprise/godmode/policies/policy_linking.php:123 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +#: ../../enterprise/godmode/services/services.elements.php:613 +#: ../../enterprise/godmode/services/services.elements.php:645 +#: ../../enterprise/godmode/services/services.elements.php:655 +#: ../../enterprise/godmode/services/services.elements.php:712 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1903 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3380 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 +#: ../../enterprise/include/functions_inventory.php:711 +#: ../../enterprise/include/functions_inventory.php:767 +#: ../../enterprise/include/functions_ui.php:47 +#: ../../enterprise/include/functions_reporting_pdf.php:466 +#: ../../enterprise/include/functions_reporting_pdf.php:474 +#: ../../enterprise/include/functions_reporting_pdf.php:482 +#: ../../enterprise/include/functions_reporting_pdf.php:498 +#: ../../enterprise/include/functions_alert_event.php:1132 +#: ../../enterprise/include/functions_reporting_csv.php:463 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:1304 +#: ../../enterprise/include/functions_reporting_csv.php:1350 +#: ../../enterprise/include/functions_reporting_csv.php:1423 +#: ../../enterprise/include/functions_reporting_csv.php:1542 +#: ../../enterprise/include/functions_reporting_csv.php:1737 +#: ../../enterprise/include/functions_reporting_csv.php:1810 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:840 +#: ../../enterprise/include/functions_reporting.php:1676 +#: ../../enterprise/include/functions_reporting.php:2576 +#: ../../enterprise/include/functions_reporting.php:3568 +#: ../../enterprise/include/functions_services.php:2569 +#: ../../enterprise/include/functions_events.php:157 +#: ../../enterprise/operation/agentes/policy_view.php:207 +#: ../../enterprise/operation/agentes/agent_inventory.php:69 +#: ../../enterprise/operation/inventory/inventory.php:185 +#: ../../extensions/agents_alerts.php:519 +#: ../../extensions/agents_modules.php:429 ../../extensions/insert_data.php:172 +#: ../../godmode/agentes/module_manager_editor_prediction.php:138 +#: ../../godmode/agentes/planned_downtime.list.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:1125 +#: ../../godmode/agentes/agent_manager.php:534 +#: ../../godmode/agentes/agent_manager.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:1176 +#: ../../godmode/agentes/module_manager_editor_common.php:1220 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/massive/massive_edit_agents.php:548 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/alerts/alert_list.list.php:454 +#: ../../godmode/alerts/alert_list.list.php:706 +#: ../../godmode/alerts/alert_view.php:68 +#: ../../godmode/alerts/alert_list.builder.php:69 +#: ../../godmode/reporting/reporting_builder.list_items.php:382 +#: ../../godmode/reporting/create_container.php:378 +#: ../../godmode/reporting/create_container.php:528 +#: ../../godmode/reporting/create_container.php:594 +#: ../../godmode/reporting/graph_builder.graph_editor.php:199 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1359 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3308 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:469 +#: ../../godmode/reporting/visual_console_builder.wizard.php:790 +#: ../../godmode/servers/plugin.php:71 ../../mobile/operation/alerts.php:319 +#: ../../include/functions_visual_map_editor.php:463 +#: ../../include/functions_reporting_html.php:493 +#: ../../include/functions_reporting_html.php:855 +#: ../../include/functions_reporting_html.php:1783 +#: ../../include/functions_reporting_html.php:2400 +#: ../../include/functions_reporting_html.php:2761 +#: ../../include/functions_reporting_html.php:2769 +#: ../../include/functions_reporting_html.php:2777 +#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2909 +#: ../../include/functions_reporting_html.php:3037 +#: ../../include/functions_reporting_html.php:3122 +#: ../../include/functions_reporting_html.php:3660 +#: ../../include/functions_reporting_html.php:3716 +#: ../../include/ajax/alert_list.ajax.php:278 +#: ../../include/ajax/alert_list.ajax.php:303 +#: ../../include/ajax/alert_list.ajax.php:457 +#: ../../include/functions_graph.php:5282 +#: ../../include/functions_treeview.php:64 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:557 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:410 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:324 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:348 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:510 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:213 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:591 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:231 +#: ../../include/functions_reporting.php:4983 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 +#: ../../include/lib/Dashboard/Widgets/module_value.php:308 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 +#: ../../include/lib/Dashboard/Widgets/module_status.php:324 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:641 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/alerts_status.php:522 +#: ../../operation/agentes/alerts_status.php:557 +#: ../../operation/agentes/alerts_status.php:592 +#: ../../operation/agentes/alerts_status.php:624 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:118 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:31 +msgid "Module" +msgstr "Module" + +#: ../../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:245 +#: ../../enterprise/meta/general/main_header.php:298 +#: ../../enterprise/meta/general/main_header.php:386 +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/godmode/modules/configure_local_component.php:161 +#: ../../godmode/modules/manage_network_components_form_common.php:66 +#: ../../godmode/users/configure_user.php:948 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/alerts/alert_commands.php:130 +#: ../../godmode/alerts/alert_commands.php:140 +#: ../../godmode/alerts/configure_alert_template.php:861 +#: ../../godmode/alerts/configure_alert_template.php:875 +#: ../../godmode/alerts/configure_alert_template.php:963 +#: ../../operation/netflow/nf_live_view.php:482 +msgid "Advanced" +msgstr "Advanced" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:257 +msgid "Click Create to continue" +msgstr "Click on Create to continue" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:359 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 +#: ../../godmode/reporting/graph_builder.graph_editor.php:399 +msgid "Please, select a module" +msgstr "Please select a module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 +#: ../../enterprise/godmode/alerts/alert_events.php:672 +#: ../../enterprise/godmode/wizards/Cloud.class.php:535 +#: ../../enterprise/include/class/VMware.app.php:752 +#: ../../enterprise/include/class/Omnishell.class.php:829 +#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/Aws.cloud.php:1310 +#: ../../enterprise/include/class/MySQL.app.php:906 +#: ../../enterprise/include/class/Oracle.app.php:943 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1945 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1179 +#: ../../godmode/alerts/configure_alert_template.php:1004 +#: ../../godmode/wizards/HostDevices.class.php:1192 +#: ../../include/class/CustomNetScan.class.php:723 +msgid "Finish" +msgstr "Finish" + +#: ../../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:93 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:545 +#: ../../operation/incidents/incident_detail.php:141 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:136 +msgid "No description available" +msgstr "No description available" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:96 +#: ../../enterprise/operation/agentes/policy_view.php:157 +#: ../../enterprise/operation/agentes/policy_view.php:223 +#: ../../enterprise/operation/agentes/policy_view.php:465 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/modules/manage_network_components_form_wmi.php:60 +#: ../../godmode/alerts/configure_alert_template.php:1111 +#: ../../godmode/alerts/alert_list.builder.php:285 +#: ../../include/functions.php:2553 +msgid "Empty" +msgstr "Empty" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 +#: ../../include/functions_events.php:3154 +#: ../../include/functions_events.php:3433 +msgid "New" +msgstr "New" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 +msgid "" +"Are you sure? If the agent is on a policy, it will be removed from the " +"policy." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 +msgid "Please, select an alert" +msgstr "Please select an alert" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 +msgid "Please, select an agent" +msgstr "Please select an agent" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 +#: ../../enterprise/godmode/policies/policy_modules.php:1603 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:178 +#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:684 +#: ../../godmode/massive/massive_copy_modules.php:219 +#: ../../include/functions_events.php:3980 +#: ../../operation/reporting/reporting_viewer.php:255 +#: ../../general/ui/agents_list.php:146 +msgid "Loading" +msgstr "Loading" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:109 +#: ../../enterprise/meta/include/functions_wizard_meta.php:641 +#: ../../godmode/tag/edit_tag.php:184 +#: ../../include/functions_reporting.php:5072 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "URL" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:110 +msgid "String" +msgstr "String" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:111 +msgid "No agent name specified" +msgstr "No agent name specified" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 +msgid "Another agent already exists with the same name" +msgstr "Another agent with the same name already exists." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:114 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:414 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:417 +#: ../../godmode/agentes/module_manager_editor_common.php:568 +#: ../../godmode/agentes/module_manager_editor_common.php:570 +#, php-format +msgid "Agent interval x %s" +msgstr "Agent interval x %s" + +#: ../../enterprise/meta/monitoring/group_view.php:38 +msgid "Group View" +msgstr "Group view" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +#: ../../godmode/groups/group_list.php:270 +#: ../../godmode/users/configure_user.php:892 +#: ../../operation/users/user_edit.php:340 +#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:50 +msgid "Group view" +msgstr "Group view" + +#: ../../enterprise/meta/monitoring/group_view.php:134 +msgid "Summary by status" +msgstr "Summary by status" + +#: ../../enterprise/meta/monitoring/group_view.php:142 +#: ../../enterprise/meta/monitoring/group_view.php:146 +msgid "% Agents not init" +msgstr "% agents not init" + +#: ../../enterprise/meta/monitoring/group_view.php:143 +msgid "% Agents Warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:144 +msgid "% Agents OK" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:145 +msgid "% Agents Unknown" +msgstr "% agents unknown" + +#: ../../enterprise/meta/monitoring/group_view.php:149 +msgid "% Monitors Critical" +msgstr "% monitors critical" + +#: ../../enterprise/meta/monitoring/group_view.php:150 +msgid "% Monitors Warning" +msgstr "% monitors warning" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "% Monitors OK" +msgstr "% monitors OK" + +#: ../../enterprise/meta/monitoring/group_view.php:152 +msgid "% Monitors Unknown" +msgstr "% monitors unknown" + +#: ../../enterprise/meta/monitoring/group_view.php:153 +msgid "% Monitors Not init" +msgstr "% monitors not init" + +#: ../../enterprise/meta/monitoring/group_view.php:168 +#: ../../godmode/agentes/modificar_agente.php:749 +#: ../../operation/agentes/estado_agente.php:913 +#: ../../operation/agentes/group_view.php:533 +msgid "There are no defined agents" +msgstr "There are no defined agents" + +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/monitoring/group_view.php:179 +msgid "This data doesn't show in realtime" +msgstr "This data is not displayed in real-time" + +#: ../../enterprise/meta/monitoring/group_view.php:187 +msgid "Group or Tag" +msgstr "Group or tag" + +#: ../../enterprise/meta/monitoring/group_view.php:188 +#: ../../enterprise/include/functions_inventory.php:350 +#: ../../enterprise/include/functions_inventory.php:489 +#: ../../enterprise/operation/agentes/agent_inventory.php:240 +#: ../../enterprise/operation/services/services.treeview_services.php:233 +#: ../../godmode/groups/group_list.php:855 +#: ../../include/functions_reporting_html.php:1886 +#: ../../include/functions_reporting_html.php:1896 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 +#: ../../operation/tree.php:357 ../../operation/agentes/group_view.php:194 +msgid "Total" +msgstr "Total" + +#: ../../enterprise/meta/monitoring/group_view.php:200 +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/operation/agentes/policy_view.php:281 +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:534 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions.php:1231 ../../include/functions_agents.php:2609 +#: ../../include/functions_agents.php:2620 ../../include/functions_ui.php:1223 +#: ../../include/functions_reporting.php:10036 +#: ../../include/functions_events.php:2682 +#: ../../include/functions_events.php:3032 +#: ../../operation/agentes/group_view.php:205 +#: ../../operation/snmpconsole/snmp_view.php:963 +#: ../../operation/events/sound_events.php:75 +msgid "Alert fired" +msgstr "Alert triggered" + +#: ../../enterprise/meta/monitoring/group_view.php:305 +#: ../../operation/agentes/group_view.php:276 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this " +"reason, an agent can be counted several times." +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:40 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "Tactical view" + +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../godmode/users/configure_user.php:893 +#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:99 +#: ../../include/lib/Dashboard/Widgets/tactical.php:176 +#: ../../include/lib/Dashboard/Widgets/tactical.php:481 +#: ../../operation/users/user_edit.php:341 +#: ../../operation/agentes/tactical.php:54 ../../operation/menu.php:47 +msgid "Tactical view" +msgstr "Tactical view" + +#: ../../enterprise/meta/monitoring/tactical.php:251 +msgid "Report of state" +msgstr "Report of status" + +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:145 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/extensions/ipam/ipam_network.php:327 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../godmode/menu.php:255 ../../mobile/include/functions_web.php:23 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609 +#: ../../include/functions.php:3784 ../../include/functions_reports.php:827 +#: ../../include/functions_reports.php:831 +#: ../../include/functions_reports.php:835 ../../operation/menu.php:389 +#: ../../operation/events/events.php:799 ../../operation/events/events.php:814 +msgid "Events" +msgstr "Events" + +#: ../../enterprise/meta/monitoring/tactical.php:279 +msgid "Report of events" +msgstr "Report of events" + +#: ../../enterprise/meta/monitoring/tactical.php:284 +msgid "Info of state in events" +msgstr "Info of status in events" + +#: ../../enterprise/meta/monitoring/tactical.php:302 +msgid "More events" +msgstr "More events" + +#: ../../enterprise/meta/event/custom_events.php:38 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/users/configure_profile.php:250 ../../operation/menu.php:395 +msgid "View events" +msgstr "View events" + +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:192 +#: ../../godmode/netflow/nf_edit_form.php:189 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:189 +#: ../../include/ajax/custom_fields.php:642 +msgid "Create filter" +msgstr "Create new filter" + +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:250 +#: ../../godmode/events/events.php:50 +msgid "Event responses" +msgstr "Event responses" + +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:925 +#: ../../godmode/agentes/agent_manager.php:950 ../../godmode/menu.php:77 +#: ../../godmode/massive/massive_edit_agents.php:810 +#: ../../godmode/events/events.php:55 ../../godmode/events/events.php:67 +#: ../../include/functions_events.php:4099 +#: ../../operation/agentes/status_monitor.php:44 +#: ../../operation/agentes/status_monitor.php:57 +#: ../../operation/agentes/ver_agente.php:1257 +msgid "Custom fields" +msgstr "Custom fields" + +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:280 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2798 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:62 ../../godmode/events/events.php:82 +msgid "Filters" +msgstr "Filters" + +#: ../../enterprise/meta/event/custom_events.php:79 +#: ../../godmode/events/events.php:72 ../../include/ajax/events.php:1253 +msgid "Responses" +msgstr "Responses" + +#: ../../enterprise/meta/event/custom_events.php:98 +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." + +#: ../../enterprise/meta/event/custom_events.php:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:53 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1172 +msgid "Fields" +msgstr "Fields" + +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:126 +msgid "Fields available" +msgstr "Fields available" + +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/events/custom_events.php:146 +msgid "Fields selected" +msgstr "Fields selected" + +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:133 +msgid "Add fields to select" +msgstr "Add fields to select" + +#: ../../enterprise/meta/event/custom_events.php:196 +#: ../../godmode/agentes/status_monitor_custom_fields.php:179 +#: ../../godmode/events/custom_events.php:141 +msgid "Delete fields to select" +msgstr "Delete fields to select" + +#: ../../enterprise/meta/event/custom_events.php:205 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "Show event fields" + +#: ../../enterprise/meta/event/custom_events.php:246 +#: ../../godmode/agentes/status_monitor_custom_fields.php:238 +#: ../../godmode/events/custom_events.php:200 +msgid "" +"There must be at least one custom field. Timestamp will be set by default" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "Round Robin" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "Less loaded" + +#: ../../enterprise/meta/include/functions_autoprovision.php:447 +#: ../../enterprise/meta/include/functions_autoprovision.php:612 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1434 +#: ../../enterprise/godmode/alerts/alert_events_list.php:499 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2849 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:639 +#: ../../godmode/reporting/graph_builder.graph_editor.php:203 +#: ../../godmode/reporting/graph_builder.graph_editor.php:304 +msgid "Sort" +msgstr "Sort" + +#: ../../enterprise/meta/include/functions_autoprovision.php:503 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add " +"the first." +msgstr "" +"There is no custom entries defined. Click on 'Create custom entry' to add " +"the first entry." + +#: ../../enterprise/meta/include/functions_autoprovision.php:508 +msgid "Create custom entry" +msgstr "Create custom entry" + +#: ../../enterprise/meta/include/functions_autoprovision.php:535 +msgid "Provisioning configuration" +msgstr "Provisioning configuration" + +#: ../../enterprise/meta/include/functions_autoprovision.php:546 +msgid "Configuration:" +msgstr "Configuration:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:584 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to " +"create the first." +msgstr "" +"There are no rules configured for this custom entry. Click on the Add button " +"to create the first." + +#: ../../enterprise/meta/include/functions_autoprovision.php:614 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:227 +#: ../../extensions/quick_shell.php:154 +msgid "Method" +msgstr "Method" + +#: ../../enterprise/meta/include/functions_autoprovision.php:695 +msgid "There was an error when editing the rule." +msgstr "There was an error editing the rule." + +#: ../../enterprise/meta/include/functions_autoprovision.php:709 +msgid "Operation:" +msgstr "Operation:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:723 +msgid "Method:" +msgstr "Method:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "Value:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:788 +#: ../../enterprise/godmode/alerts/alert_events_list.php:568 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:434 +msgid "Move up" +msgstr "Move up" + +#: ../../enterprise/meta/include/functions_autoprovision.php:796 +#: ../../enterprise/godmode/alerts/alert_events_list.php:580 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 +msgid "Move down" +msgstr "Move down" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "(Error Duplicate ID (%d) ) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 +#: ../../enterprise/meta/general/main_header.php:310 +#: ../../enterprise/meta/general/main_header.php:392 +#: ../../enterprise/meta/general/main_header.php:408 +#: ../../enterprise/meta/general/main_header.php:415 +#: ../../godmode/users/profile_list.php:44 +#: ../../godmode/users/profile_list.php:55 +#: ../../godmode/users/configure_profile.php:40 +#: ../../godmode/users/configure_profile.php:51 +#: ../../godmode/users/user_list.php:135 ../../godmode/users/user_list.php:145 +#: ../../godmode/users/configure_user.php:140 +#: ../../operation/users/user_edit_header.php:90 +msgid "User management" +msgstr "User management" + +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 +#: ../../godmode/users/profile_list.php:48 +#: ../../godmode/users/configure_profile.php:44 +#: ../../godmode/users/user_list.php:139 +#: ../../godmode/users/configure_user.php:144 ../../godmode/menu.php:127 +msgid "Profile management" +msgstr "Profile management" + +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +#: ../../enterprise/meta/general/main_header.php:622 +#: ../../enterprise/meta/general/main_header.php:628 +#: ../../operation/menu.php:476 ../../general/header.php:379 +#: ../../general/header.php:389 +msgid "Edit my user" +msgstr "Edit my user" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "User synchronization" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "Group synchronization" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:188 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:210 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../godmode/agentes/agent_manager.php:275 +msgid "Alias" +msgstr "Alias" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:209 +#: ../../enterprise/meta/include/functions_wizard_meta.php:213 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1466 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1811 +#: ../../godmode/agentes/agent_manager.php:284 +#: ../../godmode/servers/modificar_server.php:60 +#: ../../include/functions_reporting_html.php:3035 +#: ../../include/functions_reporting_html.php:3120 +#: ../../include/functions_treeview.php:619 +#: ../../include/functions_events.php:4075 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "IP Address" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:238 +#: ../../enterprise/meta/include/functions_wizard_meta.php:681 +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:47 +#: ../../enterprise/include/functions_metaconsole.php:1287 +#: ../../enterprise/include/functions_metaconsole.php:1320 +#: ../../enterprise/include/functions_metaconsole.php:1353 +#: ../../enterprise/include/functions_metaconsole.php:1386 +#: ../../enterprise/include/functions_metaconsole.php:1419 +#: ../../enterprise/include/functions_metaconsole.php:1452 +#: ../../enterprise/include/functions_metaconsole.php:1485 +msgid "Check" +msgstr "Check" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:247 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1151 +#: ../../enterprise/godmode/alerts/alert_events.php:121 +#: ../../enterprise/godmode/alerts/alert_events.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:847 +#: ../../enterprise/include/class/Aws.cloud.php:282 +#: ../../godmode/alerts/configure_alert_template.php:179 +#: ../../godmode/alerts/configure_alert_template.php:183 +#: ../../godmode/setup/setup.php:89 ../../godmode/setup/setup.php:163 +#: ../../godmode/servers/plugin.php:360 ../../godmode/servers/plugin.php:365 +#: ../../include/ajax/events.php:1229 ../../include/functions_reports.php:752 +#: ../../include/functions_reporting.php:7319 +msgid "General" +msgstr "General" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:307 +#: ../../godmode/modules/manage_network_templates_form.php:329 +#: ../../include/class/ModuleTemplates.class.php:730 +msgid "Components" +msgstr "Components" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:309 +#: ../../enterprise/include/functions_reporting_csv.php:2119 +msgid "Agent modules" +msgstr "Agent modules" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:362 +msgid "Add selected modules to agent" +msgstr "Add selected modules to agent" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:400 +msgid "Undo changes" +msgstr "Undo changes" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:596 +#: ../../enterprise/godmode/services/services.service.php:398 +#: ../../enterprise/operation/services/services.list.php:235 +#: ../../enterprise/operation/services/services.table_services.php:214 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:745 +#: ../../include/ajax/events.php:1515 +msgid "Auto" +msgstr "Auto" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:597 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:746 +msgid "Force primary key" +msgstr "Force primary key" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1471 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1172 +#: ../../enterprise/meta/include/functions_meta.php:1221 +#: ../../enterprise/meta/include/functions_meta.php:1270 +#: ../../enterprise/meta/general/login_page.php:109 +#: ../../enterprise/meta/general/login_page.php:151 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:189 +#: ../../enterprise/godmode/setup/setup_auth.php:974 +#: ../../enterprise/godmode/setup/setup_auth.php:1006 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:167 +#: ../../enterprise/include/class/MySQL.app.php:521 +#: ../../enterprise/include/class/Oracle.app.php:502 +#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:77 +#: ../../godmode/admin_access_logs.php:86 +#: ../../godmode/admin_access_logs.php:196 +#: ../../godmode/setup/setup_ehorus.php:77 +#: ../../godmode/setup/setup_integria.php:216 +#: ../../godmode/events/custom_events.php:98 +#: ../../mobile/include/user.class.php:272 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:4687 +#: ../../include/functions.php:2889 ../../include/functions_cron.php:454 +#: ../../include/functions_config.php:653 +#: ../../include/functions_config.php:673 +#: ../../include/functions_config.php:1593 +#: ../../include/class/CredentialStore.class.php:735 +#: ../../include/class/CredentialStore.class.php:1030 +#: ../../include/functions_events.php:192 +#: ../../include/functions_events.php:241 +#: ../../include/functions_events.php:6039 +#: ../../include/functions_events.php:6466 ../../operation/search_users.php:60 +#: ../../operation/users/user_edit.php:679 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:125 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:299 +#: ../../operation/events/events.build_table.php:202 +#: ../../operation/events/events.build_table.php:697 +#: ../../general/logon_ok.php:245 ../../general/login_page.php:206 +#: ../../general/login_page.php:248 +msgid "User" +msgstr "User" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1475 +#: ../../enterprise/meta/include/functions_meta.php:1183 +#: ../../enterprise/meta/include/functions_meta.php:1232 +#: ../../enterprise/meta/include/functions_meta.php:1281 +#: ../../enterprise/meta/general/login_page.php:123 +#: ../../enterprise/meta/general/login_page.php:165 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:694 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/godmode/setup/setup_auth.php:980 +#: ../../enterprise/godmode/setup/setup_auth.php:1012 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:247 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:44 +#: ../../enterprise/include/functions_setup.php:84 +#: ../../enterprise/include/class/VMware.app.php:625 +#: ../../enterprise/include/class/MySQL.app.php:533 +#: ../../enterprise/include/class/Oracle.app.php:514 +#: ../../extensions/api_checker.php:143 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:739 +#: ../../godmode/agentes/module_manager_editor_wmi.php:76 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:469 +#: ../../godmode/massive/massive_edit_modules.php:836 +#: ../../godmode/setup/setup_ehorus.php:83 +#: ../../godmode/setup/setup_integria.php:222 +#: ../../mobile/include/user.class.php:279 +#: ../../include/functions_config.php:657 +#: ../../include/functions_config.php:677 +#: ../../include/functions_config.php:1598 +#: ../../include/class/CredentialStore.class.php:882 +#: ../../include/class/CredentialStore.class.php:909 +#: ../../include/class/CredentialStore.class.php:1031 +#: ../../include/class/CredentialStore.class.php:1048 +#: ../../include/class/AgentWizard.class.php:282 +#: ../../operation/users/user_edit.php:685 ../../general/login_page.php:220 +#: ../../general/login_page.php:261 +msgid "Password" +msgstr "Password" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:589 +msgid "Latency" +msgstr "Latency" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Response" +msgstr "Response" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:592 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:144 +msgid "Check type" +msgstr "Check type" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:609 +#: ../../enterprise/meta/include/functions_wizard_meta.php:666 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:63 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:909 +#: ../../enterprise/include/functions_enterprise.php:321 +#: ../../godmode/massive/massive_edit_modules.php:1069 +msgid "Web checks" +msgstr "Web Checks" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:645 +msgid "String to check" +msgstr "String to check" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:651 +msgid "Add check" +msgstr "Add check" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:660 +msgid "Delete check" +msgstr "Delete check" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:673 +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:118 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load basic" +msgstr "Load basic" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:679 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 +msgid "Load a basic structure on Web Checks" +msgstr "Load a basic structure on Web Checks" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:687 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:132 +msgid "Check the correct structure of the WebCheck" +msgstr "Check the correct structure of the WebCheck" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:694 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:198 +msgid "First line must be \"task_begin\"" +msgstr "First line must be 'task_begin'" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:199 +msgid "Webchecks configuration is empty" +msgstr "Webchecks configuration is empty" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:200 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:201 +msgid "Last line must be \"task_end\"" +msgstr "Last line must be 'task_end'" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:485 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:202 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "There is a line with a unknown token 'token_fail'." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:204 +msgid "Web checks are built correctly" +msgstr "Web checks are built correctly" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:915 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1034 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1521 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1741 +#: ../../enterprise/meta/agentsearch.php:116 +#: ../../enterprise/extensions/ipam/ipam_list.php:138 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1204 +#: ../../enterprise/godmode/modules/configure_local_component.php:283 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:405 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:447 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:255 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:533 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:560 +#: ../../enterprise/include/class/SAP.app.php:493 +#: ../../enterprise/include/class/Aws.cloud.php:464 +#: ../../enterprise/include/class/Aws.cloud.php:1203 +#: ../../enterprise/include/class/MySQL.app.php:556 +#: ../../enterprise/include/class/Oracle.app.php:537 +#: ../../enterprise/operation/agentes/tag_view.php:581 +#: ../../enterprise/operation/agentes/tag_view.php:658 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/agent_manager.php:335 +#: ../../godmode/agentes/module_manager_editor_common.php:562 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +#: ../../godmode/agentes/module_manager.php:648 +#: ../../godmode/massive/massive_edit_agents.php:553 +#: ../../godmode/massive/massive_edit_modules.php:682 +#: ../../godmode/wizards/HostDevices.class.php:794 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:429 +#: ../../mobile/operation/modules.php:630 +#: ../../mobile/operation/modules.php:632 +#: ../../mobile/operation/modules.php:821 +#: ../../include/functions_reporting_html.php:2661 +#: ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:625 +#: ../../include/class/CustomNetScan.class.php:518 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:320 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:296 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:306 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50 +#: ../../operation/agentes/estado_agente.php:716 +#: ../../operation/agentes/status_monitor.php:1160 +#: ../../operation/agentes/estado_generalagente.php:293 +#: ../../operation/netflow/nf_live_view.php:262 +#: ../../operation/search_modules.php:34 +#: ../../operation/servers/recon_view.php:97 +msgid "Interval" +msgstr "Interval" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:921 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1040 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1526 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1746 +#: ../../enterprise/godmode/modules/configure_local_component.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:711 +#: ../../godmode/modules/manage_network_components_form_common.php:303 +#: ../../godmode/agentes/module_manager_editor_common.php:537 +#: ../../godmode/massive/massive_edit_modules.php:853 +#: ../../include/functions_reporting_html.php:2662 +msgid "Unit" +msgstr "Unit" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:953 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1046 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "Various" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:961 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1482 +#: ../../extensions/net_tools.php:392 +msgid "SNMP Community" +msgstr "SNMP Community" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:968 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1054 +#: ../../enterprise/include/functions_hostdevices.php:291 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1149 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1276 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1286 +#: ../../extensions/api_checker.php:195 msgid "Credentials" msgstr "Credentials" +#: ../../enterprise/meta/include/functions_wizard_meta.php:975 +#: ../../enterprise/meta/include/functions_wizard_meta.php:984 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1504 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1513 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:380 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1088 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2025 +#: ../../include/functions_reporting_html.php:3719 +#: ../../include/functions_ui.php:2568 +#: ../../include/functions_reporting.php:1391 +msgid "Min" +msgstr "Min." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:977 +#: ../../enterprise/meta/include/functions_wizard_meta.php:986 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1073 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1506 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1709 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1718 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:373 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:741 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2212 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1090 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2018 +#: ../../include/functions_reporting_html.php:3718 +#: ../../include/functions_ui.php:2568 +#: ../../include/functions_reporting.php:1387 +msgid "Max" +msgstr "Max." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:979 +#: ../../enterprise/meta/include/functions_wizard_meta.php:988 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1736 +#: ../../enterprise/godmode/modules/configure_local_component.php:325 +#: ../../enterprise/godmode/modules/configure_local_component.php:360 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:433 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:231 +#: ../../godmode/agentes/module_manager_editor_common.php:431 +#: ../../godmode/agentes/module_manager_editor_common.php:484 +#: ../../godmode/massive/massive_edit_modules.php:582 +#: ../../godmode/massive/massive_edit_modules.php:651 +msgid "Inverse interval" +msgstr "Inverse interval" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:993 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1080 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 +#: ../../include/ajax/module.php:846 +msgid "Thresholds" +msgstr "Thresholds" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1086 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:169 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1091 +msgid "Web configuration" +msgstr "Web configuration" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +msgid "Str: " +msgstr "Str: " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 +msgid " Inverse interval " +msgstr " Inverse interval " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 +msgid "Alerts in module" +msgstr "Alerts in module" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1378 +#: ../../include/functions_reporting_html.php:4063 +msgid "Alert description" +msgstr "Alert description" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "Checks" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 +msgid "Deleted modules" +msgstr "Deleted modules" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2055 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2155 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2638 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2757 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2848 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3043 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:391 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:427 +msgid "Another module already exists with the same name" +msgstr "Another module already exists with the same name" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2650 +#, php-format +msgid "Error adding module %s" +msgstr "Error adding module %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2171 +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." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 +#: ../../enterprise/godmode/policies/policy_modules.php:863 +msgid "Successfully added module." +msgstr "Module successfully added" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2240 +#, php-format +msgid "Could not create agent %s" +msgstr "Could not create agent %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2244 +msgid "Agent successfully added" +msgstr "Agent successfully added" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2260 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2340 +#, php-format +msgid "%s Modules created" +msgstr "%s modules created" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2303 +#, php-format +msgid "Could not update agent %s" +msgstr "Could not update agent %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2307 +#: ../../enterprise/include/class/AgentRepository.class.php:495 +msgid "Agent successfully updated" +msgstr "Agent successfully updated" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2346 +#, php-format +msgid "%s Modules deleted" +msgstr "%s modules deleted" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2662 +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." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2692 +msgid "Module successfully added." +msgstr "Module successfully added" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2764 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2855 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3050 +#, php-format +msgid "Error updating module %s" +msgstr "Error updating module %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2786 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2877 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3072 +msgid "" +"There was an error updating the alerts, the operation has been cancelled" +msgstr "" +"There was an error updating the alerts, the operation has been cancelled." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2807 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2898 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3093 +msgid "Successfully updated module." +msgstr "Module successfully updated" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3470 +msgid "Manage agent modules" +msgstr "Manage agent modules" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "Everyday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1687 +#: ../../enterprise/include/functions_reporting.php:1571 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2462 +#: ../../enterprise/include/functions_reporting.php:3092 +#: ../../enterprise/include/functions_reporting.php:4066 +#: ../../godmode/alerts/configure_alert_special_days.php:83 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/alerts/alert_special_days.php:265 +#: ../../godmode/alerts/alert_special_days.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1128 +#: ../../include/functions_html.php:1581 +msgid "Monday" +msgstr "Monday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1693 +#: ../../enterprise/include/functions_reporting.php:1572 +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../enterprise/include/functions_reporting.php:2463 +#: ../../enterprise/include/functions_reporting.php:3093 +#: ../../enterprise/include/functions_reporting.php:4067 +#: ../../godmode/alerts/configure_alert_special_days.php:84 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/alerts/alert_special_days.php:266 +#: ../../godmode/alerts/alert_special_days.php:477 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1134 +#: ../../include/functions_html.php:1582 +msgid "Tuesday" +msgstr "Tuesday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1699 +#: ../../enterprise/include/functions_reporting.php:1573 +#: ../../enterprise/include/functions_reporting.php:2146 +#: ../../enterprise/include/functions_reporting.php:2464 +#: ../../enterprise/include/functions_reporting.php:3094 +#: ../../enterprise/include/functions_reporting.php:4068 +#: ../../godmode/alerts/configure_alert_special_days.php:85 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/alerts/alert_special_days.php:267 +#: ../../godmode/alerts/alert_special_days.php:481 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1140 +#: ../../include/functions_html.php:1583 +msgid "Wednesday" +msgstr "Wednesday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/include/functions_reporting.php:1574 +#: ../../enterprise/include/functions_reporting.php:2147 +#: ../../enterprise/include/functions_reporting.php:2465 +#: ../../enterprise/include/functions_reporting.php:3095 +#: ../../enterprise/include/functions_reporting.php:4069 +#: ../../godmode/alerts/configure_alert_special_days.php:86 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/alerts/alert_special_days.php:268 +#: ../../godmode/alerts/alert_special_days.php:485 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1146 +#: ../../include/functions_html.php:1584 +msgid "Thursday" +msgstr "Thursday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1711 +#: ../../enterprise/include/functions_reporting.php:1575 +#: ../../enterprise/include/functions_reporting.php:2148 +#: ../../enterprise/include/functions_reporting.php:2466 +#: ../../enterprise/include/functions_reporting.php:3096 +#: ../../enterprise/include/functions_reporting.php:4070 +#: ../../godmode/alerts/configure_alert_special_days.php:87 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/alerts/alert_special_days.php:269 +#: ../../godmode/alerts/alert_special_days.php:489 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1152 +#: ../../include/functions_html.php:1585 +msgid "Friday" +msgstr "Friday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1717 +#: ../../enterprise/include/functions_reporting.php:1576 +#: ../../enterprise/include/functions_reporting.php:2149 +#: ../../enterprise/include/functions_reporting.php:2467 +#: ../../enterprise/include/functions_reporting.php:3097 +#: ../../enterprise/include/functions_reporting.php:4071 +#: ../../godmode/alerts/configure_alert_special_days.php:88 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/alerts/alert_special_days.php:270 +#: ../../godmode/alerts/alert_special_days.php:493 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1158 +#: ../../include/functions_html.php:1586 +msgid "Saturday" +msgstr "Saturday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1723 +#: ../../enterprise/include/functions_reporting.php:1577 +#: ../../enterprise/include/functions_reporting.php:2150 +#: ../../enterprise/include/functions_reporting.php:2468 +#: ../../enterprise/include/functions_reporting.php:3098 +#: ../../enterprise/include/functions_reporting.php:4072 +#: ../../godmode/alerts/configure_alert_special_days.php:89 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/alerts/alert_special_days.php:271 +#: ../../godmode/alerts/alert_special_days.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1164 +#: ../../include/functions_html.php:1580 +msgid "Sunday" +msgstr "Sunday" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/extensions/ipam/ipam_editor.php:197 +#: ../../enterprise/godmode/setup/setup_history.php:63 +#: ../../godmode/alerts/alert_templates.php:73 +#: ../../include/functions_config.php:1442 +msgid "Days" +msgstr "Days" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "Every" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "and" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:298 +#: ../../enterprise/godmode/alerts/alert_events.php:522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2144 +#: ../../godmode/snmpconsole/snmp_alert.php:1020 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:624 +#: ../../godmode/alerts/alert_view.php:310 +msgid "Time threshold" +msgstr "Time threshold" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/include/functions_reporting_pdf.php:1516 +#: ../../enterprise/include/functions_reporting_pdf.php:1589 +#: ../../enterprise/include/functions_reporting_pdf.php:1702 +#: ../../enterprise/include/functions_reporting_csv.php:806 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2273 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2277 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3261 +#: ../../godmode/agentes/planned_downtime.list.php:146 +#: ../../godmode/alerts/alert_list.list.php:612 +#: ../../godmode/alerts/alert_list.list.php:615 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:125 +#: ../../include/functions_reporting_html.php:2910 +#: ../../include/functions_snmp.php:402 ../../include/functions_snmp.php:410 +#: ../../include/rest-api/index.php:318 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:448 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:509 +#: ../../operation/agentes/gis_view.php:217 +#: ../../operation/reporting/reporting_viewer.php:212 +msgid "From" +msgstr "From" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_alerts.php:535 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:324 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/godmode/alerts/alert_events_list.php:692 +#: ../../enterprise/include/functions_reporting_pdf.php:1522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:941 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:971 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2273 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2277 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2424 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3389 +#: ../../extensions/agents_alerts.php:251 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../godmode/alerts/alert_list.list.php:612 +#: ../../godmode/alerts/alert_list.list.php:733 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:121 +#: ../../include/functions_reporting_html.php:126 +#: ../../include/ajax/alert_list.ajax.php:504 +#: ../../include/functions_reporting.php:11766 +#: ../../operation/reporting/reporting_viewer.php:216 +msgid "to" +msgstr "to" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:189 +msgid "Event id" +msgstr "Event ID" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:395 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503 +#: ../../include/functions_reporting_html.php:1183 +#: ../../include/functions_reporting_html.php:1191 +#: ../../include/functions_reporting_html.php:3995 +#: ../../include/functions_events.php:190 +#: ../../include/functions_events.php:2401 +#: ../../include/functions_events.php:4503 +msgid "Event name" +msgstr "Event name" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1735 +#: ../../godmode/agentes/modificar_agente.php:491 +#: ../../godmode/agentes/agent_manager.php:208 +#: ../../mobile/operation/modules.php:570 +#: ../../mobile/operation/modules.php:819 +#: ../../include/functions_reporting_html.php:2605 +#: ../../include/functions_treeview.php:599 +#: ../../include/functions_events.php:191 +#: ../../include/functions_events.php:235 +#: ../../include/functions_events.php:2406 +#: ../../include/functions_events.php:6026 +#: ../../operation/events/events.php:1618 +#: ../../operation/events/events.build_table.php:182 +msgid "Agent name" +msgstr "Agent name" + +#: ../../enterprise/meta/include/functions_events_meta.php:82 +#: ../../enterprise/include/functions_inventory.php:77 +#: ../../enterprise/include/functions_inventory.php:239 +#: ../../enterprise/include/functions_inventory.php:259 +#: ../../enterprise/include/functions_inventory.php:420 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/operation/agentes/tag_view.php:663 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:239 ../../godmode/events/custom_events.php:101 +#: ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:822 ../../mobile/operation/events.php:516 +#: ../../include/functions_reporting_html.php:968 +#: ../../include/functions_reporting_html.php:976 +#: ../../include/functions_reporting_html.php:1187 +#: ../../include/functions_reporting_html.php:1194 +#: ../../include/functions_reporting_html.php:1962 +#: ../../include/functions_reporting_html.php:3997 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/ajax/custom_fields.php:405 ../../include/ajax/events.php:1500 +#: ../../include/functions_netflow.php:274 +#: ../../include/functions_events.php:195 +#: ../../include/functions_events.php:250 +#: ../../include/functions_events.php:2411 +#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:6033 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1196 +#: ../../operation/agentes/estado_generalagente.php:579 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:168 +#: ../../operation/snmpconsole/snmp_view.php:826 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:123 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:297 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/events.build_table.php:192 +msgid "Timestamp" +msgstr "Timestamp" + +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:248 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:625 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2567 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1302 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1011 +#: ../../enterprise/include/functions_events.php:127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 +#: ../../godmode/events/event_filter.php:123 +#: ../../godmode/events/event_edit_filter.php:283 +#: ../../include/lib/Dashboard/Widgets/events_list.php:275 +#: ../../include/functions_events.php:196 +#: ../../include/functions_events.php:6057 +#: ../../operation/events/events_list.php:923 +#: ../../operation/events/events.php:901 +msgid "Event type" +msgstr "Event type" + +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/operation/agentes/tag_view.php:182 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../godmode/modules/manage_network_components.php:667 +#: ../../godmode/agentes/agent_template.php:233 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:83 +#: ../../mobile/operation/modules.php:567 +#: ../../mobile/operation/modules.php:818 ../../include/ajax/module.php:843 +#: ../../include/ajax/custom_fields.php:401 +#: ../../operation/agentes/status_monitor.php:433 +#: ../../operation/agentes/status_monitor.php:1150 +msgid "Module name" +msgstr "Module name" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../godmode/agentes/configurar_agente.php:633 +#: ../../godmode/events/custom_events.php:104 ../../include/functions.php:3791 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:198 +#: ../../include/functions_events.php:259 +#: ../../include/functions_events.php:2484 +#: ../../include/functions_events.php:6070 +#: ../../operation/agentes/estado_monitores.php:515 +#: ../../operation/snmpconsole/snmp_view.php:519 +#: ../../operation/snmpconsole/snmp_view.php:831 +#: ../../operation/snmpconsole/snmp_view.php:1165 +#: ../../operation/events/events.build_table.php:253 +msgid "Alert" +msgstr "Alert" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:340 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:172 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:599 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2540 +#: ../../enterprise/include/functions_reporting.php:1849 +#: ../../enterprise/include/functions_events.php:137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2331 +#: ../../godmode/events/event_filter.php:125 +#: ../../godmode/events/event_edit_filter.php:298 +#: ../../godmode/events/custom_events.php:105 +#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398 +#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:690 +#: ../../mobile/operation/events.php:691 +#: ../../include/functions_reporting_html.php:966 +#: ../../include/functions_reporting_html.php:974 +#: ../../include/functions_reporting_html.php:1185 +#: ../../include/functions_reporting_html.php:1193 +#: ../../include/functions_reporting_html.php:1960 +#: ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:343 +#: ../../include/functions_events.php:199 +#: ../../include/functions_events.php:262 +#: ../../include/functions_events.php:2393 +#: ../../include/functions_events.php:4561 +#: ../../include/functions_events.php:6076 +#: ../../operation/snmpconsole/snmp_view.php:548 +#: ../../operation/events/events_list.php:939 +#: ../../operation/events/events.php:974 +#: ../../operation/events/events.build_table.php:263 +msgid "Severity" +msgstr "Severity" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:599 +#: ../../godmode/events/custom_events.php:106 +#: ../../godmode/wizards/HostDevices.class.php:955 +#: ../../include/class/CustomNetScan.class.php:467 +#: ../../include/functions_events.php:200 +#: ../../include/functions_events.php:265 +#: ../../include/functions_events.php:3498 +#: ../../include/functions_events.php:6082 +#: ../../include/functions_events.php:6468 +#: ../../operation/events/events_list.php:989 +#: ../../operation/events/events.php:1025 +#: ../../operation/events/events.build_table.php:273 +#: ../../operation/events/events.build_table.php:699 +msgid "Comment" +msgstr "Comment" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:522 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:146 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:106 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:814 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:105 +#: ../../enterprise/godmode/setup/setup_auth.php:226 +#: ../../enterprise/godmode/setup/setup_auth.php:493 +#: ../../enterprise/godmode/setup/setup_auth.php:1225 +#: ../../enterprise/operation/agentes/tag_view.php:202 +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../enterprise/operation/agentes/tag_view.php:655 +#: ../../godmode/modules/manage_network_components_form_common.php:338 +#: ../../godmode/massive/massive_copy_modules.php:156 +#: ../../godmode/massive/massive_delete_modules.php:377 +#: ../../godmode/massive/massive_delete_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:378 +#: ../../godmode/massive/massive_edit_modules.php:463 +#: ../../godmode/massive/massive_edit_modules.php:975 +#: ../../godmode/events/custom_events.php:107 ../../godmode/tag/edit_tag.php:57 +#: ../../mobile/operation/events.php:557 +#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_treeview.php:168 +#: ../../include/functions_profile.php:214 +#: ../../include/lib/Dashboard/Widgets/events_list.php:373 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:327 +#: ../../include/functions_events.php:201 +#: ../../include/functions_events.php:268 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:6088 ../../operation/tree.php:47 +#: ../../operation/users/user_edit.php:750 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/events/events.build_table.php:283 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "Tags" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:203 +#: ../../include/functions_events.php:4281 +msgid "Extra id" +msgstr "Extra ID" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/agentes/agent_incidents.php:95 +#: ../../godmode/setup/setup_integria.php:322 +#: ../../godmode/setup/setup_integria.php:445 +#: ../../godmode/events/custom_events.php:110 +#: ../../mobile/operation/events.php:520 ../../include/functions_events.php:204 +#: ../../include/functions_events.php:277 +#: ../../include/functions_events.php:4520 +#: ../../include/functions_events.php:6045 +#: ../../operation/incidents/incident_detail.php:294 +#: ../../operation/incidents/integriaims_export_csv.php:97 +#: ../../operation/incidents/configure_integriaims_incident.php:288 +#: ../../operation/incidents/incident.php:426 +#: ../../operation/incidents/list_integriaims_incidents.php:138 +#: ../../operation/incidents/list_integriaims_incidents.php:268 +#: ../../operation/events/events.build_table.php:212 +msgid "Owner" +msgstr "Owner" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:111 +#: ../../include/functions_events.php:205 +#: ../../include/functions_events.php:280 +#: ../../include/functions_events.php:6106 +#: ../../operation/events/events.build_table.php:313 +msgid "ACK Timestamp" +msgstr "ACK Timestamp" + +#: ../../enterprise/meta/include/functions_events_meta.php:126 +#: ../../godmode/events/custom_events.php:112 +#: ../../include/functions_events.php:206 +#: ../../include/functions_events.php:283 +#: ../../include/functions_events.php:4276 +#: ../../include/functions_events.php:6112 +#: ../../operation/events/events.php:2490 +#: ../../operation/events/events.build_table.php:323 +msgid "Instructions" +msgstr "Instructions" + +#: ../../enterprise/meta/include/functions_events_meta.php:130 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:50 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:207 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:426 +#: ../../include/functions_events.php:207 +msgid "Server name" +msgstr "Server name" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:3926 +#: ../../include/lib/Dashboard/Widgets/module_status.php:173 +#: ../../include/lib/Dashboard/Widgets/module_status.php:556 +#: ../../include/functions_events.php:209 +#: ../../include/functions_events.php:6124 ../../operation/tree.php:219 +msgid "Module status" +msgstr "Module status" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 +#: ../../general/login_page.php:74 +msgid "Splash login" +msgstr "Splash login" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "Go to Pandora FMS Support" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "Go to " + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:52 +#: ../../enterprise/include/reset_pass.php:53 +#: ../../general/login_help_dialog.php:81 +#: ../../general/login_help_dialog.php:86 ../../general/login_page.php:142 +#: ../../general/login_page.php:145 +msgid "Support" +msgstr "Support" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "Go to Pandora FMS Wiki" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:619 +#: ../../godmode/servers/plugin.php:507 ../../include/functions_ui.php:1422 +#: ../../include/class/ManageNetScanScripts.class.php:694 +msgid "Help" +msgstr "Help" + +#: ../../enterprise/meta/include/process_reset_pass.php:94 +#: ../../enterprise/include/process_reset_pass.php:95 +#: ../../operation/users/user_edit.php:281 +msgid "New Password" +msgstr "New password" + +#: ../../enterprise/meta/include/process_reset_pass.php:112 +#: ../../enterprise/include/process_reset_pass.php:110 +msgid "Repeat password" +msgstr "Repeat password" + +#: ../../enterprise/meta/include/process_reset_pass.php:118 +#: ../../enterprise/include/process_reset_pass.php:116 +msgid "Change password" +msgstr "Change password" + +#: ../../enterprise/meta/include/process_reset_pass.php:121 +#: ../../enterprise/meta/index.php:576 +#: ../../enterprise/include/process_reset_pass.php:119 ../../index.php:769 +msgid "Passwords must be the same" +msgstr "Passwords must be the same" + +#: ../../enterprise/meta/include/process_reset_pass.php:129 +#: ../../enterprise/meta/include/reset_pass.php:105 +#: ../../enterprise/meta/general/noaccess.php:17 +#: ../../enterprise/include/process_reset_pass.php:127 +#: ../../enterprise/include/reset_pass.php:107 +msgid "Back to login" +msgstr "Back to login" + +#: ../../enterprise/meta/include/process_reset_pass.php:139 +#: ../../enterprise/meta/include/reset_pass.php:115 +#, php-format +msgid "%s NEXT GENERATION" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:147 +#: ../../enterprise/meta/include/reset_pass.php:123 +#: ../../enterprise/meta/general/login_page.php:201 +#: ../../include/functions_config.php:2171 +msgid "METACONSOLE" +msgstr "METACONSOLE" + +#: ../../enterprise/meta/include/process_reset_pass.php:161 +#: ../../enterprise/meta/include/reset_pass.php:137 +#: ../../enterprise/meta/general/login_page.php:216 +#: ../../enterprise/include/process_reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:154 ../../general/login_page.php:357 +msgid "Build" +msgstr "Build" + +#: ../../enterprise/meta/include/functions_agents_meta.php:474 +#: ../../enterprise/meta/include/functions_agents_meta.php:521 +#: ../../enterprise/meta/include/functions_agents_meta.php:556 +msgid "Agents movement" +msgstr "Agent movement" + +#: ../../enterprise/meta/include/functions_agents_meta.php:482 +#: ../../enterprise/meta/include/functions_agents_meta.php:536 +msgid "Provisioning management" +msgstr "Provisioning management" + +#: ../../enterprise/meta/include/functions_agents_meta.php:490 +#: ../../enterprise/meta/include/functions_agents_meta.php:546 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:409 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:661 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 +msgid "Agent autoconfiguration" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:498 +#: ../../enterprise/meta/include/functions_agents_meta.php:526 +#: ../../enterprise/meta/include/functions_agents_meta.php:531 +msgid "Group management" +msgstr "Group management" + +#: ../../enterprise/meta/include/functions_agents_meta.php:506 +msgid "Tree group" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:541 +msgid "Provisioning rules management" +msgstr "Provisioning rules management" + +#: ../../enterprise/meta/include/functions_agents_meta.php:551 +msgid "Colecctions" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:342 +msgid "No admin user" +msgstr "No admin user" + +#: ../../enterprise/meta/include/functions_meta.php:361 +#: ../../include/functions_config.php:382 +msgid "Activate Metaconsole" +msgstr "Activate Metaconsole" + +#: ../../enterprise/meta/include/functions_meta.php:469 +msgid "Netflow disable custom live view filters" +msgstr "Netflow disables custom live view filters." + +#: ../../enterprise/meta/include/functions_meta.php:528 +msgid "Customizable section" +msgstr "Customizable section" + +#: ../../enterprise/meta/include/functions_meta.php:556 +msgid "Agent API" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:681 +#: ../../godmode/setup/setup_auth.php:279 +#: ../../include/functions_config.php:525 +msgid "Authentication method" +msgstr "Authentication method" + +#: ../../enterprise/meta/include/functions_meta.php:690 +#: ../../godmode/setup/setup_auth.php:53 ../../include/functions_config.php:617 +msgid "Fallback to local authentication" +msgstr "Fallback to local authentication" + +#: ../../enterprise/meta/include/functions_meta.php:699 +#: ../../enterprise/meta/include/functions_meta.php:871 +#: ../../godmode/setup/setup_auth.php:65 ../../include/functions_config.php:529 +msgid "Autocreate remote users" +msgstr "Automatically create remote users" + +#: ../../enterprise/meta/include/functions_meta.php:708 +#: ../../enterprise/godmode/setup/setup_auth.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:297 +#: ../../enterprise/godmode/setup/setup_auth.php:352 +#: ../../enterprise/godmode/setup/setup_auth.php:1082 +#: ../../include/functions_config.php:533 +msgid "Autocreate profile" +msgstr "Automatically create profile" + +#: ../../enterprise/meta/include/functions_meta.php:717 +#: ../../enterprise/godmode/setup/setup_auth.php:58 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:358 +#: ../../enterprise/godmode/setup/setup_auth.php:1088 +#: ../../include/functions_config.php:537 +msgid "Autocreate profile group" +msgstr "Automatically create profile group" + +#: ../../enterprise/meta/include/functions_meta.php:726 +#: ../../enterprise/godmode/setup/setup_auth.php:65 +#: ../../enterprise/godmode/setup/setup_auth.php:310 +#: ../../enterprise/godmode/setup/setup_auth.php:365 +#: ../../enterprise/godmode/setup/setup_auth.php:1095 +#: ../../include/functions_config.php:541 +msgid "Autocreate profile tags" +msgstr "Automatically create profile tags" + +#: ../../enterprise/meta/include/functions_meta.php:735 +#: ../../enterprise/godmode/setup/setup_auth.php:316 +#: ../../include/functions_config.php:545 +msgid "Automatically assigned no hierarchy" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:744 +#: ../../enterprise/godmode/setup/setup_auth.php:551 +#: ../../enterprise/godmode/setup/setup_auth.php:1288 +#: ../../include/functions_config.php:549 +msgid "Autocreate blacklist" +msgstr "Automatically create blacklist" + +#: ../../enterprise/meta/include/functions_meta.php:753 +#: ../../enterprise/meta/include/functions_meta.php:1003 +#: ../../godmode/setup/setup_auth.php:215 +#: ../../include/functions_config.php:721 +#: ../../operation/users/user_edit.php:397 +msgid "Double authentication" +msgstr "Double authentication" + +#: ../../enterprise/meta/include/functions_meta.php:764 +#: ../../enterprise/meta/include/functions_meta.php:1015 +#: ../../include/functions_config.php:725 +msgid "Session timeout" +msgstr "Session timeout" + +#: ../../enterprise/meta/include/functions_meta.php:775 +#: ../../enterprise/godmode/setup/setup_auth.php:559 +#: ../../enterprise/godmode/setup/setup_auth.php:1296 +#: ../../include/functions_config.php:553 +msgid "Active directory server" +msgstr "Active directory server" + +#: ../../enterprise/meta/include/functions_meta.php:784 +#: ../../enterprise/godmode/setup/setup_auth.php:565 +#: ../../enterprise/godmode/setup/setup_auth.php:1302 +#: ../../include/functions_config.php:557 +msgid "Active directory port" +msgstr "Active directory port" + +#: ../../enterprise/meta/include/functions_meta.php:793 +#: ../../enterprise/meta/include/functions_meta.php:1053 +#: ../../enterprise/godmode/setup/setup_auth.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1308 +#: ../../godmode/setup/setup_auth.php:133 +#: ../../include/functions_config.php:561 +#: ../../include/functions_config.php:597 +msgid "Start TLS" +msgstr "Start TLS" + +#: ../../enterprise/meta/include/functions_meta.php:802 +#: ../../enterprise/godmode/setup/setup_auth.php:341 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../include/functions_config.php:565 +msgid "Advanced Config AD" +msgstr "Advanced Configuration AD" + +#: ../../enterprise/meta/include/functions_meta.php:811 +#: ../../enterprise/godmode/setup/setup_auth.php:577 +#: ../../enterprise/godmode/setup/setup_auth.php:1314 +#: ../../include/functions_config.php:573 +msgid "Domain" +msgstr "Domain" + +#: ../../enterprise/meta/include/functions_meta.php:820 +#: ../../enterprise/godmode/setup/setup_auth.php:399 +#: ../../enterprise/godmode/setup/setup_auth.php:1129 +#: ../../include/functions_config.php:577 +msgid "Advanced Permisions AD" +msgstr "Advanced Permisions AD" + +#: ../../enterprise/meta/include/functions_meta.php:829 +#: ../../enterprise/godmode/setup/setup_auth.php:126 +#: ../../include/functions_config.php:581 +msgid "Advanced Permissions LDAP" +msgstr "Advanced Permissions LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:838 +#: ../../enterprise/godmode/setup/setup_auth.php:103 +#: ../../include/functions_config.php:569 +msgid "Advanced Config LDAP" +msgstr "Advanced Configuration LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:847 +#: ../../enterprise/meta/include/functions_meta.php:858 +#: ../../enterprise/godmode/setup/setup_auth.php:329 +#: ../../enterprise/godmode/setup/setup_auth.php:371 +#: ../../enterprise/godmode/setup/setup_auth.php:1101 +msgid "Auto enable node access" +msgstr "Auto enable node access" + +#: ../../enterprise/meta/include/functions_meta.php:883 +#: ../../include/functions_config.php:681 +msgid "Saml path" +msgstr "SAML path" + +#: ../../enterprise/meta/include/functions_meta.php:895 +#: ../../include/functions_config.php:685 +msgid "Saml source" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:907 +#: ../../include/functions_config.php:689 +msgid "Saml user id parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:919 +#: ../../include/functions_config.php:693 +msgid "Saml mail parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:931 +#: ../../include/functions_config.php:697 +msgid "Saml group name parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:943 +#: ../../include/functions_config.php:701 +msgid "Saml attr type parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:955 +#: ../../include/functions_config.php:705 +msgid "Saml profiles and tags parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:967 +#: ../../include/functions_config.php:717 +msgid "Saml profile and tag separator" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:979 +msgid "SAML profile parameters" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:991 +#: ../../include/functions_config.php:713 +msgid "Saml tag parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1026 +#: ../../godmode/setup/setup_auth.php:88 ../../include/functions_config.php:585 +msgid "LDAP server" +msgstr "LDAP server" + +#: ../../enterprise/meta/include/functions_meta.php:1035 +#: ../../godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:589 +msgid "LDAP port" +msgstr "LDAP port" + +#: ../../enterprise/meta/include/functions_meta.php:1044 +#: ../../godmode/setup/setup_auth.php:119 +#: ../../include/functions_config.php:593 +msgid "LDAP version" +msgstr "LDAP version" + +#: ../../enterprise/meta/include/functions_meta.php:1062 +#: ../../godmode/setup/setup_auth.php:144 +#: ../../include/functions_config.php:601 +msgid "Base DN" +msgstr "Base DN" + +#: ../../enterprise/meta/include/functions_meta.php:1071 +#: ../../godmode/setup/setup_auth.php:157 +#: ../../include/functions_config.php:605 +msgid "Login attribute" +msgstr "Login attribute" + +#: ../../enterprise/meta/include/functions_meta.php:1080 +#: ../../godmode/setup/setup_auth.php:170 +#: ../../include/functions_config.php:609 +msgid "Admin LDAP login" +msgstr "Admin LDAP login" + +#: ../../enterprise/meta/include/functions_meta.php:1089 +#: ../../godmode/setup/setup_auth.php:183 +#: ../../include/functions_config.php:613 +msgid "Admin LDAP password" +msgstr "Admin LDAP password" + +#: ../../enterprise/meta/include/functions_meta.php:1101 +#: ../../enterprise/godmode/setup/setup_auth.php:79 +#: ../../include/functions_config.php:630 +msgid "Save Password" +msgstr "Save password" + +#: ../../enterprise/meta/include/functions_meta.php:1114 +#: ../../enterprise/godmode/setup/setup_auth.php:98 +#: ../../include/functions_config.php:621 +msgid "Login user attribute" +msgstr "Login user attribute" + +#: ../../enterprise/meta/include/functions_meta.php:1123 +#: ../../include/functions_config.php:637 +msgid "Save profile" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1134 +#: ../../enterprise/godmode/setup/setup_auth.php:91 +#: ../../include/functions_config.php:625 +msgid "LDAP function" +msgstr "LDAP function" + +#: ../../enterprise/meta/include/functions_meta.php:1145 +#, php-format +msgid "%s host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1154 +#: ../../enterprise/meta/include/functions_meta.php:1203 +#: ../../enterprise/meta/include/functions_meta.php:1252 +#: ../../enterprise/godmode/setup/setup_auth.php:962 +#: ../../enterprise/godmode/setup/setup_auth.php:994 +#: ../../include/functions_config.php:645 +#: ../../include/functions_config.php:665 +msgid "MySQL port" +msgstr "MySQL port" + +#: ../../enterprise/meta/include/functions_meta.php:1163 +#: ../../enterprise/meta/include/functions_meta.php:1212 +#: ../../enterprise/meta/include/functions_meta.php:1261 +#: ../../enterprise/godmode/setup/setup_history.php:54 +#: ../../enterprise/godmode/setup/setup_auth.php:968 +#: ../../enterprise/godmode/setup/setup_auth.php:1000 +#: ../../include/functions_config.php:649 +#: ../../include/functions_config.php:669 +#: ../../include/functions_config.php:1426 +msgid "Database name" +msgstr "Database name" + +#: ../../enterprise/meta/include/functions_meta.php:1194 +msgid "Babel Enterprise host" +msgstr "Babel Enterprise host" + +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/godmode/setup/setup_auth.php:988 +#: ../../include/functions_config.php:661 +msgid "Integria host" +msgstr "Integria IMS host" + +#: ../../enterprise/meta/include/functions_meta.php:1302 +#: ../../include/functions_config.php:852 +msgid "Timestamp or time comparation" +msgstr "Timestamp or time comparison" + +#: ../../enterprise/meta/include/functions_meta.php:1311 +msgid "Graph color (min)" +msgstr "Graph colour (min)" + +#: ../../enterprise/meta/include/functions_meta.php:1320 +msgid "Graph color (avg)" +msgstr "Graph colour (avg)" + +#: ../../enterprise/meta/include/functions_meta.php:1329 +msgid "Graph color (max)" +msgstr "Graph colour (max)" + +#: ../../enterprise/meta/include/functions_meta.php:1347 +#: ../../include/functions_config.php:900 +msgid "Data precision for reports" +msgstr "Data precision for reports" + +#: ../../enterprise/meta/include/functions_meta.php:1431 +msgid "full scale charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1440 +msgid "type mode type charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1458 +msgid "type mode zoom charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1476 +msgid "Type of charts" +msgstr "Type of charts" + +#: ../../enterprise/meta/include/functions_meta.php:1512 +msgid "Custom logo (white background)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1530 +#: ../../include/functions_config.php:953 +msgid "Custom logo login" +msgstr "Custom logo login" + +#: ../../enterprise/meta/include/functions_meta.php:1539 +#: ../../include/functions_config.php:957 +msgid "Custom splash login" +msgstr "Custom splash login" + +#: ../../enterprise/meta/include/functions_meta.php:1566 +#: ../../include/functions_config.php:985 +msgid "Custom title1 login" +msgstr "Custom title1 login" + +#: ../../enterprise/meta/include/functions_meta.php:1575 +#: ../../include/functions_config.php:989 +msgid "Custom title2 login" +msgstr "Custom title2 login" + +#: ../../enterprise/meta/include/functions_meta.php:1602 +msgid "Custom background login" +msgstr "Custom background login" + +#: ../../enterprise/meta/include/functions_meta.php:1646 +#: ../../include/functions_config.php:929 +msgid "Font path" +msgstr "Font path" + +#: ../../enterprise/meta/include/functions_meta.php:1651 +#: ../../include/functions_config.php:1348 +msgid "Use data multiplier" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1663 +#: ../../include/functions_config.php:1307 +msgid "Custom report info" +msgstr "Custom report info" + +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1324 +msgid "Font family" +msgstr "Font family" + +#: ../../enterprise/meta/include/functions_meta.php:1708 +#: ../../include/functions_config.php:1049 +msgid "Use the legacy Visual Console" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1713 +#: ../../include/functions_config.php:1053 +msgid "Default expiration of the Visual Console item's cache" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1766 +#: ../../godmode/setup/performance.php:589 +#: ../../include/functions_config.php:795 +msgid "Use agent access graph" +msgstr "Use agent access graph" + +#: ../../enterprise/meta/include/functions_meta.php:1775 +msgid "Default block size migration agents" +msgstr "Default block size of agents migration" + +#: ../../enterprise/meta/include/functions_meta.php:1786 +msgid "Default block size execution event" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1804 +msgid "Node address default" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:56 +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../godmode/menu.php:80 +msgid "Component groups" +msgstr "Component groups" + +#: ../../enterprise/meta/include/functions_components_meta.php:60 +#: ../../enterprise/meta/include/functions_components_meta.php:84 +#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:150 +msgid "Local components" +msgstr "Local components" + +#: ../../enterprise/meta/include/functions_components_meta.php:64 +#: ../../enterprise/meta/include/functions_components_meta.php:88 +msgid "Network components" +msgstr "Network components" + +#: ../../enterprise/meta/include/functions_components_meta.php:68 +#: ../../enterprise/meta/include/functions_components_meta.php:92 +msgid "Plugin management" +msgstr "Plugin management" + +#: ../../enterprise/meta/include/functions_components_meta.php:72 +#: ../../enterprise/meta/include/functions_components_meta.php:105 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:68 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:234 +#: ../../enterprise/godmode/menu.php:69 +#: ../../enterprise/include/functions_policies.php:3752 +msgid "Inventory modules" +msgstr "Inventory modules" + +#: ../../enterprise/meta/include/functions_components_meta.php:98 +msgid "Create plugin" +msgstr "Create plugin" + +#: ../../enterprise/meta/include/functions_components_meta.php:100 +msgid "Edit plugin" +msgstr "Edit plugin" + +#: ../../enterprise/meta/include/functions_ui_meta.php:52 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:875 +#: ../../enterprise/include/functions_login.php:104 +#: ../../godmode/massive/massive_edit_plugins.php:867 +#: ../../godmode/massive/massive_edit_plugins.php:868 +#: ../../include/functions.php:1239 ../../include/ajax/double_auth.ajax.php:246 +#: ../../include/ajax/double_auth.ajax.php:343 +#: ../../include/ajax/double_auth.ajax.php:388 +#: ../../include/ajax/double_auth.ajax.php:503 +#: ../../include/functions_ui.php:283 +#: ../../include/class/Diagnostics.class.php:1818 +#: ../../include/functions_events.php:2706 +#: ../../include/functions_events.php:3056 +#: ../../operation/users/user_edit.php:975 +#: ../../operation/users/user_edit.php:1041 +msgid "Error" +msgstr "Error" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:121 +#: ../../enterprise/meta/include/functions_alerts_meta.php:140 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:254 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:161 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/include/functions_reporting.php:96 +#: ../../enterprise/include/functions_reporting.php:6966 +#: ../../enterprise/include/functions_reporting.php:6994 +#: ../../enterprise/include/functions_reporting.php:7055 +#: ../../godmode/agentes/configurar_agente.php:639 ../../godmode/menu.php:141 +#: ../../godmode/menu.php:217 ../../include/class/ConfigPEN.class.php:326 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "Templates" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:148 +#: ../../godmode/menu.php:224 +msgid "Commands" +msgstr "Commands" + +#: ../../enterprise/meta/include/reset_pass.php:94 +#: ../../enterprise/include/reset_pass.php:96 +msgid "User to reset password" +msgstr "User password to be reset" + +#: ../../enterprise/meta/include/reset_pass.php:98 +#: ../../enterprise/meta/index.php:649 +#: ../../enterprise/include/reset_pass.php:100 ../../index.php:835 +msgid "Reset password" +msgstr "Reset password" + +#: ../../enterprise/meta/include/reset_pass.php:141 +#: ../../enterprise/meta/include/reset_pass.php:144 +#: ../../enterprise/include/reset_pass.php:158 +#: ../../enterprise/include/reset_pass.php:161 +msgid "Reset password failed" +msgstr "Error resetting password" + +#: ../../enterprise/meta/include/reset_pass.php:148 +#: ../../enterprise/meta/general/login_page.php:243 +#: ../../enterprise/meta/general/login_page.php:285 +#: ../../enterprise/include/reset_pass.php:165 ../../general/login_page.php:385 +#: ../../general/login_page.php:427 +msgid "ERROR" +msgstr "ERROR" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already " +"exists in the database" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "" + +#: ../../enterprise/meta/index.php:262 ../../mobile/include/user.class.php:189 +#: ../../include/ajax/double_auth.ajax.php:487 ../../index.php:320 +msgid "Invalid code" +msgstr "Invalid code" + +#: ../../enterprise/meta/index.php:274 ../../index.php:332 +msgid "The code shouldn't be empty" +msgstr "The code should not be empty" + +#: ../../enterprise/meta/index.php:287 ../../index.php:345 +msgid "Expired login" +msgstr "Expired login" + +#: ../../enterprise/meta/index.php:294 ../../enterprise/meta/index.php:300 +#: ../../index.php:352 ../../index.php:358 +msgid "Login error" +msgstr "Login error" + +#: ../../enterprise/meta/index.php:567 ../../index.php:758 +msgid "Password changed successfully" +msgstr "Password changed successfully" + +#: ../../enterprise/meta/index.php:573 ../../index.php:764 +msgid "Failed to change password" +msgstr "Error changing the password" + +#: ../../enterprise/meta/index.php:592 ../../index.php:785 +msgid "Too much time since password change request" +msgstr "Too much time since password change request" + +#: ../../enterprise/meta/index.php:601 ../../index.php:794 +msgid "This user has not requested a password change" +msgstr "This user has not requested a password change" + +#: ../../enterprise/meta/index.php:617 ../../index.php:809 +msgid "Id user cannot be empty" +msgstr "ID user cannot be empty" + +#: ../../enterprise/meta/index.php:625 ../../index.php:817 +msgid "Error in reset password request" +msgstr "Error in reset password request" + +#: ../../enterprise/meta/index.php:633 ../../index.php:825 +msgid "This user doesn't have a valid email address" +msgstr "This user does not have a valid e-mail address" + +#: ../../enterprise/meta/index.php:650 ../../index.php:836 +msgid "This is an automatically sent message for user " +msgstr "This is an automatically sent message for user " + +#: ../../enterprise/meta/index.php:653 ../../index.php:839 +msgid "Please click the link below to reset your password" +msgstr "Please click on the link below to reset your password" + +#: ../../enterprise/meta/index.php:655 ../../index.php:841 +msgid "Reset your password" +msgstr "Reset your password" + +#: ../../enterprise/meta/index.php:659 ../../index.php:845 +msgid "Please do not reply to this email." +msgstr "Please do not reply to this e-mail." + +#: ../../enterprise/meta/index.php:665 ../../index.php:850 +msgid "Error at sending the email" +msgstr "Error sending the e-mail" + +#: ../../enterprise/meta/index.php:811 ../../enterprise/meta/index.php:890 +#: ../../index.php:1112 +msgid "Sorry! I can't find the page!" +msgstr "Sorry! I cannot find the page!" + +#: ../../enterprise/meta/agentsearch.php:100 +msgid "Search results for" +msgstr "Search results for" + +#: ../../enterprise/meta/agentsearch.php:101 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "Agents found" + +#: ../../enterprise/meta/agentsearch.php:114 +msgid "Descrtiption" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:121 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:328 +#: ../../enterprise/operation/agentes/tag_view.php:587 +#: ../../enterprise/operation/agentes/ver_agente.php:74 +#: ../../godmode/users/user_list.php:330 +#: ../../godmode/agentes/planned_downtime.editor.php:1038 +#: ../../mobile/operation/agents.php:85 ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:409 ../../mobile/operation/agents.php:412 +#: ../../mobile/operation/agent.php:211 ../../include/ajax/module.php:849 +#: ../../include/functions_treeview.php:645 +#: ../../include/functions_events.php:4089 ../../operation/search_users.php:37 +#: ../../operation/search_agents.php:57 +#: ../../operation/agentes/estado_agente.php:734 +#: ../../operation/agentes/ver_agente.php:858 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "Last contact" + +#: ../../enterprise/meta/agentsearch.php:275 +msgid "There are no agents included in this group" +msgstr "There are no agents included in this group" + +#: ../../enterprise/meta/agentsearch.php:289 +msgid "Policies found" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:383 +#: ../../enterprise/godmode/policies/policies.php:493 +#: ../../operation/search_policies.php:49 +msgid "Policy updated" +msgstr "Policy updated" + +#: ../../enterprise/meta/agentsearch.php:391 +#: ../../enterprise/godmode/policies/policies.php:501 +#: ../../operation/search_policies.php:57 +msgid "Pending update policy only database" +msgstr "Pending update for the policy, only for database changes" + +#: ../../enterprise/meta/agentsearch.php:399 +#: ../../enterprise/godmode/policies/policies.php:509 +#: ../../operation/search_policies.php:65 +msgid "Pending update policy" +msgstr "Pending update of policy" + +#: ../../enterprise/meta/agentsearch.php:420 +msgid "There are no policies included in this group" +msgstr "" + +#: ../../enterprise/meta/general/footer.php:28 ../../general/footer.php:47 +#, php-format +msgid "%s %s - Build %s - MR %s" +msgstr "" + +#: ../../enterprise/meta/general/footer.php:28 +msgid "Page generated at" +msgstr "Page generated as" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccesssaml.php:133 +#: ../../enterprise/meta/general/noaccess.php:25 ../../mobile/index.php:257 +#: ../../mobile/operation/agents.php:172 ../../mobile/operation/modules.php:194 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:99 +#: ../../mobile/operation/alerts.php:158 +#: ../../mobile/operation/visualmap.php:79 +#: ../../mobile/operation/visualmaps.php:91 +#: ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/events.php:468 ../../mobile/operation/tactical.php:81 +#: ../../general/noaccesssaml.php:133 ../../general/noaccess.php:133 +#: ../../general/noaccess2.php:15 ../../general/noaccess2.php:17 +msgid "You don't have access to this page" +msgstr "You do not have access to this page." + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../enterprise/meta/general/noaccess.php:29 ../../general/noaccess2.php:27 +msgid "No access" +msgstr "No access" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 +msgid "" +"Metaconsole needs previous activation from regular console, please contact " +"system administrator if you need assistance.
" +msgstr "" +"The Metaconsole needs previous activation from regular console, please " +"contact the system administrator if you need assistance.
" + +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../operation/tree.php:102 ../../operation/menu.php:53 +msgid "Tree view" +msgstr "Tree view" + +#: ../../enterprise/meta/general/main_header.php:109 +msgid "Groups view" +msgstr "Group view" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../operation/agentes/alerts_status.php:184 +msgid "Alerts view" +msgstr "Alerts view" + +#: ../../enterprise/meta/general/main_header.php:121 +msgid "Monitors view" +msgstr "Monitors view" + +#: ../../enterprise/meta/general/main_header.php:127 +msgid "Custom fields view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:158 +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../enterprise/include/functions_cron.php:1346 +#: ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:131 +msgid "Reports" +msgstr "Reports" + +#: ../../enterprise/meta/general/main_header.php:165 +msgid "Create new report" +msgstr "Create new report" + +#: ../../enterprise/meta/general/main_header.php:181 +msgid "Report templates" +msgstr "Report templates" + +#: ../../enterprise/meta/general/main_header.php:191 +#: ../../enterprise/include/functions_reporting.php:74 +msgid "Templates wizard" +msgstr "Templates Wizard" + +#: ../../enterprise/meta/general/main_header.php:201 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:618 +#: ../../enterprise/godmode/menu.php:116 +#: ../../enterprise/godmode/services/services.service.php:349 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:200 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:120 +#: ../../enterprise/include/functions_groups.php:65 +#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/services/services.service_map.php:165 +#: ../../enterprise/operation/services/services.treeview_services.php:61 +#: ../../enterprise/operation/services/services.treeview_services.php:67 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:553 +#: ../../include/lib/Dashboard/Widgets/service_map.php:327 +#: ../../operation/agentes/ver_agente.php:1318 +#: ../../general/first_task/service_list.php:25 +msgid "Services" +msgstr "Services" + +#: ../../enterprise/meta/general/main_header.php:219 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:88 +#: ../../enterprise/godmode/reporting/visual_console_template.php:89 +#: ../../enterprise/include/functions_enterprise.php:317 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:436 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" +msgstr "Visual Console" + +#: ../../enterprise/meta/general/main_header.php:226 +msgid "Favourite Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:234 +msgid "Template Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:241 +msgid "Wizard Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:264 +#: ../../enterprise/include/functions_enterprise.php:313 +#: ../../godmode/menu.php:325 ../../godmode/setup/setup.php:115 +#: ../../godmode/setup/setup.php:185 ../../include/functions_reports.php:862 +#: ../../include/functions_reports.php:866 +#: ../../include/functions_reports.php:870 +msgid "Netflow" +msgstr "Netflow" + +#: ../../enterprise/meta/general/main_header.php:270 +msgid "Live view" +msgstr "Live view" + +#: ../../enterprise/meta/general/main_header.php:316 +msgid "Agent management" +msgstr "Agent management" + +#: ../../enterprise/meta/general/main_header.php:322 +#: ../../enterprise/meta/general/main_header.php:424 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/local_components.php:123 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_network_components.php:201 +#: ../../godmode/modules/module_list.php:26 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "Module management" + +#: ../../enterprise/meta/general/main_header.php:328 +#: ../../enterprise/meta/general/main_header.php:440 +msgid "Alert management" +msgstr "Alert management" + +#: ../../enterprise/meta/general/main_header.php:334 +#: ../../enterprise/meta/general/main_header.php:449 +#: ../../enterprise/godmode/menu.php:237 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +msgid "Event alerts" +msgstr "Event alerts" + +#: ../../enterprise/meta/general/main_header.php:340 +msgid "Component management" +msgstr "Component management" + +#: ../../enterprise/meta/general/main_header.php:346 +msgid "Policy management" +msgstr "Policy management" + +#: ../../enterprise/meta/general/main_header.php:352 +msgid "Category management" +msgstr "Category management" + +#: ../../enterprise/meta/general/main_header.php:358 +#: ../../enterprise/meta/general/main_header.php:431 +msgid "Server management" +msgstr "Server management" + +#: ../../enterprise/meta/general/main_header.php:364 ../../godmode/menu.php:351 +msgid "License" +msgstr "License" + +#: ../../enterprise/meta/general/main_header.php:370 +msgid "Metasetup" +msgstr "Metasetup" + +#: ../../enterprise/meta/general/main_header.php:376 +#: ../../enterprise/meta/general/main_header.php:398 +#: ../../enterprise/meta/general/main_header.php:457 ../../godmode/menu.php:370 +#: ../../godmode/menu.php:488 ../../general/links_menu.php:17 +msgid "Links" +msgstr "Links" + +#: ../../enterprise/meta/general/main_header.php:467 +#: ../../godmode/extensions.php:26 +msgid "Extensions" +msgstr "Extensions" + +#: ../../enterprise/meta/general/main_header.php:516 +#: ../../enterprise/meta/general/main_header.php:522 +#: ../../general/header.php:48 ../../general/header.php:54 +msgid "All systems" +msgstr "All systems" + +#: ../../enterprise/meta/general/main_header.php:516 +#: ../../general/header.php:48 +msgid "Down" +msgstr "Down" + +#: ../../enterprise/meta/general/main_header.php:519 +#: ../../general/header.php:51 +msgid "servers down" +msgstr "servers down" + +#: ../../enterprise/meta/general/main_header.php:522 +#: ../../general/header.php:54 +msgid "Ready" +msgstr "Ready" + +#: ../../enterprise/meta/general/main_header.php:533 +#: ../../mobile/include/functions_web.php:32 +#: ../../mobile/include/ui.class.php:210 +#: ../../mobile/include/user.class.php:317 ../../mobile/operation/home.php:150 +#: ../../general/header.php:404 ../../general/header.php:406 +msgid "Logout" +msgstr "Logout" + +#: ../../enterprise/meta/general/main_header.php:550 +#: ../../general/header.php:231 +msgid "Configure autorefresh" +msgstr "Configure autorefresh" + +#: ../../enterprise/meta/general/main_header.php:567 +#: ../../enterprise/meta/general/main_header.php:579 +#: ../../general/header.php:291 ../../general/header.php:308 +msgid "Disabled autorefresh" +msgstr "Disable autorefresh" + +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../include/functions_reports.php:884 +msgid "Network traffic" +msgstr "Network traffic" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:232 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:251 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:276 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../godmode/reporting/graphs.php:87 +#: ../../godmode/reporting/visual_console_favorite.php:78 +#: ../../godmode/reporting/reporting_builder.php:529 +#: ../../godmode/reporting/reporting_builder.php:536 +#: ../../godmode/reporting/reporting_builder.php:3033 +#: ../../godmode/reporting/reporting_builder.php:3040 +#: ../../godmode/reporting/reporting_builder.php:3122 +#: ../../godmode/reporting/reporting_builder.php:3129 +#: ../../operation/menu.php:327 +#: ../../operation/reporting/reporting_viewer.php:129 +#: ../../operation/reporting/reporting_viewer.php:134 +#: ../../operation/reporting/custom_reporting.php:23 +#: ../../operation/reporting/graph_viewer.php:365 +msgid "Reporting" +msgstr "Reporting" + +#: ../../enterprise/meta/general/noaccesssaml.php:138 +#: ../../general/noaccesssaml.php:138 +msgid "" +"Access to this page is restricted to authorized users SAML only, please " +"contact system administrator if you need assistance." +msgstr "" + +#: ../../enterprise/meta/general/noaccesssaml.php:140 +#: ../../general/noaccesssaml.php:140 +#, php-format +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of " +"%s System Database" +msgstr "" + +#: ../../enterprise/meta/general/noaccess.php:34 ../../general/noaccess.php:138 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance." +msgstr "" + +#: ../../enterprise/meta/general/noaccess.php:36 ../../general/noaccess.php:140 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security " +"logs of %s System Database" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:130 +#: ../../enterprise/meta/general/login_page.php:171 +#: ../../mobile/include/user.class.php:283 ../../general/login_page.php:267 +msgid "Login" +msgstr "Login" + +#: ../../enterprise/meta/general/login_page.php:138 +#: ../../general/login_page.php:235 +msgid "Login with SAML" +msgstr "Login with SAML" + +#: ../../enterprise/meta/general/login_page.php:179 +#: ../../general/login_page.php:309 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ../../enterprise/meta/general/login_page.php:193 +#: ../../include/functions_config.php:2167 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS NEXT GENERATION" + +#: ../../enterprise/meta/general/login_page.php:219 +#: ../../enterprise/meta/general/login_page.php:222 +#: ../../enterprise/meta/general/login_page.php:236 +#: ../../enterprise/meta/general/login_page.php:239 +#: ../../enterprise/meta/general/login_page.php:256 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../general/login_page.php:361 ../../general/login_page.php:364 +#: ../../general/login_page.php:378 ../../general/login_page.php:381 +#: ../../general/login_page.php:398 ../../general/login_page.php:401 +msgid "Password reset" +msgstr "Password reset" + +#: ../../enterprise/meta/general/login_page.php:226 +#: ../../general/login_page.php:368 +msgid "INFO" +msgstr "INFO" + +#: ../../enterprise/meta/general/login_page.php:227 +#: ../../general/login_page.php:369 +msgid "An email has been sent to your email address" +msgstr "An e-mail has been sent to your e-mail address" + +#: ../../enterprise/meta/general/login_page.php:263 +#: ../../general/login_page.php:405 +msgid "SUCCESS" +msgstr "SUCCESS" + +#: ../../enterprise/meta/general/login_page.php:278 +#: ../../enterprise/meta/general/login_page.php:281 +#: ../../enterprise/include/functions_login.php:141 +#: ../../general/login_page.php:420 ../../general/login_page.php:423 +#: ../../general/login_page.php:552 ../../general/login_page.php:555 +msgid "Login failed" +msgstr "Login failed" + +#: ../../enterprise/meta/general/login_page.php:303 +#: ../../enterprise/meta/general/login_page.php:306 +#: ../../enterprise/meta/general/login_page.php:310 +#: ../../general/login_page.php:445 ../../general/login_page.php:448 +#: ../../general/login_page.php:452 +msgid "Logged out" +msgstr "Logged out" + +#: ../../enterprise/meta/general/login_page.php:311 +#: ../../mobile/include/user.class.php:241 ../../general/login_page.php:453 +#, php-format +msgid "" +"Your session has ended. Please close your browser window to close this %s " +"session." +msgstr "" + +#: ../../enterprise/load_enterprise.php:375 +#: ../../enterprise/load_enterprise.php:440 +msgid "Invalid licence." +msgstr "Invalid license" + +#: ../../enterprise/load_enterprise.php:375 +msgid "Please contact your system administrator." +msgstr "Please contact your system administrator" + +#: ../../enterprise/load_enterprise.php:440 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "" + +#: ../../enterprise/load_enterprise.php:441 +#, php-format +msgid "Or disable %s enterprise" +msgstr "" + +#: ../../enterprise/load_enterprise.php:538 +#: ../../enterprise/godmode/alerts/alert_events_list.php:758 +#: ../../enterprise/godmode/reporting/aws_view.php:154 +#: ../../enterprise/godmode/wizards/Cloud.class.php:305 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3062 +#: ../../godmode/setup/license.php:143 ../../mobile/operation/events.php:570 +#: ../../include/ajax/alert_list.ajax.php:266 +#: ../../include/ajax/alert_list.ajax.php:292 +#: ../../operation/agentes/alerts_status.php:541 +#: ../../operation/agentes/alerts_status.php:578 +#: ../../operation/agentes/alerts_status.php:611 +#: ../../operation/agentes/alerts_status.php:697 +#: ../../operation/snmpconsole/snmp_view.php:972 +#: ../../operation/snmpconsole/snmp_view.php:1133 +#: ../../operation/snmpconsole/snmp_view.php:1186 +msgid "Validate" +msgstr "Validate" + +#: ../../enterprise/load_enterprise.php:542 +#: ../../enterprise/load_enterprise.php:836 +msgid "Request new licence" +msgstr "Request new license" + +#: ../../enterprise/load_enterprise.php:622 +msgid "" +"Metaconsole unreached

" +"This node has a metaconsole license and cannot contact with the metaconsole." +msgstr "" +"Metaconsole unreached

" +"This node has a Metaconsole license and cannot contact with the Metaconsole." + +#: ../../enterprise/load_enterprise.php:639 +#: ../../enterprise/load_enterprise.php:646 +#: ../../enterprise/load_enterprise.php:656 +#: ../../enterprise/load_enterprise.php:662 +#, php-format +msgid "" +"License exceeded

This " +"license allows %d agents and you have %d agents configured." +msgstr "" + +#: ../../enterprise/load_enterprise.php:640 +#: ../../enterprise/load_enterprise.php:648 +#: ../../enterprise/load_enterprise.php:657 +#: ../../enterprise/load_enterprise.php:664 +#: ../../enterprise/load_enterprise.php:677 +#, php-format +msgid "Please contact %s to extend the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:647 +#: ../../enterprise/load_enterprise.php:649 +#: ../../enterprise/load_enterprise.php:663 +#: ../../enterprise/load_enterprise.php:665 +#: ../../enterprise/load_enterprise.php:693 +#: ../../enterprise/load_enterprise.php:695 +msgid "" +"This console will work in limited mode. Enterprise features will not " +"function." +msgstr "" + +#: ../../enterprise/load_enterprise.php:676 +#, php-format +msgid "" +"License exceeded

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

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

You cannot get any updates until you have renewed the license." + +#: ../../enterprise/load_enterprise.php:687 +#: ../../enterprise/load_enterprise.php:694 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:702 +#, php-format +msgid "" +"This license is outside of " +"support.

This %s installation will continue working " +"normally and without limitations, but without support or updates." +msgstr "" + +#: ../../enterprise/load_enterprise.php:832 +msgid "Renew" +msgstr "Renew" + +#: ../../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:49 +#: ../../enterprise/extensions/disabled/check_acls.php:142 +msgid "System incidents reading" +msgstr "Read system issues" + +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:143 +msgid "System incidents writing" +msgstr "Write system issues" + +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:144 +msgid "System incidents management" +msgstr "Manage system issues" + +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:145 +msgid "Agents reading" +msgstr "Read agents" + +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +#: ../../include/functions_menu.php:502 +msgid "Agents management" +msgstr "Manage agents" + +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:147 +msgid "Agents disable" +msgstr "Disable agents" + +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:148 +msgid "Alerts editing" +msgstr "Edit alerts" + +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +#: ../../godmode/menu.php:125 +msgid "Users management" +msgstr "Manage users" + +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:150 +msgid "Database management" +msgstr "Database management" + +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:151 +msgid "Alerts management" +msgstr "Manage alerts" + +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:152 +msgid "Reports reading" +msgstr "Read reports" + +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:153 +msgid "Reports writing" +msgstr "Write reports" + +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:154 +msgid "Reports management" +msgstr "Manage reports" + +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:155 +msgid "Events reading" +msgstr "Read events" + +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:156 +msgid "Events writing" +msgstr "Write events" + +#: ../../enterprise/extensions/disabled/check_acls.php:64 +#: ../../enterprise/extensions/disabled/check_acls.php:157 +msgid "Events management" +msgstr "Manage events" + +#: ../../enterprise/extensions/disabled/check_acls.php:65 +#: ../../enterprise/extensions/disabled/check_acls.php:158 +msgid "Systems management" +msgstr "Systems management" + +#: ../../enterprise/extensions/disabled/check_acls.php:118 +msgid "There are no defined users" +msgstr "There are no defined users." + +#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/menu.php:117 +msgid "Module tags" +msgstr "Module tags" + +#: ../../enterprise/extensions/disabled/check_acls.php:206 +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:217 +msgid "Only admin users can see this section." +msgstr "Only admin users can see this section." + +#: ../../enterprise/extensions/disabled/check_acls.php:224 +msgid "Check ACL" +msgstr "Check ACL" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +msgid "Element Id" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/godmode/policies/policy_queue.php:479 +#: ../../enterprise/godmode/policies/policy_linking.php:125 +msgid "Node" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:150 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:57 +#: ../../enterprise/godmode/reporting/visual_console_template.php:58 +#: ../../godmode/reporting/map_builder.php:56 +#: ../../godmode/reporting/visual_console_favorite.php:49 +msgid "Visual Console List" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:155 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:61 +#: ../../godmode/reporting/visual_console_favorite.php:54 +#: ../../godmode/reporting/visual_console_favorite.php:78 +msgid "Visual Favourite Console" +msgstr "Favorite Visual Console" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:161 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:68 +#: ../../enterprise/godmode/reporting/visual_console_template.php:69 +#: ../../godmode/reporting/map_builder.php:67 +#: ../../godmode/reporting/visual_console_favorite.php:60 +msgid "Visual Console Template" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:166 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:73 +#: ../../enterprise/godmode/reporting/visual_console_template.php:74 +#: ../../godmode/reporting/map_builder.php:72 +#: ../../godmode/reporting/visual_console_favorite.php:65 +msgid "Visual Console Template Wizard" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:171 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:183 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:427 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:430 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:80 +#: ../../enterprise/godmode/reporting/visual_console_template.php:81 +#: ../../godmode/reporting/map_builder.php:77 +#: ../../godmode/reporting/visual_console_favorite.php:71 +msgid "Visual Console Manager" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:212 +#, php-format +msgid "%d elements updated" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:213 +msgid "There was an error updating the elements" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:248 +#: ../../include/functions_visual_map_editor.php:991 +#: ../../include/rest-api/models/VisualConsole/Item.php:2354 +msgid "By status weight" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:249 +#: ../../include/functions_visual_map_editor.php:992 +#: ../../include/rest-api/models/VisualConsole/Item.php:2355 +msgid "By critical elements" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:251 +msgid "Type of the status calculation" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:257 +#: ../../include/functions_visual_map_editor.php:1012 +#: ../../include/rest-api/models/VisualConsole/Item.php:2353 +msgid "By default" +msgstr "By default" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:264 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:154 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:208 +#: ../../godmode/reporting/graph_builder.graph_editor.php:201 +#: ../../godmode/reporting/graph_builder.graph_editor.php:370 +msgid "Weight" +msgstr "Weight" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:279 +#: ../../enterprise/godmode/services/services.elements.php:735 +#: ../../include/functions_visual_map_editor.php:1058 +#: ../../include/rest-api/models/VisualConsole/Item.php:2392 +msgid "Critical weight" +msgstr "Critical weight" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:294 +#: ../../enterprise/godmode/services/services.elements.php:739 +#: ../../include/functions_visual_map_editor.php:1084 +#: ../../include/rest-api/models/VisualConsole/Item.php:2406 +msgid "Warning weight" +msgstr "Warning weight" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:309 +msgid "Visual Consoles" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:313 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../operation/search_maps.php:29 +msgid "Elements" +msgstr "Elements" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:319 +msgid "Visual Console Information" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:320 +msgid "There are no items selected." +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:323 +msgid "" +"Massive editing of the procedure for calculating the status of elements " +"linked to a visual console" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "Translate string" + +#: ../../enterprise/extensions/ipam.php:170 +#: ../../enterprise/extensions/ipam.php:423 ../../extensions/files_repo.php:119 +#: ../../extensions/files_repo.php:207 +msgid "Operation view" +msgstr "Operation view" + +#: ../../enterprise/extensions/ipam.php:185 +#: ../../enterprise/extensions/ipam.php:407 +msgid "Subnetworks calculator" +msgstr "Subnetworks calculator" + +#: ../../enterprise/extensions/ipam.php:194 +#: ../../enterprise/extensions/ipam.php:431 +msgid "Vlan config" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:204 +#: ../../enterprise/extensions/ipam.php:441 +msgid "Vlan wizard" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:219 +msgid "Vlan statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:231 +#: ../../enterprise/extensions/ipam.php:451 +msgid "Supernet config" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:242 +msgid "Supernet statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:254 +#: ../../enterprise/extensions/ipam.php:461 +msgid "Supernet map" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:271 +#: ../../enterprise/extensions/ipam/ipam_list.php:178 +msgid "Manage addresses" +msgstr "Manage addresses" + +#: ../../enterprise/extensions/ipam.php:279 +msgid "Massive operations" +msgstr "Massive operations" + +#: ../../enterprise/extensions/ipam.php:287 +#: ../../enterprise/extensions/ipam/ipam_list.php:184 +msgid "Addresses view" +msgstr "Addresses view" + +#: ../../enterprise/extensions/ipam.php:296 +#: ../../enterprise/extensions/ipam.php:308 +#: ../../enterprise/extensions/ipam.php:415 ../../extensions/files_repo.php:115 +#: ../../extensions/files_repo.php:204 +msgid "Administration view" +msgstr "Management view" + +#: ../../enterprise/extensions/ipam.php:331 +#: ../../enterprise/extensions/ipam.php:478 +#: ../../enterprise/extensions/ipam.php:518 +#: ../../enterprise/extensions/ipam.php:519 +msgid "IPAM" +msgstr "IPAM" + +#: ../../enterprise/extensions/vmware.php:43 +msgid "Failed to initialize VMware extension." +msgstr "Error initializing VMware extension" + +#: ../../enterprise/extensions/vmware.php:86 +#: ../../enterprise/extensions/vmware/vmware_view.php:1336 +msgid "VMware View" +msgstr "VMware view" + +#: ../../enterprise/extensions/backup/main.php:79 +#, php-format +msgid "%s database backup utility" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:91 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:82 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 +#: ../../enterprise/operation/log/log_viewer.php:329 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:133 +msgid "Not supported in Windows systems" +msgstr "Not supported for Windows systems" + +#: ../../enterprise/extensions/backup/main.php:94 +msgid "Filter backups" +msgstr "Filter backups" + +#: ../../enterprise/extensions/backup/main.php:106 +msgid "Path backups" +msgstr "Path backups" + +#: ../../enterprise/extensions/backup/main.php:132 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/include/functions_inventory.php:712 +#: ../../enterprise/include/functions_reporting_pdf.php:652 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:739 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/functions_reporting.php:1967 +#: ../../enterprise/include/functions_reporting.php:2004 +#: ../../enterprise/include/functions_reporting.php:2039 +#: ../../enterprise/include/functions_reporting.php:2057 +#: ../../enterprise/operation/agentes/agent_inventory.php:75 +#: ../../enterprise/operation/inventory/inventory.php:241 +#: ../../extensions/insert_data.php:193 ../../extensions/users_connected.php:79 +#: ../../godmode/admin_access_logs.php:198 +#: ../../godmode/alerts/configure_alert_special_days.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1676 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:2139 +#: ../../include/functions_reporting_html.php:2146 +#: ../../include/functions_reporting_html.php:2151 +#: ../../include/functions_reporting_html.php:2197 +#: ../../include/functions_reporting_html.php:4690 +#: ../../include/functions.php:2889 ../../include/functions_reporting.php:3205 +#: ../../include/functions_reporting.php:3246 +#: ../../include/functions_events.php:6464 +#: ../../operation/incidents/list_integriaims_incidents.php:167 +#: ../../operation/reporting/graph_viewer.php:243 +#: ../../operation/events/events.build_table.php:695 +#: ../../general/logon_ok.php:247 +msgid "Date" +msgstr "Date" + +#: ../../enterprise/extensions/backup/main.php:133 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../godmode/events/event_responses.editor.php:112 +#: ../../include/functions_visual_map_editor.php:126 +#: ../../include/functions_visual_map_editor.php:179 +#: ../../include/functions_visual_map_editor.php:770 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 +#: ../../include/rest-api/models/VisualConsole/Item.php:1873 +#: ../../include/functions_filemanager.php:621 +#: ../../operation/incidents/incident_detail.php:477 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:126 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:300 +msgid "Size" +msgstr "Size" + +#: ../../enterprise/extensions/backup/main.php:135 +#: ../../enterprise/include/functions_tasklist.php:345 +#: ../../enterprise/include/functions_tasklist.php:376 +#: ../../include/functions_cron.php:622 ../../include/functions_cron.php:652 +#: ../../include/class/Diagnostics.class.php:2166 +msgid "Path" +msgstr "Path" + +#: ../../enterprise/extensions/backup/main.php:195 +#: ../../enterprise/godmode/services/services.service.php:644 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:423 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2306 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../enterprise/include/functions_reporting_csv.php:1386 +#: ../../enterprise/include/functions_reporting_csv.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1628 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1680 +#: ../../enterprise/include/class/DatabaseHA.class.php:389 +#: ../../enterprise/include/class/DatabaseHA.class.php:626 +#: ../../enterprise/include/class/DatabaseHA.class.php:728 +#: ../../enterprise/include/class/AgentRepository.class.php:881 +#: ../../enterprise/include/functions_reporting.php:1705 +#: ../../enterprise/include/functions_reporting.php:2613 +#: ../../enterprise/include/functions_reporting.php:2877 +#: ../../enterprise/include/functions_reporting.php:3606 +#: ../../enterprise/include/functions_reporting.php:3875 +#: ../../enterprise/include/functions_reporting.php:4461 +#: ../../enterprise/include/functions_reporting.php:5377 +#: ../../enterprise/include/functions_reporting.php:5415 +#: ../../enterprise/include/functions_services.php:2811 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:422 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/setup/setup_general.php:521 +#: ../../godmode/setup/setup_general.php:539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2104 +#: ../../include/functions_reporting_html.php:599 +#: ../../include/functions_reporting_html.php:770 +#: ../../include/functions_reporting_html.php:2520 +#: ../../include/functions_reporting_html.php:3570 +#: ../../include/functions_db.php:1781 +#: ../../include/class/ConfigPEN.class.php:662 +#: ../../include/class/ConfigPEN.class.php:686 +#: ../../include/class/HelpFeedBack.class.php:368 +#: ../../include/class/CredentialStore.class.php:1114 +#: ../../include/class/ModuleTemplates.class.php:1276 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:642 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:312 +#: ../../operation/agentes/pandora_networkmap.editor.php:572 +#: ../../operation/snmpconsole/snmp_browser.php:580 +msgid "OK" +msgstr "OK" + +#: ../../enterprise/extensions/backup/main.php:199 +msgid "Lost" +msgstr "Lost" + +#: ../../enterprise/extensions/backup/main.php:211 +#: ../../extensions/files_repo/files_repo_list.php:96 +msgid "Download" +msgstr "Download" + +#: ../../enterprise/extensions/backup/main.php:243 +msgid "Backups list" +msgstr "List of backups" + +#: ../../enterprise/extensions/backup/main.php:248 +msgid "Create backup" +msgstr "Create backup" + +#: ../../enterprise/extensions/backup/main.php:265 +msgid "Path to save backup" +msgstr "Path to save backup" + +#: ../../enterprise/extensions/backup/main.php:265 +msgid "It is important that Apache can read and write on the selected path" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:37 +#, php-format +msgid "Created group %s" +msgstr "Created group %s" + +#: ../../enterprise/extensions/csv_import_group/main.php:38 +#, php-format +msgid "Could not create group %s" +msgstr "Could not create group %s" + +#: ../../enterprise/extensions/csv_import_group/main.php:45 +msgid "File processed" +msgstr "File processed" + +#: ../../enterprise/extensions/csv_import_group/main.php:53 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1356 +msgid "CSV format" +msgstr "CSV format" + +#: ../../enterprise/extensions/csv_import_group/main.php:54 +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_group/main.php:70 +#: ../../enterprise/include/class/CSVImportAgents.class.php:144 +msgid "Upload file" +msgstr "Upload file" + +#: ../../enterprise/extensions/csv_import_group/main.php:73 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1360 +#: ../../enterprise/include/class/CSVImportAgents.class.php:161 +msgid "Separator" +msgstr "Separator" + +#: ../../enterprise/extensions/csv_import_group/main.php:86 +msgid "Upload CSV file" +msgstr "Upload CSV file" + +#: ../../enterprise/extensions/csv_import_group/main.php:91 +#: ../../enterprise/include/class/CSVImportAgents.class.php:196 +#: ../../include/functions_filemanager.php:800 +msgid "Go" +msgstr "Go" + +#: ../../enterprise/extensions/ipam/ipam_network.php:119 +msgid "No addresses found on this network" +msgstr "No addresses found on this network" + +#: ../../enterprise/extensions/ipam/ipam_network.php:256 +msgid "Edit address" +msgstr "Edit address" + +#: ../../enterprise/extensions/ipam/ipam_network.php:261 +msgid "Disabled address" +msgstr "Disabled address" + +#: ../../enterprise/extensions/ipam/ipam_network.php:261 +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:323 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:276 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:253 +#: ../../enterprise/extensions/ipam/ipam_excel.php:107 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1732 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:192 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:42 +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export_form.php:99 +#: ../../godmode/setup/setup_general.php:412 +#: ../../operation/agentes/ver_agente.php:995 +msgid "Address" +msgstr "Address" + +#: ../../enterprise/extensions/ipam/ipam_network.php:324 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1733 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:197 +#: ../../include/class/Diagnostics.class.php:725 +#: ../../include/class/Diagnostics.class.php:743 +msgid "Hostname" +msgstr "Hostname" + +#: ../../enterprise/extensions/ipam/ipam_network.php:328 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1395 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1738 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:231 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "Managed" + +#: ../../enterprise/extensions/ipam/ipam_network.php:329 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1401 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1479 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1739 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:241 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "Reserved" + +#: ../../enterprise/extensions/ipam/ipam_network.php:330 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../enterprise/include/class/DatabaseHA.class.php:204 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3148 +#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/agentes/module_manager_editor_common.php:977 +#: ../../godmode/agentes/module_manager_editor_common.php:987 +#: ../../godmode/massive/massive_edit_agents.php:717 +#: ../../godmode/alerts/alert_list.list.php:128 +#: ../../godmode/alerts/configure_alert_template.php:825 +#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_reporting_html.php:2620 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:343 +msgid "Enabled" +msgstr "Enabled" + +#: ../../enterprise/extensions/ipam/ipam_network.php:331 +#: ../../enterprise/extensions/ipam/ipam_network.php:596 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1736 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:144 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:268 +#: ../../enterprise/extensions/ipam/ipam_massive.php:83 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/admin_access_logs.php:200 +#: ../../mobile/operation/events.php:561 +#: ../../include/functions_reporting_html.php:4692 +#: ../../include/functions.php:2889 ../../include/ajax/events.php:1236 +#: ../../operation/users/user_edit.php:590 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:461 +#: ../../general/logon_ok.php:249 +msgid "Comments" +msgstr "Comments" + +#: ../../enterprise/extensions/ipam/ipam_network.php:342 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1734 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1132 +msgid "Alive" +msgstr "Alive" + +#: ../../enterprise/extensions/ipam/ipam_network.php:351 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1137 +msgid "Not alive" +msgstr "Not alive" + +#: ../../enterprise/extensions/ipam/ipam_network.php:382 +#: ../../enterprise/extensions/ipam/ipam_network.php:457 +#: ../../enterprise/extensions/ipam/ipam_network.php:499 +msgid "Change to automatic mode" +msgstr "Change to automatic mode" + +#: ../../enterprise/extensions/ipam/ipam_network.php:391 +#: ../../enterprise/extensions/ipam/ipam_network.php:466 +#: ../../enterprise/extensions/ipam/ipam_network.php:508 +msgid "Change to manual mode" +msgstr "Change to manual mode" + +#: ../../enterprise/extensions/ipam/ipam_network.php:587 +msgid "Add comments" +msgstr "Add comments" + +#: ../../enterprise/extensions/ipam/ipam_network.php:615 +msgid "Update agent address" +msgstr "Update agent address" + +#: ../../enterprise/extensions/ipam/ipam_network.php:781 +msgid "Please, uncheck auto option to set manual agent." +msgstr "Please, uncheck auto option to set manual agent." + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:50 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:97 +msgid "There is no supernet name. Please introduce a name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:54 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:101 +msgid "There is no supernet address. Please introduce a address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:58 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:105 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:62 +msgid "There is no valid address. Please introduce a address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:66 +msgid "There is no valid mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:80 +msgid "Supernet created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:82 +msgid "Supernet not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:86 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:131 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:125 +msgid "Supernet updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:127 +msgid "Supernet not updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:152 +msgid "Could not be deleted, please select supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:181 +msgid "Network name cannot be repeated in this supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:188 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:150 +msgid "Successfully added networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:192 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:154 +msgid "Network could not be added" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:197 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:159 +msgid "Network name could not be added, please select network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:202 +msgid "supernet name could not be added, please select supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:226 +msgid "Could not be deleted, please select supernet and network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:266 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:159 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:40 +msgid "Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:290 +#: ../../enterprise/extensions/ipam/ipam_excel.php:108 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 +msgid "Mask" +msgstr "Mask" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:372 +#: ../../enterprise/extensions/ipam/ipam_excel.php:109 +msgid "Subneting Mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:340 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:460 +msgid "Update Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:347 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:541 +msgid "New Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:370 +msgid "Address / Masks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:373 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:272 +msgid "Networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:390 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:453 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:284 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:340 +msgid "Not assigned networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:447 +msgid "Delete network to supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:467 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:487 +msgid "Add network to supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:470 +msgid "Next network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:500 +msgid "Delete Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:521 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:393 +#: ../../include/functions_visual_map_editor.php:725 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:558 +msgid "Show statistics" +msgstr "Show statistics" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:534 +msgid "No Supernet found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:108 +msgid "No networks found" +msgstr "No networks found" + +#: ../../enterprise/extensions/ipam/ipam_list.php:134 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:65 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:160 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:180 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1676 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:146 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:65 +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +#: ../../godmode/wizards/HostDevices.class.php:912 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:432 +#: ../../include/functions_ui.php:853 ../../operation/menu.php:74 +#: ../../operation/servers/recon_view.php:100 +msgid "Network" +msgstr "Network" + +#: ../../enterprise/extensions/ipam/ipam_list.php:137 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1217 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1679 +#: ../../enterprise/extensions/ipam/ipam_editor.php:137 +#: ../../godmode/events/event_responses.editor.php:105 +msgid "Location" +msgstr "Location" + +#: ../../enterprise/extensions/ipam/ipam_list.php:141 +msgid "IPs" +msgstr "IPs" + +#: ../../enterprise/extensions/ipam/ipam_list.php:142 +#: ../../enterprise/operation/services/services.service.php:180 +#: ../../enterprise/operation/services/services.list.php:436 +#: ../../extensions/agents_alerts.php:55 +#: ../../extensions/agents_modules.php:316 +#: ../../operation/agentes/group_view.php:61 +#: ../../operation/agentes/tactical.php:45 +msgid "Last update" +msgstr "Last update" + +#: ../../enterprise/extensions/ipam/ipam_list.php:164 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1206 +#: ../../enterprise/godmode/services/services.service.php:396 +#: ../../enterprise/include/class/VMware.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:502 +#: ../../enterprise/include/class/Aws.cloud.php:1212 +#: ../../enterprise/include/class/MySQL.app.php:565 +#: ../../enterprise/include/class/Oracle.app.php:546 +#: ../../enterprise/operation/services/services.list.php:234 +#: ../../enterprise/operation/services/services.table_services.php:213 +#: ../../godmode/wizards/HostDevices.class.php:803 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:531 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "Manual" +msgstr "Manual" + +#: ../../enterprise/extensions/ipam/ipam_list.php:169 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1772 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1773 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1774 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:291 +#: ../../enterprise/include/functions_tasklist.php:439 +#: ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1326 +#: ../../include/functions_cron.php:686 +#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:538 +#: ../../operation/agentes/estado_generalagente.php:303 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "Never" + +#: ../../enterprise/extensions/ipam/ipam_list.php:192 +msgid "Edit network" +msgstr "Edit network" + +#: ../../enterprise/extensions/ipam/ipam_list.php:196 +msgid "Delete network" +msgstr "Delete network" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:409 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:557 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:611 +msgid "Interfaces" +msgstr "Interfaces" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:220 +msgid "Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +msgid "succesfully created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +msgid "not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +msgid "exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:71 +msgid "please, select VLAN to be created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:230 +msgid "Please enter adress, for search vlans" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:262 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:444 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:733 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:517 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:774 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:309 +msgid "SNMP community" +msgstr "SNMP community" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:271 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:447 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:736 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../enterprise/include/functions_hostdevices.php:64 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:520 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:777 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:767 +#: ../../include/class/AgentWizard.class.php:322 +msgid "SNMP version" +msgstr "SNMP version" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:298 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:480 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:769 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../enterprise/include/functions_hostdevices.php:124 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:533 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:791 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../include/functions_snmp_browser.php:730 +msgid "Auth user" +msgstr "User authentication" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:307 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:482 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:771 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/include/functions_hostdevices.php:135 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:535 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../include/functions_snmp_browser.php:732 +msgid "Auth password" +msgstr "Password authentication" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:323 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:486 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:775 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:649 +#: ../../enterprise/include/functions_hostdevices.php:151 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:539 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:797 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:791 +#: ../../include/functions_snmp_browser.php:736 +msgid "Privacy method" +msgstr "Privacy method" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:326 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/include/functions_hostdevices.php:156 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../include/functions_snmp_browser.php:737 +msgid "DES" +msgstr "DES" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:327 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/include/functions_hostdevices.php:157 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../include/functions_snmp_browser.php:737 +msgid "AES" +msgstr "AES" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:336 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:488 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:777 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:541 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:799 +msgid "privacy pass" +msgstr "privacy pass" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:346 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:491 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:780 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:653 +#: ../../enterprise/include/functions_hostdevices.php:182 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:544 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:802 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:795 +#: ../../include/functions_snmp_browser.php:741 +msgid "Auth method" +msgstr "Authentication method" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:349 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/include/functions_hostdevices.php:187 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../include/class/Diagnostics.class.php:2166 +#: ../../include/functions_snmp_browser.php:742 +msgid "MD5" +msgstr "MD5" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:350 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/include/functions_hostdevices.php:188 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../include/functions_snmp_browser.php:742 +msgid "SHA" +msgstr "SHA" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:359 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:493 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:782 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:655 +#: ../../enterprise/include/functions_hostdevices.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:546 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:797 +#: ../../include/functions_snmp_browser.php:743 +msgid "Security level" +msgstr "Security level" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:362 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:496 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:785 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../enterprise/include/functions_hostdevices.php:202 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:549 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:807 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:800 +#: ../../include/functions_snmp_browser.php:746 +msgid "Not auth and not privacy method" +msgstr "Non-authenticated and non-private method" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:363 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:497 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:786 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +#: ../../enterprise/include/functions_hostdevices.php:203 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:550 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:808 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:801 +#: ../../include/functions_snmp_browser.php:747 +msgid "Auth and not privacy method" +msgstr "Authenticated and non-private method" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:364 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:498 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:787 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:660 +#: ../../enterprise/include/functions_hostdevices.php:204 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:551 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:809 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:802 +#: ../../include/functions_snmp_browser.php:748 +msgid "Auth and privacy method" +msgstr "Authenticated and private method" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:373 +#: ../../enterprise/include/functions_hostdevices.php:113 +msgid "Context" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:396 +msgid "Run" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:408 +msgid "Vlan name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:423 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:278 +msgid "Created" +msgstr "Created" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:419 +msgid "No vlans found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:109 +#: ../../enterprise/extensions/ipam/ipam_action.php:172 +msgid "Incorrect format in Subnet field" +msgstr "Wrong format in Subnet field" + +#: ../../enterprise/extensions/ipam/ipam_action.php:115 +#: ../../enterprise/extensions/ipam/ipam_action.php:178 +msgid "The location is not filled, please add a location." +msgstr "The location has not been indicated, please add a location." + +#: ../../enterprise/extensions/ipam/ipam_action.php:140 +#, php-format +msgid "Could not be created: %s" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:191 +#: ../../enterprise/extensions/ipam/ipam_massive.php:48 +#: ../../enterprise/godmode/modules/local_components.php:341 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:105 +#: ../../enterprise/godmode/policies/policy_modules.php:1220 +#: ../../enterprise/godmode/policies/policies.php:250 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 +#: ../../enterprise/godmode/alerts/alert_events.php:429 +#: ../../enterprise/godmode/alerts/alert_events_list.php:100 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:176 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:109 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:127 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../godmode/modules/manage_network_components.php:384 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/planned_downtime.editor.php:512 +#: ../../godmode/alerts/configure_alert_command.php:113 +#: ../../godmode/alerts/alert_templates.php:163 +#: ../../godmode/alerts/configure_alert_template.php:507 +#: ../../godmode/alerts/alert_special_days.php:227 +#: ../../godmode/alerts/alert_list.php:94 +#: ../../godmode/alerts/alert_list.php:296 ../../godmode/setup/gis.php:38 +#: ../../include/functions_alerts.php:2825 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:202 +#: ../../operation/agentes/pandora_networkmap.php:500 +#: ../../operation/snmpconsole/snmp_view.php:138 +#: ../../operation/incidents/incident.php:158 +msgid "Could not be updated" +msgstr "Could not be updated" + +#: ../../enterprise/extensions/ipam/ipam_action.php:297 +#: ../../operation/agentes/pandora_networkmap.view.php:151 +msgid "Could not be updated." +msgstr "Could not be updated." + +#: ../../enterprise/extensions/ipam/ipam_action.php:303 +msgid "Successfully updated." +msgstr "Successfully updated" + +#: ../../enterprise/extensions/ipam/ipam_action.php:308 +#: ../../include/functions_reporting.php:2198 +msgid "No changes found." +msgstr "No changes found" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:104 +#: ../../enterprise/extensions/ipam/ipam_excel.php:174 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../extensions/api_checker.php:161 +#: ../../godmode/modules/module_list.php:58 +#: ../../godmode/groups/group_list.php:679 +#: ../../godmode/groups/modu_group_list.php:234 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../godmode/agentes/agent_manager.php:214 +#: ../../godmode/agentes/agent_incidents.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:206 +#: ../../godmode/alerts/alert_commands.php:413 +#: ../../godmode/setup/os.list.php:31 ../../include/functions_events.php:5997 +#: ../../operation/incidents/incident.php:419 +#: ../../operation/incidents/list_integriaims_incidents.php:261 +#: ../../operation/events/events.build_table.php:146 +msgid "ID" +msgstr "ID" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:110 +#: ../../enterprise/extensions/ipam/ipam_excel.php:177 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1383 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1685 +msgid "Total IPs" +msgstr "Total IPs" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:111 +#: ../../enterprise/extensions/ipam/ipam_excel.php:178 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1686 +msgid "Alive IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:112 +#: ../../enterprise/extensions/ipam/ipam_excel.php:179 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1687 +msgid "Occupied %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:113 +#: ../../enterprise/extensions/ipam/ipam_excel.php:180 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1688 +msgid "Available %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:114 +#: ../../enterprise/extensions/ipam/ipam_excel.php:181 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1689 +msgid "Managed IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:115 +#: ../../enterprise/extensions/ipam/ipam_excel.php:182 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1690 +msgid "Managed %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:116 +#: ../../enterprise/extensions/ipam/ipam_excel.php:183 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1691 +msgid "Unmanaged %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:117 +#: ../../enterprise/extensions/ipam/ipam_excel.php:184 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1692 +msgid "Reserved IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:118 +#: ../../enterprise/extensions/ipam/ipam_excel.php:185 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1693 +msgid "Reserved %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:119 +#: ../../enterprise/extensions/ipam/ipam_excel.php:186 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1694 +msgid "Not reserved %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:81 +msgid "Current Networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "Please, create networks to assign to " +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "all networks selected" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:130 +msgid "Please, create networks to assign to" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:288 +msgid "Export to Excel" +msgstr "Export to Excel" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:341 +msgid "Assign next free IP" +msgstr "Assign next free IP" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:360 +msgid "Next available IP" +msgstr "Next available IP" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1191 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:272 +#: ../../include/ajax/events.php:1234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:66 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:429 +msgid "Details" +msgstr "Details" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1193 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:245 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +msgid "Subnet" +msgstr "Subnet" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1232 +#: ../../enterprise/godmode/agentes/inventory_manager.php:254 +#: ../../enterprise/operation/services/services.list.php:558 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:419 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:501 +#: ../../include/ajax/module.php:917 ../../include/functions_ui.php:1138 +#: ../../operation/agentes/group_view.php:192 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/servers/recon_view.php:91 +#: ../../operation/servers/recon_view.php:123 +msgid "Force" +msgstr "Force" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1381 +#: ../../operation/snmpconsole/snmp_statistics.php:53 +#: ../../operation/snmpconsole/snmp_view.php:80 ../../operation/menu.php:398 +#: ../../operation/menu.php:506 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../operation/events/event_statistics.php:46 +msgid "Statistics" +msgstr "Statistics" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1389 +msgid "Occupied" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1391 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 +msgid "Available" +msgstr "Available" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1397 +msgid "Not managed" +msgstr "Unmanaged" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1403 +msgid "Not Reserved" +msgstr "Not reserved" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +msgid "DESC" +msgstr "DESC" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +msgid "ASC" +msgstr "ASC" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +msgid "A -> Z" +msgstr "A -> Z" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +msgid "Z -> A" +msgstr "Z -> A" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Last check" +msgstr "Last check" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +msgid "Newer -> Older" +msgstr "Newer -> Older" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Older -> Newer" +msgstr "Older -> Newer" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1449 +msgid "Exact address match" +msgstr "Exact address match" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1453 +msgid "S.O" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1458 +msgid "Big" +msgstr "Big" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1459 +msgid "Tiny" +msgstr "Small" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1460 +msgid "Icons style" +msgstr "Icons style" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1469 +msgid "Show not alive hosts" +msgstr "Show not alive hosts" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1472 +msgid "Show only managed addresses" +msgstr "Show only managed addresses" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1475 +msgid "Reserved addresses" +msgstr "Reserved addresses" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1480 +msgid "Unreserved" +msgstr "Unreserved" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1490 +msgid "Last Contact" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1520 +msgid "Filter options" +msgstr "Filter options" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1675 +msgid "id Network" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1680 +msgid "ID recon task" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1681 +msgid "Scan Interval" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1682 +msgid "Users Operator" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1683 +msgid "Total Ips" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1684 +msgid "Last Update" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1737 +msgid "OS Name" +msgstr "OS name" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1740 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:417 +msgid "Created at" +msgstr "Created at" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1741 +msgid "Last updated" +msgstr "Last update" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1742 +msgid "Last modified" +msgstr "Last modification" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1743 +msgid "Dhcp Leased" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1744 +msgid "Dhcp Leased Mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1745 +msgid "Dhcp Leased Expiration" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1746 +msgid "Mac address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:136 +msgid "There is not an available IP." +msgstr "There are no available IP addresses." + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:138 +msgid "Next available IP Address is:" +msgstr "Next available IP address is:" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:155 +msgid "Reserve this IP now" +msgstr "Reserve this IP now" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:162 +msgid "Manage this IP now" +msgstr "Manage this IP now" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:207 +msgid "Operating system" +msgstr "Operating system" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:217 +msgid "This agent has other IPs" +msgstr "This agent has other IPs." + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 +msgid "Generate events" +msgstr "Generate events" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:246 +msgid "Leases Dhcp" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 +msgid "leased mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:257 +msgid "leased expiration" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:262 +#: ../../include/class/NetworkMap.class.php:2935 +msgid "MAC" +msgstr "MAC" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:288 +msgid "Edited" +msgstr "Edited" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:298 +msgid "Tracking" +msgstr "Tracking" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:313 +msgid "Ping" +msgstr "Ping" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:329 +#: ../../include/ajax/events.php:1033 ../../include/ajax/events.php:1066 +#, php-format +msgid "Executing command: %s" +msgstr "Executing command: %s" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:336 +#: ../../include/ajax/events.php:1050 ../../include/ajax/events.php:1073 +msgid "Execute again" +msgstr "Execute again" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:350 +msgid "Ping to host" +msgstr "Ping to host" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:44 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:72 +msgid "There is no vlan name. Please introduce a name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:55 +msgid "Vlan created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:57 +msgid "Vlan not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:95 +msgid "Vlan name exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:89 +msgid "Vlan updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:91 +msgid "Vlan not updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:115 +msgid "Could not be deleted, please select vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:143 +msgid "Network name cannot be repeated in this Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:164 +msgid "Vlan name could not be added, please select vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:188 +msgid "Could not be deleted, please select vlan and network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:240 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:346 +msgid "Update Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:247 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:431 +msgid "New Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:314 +msgid "Delete network to vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:353 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:372 +msgid "Add network to Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:356 +msgid "Create network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:388 +msgid "Delete Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "Addresses" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:44 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:45 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:56 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:57 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:58 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:59 +msgid "Example:" +msgstr "Example:" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 +msgid "Bit mask" +msgstr "Bit mask" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:49 +msgid "Net mask" +msgstr "Net mask" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 +msgid "Mask format" +msgstr "Mask format" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:67 +msgid "Calculate" +msgstr "Calculate" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:74 +msgid "Address field is empty" +msgstr "Address field is empty" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:82 +msgid "Mask field is empty" +msgstr "Mask field is empty" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:100 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:118 +msgid "Incorrect address format" +msgstr "Incorrect address format" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:105 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:110 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:123 +msgid "Incorrect mask format" +msgstr "Incorrect mask format" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:151 +msgid "Network mask" +msgstr "Network mask" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:167 +msgid "Network wildcard" +msgstr "Network wildcard" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:172 +msgid "Network address" +msgstr "Network address" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:177 +msgid "Broadcast address" +msgstr "Broadcast address" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:182 +msgid "First valid IP" +msgstr "First valid IP" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:187 +msgid "Last valid IP" +msgstr "Last valid IP" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:193 +msgid "Hosts/Net" +msgstr "Hosts/Net" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:46 +msgid "Network not found" +msgstr "Network not found" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:83 +#: ../../operation/incidents/incident.php:325 +msgid "All users" +msgstr "All users" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +msgid "Format: IP/Mask" +msgstr "Format: IP/Mask" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:96 +msgid "Examples" +msgstr "Examples" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:119 +#: ../../enterprise/include/class/Azure.cloud.php:744 +#: ../../enterprise/include/class/VMware.app.php:528 +#: ../../enterprise/include/class/SAP.app.php:471 +#: ../../enterprise/include/class/Aws.cloud.php:433 +#: ../../enterprise/include/class/Aws.cloud.php:1097 +#: ../../enterprise/include/class/MySQL.app.php:452 +#: ../../enterprise/include/class/Oracle.app.php:450 +#: ../../godmode/wizards/HostDevices.class.php:844 +#: ../../include/functions_servers.php:590 +#: ../../include/functions_servers.php:1223 +#: ../../include/class/CustomNetScan.class.php:478 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:137 +msgid "For example: Central Data Center" +msgstr "For example: Central Data Centre" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:142 +msgid "Include statistical monitors" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:157 +msgid "Lightweight mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:158 +msgid "Use quicker network scan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:174 +msgid "Target group for monitoring agent" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 +msgid "Scan interval" +msgstr "Scan interval" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 +msgid "0 for manually scan" +msgstr "0 for manual scan" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 +msgid "Operator users" +msgstr "Operator users" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 +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/resource_registration/functions.php:38 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." +msgstr "" +"Error creating '%s' policy, the name exists and there are no free names." + +#: ../../enterprise/extensions/resource_registration/functions.php:46 +#, php-format +msgid "" +"Warning create '%s' policy, the name exist, the policy have a name %s." +msgstr "" +"Warning when creating '%s' policy, the name exists and the policy has the " +"name %s." + +#: ../../enterprise/extensions/resource_registration/functions.php:55 +msgid "Error the policy haven't name." +msgstr "Error. The policy does not have a name." + +#: ../../enterprise/extensions/resource_registration/functions.php:76 +#, php-format +msgid "Success create '%s' policy." +msgstr "'%s' policy successfully created" + +#: ../../enterprise/extensions/resource_registration/functions.php:77 +#, php-format +msgid "Error create '%s' policy." +msgstr "Error creating '%s' policy." + +#: ../../enterprise/extensions/resource_registration/functions.php:114 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:118 +#, php-format +msgid "Success add '%s' agent." +msgstr "'%s' agent added successfully." + +#: ../../enterprise/extensions/resource_registration/functions.php:119 +#, php-format +msgid "Error add '%s' agent." +msgstr "Error adding '%s' agent." + +#: ../../enterprise/extensions/resource_registration/functions.php:138 +msgid "The collection does not exist" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:143 +#, php-format +msgid "Success add '%s' collection." +msgstr "'%s' collection added successfully" + +#: ../../enterprise/extensions/resource_registration/functions.php:144 +#, php-format +msgid "Error add '%s' collection." +msgstr "Error adding '%s' collection." + +#: ../../enterprise/extensions/resource_registration/functions.php:162 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "'%s' agent plugin added successfully" + +#: ../../enterprise/extensions/resource_registration/functions.php:163 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "Error adding '%s' agent plugin." + +#: ../../enterprise/extensions/resource_registration/functions.php:176 +msgid "Error add the module, haven't type." +msgstr "Error adding the module, it does not have a type." + +#: ../../enterprise/extensions/resource_registration/functions.php:377 +#: ../../enterprise/extensions/resource_registration/functions.php:438 +#: ../../enterprise/extensions/resource_registration/functions.php:539 +#: ../../enterprise/extensions/resource_registration/functions.php:595 +msgid "Error add the module, error in tag component." +msgstr "Error adding the module, error in tag component." + +#: ../../enterprise/extensions/resource_registration/functions.php:647 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "Error adding the module plugin importation, plugin is not registered" + +#: ../../enterprise/extensions/resource_registration/functions.php:657 +#, php-format +msgid "Success add '%s' module." +msgstr "'%s' module added successfully" + +#: ../../enterprise/extensions/resource_registration/functions.php:658 +#, php-format +msgid "Error add '%s' module." +msgstr "Error adding '%s' module" + +#: ../../enterprise/extensions/resource_registration/functions.php:670 +#, php-format +msgid "Error add the alert, the template '%s' don't exist." +msgstr "Error adding the alert, the template '%s' does not exist." + +#: ../../enterprise/extensions/resource_registration/functions.php:681 +#, php-format +msgid "Error add the alert, the module '%s' don't exist." +msgstr "Error adding the alert, the module '%s' does not exist." + +#: ../../enterprise/extensions/resource_registration/functions.php:697 +#, php-format +msgid "Success add '%s' alert." +msgstr "'%s' alert added successfully" + +#: ../../enterprise/extensions/resource_registration/functions.php:698 +#, php-format +msgid "Error add '%s' alert." +msgstr "Error adding '%s' alert" + +#: ../../enterprise/extensions/resource_registration/functions.php:719 +#, php-format +msgid "Error add the alert, the action '%s' don't exist." +msgstr "Error adding the alert, the action '%s' does not exist" + +#: ../../enterprise/extensions/resource_registration/functions.php:738 +#, php-format +msgid "Success add '%s' action." +msgstr "'%s' action added successfully" + +#: ../../enterprise/extensions/resource_registration/functions.php:739 +#: ../../extensions/resource_registration.php:385 +#: ../../extensions/resource_registration.php:407 +#: ../../extensions/resource_registration.php:418 +#, php-format +msgid "Error add '%s' action." +msgstr "Error adding '%s' action" + +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "Top 5 VMs CPU Usage" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "Top 5 VMs Memory Usage" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "Top 5 VMs Provisioning Usage" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "Top 5 VMs Network Usage" + +#: ../../enterprise/extensions/vmware/vmware_view.php:691 +msgid "Host ESX" +msgstr "Host ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1016 +#: ../../enterprise/include/functions_services.php:2682 +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/operation/agentes/policy_view.php:387 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/tag_view.php:930 +#: ../../enterprise/operation/agentes/tag_view.php:936 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../mobile/operation/modules.php:521 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:584 +#: ../../mobile/operation/modules.php:607 +#: ../../include/functions_modules.php:2566 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:3508 +#: ../../include/functions_modules.php:3540 ../../include/functions_ui.php:3610 +#: ../../include/functions_ui.php:3676 ../../include/class/Tree.class.php:610 +#: ../../include/functions_events.php:54 ../../include/functions_events.php:106 +#: ../../include/functions_events.php:169 +#: ../../operation/agentes/status_monitor.php:1388 +#: ../../operation/agentes/status_monitor.php:1394 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/pandora_networkmap.view.php:310 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/search_modules.php:102 +#: ../../operation/search_modules.php:129 +#: ../../operation/events/events.php:1744 +#: ../../operation/events/events.php:1811 +#: ../../operation/events/events.php:1838 +msgid "NORMAL" +msgstr "NORMAL" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1021 +#: ../../enterprise/include/functions_services.php:2688 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/operation/agentes/policy_view.php:381 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:944 +#: ../../enterprise/operation/agentes/tag_view.php:950 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../mobile/operation/modules.php:527 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:590 +#: ../../mobile/operation/modules.php:615 +#: ../../include/functions_modules.php:2560 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:3512 +#: ../../include/functions_modules.php:3532 ../../include/functions_ui.php:3616 +#: ../../include/functions_ui.php:3686 ../../include/class/Tree.class.php:580 +#: ../../include/functions_events.php:57 ../../include/functions_events.php:110 +#: ../../include/functions_events.php:154 +#: ../../operation/agentes/status_monitor.php:1402 +#: ../../operation/agentes/status_monitor.php:1408 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/pandora_networkmap.view.php:304 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:137 +#: ../../operation/events/events.php:1719 +#: ../../operation/events/events.php:1817 +#: ../../operation/events/events.php:1843 +msgid "CRITICAL" +msgstr "CRITICAL" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1026 +#: ../../enterprise/include/functions_services.php:2694 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:384 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:958 +#: ../../enterprise/operation/agentes/tag_view.php:964 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../godmode/update_manager/update_manager.offline.php:100 +#: ../../mobile/operation/modules.php:533 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:596 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2563 +#: ../../include/functions_modules.php:2580 +#: ../../include/functions_modules.php:3516 +#: ../../include/functions_modules.php:3548 ../../include/functions_ui.php:3604 +#: ../../include/functions_ui.php:3681 ../../include/class/Tree.class.php:588 +#: ../../include/class/NetworkMap.class.php:2820 +#: ../../include/functions_events.php:68 ../../include/functions_events.php:102 +#: ../../include/functions_events.php:172 +#: ../../operation/agentes/status_monitor.php:1416 +#: ../../operation/agentes/status_monitor.php:1422 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:307 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:114 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1749 +#: ../../operation/events/events.php:1805 +#: ../../operation/events/events.php:1860 +msgid "WARNING" +msgstr "WARNING" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1031 +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/include/functions_services.php:2727 +#: ../../enterprise/include/functions_services.php:2734 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:2580 +#: ../../include/functions_modules.php:3520 ../../include/functions_ui.php:3623 +#: ../../include/functions_ui.php:3701 ../../include/class/Tree.class.php:594 +#: ../../include/functions_events.php:71 ../../include/functions_events.php:115 +#: ../../include/functions_events.php:175 +#: ../../operation/agentes/status_monitor.php:1430 +#: ../../operation/agentes/status_monitor.php:1436 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:120 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1716 +#: ../../operation/events/events.php:1824 +#: ../../operation/events/events.php:1835 +msgid "UNKNOWN" +msgstr "UNKNOWN" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1043 +msgid "CPU Usage" +msgstr "CPU Usage" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1053 +msgid "Memory Usage" +msgstr "Memory Usage" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1063 +msgid "Disk I/O Rate" +msgstr "Disk I/O Rate" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1073 +msgid "Network Usage" +msgstr "Network Usage" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1172 +msgid "Settings updated " +msgstr "Settings updated " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1174 +msgid "No changes in settings " +msgstr "No changes in settings " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +msgid "CPU usage graphs" +msgstr "CPU usage graphs" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1183 +#: ../../enterprise/extensions/vmware/vmware_view.php:1189 +#: ../../enterprise/extensions/vmware/vmware_view.php:1195 +#: ../../enterprise/extensions/vmware/vmware_view.php:1201 +msgid "Force minimum value" +msgstr "Force minimum value" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +#: ../../enterprise/extensions/vmware/vmware_view.php:1203 +msgid "Force maximum value" +msgstr "Force maximum value" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +msgid "Memory usage graphs" +msgstr "Memory usage graphs" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +msgid "Provisioning Usage graphs" +msgstr "Provisioning usage graphs" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +msgid "Network usage graphs" +msgstr "Network usage graphs" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1211 +msgid "Map items" +msgstr "Map items" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1212 +msgid "Show datastores" +msgstr "Show datastores" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1214 +msgid "Show ESXis" +msgstr "Show ESXis" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +msgid "Show VMs" +msgstr "Show VMs" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1218 +msgid "Font size (px)" +msgstr "Font size (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1220 +msgid "Node radius (px)" +msgstr "Node radius (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1225 +msgid "" +"Looking for VMware configuration? You can configure several tasks using " +"Discovery Applications." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1226 +#: ../../enterprise/extensions/vmware/vmware_view.php:1457 +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "this link" +msgstr "this link" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1233 +msgid "Graph settings" +msgstr "Graph settings" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1238 +msgid "Map settings" +msgstr "Map settings" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1278 +msgid "Welcome" +msgstr "Welcome" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1281 +#: ../../enterprise/extensions/vmware/vmware_view.php:1299 +#: ../../include/lib/Dashboard/Widgets/network_map.php:267 +#: ../../operation/gis_maps/render_view.php:165 +msgid "Map" +msgstr "Map" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1284 +#: ../../enterprise/extensions/vmware/vmware_view.php:1304 +#: ../../godmode/users/configure_user.php:899 +#: ../../mobile/include/functions_web.php:20 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:344 ../../operation/menu.php:355 +msgid "Dashboard" +msgstr "Dashboard" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1288 +msgid "ESX Detail" +msgstr "ESX detail" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1309 +msgid "ESX details" +msgstr "ESX details" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1314 +msgid "VMware view options" +msgstr "VMware view options" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1435 +msgid "" +"Some ESX Hosts are not up to date, please check VMware plugin configuration." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1437 +msgid "VMware plugin is working." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1446 +msgid "View VMware map" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1447 +msgid "View VMware dashboard" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1448 +msgid "View ESX Host statistics from" +msgstr "View ESX Host statistics from" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1455 +msgid "There are no VMware information detected in this environment." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1456 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1659 +msgid "Show Datastores" +msgstr "Show datastores" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1662 +msgid "Show ESX" +msgstr "Show ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1665 +msgid "Show VM" +msgstr "Show VM" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1669 +#: ../../godmode/reporting/visual_console_builder.wizard.php:235 +msgid "Font" +msgstr "Font" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1673 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:124 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:74 +#: ../../operation/agentes/pandora_networkmap.editor.php:281 +msgid "Node radius" +msgstr "Node radius" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1683 +msgid "View options" +msgstr "View options" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "Power status: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:343 +msgid "Status: " +msgstr "Status: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "Change status" + +#: ../../enterprise/extensions/backup.php:69 +msgid "Backup" +msgstr "Backup" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "Export agents" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../extensions/resource_exportation.php:425 +#: ../../extensions/resource_exportation.php:428 +#: ../../operation/agentes/exportdata.php:372 +msgid "Export" +msgstr "Export" + +#: ../../enterprise/extensions/csv_import_group.php:26 +msgid "CSV import group" +msgstr "CSV import group" + +#: ../../enterprise/load_html_extra.php:194 +msgid "Activate license" +msgstr "Activate license" + +#: ../../enterprise/load_html_extra.php:195 +msgid "Your request key is:" +msgstr "Your request key is:" + +#: ../../enterprise/load_html_extra.php:197 +#, php-format +msgid "" +"You can activate it manually here or " +"automatically filling the form below:" +msgstr "" +"You can activate it manually here or " +"automatically by filling in the form below:" + +#: ../../enterprise/load_html_extra.php:202 +msgid "Auth Key:" +msgstr "Authentication key:" + +#: ../../enterprise/load_html_extra.php:210 +#: ../../enterprise/load_html_extra.php:229 +msgid "Online validation" +msgstr "Online validation" + +#: ../../enterprise/load_html_extra.php:222 +msgid "ERROR:" +msgstr "ERROR:" + +#: ../../enterprise/load_html_extra.php:222 +msgid "When connecting to licence server." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:137 +msgid "Update Local Component" +msgstr "Update local component" + +#: ../../enterprise/godmode/modules/configure_local_component.php:139 +msgid "Create Local Component" +msgstr "Create local component" + +#: ../../enterprise/godmode/modules/configure_local_component.php:158 +#: ../../godmode/modules/manage_network_components_form_common.php:63 +#: ../../godmode/alerts/configure_alert_template.php:959 +msgid "Wizard level" +msgstr "Wizard level" + +#: ../../enterprise/godmode/modules/configure_local_component.php:186 +msgid "Throw unknown events" +msgstr "Discard unknown events" + +#: ../../enterprise/godmode/modules/configure_local_component.php:286 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:375 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +#: ../../godmode/massive/massive_edit_modules.php:524 +msgid "Dynamic Interval" +msgstr "Dynamic Interval" + +#: ../../enterprise/godmode/modules/configure_local_component.php:288 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../godmode/agentes/module_manager_editor_common.php:628 +msgid "Advanced options Dynamic Threshold" +msgstr "Advanced options Dynamic Threshold" + +#: ../../enterprise/godmode/modules/configure_local_component.php:290 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +msgid "Dynamic Min. " +msgstr "Dynamic Min. " + +#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:379 +#: ../../godmode/modules/manage_network_components_form_common.php:163 +#: ../../godmode/massive/massive_edit_modules.php:528 +msgid "Dynamic Max." +msgstr "Dynamic Max." + +#: ../../enterprise/godmode/modules/configure_local_component.php:294 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:381 +#: ../../godmode/modules/manage_network_components_form_common.php:165 +#: ../../godmode/massive/massive_edit_modules.php:530 +msgid "Dynamic Two Tailed: " +msgstr "Dynamic Two Tailed: " + +#: ../../enterprise/godmode/modules/configure_local_component.php:297 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:384 +#: ../../godmode/modules/manage_network_components_form_common.php:168 +#: ../../godmode/agentes/module_manager_editor_common.php:385 +#: ../../godmode/massive/massive_edit_modules.php:533 +#: ../../include/functions_treeview.php:96 +#: ../../include/functions_alerts.php:662 +msgid "Warning status" +msgstr "Warning status" + +#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../enterprise/godmode/modules/configure_local_component.php:333 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:262 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:311 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:388 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:457 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:671 +#: ../../godmode/modules/manage_network_components_form_common.php:169 +#: ../../godmode/modules/manage_network_components_form_common.php:204 +#: ../../godmode/massive/massive_edit_modules.php:537 +#: ../../godmode/massive/massive_edit_modules.php:606 +#: ../../godmode/massive/massive_edit_modules.php:813 +#: ../../godmode/alerts/configure_alert_template.php:764 +#: ../../include/functions_reporting_html.php:4219 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:659 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Min." +msgstr "Min." + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/configure_local_component.php:342 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:277 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:326 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:403 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:472 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:673 +#: ../../godmode/modules/manage_network_components_form_common.php:178 +#: ../../godmode/modules/manage_network_components_form_common.php:213 +#: ../../godmode/agentes/module_manager_editor_common.php:400 +#: ../../godmode/agentes/module_manager_editor_common.php:453 +#: ../../godmode/massive/massive_edit_modules.php:552 +#: ../../godmode/massive/massive_edit_modules.php:621 +#: ../../godmode/massive/massive_edit_modules.php:815 +#: ../../godmode/alerts/configure_alert_template.php:775 +#: ../../include/functions_reporting_html.php:4220 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:658 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Max." +msgstr "Max." + +#: ../../enterprise/godmode/modules/configure_local_component.php:316 +#: ../../enterprise/godmode/modules/configure_local_component.php:351 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:292 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:341 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:418 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:487 +#: ../../godmode/modules/manage_network_components_form_common.php:187 +#: ../../godmode/modules/manage_network_components_form_common.php:222 +#: ../../godmode/agentes/module_manager_editor_common.php:416 +#: ../../godmode/agentes/module_manager_editor_common.php:469 +#: ../../godmode/massive/massive_edit_modules.php:567 +#: ../../godmode/massive/massive_edit_modules.php:636 +#: ../../include/functions_treeview.php:90 +#: ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "Str." + +#: ../../enterprise/godmode/modules/configure_local_component.php:332 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:453 +#: ../../godmode/modules/manage_network_components_form_common.php:203 +#: ../../godmode/agentes/module_manager_editor_common.php:438 +#: ../../godmode/massive/massive_edit_modules.php:602 +#: ../../include/functions_treeview.php:108 +#: ../../include/functions_alerts.php:663 +msgid "Critical status" +msgstr "Critical status" + +#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:217 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../godmode/modules/manage_network_components_form_common.php:234 +#: ../../godmode/agentes/module_manager_editor_common.php:710 +#: ../../godmode/massive/massive_edit_modules.php:858 +msgid "FF threshold" +msgstr "FF threshold" + +#: ../../enterprise/godmode/modules/configure_local_component.php:366 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:220 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:784 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:712 +#: ../../godmode/massive/massive_edit_modules.php:922 +msgid "Keep counters" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:374 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:237 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:728 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:743 +#: ../../godmode/modules/manage_network_components_form_common.php:251 +#: ../../godmode/agentes/module_manager_editor_common.php:729 +#: ../../godmode/massive/massive_edit_modules.php:866 +#: ../../godmode/massive/massive_edit_modules.php:881 +msgid "All state changing" +msgstr "Change all statuses" + +#: ../../enterprise/godmode/modules/configure_local_component.php:389 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:727 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../godmode/modules/manage_network_components_form_common.php:267 +#: ../../godmode/agentes/module_manager_editor_common.php:751 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/massive/massive_edit_modules.php:891 +msgid "Each state changing" +msgstr "Change each status" + +#: ../../enterprise/godmode/modules/configure_local_component.php:390 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:260 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../godmode/modules/manage_network_components_form_common.php:268 +#: ../../godmode/agentes/module_manager_editor_common.php:752 +#: ../../godmode/massive/massive_edit_modules.php:892 +msgid "To normal" +msgstr "To 'normal'" + +#: ../../enterprise/godmode/modules/configure_local_component.php:399 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:764 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:766 +#: ../../godmode/massive/massive_edit_modules.php:902 +msgid "To warning" +msgstr "To 'warning'" + +#: ../../enterprise/godmode/modules/configure_local_component.php:408 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:288 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:774 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/massive/massive_edit_modules.php:912 +msgid "To critical" +msgstr "To 'critical'" + +#: ../../enterprise/godmode/modules/configure_local_component.php:419 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:1966 +#: ../../godmode/modules/manage_network_components_form_common.php:296 +#: ../../godmode/agentes/module_manager_editor_common.php:487 +#: ../../godmode/massive/massive_edit_modules.php:970 +#: ../../include/functions_reporting.php:3150 +msgid "Historical data" +msgstr "Historical data" + +#: ../../enterprise/godmode/modules/configure_local_component.php:422 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../godmode/agentes/module_manager_editor_common.php:810 +#: ../../godmode/massive/massive_edit_modules.php:956 +msgid "FF timeout" +msgstr "FlipFlop timeout" + +#: ../../enterprise/godmode/modules/configure_local_component.php:430 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../godmode/massive/massive_edit_modules.php:966 +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." + +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +msgid "This value can be set only in the async modules." +msgstr "This value can only be set in conjunction with asynchronous modules." + +#: ../../enterprise/godmode/modules/configure_local_component.php:433 +#: ../../enterprise/include/functions_reporting_csv.php:1002 +#: ../../godmode/modules/manage_network_components_form_common.php:299 +#: ../../godmode/agentes/module_manager_editor_common.php:605 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:474 +#: ../../include/functions_reports.php:727 +#: ../../include/functions_reporting.php:4850 +msgid "Min. Value" +msgstr "Min. Value" + +#: ../../enterprise/godmode/modules/configure_local_component.php:433 +#: ../../godmode/modules/manage_network_components_form_common.php:300 +msgid "Any value below this number is discarted" +msgstr "Any value below this number is discarded" + +#: ../../enterprise/godmode/modules/configure_local_component.php:438 +#: ../../enterprise/include/functions_reporting_csv.php:1057 +#: ../../godmode/modules/manage_network_components_form_common.php:301 +#: ../../godmode/agentes/module_manager_editor_common.php:609 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:486 +#: ../../include/functions_reports.php:723 +#: ../../include/functions_reporting.php:4846 +msgid "Max. Value" +msgstr "Max. Value" + +#: ../../enterprise/godmode/modules/configure_local_component.php:438 +#: ../../godmode/modules/manage_network_components_form_common.php:302 +msgid "Any value over this number is discarted" +msgstr "Any value over this number is discarded" + +#: ../../enterprise/godmode/modules/configure_local_component.php:445 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:559 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:590 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "Post process" + +#: ../../enterprise/godmode/modules/configure_local_component.php:472 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load a basic structure on data configuration" +msgstr "Load a basic structure on data configuration" + +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +msgid "Check the correct structure of the data configuration" +msgstr "Check the correct structure of the data configuration" + +#: ../../enterprise/godmode/modules/configure_local_component.php:478 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +msgid "First line must be \"module_begin\"" +msgstr "First line must be \"module_begin\"" + +#: ../../enterprise/godmode/modules/configure_local_component.php:479 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +msgid "Data configuration is empty" +msgstr "Data configuration is empty" + +#: ../../enterprise/godmode/modules/configure_local_component.php:480 +#: ../../enterprise/godmode/modules/configure_local_component.php:484 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +msgid "Last line must be \"module_end\"" +msgstr "Last line must be \"module_end\"" + +#: ../../enterprise/godmode/modules/configure_local_component.php:481 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +msgid "" +"Name is missed. Please add a line with \"module_name yourmodulename\" to " +"data configuration" +msgstr "" +"Name is misseding. Please add a line with 'module_name yourmodulename' to " +"the data configuration." + +#: ../../enterprise/godmode/modules/configure_local_component.php:482 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to " +"data configuration" +msgstr "" +"Type is missing. Please add a line with 'module_type yourmoduletype' to data " +"configuration." + +#: ../../enterprise/godmode/modules/configure_local_component.php:483 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +msgid "Type is wrong. Please set a correct type" +msgstr "Type is wrong. Please set a correct type." + +#: ../../enterprise/godmode/modules/configure_local_component.php:486 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 +msgid "Error in the syntax, please check the data configuration." +msgstr "Error in the syntax, please check the data configuration." + +#: ../../enterprise/godmode/modules/configure_local_component.php:487 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +msgid "Data configuration are built correctly" +msgstr "Data configuration is built correctly." + +#: ../../enterprise/godmode/modules/configure_local_component.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/agentes/module_manager_editor_common.php:1009 +#: ../../godmode/massive/massive_edit_modules.php:1020 +msgid "Critical instructions" +msgstr "Critical instructions" + +#: ../../enterprise/godmode/modules/configure_local_component.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/massive/massive_edit_modules.php:1020 +msgid "Instructions when the status is critical" +msgstr "Instructions when status is critical" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../godmode/agentes/module_manager_editor_common.php:1014 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Warning instructions" +msgstr "Warning instructions" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Instructions when the status is warning" +msgstr "Instructions when warning status is active" + +#: ../../enterprise/godmode/modules/configure_local_component.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../godmode/agentes/module_manager_editor_common.php:1018 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "Unknown instructions" +msgstr "Unknown instructions" + +#: ../../enterprise/godmode/modules/configure_local_component.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "Instructions when the status is unknown" +msgstr "Instructions when status is unknown" + +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../godmode/modules/manage_network_components_form_common.php:329 +#: ../../godmode/agentes/module_manager_editor_common.php:1059 +#: ../../godmode/massive/massive_edit_modules.php:988 +#: ../../godmode/module_library/module_library_view.php:105 +msgid "Category" +msgstr "Category" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../godmode/modules/manage_network_components_form_common.php:349 +#: ../../godmode/agentes/module_manager_editor_common.php:836 +msgid "Tags available" +msgstr "Tags available" + +#: ../../enterprise/godmode/modules/configure_local_component.php:551 +#: ../../godmode/modules/manage_network_components_form_common.php:367 +#: ../../godmode/agentes/module_manager_editor_common.php:926 +msgid "Add tags to module" +msgstr "Add tags to module" + +#: ../../enterprise/godmode/modules/configure_local_component.php:553 +#: ../../godmode/modules/manage_network_components_form_common.php:369 +#: ../../godmode/agentes/module_manager_editor_common.php:928 +msgid "Delete tags to module" +msgstr "Delete tags from module" + +#: ../../enterprise/godmode/modules/configure_local_component.php:555 +#: ../../enterprise/godmode/setup/setup_auth.php:169 +#: ../../enterprise/godmode/setup/setup_auth.php:441 +#: ../../enterprise/godmode/setup/setup_auth.php:1171 +#: ../../godmode/modules/manage_network_components_form_common.php:371 +#: ../../godmode/agentes/module_manager_editor_common.php:930 +msgid "Tags selected" +msgstr "Tags selected" + +#: ../../enterprise/godmode/modules/configure_local_component.php:577 +msgid "Macros" +msgstr "Macros" + +#: ../../enterprise/godmode/modules/configure_local_component.php:613 +#: ../../godmode/servers/plugin.php:485 +#: ../../include/class/ManageNetScanScripts.class.php:640 +msgid "Default value" +msgstr "Default value" + +#: ../../enterprise/godmode/modules/configure_local_component.php:629 +#: ../../godmode/servers/plugin.php:524 +#: ../../include/class/ManageNetScanScripts.class.php:728 +msgid "Add macro" +msgstr "Add macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:637 +#: ../../godmode/servers/plugin.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:746 +msgid "Delete macro" +msgstr "Delete macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:882 +#: ../../godmode/modules/manage_network_components_form_common.php:634 +#: ../../godmode/agentes/module_manager_editor_common.php:1826 +msgid "Normal Status" +msgstr "Normal Status" + +#: ../../enterprise/godmode/modules/configure_local_component.php:883 +#: ../../godmode/modules/manage_network_components_form_common.php:635 +#: ../../godmode/agentes/module_manager_editor_common.php:1827 +msgid "Warning Status" +msgstr "Warning Status" + +#: ../../enterprise/godmode/modules/configure_local_component.php:884 +#: ../../godmode/modules/manage_network_components_form_common.php:636 +#: ../../godmode/agentes/module_manager_editor_common.php:1828 +msgid "Critical Status" +msgstr "Critical Status" + +#: ../../enterprise/godmode/modules/configure_local_component.php:886 +#: ../../godmode/modules/manage_network_components_form_common.php:638 +#: ../../godmode/agentes/module_manager_editor_common.php:1830 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "Please introduce a maximum warning higher than the minimum warning" + +#: ../../enterprise/godmode/modules/configure_local_component.php:887 +#: ../../godmode/modules/manage_network_components_form_common.php:639 +#: ../../godmode/agentes/module_manager_editor_common.php:1831 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "Please introduce a maximum critical higher than the minimum critical" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:35 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:73 +msgid "" +"This console is not manager of this environment,\n" +" please manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:120 +msgid "Successfully created inventory module" +msgstr "Inventory module successfully created" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:123 +#: ../../enterprise/include/functions_enterprise_api.php:4583 +msgid "Error creating inventory module" +msgstr "Error creating inventory module" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:140 +#: ../../enterprise/godmode/agentes/inventory_manager.php:125 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 +msgid "Successfully updated inventory module" +msgstr "Inventory module updated successfully" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../enterprise/godmode/agentes/inventory_manager.php:127 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/include/functions_enterprise_api.php:4630 +msgid "Error updating inventory module" +msgstr "Error updating inventory module" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:171 +#: ../../enterprise/godmode/agentes/inventory_manager.php:97 +msgid "Successfully deleted inventory module" +msgstr "Inventory module deleted successfully" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:174 +#: ../../enterprise/godmode/agentes/inventory_manager.php:99 +#: ../../enterprise/include/functions_enterprise_api.php:4672 +msgid "Error deleting inventory module" +msgstr "Error deleting inventory module" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:207 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:240 +#: ../../enterprise/godmode/modules/local_components.php:388 +#: ../../godmode/modules/manage_nc_groups.php:184 +#: ../../godmode/modules/manage_network_components.php:446 +#: ../../godmode/modules/manage_network_templates.php:102 +msgid "Successfully multiple deleted" +msgstr "Multi-deletion successful" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:208 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:241 +#: ../../enterprise/godmode/modules/local_components.php:389 +#: ../../godmode/modules/manage_nc_groups.php:185 +#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_templates.php:103 +msgid "Not deleted. Error deleting multiple data" +msgstr "Error deleting multiple data" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:267 +msgid "Successfully created inventory module in the node" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:270 +msgid "Error creating inventory module in the node" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:372 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "Interpreter" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:381 +msgid "No inventory modules defined" +msgstr "No inventory modules defined" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:402 +msgid "Local module" +msgstr "Local module" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:404 +msgid "Remote/Local" +msgstr "Remote/Local" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:420 +msgid "Deploy to the nodes" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:464 +msgid "" +"The configurations of inventory modules from the nodes have been unified. \n" +"\t\tFrom this point on, changes to the inventory scripts must be made " +"through this screen." +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:107 +#: ../../godmode/modules/manage_network_components.php:169 +#: ../../godmode/alerts/configure_alert_template.php:149 +#, php-format +msgid "Successfully created from %s" +msgstr "Successfully created from %s" + +#: ../../enterprise/godmode/modules/local_components.php:123 +msgid "Local component management" +msgstr "Local component management" + +#: ../../enterprise/godmode/modules/local_components.php:279 +#: ../../godmode/modules/manage_network_components.php:309 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "Created successfully" + +#: ../../enterprise/godmode/modules/local_components.php:347 +#: ../../godmode/modules/manage_network_components.php:390 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "Updated successfully" + +#: ../../enterprise/godmode/modules/local_components.php:488 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2763 +#: ../../godmode/modules/manage_network_components.php:580 +msgid "Free Search" +msgstr "Free Search" + +#: ../../enterprise/godmode/modules/local_components.php:489 +msgid "Search by name, description or data, list matches." +msgstr "Search by name, description or data, list matches." + +#: ../../enterprise/godmode/modules/local_components.php:612 +#: ../../enterprise/godmode/policies/policy_modules.php:1530 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:453 +#: ../../godmode/modules/manage_network_components.php:737 +#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/alerts/alert_templates.php:402 +msgid "Duplicate" +msgstr "Duplicate" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:162 +msgid "Inventory module error" +msgstr "Inventory module error" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "Left blank for the LOCAL inventory modules" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "Block mode" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../include/class/ModuleTemplates.class.php:1113 +msgid "Format" +msgstr "Format" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "separate fields with " + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../include/ajax/double_auth.ajax.php:145 +#: ../../include/ajax/double_auth.ajax.php:283 +msgid "Code" +msgstr "Code" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" +"Here you will find the script for the REMOTE inventory modules. Local " +"inventory modules do not use this field." + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55 +msgid "Cannot delete rule from autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61 +msgid "Agent Autoconfiguration Information" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62 +msgid "" +"You must click the Create or Update buttom for a correct configuration!!!" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99 +msgid "Cannot create unnamed autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126 +msgid "Cannot update autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:56 +msgid "Agent autoconfiguration list" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 +#: ../../operation/search_agents.php:115 +#: ../../operation/agentes/ver_agente.php:1149 +#: ../../operation/servers/recon_view.php:47 +msgid "Manage" +msgstr "Manage" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:313 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#: ../../enterprise/godmode/agentes/collections.php:57 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:18 +#: ../../enterprise/include/functions_enterprise_api.php:3044 +#: ../../enterprise/include/functions_enterprise_api.php:5643 +#: ../../include/functions_api.php:153 +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console (Metaconsole)." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:322 +msgid "Autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:364 +#: ../../include/class/CredentialStore.class.php:883 +msgid "Extra" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:392 +msgid "Add rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +msgid "Rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:419 +msgid "New group" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:378 +msgid "Launch custom event" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:452 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +msgid "Launch alert action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:453 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "Launch script" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:511 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:300 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:438 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:507 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:538 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:606 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:629 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:685 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:710 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:726 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:787 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:847 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:875 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +#: ../../godmode/massive/massive_edit_agents.php:543 +#: ../../godmode/massive/massive_edit_agents.php:551 +#: ../../godmode/massive/massive_edit_agents.php:555 +#: ../../godmode/massive/massive_edit_agents.php:563 +#: ../../godmode/massive/massive_edit_agents.php:587 +#: ../../godmode/massive/massive_edit_agents.php:634 +#: ../../godmode/massive/massive_edit_agents.php:641 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/massive/massive_edit_agents.php:686 +#: ../../godmode/massive/massive_edit_agents.php:695 +#: ../../godmode/massive/massive_edit_agents.php:723 +#: ../../godmode/massive/massive_edit_agents.php:790 +#: ../../godmode/massive/massive_edit_modules.php:587 +#: ../../godmode/massive/massive_edit_modules.php:656 +#: ../../godmode/massive/massive_edit_modules.php:687 +#: ../../godmode/massive/massive_edit_modules.php:696 +#: ../../godmode/massive/massive_edit_modules.php:755 +#: ../../godmode/massive/massive_edit_modules.php:773 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../godmode/massive/massive_edit_modules.php:807 +#: ../../godmode/massive/massive_edit_modules.php:827 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/massive/massive_edit_modules.php:925 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:989 +#: ../../godmode/massive/massive_edit_modules.php:995 +#: ../../godmode/massive/massive_edit_modules.php:1008 +#: ../../godmode/massive/massive_edit_modules.php:1036 +#: ../../include/functions_html.php:1168 ../../include/functions_html.php:1269 +#: ../../include/functions_html.php:1401 +msgid "No change" +msgstr "No change" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:515 +#: ../../godmode/agentes/agent_manager.php:425 +#: ../../include/functions_events.php:4616 +#: ../../operation/agentes/estado_generalagente.php:344 +msgid "Secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:561 +#: ../../godmode/agentes/agent_manager.php:475 +msgid "Add secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:565 +#: ../../godmode/agentes/agent_manager.php:486 +msgid "Remove secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:600 +#: ../../enterprise/godmode/policies/configure_policy.php:47 +msgid "Add policy" +msgstr "Add policy" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:615 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:350 +msgid "Op" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:632 +msgid "Extra configuration block" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:634 +msgid "" +"Put here any extra configuration you want to be applied to any new agent " +"matching previously defined rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:667 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:698 +msgid "Extra actions" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:688 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:991 +msgid "Add extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:856 +msgid "Add new rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:858 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:168 +msgid "Update rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1078 +msgid "Update extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:42 +msgid "Cannot delete autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "There are no defined autoconfigurations" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124 +msgid "Add new configuration definition" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:37 +#: ../../enterprise/operation/agentes/tag_view.php:275 +#: ../../operation/agentes/status_monitor.php:529 +msgid "Web server module" +msgstr "Web server module" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:150 +msgid "Requests" +msgstr "Requests" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:153 +msgid "Agent browser id" +msgstr "Agent browser ID" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:159 +msgid "HTTP auth (login)" +msgstr "HTTP auth (login)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:162 +msgid "HTTP auth (password)" +msgstr "HTTP auth (password)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:176 +msgid "Proxy auth (login)" +msgstr "Proxy auth (login)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:180 +msgid "Proxy auth (pass)" +msgstr "Proxy auth (pass)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:187 +msgid "Proxy auth (server)" +msgstr "Proxy auth (server)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:191 +msgid "Proxy auth (realm)" +msgstr "Proxy auth (realm)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:203 +msgid "There isn't get or post" +msgstr "There is no get or post" + +#: ../../enterprise/godmode/agentes/collections.agents.php:38 +msgid "Show Agent >" +msgstr "Show Agent >" + +#: ../../enterprise/godmode/agentes/collections.agents.php:116 +msgid "This collection has not been added to any agents" +msgstr "This collection has not been added to any agents" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:33 +#: ../../enterprise/godmode/policies/policies.php:561 +#: ../../enterprise/include/functions_reporting_csv.php:661 +#: ../../enterprise/operation/agentes/ver_agente.php:184 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 +#: ../../enterprise/operation/menu.php:19 +#: ../../enterprise/operation/inventory/inventory.php:126 +#: ../../godmode/agentes/configurar_agente.php:611 +#: ../../include/functions_reports.php:841 +#: ../../include/functions_reports.php:842 +#: ../../include/functions_reports.php:846 +#: ../../include/functions_reporting.php:2220 +msgid "Inventory" +msgstr "Inventory" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:50 +#: ../../enterprise/godmode/policies/policy.php:72 +#: ../../enterprise/include/functions_policies.php:3808 +#: ../../godmode/agentes/configurar_agente.php:617 +msgid "Agent plugins" +msgstr "Agent plugins" + +#: ../../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 configure it." + +#: ../../enterprise/godmode/agentes/collection_manager.php:83 +msgid "Succesful add the collection" +msgstr "Collection added successfully" + +#: ../../enterprise/godmode/agentes/collection_manager.php:84 +msgid "Unsuccesful add the collection" +msgstr "Error adding the collection" + +#: ../../enterprise/godmode/agentes/collection_manager.php:131 +#: ../../enterprise/godmode/agentes/collection_manager.php:246 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:91 +msgid "Show files" +msgstr "Show files" + +#: ../../enterprise/godmode/agentes/collection_manager.php:191 +#: ../../enterprise/operation/agentes/agent_inventory.php:254 +#: ../../enterprise/operation/log/log_viewer.php:865 +#: ../../enterprise/operation/log/log_viewer.php:873 +#: ../../enterprise/operation/inventory/inventory.php:282 +#: ../../godmode/reporting/reporting_builder.php:1120 +#: ../../include/functions_reporting.php:2272 +msgid "No data found." +msgstr "No data found" + +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:197 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:839 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:547 +#: ../../operation/agentes/status_monitor.php:1134 +msgid "P." +msgstr "P." + +#: ../../enterprise/godmode/agentes/collection_manager.php:202 +#: ../../enterprise/operation/agentes/policy_view.php:140 +#: ../../enterprise/operation/agentes/collection_view.php:63 +msgid "Dir" +msgstr "Dir" + +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/policies/policy_collections.php:153 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:158 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:146 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../godmode/alerts/alert_special_days.php:507 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../godmode/events/event_edit_filter.php:556 +#: ../../operation/events/events_list.php:617 +#: ../../operation/events/events_list.php:689 +#: ../../operation/events/events.php:544 ../../operation/events/events.php:616 +msgid "Remove" +msgstr "Remove" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:164 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:846 +#: ../../enterprise/godmode/services/services.elements.php:620 +#: ../../enterprise/godmode/services/services.elements.php:649 +#: ../../enterprise/godmode/services/services.elements.php:657 +#: ../../enterprise/godmode/services/services.elements.php:726 +#: ../../enterprise/include/functions_visual_map_editor.php:20 +#: ../../enterprise/include/functions_visual_map_editor.php:32 +#: ../../enterprise/include/functions_visual_map_editor.php:45 +#: ../../enterprise/include/functions_visual_map_editor.php:76 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:286 +#: ../../enterprise/include/functions_reporting.php:5358 +#: ../../enterprise/include/functions_services.php:2531 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../include/lib/Dashboard/Widgets/service_map.php:240 +msgid "Service" +msgstr "Service" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic arithmetic" +msgstr "Synthetic arithmetic" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:30 +msgid "Synthetic average" +msgstr "Synthetic average" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 +msgid "Fixed value" +msgstr "Fixed value" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:117 +msgid "Add module to operation as add" +msgstr "Add module to operation as add" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:118 +msgid "Add module to operations as deduct" +msgstr "Add module to operations as deduct" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operations as multiplicate " +msgstr "Add module to operations as multiplicate " + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Add module to operations as divide" +msgstr "Add module to operations as divide" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +msgid "Remove selected modules" +msgstr "Remove selected modules" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:126 +msgid "Add module to average operation" +msgstr "Add module to average operation" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:127 +msgid "Remove selected modules from operations stack" +msgstr "Remove selected modules from operations stack" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:134 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:395 +#: ../../enterprise/include/functions_tasklist.php:173 +#: ../../godmode/massive/massive_copy_modules.php:169 +#: ../../godmode/alerts/alert_list.list.php:460 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:447 +msgid "Operations" +msgstr "Operations" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +msgid "Move down selected modules" +msgstr "Move down selected modules" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +msgid "Move up selected modules" +msgstr "Move up selected modules" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:173 +msgid "Select Service" +msgstr "Select service" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 +msgid "Netflow filter" +msgstr "Netflow filter" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:195 +msgid "Select filter" +msgstr "Select filter" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:81 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:119 +msgid "Successfully added inventory module" +msgstr "Inventory module added successfully" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:83 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:122 +msgid "Error adding inventory module" +msgstr "Error adding inventory module" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:86 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:125 +msgid "The inventory of the module already exists" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:107 +msgid "Successfully forced inventory module" +msgstr "Inventory module forced successfully" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:109 +msgid "Error forcing inventory module" +msgstr "Error forcing inventory module" + +#: ../../enterprise/godmode/agentes/collections.data.php:341 +msgid "Error: The collection directory does not exist." +msgstr "Error: the collection directory does not exist." + +#: ../../enterprise/godmode/agentes/collections.editor.php:84 +msgid "Files in " +msgstr "Files in " + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in updated succesfully" +msgstr "Plugin updated successfully" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in cannot be updated" +msgstr "Plugin cannot be updated" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 +msgid "Plug-in deleted succesfully" +msgstr "Plugin deleted successfully" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 +msgid "Plug-in cannot be deleted" +msgstr "Plugin cannot be deleted" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:67 +msgid "Plug-in added succesfully" +msgstr "Plugin added successfully" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:68 +msgid "Plug-in cannot be added" +msgstr "Plugin cannot be added" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in " +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in cannot be " +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:101 +#: ../../enterprise/godmode/policies/policy_plugins.php:85 +msgid "New plug-in" +msgstr "New plugin" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:119 +#: ../../enterprise/godmode/policies/policies.php:557 +#: ../../godmode/menu.php:279 +msgid "Plugins" +msgstr "Plugins" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:123 +#: ../../enterprise/godmode/agentes/plugins_manager.php:155 +#: ../../enterprise/godmode/policies/policy_alerts.php:656 +#: ../../enterprise/godmode/alerts/alert_events_list.php:798 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../godmode/extensions.php:260 ../../godmode/users/user_list.php:537 +#: ../../godmode/alerts/alert_list.list.php:937 +#: ../../operation/users/user_edit_notifications.php:63 +msgid "Enable" +msgstr "Enable" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:123 +#: ../../enterprise/godmode/agentes/plugins_manager.php:161 +#: ../../enterprise/godmode/policies/policy_alerts.php:648 +#: ../../enterprise/godmode/alerts/alert_events_list.php:790 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../godmode/extensions.php:262 ../../godmode/users/user_list.php:535 +#: ../../godmode/alerts/alert_list.list.php:928 +#: ../../include/functions.php:3191 +msgid "Disable" +msgstr "Disable" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "The changes on this field are linked with the configuration data." + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "Using local component" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:99 +#: ../../godmode/agentes/module_manager_editor_common.php:116 +msgid "Manual setup" +msgstr "Manual setup" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:710 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:646 +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "No component was found" +msgstr "No component was found" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "Show configuration data" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "Hide configuration data" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "Data configuration" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:114 +msgid "Error: The conf file of agent is not readble." +msgstr "Error: the conf file of agent is not readable." + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:118 +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:171 +#: ../../enterprise/godmode/policies/policy_modules.php:383 +msgid "Add module" +msgstr "Add module" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 +msgid "No module was found" +msgstr "No module was found" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:241 +msgid "Delete remote conf agent files" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +#: ../../godmode/agentes/agent_manager.php:548 +msgid "Delete remote configuration file" +msgstr "Delete remote configuration file" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +msgid "" +"Delete this conf file implies that for restore you must reactive remote " +"config in the local agent." +msgstr "" +"Deleting this configuration file means you will have to reactivate remote " +"configuration on the local agent in order to restore it." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:97 +#: ../../godmode/agentes/module_manager_editor_common.php:213 +msgid "Delete module" +msgstr "Delete module" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:124 +msgid "Run performance tests" +msgstr "Run performance tests" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:135 +msgid "Target web site" +msgstr "Target web site" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:137 +msgid "" +"The url specified in this field is mandatory to retrieve performance stats." +msgstr "" +"The URL specified in this field is mandatory to retrieve performance " +"statistics." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:151 +msgid "target web site (http://...)" +msgstr "target web site (http://...)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:158 +msgid "Execute tests from" +msgstr "Execute tests from" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:174 +msgid "Browser" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:176 +msgid "" +"Support for IE and Edge browsers is experimental. Tests might not work as " +"expected." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:334 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "Paste your selenium test, exported as HTML, here" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:347 +msgid "Add file" +msgstr "Add file" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:354 +msgid "Upload your selenium test in html format" +msgstr "Upload your selenium test in HTML format" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:382 +#: ../../godmode/groups/configure_group.php:192 +#: ../../godmode/agentes/agent_manager.php:193 +#: ../../godmode/agentes/module_manager_editor_common.php:522 +#: ../../godmode/massive/massive_edit_agents.php:629 +msgid "Custom ID" +msgstr "Custom ID" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:438 +#: ../../godmode/agentes/module_manager.php:834 +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." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:464 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../godmode/agentes/module_manager_editor_common.php:795 +#: ../../godmode/massive/massive_edit_modules.php:942 +msgid "FF interval" +msgstr "FF interval" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:805 +#: ../../godmode/massive/massive_edit_modules.php:952 +msgid "Module execution flip flop time interval (in secs)." +msgstr "Module execution flip flop time interval (in secs)." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:484 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 +#: ../../godmode/massive/massive_edit_modules.php:1063 +msgid "Retries" +msgstr "Retries" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:499 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:902 +#: ../../godmode/massive/massive_edit_modules.php:1065 +msgid "Number of retries that the module will attempt to run." +msgstr "Number of module launch retry attempts" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:558 +#: ../../enterprise/godmode/policies/policy_modules.php:408 +#: ../../godmode/agentes/module_manager_editor.php:723 +#: ../../godmode/agentes/module_manager_editor_common.php:1142 +msgid "Custom macros" +msgstr "Custom macros" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:77 +#: ../../operation/agentes/pandora_networkmap.editor.php:201 +#: ../../operation/agentes/pandora_networkmap.php:649 +#: ../../operation/agentes/pandora_networkmap.view.php:768 +msgid "Networkmap" +msgstr "Network map" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:85 +#: ../../operation/agentes/pandora_networkmap.editor.php:241 +#: ../../operation/agentes/pandora_networkmap.view.php:774 +msgid "Not found networkmap." +msgstr "Network map not found" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:145 +#: ../../operation/agentes/pandora_networkmap.editor.php:415 +msgid "Save networkmap" +msgstr "Save network map" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:156 +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +msgid "Update networkmap" +msgstr "Update network map" + +#: ../../enterprise/godmode/agentes/collections.php:70 +msgid "Success: recreate file" +msgstr "File recreated successfully" + +#: ../../enterprise/godmode/agentes/collections.php:72 +msgid "Error: recreate file " +msgstr "Error: recreate file " + +#: ../../enterprise/godmode/agentes/collections.php:87 +#: ../../enterprise/godmode/agentes/collections.php:117 +#: ../../enterprise/godmode/agentes/collections.php:226 +msgid "Collections Management" +msgstr "Collection management" + +#: ../../enterprise/godmode/agentes/collections.php:169 +msgid "Manager collection" +msgstr "Collection manager" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 +msgid "Data Copy" +msgstr "Data copy" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 +msgid "No selected agents to copy" +msgstr "No selected agents to copy" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 +msgid "No source agent selected" +msgstr "No source agent selected" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +msgid "Making copy of configuration file for" +msgstr "Making copy of configuration file for" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +msgid "Error copying md5 file " +msgstr "Error copying md5 file " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +msgid " md5 file" +msgstr " md5 file" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid "Copied " +msgstr "Copied " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +msgid "Error copying " +msgstr "Error copying " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid " config file" +msgstr " config file" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:129 +msgid "Remote configuration management" +msgstr "Remote configuration management" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:335 +msgid "Source group" +msgstr "Source group" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:145 +#: ../../operation/agentes/exportdata.php:247 +msgid "Source agent" +msgstr "Source agent" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:178 +msgid "To agent(s):" +msgstr "To agent(s):" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 +msgid "Replicate configuration" +msgstr "Replicate configuration" + +#: ../../enterprise/godmode/agentes/module_manager.php:21 +msgid "Create a new web Server module" +msgstr "Create a new webserver module" + +#: ../../enterprise/godmode/agentes/module_manager.php:31 +msgid "Create a new web analysis module" +msgstr "Create a new web analysis module" + +#: ../../enterprise/godmode/policies/policy_plugins.php:37 +msgid "" +"Successfully added to delete pending plugins. Will be deleted in the next " +"policy application." +msgstr "" +"Successfully added to plugins pending to be deleted. It will be deleted in " +"the next policy application." + +#: ../../enterprise/godmode/policies/policy_plugins.php:38 +msgid "Cannot be added to delete pending plugins." +msgstr "Cannot be added to plugins pending to be deleted" + +#: ../../enterprise/godmode/policies/policy_plugins.php:51 +#: ../../enterprise/godmode/policies/policy_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_modules.php:1294 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:111 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:138 +#: ../../enterprise/godmode/policies/policy_collections.php:80 +#: ../../enterprise/godmode/policies/policy_agents.php:118 +#: ../../enterprise/godmode/policies/policy_agents.php:140 +msgid "Successfully reverted deletion" +msgstr "Deletion reverted successfully" + +#: ../../enterprise/godmode/policies/policy_plugins.php:52 +#: ../../enterprise/godmode/policies/policy_alerts.php:203 +#: ../../enterprise/godmode/policies/policy_modules.php:1295 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:112 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 +#: ../../enterprise/godmode/policies/policy_collections.php:81 +#: ../../enterprise/godmode/policies/policy_agents.php:119 +#: ../../enterprise/godmode/policies/policy_agents.php:141 +msgid "Could not be reverted" +msgstr "Could not be reverted" + +#: ../../enterprise/godmode/policies/policy_plugins.php:154 +msgid "There are no defined plugins" +msgstr "There are no defined plugins" + +#: ../../enterprise/godmode/policies/policy_alerts.php:67 +#: ../../enterprise/godmode/policies/policy_modules.php:572 +#: ../../enterprise/godmode/policies/policies.php:287 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:61 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:79 +#: ../../enterprise/godmode/policies/policy_collections.php:46 +#: ../../enterprise/godmode/policies/policy_agents.php:105 +#: ../../godmode/agentes/module_manager_editor.php:534 +msgid "This policy is applying and cannot be modified" +msgstr "This policy is being applied and cannot be modified." + +#: ../../enterprise/godmode/policies/policy_alerts.php:136 +#: ../../enterprise/godmode/alerts/alert_events_list.php:292 +#: ../../godmode/massive/massive_standby_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:379 +msgid "Successfully set standby" +msgstr "Successfully set to standby mode" + +#: ../../enterprise/godmode/policies/policy_alerts.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:293 +#: ../../godmode/massive/massive_standby_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:380 +msgid "Could not be set standby" +msgstr "Could not be set to standby mode" + +#: ../../enterprise/godmode/policies/policy_alerts.php:157 +#: ../../enterprise/godmode/alerts/alert_events_list.php:312 +#: ../../godmode/massive/massive_standby_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:400 +msgid "Successfully set off standby" +msgstr "Successfully turned off standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:158 +#: ../../enterprise/godmode/alerts/alert_events_list.php:313 +#: ../../godmode/massive/massive_standby_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:401 +msgid "Could not be set off standby" +msgstr "Standby mode could not be deactivated" + +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " created successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " could not be created" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:198 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:107 +msgid "" +"Successfully added to delete pending alerts. Will be deleted in the next " +"policy application." +msgstr "" +"Successfully added to alerts pending to be deleted. It will be deleted in " +"the next policy application." + +#: ../../enterprise/godmode/policies/policy_alerts.php:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:155 +msgid "Added action successfuly" +msgstr "Action successfully added" + +#: ../../enterprise/godmode/policies/policy_alerts.php:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:156 +#: ../../enterprise/godmode/policies/policy_agents.php:227 +#: ../../enterprise/godmode/alerts/alert_events_list.php:212 +#: ../../godmode/massive/massive_delete_action_alerts.php:129 +#: ../../godmode/massive/massive_add_alerts.php:141 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../godmode/massive/massive_add_action_alerts.php:99 +#: ../../godmode/massive/massive_add_action_alerts.php:119 +#: ../../godmode/massive/massive_add_action_alerts.php:122 +#: ../../godmode/massive/massive_add_action_alerts.php:125 +#: ../../godmode/alerts/alert_list.php:262 +#: ../../operation/incidents/incident_detail.php:76 +msgid "Could not be added" +msgstr "Could not be added" + +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:134 +msgid "Deleted action successfuly" +msgstr "Action successfully deleted" + +#: ../../enterprise/godmode/policies/policy_alerts.php:285 +#: ../../enterprise/godmode/policies/policy_alerts.php:492 +#: ../../enterprise/godmode/reporting/visual_console_template.php:89 +#: ../../enterprise/include/functions_tasklist.php:275 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../extensions/agents_alerts.php:266 +#: ../../extensions/agents_alerts.php:586 +#: ../../godmode/alerts/alert_list.list.php:458 +#: ../../godmode/alerts/alert_view.php:72 +#: ../../godmode/alerts/alert_list.builder.php:132 +#: ../../mobile/operation/alerts.php:323 +#: ../../include/functions_reporting_html.php:2401 +#: ../../include/functions_reporting_html.php:2404 +#: ../../include/functions_cron.php:554 +#: ../../include/ajax/alert_list.ajax.php:279 +#: ../../include/ajax/alert_list.ajax.php:304 +#: ../../include/functions_treeview.php:416 +#: ../../include/functions_treeview.php:457 +#: ../../operation/agentes/alerts_status.php:523 +#: ../../operation/agentes/alerts_status.php:558 +#: ../../operation/agentes/alerts_status.php:593 +#: ../../operation/agentes/alerts_status.php:625 +#: ../../operation/search_alerts.php:35 +#: ../../operation/servers/recon_view.php:106 +msgid "Template" +msgstr "Template" + +#: ../../enterprise/godmode/policies/policy_alerts.php:362 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:242 +#: ../../enterprise/godmode/alerts/alert_events_list.php:637 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2299 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3252 +#: ../../godmode/alerts/alert_list.list.php:604 +#: ../../godmode/alerts/alert_view.php:198 +#: ../../include/functions_alerts.php:666 +msgid "Always" +msgstr "Always" + +#: ../../enterprise/godmode/policies/policy_alerts.php:364 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:244 +#: ../../enterprise/godmode/alerts/alert_events_list.php:639 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3254 +#: ../../godmode/alerts/alert_list.list.php:606 +#: ../../include/class/Diagnostics.class.php:1172 +#: ../../include/class/Diagnostics.class.php:1176 +msgid "On" +msgstr "On" + +#: ../../enterprise/godmode/policies/policy_alerts.php:368 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:248 +#: ../../enterprise/godmode/alerts/alert_events_list.php:643 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3258 +#: ../../godmode/alerts/alert_list.list.php:610 +msgid "Until" +msgstr "Until" + +#: ../../enterprise/godmode/policies/policy_alerts.php:464 +#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:280 +#: ../../enterprise/godmode/policies/policy_agents.php:871 +#: ../../enterprise/godmode/policies/policy_agents.php:1222 +msgid "Undo deletion" +msgstr "Undo deletion" + +#: ../../enterprise/godmode/policies/policy_alerts.php:531 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:322 +#: ../../enterprise/godmode/alerts/alert_events_list.php:690 +#: ../../extensions/agents_alerts.php:249 +#: ../../godmode/massive/massive_add_action_alerts.php:214 +#: ../../godmode/alerts/alert_list.list.php:722 +#: ../../godmode/alerts/alert_list.builder.php:119 +#: ../../include/ajax/alert_list.ajax.php:493 +msgid "Number of alerts match from" +msgstr "Number of matching alerts" + +#: ../../enterprise/godmode/policies/policy_alerts.php:548 +msgid "There is not alerts configured in this policy." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:576 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:97 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:109 +#: ../../godmode/massive/massive_standby_alerts.php:178 +#: ../../godmode/massive/massive_add_alerts.php:249 +#: ../../godmode/massive/massive_enable_disable_alerts.php:166 +#: ../../godmode/massive/massive_delete_alerts.php:241 +msgid "Alert template" +msgstr "Alert template" + +#: ../../enterprise/godmode/policies/policy_alerts.php:587 +msgid "Policy module" +msgstr "Policy module" + +#: ../../enterprise/godmode/policies/policy_alerts.php:665 +#: ../../enterprise/godmode/alerts/alert_events_list.php:807 +#: ../../godmode/alerts/alert_list.list.php:946 +msgid "Set off standby" +msgstr "Turn off standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:674 +#: ../../enterprise/godmode/alerts/alert_events_list.php:816 +#: ../../godmode/alerts/alert_list.list.php:955 +msgid "Set standby" +msgstr "Set standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:688 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:272 +#: ../../enterprise/godmode/alerts/alert_events_list.php:671 +#: ../../enterprise/godmode/alerts/alert_events_list.php:673 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:460 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/alerts/alert_list.list.php:828 +#: ../../godmode/alerts/alert_list.list.php:832 +#: ../../godmode/alerts/alert_list.list.php:985 +msgid "Add action" +msgstr "Add action" + +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/servers/HA_cluster.php:52 +#: ../../enterprise/include/functions_policies.php:3711 +#: ../../godmode/agentes/configurar_agente.php:380 +#: ../../godmode/agentes/configurar_agente.php:600 ../../godmode/menu.php:292 +#: ../../godmode/menu.php:299 +#: ../../godmode/module_library/module_library_view.php:45 +#: ../../operation/agentes/estado_agente.php:179 +#: ../../operation/gis_maps/render_view.php:160 +msgid "Setup" +msgstr "Setup" + +#: ../../enterprise/godmode/policies/configure_policy.php:98 +msgid "Force Apply" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:98 +msgid "" +"Force the creation of modules even if the software agent does not have " +"remote configuration" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:295 +msgid "" +"If you change this description, you must change into the text of Data " +"configuration." +msgstr "" +"If you change this description, you must change it in the text of data " +"configuration." + +#: ../../enterprise/godmode/policies/policy_modules.php:368 +msgid "Invalid module type." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:521 +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:554 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "Module(s) (%s/%s) added successfully to policy %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:560 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "Module(s) (%s/%s) could not be added to policy %s." + +#: ../../enterprise/godmode/policies/policy_modules.php:864 +msgid "Could not be added module." +msgstr "Module could not be added" + +#: ../../enterprise/godmode/policies/policy_modules.php:1243 +msgid "" +"The module type in Data configuration is empty, take from combo box of form." +msgstr "" +"The module type in data configuration is empty, choose one from the combo " +"box of the form." + +#: ../../enterprise/godmode/policies/policy_modules.php:1247 +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." + +#: ../../enterprise/godmode/policies/policy_modules.php:1277 +#: ../../enterprise/godmode/policies/policy_modules.php:1290 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:132 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next " +"policy application." +msgstr "" +"Successfully added to modules pending to be deleted. They will be deleted in " +"the next policy application." + +#: ../../enterprise/godmode/policies/policy_modules.php:1281 +msgid "Could not be added to deleted all modules." +msgstr "Could not be added to deletion of all modules" + +#: ../../enterprise/godmode/policies/policy_modules.php:1344 +#: ../../godmode/agentes/configurar_agente.php:2122 +#, php-format +msgid "copy of %s" +msgstr "copy of %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:1362 +#: ../../godmode/agentes/configurar_agente.php:2136 +#, php-format +msgid "copy of %s (%d)" +msgstr "copy of %s (%d)" + +#: ../../enterprise/godmode/policies/policy_modules.php:1386 +msgid "Successfully duplicate the module." +msgstr "Duplication of module successful" + +#: ../../enterprise/godmode/policies/policy_modules.php:1387 +#: ../../operation/agentes/pandora_networkmap.php:525 +msgid "Could not be duplicated" +msgstr "Could not be duplicated" + +#: ../../enterprise/godmode/policies/policy_modules.php:1474 +msgid "Local component" +msgstr "Local component" + +#: ../../enterprise/godmode/policies/policy_modules.php:1489 +#: ../../enterprise/godmode/policies/policy_modules.php:1490 +msgid "Disabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1496 +#: ../../enterprise/godmode/policies/policy_modules.php:1497 +msgid "Enabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1506 +#: ../../enterprise/godmode/policies/policy_modules.php:1507 +#: ../../godmode/agentes/module_manager.php:862 +#: ../../godmode/agentes/module_manager.php:863 +msgid "Enable module" +msgstr "Enable module" + +#: ../../enterprise/godmode/policies/policy_modules.php:1515 +#: ../../enterprise/godmode/policies/policy_modules.php:1516 +#: ../../godmode/agentes/module_manager.php:871 +#: ../../godmode/agentes/module_manager.php:872 +msgid "Disable module" +msgstr "Disable module" + +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +msgid "There are no defined modules" +msgstr "There are no defined modules" + +#: ../../enterprise/godmode/policies/policy_modules.php:1610 +#: ../../godmode/massive/massive_copy_modules.php:172 +msgid "Copy modules" +msgstr "Copy modules" + +#: ../../enterprise/godmode/policies/policy_modules.php:1611 +msgid "Copy selected modules to policy: " +msgstr "Copy selected modules to policy: " + +#: ../../enterprise/godmode/policies/policy_modules.php:1673 +#: ../../godmode/agentes/module_manager_editor.php:795 +msgid "No module name provided" +msgstr "No module name provided" + +#: ../../enterprise/godmode/policies/policy_modules.php:1674 +#: ../../godmode/agentes/module_manager_editor.php:805 +msgid "No target IP provided" +msgstr "No target IP provided" + +#: ../../enterprise/godmode/policies/policy_modules.php:1675 +#: ../../godmode/agentes/module_manager_editor.php:815 +msgid "No SNMP OID provided" +msgstr "No SNMP OID provided" + +#: ../../enterprise/godmode/policies/policy_modules.php:1814 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "Are you sure you want to copy modules into policy ? \\n" + +#: ../../enterprise/godmode/policies/policy_modules.php:1834 +msgid "Please select any module to copy" +msgstr "Please select any module to copy" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:876 +#: ../../enterprise/include/functions_massive.php:15 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:224 +#: ../../godmode/massive/massive_delete_action_alerts.php:129 +#: ../../godmode/massive/massive_add_action_alerts.php:122 +#: ../../godmode/massive/massive_edit_modules.php:1865 +#: ../../godmode/reporting/visual_console_builder.php:579 +#: ../../include/functions_visual_map.php:2674 +msgid "No modules selected" +msgstr "No modules selected" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:416 +msgid "Successfully modules created" +msgstr "Modules created successfully" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:431 +msgid "Some required fields are missed" +msgstr "Some required fields are missing" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:431 +msgid "name" +msgstr "name" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:401 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 +msgid "Processing error" +msgstr "Processing error" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:433 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:475 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:722 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:600 +#: ../../extensions/realtime_graphs.php:158 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:439 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:469 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:727 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:749 +#: ../../include/class/AgentWizard.class.php:218 +#: ../../include/functions_snmp_browser.php:651 +msgid "Target IP" +msgstr "Target IP" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:436 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:725 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:906 +#: ../../enterprise/godmode/setup/setup_history.php:51 +#: ../../enterprise/godmode/servers/manage_export_form.php:121 +#: ../../extensions/quick_shell.php:145 +#: ../../godmode/modules/manage_network_components_form_network.php:53 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:472 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:730 +#: ../../godmode/agentes/module_manager_editor_network.php:126 +#: ../../godmode/massive/massive_edit_modules.php:1073 +#: ../../godmode/servers/modificar_server.php:82 +#: ../../include/functions_config.php:1422 +#: ../../include/class/AgentWizard.class.php:230 +msgid "Port" +msgstr "Port" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:454 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:526 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:743 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:484 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:479 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../include/class/AgentWizard.class.php:155 +#: ../../include/functions_snmp_browser.php:699 +msgid "Local console" +msgstr "Local console" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:470 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:542 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:759 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:500 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:500 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:758 +#: ../../godmode/events/event_responses.editor.php:174 +#: ../../include/class/AgentWizard.class.php:295 +msgid "Server to execute command" +msgstr "Server to execute command" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:519 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:808 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:572 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:830 +#: ../../include/class/AgentWizard.class.php:152 +msgid "SNMP Walk" +msgstr "SNMP Walk" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:523 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:576 +msgid "Unable to do SNMP walk" +msgstr "Unable to perform an SNMP walk" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:569 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:796 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:992 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:737 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:640 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1015 +msgid "Create modules" +msgstr "Create modules" + +#: ../../enterprise/godmode/policies/policy_queue.php:108 +msgid "Operations successfully deleted from the queue" +msgstr "Operations successfully deleted from the queue" + +#: ../../enterprise/godmode/policies/policy_queue.php:109 +msgid "Operations cannot be deleted from the queue" +msgstr "Operations cannot be deleted from the queue" + +#: ../../enterprise/godmode/policies/policy_queue.php:185 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:220 +msgid "Update pending" +msgstr "Update pending" + +#: ../../enterprise/godmode/policies/policy_queue.php:222 +msgid "Update pending agents" +msgstr "Agents pending to be updated" + +#: ../../enterprise/godmode/policies/policy_queue.php:235 +#: ../../enterprise/godmode/policies/policy_agents.php:838 +#: ../../enterprise/godmode/policies/policy_agents.php:1180 +msgid "Add to apply queue" +msgstr "Add to apply queue" + +#: ../../enterprise/godmode/policies/policy_queue.php:238 +msgid "Add to apply queue only for database" +msgstr "Add to apply queue only for database" + +#: ../../enterprise/godmode/policies/policy_queue.php:245 +msgid "Update pending groups" +msgstr "Groups pending to be updated" + +#: ../../enterprise/godmode/policies/policy_queue.php:252 +msgid "Link pending modules" +msgstr "Link pending modules" + +#: ../../enterprise/godmode/policies/policy_queue.php:257 +msgid "Will be linked in the next policy application" +msgstr "They will be linked in the next policy application." + +#: ../../enterprise/godmode/policies/policy_queue.php:260 +msgid "Unlink pending modules" +msgstr "Unlink pending modules" + +#: ../../enterprise/godmode/policies/policy_queue.php:265 +msgid "Will be unlinked in the next policy application" +msgstr "They will be unlinked in the next policy application." + +#: ../../enterprise/godmode/policies/policy_queue.php:270 +msgid "Delete pending" +msgstr "Delete pending" + +#: ../../enterprise/godmode/policies/policy_queue.php:272 +msgid "Delete pending agents" +msgstr "Delete pending agents" + +#: ../../enterprise/godmode/policies/policy_queue.php:277 +#: ../../enterprise/godmode/policies/policy_queue.php:285 +#: ../../enterprise/godmode/policies/policy_queue.php:293 +#: ../../enterprise/godmode/policies/policy_queue.php:301 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:317 +#: ../../enterprise/godmode/policies/policy_queue.php:325 +#: ../../enterprise/godmode/policies/policy_queue.php:333 +msgid "Will be deleted in the next policy application" +msgstr "Will be deleted in the next policy application" + +#: ../../enterprise/godmode/policies/policy_queue.php:280 +msgid "Delete pending groups" +msgstr "Delete pending groups" + +#: ../../enterprise/godmode/policies/policy_queue.php:288 +msgid "Delete pending modules" +msgstr "Delete pending modules" + +#: ../../enterprise/godmode/policies/policy_queue.php:296 +msgid "Delete pending inventory modules" +msgstr "Delete pending inventory modules" + +#: ../../enterprise/godmode/policies/policy_queue.php:304 +msgid "Delete pending alerts" +msgstr "Delete pending alerts" + +#: ../../enterprise/godmode/policies/policy_queue.php:312 +msgid "Delete pending external alerts" +msgstr "Delete pending external alerts" + +#: ../../enterprise/godmode/policies/policy_queue.php:320 +msgid "Delete pending file collections" +msgstr "Delete pending file collections" + +#: ../../enterprise/godmode/policies/policy_queue.php:328 +msgid "Delete pending plugins" +msgstr "Delete pending plugins" + +#: ../../enterprise/godmode/policies/policy_queue.php:339 +msgid "Advices" +msgstr "Advices" + +#: ../../enterprise/godmode/policies/policy_queue.php:342 +msgid "Queue summary" +msgstr "Queue summary" + +#: ../../enterprise/godmode/policies/policy_queue.php:342 +#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../godmode/users/user_list.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:1139 +#: ../../godmode/alerts/alert_list.list.php:167 +#: ../../operation/agentes/alerts_status.php:475 +#: ../../operation/agentes/graphs.php:262 +#: ../../operation/snmpconsole/snmp_view.php:682 +#: ../../operation/snmpconsole/snmp_view.php:764 +msgid "Toggle filter(s)" +msgstr "Toggle filter(s)" + +#: ../../enterprise/godmode/policies/policy_queue.php:447 +msgid "Queue filter" +msgstr "Queue filter" + +#: ../../enterprise/godmode/policies/policy_queue.php:555 +msgid "Empty queue" +msgstr "Empty queue" + +#: ../../enterprise/godmode/policies/policy_queue.php:572 +msgid "This operation could take a long time" +msgstr "This operation could take some time." + +#: ../../enterprise/godmode/policies/policy_queue.php:583 +msgid "Apply all queues" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:591 +msgid "Clear all items" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:194 +msgid "Policy name already exists" +msgstr "Policy name already exists" + +#: ../../enterprise/godmode/policies/policies.php:262 +msgid "Policies Management" +msgstr "Policies management" + +#: ../../enterprise/godmode/policies/policies.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 +#: ../../godmode/alerts/alert_actions.php:109 +#: ../../godmode/alerts/alert_commands.php:401 +#: ../../godmode/reporting/map_builder.php:267 +#: ../../godmode/reporting/map_builder.php:274 +#: ../../include/functions_agents.php:941 +msgid "Successfully copied" +msgstr "Successfully copied" + +#: ../../enterprise/godmode/policies/policies.php:274 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:333 +#: ../../godmode/alerts/alert_actions.php:110 +#: ../../godmode/alerts/alert_commands.php:402 +msgid "Could not be copied" +msgstr "Could not be copied" + +#: ../../enterprise/godmode/policies/policies.php:281 +msgid "All policy agents added to delete queue" +msgstr "All policy agents added to delete queue" + +#: ../../enterprise/godmode/policies/policies.php:282 +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:296 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:27 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:25 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:27 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:27 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:28 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:25 +#: ../../godmode/massive/massive_operations.php:288 +msgid "" +"This node is configured with centralized mode. All policies information is " +"read only. Go to metaconsole to manage it." +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:356 +msgid "a" +msgstr "a" + +#: ../../enterprise/godmode/policies/policies.php:523 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/include/functions_policies.php:3776 +msgid "Linking" +msgstr "Linking" + +#: ../../enterprise/godmode/policies/policies.php:536 +msgid "Agent Wizard" +msgstr "Agent Wizard" + +#: ../../enterprise/godmode/policies/policies.php:545 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:41 +#: ../../enterprise/include/functions_policies.php:3768 +msgid "External alerts" +msgstr "External alerts" + +#: ../../enterprise/godmode/policies/policies.php:549 +#: ../../enterprise/godmode/policies/policy.php:50 +#: ../../enterprise/include/functions_policies.php:3792 +msgid "Queue" +msgstr "Queue" + +#: ../../enterprise/godmode/policies/policies.php:611 +msgid "There must be no agents to delete the policy." +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:614 +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:622 +msgid "Deleting all policy agents" +msgstr "Deleting all policy agents" + +#: ../../enterprise/godmode/policies/policies.php:625 +msgid "All the policy agents will be deleted" +msgstr "All policy agents will be deleted." + +#: ../../enterprise/godmode/policies/policies.php:634 +msgid "Delete all agents" +msgstr "Delete all agents" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:234 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:200 +#, php-format +msgid "Free space on %s" +msgstr "Free space on %s" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:383 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:353 +#, php-format +msgid "%s service modules created succesfully" +msgstr "%s service modules created successfully" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:390 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:360 +#, php-format +msgid "Error creating %s service modules" +msgstr "Error when creating %s service modules" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:399 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 +#, php-format +msgid "%s process modules created succesfully" +msgstr "%s process modules created successfully" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:406 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:376 +#, php-format +msgid "Error creating %s process modules" +msgstr "Error when creating %s service modules" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:415 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:385 +#, php-format +msgid "%s disk space modules created succesfully" +msgstr "%s disk space modules created successfully" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:422 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:392 +#, php-format +msgid "Error creating %s disk space modules" +msgstr "Error upon creating %s disk space modules" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:431 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:401 +#, php-format +msgid "%s modules created from components succesfully" +msgstr "%s modules created from components successfully" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:438 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:408 +#, php-format +msgid "Error creating %s modules from components" +msgstr "Error creating %s modules from components" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:445 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:694 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 +#, php-format +msgid "%s modules already exist" +msgstr "%s modules already exist" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:485 +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:449 +#: ../../include/class/AgentWizard.class.php:258 +msgid "Namespace" +msgstr "Namespace" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:692 +#: ../../enterprise/godmode/setup/setup_module_library.php:46 +#: ../../enterprise/include/functions_ui.php:102 +#: ../../extensions/quick_shell.php:138 +#: ../../godmode/modules/manage_network_components_form_wmi.php:47 +#: ../../godmode/agentes/module_manager_editor_wmi.php:63 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:459 +#: ../../godmode/massive/massive_edit_modules.php:834 +#: ../../include/class/CredentialStore.class.php:881 +#: ../../include/class/AgentWizard.class.php:270 +msgid "Username" +msgstr "Username" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:562 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:517 +msgid "WMI Explore" +msgstr "WMI Explorer" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:571 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:525 +msgid "Unable to do WMI explorer" +msgstr "Unable to perform WMI exploration" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:619 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:841 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:554 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:864 +#: ../../operation/agentes/ver_agente.php:1314 +msgid "Processes" +msgstr "Processes" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:620 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:842 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:555 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 +msgid "Free space on disk" +msgstr "Free space on disk" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:621 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:556 +msgid "WMI components" +msgstr "WMI components" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:623 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:846 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:558 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:869 +msgid "Wizard mode" +msgstr "Wizard mode" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:643 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:578 +#: ../../godmode/agentes/planned_downtime.editor.php:938 +msgid "Filter by group" +msgstr "Filter by group" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:738 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:745 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:752 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:759 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:970 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:972 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:974 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:976 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:979 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:675 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:683 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:691 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:699 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:993 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:995 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:999 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 +msgid "Add to modules list" +msgstr "Add to the module list" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:767 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:982 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:708 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1005 +msgid "Remove from modules list" +msgstr "Remove from the module list" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:852 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:868 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:884 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:900 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1055 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1071 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1087 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1103 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1119 +#: ../../enterprise/include/functions_events.php:198 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:793 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:809 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:825 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:841 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1080 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1096 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1112 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1128 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1144 +#: ../../godmode/events/event_edit_filter.php:404 +#: ../../mobile/operation/events.php:528 +#: ../../include/functions_events.php:4547 +#: ../../operation/events/events_list.php:968 +#: ../../operation/events/events.php:946 +msgid "Repeated" +msgstr "Duplicate" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:862 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1065 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:803 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1090 +#: ../../godmode/reporting/visual_console_builder.wizard.php:276 +#: ../../include/functions_visual_map_editor.php:544 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:370 +msgid "Process" +msgstr "Process" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:922 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1144 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:863 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1169 +msgid "Modules list is empty" +msgstr "Module list is empty" + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "Linking modules" + +#: ../../enterprise/godmode/policies/policy_linking.php:87 +msgid "Error: Update linking modules to policy" +msgstr "Error: updating modules linked to policy" + +#: ../../enterprise/godmode/policies/policy_linking.php:89 +msgid "Success: Update linking modules to policy" +msgstr "Success: updating modules linked to policy" + +#: ../../enterprise/godmode/policies/policy_linking.php:99 +msgid "Free text for filter (*)" +msgstr "Free text for filter (*)" + +#: ../../enterprise/godmode/policies/policy_linking.php:100 +msgid "Free text for filter" +msgstr "Free text for filter" + +#: ../../enterprise/godmode/policies/policy_linking.php:110 +msgid "Cannot retrieve unlinked modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:112 +msgid "There are no defined modules unlinked" +msgstr "There are no defined modules unlinked" + +#: ../../enterprise/godmode/policies/policy_linking.php:114 +msgid "List of modules unlinked" +msgstr "List of unlinked modules" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "The SNMP remote plugin doesnt seem to be installed" +msgstr "The remote SNMP plugin does not appear to be installed." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "It is necessary to use some features" +msgstr "It is necessary in order to access certain features" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +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)" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:283 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:286 +msgid "Remote system doesnt support host SNMP information" +msgstr "The remote system does not support the host SNMP information." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:369 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:371 +msgid "The number of bytes read from this device since boot" +msgstr "Number of bytes read from this device since startup" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:370 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:372 +msgid "The number of bytes written to this device since boot" +msgstr "Number of bytes written to this device since startup" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:371 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:373 +msgid "The number of read accesses from this device since boot" +msgstr "Number of read accesses from this device since startup" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:372 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:374 +msgid "The number of write accesses from this device since boot" +msgstr "Number of write accesses from this device since startup" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:544 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:548 +#, php-format +msgid "Check if the process %s is running or not" +msgstr "Check if the process %s is running" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:611 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:615 +msgid "Disk use information" +msgstr "Disk usage information" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:676 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 +#, php-format +msgid "%s modules created succesfully" +msgstr "%s modules created successfully" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:682 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:688 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:691 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:697 +#, php-format +msgid "Error creating %s modules" +msgstr "Error creating %s modules" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:702 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:711 +msgid "Modules created succesfully" +msgstr "Modules successfully created" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 +#: ../../enterprise/include/functions_inventory.php:179 +#: ../../enterprise/operation/services/services.treeview_services.php:223 +#: ../../godmode/groups/group_list.php:845 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:604 +#: ../../operation/tree.php:347 ../../operation/network/network_report.php:333 +msgid "No data found" +msgstr "No data found" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +msgid "" +"If the device is a network device, try with the SNMP Interfaces wizard" +msgstr "If it is a network device, try with the SNMP interface wizard." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:840 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 +msgid "Devices" +msgstr "Devices" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:843 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:866 +msgid "Temperature sensors" +msgstr "Temperature sensors" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:844 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:867 +msgid "Other SNMP data" +msgstr "Other SNMP data" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:886 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:891 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:909 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:914 +msgid "SNMP remote plugin is necessary for this feature" +msgstr "The remote SNMP plugin is necessary to execute this feature." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1049 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1074 +msgid "Device" +msgstr "Device" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1097 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1122 +msgid "Temperature" +msgstr "Temperature" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:71 +#: ../../godmode/alerts/alert_list.php:172 +msgid "No module specified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:94 +msgid "Created successfuly" +msgstr "Successfully created" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +msgid "Duplicated alert" +msgstr "Duplicated alert" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +msgid "Modules in policy per agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +msgid "There is not external alerts configured in this policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:342 +msgid "Modules in policy agents" +msgstr "Modules in policy agents" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 +msgid "The complete and exact name of the module must be specified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:370 +msgid "Alert Template" +msgstr "Alert template" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 +msgid "Module is not selected" +msgstr "Module is not selected" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:247 +msgid "There are no defined inventory modules" +msgstr "There are no defined inventory modules" + +#: ../../enterprise/godmode/policies/policy_collections.php:76 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next " +"policy application." +msgstr "" +"Successfully added to the deletion of the collection. It will be deleted in " +"the next policy application." + +#: ../../enterprise/godmode/policies/policy_collections.php:204 +#: ../../enterprise/godmode/policies/policy_collections.php:277 +#: ../../enterprise/operation/agentes/policy_view.php:172 +#: ../../enterprise/operation/agentes/collection_view.php:111 +#: ../../enterprise/operation/agentes/collection_view.php:112 +msgid "Outdate" +msgstr "Outdated" + +#: ../../enterprise/godmode/policies/policy_collections.php:221 +msgid "Collections in policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:225 +msgid "Collections to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:296 +msgid "No available collection to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:114 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next " +"policy application." +msgstr "" +"Successfully added to agents pending to be deleted. They will be deleted in " +"the next policy application." + +#: ../../enterprise/godmode/policies/policy_agents.php:136 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next " +"policy application." +msgstr "" +"Successfully added to groups pending to be deleted. Will be deleted in the " +"next policy application." + +#: ../../enterprise/godmode/policies/policy_agents.php:189 +#: ../../enterprise/godmode/policies/policy_agents.php:332 +msgid "Successfully added to delete queue" +msgstr "Successfully added to delete queue" + +#: ../../enterprise/godmode/policies/policy_agents.php:190 +#: ../../enterprise/godmode/policies/policy_agents.php:333 +msgid "Could not be added to delete queue" +msgstr "Could not be added to the delete queue" + +#: ../../enterprise/godmode/policies/policy_agents.php:226 +#: ../../enterprise/godmode/alerts/alert_events_list.php:211 +#: ../../godmode/massive/massive_add_alerts.php:140 +#: ../../godmode/massive/massive_add_action_alerts.php:119 +#: ../../godmode/alerts/alert_list.php:261 +#: ../../operation/incidents/incident_detail.php:75 +msgid "Successfully added" +msgstr "Successfully added" + +#: ../../enterprise/godmode/policies/policy_agents.php:239 +msgid "Successfully deleted from delete pending agents" +msgstr "Successfully deleted from agents pending to be deleted" + +#: ../../enterprise/godmode/policies/policy_agents.php:240 +msgid "Could not be deleted from delete pending agents" +msgstr "Could not be deleted from agents pending to be deleted" + +#: ../../enterprise/godmode/policies/policy_agents.php:419 +msgid "Apply to" +msgstr "Apply to" + +#: ../../enterprise/godmode/policies/policy_agents.php:470 +#: ../../enterprise/godmode/policies/policy_agents.php:503 +#: ../../enterprise/godmode/policies/policy_agents.php:542 +#: ../../enterprise/godmode/policies/policy_agents.php:687 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:98 +#: ../../godmode/massive/massive_copy_modules.php:96 +#: ../../godmode/massive/massive_copy_modules.php:249 +#: ../../godmode/massive/massive_standby_alerts.php:161 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_delete_modules.php:362 +#: ../../godmode/massive/massive_add_alerts.php:200 +#: ../../godmode/massive/massive_delete_agents.php:126 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_delete_alerts.php:275 +#: ../../godmode/massive/massive_add_action_alerts.php:168 +#: ../../godmode/massive/massive_edit_modules.php:343 +#: ../../include/functions_html.php:837 ../../include/functions_html.php:980 +msgid "Group recursion" +msgstr "Group recursion" + +#: ../../enterprise/godmode/policies/policy_agents.php:517 +#: ../../enterprise/godmode/policies/policy_agents.php:525 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:389 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:169 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:570 +msgid "Filter agent" +msgstr "Filter agent" + +#: ../../enterprise/godmode/policies/policy_agents.php:534 +msgid "Agents in Policy" +msgstr "Agents in policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:556 +msgid "Groups in Policy" +msgstr "Groups in policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:630 +msgid "Add agents to policy" +msgstr "Add agents to policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:638 +msgid "Delete agents from policy" +msgstr "Delete agents from policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:697 +msgid "Applied" +msgstr "Applied" + +#: ../../enterprise/godmode/policies/policy_agents.php:698 +msgid "Not applied" +msgstr "Not applied" + +#: ../../enterprise/godmode/policies/policy_agents.php:709 +#: ../../godmode/agentes/configurar_agente.php:512 +#: ../../godmode/agentes/configurar_agente.php:653 +#: ../../godmode/agentes/agent_manager.php:538 +#: ../../godmode/massive/massive_edit_agents.php:646 +#: ../../godmode/servers/servers.build_table.php:202 +msgid "Remote configuration" +msgstr "Remote configuration" + +#: ../../enterprise/godmode/policies/policy_agents.php:709 +#: ../../enterprise/operation/agentes/policy_view.php:323 +msgid "R." +msgstr "R." + +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:206 +#: ../../enterprise/operation/agentes/policy_view.php:211 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../mobile/operation/agents.php:396 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../include/functions_events.php:2393 +#: ../../operation/agentes/alerts_status.php:513 +#: ../../operation/agentes/alerts_status.php:549 +#: ../../operation/agentes/alerts_status.php:584 +#: ../../operation/agentes/alerts_status.php:617 +msgid "S." +msgstr "S." + +#: ../../enterprise/godmode/policies/policy_agents.php:712 +msgid "Unlinked modules" +msgstr "Unlinked modules" + +#: ../../enterprise/godmode/policies/policy_agents.php:712 +msgid "U." +msgstr "U." + +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:397 +msgid "A." +msgstr "A." + +#: ../../enterprise/godmode/policies/policy_agents.php:715 +#: ../../enterprise/godmode/policies/policy_agents.php:1078 +#: ../../enterprise/operation/agentes/policy_view.php:52 +msgid "Last application" +msgstr "Last application" + +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 +msgid "Add to delete queue" +msgstr "Add to delete queue" + +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 +msgid "D." +msgstr "D." + +#: ../../enterprise/godmode/policies/policy_agents.php:782 +#: ../../godmode/agentes/agent_manager.php:247 +msgid "This agent can be remotely configured" +msgstr "This agent can be configured remotely." + +#: ../../enterprise/godmode/policies/policy_agents.php:788 +msgid "This agent can not be remotely configured" +msgstr "This agent cannot be remotely configured." + +#: ../../enterprise/godmode/policies/policy_agents.php:827 +#: ../../enterprise/godmode/policies/policy_agents.php:1169 +msgid "Process deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:889 +#: ../../enterprise/godmode/policies/policy_agents.php:1123 +#: ../../enterprise/operation/agentes/policy_view.php:66 +msgid "Policy applied" +msgstr "Policy applied" + +#: ../../enterprise/godmode/policies/policy_agents.php:895 +#: ../../enterprise/godmode/policies/policy_agents.php:1129 +msgid "Need apply" +msgstr "Must be applied" + +#: ../../enterprise/godmode/policies/policy_agents.php:905 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 +msgid "Applying policy" +msgstr "Applying policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:915 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 +msgid "Deleting from policy" +msgstr "Deleting from policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:930 +#: ../../godmode/massive/massive_delete_modules.php:72 +#: ../../godmode/massive/massive_add_alerts.php:100 +#: ../../godmode/massive/massive_delete_agents.php:35 +#: ../../godmode/massive/massive_edit_agents.php:136 +#: ../../godmode/massive/massive_delete_alerts.php:98 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../include/functions_visual_map.php:2566 +#: ../../include/functions_visual_map.php:2953 +msgid "No agents selected" +msgstr "No agents selected" + +#: ../../enterprise/godmode/policies/policy_agents.php:1026 +msgid "Add groups to policy" +msgstr "Add groups to policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:1034 +msgid "Delete groups from policy" +msgstr "Delete groups from policy" + +#: ../../enterprise/godmode/policies/policy_agents.php:1077 +msgid "Total agents in policy group" +msgstr "Total agents in policy group" + +#: ../../enterprise/godmode/policies/policy_agents.php:1077 +msgid "T." +msgstr "T." + +#: ../../enterprise/godmode/policies/policy.php:92 +#: ../../enterprise/include/functions_policies.php:3729 +#: ../../godmode/agentes/configurar_agente.php:467 +msgid "Agent wizard" +msgstr "Agent wizard" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:23 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 ../../include/functions_menu.php:545 +msgid "SNMP trap editor" +msgstr "SNMP trap editor" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:338 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:284 +#: ../../extensions/realtime_graphs.php:172 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:522 +msgid "OID" +msgstr "OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:339 +msgid "Custom OID" +msgstr "Custom OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1991 +#: ../../enterprise/include/functions_reporting_csv.php:2151 +#: ../../enterprise/include/functions_reporting_csv.php:2165 +#: ../../godmode/setup/news.php:195 ../../godmode/setup/setup_visuals.php:1208 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1808 +#: ../../include/functions_reports.php:804 +#: ../../include/functions_reporting.php:5111 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "Text" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:199 +msgid "Successfully added trap custom values" +msgstr "Trap custom values added successfully" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:189 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:201 +msgid "Error adding trap custom values" +msgstr "Error adding trap custom values" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:204 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 +msgid "This custom OID is preexistent." +msgstr "This custom OID already exists." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:245 +msgid "No change in data" +msgstr "No change in data" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:247 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:274 +msgid "Successfully updated trap custom values" +msgstr "Trap custom values updated successfully" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:276 +msgid "Error updating trap custom values" +msgstr "Error updating trap custom values" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:289 +msgid "Successfully deleted trap custom values" +msgstr "Trap custom values deleted successfully" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:292 +msgid "Error deleting trap custom values" +msgstr "Error deleting trap custom values" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "Uploaded %s/%s traps" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:302 +msgid "Fail uploaded file" +msgstr "Error uploading file" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:307 +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." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:316 +msgid "Load MIB" +msgstr "Load MIB" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 +msgid "Upload MIB" +msgstr "Upload MIB" + +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "Manage Satellite Server" + +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:69 +msgid "Policies operations" +msgstr "Policies operations" + +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:48 +msgid "SNMP operations" +msgstr "SNMP operations" + +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:27 +msgid "Satellite operations" +msgstr "Satellite operations" + +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:258 +msgid "Duplicate config" +msgstr "Duplicate configuration" + +#: ../../enterprise/godmode/menu.php:87 +#: ../../enterprise/include/functions_policies.php:3708 +msgid "Manage policies" +msgstr "Manage policies" + +#: ../../enterprise/godmode/menu.php:96 +msgid "Manage agent autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/include/class/AgentRepository.class.php:596 +msgid "Software agents repository" +msgstr "" + +#: ../../enterprise/godmode/menu.php:127 +#: ../../enterprise/include/functions_setup.php:48 +#: ../../enterprise/include/functions_setup.php:90 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "Historical database" + +#: ../../enterprise/godmode/menu.php:138 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "" + +#: ../../enterprise/godmode/menu.php:142 +#: ../../enterprise/include/class/DeploymentCenter.class.php:573 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:638 +msgid "Agent deployment" +msgstr "" + +#: ../../enterprise/godmode/menu.php:152 +msgid "Mysql" +msgstr "" + +#: ../../enterprise/godmode/menu.php:153 +#: ../../enterprise/godmode/setup/setup.php:179 +#: ../../enterprise/include/class/Oracle.app.php:406 +msgid "Oracle" +msgstr "Oracle" + +#: ../../enterprise/godmode/menu.php:154 +#: ../../enterprise/include/class/VMware.app.php:458 +msgid "VMware" +msgstr "VMware" + +#: ../../enterprise/godmode/menu.php:155 +#: ../../enterprise/include/class/SAPView.class.php:612 +#: ../../enterprise/include/class/SAPView.class.php:615 +#: ../../include/class/CredentialStore.class.php:872 +msgid "SAP" +msgstr "" + +#: ../../enterprise/godmode/menu.php:156 +#: ../../enterprise/godmode/wizards/Applications.class.php:154 +#: ../../enterprise/godmode/wizards/Applications.class.php:162 +msgid "Applications" +msgstr "" + +#: ../../enterprise/godmode/menu.php:167 +msgid "Amazon Web Services" +msgstr "" + +#: ../../enterprise/godmode/menu.php:168 +msgid "Microsoft Azure" +msgstr "" + +#: ../../enterprise/godmode/menu.php:169 +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Cloud.class.php:191 +#: ../../enterprise/include/class/Azure.cloud.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:183 +#: ../../enterprise/include/class/Aws.cloud.php:94 +#: ../../enterprise/include/class/Aws.cloud.php:141 +msgid "Cloud" +msgstr "" + +#: ../../enterprise/godmode/menu.php:184 +msgid "New console task" +msgstr "" + +#: ../../enterprise/godmode/menu.php:194 +msgid "Enterprise ACL Setup" +msgstr "Enterprise ACL Setup" + +#: ../../enterprise/godmode/menu.php:203 +msgid "Skins" +msgstr "Skins" + +#: ../../enterprise/godmode/menu.php:213 +msgid "Manage database HA" +msgstr "" + +#: ../../enterprise/godmode/menu.php:223 +#: ../../enterprise/godmode/servers/manage_export.php:43 +#: ../../enterprise/godmode/servers/manage_export_form.php:59 +msgid "Export targets" +msgstr "Export targets" + +#: ../../enterprise/godmode/menu.php:233 +msgid "Alert correlation" +msgstr "" + +#: ../../enterprise/godmode/menu.php:249 +msgid "Log Collector" +msgstr "Log collector" + +#: ../../enterprise/godmode/menu.php:267 +msgid "Password policy" +msgstr "Password policy" + +#: ../../enterprise/godmode/menu.php:275 +#: ../../enterprise/include/functions_setup.php:40 +#: ../../enterprise/include/functions_setup.php:79 +#: ../../godmode/extensions.php:138 ../../godmode/setup/setup.php:225 +msgid "Enterprise" +msgstr "Enterprise" + +#: ../../enterprise/godmode/menu.php:288 +#: ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "" + +#: ../../enterprise/godmode/menu.php:297 ../../godmode/setup/setup.php:133 +#: ../../godmode/setup/setup.php:203 +#: ../../godmode/module_library/module_library_view.php:65 +msgid "Module Library" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:76 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:73 +msgid "Successful update the tags" +msgstr "Tags updated successfully" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:77 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:74 +msgid "Unsuccessful update the tags" +msgstr "Error updating the tags" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 +msgid "Tags unused" +msgstr "Tags unused" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:163 +msgid "Tags used" +msgstr "Tags used" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 +msgid "Success: create the alerts." +msgstr "Alerts created successfully" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 +msgid "Failed: create the alerts for this modules, please check." +msgstr "Error creating the alerts for these modules, please check." + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../include/functions_alerts.php:656 +msgid "Regular expression" +msgstr "Regular expression" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 +msgid "Modules in policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:83 +msgid "Bulk alerts policy add" +msgstr "Add policy alerts in bulk" + +#: ../../enterprise/godmode/massive/massive_operations.php:84 +msgid "Bulk alerts policy delete" +msgstr "Delete policy alerts in bulk" + +#: ../../enterprise/godmode/massive/massive_operations.php:85 +msgid "Bulk tags module policy edit" +msgstr "Edit module tags in policies in bulk" + +#: ../../enterprise/godmode/massive/massive_operations.php:86 +msgid "Bulk modules policy tags edit" +msgstr "Edit module tags in policies in bulk" + +#: ../../enterprise/godmode/massive/massive_operations.php:87 +msgid "Bulk modules policy add from agent" +msgstr "Add module policies from the agent in bulk" + +#: ../../enterprise/godmode/massive/massive_operations.php:88 +msgid "Bulk modules policy edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:99 +msgid "Bulk alert SNMP delete" +msgstr "Delete SNMP alerts in bulk" + +#: ../../enterprise/godmode/massive/massive_operations.php:100 +msgid "Bulk alert SNMP edit" +msgstr "Edit SNMP alerts in bulk" + +#: ../../enterprise/godmode/massive/massive_operations.php:111 +msgid "Bulk Satellite modules edit" +msgstr "Edit Satellite modules in bulk" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:59 +msgid "Successfully copied " +msgstr "Successfully copied " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +#: ../../include/ajax/events.php:1802 ../../include/ajax/events.php:1816 +#: ../../include/ajax/events.php:1830 +msgid "Module " +msgstr "Module " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " cannot be copied to " +msgstr " cannot be copied to " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " policy" +msgstr " policy" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:168 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:173 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:182 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:240 +#: ../../enterprise/godmode/setup/setup_auth.php:66 +#: ../../enterprise/godmode/setup/setup_auth.php:264 +#: ../../enterprise/godmode/setup/setup_auth.php:311 +#: ../../enterprise/godmode/setup/setup_auth.php:366 +#: ../../enterprise/godmode/setup/setup_auth.php:529 +#: ../../enterprise/godmode/setup/setup_auth.php:1096 +#: ../../enterprise/godmode/setup/setup_auth.php:1263 +#: ../../enterprise/godmode/setup/setup_acl.php:440 +#: ../../enterprise/include/class/DeploymentCenter.class.php:739 +#: ../../enterprise/include/class/AgentRepository.class.php:633 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1542 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3764 +#: ../../enterprise/operation/services/services.list.php:208 +#: ../../enterprise/operation/services/services.list.php:239 +#: ../../enterprise/operation/services/services.table_services.php:187 +#: ../../enterprise/operation/services/services.table_services.php:218 +#: ../../godmode/agentes/planned_downtime.list.php:160 +#: ../../godmode/agentes/planned_downtime.editor.php:944 +#: ../../godmode/agentes/agent_manager.php:314 +#: ../../godmode/agentes/agent_manager.php:525 +#: ../../godmode/massive/massive_copy_modules.php:162 +#: ../../godmode/massive/massive_delete_modules.php:383 +#: ../../godmode/massive/massive_delete_modules.php:497 +#: ../../godmode/massive/massive_edit_agents.php:517 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/massive/massive_add_action_alerts.php:175 +#: ../../godmode/massive/massive_edit_modules.php:384 +#: ../../godmode/massive/massive_edit_modules.php:469 +#: ../../godmode/reporting/create_container.php:541 +#: ../../godmode/reporting/visual_console_builder.wizard.php:556 +#: ../../godmode/events/event_edit_filter.php:397 +#: ../../include/functions_visual_map_editor.php:464 +#: ../../include/functions_visual_map_editor.php:1362 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/ajax/visual_console_builder.ajax.php:1186 +#: ../../include/functions_profile.php:316 +#: ../../include/functions_html.php:1601 ../../include/functions_html.php:1602 +#: ../../include/functions_html.php:1603 ../../include/functions_html.php:1604 +#: ../../include/functions_html.php:1605 ../../include/functions_html.php:1607 +#: ../../include/functions_html.php:1608 ../../include/functions_html.php:1609 +#: ../../include/functions_html.php:1610 ../../include/functions_html.php:1611 +#: ../../include/lib/Dashboard/Widgets/events_list.php:282 +#: ../../operation/events/events_list.php:789 +#: ../../operation/events/events.php:1093 +#: ../../operation/events/events.php:2299 +msgid "Any" +msgstr "Any" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:173 +#: ../../godmode/massive/massive_copy_modules.php:197 +msgid "No modules for this agent" +msgstr "No modules for this agent" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:206 +msgid "To policies" +msgstr "To policies" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:342 +#: ../../godmode/massive/massive_copy_modules.php:525 +#: ../../godmode/massive/massive_delete_modules.php:802 +#: ../../godmode/massive/massive_add_alerts.php:295 +#: ../../godmode/massive/massive_delete_agents.php:217 +#: ../../godmode/massive/massive_edit_agents.php:914 +#: ../../godmode/massive/massive_delete_alerts.php:354 +#: ../../godmode/massive/massive_add_action_alerts.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1211 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." +msgstr "" +"Error sending data, please contact your administrator or try again with less " +"items." + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:349 +#: ../../godmode/massive/massive_copy_modules.php:535 +#: ../../include/functions_agents.php:763 +msgid "No source agent to copy" +msgstr "No source agent to copy" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:354 +#: ../../godmode/massive/massive_copy_modules.php:548 +#: ../../include/functions_agents.php:794 +msgid "No modules have been selected" +msgstr "No modules have been selected" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +msgid "No destiny policies to copy" +msgstr "No destination policies to copy" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:189 +#: ../../godmode/massive/massive_delete_modules.php:348 +#: ../../godmode/massive/massive_edit_modules.php:329 +msgid "Agent group" +msgstr "Agent group" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 +msgid "Filter module" +msgstr "Filter module" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:230 +#: ../../godmode/massive/massive_delete_action_alerts.php:195 +#: ../../godmode/massive/massive_delete_modules.php:526 +#: ../../godmode/massive/massive_add_alerts.php:232 +#: ../../godmode/massive/massive_delete_alerts.php:305 +#: ../../godmode/massive/massive_add_action_alerts.php:182 +#: ../../godmode/massive/massive_edit_modules.php:496 +msgid "When select agents" +msgstr "When selecting agents" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:234 +#: ../../extensions/agents_modules.php:421 +#: ../../extensions/agents_modules.php:424 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:621 +#: ../../godmode/agentes/planned_downtime.editor.php:954 +#: ../../godmode/massive/massive_delete_action_alerts.php:199 +#: ../../godmode/massive/massive_delete_modules.php:530 +#: ../../godmode/massive/massive_add_alerts.php:236 +#: ../../godmode/massive/massive_delete_alerts.php:309 +#: ../../godmode/massive/massive_add_action_alerts.php:186 +#: ../../godmode/massive/massive_edit_modules.php:500 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1528 +msgid "Show common modules" +msgstr "Show common modules" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:235 +#: ../../extensions/agents_modules.php:422 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:622 +#: ../../godmode/agentes/planned_downtime.editor.php:955 +#: ../../godmode/massive/massive_delete_action_alerts.php:200 +#: ../../godmode/massive/massive_delete_modules.php:531 +#: ../../godmode/massive/massive_add_alerts.php:237 +#: ../../godmode/massive/massive_delete_alerts.php:310 +#: ../../godmode/massive/massive_add_action_alerts.php:187 +#: ../../godmode/massive/massive_edit_modules.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1529 +msgid "Show all modules" +msgstr "Show all modules" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:394 +msgid "Updated modules on database" +msgstr "Updated modules in the database" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 +msgid "Agent configuration files updated" +msgstr "Agent configuration files updated" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:26 +#: ../../operation/snmpconsole/snmp_view.php:606 +#: ../../operation/snmpconsole/snmp_view.php:1031 +#: ../../operation/snmpconsole/snmp_view.php:1045 +msgid "Cold start (0)" +msgstr "Cold start (0)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:27 +#: ../../operation/snmpconsole/snmp_view.php:607 +#: ../../operation/snmpconsole/snmp_view.php:1032 +#: ../../operation/snmpconsole/snmp_view.php:1049 +msgid "Warm start (1)" +msgstr "Warm start (1)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:28 +#: ../../operation/snmpconsole/snmp_view.php:608 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1053 +msgid "Link down (2)" +msgstr "Link down (2)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:29 +#: ../../operation/snmpconsole/snmp_view.php:609 +#: ../../operation/snmpconsole/snmp_view.php:1034 +#: ../../operation/snmpconsole/snmp_view.php:1057 +msgid "Link up (3)" +msgstr "Link up (3)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +#: ../../operation/snmpconsole/snmp_view.php:610 +#: ../../operation/snmpconsole/snmp_view.php:1035 +#: ../../operation/snmpconsole/snmp_view.php:1061 +msgid "Authentication failure (4)" +msgstr "Authentication failure (4)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../enterprise/godmode/setup/setup_acl.php:350 +#: ../../enterprise/godmode/setup/setup_acl.php:354 +#: ../../enterprise/include/class/Aws.cloud.php:284 #: ../../extensions/api_checker.php:176 -msgid "Call parameters" -msgstr "Call parameters" +#: ../../godmode/groups/configure_group.php:204 +#: ../../godmode/users/configure_user.php:896 +#: ../../godmode/snmpconsole/snmp_alert.php:31 +#: ../../include/functions_graph.php:2897 +#: ../../include/functions_graph.php:2971 +#: ../../include/functions_graph.php:3046 +#: ../../include/functions_graph.php:3120 +#: ../../include/functions_graph.php:3197 +#: ../../include/functions_graph.php:3406 +#: ../../include/functions_graph.php:3514 +#: ../../include/functions_graph.php:3579 +#: ../../include/functions_graph.php:3709 +#: ../../include/functions_graph.php:3721 +#: ../../include/functions_graph.php:3722 +#: ../../include/functions_graph.php:3725 +#: ../../include/functions_graph.php:3730 +#: ../../include/functions_graph.php:3731 +#: ../../include/functions_graph.php:3734 +#: ../../include/functions_graph.php:4689 +#: ../../operation/users/user_edit.php:343 +#: ../../operation/snmpconsole/snmp_statistics.php:180 +#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_view.php:611 +#: ../../operation/snmpconsole/snmp_view.php:1036 +#: ../../operation/snmpconsole/snmp_view.php:1065 +#: ../../operation/gis_maps/render_view.php:154 +msgid "Other" +msgstr "Other" -#: ../../extensions/api_checker.php:181 ../../extensions/api_checker.php:194 -msgid "Call" -msgstr "Call" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:145 +#: ../../godmode/snmpconsole/snmp_alert.php:712 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "Alerts deleted successfully (%s / %s)" -#: ../../extensions/api_checker.php:188 -msgid "Custom URL" -msgstr "Custom URL" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:153 +#: ../../godmode/snmpconsole/snmp_alert.php:716 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "Error deleting the alerts (%s / %s)" -#: ../../extensions/api_checker.php:200 ../../extensions/api_checker.php:207 -#: ../../include/functions_db.php:1581 -msgid "Result" -msgstr "Result" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:181 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 +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." -#: ../../extensions/api_checker.php:201 -#: ../../godmode/events/event_responses.editor.php:115 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:185 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:290 +#: ../../godmode/snmpconsole/snmp_alert.php:802 +#: ../../godmode/snmpconsole/snmp_alert.php:1124 +#: ../../include/functions_snmp.php:443 +#: ../../operation/snmpconsole/snmp_view.php:603 +msgid "Trap type" +msgstr "Trap type" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:200 +msgid "SNMP Alerts to be deleted" +msgstr "SNMP alerts to be deleted" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:205 +#, php-format +msgid "Successfully updated alerts (%s / %s)" +msgstr "Alerts (%s / %s) updated successfully" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:213 +#, php-format +msgid "Unsuccessfully updated alerts (%s / %s)" +msgstr "Error updating alerts (%s / %s)" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +msgid "SNMP Alerts to be edit" +msgstr "SNMP alerts to be edited" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:286 +#: ../../godmode/snmpconsole/snmp_alert.php:765 +msgid "Custom Value/OID" +msgstr "Custom Value/OID" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:288 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:112 +#: ../../godmode/snmpconsole/snmp_alert.php:773 +#: ../../godmode/snmpconsole/snmp_alert.php:1268 +#: ../../operation/snmpconsole/snmp_view.php:799 +msgid "SNMP Agent" +msgstr "SNMP Agent" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:292 +#: ../../godmode/snmpconsole/snmp_alert.php:807 +msgid "Single value" +msgstr "Single value" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:294 +#: ../../enterprise/godmode/alerts/alert_events.php:533 +#: ../../godmode/snmpconsole/snmp_alert.php:1012 +#: ../../godmode/alerts/configure_alert_template.php:635 +msgid "Min. number of alerts" +msgstr "Min. number of alerts" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:296 +#: ../../enterprise/godmode/alerts/alert_events.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1015 +#: ../../godmode/alerts/configure_alert_template.php:648 +msgid "Max. number of alerts" +msgstr "Max. number of alerts" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../godmode/snmpconsole/snmp_alert.php:1034 +msgid "Other value" +msgstr "Other value" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:317 +#: ../../godmode/snmpconsole/snmp_alert.php:1085 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../include/functions_visual_map_editor.php:832 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 +#: ../../include/rest-api/models/VisualConsole/Item.php:1905 +msgid "Position" +msgstr "Position" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 +msgid "Modules unused" +msgstr "Unused modules" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:151 +msgid "Modules used" +msgstr "Used modules" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 +msgid "Success: remove the alerts." +msgstr "Alerts removed successfully" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "Error removing the alerts for these modules, please check." + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +msgid "Modules agents in policy" +msgstr "Agent modules in policy" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:377 +#: ../../godmode/massive/massive_edit_modules.php:526 +msgid "Dynamic Min." +msgstr "Dynamic Min." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 +#: ../../godmode/massive/massive_edit_modules.php:724 +msgid "SMNP community" +msgstr "SMNP community" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:585 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:734 +msgid "SNMP OID" +msgstr "SNMP OID" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:137 +#: ../../enterprise/include/functions_hostdevices.php:168 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:793 +msgid "The pass length must be eight character minimum." +msgstr "The pass length must be eight character minimum." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:166 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:793 +#: ../../include/functions_snmp_browser.php:738 +msgid "Privacy pass" +msgstr "Privacy pass" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:678 +#: ../../enterprise/operation/agentes/tag_view.php:136 +#: ../../godmode/agentes/module_manager_editor_common.php:244 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 +#: ../../godmode/massive/massive_edit_modules.php:820 +#: ../../include/functions_graph.php:5148 +#: ../../include/functions_treeview.php:116 +#: ../../operation/agentes/status_monitor.php:406 +msgid "Not assigned" +msgstr "Not assigned" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:698 +#: ../../godmode/agentes/module_manager_editor_common.php:665 +#: ../../godmode/massive/massive_edit_modules.php:840 +msgid "Export target" +msgstr "Export target" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:723 +#: ../../enterprise/godmode/services/services.service.php:394 +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +#: ../../enterprise/operation/services/services.list.php:238 +#: ../../enterprise/operation/services/services.table_services.php:217 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/alerts/alert_view.php:421 +msgid "Mode" +msgstr "Mode" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:788 +#: ../../godmode/massive/massive_edit_modules.php:926 +msgid "Active Counters" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:927 +msgid "Inactive Counters" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "Policy linking status" +msgstr "Policy linking status" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "This field only has sense in modules adopted by a policy." +msgstr "This field is only relevant in modules adopted by a policy." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../godmode/massive/massive_edit_modules.php:995 +msgid "Linked" +msgstr "Linked" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../godmode/agentes/module_manager.php:790 +#: ../../godmode/agentes/module_manager.php:793 +#: ../../godmode/massive/massive_edit_modules.php:995 +#: ../../include/ajax/module.php:957 ../../include/ajax/module.php:960 +msgid "Unlinked" +msgstr "Not linked" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:843 +#: ../../godmode/modules/manage_network_components_form_common.php:306 +#: ../../godmode/agentes/module_manager_editor_common.php:698 +#: ../../godmode/massive/massive_edit_modules.php:1004 +msgid "Discard unknown events" +msgstr "Discard unknown events" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:872 +#: ../../godmode/massive/massive_edit_modules.php:1033 +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." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:887 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1051 +#: ../../godmode/massive/massive_edit_modules.php:1050 +msgid "Timeout" +msgstr "Timeout" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:896 +#: ../../godmode/massive/massive_edit_modules.php:1059 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "Seconds that the agent will wait for the module to run." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 +#: ../../godmode/modules/manage_network_components_form_network.php:196 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1076 +msgid "TCP send" +msgstr "TCP send" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:916 +#: ../../godmode/modules/manage_network_components_form_network.php:203 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1079 +msgid "TCP receive" +msgstr "TCP receive" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:919 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1082 +msgid "WMI query" +msgstr "WMI query" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:922 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 +#: ../../godmode/massive/massive_edit_modules.php:1085 +msgid "Key string" +msgstr "Key string" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:925 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +#: ../../godmode/massive/massive_edit_modules.php:1088 +msgid "Field number" +msgstr "Field number" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:928 +#: ../../extensions/plugin_registration.php:406 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:324 +#: ../../godmode/massive/massive_edit_modules.php:1091 +msgid "Plugin" +msgstr "Plugin" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/modules/manage_network_components_form_network.php:210 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:492 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/alerts/configure_alert_command.php:176 +#: ../../godmode/alerts/configure_alert_action.php:147 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../godmode/servers/plugin.php:422 ../../godmode/servers/plugin.php:427 +#: ../../godmode/servers/plugin.php:971 +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Command" +msgstr "Command" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../godmode/modules/manage_network_components_form_network.php:229 +#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/massive/massive_edit_modules.php:1126 +msgid "Credential identifier" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:978 +#: ../../godmode/modules/manage_network_components_form_network.php:245 +#: ../../godmode/agentes/module_manager_editor_network.php:468 +#: ../../godmode/massive/massive_edit_modules.php:1140 +msgid "Inherited" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:979 +#: ../../godmode/modules/manage_network_components_form_network.php:246 +#: ../../godmode/massive/massive_edit_modules.php:1141 +msgid "Linux" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:980 +#: ../../godmode/modules/manage_network_components_form_network.php:247 +#: ../../godmode/massive/massive_edit_modules.php:1142 +msgid "Windows" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:983 +#: ../../godmode/modules/manage_network_components_form_network.php:250 +#: ../../godmode/massive/massive_edit_modules.php:1145 +msgid "Target OS" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:49 +msgid "Show extended info" +msgstr "Show extended info" + +#: ../../enterprise/godmode/admin_access_logs.php:69 +msgid "" +"The security check cannot be performed. There are no data in " +"tsession_extended to check the hash." +msgstr "" +"The security check cannot be performed. There are no data in " +"tsession_extended to check the hash." + +#: ../../enterprise/godmode/admin_access_logs.php:77 +msgid "Security check is ok." +msgstr "Security check is OK" + +#: ../../enterprise/godmode/admin_access_logs.php:82 +msgid "Security check is fail." +msgstr "Security check failed" + +#: ../../enterprise/godmode/admin_access_logs.php:186 +msgid "Extended info:" +msgstr "Extended info:" + +#: ../../enterprise/godmode/admin_access_logs.php:186 +msgid "Changes:" +msgstr "Changes:" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 +#: ../../enterprise/godmode/alerts/alert_events.php:47 +#: ../../enterprise/godmode/alerts/alert_events_list.php:57 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 +msgid "List event alerts" +msgstr "List event alerts" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:55 +#: ../../enterprise/godmode/alerts/alert_events.php:52 +#: ../../enterprise/godmode/alerts/alert_events_list.php:61 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 +msgid "Builder event alert" +msgstr "Event alert builder" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:59 +#: ../../enterprise/godmode/alerts/alert_events.php:60 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:88 +msgid "List event rules" +msgstr "List event rules" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +msgid "Configure event rule" +msgstr "Configure event rule" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +msgid "User comment" +msgstr "User comment" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +msgid "This field will be processed with regexp" +msgstr "This field will be processed with regexp" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../operation/events/sound_events.php:80 +msgid "Event" +msgstr "Event" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 +msgid "Window" +msgstr "Window" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1392 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1014 +#: ../../include/functions_reporting_html.php:962 +#: ../../include/functions_reporting_html.php:1186 +#: ../../include/functions_reporting_html.php:1955 +#: ../../operation/snmpconsole/snmp_view.php:810 +msgid "Count" +msgstr "Count" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +#: ../../include/class/Tree.class.php:686 +msgid "Module alerts" +msgstr "Module alerts" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:169 +msgid "Recursion:" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:175 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:404 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:324 +#: ../../godmode/reporting/create_container.php:534 +#: ../../godmode/reporting/create_container.php:595 +#: ../../mobile/operation/modules.php:170 +#: ../../mobile/operation/modules.php:171 +#: ../../mobile/operation/modules.php:283 +#: ../../mobile/operation/modules.php:284 +#: ../../operation/agentes/group_view.php:283 +msgid "Tag" +msgstr "Tag" + +#: ../../enterprise/godmode/alerts/alert_events.php:84 +msgid "Configure event alert" +msgstr "Configure event alert" + +#: ../../enterprise/godmode/alerts/alert_events.php:142 +#: ../../enterprise/godmode/alerts/alert_events.php:146 +#: ../../godmode/alerts/configure_alert_template.php:200 +#: ../../godmode/alerts/configure_alert_template.php:204 +msgid "Conditions" +msgstr "Conditions" + +#: ../../enterprise/godmode/alerts/alert_events.php:163 +#: ../../enterprise/godmode/alerts/alert_events.php:167 +#: ../../godmode/alerts/configure_alert_template.php:221 +#: ../../godmode/alerts/configure_alert_template.php:225 +msgid "Advanced fields" +msgstr "Advanced fields" + +#: ../../enterprise/godmode/alerts/alert_events.php:396 +msgid "Could not be created, please fill alert name" +msgstr "Could not be created, please fill in the alert name." + +#: ../../enterprise/godmode/alerts/alert_events.php:487 +#: ../../godmode/alerts/configure_alert_template.php:585 +msgid "Days of week" +msgstr "Days of week" + +#: ../../enterprise/godmode/alerts/alert_events.php:488 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:885 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1985 +#: ../../godmode/agentes/planned_downtime.editor.php:753 +#: ../../godmode/alerts/configure_alert_template.php:586 +#: ../../godmode/alerts/alert_special_days.php:357 +#: ../../godmode/alerts/alert_view.php:212 ../../include/functions.php:1080 +#: ../../include/functions_reporting.php:11779 +msgid "Mon" +msgstr "Mon" + +#: ../../enterprise/godmode/alerts/alert_events.php:490 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:886 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1986 +#: ../../godmode/agentes/planned_downtime.editor.php:754 +#: ../../godmode/alerts/configure_alert_template.php:588 +#: ../../godmode/alerts/alert_special_days.php:358 +#: ../../godmode/alerts/alert_view.php:213 ../../include/functions.php:1084 +#: ../../include/functions_reporting.php:11784 +msgid "Tue" +msgstr "Tue" + +#: ../../enterprise/godmode/alerts/alert_events.php:492 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:887 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1987 +#: ../../godmode/agentes/planned_downtime.editor.php:755 +#: ../../godmode/alerts/configure_alert_template.php:590 +#: ../../godmode/alerts/alert_special_days.php:359 +#: ../../godmode/alerts/alert_view.php:214 ../../include/functions.php:1088 +#: ../../include/functions_reporting.php:11789 +msgid "Wed" +msgstr "Wed" + +#: ../../enterprise/godmode/alerts/alert_events.php:494 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:888 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1988 +#: ../../godmode/agentes/planned_downtime.editor.php:756 +#: ../../godmode/alerts/configure_alert_template.php:592 +#: ../../godmode/alerts/alert_special_days.php:360 +#: ../../godmode/alerts/alert_view.php:215 ../../include/functions.php:1092 +#: ../../include/functions_reporting.php:11794 +msgid "Thu" +msgstr "Thu" + +#: ../../enterprise/godmode/alerts/alert_events.php:496 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:889 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1989 +#: ../../godmode/agentes/planned_downtime.editor.php:757 +#: ../../godmode/alerts/configure_alert_template.php:594 +#: ../../godmode/alerts/alert_special_days.php:361 +#: ../../godmode/alerts/alert_view.php:216 ../../include/functions.php:1096 +#: ../../include/functions_reporting.php:11799 +msgid "Fri" +msgstr "Fri" + +#: ../../enterprise/godmode/alerts/alert_events.php:498 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:890 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1990 +#: ../../godmode/agentes/planned_downtime.editor.php:758 +#: ../../godmode/alerts/configure_alert_template.php:596 +#: ../../godmode/alerts/alert_special_days.php:362 +#: ../../godmode/alerts/alert_view.php:217 ../../include/functions.php:1100 +#: ../../include/functions_reporting.php:11804 +msgid "Sat" +msgstr "Sat" + +#: ../../enterprise/godmode/alerts/alert_events.php:500 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:891 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1991 +#: ../../godmode/agentes/planned_downtime.editor.php:759 +#: ../../godmode/alerts/configure_alert_template.php:598 +#: ../../godmode/alerts/alert_special_days.php:356 +#: ../../godmode/alerts/alert_view.php:218 ../../include/functions.php:1104 +#: ../../include/functions_reporting.php:11809 +msgid "Sun" +msgstr "Sun" + +#: ../../enterprise/godmode/alerts/alert_events.php:503 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1731 +#: ../../godmode/alerts/configure_alert_template.php:604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1172 +#: ../../operation/events/events.php:1179 +msgid "Time from" +msgstr "Set initial time" + +#: ../../enterprise/godmode/alerts/alert_events.php:512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1749 +#: ../../godmode/alerts/configure_alert_template.php:613 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1190 +#: ../../operation/events/events.php:1230 +msgid "Time to" +msgstr "Set end time" + +#: ../../enterprise/godmode/alerts/alert_events.php:551 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1001 +msgid "Rule evaluation mode" +msgstr "Rule evaluation mode" + +#: ../../enterprise/godmode/alerts/alert_events.php:563 +#: ../../godmode/snmpconsole/snmp_alert.php:1089 +#: ../../godmode/alerts/configure_alert_template.php:658 +msgid "Disable event" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:566 +msgid "Group by" +msgstr "Group by" + +#: ../../enterprise/godmode/alerts/alert_events.php:572 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1851 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2625 +#: ../../godmode/alerts/alert_commands.php:91 +#: ../../godmode/alerts/alert_commands.php:93 +#: ../../godmode/alerts/alert_commands.php:107 +#: ../../godmode/alerts/alert_commands.php:113 +#: ../../godmode/alerts/configure_alert_template.php:852 +#: ../../godmode/alerts/alert_view.php:466 +#: ../../godmode/alerts/alert_view.php:544 +#, php-format +msgid "Field %s" +msgstr "Field %s" + +#: ../../enterprise/godmode/alerts/alert_events.php:645 +#: ../../extensions/agents_alerts.php:262 +#: ../../godmode/alerts/configure_alert_action.php:116 +#: ../../godmode/alerts/alert_list.builder.php:128 +msgid "Create Action" +msgstr "Create action" + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +msgid "Please Read" +msgstr "Please read" + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +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 list " +"of event alerts." + +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +#: ../../godmode/servers/modificar_server.php:117 +#: ../../godmode/servers/modificar_server.php:128 +msgid "Successfully action" +msgstr "Action processed successfully" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +msgid "Error processing action" +msgstr "Error processing action" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 +#: ../../operation/agentes/alerts_status.functions.php:34 +msgid "Alert(s) validated" +msgstr "Alert(s) validated" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 +msgid "Error validating alert(s)" +msgstr "Error validating alert(s)" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 +msgid "Ac." +msgstr "Ac." + +#: ../../enterprise/godmode/alerts/alert_events_list.php:621 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2918 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283 +msgid "No associated actions" +msgstr "No associated actions" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:650 +#: ../../enterprise/godmode/alerts/alert_events_list.php:695 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3269 +#: ../../extensions/agents_alerts.php:299 +#: ../../godmode/alerts/alert_list.list.php:619 +#: ../../godmode/alerts/alert_list.list.php:746 +#: ../../godmode/alerts/configure_alert_action.php:179 +#: ../../godmode/alerts/alert_view.php:389 +#: ../../godmode/alerts/alert_list.builder.php:165 +#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:4184 +#: ../../include/ajax/alert_list.ajax.php:517 +msgid "Threshold" +msgstr "Threshold" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/operation/agentes/policy_view.php:281 +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:534 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions_ui.php:1223 +msgid "time(s)" +msgstr "time(s)" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:711 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3116 +#: ../../enterprise/operation/agentes/policy_view.php:284 +#: ../../extensions/agents_alerts.php:570 +#: ../../godmode/alerts/alert_list.list.php:537 +#: ../../godmode/alerts/alert_view.php:85 ../../mobile/operation/alerts.php:308 +#: ../../include/functions_ui.php:1226 +#: ../../include/functions_reporting.php:10045 +msgid "Alert disabled" +msgstr "Alert disabled" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:714 +#: ../../enterprise/operation/agentes/policy_view.php:287 +#: ../../extensions/agents_alerts.php:573 +#: ../../godmode/alerts/alert_list.list.php:540 +#: ../../godmode/alerts/alert_view.php:88 ../../mobile/operation/alerts.php:311 +#: ../../include/functions_agents.php:2611 +#: ../../include/functions_agents.php:2622 ../../include/functions_ui.php:1229 +#: ../../include/functions_reporting.php:9959 +#: ../../operation/snmpconsole/snmp_view.php:965 +msgid "Alert not fired" +msgstr "Alert not triggered" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:725 +msgid "View associated rules" +msgstr "View associated rules" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:741 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3008 +msgid "There are no defined events alerts" +msgstr "There are no defined event alerts." + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +msgid "Event rules" +msgstr "Event rules" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:103 +msgid "" +"This view will be removed in a future version. Please use \"Alert " +"correlation\" instead." +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:225 +msgid "Error creating rule" +msgstr "Error creating rule" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:229 +msgid "Successfully created rule" +msgstr "Rule created successfully" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:244 +msgid "Error updating rule" +msgstr "Error updating rule" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:247 +msgid "Successfully updating rule" +msgstr "Rule updated successfully" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:257 +msgid "Error updating rule operators" +msgstr "Error updating rule operators" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 +msgid "Successfully update rule operators" +msgstr "Rule operators updated successfully" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +msgid "(Agent)" +msgstr "(Agent)" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 +msgid "Operator" +msgstr "Operator" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:499 +msgid "Logic expression for these rules:" +msgstr "Logic expression for these rules:" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:507 +msgid "Update operators" +msgstr "Update operators" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:512 +msgid "There are no defined alert event rules" +msgstr "There are no defined event alert rules" + +#: ../../enterprise/godmode/services/services.service.php:58 +#: ../../enterprise/operation/services/services.treeview_services.php:165 +#: ../../enterprise/operation/services/services.list.php:588 +#: ../../enterprise/operation/services/services.table_services.php:438 +msgid "Create Service" +msgstr "Create service" + +#: ../../enterprise/godmode/services/services.service.php:85 +#: ../../enterprise/godmode/services/services.service.php:148 +msgid "No name and description specified for the service" +msgstr "No name and description specified for the service" + +#: ../../enterprise/godmode/services/services.service.php:93 +#: ../../enterprise/godmode/services/services.service.php:156 +msgid "No name specified for the service" +msgstr "No name specified for the service" + +#: ../../enterprise/godmode/services/services.service.php:101 +#: ../../enterprise/godmode/services/services.service.php:164 +msgid "No description specified for the service" +msgstr "No description specified for the service" + +#: ../../enterprise/godmode/services/services.service.php:110 +msgid "Error creating service" +msgstr "Error creating service" + +#: ../../enterprise/godmode/services/services.service.php:117 +msgid "Service created successfully" +msgstr "Service created successfully" + +#: ../../enterprise/godmode/services/services.service.php:204 +msgid "Error updating service" +msgstr "Error updating service" + +#: ../../enterprise/godmode/services/services.service.php:211 +msgid "Service updated successfully" +msgstr "Service updated successfully" + +#: ../../enterprise/godmode/services/services.service.php:227 +#: ../../enterprise/godmode/services/services.service.php:262 +#: ../../enterprise/operation/services/services.service.php:37 +#: ../../enterprise/operation/services/services.service_map.php:44 +#: ../../include/ajax/update_manager.ajax.php:751 +msgid "Not found" +msgstr "Not found" + +#: ../../enterprise/godmode/services/services.service.php:234 +msgid "New Service" +msgstr "New service" + +#: ../../enterprise/godmode/services/services.service.php:288 +#: ../../enterprise/godmode/services/services.elements.php:117 +#: ../../enterprise/operation/services/services.service.php:62 +#: ../../enterprise/operation/services/services.service_map.php:70 +#: ../../enterprise/operation/services/services.treeview_services.php:46 +#: ../../enterprise/operation/services/services.list.php:46 +#: ../../enterprise/operation/services/services.table_services.php:43 +msgid "Services list" +msgstr "List of services" + +#: ../../enterprise/godmode/services/services.service.php:296 +#: ../../enterprise/godmode/services/services.elements.php:127 +#: ../../enterprise/operation/services/services.service.php:72 +#: ../../enterprise/operation/services/services.service_map.php:80 +msgid "Services tree view" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:304 +#: ../../enterprise/godmode/services/services.elements.php:137 +#: ../../enterprise/operation/services/services.service.php:82 +#: ../../enterprise/operation/services/services.service_map.php:90 +msgid "Services table view" +msgstr "Services table view" + +#: ../../enterprise/godmode/services/services.service.php:312 +#: ../../enterprise/godmode/services/services.elements.php:146 +#: ../../enterprise/operation/services/services.service.php:91 +#: ../../enterprise/operation/services/services.service_map.php:102 +msgid "Config Service" +msgstr "Configuration service" + +#: ../../enterprise/godmode/services/services.service.php:320 +#: ../../enterprise/godmode/services/services.elements.php:154 +#: ../../enterprise/operation/services/services.service.php:95 +#: ../../enterprise/operation/services/services.service_map.php:110 +msgid "Config Elements" +msgstr "Configuration elements" + +#: ../../enterprise/godmode/services/services.service.php:328 +#: ../../enterprise/godmode/services/services.elements.php:164 +#: ../../enterprise/operation/services/services.service.php:103 +#: ../../enterprise/operation/services/services.service_map.php:122 +msgid "View Service" +msgstr "View service" + +#: ../../enterprise/godmode/services/services.service.php:336 +#: ../../enterprise/godmode/services/services.elements.php:173 +#: ../../enterprise/operation/services/services.service.php:108 +#: ../../enterprise/operation/services/services.service_map.php:131 +#: ../../include/lib/Dashboard/Widgets/service_map.php:378 +msgid "Service map" +msgstr "Service map" + +#: ../../enterprise/godmode/services/services.service.php:375 +msgid "No Services or concrete action" +msgstr "No services or concrete action" + +#: ../../enterprise/godmode/services/services.service.php:379 +msgid "General Data" +msgstr "General data" + +#: ../../enterprise/godmode/services/services.service.php:400 +#: ../../enterprise/operation/services/services.list.php:236 +#: ../../enterprise/operation/services/services.table_services.php:215 +msgid "Simple" +msgstr "Simple" + +#: ../../enterprise/godmode/services/services.service.php:403 +#: ../../enterprise/godmode/services/services.elements.php:81 +msgid "" +"This values are by default because the service is auto calculate mode." +msgstr "" +"These are default values because the service is in auto calculate mode." + +#: ../../enterprise/godmode/services/services.service.php:419 +msgid "Agent to store data" +msgstr "Agent to store data" + +#: ../../enterprise/godmode/services/services.service.php:437 +msgid "Cascade Protection" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:448 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 +#: ../../enterprise/include/functions_reporting_csv.php:1282 +#: ../../include/functions_reports.php:684 +#: ../../include/functions_reporting.php:871 +msgid "S.L.A." +msgstr "S.L.A." + +#: ../../enterprise/godmode/services/services.service.php:452 +msgid "Calculate continuous SLA for this service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:455 +msgid "S.L.A. interval" +msgstr "SLA interval" + +#: ../../enterprise/godmode/services/services.service.php:466 +msgid "S.L.A. limit" +msgstr "SLA limit" + +#: ../../enterprise/godmode/services/services.service.php:467 +msgid "Please set limit between 0 to 100." +msgstr "Please set limit between 0 and 100." + +#: ../../enterprise/godmode/services/services.service.php:481 +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 you will find a description of the alert templates, which will use " +"their default actions.\n" +"\t\tYou can modify the default behaviour by editing alerts in the agent who " +"stores data and alert definitions about the service and the SLA status." + +#: ../../enterprise/godmode/services/services.service.php:498 +msgid "Warning Service alert" +msgstr "Warning service alert" + +#: ../../enterprise/godmode/services/services.service.php:519 +msgid "Critical Service alert" +msgstr "Critical service alert" + +#: ../../enterprise/godmode/services/services.service.php:538 +msgid "SLA critical service alert" +msgstr "SLA critical service alert" + +#: ../../enterprise/godmode/services/services.service.php:647 +msgid "" +"This change in the service configuration will delete the history of the " +"service modules. Do you wish to continue?" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:649 +msgid "" +"This change in the service configuration will prevent the SLA modules from " +"being created. Do you wish to continue?" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:95 +msgid "Invalid service" +msgstr "Invalid service" + +#: ../../enterprise/godmode/services/services.elements.php:196 +#: ../../enterprise/include/functions_services.php:2748 +msgid "Edit service elements" +msgstr "Edit service elements" + +#: ../../enterprise/godmode/services/services.elements.php:211 +msgid "Error empty module" +msgstr "Error, empty module" + +#: ../../enterprise/godmode/services/services.elements.php:222 +msgid "Error empty agent" +msgstr "Error, empty agent" + +#: ../../enterprise/godmode/services/services.elements.php:233 +msgid "Error empty service" +msgstr "Error, empty service" + +#: ../../enterprise/godmode/services/services.elements.php:241 +msgid "Error unknown type" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:266 +msgid "Service element created successfully" +msgstr "Service element created successfully" + +#: ../../enterprise/godmode/services/services.elements.php:267 +msgid "Error creating service element" +msgstr "Error creating service item" + +#: ../../enterprise/godmode/services/services.elements.php:438 +msgid "Service element updated successfully" +msgstr "Service item updated successfully" + +#: ../../enterprise/godmode/services/services.elements.php:439 +msgid "Error updating service element" +msgstr "Error updating service item" + +#: ../../enterprise/godmode/services/services.elements.php:552 +msgid "Service element deleted successfully" +msgstr "Service item deleted successfully" + +#: ../../enterprise/godmode/services/services.elements.php:553 +msgid "Error deleting service element" +msgstr "Error deleting service item" + +#: ../../enterprise/godmode/services/services.elements.php:609 +msgid "Edit element service" +msgstr "Edit element service" + +#: ../../enterprise/godmode/services/services.elements.php:653 +msgid "Create element service" +msgstr "Create element service" + +#: ../../enterprise/godmode/services/services.elements.php:722 +msgid "First select an agent" +msgstr "First select an agent" + +#: ../../enterprise/godmode/services/services.elements.php:743 +msgid "Unknown weight" +msgstr "Unknown weight" + +#: ../../enterprise/godmode/services/services.elements.php:747 +msgid "Ok weight" +msgstr "OK weight" + +#: ../../enterprise/godmode/services/services.elements.php:753 +msgid "" +"Only the critical elements are relevant to calculate the service status" +msgstr "" +"Only critical elements are relevant when calculating the service status." + +#: ../../enterprise/godmode/setup/setup_history.php:42 +#: ../../include/functions_config.php:1410 +msgid "Enable history database" +msgstr "Enable historic database" + +#: ../../enterprise/godmode/setup/setup_history.php:45 +msgid "Enable event history" +msgstr "Enable event history" + +#: ../../enterprise/godmode/setup/setup_history.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_config.php:1418 +msgid "Host" +msgstr "Host" + +#: ../../enterprise/godmode/setup/setup_history.php:57 +#: ../../include/functions_config.php:1430 +msgid "Database user" +msgstr "Database user" + +#: ../../enterprise/godmode/setup/setup_history.php:60 +#: ../../include/functions_config.php:1434 +msgid "Database password" +msgstr "Database password" + +#: ../../enterprise/godmode/setup/setup_history.php:69 +#: ../../include/functions_config.php:1466 +msgid "Delay" +msgstr "Delay" + +#: ../../enterprise/godmode/setup/setup_history.php:72 +msgid "Event days" +msgstr "Event days" + +#: ../../enterprise/godmode/setup/setup.php:47 +#: ../../include/functions_config.php:374 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "Forward SNMP traps to an agent (if it exists)" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:77 +#: ../../include/functions_config.php:378 +msgid "Use Enterprise ACL System" +msgstr "Use Enterprise ACL System" + +#: ../../enterprise/godmode/setup/setup.php:116 +#: ../../include/functions_config.php:395 +msgid "Replication interval" +msgstr "Replication interval" + +#: ../../enterprise/godmode/setup/setup.php:124 +msgid "Seconds" +msgstr "Seconds" + +#: ../../enterprise/godmode/setup/setup.php:130 +#: ../../include/functions_config.php:399 +msgid "Replication limit" +msgstr "Replication limit" + +#: ../../enterprise/godmode/setup/setup.php:144 +msgid "Last replication at" +msgstr "Last replication at" + +#: ../../enterprise/godmode/setup/setup.php:146 +msgid "No replication yet" +msgstr "No replication yet" + +#: ../../enterprise/godmode/setup/setup.php:157 +#: ../../include/functions_config.php:403 +msgid "Replication mode" +msgstr "Replication mode" + +#: ../../enterprise/godmode/setup/setup.php:160 +msgid "Only validated events" +msgstr "Only validated events" + +#: ../../enterprise/godmode/setup/setup.php:161 +#: ../../godmode/events/event_edit_filter.php:402 +#: ../../operation/events/events_list.php:969 +#: ../../operation/events/events.php:935 +msgid "All events" +msgstr "All events" + +#: ../../enterprise/godmode/setup/setup.php:175 +msgid "Metaconsole DB engine" +msgstr "Metaconsole DB engine" + +#: ../../enterprise/godmode/setup/setup.php:178 +#: ../../enterprise/include/class/MySQL.app.php:419 +msgid "MySQL" +msgstr "MySQL" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "Metaconsole DB host" +msgstr "Metaconsole DB host" + +#: ../../enterprise/godmode/setup/setup.php:207 +msgid "Metaconsole DB name" +msgstr "Metaconsole DB name" + +#: ../../enterprise/godmode/setup/setup.php:221 +msgid "Metaconsole DB user" +msgstr "Metaconsole DB user" + +#: ../../enterprise/godmode/setup/setup.php:235 +msgid "Metaconsole DB password" +msgstr "Metaconsole DB password" + +#: ../../enterprise/godmode/setup/setup.php:263 +#: ../../include/functions_config.php:407 +msgid "Show events list in local console (read only)" +msgstr "Show event list in the local console (read only)" + +#: ../../enterprise/godmode/setup/setup.php:274 +msgid "Events Configuration Information" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:276 +msgid "" +" If you are replicating events, events validated or deleted on the " +"metaconsole WILL NOT be deleted or validated here. This option is just to " +"allow local pandora users to see events, but not to operate with them. " +"Operation, when event replication is enabled, should be done only in " +"metaconsole" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:281 +#: ../../include/functions_config.php:465 +msgid "Inventory changes blacklist" +msgstr "Inventory change blacklist" + +#: ../../enterprise/godmode/setup/setup.php:344 +msgid "Out of black list" +msgstr "Out of black list" + +#: ../../enterprise/godmode/setup/setup.php:346 +msgid "In black list" +msgstr "Into black list" + +#: ../../enterprise/godmode/setup/setup.php:351 +msgid "Push selected modules into blacklist" +msgstr "Push selected modules into blacklist" + +#: ../../enterprise/godmode/setup/setup.php:353 +msgid "Pop selected modules out of blacklist" +msgstr "Push selected modules out of blacklist" + +#: ../../enterprise/godmode/setup/setup.php:365 +#: ../../include/functions_config.php:440 +msgid "Activate Log Collector" +msgstr "Activate Log Collector" + +#: ../../enterprise/godmode/setup/setup.php:389 +msgid "Disable newsletter" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:401 +msgid "Critical threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:413 +msgid "Warning threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:426 +#: ../../include/functions_config.php:460 +msgid "SAP/R3 Plugin Licence" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:442 +msgid "Enterprise options" +msgstr "Enterprise options" + +#: ../../enterprise/godmode/setup/setup.php:601 +msgid "Enterprise password policy" +msgstr "Enterprise password policy" + +#: ../../enterprise/godmode/setup/setup_skins.php:35 +#: ../../enterprise/godmode/setup/edit_skin.php:41 +msgid "Skins configuration" +msgstr "Skin configuration" + +#: ../../enterprise/godmode/setup/setup_skins.php:74 +msgid "Error deleting skin" +msgstr "Error deleting skin" + +#: ../../enterprise/godmode/setup/setup_skins.php:76 +msgid "Successfully deleted skin" +msgstr "Successfully deleted skin" + +#: ../../enterprise/godmode/setup/setup_skins.php:119 +msgid "Skin name" +msgstr "Skin name" + +#: ../../enterprise/godmode/setup/setup_skins.php:120 +#: ../../enterprise/godmode/setup/edit_skin.php:238 +msgid "Relative path" +msgstr "Relative path" + +#: ../../enterprise/godmode/setup/setup_skins.php:147 +msgid "There are no defined skins" +msgstr "There are no defined skins." + +#: ../../enterprise/godmode/setup/setup_skins.php:153 +msgid "Create skin" +msgstr "Create skin" + +#: ../../enterprise/godmode/setup/setup_module_library.php:64 +#: ../../enterprise/godmode/wizards/Cloud.class.php:353 +#: ../../godmode/module_library/module_library_view.php:145 +msgid "Invalid username or password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_module_library.php:65 +#: ../../godmode/module_library/module_library_view.php:144 +msgid "Problem with authentication. Check your internet connection" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:28 +msgid "Metaconsole setup" +msgstr "Metaconsole setup" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 +msgid "Pandora FMS Metaconsole item edition" +msgstr "Pandora FMS Metaconsole item edition" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "" +"Token previously configured on the destination Pandora console in order to " +"use delegated authentification." +msgstr "" +"Token previously configured on the destination Pandora FMS console in order " +"to use delegated authentication." + +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 +msgid "ElasticSearch IP" +msgstr "ElasticSearch IP" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 +msgid "IP of ElasticSearch server" +msgstr "IP of ElasticSearch server" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 +msgid "ElasticSearch Port" +msgstr "ElasticSearch Port" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 +msgid "Port of ElasticSearch server" +msgstr "Port of ElasticSearch server" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:42 +#: ../../include/functions_config.php:1400 +msgid "Number of logs viewed" +msgstr "Number of logs viewed" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../include/functions_config.php:1404 +msgid "Days to purge old information" +msgstr "Days to purge old information" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:46 +msgid "ElasticSearch Status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:31 +msgid "Active directory" +msgstr "Active directory" + +#: ../../enterprise/godmode/setup/setup_auth.php:32 +msgid "SAML" +msgstr "SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:84 +msgid "Force automatically create profile user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:89 +msgid "Local command" +msgstr "Local command" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "PHP function" +msgstr "PHP function" + +#: ../../enterprise/godmode/setup/setup_auth.php:96 +#: ../../enterprise/include/functions_tasklist.php:224 +#: ../../enterprise/include/functions_tasklist.php:281 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:196 +#: ../../include/functions_cron.php:508 ../../include/functions_cron.php:560 +#: ../../include/functions_update_manager.php:744 +#: ../../operation/search_users.php:36 +msgid "Email" +msgstr "E-mail" + +#: ../../enterprise/godmode/setup/setup_auth.php:167 +#: ../../enterprise/godmode/setup/setup_auth.php:439 +#: ../../enterprise/godmode/setup/setup_auth.php:1169 +msgid "Profiles selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:168 +#: ../../enterprise/godmode/setup/setup_auth.php:440 +#: ../../enterprise/godmode/setup/setup_auth.php:1170 +msgid "Groups selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:170 +#: ../../enterprise/godmode/setup/setup_auth.php:227 +#: ../../include/functions_profile.php:215 +msgid "No hierarchy" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:171 +#: ../../enterprise/godmode/setup/setup_auth.php:228 +msgid "LDAP Attributes" +msgstr "LDAP attributes" + +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:443 +#: ../../enterprise/godmode/setup/setup_auth.php:495 +#: ../../enterprise/godmode/setup/setup_auth.php:1173 +#: ../../enterprise/godmode/setup/setup_auth.php:1227 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "OP" + +#: ../../enterprise/godmode/setup/setup_auth.php:237 +#: ../../enterprise/godmode/setup/setup_auth.php:502 +#: ../../enterprise/godmode/setup/setup_auth.php:1234 +msgid "Select profile" +msgstr "Select profile" + +#: ../../enterprise/godmode/setup/setup_auth.php:281 +#: ../../enterprise/godmode/setup/setup_auth.php:539 +#: ../../enterprise/godmode/setup/setup_auth.php:1276 +msgid "Add new permissions" +msgstr "Add new permissions" + +#: ../../enterprise/godmode/setup/setup_auth.php:371 +#: ../../enterprise/godmode/setup/setup_auth.php:1101 +msgid "New users will be able to log in to the nodes." +msgstr "New users will be able to log in to the nodes" + +#: ../../enterprise/godmode/setup/setup_auth.php:442 +#: ../../enterprise/godmode/setup/setup_auth.php:494 +#: ../../enterprise/godmode/setup/setup_auth.php:1172 +#: ../../enterprise/godmode/setup/setup_auth.php:1226 +msgid "AD Groups" +msgstr "AD Groups" + +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:795 +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:699 +#: ../../enterprise/godmode/setup/setup_auth.php:800 +msgid "You must select a group from the list of groups." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../include/functions_config.php:641 +msgid "MySQL host" +msgstr "MySQL host" + +#: ../../enterprise/godmode/setup/setup_auth.php:1019 +msgid "SimpleSAML path" +msgstr "SimpleSAML path" + +#: ../../enterprise/godmode/setup/setup_auth.php:1023 +msgid "SAML source" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1028 +msgid "SAML user id attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1033 +msgid "SAML mail attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1038 +msgid "SAML group name attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1043 +msgid "Simple attribute / Multivalue attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1048 +msgid "SAML profiles and tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1053 +msgid "Profile attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1058 +msgid "Tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1063 +msgid "SAML profile and tags prefix" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:43 +msgid "Enterprise ACL setup" +msgstr "Enterprise ACL setup" + +#: ../../enterprise/godmode/setup/setup_acl.php:295 +msgid "This record already exists in the database" +msgstr "This record already exists in the database" + +#: ../../enterprise/godmode/setup/setup_acl.php:339 +#: ../../enterprise/godmode/setup/setup_acl.php:414 +msgid "Add new ACL element to profile" +msgstr "Add new ACL element to profile" + +#: ../../enterprise/godmode/setup/setup_acl.php:344 +#: ../../enterprise/godmode/setup/setup_acl.php:459 +msgid "Section" +msgstr "Section" + +#: ../../enterprise/godmode/setup/setup_acl.php:351 +#: ../../enterprise/godmode/setup/setup_acl.php:561 +msgid "Mobile" +msgstr "Mobile" + +#: ../../enterprise/godmode/setup/setup_acl.php:355 +#: ../../enterprise/godmode/setup/setup_acl.php:557 +msgid "Head search" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:372 +#: ../../enterprise/godmode/setup/setup_acl.php:460 +msgid "Section 2" +msgstr "Section 2" + +#: ../../enterprise/godmode/setup/setup_acl.php:389 +#: ../../enterprise/godmode/setup/setup_acl.php:461 +msgid "Section 3" +msgstr "Section 3" + +#: ../../enterprise/godmode/setup/setup_acl.php:413 +msgid "Hidden" +msgstr "Hidden" + +#: ../../enterprise/godmode/setup/setup_acl.php:419 +msgid "Page" +msgstr "Page" + +#: ../../enterprise/godmode/setup/setup_acl.php:438 +msgid "Filter by profile" +msgstr "Filter by profile" + +#: ../../enterprise/godmode/setup/setup_acl.php:458 +#: ../../godmode/users/configure_profile.php:217 +#: ../../godmode/massive/massive_delete_profiles.php:108 +#: ../../godmode/massive/massive_add_profiles.php:101 +#: ../../include/functions_profile.php:212 +#: ../../operation/users/user_edit.php:748 +msgid "Profile name" +msgstr "Profile name" + +#: ../../enterprise/godmode/setup/setup_acl.php:616 +#: ../../enterprise/godmode/setup/setup_acl.php:626 +#: ../../include/functions_graph.php:2924 +#: ../../include/functions_graph.php:2956 +msgid "Invalid" +msgstr "Invalid" + +#: ../../enterprise/godmode/setup/setup_acl.php:658 +#: ../../enterprise/godmode/reporting/visual_console_template.php:229 +#: ../../enterprise/operation/agentes/wux_console_view.php:591 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2833 +msgid "No data to show" +msgstr "No data to show" + +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Successfully updated skin" +msgstr "Skin updated successfully" + +#: ../../enterprise/godmode/setup/edit_skin.php:46 +#: ../../enterprise/godmode/setup/edit_skin.php:64 +msgid "Error updating skin" +msgstr "Error updating skin" + +#: ../../enterprise/godmode/setup/edit_skin.php:194 +msgid "Error creating skin" +msgstr "Error creating skin" + +#: ../../enterprise/godmode/setup/edit_skin.php:198 +msgid "Successfully created skin" +msgstr "Skin created successfully" + +#: ../../enterprise/godmode/setup/edit_skin.php:239 +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 can only have " +"alphanumeric characters." + +#: ../../enterprise/godmode/setup/edit_skin.php:264 +msgid "Group/s" +msgstr "Group(s)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:140 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 +msgid "Cleanup sucessfully" +msgstr "Cleanup successful" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:143 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 +msgid "Cleanup error" +msgstr "Cleanup error" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:188 +msgid "No item could be applied to report." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:126 +msgid "Sucessfully applied" +msgstr "Successfully applied" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +msgid "reports" +msgstr "Reports" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +msgid "items" +msgstr "Items" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:128 +msgid "Could not be applied" +msgstr "Could not be applied" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 +#: ../../godmode/massive/massive_operations.php:283 +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 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" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:214 +msgid "Create template report wizard" +msgstr "Create template report wizard" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:259 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:149 +msgid "Clean up template" +msgstr "Clean up template" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 +msgid "Create report per agent" +msgstr "Create report per agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 +#: ../../enterprise/include/functions_cron.php:223 +#: ../../enterprise/include/functions_tasklist.php:280 +#: ../../enterprise/include/functions_reporting_csv.php:2004 +#: ../../enterprise/include/functions_reporting_csv.php:2008 +#: ../../godmode/reporting/reporting_builder.php:791 +#: ../../include/functions_cron.php:559 ../../operation/search_reports.php:34 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "Report name" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 +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:281 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:206 +msgid "Target group" +msgstr "Target group" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:321 +msgid "Filter by" +msgstr "Filter by" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:396 +msgid "Filter tag" +msgstr "Filter tag" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:410 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:420 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:142 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:147 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:653 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:655 +#: ../../include/functions_snmp_browser.php:1187 +#: ../../include/functions_snmp_browser.php:1189 +msgid "Select all" +msgstr "Select all" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:413 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:251 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:653 +msgid "Agents available" +msgstr "Agents available" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:423 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:160 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:655 +msgid "Agents to apply" +msgstr "Agents to apply" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:445 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:274 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 +msgid "Add agents to template" +msgstr "Add agents to template" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:449 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:276 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:215 +msgid "Undo agents to template" +msgstr "Undo agents to template" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:467 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:294 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:233 +msgid "Apply template" +msgstr "Apply template" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:601 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +msgid "Please set template distinct than " +msgstr "Please set template distinct from " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:605 +msgid "Please set agent distinct than " +msgstr "Please set agent different than " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:626 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:422 +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/aws_view.php:53 +msgid "Instance" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:713 +msgid "CPU" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:133 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:128 +msgid "Failed to retrieve AWS information using selected account." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:141 +msgid "AWS credentials not validated." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:145 +msgid "Discovery Cloud: AWS" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:150 +msgid "Please, select an account: " +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:159 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:162 +msgid "" +"Within this view you will find information collected using Discovery Cloud " +"AWS task. You will be able to see the most relevant information about your " +"infrastructure, such as the current cost of your contracted services, the " +"number of instances per region or resource usage metrics. In order to " +"collect this information you must create a Cloud Monitoring Discovery task." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:165 +msgid "Press the create button to begin." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:194 +msgid "Instance table" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:170 +msgid "Visual console name" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:170 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use " +"default name: Template name - agent alias" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 +#: ../../enterprise/godmode/reporting/mysql_builder.php:173 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:205 ../../godmode/setup/gis_step_2.php:346 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:217 +#: ../../godmode/reporting/reporting_builder.main.php:34 +#: ../../operation/agentes/graphs.php:335 +msgid "Save" +msgstr "Save" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:153 +msgid "Edit template" +msgstr "Edit template" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:722 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* " +"will match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:32 +#: ../../enterprise/godmode/reporting/graph_template_list.php:44 +#: ../../enterprise/godmode/reporting/graph_template_list.php:55 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:90 +#: ../../godmode/reporting/graph_builder.php:249 +#: ../../godmode/reporting/graph_container.php:55 +#: ../../godmode/reporting/graphs.php:45 ../../godmode/reporting/graphs.php:56 +#: ../../operation/reporting/graph_viewer.php:152 +msgid "Graph list" +msgstr "Graph list" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:75 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:100 +#: ../../godmode/reporting/create_container.php:176 +#: ../../godmode/reporting/graph_container.php:72 +#: ../../godmode/reporting/graph_container.php:75 +msgid "Graph container" +msgstr "Graph container" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:79 +msgid "Graph template management" +msgstr "Graph template management" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:146 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:372 +#: ../../godmode/alerts/alert_list.list.php:55 +msgid "Template name" +msgstr "Template name" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:195 +msgid "There are no defined graph templates" +msgstr "There are no defined graph templates" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:137 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 +#: ../../enterprise/godmode/reporting/visual_console_template.php:182 +msgid "Create template" +msgstr "Create template" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:43 +msgid "Not created. Blank name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:78 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 +msgid "Graph template editor" +msgstr "Graph template editor" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:123 +#: ../../godmode/modules/manage_nc_groups.php:93 +#: ../../godmode/netflow/nf_edit_form.php:118 +#: ../../godmode/events/event_edit_filter.php:181 +msgid "Not updated. Blank name" +msgstr "Could not update: blank name." + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:141 +msgid "Template updated successfully" +msgstr "Template updated successfully" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:142 +#: ../../include/class/ModuleTemplates.class.php:350 +msgid "Error updating template" +msgstr "Error updating template" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:176 +#: ../../godmode/setup/gis_step_2.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 #: ../../godmode/events/event_responses.editor.php:121 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1304 -#: ../../operation/gis_maps/ajax.php:293 -#: ../../enterprise/dashboard/widgets/url.php:25 -#: ../../enterprise/extensions/vmware/functions.php:468 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1637 +#: ../../include/functions_visual_map_editor.php:98 +#: ../../include/functions_visual_map_editor.php:600 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:469 +msgid "Width" +msgstr "Width" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:180 +#: ../../godmode/setup/gis_step_2.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:123 +#: ../../include/functions_visual_map_editor.php:605 +msgid "Height" +msgstr "Height" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../godmode/setup/performance.php:552 +#: ../../godmode/reporting/create_container.php:314 +#: ../../include/functions.php:2540 ../../include/functions.php:3201 +#: ../../include/ajax/module.php:165 ../../include/ajax/graph.ajax.php:140 +#: ../../operation/gis_maps/render_view.php:143 +msgid "1 hour" +msgstr "1 hour" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 +#: ../../operation/gis_maps/render_view.php:144 +msgid "2 hours" +msgstr "2 hours" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 +msgid "3 hours" +msgstr "3 hours" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 +#: ../../include/ajax/module.php:166 +msgid "6 hours" +msgstr "6 hours" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 +#: ../../godmode/setup/performance.php:553 ../../include/ajax/module.php:167 +msgid "12 hours" +msgstr "12 hours" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 +#: ../../godmode/reporting/create_container.php:318 +#: ../../include/functions.php:2543 ../../include/ajax/module.php:168 +#: ../../include/ajax/graph.ajax.php:144 +msgid "1 day" +msgstr "1 day" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../godmode/setup/performance.php:555 +msgid "2 days" +msgstr "2 days" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 +msgid "4 days" +msgstr "4 days" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 +#: ../../godmode/setup/performance.php:557 +msgid "Last week" +msgstr "Last week" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 +#: ../../godmode/reporting/create_container.php:322 +#: ../../include/functions.php:2545 ../../include/ajax/module.php:170 +#: ../../include/ajax/graph.ajax.php:148 +msgid "15 days" +msgstr "15 days" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:195 +#: ../../godmode/setup/performance.php:559 +msgid "Last month" +msgstr "Last month" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +msgid "2 months" +msgstr "2 months" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:197 +#: ../../include/ajax/module.php:173 +msgid "6 months" +msgstr "6 months" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 +#: ../../include/functions.php:2549 ../../include/ajax/module.php:174 +msgid "1 year" +msgstr "1 year" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1605 +#: ../../enterprise/include/functions_reporting_csv.php:455 +#: ../../enterprise/include/functions_reporting_csv.php:458 +#: ../../enterprise/include/functions_reporting_csv.php:738 +#: ../../enterprise/include/functions_reporting_csv.php:769 +#: ../../enterprise/include/functions_reporting_csv.php:801 +#: ../../enterprise/include/functions_reporting_csv.php:861 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1296 +#: ../../enterprise/include/functions_reporting_csv.php:1682 +#: ../../godmode/agentes/module_manager_editor_prediction.php:159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1045 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:262 +#: ../../godmode/reporting/graph_builder.main.php:141 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:623 +msgid "Period" +msgstr "Periodicity" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:207 +msgid "Stacked" +msgstr "Stacked" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:214 +#: ../../godmode/reporting/graph_builder.main.php:152 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:262 +#: ../../operation/reporting/graph_viewer.php:266 +msgid "Stacked area" +msgstr "Stacked area" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:216 +#: ../../godmode/reporting/graph_builder.main.php:154 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:264 +#: ../../operation/reporting/graph_viewer.php:268 +msgid "Stacked line" +msgstr "Stacked line" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:791 +msgid "Top n" +msgstr "Top N" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../include/functions_reports.php:770 +#: ../../include/functions_reporting.php:2376 +msgid "Exception" +msgstr "Exception" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:55 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:55 +msgid "Only table" +msgstr "Only table" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:56 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:56 +msgid "Table & Graph" +msgstr "Chart & graph" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:57 +msgid "Only graph" +msgstr "Only graph" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:42 +msgid "Global" +msgstr "Global" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:205 +msgid "Elements to apply" +msgstr "Elements to apply" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1005 +msgid "Last value" +msgstr "Last value" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:792 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1584 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1007 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5583 +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 always report the most " +"recent information." + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +msgid "" +"If you select several agents, only the common modules will be displayed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../include/functions_reporting_html.php:3720 +msgid "Sum" +msgstr "Sum" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:387 +#: ../../include/functions_reporting.php:7605 +msgid "Rate" +msgstr "Rate" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:294 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../godmode/agentes/agent_manager.php:296 +#: ../../godmode/snmpconsole/snmp_alert.php:1448 +#: ../../include/class/ModuleTemplates.class.php:887 +#: ../../operation/events/events.php:1525 +msgid "Delete selected" +msgstr "Delete selected items" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:308 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2129 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1942 +msgid "Group by agent" +msgstr "Group by agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2512 +msgid "Show in the same row" +msgstr "Show in the same row" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +msgid "Show one module per row with all its operations" +msgstr "Show one module per row with all its operations" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2165 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2688 +#: ../../enterprise/operation/log/log_viewer.php:369 +#: ../../godmode/netflow/nf_item_list.php:175 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2535 +#: ../../include/lib/Dashboard/Widgets/top_n.php:266 +msgid "Order" +msgstr "Order" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:378 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:61 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2168 +#: ../../enterprise/operation/log/log_viewer.php:366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:61 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1959 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "Ascending" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:62 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2175 +#: ../../enterprise/operation/log/log_viewer.php:365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:62 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1966 +#: ../../include/lib/Dashboard/Widgets/top_n.php:260 +msgid "Descending" +msgstr "Descending" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:342 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:392 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2182 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1973 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "By agent name" +msgstr "By agent name" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:350 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2194 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1985 +#: ../../include/lib/Dashboard/Widgets/top_n.php:248 +msgid "Quantity (n)" +msgstr "Quantity (n)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:362 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2209 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2015 +#: ../../include/lib/Dashboard/Widgets/top_n.php:285 +#: ../../operation/agentes/ver_agente.php:1310 +msgid "Display" +msgstr "Display" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2093 +msgid "Condition" +msgstr "Condition" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2285 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2097 +#: ../../include/functions_reporting.php:2398 +msgid "Everything" +msgstr "Everything" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2292 +msgid ">=" +msgstr ">=" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:421 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2299 +msgid "<" +msgstr "<" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2313 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 +#: ../../include/functions_reporting_html.php:2531 +msgid "Not OK" +msgstr "Not OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:433 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2117 +msgid "Show graph" +msgstr "Show graph" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:407 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2219 +msgid "Show resume" +msgstr "Show summary" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2431 +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.global.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:779 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3069 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2764 +msgid "Show item in landscape format (only PDF)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:476 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:795 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2773 +msgid "Page break at the end of the item (only PDF)" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:103 +msgid "Wizard template" +msgstr "Wizard template" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:77 +msgid "Advance Reporting" +msgstr "Advance reporting" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 +msgid "Page orientation" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:95 +#: ../../include/functions_visual_map_editor.php:775 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464 +msgid "Vertical" +msgstr "Vertical" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:98 +#: ../../include/functions_visual_map_editor.php:776 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463 +msgid "Horizontal" +msgstr "Horizontal" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1562 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:313 +#: ../../godmode/reporting/reporting_builder.list_items.php:388 +#: ../../godmode/reporting/create_container.php:332 +#: ../../godmode/reporting/create_container.php:441 +#: ../../godmode/reporting/create_container.php:495 +#: ../../godmode/reporting/reporting_builder.item_editor.php:982 +msgid "Time lapse" +msgstr "Time lapse" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373 +msgid "Order:" +msgstr "Order:" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409 +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:429 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2410 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2199 +msgid "Show address instead module name" +msgstr "Show address instead module name" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2411 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 +msgid "Show the main address of agent." +msgstr "Show the main address of the agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 +#: ../../godmode/reporting/graphs.php:87 ../../operation/menu.php:343 +msgid "Custom graphs" +msgstr "Custom graphs" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:499 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1842 +#: ../../include/functions_reports.php:785 +msgid "SQL query" +msgstr "SQL query" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2046 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:347 +msgid "Time compare (Overlapped)" +msgstr "Time comparison (overlapped)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2240 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2063 +msgid "Full resolution graph (TIP)" +msgstr "Full resolution graph (TIP)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:572 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2073 +#: ../../godmode/reporting/graph_builder.main.php:165 +#: ../../include/functions.php:3806 ../../include/functions.php:3814 +msgid "Percentil" +msgstr "Percentile" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:573 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 +msgid "" +"If this option was checked, only adding in elements that type of modules " +"support this option." +msgstr "" +"If this option is checked, only adding this type of modules supports this " +"option." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:587 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2316 +msgid "Show Summary group" +msgstr "Show Summary group" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:651 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2594 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +msgid "Event Status" +msgstr "Event Status" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:677 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2621 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2429 +#: ../../operation/agentes/tactical.php:223 +msgid "Event graphs" +msgstr "Event graphs" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:681 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2433 +msgid "By agent" +msgstr "By agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +msgid "By user validator" +msgstr "By user validation" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:701 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2453 +msgid "By criticity" +msgstr "By severity" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:711 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2655 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2463 +msgid "Validated vs unvalidated" +msgstr "Validated vs unvalidated" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:730 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1643 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1083 +msgid "Data range" +msgstr "Data range" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1064 +msgid "Projection period" +msgstr "Projected period" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1864 +msgid "Serialized header" +msgstr "Serialised header" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2033 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1865 +msgid "The separator character is |" +msgstr "The separation character is |" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2087 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1900 +msgid "Field separator" +msgstr "Field separator" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2088 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1901 +msgid "Separator for different fields in the serialized text chain" +msgstr "Separator for different fields in the serialized text chain" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2108 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1921 +msgid "Line separator" +msgstr "Line break" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2109 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1922 +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" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2748 +msgid "Uncompress module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:813 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3054 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2749 +msgid "Use uncompressed module data." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:104 +#: ../../enterprise/include/functions_reporting.php:38 +msgid "Wizard SLA" +msgstr "SLA-Wizard" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:128 +#: ../../enterprise/include/functions_reporting.php:2087 +#: ../../include/functions_reports.php:689 +msgid "Monthly S.L.A." +msgstr "Monthly SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 +#: ../../enterprise/include/functions_reporting.php:3015 +#: ../../include/functions_reports.php:693 +msgid "Weekly S.L.A." +msgstr "Weekly SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 +msgid "hourly S.L.A." +msgstr "hourly SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 +msgid "Availability Graph S.L.A." +msgstr "Availability Graph SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:134 +#: ../../enterprise/include/functions_reporting.php:4864 +#: ../../include/functions_reports.php:703 +msgid "Services S.L.A." +msgstr "SLA services" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +msgid "SLA min value" +msgstr "SLA min value" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "Enter possible range of values in SLA." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:255 +msgid "SLA min Value" +msgstr "SLA min value" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +msgid "SLA max value" +msgstr "SLA max value" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:261 +msgid "SLA max Value" +msgstr "SLA max value" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "SLA Limit %" +msgstr "SLA limit %" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:267 +msgid "SLA Limit Value" +msgstr "SLA limit value" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:272 +msgid "Dynamic SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:279 +msgid "Inverse SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:288 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2754 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2591 +msgid "Failover mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2592 +msgid "" +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 +msgid "Failover type" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2779 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2616 +msgid "Failover normal" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2791 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2628 +msgid "Failover simple" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2536 +msgid "SLA items sorted by fulfillment value" +msgstr "SLA items sorted by fulfillment value" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1656 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 +msgid "Only display wrong SLAs" +msgstr "Only display wrong SLAs" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:414 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:538 +msgid "Dynamic SLA can not be Inverse" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:543 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:547 +msgid "SLA Limit value is needed" +msgstr "SLA limit value is needed" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:164 +#: ../../enterprise/include/functions_reporting.php:7009 +#: ../../enterprise/include/functions_reporting.php:7065 +#: ../../godmode/reporting/reporting_builder.php:3084 +#: ../../operation/reporting/reporting_viewer.php:99 +msgid "Item editor" +msgstr "Item editor" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:133 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:158 +#: ../../godmode/reporting/reporting_builder.php:3080 +#: ../../operation/reporting/reporting_viewer.php:93 +msgid "List items" +msgstr "List items" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 +msgid "List templates" +msgstr "List templates" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:376 +#: ../../godmode/reporting/reporting_builder.php:793 +#: ../../operation/search_reports.php:36 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:377 +#: ../../godmode/reporting/reporting_builder.php:794 +#: ../../operation/search_reports.php:37 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:378 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:379 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:380 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:196 +#: ../../operation/agentes/exportdata.php:362 +msgid "CSV" +msgstr "CSV" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:433 +#: ../../godmode/reporting/reporting_builder.php:933 +msgid "HTML view" +msgstr "HTML view" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:434 +#: ../../godmode/reporting/reporting_builder.php:940 +msgid "Export to XML" +msgstr "Export to XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:435 +#: ../../enterprise/operation/reporting/custom_reporting.php:60 +#: ../../include/class/Diagnostics.class.php:141 +msgid "Export to PDF" +msgstr "Export to PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 +#: ../../enterprise/operation/reporting/custom_reporting.php:61 +msgid "Export to JSON" +msgstr "Export to JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:482 +msgid "You haven't created templates yet." +msgstr "You have not created templates yet." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +msgid "Generate a dynamic report" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 +msgid "Period " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:586 +msgid "Set start and end date" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:599 +#: ../../include/ajax/module.php:205 +#: ../../operation/agentes/datos_agente.php:198 +#: ../../operation/events/events_list.php:867 +msgid "Timestamp from:" +msgstr "Timestamp from:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:617 +#: ../../include/ajax/module.php:225 +#: ../../operation/agentes/datos_agente.php:204 +#: ../../operation/events/events_list.php:870 +msgid "Timestamp to:" +msgstr "Timestamp to:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:636 +msgid "Monthly SLA period" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:636 +msgid "This field only applies in case of Monthly SLA item." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:678 +#: ../../enterprise/include/class/Omnishell.class.php:844 +msgid "Add agents" +msgstr "Add agents" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:685 +msgid "Undo agents" +msgstr "Undo agents" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:721 +msgid "RegEx agent filter" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:737 +msgid "Generate" +msgstr "Generate" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1083 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1105 +msgid "Please set agent or agent regex distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1113 +msgid "No agent matches regular expression " +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:156 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3380 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3856 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4001 +#: ../../enterprise/operation/log/log_viewer.php:346 +msgid "Exact match" +msgstr "Exact match" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Decrease Weight" +msgstr "Decrease weight" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Increase Weight" +msgstr "Increase weight" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:111 +#: ../../enterprise/godmode/reporting/visual_console_template.php:125 +msgid "visual console has not been selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:117 +msgid "Error. Error created template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:119 +msgid "Successfully created template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:131 +msgid "Error. Error delete template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:133 +msgid "Successfully delete template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:155 +msgid "Create From" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:158 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:188 +msgid "Create New Template" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:53 +#: ../../enterprise/godmode/reporting/mysql_builder.php:144 +msgid "Custom Mysql template builder" +msgstr "Custom MySQL template builder" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:87 +msgid "Create custom SQL" +msgstr "Create custom SQL" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +msgid ": Create new custom" +msgstr "Create new custom search:" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:115 +msgid "Create new custom" +msgstr "Create new custom" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 +msgid "Successfully operation" +msgstr "Successful operation" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 +msgid "Could not be operation" +msgstr "Operation could not be completed" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:165 +#: ../../enterprise/include/functions_reporting_csv.php:899 +#: ../../include/functions_reporting.php:5134 +msgid "SQL" +msgstr "SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1471 +#: ../../godmode/reporting/reporting_builder.php:3164 +msgid "Successfull action" +msgstr "Successful action" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1472 +#: ../../godmode/servers/modificar_server.php:115 +#: ../../godmode/servers/modificar_server.php:126 +msgid "Unsuccessfull action" +msgstr "Unsuccessful action" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1489 +#: ../../godmode/reporting/reporting_builder.item_editor.php:787 +msgid "Item Editor" +msgstr "Item Editor" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1670 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1110 +msgid "Current month" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +msgid "Working time" +msgstr "Work time" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1781 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1795 +msgid "Select server" +msgstr "Select server" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 +msgid "" +"Case insensitive regular expression for agent name. For example: Network.* " +"will match with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" +"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:1904 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3508 +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:1926 +msgid "Module exact match" +msgstr "Module exact match" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1927 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3211 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3286 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3433 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +msgid "Check it if you want to match module name literally" +msgstr "Check if you want to match the module name literally" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1942 +msgid "Hide items without data" +msgstr "Hide items without data" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1943 +msgid "Check it if you want not show items without data" +msgstr "Check if you want to hide items without data" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1956 +#: ../../godmode/reporting/create_container.php:448 +#: ../../godmode/reporting/create_container.php:590 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1712 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.elements.php:481 +#: ../../include/functions_visual_map_editor.php:363 +#: ../../include/functions_visual_map_editor.php:366 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:609 +#: ../../include/functions_reports.php:554 +#: ../../include/functions_reports.php:641 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_reporting.php:7680 +msgid "Custom graph" +msgstr "Custom graph" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +msgid "Query SQL" +msgstr "SQL query" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2003 +msgid "" +"This query should always return a field called label and a field called " +"value. Example: SELECT alias AS label, total_count AS value FROM tagente" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2015 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1852 +msgid "Max items" +msgstr "Max items" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2048 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1824 +msgid "Custom SQL template" +msgstr "Custom SQL template" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2066 +msgid "SQL preview" +msgstr "SQL preview" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2071 +#: ../../enterprise/include/functions_reporting_csv.php:2173 +#: ../../enterprise/include/functions_reporting_csv.php:2187 +#: ../../extensions/api_checker.php:224 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1884 +#: ../../godmode/events/event_responses.editor.php:138 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "URL" -#: ../../extensions/api_checker.php:203 ../../extensions/api_checker.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2226 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2032 +#: ../../include/functions_reporting_html.php:3717 +#: ../../include/functions_reporting.php:1397 +msgid "Avg" +msgstr "Avg." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2339 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2131 +msgid "Select fields to show" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 +#: ../../enterprise/include/functions_reporting_csv.php:466 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 +#: ../../include/functions_reporting_html.php:3041 +msgid "Total time" +msgstr "Total time" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2355 +#: ../../enterprise/include/functions_reporting_csv.php:470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2147 +#: ../../include/functions_reporting_html.php:3047 +msgid "Time failed" +msgstr "Time failed" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:474 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2155 +msgid "Time in OK status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2371 +#: ../../enterprise/include/functions_reporting_csv.php:478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2163 +msgid "Time in unknown status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2383 +#: ../../enterprise/include/functions_reporting_csv.php:482 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2175 +msgid "Time of not initialized module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 +#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2187 +msgid "Time of downtime" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2287 +msgid "

Select fields to show

" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2457 +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2247 +#: ../../include/functions_reporting_html.php:3126 +msgid "Total checks" +msgstr "Total checks" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2465 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2255 +#: ../../include/functions_reporting_html.php:3132 +msgid "Checks failed" +msgstr "Checks failed" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2473 +#: ../../enterprise/include/functions_reporting_csv.php:502 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2263 +msgid "Checks in OK status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2485 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2275 +msgid "Unknown checks" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 +#: ../../enterprise/include/functions_reporting_csv.php:614 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2295 +#: ../../include/functions_reporting_html.php:3331 +msgid "Agent max value" +msgstr "Agent max value" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2303 +msgid "Agent min values" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2493 +msgid "Height (dynamic graphs)" +msgstr "Height (dynamic graphs)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2709 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2477 +msgid "Query History Database" +msgstr "Query History Database" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 +msgid "Priority mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2726 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2563 +msgid "Priority ok mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2738 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2575 +msgid "Priority unknown mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 +msgid "Modules to match" +msgstr "Modules to match" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2809 +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:2909 +msgid "Modules to match (Free text)" +msgstr "Modules to match (Free text)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911 +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:2928 +msgid "Create a graph for each agent" +msgstr "Create a graph for each agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2930 +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 large graph with all modules from all agents." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2957 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 +msgid "Calculate for custom intervals" +msgstr "Calculate for custom intervals" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2664 +msgid "Time lapse intervals" +msgstr "Time lapse intervals" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2971 +msgid "" +"Lapses of time in which the period is divided to make more precise " +"calculations" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2709 +msgid "Table only" +msgstr "Table only" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3026 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 +msgid "Graph only" +msgstr "Graph only" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +msgid "Graph and table" +msgstr "Graph and table" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3098 +#: ../../godmode/netflow/nf_item_list.php:284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2788 +msgid "Create item" +msgstr "Create item" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3107 +#: ../../extensions/agents_modules.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2795 +#: ../../include/functions_visual_map_editor.php:1324 +msgid "Update item" +msgstr "Update item" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3156 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2882 +msgid "SLA Min. (value)" +msgstr "SLA Min. (value)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2887 +msgid "SLA Max. (value)" +msgstr "SLA Max. (value)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3166 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2892 +msgid "SLA Limit (%)" +msgstr "SLA Limit (%)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3183 +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:3224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3865 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4010 +msgid "Not literally" +msgstr "Not literally" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3269 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3499 +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:3285 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514 +msgid "Literal module name forced" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3573 +#: ../../godmode/reporting/create_container.php:386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1410 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3105 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3233 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3504 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3591 +#: ../../include/functions_html.php:4194 +msgid "Select an Agent first" +msgstr "Select an Agent first" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3405 +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:3891 +msgid "Name and SLA limit should not be empty" +msgstr "Name and SLA limit should not be empty" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:87 +#: ../../godmode/modules/module_list.php:57 +#: ../../godmode/groups/configure_group.php:121 +#: ../../godmode/groups/group_list.php:683 +#: ../../godmode/setup/os.builder.php:37 +#: ../../godmode/reporting/visual_console_builder.elements.php:254 +#: ../../include/functions_visual_map_editor.php:68 +#: ../../include/functions_visual_map_editor.php:1305 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2029 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:383 +#: ../../include/lib/Dashboard/Widgets/module_status.php:373 +#: ../../operation/visual_console/view.php:255 +msgid "Icon" +msgstr "Icon" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:125 +#: ../../include/graphs/export_data.php:74 +msgid "Selected" +msgstr "Selected" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:135 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 +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:145 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:146 +msgid "Remove the services from the list" +msgstr "Remove the services from the list" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:201 +msgid "Icon preview" +msgstr "Icon preview" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:267 +msgid "The services list is empty" +msgstr "The services list is empty" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "Advance options" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:279 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:292 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:305 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +msgid "Ascendent" +msgstr "Ascendent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:283 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:309 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +msgid "Descent" +msgstr "Descendent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:362 +#: ../../godmode/netflow/nf_item_list.php:230 +#: ../../godmode/netflow/nf_item_list.php:232 +msgid "Move to up" +msgstr "Move up" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:372 +#: ../../godmode/netflow/nf_item_list.php:228 +#: ../../godmode/netflow/nf_item_list.php:233 +msgid "Move to down" +msgstr "Move down" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:409 +#: ../../enterprise/include/class/VMware.app.php:230 +#: ../../enterprise/include/class/SAP.app.php:176 +#: ../../enterprise/include/class/Aws.cloud.php:792 +#: ../../enterprise/include/class/MySQL.app.php:195 +#: ../../enterprise/include/class/Oracle.app.php:187 +#: ../../godmode/wizards/HostDevices.class.php:406 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:178 +msgid "Command Mysqldump not found." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:282 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:295 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:375 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:392 +msgid "Failed to create task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:401 +msgid "I do not know what you want to do" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:418 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:587 +msgid "You have no access to manage console tasks." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:432 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:500 +msgid "Create new console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:455 +#: ../../enterprise/include/class/Azure.cloud.php:661 +#: ../../enterprise/include/class/VMware.app.php:410 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:930 +#: ../../enterprise/include/class/Omnishell.class.php:1296 +#: ../../enterprise/include/class/SAP.app.php:380 +#: ../../enterprise/include/class/Aws.cloud.php:1011 +#: ../../enterprise/include/class/MySQL.app.php:370 +#: ../../enterprise/include/class/Oracle.app.php:356 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:247 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:297 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:740 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:350 +#: ../../godmode/wizards/HostDevices.class.php:642 +#: ../../godmode/wizards/HostDevices.class.php:743 +#: ../../godmode/wizards/Wizard.main.php:413 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:166 +#: ../../include/class/CustomNetScan.class.php:313 +#: ../../include/class/CustomNetScan.class.php:421 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:475 +msgid "Updating console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:623 +msgid "Next Execution" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:178 +#: ../../enterprise/godmode/wizards/Applications.class.php:148 +#: ../../enterprise/include/class/Azure.cloud.php:179 +#: ../../enterprise/include/class/DeploymentCenter.class.php:550 +#: ../../enterprise/include/class/Aws.cloud.php:137 ../../godmode/menu.php:62 +#: ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:206 +#: ../../enterprise/godmode/wizards/Applications.class.php:177 +msgid "" +"All company names used here are for identification purposes only. Use of " +"these names, logos, and brands does not imply endorsement." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:232 +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#, php-format +msgid "%s credentials" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "Manage accounts" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:276 +msgid "Cloud tool full path" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:337 +msgid "Select a set of credentials from the list" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:350 +#, php-format +msgid "Path %s is not executable." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:395 +msgid "Account disconnected" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:397 +msgid "Failed disconnecting account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:471 +msgid "Credentials successfully updated" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:473 +msgid "Failed updating credentials process" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:48 +msgid "View nodes" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +msgid "Manage Pandora DB HA" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +msgid "" +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:123 +msgid "Node label" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:124 +#: ../../operation/tree.php:188 +msgid "Agent status" +msgstr "Agent status" + +#: ../../enterprise/godmode/servers/HA_cluster.php:125 +msgid "DB Repl." +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:126 +msgid "DB Status" +msgstr "DB Status" + +#: ../../enterprise/godmode/servers/HA_cluster.php:128 +#: ../../extensions/quick_shell.php:159 +#: ../../godmode/agentes/module_manager_editor_network.php:469 +msgid "SSH" +msgstr "SSH" + +#: ../../enterprise/godmode/servers/HA_cluster.php:129 +msgid "DB Role" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:130 +msgid "Cluster Role" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:132 +msgid "Seconds behind master" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:133 +msgid "Virtual IP" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:134 +msgid "SQL version" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:135 +msgid "DB version" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:137 +msgid "Pending action" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:262 +msgid "Show/ edit node" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:277 +msgid "Put node into standby status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:291 +msgid "Force node resync" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:317 +msgid "Put node into online status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:331 +msgid "Show cluster details" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:348 +msgid "Remove node from this list" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:371 +msgid "Register node" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:409 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do " +"you want to continue?" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "Error updating export target" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "Successfully updated export target" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "Error deleting export target" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be " +"automatically unattached" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "" +"Can't be created export target: User and password must be filled with FTP " +"mode" +msgstr "" +"Export target cannot be created: user and password must be filled with FTP " +"mode" + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "There are no defined export targets" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "Preffix" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "Transfer mode" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:34 +msgid "Credential Boxes List" +msgstr "Credential box list" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:39 +msgid "Credential Boxes" +msgstr "Credential boxes" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:290 +#: ../../enterprise/godmode/servers/list_satellite.php:68 +msgid "No Data" +msgstr "No data" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:136 +msgid "Error: The conf file of server is not readble." +msgstr "Error: the configuration file of server is not readable." + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:140 +msgid "Error: The conf file of server is not writable." +msgstr "Error: the configuration file of server is not writable." + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 +msgid "Delete remote conf server files" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +msgid "" +"Delete this conf file implies that server will send back local config to " +"console" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "Add credential box" + +#: ../../enterprise/godmode/servers/manage_export_form.php:79 +#: ../../include/functions_servers.php:630 +#: ../../include/functions_servers.php:1214 +msgid "Export server" +msgstr "Export server" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "Target directory" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +msgid "Extra options" +msgstr "Extra options" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "Satellite Server" + +#: ../../enterprise/include/functions_cron.php:174 +#: ../../enterprise/include/functions_cron.php:243 +#: ../../enterprise/include/functions_cron.php:280 +#: ../../enterprise/include/functions_cron.php:309 +#: ../../enterprise/include/functions_cron.php:353 +#: ../../enterprise/include/functions_cron.php:415 +msgid "Report to build" +msgstr "Report pending to be created" + +#: ../../enterprise/include/functions_cron.php:182 +#: ../../enterprise/include/functions_cron.php:227 +#: ../../enterprise/operation/reporting/custom_reporting.php:96 +msgid "Send to emails (separated by comma)" +msgstr "Send to e-mail addresses (separated by a comma)" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:231 +#: ../../enterprise/operation/reporting/custom_reporting.php:104 +#: ../../godmode/setup/news.php:175 ../../godmode/setup/news.php:236 +#: ../../operation/messages/message_list.php:167 +#: ../../operation/messages/message_edit.php:321 +msgid "Subject" +msgstr "Subject" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:235 +#: ../../enterprise/operation/reporting/custom_reporting.php:112 +#: ../../operation/messages/message_edit.php:331 +msgid "Message" +msgstr "Message" + +#: ../../enterprise/include/functions_cron.php:195 +msgid "Report Type" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:202 +#: ../../enterprise/include/functions_cron.php:331 +msgid "Template to build" +msgstr "Template pending to be created" + +#: ../../enterprise/include/functions_cron.php:219 +#: ../../enterprise/include/functions_tasklist.php:279 +#: ../../include/functions_cron.php:558 +msgid "Report per agent" +msgstr "Report per agent" + +#: ../../enterprise/include/functions_cron.php:251 +#: ../../enterprise/include/functions_cron.php:265 +#: ../../enterprise/include/functions_cron.php:288 +#: ../../enterprise/include/functions_cron.php:354 +#: ../../enterprise/include/functions_cron.php:416 +msgid "Save to disk into path" +msgstr "Save to disk in path" + +#: ../../enterprise/include/functions_cron.php:252 +#: ../../enterprise/include/functions_cron.php:289 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "The Apache user should have read-write access on this folder. E.g. " + +#: ../../enterprise/include/functions_cron.php:273 +#: ../../enterprise/include/functions_tasklist.php:308 +#: ../../include/functions_cron.php:586 +msgid "Custom script" +msgstr "Custom script" + +#: ../../enterprise/include/functions_cron.php:310 +#: ../../enterprise/include/functions_cron.php:332 +msgid "Send to email" +msgstr "Send to e-mail" + +#: ../../enterprise/include/functions_cron.php:311 +msgid "Send custom report by email" +msgstr "Send custom report by e-mail" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report (from template) by email" +msgstr "Send custom report (from template) by e-mail" + +#: ../../enterprise/include/functions_cron.php:355 +#: ../../enterprise/include/functions_cron.php:417 +msgid "Save custom report to disk" +msgstr "Save custom report to disk" + +#: ../../enterprise/include/functions_cron.php:375 +msgid "Backup Pandora database" +msgstr "Backup Pandora FMS database" + +#: ../../enterprise/include/functions_cron.php:395 +msgid "Execute custom script" +msgstr "Execute custom script" + +#: ../../enterprise/include/functions_cron.php:418 +msgid "Save custom xml report to disk" +msgstr "Save custom XML report to disk" + +#: ../../enterprise/include/functions_cron.php:464 +msgid "Not scheduled" +msgstr "Not scheduled" + +#: ../../enterprise/include/functions_cron.php:465 +#: ../../include/functions_netflow.php:1592 +msgid "Hourly" +msgstr "Hourly" + +#: ../../enterprise/include/functions_cron.php:466 +#: ../../godmode/agentes/module_manager_editor_prediction.php:163 +#: ../../include/functions_netflow.php:1593 +msgid "Daily" +msgstr "Daily" + +#: ../../enterprise/include/functions_cron.php:467 +#: ../../godmode/agentes/module_manager_editor_prediction.php:161 +#: ../../godmode/agentes/planned_downtime.editor.php:734 +msgid "Weekly" +msgstr "Weekly" + +#: ../../enterprise/include/functions_cron.php:468 +#: ../../godmode/agentes/module_manager_editor_prediction.php:162 +#: ../../godmode/agentes/planned_downtime.editor.php:735 +msgid "Monthly" +msgstr "Monthly" + +#: ../../enterprise/include/functions_cron.php:469 +msgid "Yearly" +msgstr "Yearly" + +#: ../../enterprise/include/functions_cron.php:761 +#: ../../enterprise/include/functions_cron.php:785 +#: ../../enterprise/operation/reporting/custom_reporting.php:107 +#: ../../enterprise/operation/reporting/custom_reporting.php:115 +msgid "This is an optional field" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1178 +#: ../../enterprise/include/functions_tasklist.php:221 +#: ../../enterprise/include/functions_tasklist.php:343 +#: ../../enterprise/include/functions_tasklist.php:374 +#: ../../extensions/resource_exportation.php:423 +#: ../../include/functions_cron.php:505 ../../include/functions_cron.php:620 +#: ../../include/functions_cron.php:650 +#: ../../include/lib/Dashboard/Widgets/reports.php:232 +#: ../../include/lib/Dashboard/Widgets/reports.php:281 +msgid "Report" +msgstr "Report" + +#: ../../enterprise/include/functions_cron.php:1184 +#: ../../enterprise/include/functions_cron.php:1352 +msgid "Greetings" +msgstr "Greetings" + +#: ../../enterprise/include/functions_cron.php:1186 +#: ../../enterprise/include/functions_cron.php:1354 +msgid "Attached to this email there's a PDF file of the" +msgstr "Attached to this e-mail there is a PDF file of the" + +#: ../../enterprise/include/functions_cron.php:1187 +#: ../../enterprise/include/functions_cron.php:1355 +msgid "report" +msgstr "report" + +#: ../../enterprise/include/functions_cron.php:1190 +#: ../../enterprise/include/functions_cron.php:1358 +#: ../../mobile/include/functions_web.php:82 +#: ../../mobile/include/ui.class.php:306 +msgid "Generated at" +msgstr "Generated at" + +#: ../../enterprise/include/functions_cron.php:1192 +#: ../../enterprise/include/functions_cron.php:1360 +msgid "Thanks for your time." +msgstr "Thank you for your time." + +#: ../../enterprise/include/functions_cron.php:1194 +#: ../../enterprise/include/functions_cron.php:1362 +msgid "Best regards, Pandora FMS" +msgstr "Best regards, Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:1196 +#: ../../enterprise/include/functions_cron.php:1364 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not " +"reply." +msgstr "" +"This is an automatically generated e-mail from Pandora FMS, please do not " +"reply." + +#: ../../enterprise/include/functions_cron.php:1892 +#: ../../enterprise/include/functions_cron.php:1902 +#: ../../enterprise/include/functions_cron.php:1911 +msgid "Error while executing task: " +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:53 +#: ../../include/class/ConsoleSupervisor.php:2247 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:55 +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2250 +msgid "Please, add the following line to your crontab file:" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:71 +#: ../../include/class/ConsoleSupervisor.php:2263 +msgid "Last execution" +msgstr "Last execution" + +#: ../../enterprise/include/functions_tasklist.php:74 +msgid "Please check process is no locked." +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../enterprise/include/functions_tasklist.php:509 +msgid "There are no console task defined yet." +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:171 +#: ../../include/functions_cron.php:458 +msgid "Last run" +msgstr "Last execution" + +#: ../../enterprise/include/functions_tasklist.php:200 +#: ../../enterprise/include/functions_tasklist.php:243 +#: ../../enterprise/include/functions_tasklist.php:295 +#: ../../enterprise/include/functions_tasklist.php:322 +#: ../../enterprise/include/functions_tasklist.php:359 +#: ../../enterprise/include/functions_tasklist.php:390 +#: ../../enterprise/include/functions_tasklist.php:414 +#: ../../include/functions_cron.php:481 ../../include/functions_cron.php:519 +#: ../../include/functions_cron.php:570 ../../include/functions_cron.php:596 +#: ../../include/functions_cron.php:632 ../../include/functions_cron.php:662 +msgid "Force run" +msgstr "Force execution" + +#: ../../enterprise/include/functions_tasklist.php:223 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/operation/reporting/custom_reporting.php:81 +#: ../../include/functions_cron.php:507 +msgid "Report type" +msgstr "Report type" + +#: ../../enterprise/include/functions_tasklist.php:514 +msgid "Console Tasks" +msgstr "" + +#: ../../enterprise/include/functions_networkmap.php:934 +msgid "Map not found." +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:46 +msgid "SNMP enabled" +msgstr "SNMP enabled" + +#: ../../enterprise/include/functions_hostdevices.php:88 +msgid "SNMP communities to try with" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:90 +msgid "" +"You can specify several values, separated by commas, for example: " +"public,mysecret,1234" +msgstr "" +"You can specify several values, separated by commas, for example: " +"public,mysecret,1234" + +#: ../../enterprise/include/functions_hostdevices.php:218 +msgid "WMI enabled" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:231 +msgid "Remote commands enabled" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:255 +#: ../../enterprise/include/functions_hostdevices.php:258 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1098 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1225 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1228 +#: ../../enterprise/include/class/SAP.app.php:580 +#: ../../enterprise/include/class/SAP.app.php:583 +msgid "No credentials available" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:256 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1096 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1226 +#: ../../enterprise/include/class/SAP.app.php:581 +msgid "Manage credentials" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:268 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +msgid "Credentials to try with" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:300 +msgid "OS detection" +msgstr "OS detection" + +#: ../../enterprise/include/functions_hostdevices.php:312 +msgid "Name resolution" +msgstr "Name resolution" + +#: ../../enterprise/include/functions_hostdevices.php:323 +msgid "Parent detection" +msgstr "Parent detection" + +#: ../../enterprise/include/functions_hostdevices.php:334 +msgid "Parent recursion" +msgstr "Parent recursion" + +#: ../../enterprise/include/functions_hostdevices.php:345 +msgid "VLAN enabled" +msgstr "" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:179 +msgid "The phase does not have a defined script" +msgstr "The phase does not have a defined script." + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:233 +msgid "Edit Data" +msgstr "Edit data" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:73 +msgid "Error accesing to API, auth error." +msgstr "Error accesing API, authentication error" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:78 +msgid "Error accesing to API." +msgstr "Error accessing API" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:83 +msgid "Error could not resolve the host." +msgstr "Error, could not resolve the host" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:88 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:114 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:135 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:157 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:174 +msgid "Unknown error" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:99 +msgid "Database credentials not found" +msgstr "Database credentials not found" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:104 +msgid "Error connecting to the specified host" +msgstr "Error connecting to the specified host" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:109 +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:125 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:152 +msgid "Server connection failed" +msgstr "Server connection failed" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:130 +msgid "MR versions does not match" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:146 +msgid "Last event replication" +msgstr "Last event replication" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:164 +msgid "Agent cache activated" +msgstr "Agent cache activated" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:169 +msgid "Agent cache failed" +msgstr "Agent cache failed" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:88 +msgid "avg" +msgstr "avg" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:89 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3267 +msgid "max" +msgstr "max" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:90 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 +msgid "min" +msgstr "min" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:91 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3269 +msgid "sum" +msgstr "sum" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:74 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +msgid "Group name" +msgstr "Group name" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:99 +msgid "OS name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:111 +msgid "Custom field name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:113 +msgid "Custom field value" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:120 +msgid "IP Network range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:126 +msgid "Script" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Arguments" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:134 +msgid "Unknown form" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:211 +#: ../../include/functions_treeview.php:760 +#: ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:480 +msgid "Custom field" +msgstr "Custom field" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:212 +msgid "IP range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +msgid "Script output (> 0)" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:411 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:520 +#: ../../godmode/snmpconsole/snmp_alert.php:1047 +#: ../../godmode/snmpconsole/snmp_alert.php:1266 +msgid "Alert action" +msgstr "Alert action" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:417 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../extensions/agents_alerts.php:239 +#: ../../godmode/alerts/configure_alert_template.php:661 +#: ../../godmode/alerts/alert_list.builder.php:109 +msgid "Default action" +msgstr "Default action" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:431 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:540 +msgid "Script path" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 +msgid "Script argument" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443 +#: ../../godmode/alerts/alert_list.list.php:657 +#: ../../godmode/alerts/alert_list.list.php:1015 +msgid "Update action" +msgstr "Update action" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "Global time: " + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:33 +#: ../../enterprise/include/functions_reporting_csv.php:393 +#: ../../enterprise/include/functions_reporting_csv.php:415 +#: ../../enterprise/include/functions_reporting_csv.php:446 +#: ../../enterprise/include/functions_reporting_csv.php:648 +#: ../../enterprise/include/functions_reporting_csv.php:662 +#: ../../enterprise/include/functions_reporting_csv.php:676 +#: ../../enterprise/include/functions_reporting_csv.php:696 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:756 +#: ../../enterprise/include/functions_reporting_csv.php:788 +#: ../../enterprise/include/functions_reporting_csv.php:825 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:945 +#: ../../enterprise/include/functions_reporting_csv.php:972 +#: ../../enterprise/include/functions_reporting_csv.php:1003 +#: ../../enterprise/include/functions_reporting_csv.php:1058 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1162 +#: ../../enterprise/include/functions_reporting_csv.php:1217 +#: ../../enterprise/include/functions_reporting_csv.php:1246 +#: ../../enterprise/include/functions_reporting_csv.php:1283 +#: ../../enterprise/include/functions_reporting_csv.php:1409 +#: ../../enterprise/include/functions_reporting_csv.php:1525 +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1725 +#: ../../enterprise/include/functions_reporting_csv.php:1793 +#: ../../enterprise/include/functions_reporting_csv.php:1941 +#: ../../enterprise/include/functions_reporting_csv.php:1967 +#: ../../enterprise/include/functions_reporting_csv.php:2053 +#: ../../enterprise/include/functions_reporting_csv.php:2084 +#: ../../enterprise/include/functions_reporting_csv.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2152 +#: ../../enterprise/include/functions_reporting_csv.php:2174 +#: ../../enterprise/include/functions_reporting_csv.php:2215 +#: ../../enterprise/include/functions_reporting_csv.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:2302 +#: ../../godmode/setup/setup_integria.php:256 +#: ../../godmode/setup/setup_integria.php:379 +#: ../../include/lib/Dashboard/Widget.php:497 +#: ../../operation/agentes/estado_generalagente.php:584 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:194 +msgid "Title" +msgstr "Title" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:43 +msgid "Capture regexp" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:63 +#: ../../enterprise/include/functions_reporting_pdf.php:483 +#: ../../enterprise/include/functions_reporting_pdf.php:539 +#: ../../include/functions_reporting_html.php:2778 +#: ../../include/functions_reporting_html.php:2832 +msgid "Average" +msgstr "Average" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:153 +msgid "Empty ip or port" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:170 +msgid "Curl Error: " +msgstr "" + +#: ../../enterprise/include/process_reset_pass.php:47 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:130 +#: ../../general/login_page.php:133 ../../general/login_page.php:149 +msgid "Docs" +msgstr "Docs" + +#: ../../enterprise/include/process_reset_pass.php:150 +#: ../../enterprise/include/process_reset_pass.php:153 +#: ../../enterprise/include/reset_pass.php:130 +#: ../../enterprise/include/reset_pass.php:133 +#: ../../include/functions_config.php:2123 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "" + +#: ../../enterprise/include/functions_log.php:268 +msgid "Lines" +msgstr "Lines" + +#: ../../enterprise/include/functions_inventory.php:66 +#: ../../enterprise/include/functions_inventory.php:698 +msgid "No changes found" +msgstr "No changes found" + +#: ../../enterprise/include/functions_inventory.php:92 +msgid "Get CSV file" +msgstr "Get CSV file" + +#: ../../enterprise/include/functions_inventory.php:715 +#: ../../enterprise/include/functions_inventory.php:778 +#: ../../include/functions_reporting_html.php:1400 +msgid "Added" +msgstr "Added" + +#: ../../enterprise/include/functions_inventory.php:721 +#: ../../enterprise/include/functions_inventory.php:786 +#: ../../include/functions_reporting_html.php:1411 +#: ../../include/functions_filemanager.php:369 +msgid "Deleted" +msgstr "Deleted" + +#: ../../enterprise/include/functions_transactional.php:588 +msgid "Error in dependencies field" +msgstr "Error in dependencies field" + +#: ../../enterprise/include/functions_transactional.php:597 +msgid "Error in enables field" +msgstr "Error when enabling the field" + +#: ../../enterprise/include/functions_collection.php:47 +#, php-format +msgid "Fail create the directory: %s" +msgstr "Error creating the directory: %s" + +#: ../../enterprise/include/functions_collection.php:73 +msgid "No files in collection" +msgstr "No files in collection" + +#: ../../enterprise/include/functions_collection.php:81 +msgid "File of collection is bigger than the limit (" +msgstr "Collection file is larger than the limit (" + +#: ../../enterprise/include/functions_ui.php:79 +msgid "Select inventory module" +msgstr "Select inventory module" + +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:65 +#: ../../include/class/Diagnostics.class.php:2121 +#: ../../include/class/Diagnostics.class.php:2239 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:467 +#: ../../enterprise/include/functions_reporting_pdf.php:499 +#: ../../enterprise/include/functions_reporting_pdf.php:525 +#: ../../enterprise/include/functions_reporting_pdf.php:550 +#: ../../enterprise/include/functions_reporting_pdf.php:553 +#: ../../enterprise/include/functions_reporting_pdf.php:560 +#: ../../enterprise/include/functions_reporting_csv.php:1091 +#: ../../include/functions_reporting_html.php:2762 +#: ../../include/functions_reporting_html.php:2790 +#: ../../include/functions_reporting_html.php:2818 +#: ../../include/functions_reporting_html.php:2839 +#: ../../include/functions_reporting_html.php:2842 +#: ../../include/functions_reporting_html.php:2847 +#: ../../include/functions_reporting.php:4984 +#: ../../include/functions_reporting.php:5007 +#: ../../include/functions_reporting.php:5011 +#: ../../include/functions_reporting.php:5015 +#: ../../include/functions_reporting.php:5019 +msgid "Maximun" +msgstr "Maximum" + +#: ../../enterprise/include/functions_reporting_pdf.php:475 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +#: ../../include/functions_reporting_html.php:2770 +#: ../../include/functions_reporting_html.php:2825 +msgid "Minimun" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:524 +#: ../../enterprise/include/functions_reporting_pdf.php:531 +#: ../../enterprise/include/functions_reporting_pdf.php:538 +#: ../../enterprise/include/functions_reporting_pdf.php:552 +#: ../../enterprise/include/functions_reporting_pdf.php:557 +#: ../../enterprise/include/functions_reporting_csv.php:1036 +#: ../../enterprise/include/functions_reporting_csv.php:1091 +#: ../../enterprise/include/functions_reporting_csv.php:1195 +#: ../../include/functions_reporting_html.php:2817 +#: ../../include/functions_reporting_html.php:2824 +#: ../../include/functions_reporting_html.php:2831 +#: ../../include/functions_reporting_html.php:2841 +#: ../../include/functions_reporting_html.php:2846 +#: ../../include/functions_reporting.php:5002 +msgid "Lapse" +msgstr "Lapse" + +#: ../../enterprise/include/functions_reporting_pdf.php:841 +#: ../../include/functions_reporting_html.php:1617 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "%s in %s : NORMAL" + +#: ../../enterprise/include/functions_reporting_pdf.php:858 +#: ../../include/functions_reporting_html.php:1634 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "%s in %s : CRITICAL" + +#: ../../enterprise/include/functions_reporting_pdf.php:875 +#: ../../include/functions_reporting_html.php:1651 +#, php-format +msgid "%s in %s : WARNING" +msgstr "%s in %s: WARNING" + +#: ../../enterprise/include/functions_reporting_pdf.php:892 +#: ../../include/functions_reporting_html.php:1668 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s in %s: UNKNOWN" + +#: ../../enterprise/include/functions_reporting_pdf.php:909 +#: ../../include/functions_reporting_html.php:1704 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s in %s: not initialized" + +#: ../../enterprise/include/functions_reporting_pdf.php:926 +#: ../../include/functions_reporting_html.php:1687 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s in %s: ALERTS TRIGGERED" + +#: ../../enterprise/include/functions_reporting_pdf.php:1507 +#: ../../enterprise/include/functions_reporting_csv.php:2006 +#: ../../enterprise/include/functions_reporting_csv.php:2010 +#: ../../include/functions_reporting_html.php:120 +msgid "Generated" +msgstr "Generated" + +#: ../../enterprise/include/functions_reporting_pdf.php:1511 +#: ../../include/functions_reporting_html.php:123 +msgid "Report date" +msgstr "Report date" + +#: ../../enterprise/include/functions_reporting_pdf.php:1530 +#: ../../include/functions_reporting_html.php:128 +#: ../../operation/reporting/reporting_viewer.php:215 +msgid "Items period before" +msgstr "Items period before" + +#: ../../enterprise/include/functions_reporting_pdf.php:1560 +msgid "Contents" +msgstr "Contents" + +#: ../../enterprise/include/functions_reporting_pdf.php:1704 +#: ../../enterprise/include/functions_reporting_csv.php:807 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../godmode/agentes/planned_downtime.list.php:148 +#: ../../include/functions_reporting_html.php:2911 +#: ../../include/functions_snmp.php:423 ../../include/functions_snmp.php:431 +#: ../../include/rest-api/index.php:320 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:459 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:519 +#: ../../operation/agentes/gis_view.php:218 +msgid "To" +msgstr "To" + +#: ../../enterprise/include/functions_reporting_pdf.php:1708 +#: ../../include/functions_reporting_html.php:75 +#: ../../include/functions_reporting_html.php:4507 +#: ../../include/functions_treeview.php:323 +msgid "Last data" +msgstr "Last data" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "Critical:" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "Warning:" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "OK:" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "None of the services was added" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "%d services could not be added" + +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1571 +#: ../../enterprise/include/class/AgentRepository.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:1033 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:813 +#: ../../include/ajax/snmp_browser.ajax.php:220 +#: ../../include/functions_ui.php:287 +#: ../../include/class/ConfigPEN.class.php:731 +#: ../../include/class/HelpFeedBack.class.php:358 +#: ../../include/class/Diagnostics.class.php:2078 +#: ../../include/class/CredentialStore.class.php:1058 +#: ../../include/class/ModuleTemplates.class.php:1312 +#: ../../include/class/AgentWizard.class.php:680 +#: ../../operation/visual_console/view.php:590 +msgid "Success" +msgstr "Success" + +#: ../../enterprise/include/functions_visual_map.php:680 +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:683 +msgid "No services selected" +msgstr "No services selected" + +#: ../../enterprise/include/functions_backup.php:197 +msgid "No description" +msgstr "No description" + +#: ../../enterprise/include/functions_backup.php:323 +msgid "Restoring a backup" +msgstr "Restoring a backup" + +#: ../../enterprise/include/functions_backup.php:325 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "" + +#: ../../enterprise/include/functions_backup.php:326 +msgid "" +"It's a complex operation that needs human intervation to avoid system " +"failures and data loosing" +msgstr "" +"This is a complex operation that requires human intervention to avoid system " +"failures and data loss." + +#: ../../enterprise/include/functions_backup.php:327 +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:333 +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:337 +msgid "Connect to MySQL database using the following command" +msgstr "Please connect to MySQL database using the following command" + +#: ../../enterprise/include/functions_backup.php:344 +msgid "Create a new database" +msgstr "Create a new database" + +#: ../../enterprise/include/functions_backup.php:361 +msgid "Restore the backup" +msgstr "Restore the backup" + +#: ../../enterprise/include/functions_backup.php:369 +msgid "Modify console configuration to use this new database" +msgstr "Please modify the console configuration to use this new database." + +#: ../../enterprise/include/functions_backup.php:370 +msgid "Open configuration file" +msgstr "Open configuration file" + +#: ../../enterprise/include/functions_backup.php:374 +#: ../../enterprise/include/functions_backup.php:386 +msgid "Find" +msgstr "Find" + +#: ../../enterprise/include/functions_backup.php:376 +#: ../../enterprise/include/functions_backup.php:389 +msgid "and replace with" +msgstr "and replace it with" + +#: ../../enterprise/include/functions_backup.php:383 +msgid "Modify servers configuration to use this new database" +msgstr "Modify server configuration to use this new database." + +#: ../../enterprise/include/functions_backup.php:384 +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:396 +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:539 +#: ../../enterprise/include/functions_backup.php:540 +#: ../../godmode/agentes/planned_downtime.editor.php:56 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/category/category.php:57 ../../include/functions_html.php:1224 +#: ../../include/functions_html.php:1225 ../../include/functions_html.php:1329 +#: ../../include/functions_html.php:1330 ../../include/functions_html.php:1509 +#: ../../include/functions_html.php:1510 +#: ../../operation/snmpconsole/snmp_statistics.php:48 +#: ../../operation/snmpconsole/snmp_view.php:81 +#: ../../operation/events/events.php:792 +msgid "List" +msgstr "List" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "" + +#: ../../enterprise/include/functions_alert_event.php:1133 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:841 +msgid "Module alert" +msgstr "Module alert" + +#: ../../enterprise/include/functions_setup.php:53 +#: ../../enterprise/include/functions_setup.php:96 +msgid "Log collector" +msgstr "Log collector" + +#: ../../enterprise/include/functions_setup.php:122 +msgid "Metaconsole link status" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:154 +msgid "DB connection" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:176 +msgid "This console is joining a metaconsole." +msgstr "" + +#: ../../enterprise/include/functions_setup.php:184 +msgid "This console is not joining any metaconsole." +msgstr "" + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:235 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:228 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:174 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:521 +#: ../../include/functions_filemanager.php:654 +msgid "Image" +msgstr "Image" + +#: ../../enterprise/include/functions_reporting_csv.php:388 +msgid "Event report agent" +msgstr "Event report agent" + +#: ../../enterprise/include/functions_reporting_csv.php:390 +msgid "Event report group" +msgstr "Group event report" + +#: ../../enterprise/include/functions_reporting_csv.php:414 +msgid "Event report module" +msgstr "Event report module" + +#: ../../enterprise/include/functions_reporting_csv.php:445 +#: ../../enterprise/include/functions_reporting.php:1076 +#: ../../include/functions_reports.php:799 +#: ../../include/functions_reporting.php:6282 +#: ../../include/functions_reporting.php:6597 +msgid "Availability" +msgstr "Availability" + +#: ../../enterprise/include/functions_reporting_csv.php:489 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "% OK" +msgstr "% OK" + +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../include/functions_reporting_html.php:559 +msgid "Checks Failed" +msgstr "Failed checks" + +#: ../../enterprise/include/functions_reporting_csv.php:615 +msgid "Maximum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:619 +#: ../../include/functions_reporting_html.php:3333 +msgid "Agent min value" +msgstr "Agent min value" + +#: ../../enterprise/include/functions_reporting_csv.php:620 +msgid "Minimum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:623 +msgid "Average value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:647 +#: ../../include/functions_reporting.php:2151 +msgid "Inventory Changes" +msgstr "Inventory changes" + +#: ../../enterprise/include/functions_reporting_csv.php:675 +#: ../../include/functions_reports.php:710 +msgid "Prediction date" +msgstr "Prediction date" + +#: ../../enterprise/include/functions_reporting_csv.php:695 +#: ../../include/functions_reporting.php:4620 +msgid "Projection Graph" +msgstr "Projection Graph" + +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Serialized data " +msgstr "Serialized data " + +#: ../../enterprise/include/functions_reporting_csv.php:787 +#: ../../include/functions_reporting.php:1401 +#: ../../operation/snmpconsole/snmp_statistics.php:131 +#: ../../operation/snmpconsole/snmp_statistics.php:199 +#, php-format +msgid "Top %d" +msgstr "Top %d" + +#: ../../enterprise/include/functions_reporting_csv.php:824 +#: ../../include/functions_reporting.php:2865 +msgid "Group Report" +msgstr "Group Report" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:231 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:853 +#: ../../mobile/operation/groups.php:137 +#: ../../include/functions_reporting_html.php:4583 +#: ../../include/class/Diagnostics.class.php:540 +#: ../../include/functions_reporting.php:9226 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:607 +#: ../../operation/tree.php:355 +msgid "Total agents" +msgstr "Total amount of agents" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Uknown agents" +msgstr "Unknown agents" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:232 +#: ../../godmode/groups/group_list.php:854 +#: ../../godmode/module_library/module_library_view.php:141 +#: ../../include/class/Diagnostics.class.php:544 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:608 +#: ../../operation/tree.php:356 +msgid "Total modules" +msgstr "Total modules" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../include/functions_reporting.php:9080 +msgid "Defined alerts" +msgstr "Defined alerts" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:236 +#: ../../enterprise/operation/services/services.treeview_services.php:237 +#: ../../enterprise/operation/services/services.treeview_services.php:238 +#: ../../godmode/groups/group_list.php:858 +#: ../../godmode/groups/group_list.php:859 +#: ../../godmode/groups/group_list.php:860 +#: ../../include/functions_graph.php:2468 +#: ../../include/functions_reporting.php:9094 +#: ../../include/functions_reporting.php:9110 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:612 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:614 +#: ../../operation/tree.php:360 ../../operation/tree.php:361 +#: ../../operation/tree.php:362 +msgid "Fired alerts" +msgstr "Triggered alerts" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Last 8 hours events" +msgstr "Events from the last 8 hours" + +#: ../../enterprise/include/functions_reporting_csv.php:841 +#: ../../include/functions_reports.php:758 +#: ../../include/functions_reports.php:764 +msgid "Group report" +msgstr "Group report" + +#: ../../enterprise/include/functions_reporting_csv.php:916 +msgid "Illegal query or any other error" +msgstr "Illegal query or any other error" + +#: ../../enterprise/include/functions_reporting_csv.php:938 +#: ../../include/functions_reports.php:653 +msgid "SQL vertical bar graph" +msgstr "SQL vertical bar graph" + +#: ../../enterprise/include/functions_reporting_csv.php:940 +msgid "SQL horizontal bar graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../include/functions_reports.php:657 +msgid "SQL pie graph" +msgstr "SQL pie graph" + +#: ../../enterprise/include/functions_reporting_csv.php:971 +#: ../../enterprise/include/functions_reporting_csv.php:989 +#: ../../enterprise/include/functions_reporting_csv.php:991 +#: ../../include/functions_reports.php:739 +#: ../../include/functions_reporting.php:4858 +#: ../../include/functions_reporting.php:7592 +msgid "Summatory" +msgstr "Summation" + +#: ../../enterprise/include/functions_reporting_csv.php:1021 +#: ../../enterprise/include/functions_reporting_csv.php:1023 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1031 +msgid "Minimum Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1036 +#: ../../include/functions_reporting.php:7596 +msgid "Minimum" +msgstr "Minimum" + +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/functions_reporting_csv.php:1078 +#: ../../enterprise/include/functions_reporting_csv.php:1084 +#: ../../enterprise/include/functions_reporting_csv.php:1086 +msgid "Maximun Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1112 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1130 +#: ../../enterprise/include/functions_reporting_csv.php:1141 +#: ../../include/functions_reporting_html.php:2914 +#: ../../include/functions_reports.php:747 +#: ../../include/functions_reporting.php:7217 +msgid "Increment" +msgstr "Increment" + +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../include/functions_reporting_html.php:2912 +msgid "From data" +msgstr "From data" + +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../include/functions_reporting_html.php:2913 +msgid "To data" +msgstr "To data" + +#: ../../enterprise/include/functions_reporting_csv.php:1132 +#: ../../enterprise/include/functions_reporting_csv.php:1143 +#: ../../include/functions_reporting_html.php:2941 +msgid "Negative increase: " +msgstr "Negative increase: " + +#: ../../enterprise/include/functions_reporting_csv.php:1134 +#: ../../enterprise/include/functions_reporting_csv.php:1145 +#: ../../include/functions_reporting_html.php:2943 +msgid "Positive increase: " +msgstr "Positive increase: " + +#: ../../enterprise/include/functions_reporting_csv.php:1136 +#: ../../enterprise/include/functions_reporting_csv.php:1147 +#: ../../include/functions_reporting_html.php:2945 +msgid "Neutral increase: " +msgstr "Neutral increase: " + +#: ../../enterprise/include/functions_reporting_csv.php:1161 +#: ../../enterprise/include/functions_reporting_csv.php:1180 +#: ../../enterprise/include/functions_reporting_csv.php:1182 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../enterprise/include/functions_reporting_csv.php:1190 +#: ../../include/functions_reporting.php:4854 +msgid "AVG. Value" +msgstr "AVG. Value" + +#: ../../enterprise/include/functions_reporting_csv.php:1195 +msgid "AVG" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1216 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1236 +#: ../../include/functions_reporting.php:4342 +msgid "Monitor Report" +msgstr "Monitor Report" + +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "% Wrong" +msgstr "% Wrong" + +#: ../../enterprise/include/functions_reporting_csv.php:1245 +msgid "Simple Graph" +msgstr "Simple Graph" + +#: ../../enterprise/include/functions_reporting_csv.php:1305 +#: ../../enterprise/include/functions_reporting_csv.php:1351 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1543 +#: ../../enterprise/include/functions_reporting_csv.php:1811 +msgid "SLA Max" +msgstr "SLA Max" + +#: ../../enterprise/include/functions_reporting_csv.php:1306 +#: ../../enterprise/include/functions_reporting_csv.php:1352 +#: ../../enterprise/include/functions_reporting_csv.php:1425 +#: ../../enterprise/include/functions_reporting_csv.php:1544 +#: ../../enterprise/include/functions_reporting_csv.php:1812 +msgid "SLA Min" +msgstr "SLA Min" + +#: ../../enterprise/include/functions_reporting_csv.php:1307 +#: ../../enterprise/include/functions_reporting_csv.php:1353 +#: ../../enterprise/include/functions_reporting_csv.php:1426 +#: ../../enterprise/include/functions_reporting_csv.php:1545 +#: ../../enterprise/include/functions_reporting_csv.php:1813 +#: ../../enterprise/include/functions_reporting.php:1678 +#: ../../enterprise/include/functions_reporting.php:2578 +#: ../../enterprise/include/functions_reporting.php:3570 +#: ../../enterprise/include/functions_reporting.php:5359 +#: ../../include/functions_reporting_html.php:495 +msgid "SLA Limit" +msgstr "SLA Limit" + +#: ../../enterprise/include/functions_reporting_csv.php:1308 +#: ../../enterprise/include/functions_reporting_csv.php:1354 +msgid "Time Total " +msgstr "Time Total " + +#: ../../enterprise/include/functions_reporting_csv.php:1309 +#: ../../enterprise/include/functions_reporting_csv.php:1355 +msgid "Time OK " +msgstr "Time OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1310 +#: ../../enterprise/include/functions_reporting_csv.php:1356 +msgid "Time Error " +msgstr "Time Error " + +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1357 +msgid "Time Unknown " +msgstr "Time Unknown " + +#: ../../enterprise/include/functions_reporting_csv.php:1312 +#: ../../enterprise/include/functions_reporting_csv.php:1358 +msgid "Time Not Init " +msgstr "Time Not Init " + +#: ../../enterprise/include/functions_reporting_csv.php:1313 +#: ../../enterprise/include/functions_reporting_csv.php:1359 +msgid "Time Downtime " +msgstr "Time Downtime " + +#: ../../enterprise/include/functions_reporting_csv.php:1314 +#: ../../enterprise/include/functions_reporting_csv.php:1360 +msgid "Checks Total " +msgstr "Checks Total " + +#: ../../enterprise/include/functions_reporting_csv.php:1315 +#: ../../enterprise/include/functions_reporting_csv.php:1361 +msgid "Checks OK " +msgstr "Checks OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1362 +msgid "Checks Error " +msgstr "Checks Error " + +#: ../../enterprise/include/functions_reporting_csv.php:1317 +#: ../../enterprise/include/functions_reporting_csv.php:1363 +msgid "Checks Unknown " +msgstr "Checks Unknown " + +#: ../../enterprise/include/functions_reporting_csv.php:1318 +#: ../../enterprise/include/functions_reporting_csv.php:1364 +msgid "Checks Not Init " +msgstr "Checks Not Init " + +#: ../../enterprise/include/functions_reporting_csv.php:1319 +#: ../../enterprise/include/functions_reporting_csv.php:1365 +msgid "SLA " +msgstr "SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1366 +msgid "Status " +msgstr "Status " + +#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../enterprise/include/functions_reporting_csv.php:1388 +#: ../../enterprise/include/functions_reporting_csv.php:1706 +#: ../../enterprise/include/functions_reporting.php:1698 +#: ../../enterprise/include/functions_reporting.php:1739 +#: ../../enterprise/include/functions_reporting.php:2603 +#: ../../enterprise/include/functions_reporting.php:2662 +#: ../../enterprise/include/functions_reporting.php:3596 +#: ../../enterprise/include/functions_reporting.php:3655 +#: ../../enterprise/include/functions_reporting.php:5383 +#: ../../include/functions_reporting_html.php:602 +#: ../../include/functions_config.php:1172 +#: ../../include/functions_config.php:2843 +msgid "Fail" +msgstr "Fail" + +#: ../../enterprise/include/functions_reporting_csv.php:1412 +#: ../../enterprise/include/functions_reporting_csv.php:1528 +#: ../../enterprise/include/functions_reporting_csv.php:1728 +#: ../../enterprise/include/functions_reporting_csv.php:1796 +msgid "Subtitle" +msgstr "Subtitle" + +#: ../../enterprise/include/functions_reporting_csv.php:1427 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +#: ../../enterprise/include/functions_reporting_csv.php:1827 +msgid "Time Total Month" +msgstr "Time Total Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1428 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +#: ../../enterprise/include/functions_reporting_csv.php:1828 +msgid "Time OK Month" +msgstr "Time OK Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_reporting_csv.php:1829 +msgid "Time Error Month" +msgstr "Time Error Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1430 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1830 +msgid "Time Unknown Month" +msgstr "Time Unknown Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1431 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1831 +msgid "Time Downtime Month" +msgstr "Time Downtime Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1432 +#: ../../enterprise/include/functions_reporting_csv.php:1564 +#: ../../enterprise/include/functions_reporting_csv.php:1832 +msgid "Time Not Init Month" +msgstr "Time Not Init Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1565 +#: ../../enterprise/include/functions_reporting_csv.php:1833 +msgid "Checks Total Month" +msgstr "Checks Total Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1434 +#: ../../enterprise/include/functions_reporting_csv.php:1566 +#: ../../enterprise/include/functions_reporting_csv.php:1834 +msgid "Checks OK Month" +msgstr "Checks OK Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1435 +#: ../../enterprise/include/functions_reporting_csv.php:1567 +#: ../../enterprise/include/functions_reporting_csv.php:1835 +msgid "Checks Error Month" +msgstr "Checks Error Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1436 +#: ../../enterprise/include/functions_reporting_csv.php:1568 +#: ../../enterprise/include/functions_reporting_csv.php:1836 +msgid "Checks Unknown Month" +msgstr "Checks Unknown Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1437 +#: ../../enterprise/include/functions_reporting_csv.php:1569 +#: ../../enterprise/include/functions_reporting_csv.php:1837 +msgid "Checks Not Init Month" +msgstr "Checks Not Init Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1438 +#: ../../enterprise/include/functions_reporting_csv.php:1570 +#: ../../enterprise/include/functions_reporting_csv.php:1838 +msgid "SLA Month" +msgstr "SLA Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1439 +#: ../../enterprise/include/functions_reporting_csv.php:1571 +#: ../../enterprise/include/functions_reporting_csv.php:1839 +msgid "Status Month" +msgstr "Status Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1461 +#: ../../enterprise/include/functions_reporting.php:1847 +msgid "Day" +msgstr "Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1462 +#: ../../enterprise/include/functions_reporting_csv.php:1617 +msgid "Time Total Day" +msgstr "Time Total Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1463 +#: ../../enterprise/include/functions_reporting_csv.php:1618 +msgid "Time OK Day" +msgstr "Time OK Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1464 +#: ../../enterprise/include/functions_reporting_csv.php:1619 +msgid "Time Error Day" +msgstr "Time Error Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1465 +#: ../../enterprise/include/functions_reporting_csv.php:1620 +msgid "Time Unknown Day" +msgstr "Time Unknown Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1466 +#: ../../enterprise/include/functions_reporting_csv.php:1621 +msgid "Time Not Init Day" +msgstr "Time Not Init Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1467 +#: ../../enterprise/include/functions_reporting_csv.php:1622 +msgid "Time Downtime Day" +msgstr "Time Downtime Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1468 +#: ../../enterprise/include/functions_reporting_csv.php:1623 +msgid "Time Out Day" +msgstr "Time Out Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1469 +#: ../../enterprise/include/functions_reporting_csv.php:1624 +msgid "Checks Total Day" +msgstr "Checks Total Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1470 +#: ../../enterprise/include/functions_reporting_csv.php:1625 +msgid "Checks OK Day" +msgstr "Checks OK Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1471 +#: ../../enterprise/include/functions_reporting_csv.php:1626 +msgid "Checks Error Day" +msgstr "Checks Error Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1472 +#: ../../enterprise/include/functions_reporting_csv.php:1627 +msgid "Checks Unknown Day" +msgstr "Checks Unknown Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1473 +#: ../../enterprise/include/functions_reporting_csv.php:1628 +msgid "Checks Not Init Day" +msgstr "Checks Not Init Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1474 +#: ../../enterprise/include/functions_reporting_csv.php:1629 +msgid "SLA Day" +msgstr "SLA Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1630 +msgid "SLA Fixed Day" +msgstr "SLA Fixed Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1476 +#: ../../enterprise/include/functions_reporting_csv.php:1631 +msgid "Date From Day" +msgstr "Date From Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1477 +#: ../../enterprise/include/functions_reporting_csv.php:1632 +msgid "Date To Day" +msgstr "Date To Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1478 +#: ../../enterprise/include/functions_reporting_csv.php:1633 +msgid "Status Day" +msgstr "Status Day" + +#: ../../enterprise/include/functions_reporting_csv.php:1538 +#: ../../enterprise/include/functions_reporting_csv.php:1806 +#: ../../include/functions_html.php:1597 +msgid "Month" +msgstr "Month" + +#: ../../enterprise/include/functions_reporting_csv.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:1807 +msgid "Month Number" +msgstr "Month Number" + +#: ../../enterprise/include/functions_reporting_csv.php:1540 +#: ../../enterprise/include/functions_reporting_csv.php:1808 +msgid "Year" +msgstr "Year" + +#: ../../enterprise/include/functions_reporting_csv.php:1590 +msgid "Time Total week" +msgstr "Time Total week" + +#: ../../enterprise/include/functions_reporting_csv.php:1591 +msgid "Time OK week" +msgstr "Time OK week" + +#: ../../enterprise/include/functions_reporting_csv.php:1592 +msgid "Time Error week" +msgstr "Time Error week" + +#: ../../enterprise/include/functions_reporting_csv.php:1593 +msgid "Time Unknown week" +msgstr "Time Unknown week" + +#: ../../enterprise/include/functions_reporting_csv.php:1594 +msgid "Time Downtime week" +msgstr "Time Downtime week" + +#: ../../enterprise/include/functions_reporting_csv.php:1595 +msgid "Time Not Init week" +msgstr "Time Not Init week" + +#: ../../enterprise/include/functions_reporting_csv.php:1596 +msgid "Checks Total week" +msgstr "Checks Total week" + +#: ../../enterprise/include/functions_reporting_csv.php:1597 +msgid "Checks OK week" +msgstr "Checks OK week" + +#: ../../enterprise/include/functions_reporting_csv.php:1598 +msgid "Checks Error week" +msgstr "Checks Error week" + +#: ../../enterprise/include/functions_reporting_csv.php:1599 +msgid "Checks Unknown week" +msgstr "Checks Unknown week" + +#: ../../enterprise/include/functions_reporting_csv.php:1600 +msgid "Status week" +msgstr "Status week" + +#: ../../enterprise/include/functions_reporting_csv.php:1616 +msgid "Day Week" +msgstr "Day Week" + +#: ../../enterprise/include/functions_reporting_csv.php:1668 +msgid "S.L.A. Services" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1686 +msgid "Lost sercice " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1687 +msgid "Service " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1688 +msgid "Limit " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1689 +msgid "SLA Compilance " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1690 +msgid "Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1691 +msgid "Ok " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1692 +msgid "Fail " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1693 +msgid "Result " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1738 +msgid "SLA max" +msgstr "SLA max" + +#: ../../enterprise/include/functions_reporting_csv.php:1739 +msgid "SLA min" +msgstr "SLA min" + +#: ../../enterprise/include/functions_reporting_csv.php:1740 +msgid "SLA limit" +msgstr "SLA limit" + +#: ../../enterprise/include/functions_reporting_csv.php:1741 +#: ../../include/functions_reporting_html.php:527 +msgid "Time Total" +msgstr "Total time" + +#: ../../enterprise/include/functions_reporting_csv.php:1742 +#: ../../include/functions_reporting_html.php:529 +#: ../../include/functions_reporting_html.php:3053 +msgid "Time OK" +msgstr "Time in OK status" + +#: ../../enterprise/include/functions_reporting_csv.php:1743 +msgid "Time Error" +msgstr "Time Error" + +#: ../../enterprise/include/functions_reporting_csv.php:1744 +#: ../../include/functions_reporting_html.php:530 +#: ../../include/functions_reporting_html.php:3059 +msgid "Time Unknown" +msgstr "Time in unknown status" + +#: ../../enterprise/include/functions_reporting_csv.php:1745 +#: ../../include/functions_reporting_html.php:531 +msgid "Time Not Init" +msgstr "Time in not initialized status" + +#: ../../enterprise/include/functions_reporting_csv.php:1746 +#: ../../include/functions_reporting_html.php:3071 +msgid "Time Downtime" +msgstr "Time of downtime" + +#: ../../enterprise/include/functions_reporting_csv.php:1747 +#: ../../include/functions_reporting_html.php:558 +msgid "Checks Total" +msgstr "Total number of checks" + +#: ../../enterprise/include/functions_reporting_csv.php:1748 +#: ../../include/functions_reporting_html.php:560 +#: ../../include/functions_reporting_html.php:3138 +msgid "Checks OK" +msgstr "Checks in OK status" + +#: ../../enterprise/include/functions_reporting_csv.php:1749 +msgid "Checks Error" +msgstr "Checks Error" + +#: ../../enterprise/include/functions_reporting_csv.php:1750 +#: ../../include/functions_reporting_html.php:561 +msgid "Checks Unknown" +msgstr "Checks in unknown status" + +#: ../../enterprise/include/functions_reporting_csv.php:1751 +msgid "Checks Not Init" +msgstr "Checks Not Init" + +#: ../../enterprise/include/functions_reporting_csv.php:1752 +#: ../../enterprise/operation/services/services.service.php:175 +#: ../../enterprise/operation/services/services.list.php:434 +#: ../../include/functions_reports.php:683 +#: ../../include/functions_reports.php:688 +#: ../../include/functions_reports.php:692 +#: ../../include/functions_reports.php:696 +#: ../../include/functions_reports.php:702 +msgid "SLA" +msgstr "SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1753 +msgid "SLA Fixed" +msgstr "SLA Fixed" + +#: ../../enterprise/include/functions_reporting_csv.php:1858 +msgid "Time Total day" +msgstr "Time Total day" + +#: ../../enterprise/include/functions_reporting_csv.php:1859 +msgid "Time OK day" +msgstr "Time OK day" + +#: ../../enterprise/include/functions_reporting_csv.php:1860 +msgid "Time Error day" +msgstr "Time Error day" + +#: ../../enterprise/include/functions_reporting_csv.php:1861 +msgid "Time Unknown day" +msgstr "Time Unknown day" + +#: ../../enterprise/include/functions_reporting_csv.php:1862 +msgid "Time Downtime day" +msgstr "Time Downtime day" + +#: ../../enterprise/include/functions_reporting_csv.php:1863 +msgid "Time Not Init day" +msgstr "Time Not Init day" + +#: ../../enterprise/include/functions_reporting_csv.php:1864 +msgid "Checks Total day" +msgstr "Checks Total day" + +#: ../../enterprise/include/functions_reporting_csv.php:1865 +msgid "Checks OK day" +msgstr "Checks OK day" + +#: ../../enterprise/include/functions_reporting_csv.php:1866 +msgid "Checks Error day" +msgstr "Checks Error day" + +#: ../../enterprise/include/functions_reporting_csv.php:1867 +msgid "Checks Unknown day" +msgstr "Checks Unknown day" + +#: ../../enterprise/include/functions_reporting_csv.php:1868 +msgid "Status day" +msgstr "Status day" + +#: ../../enterprise/include/functions_reporting_csv.php:1884 +#: ../../enterprise/include/functions_events.php:230 +msgid "Hours" +msgstr "Hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1885 +msgid "Time Total hours" +msgstr "Time Total hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1886 +msgid "Time OK hours" +msgstr "Time OK hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1887 +msgid "Time Error hours" +msgstr "Time Error hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1888 +msgid "Time Unknown hours" +msgstr "Time Unknown hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1889 +msgid "Time Not Init hours" +msgstr "Time Not Init hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1890 +msgid "Time Downtime hours" +msgstr "Time Downtime hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1891 +msgid "Time Out hours" +msgstr "Time Out hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1892 +msgid "Checks Total hours" +msgstr "Checks Total hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1893 +msgid "Checks OK hours" +msgstr "Checks OK hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1894 +msgid "Checks Error hours" +msgstr "Checks Error hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1895 +msgid "Checks Unknown hours" +msgstr "Checks Unknown hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1896 +msgid "Checks Not Init hours" +msgstr "Checks Not Init hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1897 +msgid "SLA hours" +msgstr "SLA hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1898 +msgid "SLA Fixed hours" +msgstr "SLA Fixed hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1899 +msgid "Date From hours" +msgstr "Date From hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1900 +msgid "Date To hours" +msgstr "Date To hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1901 +msgid "Status hours" +msgstr "Status hours" + +#: ../../enterprise/include/functions_reporting_csv.php:1945 +#: ../../include/functions_netflow.php:1230 +msgid "Sent" +msgstr "Sent" + +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_config.php:895 +#: ../../include/functions_config.php:2767 +#: ../../operation/network/network_report.php:218 +#: ../../operation/network/network_report.php:250 +msgid "Bytes" +msgstr "Bytes" + +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_reporting_html.php:5115 +msgid "Packages" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../include/functions_netflow.php:1238 +msgid "Received" +msgstr "Received" + +#: ../../enterprise/include/functions_reporting_csv.php:2037 +#: ../../include/functions.php:231 +msgid "." +msgstr "." + +#: ../../enterprise/include/functions_reporting_csv.php:2052 +msgid "Simple Baseline Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2083 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:554 +msgid "Custom Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2207 +#: ../../include/functions_reporting.php:4081 +msgid "Alert Report Module" +msgstr "Alert Report Module" + +#: ../../enterprise/include/functions_reporting_csv.php:2209 +#: ../../include/functions_reporting.php:3923 +msgid "Alert Report Agent" +msgstr "Alert Report Agent" + +#: ../../enterprise/include/functions_reporting_csv.php:2211 +#: ../../include/functions_reporting.php:3734 +msgid "Alert Report Group" +msgstr "Group alert report" + +#: ../../enterprise/include/functions_reporting_csv.php:2229 +msgid "Actions Triggered" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2229 +msgid "Template Triggered" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2266 +msgid "Event Report Log" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2295 +#: ../../include/functions_reporting.php:4472 +msgid "Netflow Area" +msgstr "Netflow Area" + +#: ../../enterprise/include/functions_reporting_csv.php:2297 +#: ../../include/functions_reporting.php:4480 +msgid "Netflow Data" +msgstr "Netflow Data" + +#: ../../enterprise/include/functions_reporting_csv.php:2299 +#: ../../include/functions_reporting.php:4476 +msgid "Netflow Summary" +msgstr "Netflow Summary" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1747 +#: ../../godmode/servers/plugin.php:1033 +msgid "Deploy" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1744 +msgid "Cleanup" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "Register" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2982 +msgid "Update node" +msgstr "Update node" + +#: ../../enterprise/include/class/Azure.cloud.php:137 +#: ../../enterprise/include/class/Aws.cloud.php:92 +msgid "Cloud message" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:142 +#: ../../include/class/CredentialStore.class.php:871 +msgid "Azure" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:237 +msgid "Task details" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:238 +msgid "Instance explorer" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:239 +msgid "Metrics" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:296 +msgid "Microsoft Compute" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:344 +#: ../../enterprise/include/class/Aws.cloud.php:1375 +#, php-format +msgid "%s not found or not executable" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:572 +#: ../../enterprise/include/class/Azure.cloud.php:620 +msgid "Unauthorized access" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:734 +#: ../../enterprise/include/class/VMware.app.php:518 +#: ../../enterprise/include/class/SAP.app.php:459 +#: ../../enterprise/include/class/Aws.cloud.php:1086 +#: ../../enterprise/include/class/MySQL.app.php:441 +#: ../../enterprise/include/class/Oracle.app.php:439 +#: ../../godmode/wizards/HostDevices.class.php:834 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:423 +#: ../../include/class/CustomNetScan.class.php:445 +#: ../../operation/servers/recon_view.php:94 +msgid "Task name" +msgstr "Task name" + +#: ../../enterprise/include/class/Azure.cloud.php:796 +#: ../../enterprise/include/class/Aws.cloud.php:621 +#: ../../enterprise/include/class/Aws.cloud.php:1159 +msgid "No instances found." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:833 +msgid "Select target virtual machines" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:852 +#: ../../enterprise/include/class/Aws.cloud.php:550 +msgid "Scan and general monitoring." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:865 +#: ../../enterprise/include/class/Aws.cloud.php:567 +msgid "Cpu performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:873 +#: ../../enterprise/include/class/Aws.cloud.php:577 +msgid "IOPS performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:881 +#: ../../enterprise/include/class/Aws.cloud.php:587 +msgid "Disk performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:889 +#: ../../enterprise/include/class/Aws.cloud.php:597 +msgid "Network performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:914 +#: ../../enterprise/include/class/VMware.app.php:897 +#: ../../enterprise/include/class/SAP.app.php:844 +#: ../../enterprise/include/class/Aws.cloud.php:1473 +#: ../../enterprise/include/class/MySQL.app.php:942 +#: ../../enterprise/include/class/Oracle.app.php:971 +#: ../../godmode/wizards/HostDevices.class.php:1212 +#: ../../include/class/CustomNetScan.class.php:756 +msgid "Task configured." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:918 +#: ../../enterprise/include/class/VMware.app.php:901 +#: ../../enterprise/include/class/SAP.app.php:848 +#: ../../enterprise/include/class/MySQL.app.php:946 +#: ../../enterprise/include/class/Oracle.app.php:975 +#: ../../godmode/wizards/HostDevices.class.php:1216 +#: ../../include/class/CustomNetScan.class.php:760 +msgid "Wizard failed. Cannot configure task." +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:177 +msgid "Failed to connect" +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:229 +#, php-format +msgid "Unable to open public key file %s" +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:248 +msgid "Failed to login to target" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:206 +msgid "" +"This VMware configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:240 +#: ../../enterprise/include/class/SAP.app.php:186 +#: ../../enterprise/include/class/Aws.cloud.php:802 +#: ../../enterprise/include/class/MySQL.app.php:205 +#: ../../enterprise/include/class/Oracle.app.php:197 +#: ../../godmode/wizards/HostDevices.class.php:416 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:245 +#: ../../enterprise/include/class/SAP.app.php:191 +#: ../../enterprise/include/class/Aws.cloud.php:807 +#: ../../enterprise/include/class/MySQL.app.php:210 +#: ../../enterprise/include/class/Oracle.app.php:202 +#: ../../godmode/wizards/HostDevices.class.php:421 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:250 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:255 +#: ../../enterprise/include/class/SAP.app.php:201 +#: ../../enterprise/include/class/Aws.cloud.php:812 +#: ../../enterprise/include/class/MySQL.app.php:225 +#: ../../enterprise/include/class/Oracle.app.php:212 +#: ../../godmode/wizards/HostDevices.class.php:432 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:261 +msgid "Discovery.Application.VMware" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:326 +msgid "Failed to find discovery VMware task." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:341 +msgid "Threads must be equal or greater than 1." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:441 +#: ../../enterprise/include/class/SAP.app.php:315 +#: ../../enterprise/include/class/MySQL.app.php:402 +#: ../../enterprise/include/class/Oracle.app.php:388 +msgid "Application" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:491 +#: ../../enterprise/include/class/SAP.app.php:434 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:570 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1175 +#: ../../godmode/setup/setup_integria.php:558 +#: ../../godmode/wizards/HostDevices.class.php:768 +#: ../../include/class/CustomNetScan.class.php:551 +msgid "Update and continue" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:529 +#: ../../enterprise/include/class/SAP.app.php:472 +#: ../../enterprise/include/class/Aws.cloud.php:1098 +#: ../../enterprise/include/class/MySQL.app.php:453 +#: ../../enterprise/include/class/Oracle.app.php:451 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/class/CustomNetScan.class.php:479 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task " +"will never run" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:549 +msgid "Datacenter user" +msgstr "Datacenter user" + +#: ../../enterprise/include/class/VMware.app.php:561 +#: ../../enterprise/include/class/SAP.app.php:494 +#: ../../enterprise/include/class/Aws.cloud.php:1204 +#: ../../enterprise/include/class/MySQL.app.php:557 +#: ../../enterprise/include/class/Oracle.app.php:538 +#: ../../godmode/wizards/HostDevices.class.php:795 +#: ../../include/class/CustomNetScan.class.php:519 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "Manual interval means that it will run only on demand." + +#: ../../enterprise/include/class/VMware.app.php:568 +#: ../../enterprise/include/class/VMware.app.php:776 +#: ../../enterprise/include/class/SAP.app.php:501 +#: ../../enterprise/include/class/Aws.cloud.php:1211 +#: ../../enterprise/include/class/MySQL.app.php:564 +#: ../../enterprise/include/class/Oracle.app.php:545 +#: ../../godmode/wizards/HostDevices.class.php:802 +#: ../../include/functions_reporting_html.php:1914 +#: ../../include/class/CustomNetScan.class.php:526 +msgid "Defined" +msgstr "Defined" + +#: ../../enterprise/include/class/VMware.app.php:586 +#: ../../enterprise/include/class/SAPView.class.php:242 +#: ../../enterprise/include/class/SAPView.class.php:279 +#: ../../enterprise/include/class/SAP.app.php:519 +#: ../../enterprise/include/class/Aws.cloud.php:1228 +#: ../../enterprise/include/class/MySQL.app.php:581 +#: ../../enterprise/include/class/Oracle.app.php:562 +msgid "The minimum recomended interval is 5 minutes" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:600 +msgid "V-Center IP" +msgstr "V-Center IP" + +#: ../../enterprise/include/class/VMware.app.php:611 +msgid "Datacenter name" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:612 +msgid "" +"This name must match with the name wich appears when you log in you VMware " +"manager" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:642 +msgid "Encrypt passwords" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:656 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/Aws.cloud.php:1119 +#: ../../enterprise/include/class/MySQL.app.php:474 +#: ../../enterprise/include/class/Oracle.app.php:472 +msgid "This group will be used also to classify discovered agents" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:759 +msgid "Max threads" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:768 +msgid "Re-scan interval" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:769 +msgid "Enables re-scan entities process every interval defined." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:802 +msgid "Retry send" +msgstr "Retry send" + +#: ../../enterprise/include/class/VMware.app.php:812 +msgid "Event mode" +msgstr "Event mode" + +#: ../../enterprise/include/class/VMware.app.php:812 +msgid "Only for VCenter." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:822 +msgid "Virtual network monitoring" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:847 +msgid "Extra settings" +msgstr "Extra settings" + +#: ../../enterprise/include/class/VMware.app.php:848 +msgid "This RAW block will be directly added to config file." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:413 +msgid "Target OS is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:415 +msgid "Target architecture is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:574 +msgid "Target successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1055 +msgid "Failed to schedule" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:554 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:351 +msgid "Host & Devices" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:581 +msgid "Deployment center" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:597 +msgid "There are no targets defined yet, please add some." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:604 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:617 +#: ../../enterprise/include/class/SAP.app.php:350 +msgid "here" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:616 +#, php-format +msgid "" +"There are no software agents in your repository yet, please add some %s." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:635 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1711 +msgid "Scan for targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +msgid "Add target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:653 +msgid "Load targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:717 +#: ../../enterprise/include/class/DeploymentCenter.class.php:785 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../enterprise/include/class/AgentRepository.class.php:348 +#: ../../enterprise/include/class/AgentRepository.class.php:614 +#: ../../enterprise/include/class/AgentRepository.class.php:664 +msgid "Architecture" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:718 +msgid "Key identifier" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:719 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1182 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1319 +msgid "Target server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:720 +msgid "Agent version installed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:721 +msgid "Agent version desired" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:722 +msgid "Installation date" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:723 +msgid "Last error" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:771 +msgid "Server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:796 +msgid "State" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:828 +msgid "Deploy agent to targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:916 +#: ../../enterprise/include/class/AgentRepository.class.php:259 +msgid "Deploying" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1002 +msgid "You must define a network." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1004 +msgid "You must select at least one credential to test." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1006 +msgid "You must select a Discovery server." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1008 +msgid "Please select a desired software agent version." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1010 +msgid "Please specify a server IP." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1030 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1063 +msgid "Discovery task list" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1029 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1062 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1110 +msgid "Network/mask" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1119 +msgid "Scan from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1172 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1309 +msgid "Desired agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +msgid "Target agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +msgid "Target server ip" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1376 +msgid "CSV file" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1436 +msgid "Select desired targets to be deployed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1439 +msgid "Deploy from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1454 +msgid "Available targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1630 +msgid "Add new target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1633 +msgid "Update target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1679 +msgid "Import targets from CSV" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1712 +msgid "Scan" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1746 +msgid "Select targets" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:136 +#: ../../enterprise/include/class/DatabaseHA.class.php:240 +#: ../../enterprise/include/class/DatabaseHA.class.php:422 +#: ../../enterprise/include/class/DatabaseHA.class.php:432 +#: ../../enterprise/include/class/DatabaseHA.class.php:526 +#: ../../enterprise/include/class/DatabaseHA.class.php:535 +#: ../../enterprise/include/class/DatabaseHA.class.php:652 +#: ../../enterprise/include/class/DatabaseHA.class.php:661 +msgid "Error, please refresh page" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:141 +msgid "Action already scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:147 +msgid "Unavailable action" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:159 +msgid "" +"A node is already being synchronized, please wait until process finish." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:171 +msgid "Please verify resync configuration is set before use this feature." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:189 +msgid "Successfully scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:213 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1037 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:558 +#: ../../operation/servers/recon_view.php:142 +msgid "Pending" +msgstr "Pending" + +#: ../../enterprise/include/class/DatabaseHA.class.php:219 +msgid "Uninitialized" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:475 +#: ../../enterprise/include/class/DatabaseHA.class.php:576 +#: ../../enterprise/include/class/DatabaseHA.class.php:1228 +msgid "This is not a cluster node" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:479 +#: ../../enterprise/include/class/DatabaseHA.class.php:1232 +msgid "Failed to retrieve master position" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:493 +#: ../../enterprise/include/class/DatabaseHA.class.php:1245 +msgid "Failed to retrieve slave information" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:612 +msgid "Master" +msgstr "Master" + +#: ../../enterprise/include/class/DatabaseHA.class.php:615 +msgid "Slave" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:797 +msgid "Failed to update" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:824 +#: ../../enterprise/include/class/DatabaseHA.class.php:983 +msgid "DB Replication user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:831 +#: ../../enterprise/include/class/DatabaseHA.class.php:992 +msgid "DB Replication user password" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:838 +msgid "Resync data dir" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "Resync tmp directory" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:852 +msgid "Resync MySQL user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:859 +msgid "Resync MySQL group" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:917 +msgid "IP or FQDN" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:918 +msgid "" +"This action only registers an already configured node. This action does not " +"configure any resource." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:928 +msgid "Cluster node label (pcs)" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:944 +msgid "SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:952 +msgid "SSH port" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:960 +msgid "SSH key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:968 +msgid "SSH public key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1020 +msgid "Missed parameters" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1067 +msgid "You must specify a host" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1069 +msgid "DB port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1071 +msgid "SSH port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1073 +msgid "You must specify a SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1075 +msgid "You must specify a replication DB user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1077 +msgid "You must specify a replication DB pass" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1079 +msgid "You must specify a public key path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1081 +msgid "You must specify a private path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1131 +msgid "Successfully " +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:368 +msgid "Installation file" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:407 +msgid "Agent version is required" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:422 +msgid "Cannot create target dir [" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:443 +#, php-format +msgid "Invalid installation file for %s" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +msgid "Installation files not modified" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:492 +msgid "Installation files updated" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:499 +msgid "You must provide installation files to create a new entry." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "This agent has been already defined." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:537 +msgid "Agent successfully registered and uploaded" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:616 +msgid "Uploaded by" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:617 +msgid "Upload date" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:696 +msgid "Add new software" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:883 +msgid "Add new Software agent" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:886 +msgid "Update Software agent" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:358 +msgid "Please follow the wizard." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:371 +msgid "You have no acess to edit this command." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:642 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:733 +#: ../../include/class/CredentialStore.class.php:836 +msgid "Identifier" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "" +"All commands defined line per line must success to execute main commands" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "" +"All commands defined line per line must success to consider command success" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../godmode/agentes/planned_downtime.editor.php:941 +msgid "Available agents" +msgstr "Available agents" + +#: ../../enterprise/include/class/Omnishell.class.php:856 +msgid "Remove agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:866 +msgid "Selected agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1105 +msgid "Selected command definition will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1190 +msgid "Command viewer" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1198 +msgid "Detailed view" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1339 +msgid "Not an array of ids" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1397 +msgid "There are no targets for this remote command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1404 +msgid "Command does not exist" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1500 +msgid "success" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1503 +msgid "timed out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1506 +msgid "failed" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1522 +msgid "Waiting results..." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1541 +msgid "RCMD does not exist" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:177 +msgid "Alias as name" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:242 +msgid "No data or wrong separator" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:248 +#, php-format +msgid "Agent %s duplicated." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:255 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:263 +msgid "General failure." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:284 +msgid "No input file detected" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:373 +msgid "Agent processed successfully" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:379 +msgid "Some errors while processing CSV." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:382 +msgid "All agents processed correctly" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:389 +#, php-format +msgid "Line %s" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:144 +msgid "SAP data not found." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:177 +msgid "SAP View" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:241 +msgid "Refresh Every" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:278 +msgid "Graph Interval" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is " +"usually configured to retry. You have not configured a Discovery SAP R3 task " +"yet, please visit" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "to start monitoring your SAP infrastructure." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:624 +msgid "Discover SAP" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:155 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:196 +msgid "You must specify at last one SAP hostname." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:207 +msgid "Discovery.Application.SAP" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:263 +msgid "Failed to find discovery SAP task." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:270 +msgid "Select at least a module." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:333 +msgid "SAP R3" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:526 +msgid "SAP Hostname" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:550 +msgid "SAP Client" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:563 +msgid "SAP System Number" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "SAP Credentials" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "Optional" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:699 +#: ../../include/functions_agents.php:3622 +msgid "SAP Login OK" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:700 +#: ../../include/functions_agents.php:3623 +msgid "SAP Dumps" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:701 +#: ../../include/functions_agents.php:3624 +msgid "SAP lock entry list" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:702 +#: ../../include/functions_agents.php:3625 +msgid "SAP canceled Jobs" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:703 +#: ../../include/functions_agents.php:3626 +msgid "SAP Batch inputs erroneous" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:704 +#: ../../include/functions_agents.php:3627 +msgid "SAP IDOC erroneous" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:705 +#: ../../include/functions_agents.php:3628 +msgid "SAP IDOC OK" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:706 +#: ../../include/functions_agents.php:3629 +msgid "SAP WP without active restart" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:707 +#: ../../include/functions_agents.php:3630 +msgid "SAP WP stopped" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:708 +msgid "Average time of SAPGUI response" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:709 +#: ../../include/functions_agents.php:3632 +msgid "Dialog response time" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:710 +msgid "Dialog Logged users" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:711 +#: ../../include/functions_agents.php:3634 +msgid "TRFC in error" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:712 +#: ../../include/functions_agents.php:3635 +msgid "QRFC in error SMQ2" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:713 +#: ../../include/functions_agents.php:3636 +msgid "Number of Update WPs in error" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:735 +msgid "Available modules" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:771 +msgid "Add monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:783 +msgid "Remove monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:793 +msgid "Selected modules" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:97 +#: ../../include/class/CredentialStore.class.php:870 +msgid "Aws" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:280 +msgid "Recon" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:281 +msgid "Costs" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:283 +msgid "Instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:373 +msgid "Amazon EC2" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:378 +msgid "Amazon RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:398 +#: ../../godmode/wizards/HostDevices.class.php:690 +msgid "NetScan" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:421 +msgid "Recon task name" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:490 +msgid "Total cost" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:507 +msgid "Cost by region" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:521 +msgid "Cost interval" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:655 +msgid "Select EC2 instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:674 +msgid "Storage" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:684 +msgid "Elastic IP Adresses" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:771 +#: ../../include/class/CustomNetScan.class.php:134 +msgid "" +"This task has been already defined. Please edit it or create a new one." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:867 +msgid "You must select at least one RDS instance." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:872 +msgid "" +"You cannot monitor RDS instances from different types. Please define several " +"tasks for several types." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:879 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1045 +msgid "RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1050 +msgid "DB monitoring" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1060 +msgid "AWS RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1134 +msgid "Global DB User" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1144 +msgid "Global DB password" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1234 +msgid "Select RDS instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1570 +msgid "Cannot update the recon database" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1592 +msgid "Engine not supported" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:172 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:215 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:220 +msgid "You must provide a valid port number." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:232 +msgid "Discovery.Application.MySQL" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:284 +msgid "Failed to find discovery MySQL task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:489 +msgid "MySQL server IP" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:490 +msgid "Comma separated, as many targets as you need." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:509 +msgid "MySQL server Port" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:654 +#: ../../enterprise/include/class/Oracle.app.php:635 +msgid "Target agent" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:655 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use server IP address/ FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:674 +#: ../../enterprise/include/class/Oracle.app.php:655 +msgid "Custom module prefix" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:675 +#: ../../enterprise/include/class/Oracle.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by " +"this task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:696 +msgid "Scan databases" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:712 +msgid "Create agent per database" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:733 +msgid "Custom database agent prefix" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:734 +msgid "" +"Defines a custom prefix to be concatenated before database agent names " +"generated by this task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:755 +#: ../../enterprise/include/class/Oracle.app.php:674 +msgid "Check engine uptime" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:771 +#: ../../enterprise/include/class/Oracle.app.php:690 +msgid "Retrieve query statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:787 +#: ../../enterprise/include/class/Oracle.app.php:706 +msgid "Analyze connections" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:803 +msgid "Retrieve InnoDB statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:819 +#: ../../enterprise/include/class/Oracle.app.php:754 +msgid "Retrieve cache statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:835 +#: ../../enterprise/include/class/Oracle.app.php:770 +msgid "Execute custom queries" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:887 +#: ../../enterprise/include/class/Oracle.app.php:924 +msgid "Custom queries" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:888 +#: ../../enterprise/include/class/Oracle.app.php:925 +msgid "Define here your custom queries." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:165 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:207 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:219 +msgid "Discovery.Application.Oracle" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:272 +msgid "Failed to find discovery Oracle task." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:487 +msgid "Oracle target strings" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "" +"SERVER:PORT/SID, comma separated or line by line, as many targets as you " +"need." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use target as name." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:722 +msgid "Calculate fragmentation ratio" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:738 +msgid "Monitor tablespaces" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:417 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:476 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:518 +msgid "Alert not found." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:505 +msgid "JSON decoding error. Please call support." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:833 +msgid "Pass" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:834 +msgid "Drop" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:861 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1825 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2136 +msgid "Load from template" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:879 +msgid "Days a week" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:912 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2140 +#: ../../godmode/alerts/configure_alert_template.php:601 +#: ../../godmode/alerts/alert_view.php:306 +msgid "Use special days list" +msgstr "Use special days list" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:931 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:961 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3380 +msgid "from" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:958 +msgid "Execute alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3398 +msgid "times in" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:991 +msgid "threshold" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1001 +msgid "" +"Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1018 +msgid "Grouped by" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1124 +msgid "" +"\n" +" The templates shown are only for correlative alerts, event alert " +"(legacy) will be deprecated in the future" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1135 +msgid "Available items" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1136 +msgid "Block" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1184 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:972 +msgid "Log content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1189 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:975 +msgid "Log source" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1194 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:978 +msgid "Log agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1252 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:984 +msgid "Event content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1257 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:981 +msgid "Event user comment" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:987 +msgid "Event agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:990 +msgid "Event module" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +msgid "Event module alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1277 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:996 +msgid "Event group" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1282 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:999 +msgid "Event group Recursive" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1287 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +msgid "Event severity" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1292 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005 +msgid "Event tag" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1297 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1008 +msgid "Event user" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1326 +msgid "Operators" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1383 +msgid "Modifiers" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1388 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1017 +msgid "Time window" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 +msgid "Rule definition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1722 +msgid "Remove rule" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1733 +msgid "Remove item" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1754 +#: ../../operation/agentes/estado_monitores.php:595 +msgid "Reset" +msgstr "Reset" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1920 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +msgid "Triggering Condition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +msgid "Number of alerts" +msgstr "Number of alerts" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2235 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2489 +#: ../../godmode/alerts/configure_alert_action.php:200 +#: ../../godmode/alerts/alert_view.php:418 +msgid "Firing" +msgstr "Triggering" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2237 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2440 +#: ../../include/ajax/custom_fields.php:403 +msgid "Treshold" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2238 +msgid "Opions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 +msgid "There are no defined actions for this alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2412 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3377 +msgid "Number of alerts match" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2490 +#: ../../godmode/alerts/alert_view.php:419 +msgid "Recovering" +msgstr "Recovering" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2507 +msgid "" +"Select the desired action and mode to view the Triggering fields for this " +"action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 +#: ../../godmode/alerts/alert_view.php:415 +msgid "Select the action" +msgstr "Choose an action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2581 +#: ../../godmode/alerts/configure_alert_template.php:841 +#: ../../godmode/alerts/alert_view.php:436 +#: ../../godmode/alerts/alert_view.php:527 +msgid "Firing fields" +msgstr "Triggering fields" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2583 +#: ../../godmode/alerts/alert_view.php:436 +msgid "" +"Fields passed to the command executed by this action when the alert is fired" +msgstr "" +"When the alert is triggered, the action defining fields will be passed to " +"the command." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2587 +#: ../../godmode/agentes/fields_manager.php:119 +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:526 +#: ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "Field" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2589 +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:526 +msgid "Fields configured on the command associated to the action" +msgstr "Fields configured on the command associated to the action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2592 +msgid "Alerts fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2594 +msgid "Triggering fields configured in Alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2597 +#: ../../godmode/alerts/alert_view.php:440 +msgid "Action fields" +msgstr "Action fields" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2599 +#: ../../godmode/alerts/alert_view.php:440 +msgid "Triggering fields configured in action" +msgstr "Triggering fields configured in action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../godmode/alerts/alert_view.php:442 +msgid "Executed on firing" +msgstr "Executed upon triggering" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2604 +#: ../../godmode/alerts/alert_view.php:442 +#: ../../godmode/alerts/alert_view.php:527 +msgid "Fields used on execution when the alert is fired" +msgstr "Fields used on execution when the alert is triggered" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2672 +msgid "Correlated alerts" +msgstr "Correlated alerts" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2695 +msgid "Alert succesfully deleted" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2704 +msgid "Alerts validated" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +msgid "Failed to process validation" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 +msgid "Matched" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2853 +#: ../../mobile/operation/alerts.php:48 +#: ../../include/functions_reporting_html.php:1915 +#: ../../include/functions_reporting_html.php:2403 +#: ../../include/functions_reporting_html.php:2404 +#: ../../operation/agentes/alerts_status.functions.php:79 +#: ../../operation/snmpconsole/snmp_view.php:208 +#: ../../operation/snmpconsole/snmp_view.php:1173 +msgid "Fired" +msgstr "Triggered" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2875 +msgid "Sort elements" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2963 +msgid "Add Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3143 +msgid "Are you sure you want to disable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3149 +msgid "Are you sure you want to enable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3156 +msgid "Disabled Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3194 +#: ../../godmode/alerts/alert_list.list.php:134 +#: ../../mobile/operation/alerts.php:56 +#: ../../operation/agentes/alerts_status.functions.php:86 +msgid "Standby off" +msgstr "Standby off" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3195 +msgid "Are you sure you want to standby the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3200 +#: ../../enterprise/operation/agentes/policy_view.php:234 +#: ../../godmode/alerts/alert_list.list.php:133 +#: ../../mobile/operation/alerts.php:55 ../../include/functions_ui.php:1131 +#: ../../operation/agentes/alerts_status.functions.php:85 +msgid "Standby on" +msgstr "Standby on" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3202 +msgid "Are you sure you want to activate the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3210 +msgid "Standby Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3281 +msgid "Delete Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3457 +msgid "Successfully added action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3495 +msgid "Successfully delete action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3842 +msgid "Choosetime" +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:325 +msgid "Tree view by tags" +msgstr "Tree view by tags" + +#: ../../enterprise/include/functions_enterprise.php:355 +msgid "" +"If the interval of days until events data purge is shorter than the events " +"data history storage interval, data will be lost. It is recommended that the " +"storage frequency is higher than the purge frequency." +msgstr "" +"If the interval of days until event data purge is shorter than the event " +"data history storage interval, data will be lost. It is recommended to set " +"storage frequency higher than purge frequency." + +#: ../../enterprise/include/functions_enterprise.php:357 +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:368 +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 is recommended to set purged days longer " +"than days passed to history DB." + +#: ../../enterprise/include/functions_enterprise.php:370 +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_reporting.php:46 +msgid "Advance options" +msgstr "Advanced options" + +#: ../../enterprise/include/functions_reporting.php:67 +msgid "Templates list" +msgstr "List of templates" + +#: ../../enterprise/include/functions_reporting.php:102 +msgid "Templates Wizard" +msgstr "Templates Wizard" + +#: ../../enterprise/include/functions_reporting.php:1077 +msgid "Availability item created from wizard." +msgstr "Availability item created from wizard" + +#: ../../enterprise/include/functions_reporting.php:1614 +#: ../../enterprise/include/functions_reporting.php:2505 +#: ../../enterprise/include/functions_reporting.php:3512 +#: ../../godmode/alerts/alert_special_days.php:377 +msgid "January" +msgstr "January" + +#: ../../enterprise/include/functions_reporting.php:1618 +#: ../../enterprise/include/functions_reporting.php:2509 +#: ../../enterprise/include/functions_reporting.php:3516 +#: ../../godmode/alerts/alert_special_days.php:381 +msgid "February" +msgstr "February" + +#: ../../enterprise/include/functions_reporting.php:1622 +#: ../../enterprise/include/functions_reporting.php:2513 +#: ../../enterprise/include/functions_reporting.php:3520 +#: ../../godmode/alerts/alert_special_days.php:385 +msgid "March" +msgstr "March" + +#: ../../enterprise/include/functions_reporting.php:1626 +#: ../../enterprise/include/functions_reporting.php:2517 +#: ../../enterprise/include/functions_reporting.php:3524 +#: ../../godmode/alerts/alert_special_days.php:389 +msgid "April" +msgstr "April" + +#: ../../enterprise/include/functions_reporting.php:1630 +#: ../../enterprise/include/functions_reporting.php:2521 +#: ../../enterprise/include/functions_reporting.php:3528 +#: ../../godmode/alerts/alert_special_days.php:393 +msgid "May" +msgstr "May" + +#: ../../enterprise/include/functions_reporting.php:1634 +#: ../../enterprise/include/functions_reporting.php:2525 +#: ../../enterprise/include/functions_reporting.php:3532 +#: ../../godmode/alerts/alert_special_days.php:397 +msgid "June" +msgstr "June" + +#: ../../enterprise/include/functions_reporting.php:1638 +#: ../../enterprise/include/functions_reporting.php:2529 +#: ../../enterprise/include/functions_reporting.php:3536 +#: ../../godmode/alerts/alert_special_days.php:401 +msgid "July" +msgstr "July" + +#: ../../enterprise/include/functions_reporting.php:1642 +#: ../../enterprise/include/functions_reporting.php:2533 +#: ../../enterprise/include/functions_reporting.php:3540 +#: ../../godmode/alerts/alert_special_days.php:405 +msgid "August" +msgstr "August" + +#: ../../enterprise/include/functions_reporting.php:1646 +#: ../../enterprise/include/functions_reporting.php:2537 +#: ../../enterprise/include/functions_reporting.php:3544 +#: ../../godmode/alerts/alert_special_days.php:409 +msgid "September" +msgstr "September" + +#: ../../enterprise/include/functions_reporting.php:1650 +#: ../../enterprise/include/functions_reporting.php:2541 +#: ../../enterprise/include/functions_reporting.php:3548 +#: ../../godmode/alerts/alert_special_days.php:413 +msgid "October" +msgstr "October" + +#: ../../enterprise/include/functions_reporting.php:1654 +#: ../../enterprise/include/functions_reporting.php:2545 +#: ../../enterprise/include/functions_reporting.php:3552 +#: ../../godmode/alerts/alert_special_days.php:417 +msgid "November" +msgstr "November" + +#: ../../enterprise/include/functions_reporting.php:1659 +#: ../../enterprise/include/functions_reporting.php:2550 +#: ../../enterprise/include/functions_reporting.php:3557 +#: ../../godmode/alerts/alert_special_days.php:421 +msgid "December" +msgstr "December" + +#: ../../enterprise/include/functions_reporting.php:1677 +#: ../../enterprise/include/functions_reporting.php:2577 +#: ../../enterprise/include/functions_reporting.php:3569 +#: ../../include/functions_reporting_html.php:494 +msgid "Max/Min Values" +msgstr "Max/Min Values" + +#: ../../enterprise/include/functions_reporting.php:1679 +#: ../../enterprise/include/functions_reporting.php:1848 +#: ../../enterprise/include/functions_reporting.php:2579 +#: ../../enterprise/include/functions_reporting.php:3571 +#: ../../enterprise/include/functions_reporting.php:5360 +#: ../../include/functions_reporting_html.php:496 +msgid "SLA Compliance" +msgstr "SLA Compliance" + +#: ../../enterprise/include/functions_reporting.php:1719 +#: ../../enterprise/include/functions_reporting.php:2633 +#: ../../enterprise/include/functions_reporting.php:2892 +#: ../../enterprise/include/functions_reporting.php:3626 +#: ../../enterprise/include/functions_reporting.php:3890 +#: ../../enterprise/include/functions_reporting.php:4481 +#: ../../enterprise/include/functions_reporting.php:5430 +#: ../../include/functions_reporting_html.php:785 +#: ../../include/functions_reporting_html.php:3585 +msgid "Not Init" +msgstr "Not initialised" + +#: ../../enterprise/include/functions_reporting.php:1726 +#: ../../enterprise/include/functions_reporting.php:2643 +#: ../../enterprise/include/functions_reporting.php:3636 +msgid "Planned Downtimes" +msgstr "Planned downtimes" + +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2653 +#: ../../enterprise/include/functions_reporting.php:2902 +#: ../../enterprise/include/functions_reporting.php:3646 +#: ../../godmode/agentes/planned_downtime.editor.php:62 +#: ../../include/functions_reporting_html.php:795 +#: ../../include/functions_reporting_html.php:3595 +#: ../../general/first_task/planned_downtime.php:22 +msgid "Planned Downtime" +msgstr "Planned Downtime" + +#: ../../enterprise/include/functions_reporting.php:1753 +msgid "SLA Compliance per days" +msgstr "SLA Compliance per days" + +#: ../../enterprise/include/functions_reporting.php:1845 +msgid "Summary of SLA Failures" +msgstr "Summary of SLA Failures" + +#: ../../enterprise/include/functions_reporting.php:1865 +#: ../../enterprise/include/functions_reporting.php:1866 +msgid "Out of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1871 +#: ../../enterprise/include/functions_reporting.php:1872 +msgid "IN of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1955 +#: ../../include/functions_reports.php:878 +msgid "Log report" +msgstr "Log report" + +#: ../../enterprise/include/functions_reporting.php:1968 +#: ../../include/functions_reports.php:877 +msgid "Log" +msgstr "Log" + +#: ../../enterprise/include/functions_reporting.php:2175 +#: ../../enterprise/include/functions_reporting.php:3124 +#: ../../enterprise/include/functions_reporting.php:4097 +#: ../../include/functions_reporting.php:917 +#: ../../include/functions_reporting.php:6638 +msgid "There are no SLAs defined" +msgstr "There are no SLAs defined" + +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:3166 +#: ../../enterprise/include/functions_reporting.php:4139 +#: ../../include/functions_maps.php:50 +#: ../../include/functions_reporting.php:969 +#: ../../include/functions_reporting.php:6905 +#: ../../operation/agentes/pandora_networkmap.php:776 +msgid "Dynamic" +msgstr "Dynamic" + +#: ../../enterprise/include/functions_reporting.php:2228 +#: ../../enterprise/include/functions_reporting.php:3177 +#: ../../enterprise/include/functions_reporting.php:4150 +#: ../../include/functions_reporting.php:980 +#: ../../include/functions_reporting.php:6916 +msgid "Inverse" +msgstr "Inverse" + +#: ../../enterprise/include/functions_reporting.php:2691 +msgid "T. Total" +msgstr "T. Total" + +#: ../../enterprise/include/functions_reporting.php:2692 +#: ../../enterprise/include/functions_reporting.php:3673 +msgid "T. OK" +msgstr "T. OK" + +#: ../../enterprise/include/functions_reporting.php:2693 +#: ../../enterprise/include/functions_reporting.php:3674 +msgid "T. Error" +msgstr "T. Error" + +#: ../../enterprise/include/functions_reporting.php:2694 +#: ../../enterprise/include/functions_reporting.php:3675 +msgid "T. Unknown" +msgstr "T. Unknown" + +#: ../../enterprise/include/functions_reporting.php:2695 +#: ../../enterprise/include/functions_reporting.php:3676 +msgid "T. Not_init" +msgstr "T. Not_init" + +#: ../../enterprise/include/functions_reporting.php:2696 +#: ../../enterprise/include/functions_reporting.php:3677 +msgid "T. Downtime" +msgstr "T. Downtime" + +#: ../../enterprise/include/functions_reporting.php:2697 +#: ../../enterprise/include/functions_reporting.php:3678 +msgid "SLA %" +msgstr "SLA %" + +#: ../../enterprise/include/functions_reporting.php:2887 +#: ../../enterprise/include/functions_reporting.php:3885 +#: ../../enterprise/include/functions_reporting.php:5425 +#: ../../enterprise/include/functions_services.php:2329 +#: ../../include/functions_reporting_html.php:780 +#: ../../include/functions_reporting_html.php:3580 +msgid "Unknow" +msgstr "Unknown" + +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3895 +#: ../../enterprise/include/functions_reporting.php:5435 +#: ../../include/functions_reporting_html.php:790 +#: ../../include/functions_reporting_html.php:3590 +msgid "Downtimes" +msgstr "Downtimes" + +#: ../../enterprise/include/functions_reporting.php:3900 +msgid "Ignore Planned Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3990 +#: ../../include/functions_reports.php:697 +msgid "Hourly S.L.A." +msgstr "Hourly SLA" + +#: ../../enterprise/include/functions_reporting.php:4880 +msgid "There are no SLAs defined." +msgstr "There are no SLAs defined" + +#: ../../enterprise/include/functions_reporting.php:5021 +#: ../../enterprise/include/functions_services.php:2256 +#: ../../enterprise/include/functions_services.php:2258 +#: ../../enterprise/include/functions_services.php:2288 +#: ../../enterprise/include/functions_services.php:2289 +#: ../../enterprise/include/functions_services.php:2291 +#: ../../enterprise/include/functions_services.php:2334 +#: ../../enterprise/include/functions_services.php:2336 +msgid "Nonexistent" +msgstr "Nonexistent" + +#: ../../enterprise/include/functions_reporting.php:5440 +msgid "Scheduled shutdow" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5802 +#: ../../enterprise/include/functions_reporting.php:6432 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "Graph agents(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:6348 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "Graph agent(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:6806 +msgid "There is not data for the selected conditions" +msgstr "There is no data for the selected conditions" + +#: ../../enterprise/include/functions_reporting.php:7004 +#: ../../enterprise/include/functions_reporting.php:7060 +msgid "Template editor" +msgstr "Template editor" + +#: ../../enterprise/include/functions_reporting.php:7079 +msgid "Get PDF file" +msgstr "Get PDF file" + +#: ../../enterprise/include/functions_reporting.php:7140 +#: ../../include/functions_reports.php:636 +msgid "Simple baseline graph" +msgstr "Simple baseline graph" + +#: ../../enterprise/include/functions_enterprise_api.php:902 +#: ../../enterprise/include/functions_enterprise_api.php:960 +msgid "Not sent id agent to migrate" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:909 +msgid "Not sent id source node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:915 +msgid "Not sent id target node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:920 +msgid "Not sent id source node and not sent id target node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:933 +#: ../../enterprise/include/functions_enterprise_api.php:966 +#: ../../enterprise/include/functions_enterprise_api.php:2307 +msgid "Is not metaconsole" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:995 +#: ../../enterprise/include/functions_enterprise_api.php:1231 +#: ../../enterprise/include/functions_enterprise_api.php:1425 +#: ../../enterprise/include/functions_enterprise_api.php:1599 +#: ../../enterprise/include/functions_enterprise_api.php:1819 +#: ../../enterprise/include/functions_enterprise_api.php:1950 +#: ../../enterprise/include/functions_enterprise_api.php:2234 +#: ../../enterprise/include/functions_enterprise_api.php:2569 +#: ../../enterprise/include/functions_enterprise_api.php:2768 +#: ../../enterprise/include/functions_enterprise_api.php:2983 +msgid "There is no policy with such id" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:1868 +msgid "Module id is empty" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:1874 +msgid "There is no module with such id" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2241 +msgid "There is no alert with such id in this policy" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2369 +#: ../../include/functions_api.php:5619 +msgid "Error getting alert actions." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2632 +#: ../../enterprise/include/functions_enterprise_api.php:2666 +msgid "Error adding agent to policy. Id_policy cannot be left blank." +msgstr "" +"Error adding the agent to the policy. 'Id_policy' cannot be left blank." + +#: ../../enterprise/include/functions_enterprise_api.php:2637 +msgid "Error adding agent to policy. Id_agent cannot be left blank." +msgstr "" +"Error adding the agent to the policy. 'Id_agent' cannot be left blank." + +#: ../../enterprise/include/functions_enterprise_api.php:2643 +msgid "Error adding agent to policy. Node ID cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2671 +#: ../../include/functions_api.php:8004 +msgid "Error adding agent to policy. Agent name cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3058 +msgid "Error applying policy. Id_policy cannot be left blank." +msgstr "Error applying the policy. 'Id_policy' cannot be left blank." + +#: ../../enterprise/include/functions_enterprise_api.php:3064 +msgid "Error applying policy. Id_nodo cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3071 +msgid "There is no policy with such id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3091 +msgid "There is no agent with such id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3117 +msgid "This policy does not have this agent id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3130 +msgid "There is no agent with such name." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3156 +msgid "This policy does not have this agent." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3172 +msgid "There are no agents with such alias." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3204 +msgid "This policy does not have these agents." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3219 +#: ../../enterprise/include/functions_enterprise_api.php:3234 +msgid "Error applying policy." +msgstr "Error applying policy" + +#: ../../enterprise/include/functions_enterprise_api.php:3226 +msgid "Error applying policy. This policy is already pending to apply." +msgstr "" +"Error applying the policy. The application of this policy is still pending." + +#: ../../enterprise/include/functions_enterprise_api.php:3266 +#: ../../enterprise/include/functions_enterprise_api.php:3320 +#, php-format +msgid "%d agents added to apply queue." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3289 +#: ../../enterprise/include/functions_policies.php:4989 +#, php-format +msgid "Successfully applied to node %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3291 +#: ../../enterprise/include/functions_policies.php:4991 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3330 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3332 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3384 +msgid "Error applying all policies." +msgstr "Error applying all policies" + +#: ../../enterprise/include/functions_enterprise_api.php:3438 +msgid "Cannot reach the node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3460 +#, php-format +msgid "Node error: %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3474 +#, php-format +msgid "Invalid value %d on first other parameter" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3707 +msgid "The module is already in the policy." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3744 +#: ../../enterprise/include/functions_enterprise_api.php:3780 +msgid "" +"Error adding web analysis module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web analysis modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3756 +msgid "" +"Error adding network module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for network modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3768 +msgid "" +"Error adding web module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3795 +msgid "" +"Error adding module to policy.\n" +"\t\t\t\t\tconfiguration_data is not correct base64." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:4266 +#: ../../enterprise/include/functions_enterprise_api.php:4316 +#: ../../enterprise/include/functions_enterprise_api.php:4367 +msgid "Error getting inventory modules" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5256 +#, php-format +msgid "Error updating user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5258 +#, php-format +msgid "Updated user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5268 +#, php-format +msgid "Error creating user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5270 +#, php-format +msgid "Created user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5471 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements " +"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5484 +#, php-format +msgid "" +"Error creating/updating the followings elements groups/profiles/user " +"profiles (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5500 +#, php-format +msgid "" +"The followings elements groups/profiles/user profiles were created/updated " +"sucessfully (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5679 +msgid "Error adding agent to policy. Agent does not exist." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5691 +msgid "Error adding agent to policy." +msgstr "Error adding the agent to the policy" + +#: ../../enterprise/include/functions_enterprise_api.php:5698 +msgid "Error adding agent to policy. The agent is already in the policy." +msgstr "" +"Error adding the agent to the policy. The agent is already in the policy." + +#: ../../enterprise/include/functions_services.php:27 +msgid "There is no information about" +msgstr "There is no information about" + +#: ../../enterprise/include/functions_services.php:32 +msgid "Service does not exist." +msgstr "The service does not exist" + +#: ../../enterprise/include/functions_services.php:44 +msgid "module that stores the service" +msgstr "module that stores the service" + +#: ../../enterprise/include/functions_services.php:56 +msgid "module that stores SLA service" +msgstr "module that stores SLA service" + +#: ../../enterprise/include/functions_services.php:69 +msgid "agent that stores the service" +msgstr "agent that stores the service" + +#: ../../enterprise/include/functions_services.php:82 +msgid "agent that stores SLA service" +msgstr "agent that stores SLA service" + +#: ../../enterprise/include/functions_services.php:103 +msgid "alert critical SLA service" +msgstr "alert critical SLA service" + +#: ../../enterprise/include/functions_services.php:124 +msgid "alert warning service" +msgstr "service in warning" + +#: ../../enterprise/include/functions_services.php:145 +msgid "alert critical service" +msgstr "alert critical service" + +#: ../../enterprise/include/functions_services.php:166 +msgid "alert unknown service" +msgstr "alert unknown service" + +#: ../../enterprise/include/functions_services.php:576 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "Automatic module creation for the service %s" + +#: ../../enterprise/include/functions_services.php:2316 +msgid "Critical (Alert)" +msgstr "Critical (Alert)" + +#: ../../enterprise/include/functions_services.php:2449 +msgid "There are no service elements defined" +msgstr "There are no service elements defined" + +#: ../../enterprise/include/functions_services.php:2479 +msgid "Weight Critical" +msgstr "Weight Critical" + +#: ../../enterprise/include/functions_services.php:2480 +msgid "Weight Warning" +msgstr "Warning weight" + +#: ../../enterprise/include/functions_services.php:2481 +msgid "Weight Unknown" +msgstr "Weight Unknown" + +#: ../../enterprise/include/functions_services.php:2482 +msgid "Weight Ok" +msgstr "Weight OK" + +#: ../../enterprise/include/functions_services.php:2512 +#: ../../enterprise/include/functions_services.php:2534 +#: ../../enterprise/include/functions_services.php:2573 +msgid "Nonexistent. This element should be deleted" +msgstr "Nonexistent. This element should be deleted." + +#: ../../enterprise/include/functions_services.php:2597 +msgid "This element does not affect service weigth because is disabled." +msgstr "" + +#: ../../enterprise/include/functions_services.php:2699 +msgid "NOT INITIALIZED" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/transactional_map.php:184 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:2580 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +msgid "Last status" +msgstr "Last status" + +#: ../../enterprise/include/functions_services.php:2754 +msgid "Delete service element" +msgstr "Delete service element" + +#: ../../enterprise/include/functions_services.php:2813 +msgid "FAIL" +msgstr "FAIL" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "You must change the password:" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "Password must be different from the 3 previous changes." + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "Old password: " + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "New password: " + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "Confirm: " + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "Change" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "Login blocked" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "User has been blocked. Please try again in " + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr " minutes" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "Successfully logged in" + +#: ../../enterprise/include/functions_login.php:145 +msgid "Successfully" +msgstr "Successfully" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "User password successfully updated" + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "Password must be different from the " + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr " previous changes." + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "Password must be different" + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "Password too short" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "Password has to contain numbers" + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "Password has to contain symbols" + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "Invalid old password" + +#: ../../enterprise/include/functions_login.php:357 +msgid "Password confirm does not match" +msgstr "Passwords do not match" + +#: ../../enterprise/include/functions_login.php:364 +msgid "Password empty" +msgstr "Password empty" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:181 +msgid "There was a problem creating Alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:257 +msgid "There was a problem deleting Alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:712 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:726 +msgid "There was a problem creating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:763 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:776 +msgid "There was a problem updating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:812 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:826 +msgid "There was a problem deleting Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:867 +msgid "There was a problem standby alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:882 +msgid "There was a problem standby off alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:926 +msgid "There was a problem disabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:942 +msgid "There was a problem enabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1402 +msgid "Failed to cleanup old rules." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1411 +msgid "Failed to apply rule." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1551 +msgid "any" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:565 +msgid "Not set" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:575 +msgid "Active-Active" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:577 +msgid "Active-Passive" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:773 +msgid "Cluster name" +msgstr "Cluster name" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:774 +msgid "" +"An agent with the same name of the cluster will be created, as well a " +"special service with the same name" +msgstr "" +"An agent with the same name of the cluster will be created, as well a " +"special service with the same name" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:788 +msgid "Cluster type" +msgstr "Cluster type" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:789 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master " +"member is working" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:797 +msgid "Active - Active" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:798 +msgid "Active - Pasive" +msgstr "Active - Passive" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:818 +msgid "Target cluster agent will be stored under this group" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:834 +#: ../../include/functions_servers.php:610 +msgid "Prediction server" +msgstr "Prediction server" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:835 +msgid "" +"You must select a Prediction Server to perform all cluster status " +"calculations" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:989 +msgid "critical if" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:998 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1021 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1036 +msgid "Please, set threholds for all active-active modules" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1140 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1142 +msgid "" +"If a critical balanced module is going to critical status, then cluster will " +"be critical." +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:541 +msgid "There was a problem creating RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:686 +#: ../../enterprise/include/lib/RCMDFile.class.php:710 +msgid "There was a problem deleting RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:858 +msgid "No agent configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:866 +msgid "you don't have write permissions in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:907 +msgid "This agent is already a target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:938 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1004 +msgid "There was a problem creating RCMD files" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1051 +msgid "There was a problem creating target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1085 +msgid "There was a problem adding items in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1111 +#: ../../enterprise/include/lib/RCMDFile.class.php:1278 +msgid "No agent has been selected" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1144 +msgid "Target doesn't exist" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1216 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1252 +msgid "There was a problem deleting target from DB" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1410 +msgid "Yaml is empty" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1419 +msgid "Doesn't have a valid YAML format" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1437 +#, php-format +msgid "%s field is not allowed" +msgstr "" + +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "Metaconsole" + +#: ../../enterprise/include/functions_events.php:107 +#: ../../godmode/events/event_filter.php:124 +#: ../../godmode/events/event_edit_filter.php:316 +#: ../../include/lib/Dashboard/Widgets/events_list.php:329 +#: ../../operation/events/events_list.php:956 +#: ../../operation/events/events.php:915 ../../operation/events/events.php:1390 +msgid "Event status" +msgstr "Event status" + +#: ../../enterprise/include/functions_events.php:168 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../operation/events/events_list.php:776 +#: ../../operation/events/events.php:1097 +msgid "User ack." +msgstr "User ack." + +#: ../../enterprise/include/functions_events.php:178 +#: ../../godmode/events/event_edit_filter.php:415 +#: ../../operation/events/events_list.php:857 +#: ../../operation/events/events.php:1155 +msgid "Date from" +msgstr "From (date)" + +#: ../../enterprise/include/functions_events.php:188 +#: ../../godmode/events/event_edit_filter.php:418 +#: ../../operation/events/events_list.php:861 +#: ../../operation/events/events.php:1206 +msgid "Date to" +msgstr "To (date)" + +#: ../../enterprise/include/functions_events.php:208 +#: ../../godmode/events/event_edit_filter.php:564 +#: ../../operation/events/events_list.php:823 +#: ../../operation/events/events.php:1114 +msgid "Alert events" +msgstr "Alert events" + +#: ../../enterprise/include/functions_events.php:219 +msgid "Id source events" +msgstr "" + +#: ../../enterprise/include/functions_events.php:229 +#: ../../godmode/admin_access_logs.php:72 +#: ../../godmode/admin_access_logs.php:73 +#: ../../godmode/events/event_edit_filter.php:370 +#: ../../mobile/operation/events.php:705 +#: ../../include/lib/Dashboard/Widgets/events_list.php:289 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/events/events_list.php:959 +#: ../../operation/events/events.php:928 ../../operation/events/events.php:1420 +msgid "Max. hours old" +msgstr "Max. hours old" + +#: ../../enterprise/include/functions_events.php:245 +#: ../../enterprise/include/functions_events.php:267 +msgid "More than 5 tags" +msgstr "More than 5 tags" + +#: ../../enterprise/include/functions_events.php:251 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../operation/events/events_list.php:878 +#: ../../operation/events/events_list.php:881 +#: ../../operation/events/events.php:1238 +#: ../../operation/events/events.php:1241 +msgid "Events with following tags" +msgstr "Events with the following tags" + +#: ../../enterprise/include/functions_events.php:273 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../operation/events/events_list.php:879 +#: ../../operation/events/events_list.php:882 +#: ../../operation/events/events.php:1239 +#: ../../operation/events/events.php:1242 +msgid "Events without following tags" +msgstr "Events without the following tags" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:451 +msgid "Active filter" +msgstr "Active filter" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:451 +msgid "Active filters" +msgstr "Active filters" + +#: ../../enterprise/include/functions_update_manager.php:182 +#: ../../enterprise/include/functions_update_manager.php:376 +#: ../../include/functions_update_manager.php:1344 +#: ../../include/functions_update_manager.php:1346 +#: ../../include/functions_update_manager.php:1486 +#: ../../include/functions_update_manager.php:1489 +msgid "Could not connect to internet" +msgstr "Could not obtain an internet connection" + +#: ../../enterprise/include/functions_update_manager.php:184 +#: ../../include/functions_update_manager.php:1350 +#: ../../include/functions_update_manager.php:1352 +#: ../../include/functions_update_manager.php:1495 +#: ../../include/functions_update_manager.php:1498 +msgid "Server not found." +msgstr "Server not found" + +#: ../../enterprise/include/functions_update_manager.php:186 +#: ../../enterprise/include/functions_update_manager.php:391 +#, php-format +msgid "There is a error: %s" +msgstr "There is an error: %s" + +#: ../../enterprise/include/functions_update_manager.php:197 +#, 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:206 +msgid "Version number:" +msgstr "Version number:" + +#: ../../enterprise/include/functions_update_manager.php:207 +msgid "Show details" +msgstr "Show details" + +#: ../../enterprise/include/functions_update_manager.php:214 +#: ../../godmode/update_manager/update_manager.offline.php:71 +#: ../../include/functions_update_manager.php:1367 +msgid "Minor release available" +msgstr "Minor release available" + +#: ../../enterprise/include/functions_update_manager.php:215 +#: ../../godmode/update_manager/update_manager.offline.php:72 +#: ../../include/functions_update_manager.php:1368 +msgid "New package available" +msgstr "New package available" + +#: ../../enterprise/include/functions_update_manager.php:216 +#: ../../enterprise/include/functions_update_manager.php:218 +#: ../../godmode/update_manager/update_manager.offline.php:73 +#: ../../godmode/update_manager/update_manager.offline.php:75 +#: ../../include/functions_update_manager.php:1369 +#: ../../include/functions_update_manager.php:1371 +msgid "Minor release rejected. Changes will not apply." +msgstr "Minor release rejected. Changes will not be applied." + +#: ../../enterprise/include/functions_update_manager.php:217 +#: ../../godmode/update_manager/update_manager.offline.php:74 +#: ../../include/functions_update_manager.php:1370 +msgid "" +"Minor release rejected. The database will not be updated and the package " +"will apply." +msgstr "" +"Minor release rejected. The database will not be updated and the package " +"will not be applied." + +#: ../../enterprise/include/functions_update_manager.php:219 +#: ../../godmode/update_manager/update_manager.offline.php:76 +#: ../../include/functions_update_manager.php:1372 +msgid "These package changes will not apply." +msgstr "These package changes will not be applied." + +#: ../../enterprise/include/functions_update_manager.php:220 +#: ../../godmode/update_manager/update_manager.offline.php:77 +#: ../../include/functions_update_manager.php:1373 +msgid "Package rejected. These package changes will not apply." +msgstr "Package rejected. These package changes will not be applied." + +#: ../../enterprise/include/functions_update_manager.php:221 +#: ../../godmode/update_manager/update_manager.offline.php:78 +#: ../../include/functions_update_manager.php:1374 +msgid "Database successfully updated" +msgstr "Database successfully updated" + +#: ../../enterprise/include/functions_update_manager.php:222 +#: ../../godmode/update_manager/update_manager.offline.php:79 +#: ../../include/functions_update_manager.php:1375 +msgid "Error in MR file" +msgstr "Error in MR file" + +#: ../../enterprise/include/functions_update_manager.php:223 +#: ../../godmode/update_manager/update_manager.offline.php:80 +#: ../../include/functions_update_manager.php:1376 +msgid "Package updated successfully" +msgstr "Package updated successfully" + +#: ../../enterprise/include/functions_update_manager.php:224 +#: ../../godmode/update_manager/update_manager.offline.php:81 +#: ../../include/functions_update_manager.php:1377 +msgid "Error in package updated" +msgstr "Error in package updated" + +#: ../../enterprise/include/functions_update_manager.php:225 +#: ../../godmode/update_manager/update_manager.offline.php:82 +#: ../../include/functions_update_manager.php:1378 +msgid "" +"Database MR version is inconsistent, do you want to apply the package?" +msgstr "" +"Database MR version is inconsistent, do you want to apply the package?" + +#: ../../enterprise/include/functions_update_manager.php:226 +#: ../../godmode/update_manager/update_manager.offline.php:83 +#: ../../include/functions_update_manager.php:1379 +msgid "There are db changes" +msgstr "There are changes in the DB" + +#: ../../enterprise/include/functions_update_manager.php:227 +#: ../../godmode/update_manager/update_manager.offline.php:84 +#: ../../include/functions_update_manager.php:1380 +msgid "" +"There are new database changes available to apply. Do you want to start the " +"DB update process?" +msgstr "" +"There are new database changes available. Do you want to start the DB update " +"process?" + +#: ../../enterprise/include/functions_update_manager.php:228 +#: ../../godmode/update_manager/update_manager.offline.php:85 +#: ../../include/functions_update_manager.php:1381 +msgid "We recommend launching " +msgstr "We recommend launching " + +#: ../../enterprise/include/functions_update_manager.php:229 +#: ../../godmode/update_manager/update_manager.offline.php:86 +#: ../../include/functions_update_manager.php:1382 +msgid "planned downtime" +msgstr "planned downtime" + +#: ../../enterprise/include/functions_update_manager.php:236 +#: ../../godmode/update_manager/update_manager.offline.php:92 +#: ../../include/functions_update_manager.php:1389 +msgid " to this process" +msgstr " to this process" + +#: ../../enterprise/include/functions_update_manager.php:238 +#: ../../godmode/update_manager/update_manager.offline.php:95 +#: ../../include/functions_update_manager.php:1392 ../../general/header.php:78 +msgid "About minor release update" +msgstr "About minor release update" + +#: ../../enterprise/include/functions_update_manager.php:241 +#: ../../godmode/update_manager/update_manager.offline.php:98 +#: ../../include/functions_update_manager.php:1395 +msgid "There is a new update available" +msgstr "There is a new update available" + +#: ../../enterprise/include/functions_update_manager.php:242 +#: ../../godmode/update_manager/update_manager.offline.php:99 +#: ../../include/functions_update_manager.php:1396 +msgid "" +"There is a new update available to apply. Do you want to start the update " +"process?" +msgstr "" +"There is a new update available. Do you want to start the update process?" + +#: ../../enterprise/include/functions_update_manager.php:243 +#: ../../godmode/update_manager/update_manager.offline.php:102 +#: ../../include/functions_update_manager.php:1397 +msgid "Applying DB MR" +msgstr "Applying DB MR" + +#: ../../enterprise/include/functions_update_manager.php:246 +#: ../../godmode/update_manager/update_manager.offline.php:105 +#: ../../include/functions_update_manager.php:1400 +msgid "Apply MR" +msgstr "Apply MR" + +#: ../../enterprise/include/functions_update_manager.php:266 +#: ../../include/functions_update_manager.php:1408 +msgid "There is no update available." +msgstr "There are no updates available" + +#: ../../enterprise/include/functions_update_manager.php:383 +#: ../../include/ajax/update_manager.ajax.php:462 +msgid "Fail to update to the last package." +msgstr "Error updating to the latest package" + +#: ../../enterprise/include/functions_update_manager.php:409 +#: ../../include/ajax/update_manager.ajax.php:474 +msgid "Starting to update to the last package." +msgstr "Starting to update to the latest package" + +#: ../../enterprise/include/functions_update_manager.php:453 +#: ../../include/ajax/update_manager.ajax.php:96 +msgid "There was an error extracting the file '" +msgstr "There was an error extracting the file" + +#: ../../enterprise/include/functions_update_manager.php:470 +#: ../../include/ajax/update_manager.ajax.php:113 +msgid "The package was not extracted." +msgstr "The package could not be extracted" + +#: ../../enterprise/include/functions_update_manager.php:526 +#: ../../include/ajax/update_manager.ajax.php:571 +msgid "progress" +msgstr "progress" + +#: ../../enterprise/include/functions_update_manager.php:575 +#: ../../include/ajax/update_manager.ajax.php:253 +#: ../../include/functions_update_manager.php:1061 +msgid "An error ocurred while reading a file." +msgstr "An error ocurred while reading a file" + +#: ../../enterprise/include/functions_update_manager.php:619 +#: ../../enterprise/include/functions_update_manager.php:662 +#: ../../include/ajax/update_manager.ajax.php:217 +#: ../../include/ajax/update_manager.ajax.php:232 +#: ../../include/functions_update_manager.php:1102 +#: ../../include/functions_update_manager.php:1141 +msgid "Some of your old files might not be recovered." +msgstr "Some of your old files may be impossible to recover." + +#: ../../enterprise/include/functions_update_manager.php:628 +#: ../../enterprise/include/functions_update_manager.php:633 +#: ../../enterprise/include/functions_update_manager.php:653 +#: ../../include/ajax/update_manager.ajax.php:207 +#: ../../include/ajax/update_manager.ajax.php:212 +#: ../../include/ajax/update_manager.ajax.php:238 +#: ../../include/functions_update_manager.php:1107 +#: ../../include/functions_update_manager.php:1112 +#: ../../include/functions_update_manager.php:1132 +msgid "Some of your files might not be recovered." +msgstr "Some of your files may be impossible to recover." + +#: ../../enterprise/include/functions_update_manager.php:642 +#: ../../enterprise/include/functions_update_manager.php:672 +#, php-format +msgid "Line '%s' not copied to the progress file." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:684 +#: ../../include/ajax/update_manager.ajax.php:259 +#: ../../include/functions_update_manager.php:1163 +msgid "The package does not exist" +msgstr "The package does not exist." + +#: ../../enterprise/include/functions_update_manager.php:697 +#: ../../include/ajax/update_manager.ajax.php:617 +#: ../../include/functions_update_manager.php:1178 +msgid "The package is installed." +msgstr "The package has been installed." + +#: ../../enterprise/include/functions_metaconsole.php:2762 +msgid "Agent alerts action does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2769 +msgid "Agent alerts template does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2776 +msgid "Agent inventory does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2783 +msgid "Exists agent conf please remove configuration file from target node." +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2790 +msgid "Agent collections does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2797 +msgid "Agent plugins does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2804 +msgid "" +"Agent policies definitions does not match with defined ones in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2811 +msgid "Agent group does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2818 +msgid "Agent already exists in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2842 +msgid "The agent: has not been added due to problems in the insertion" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2847 +msgid "The agent: has already been added to the migration queue" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2925 +msgid "Cannot " +msgstr "" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Client" +msgstr "Client" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1147 +msgid "Support expires" +msgstr "" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "Expires" + +#: ../../enterprise/include/functions_policies.php:511 +#: ../../enterprise/include/functions_policies.php:526 +#: ../../include/functions_alerts.php:460 +msgid "copy" +msgstr "copy" + +#: ../../enterprise/include/functions_policies.php:3519 +msgid "Policy linkation" +msgstr "Policy linking" + +#: ../../enterprise/include/functions_policies.php:3524 +msgid "Module linked" +msgstr "Module linked" + +#: ../../enterprise/include/functions_policies.php:3526 +#: ../../enterprise/include/functions_policies.php:3538 +msgid "Unlink from policy" +msgstr "Unlink from policy" + +#: ../../enterprise/include/functions_policies.php:3530 +msgid "Module unlinked" +msgstr "Module unlinked" + +#: ../../enterprise/include/functions_policies.php:3532 +#: ../../enterprise/include/functions_policies.php:3544 +msgid "Relink to policy" +msgstr "Relink to policy" + +#: ../../enterprise/include/functions_policies.php:3536 +msgid "Module pending to link" +msgstr "Module pending to be linked" + +#: ../../enterprise/include/functions_policies.php:3536 +#: ../../godmode/agentes/module_manager_editor.php:540 +msgid "Module will be linked in the next application" +msgstr "Module will be linked in the next application" + +#: ../../enterprise/include/functions_policies.php:3542 +msgid "Module pending to unlink" +msgstr "Module pending to be unlinked" + +#: ../../enterprise/include/functions_policies.php:3542 +#: ../../godmode/agentes/module_manager_editor.php:554 +msgid "Module will be unlinked in the next application" +msgstr "Module will be unlinked in the next application" + +#: ../../enterprise/include/functions_policies.php:3734 +#: ../../godmode/agentes/configurar_agente.php:472 +#: ../../godmode/agentes/configurar_agente.php:659 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "SNMP Wizard" + +#: ../../enterprise/include/functions_policies.php:3737 +#: ../../godmode/agentes/configurar_agente.php:475 +#: ../../godmode/agentes/configurar_agente.php:665 +msgid "SNMP Interfaces wizard" +msgstr "SNMP Interface wizard" + +#: ../../enterprise/include/functions_policies.php:3740 +#: ../../godmode/agentes/configurar_agente.php:478 +#: ../../godmode/agentes/configurar_agente.php:671 +msgid "WMI Wizard" +msgstr "WMI Wizard" + +#: ../../enterprise/include/functions_policies.php:4036 +msgid "Create a new policy map" +msgstr "Create a new policy map" + +#: ../../enterprise/include/functions_policies.php:4369 +#: ../../extensions/resource_registration.php:1027 +msgid "Error, please install the PHP libXML in the system." +msgstr "Error: please install PHP libXML on the system" + +#: ../../enterprise/include/functions_policies.php:4381 +#, 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_policies.php:4388 +#: ../../extensions/resource_registration.php:1048 +msgid "Group filter: " +msgstr "Group filter: " + +#: ../../enterprise/include/functions_policies.php:4392 +#: ../../extensions/extension_uploader.php:89 +#: ../../extensions/resource_registration.php:1052 +#: ../../extensions/plugin_registration.php:45 +#: ../../godmode/alerts/alert_special_days.php:290 +#: ../../operation/incidents/incident_detail.php:527 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 +msgid "Upload" +msgstr "Upload" + +#: ../../enterprise/include/functions_policies.php:4431 +#: ../../enterprise/include/functions_policies.php:4439 +#: ../../enterprise/include/functions_policies.php:5036 +msgid "This will not produce any action." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4496 +#: ../../enterprise/include/functions_policies.php:5065 +#, php-format +msgid "Error connecting with node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4505 +#: ../../enterprise/include/functions_policies.php:5074 +#, php-format +msgid "Policy does not exist in node %s. Error creating it." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4511 +#: ../../enterprise/include/functions_policies.php:5080 +#, php-format +msgid "" +"This policy exist in node %s with other name (%s). Change the name to '%s' " +"to apply the policy." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4523 +#: ../../enterprise/include/functions_policies.php:5092 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4539 +#, php-format +msgid "Error syncronizing the agents to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4552 +#, php-format +msgid "Error syncronizing the groups to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4565 +#, php-format +msgid "Error syncronizing the modules to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4581 +#, php-format +msgid "Error syncronizing the alerts to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4591 +#, php-format +msgid "Error syncronizing the alert actions to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4605 +#, php-format +msgid "Error syncronizing the inventory modules to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4618 +#, php-format +msgid "Error syncronizing the plugins to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4632 +#, php-format +msgid "Error syncronizing the collections to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4642 +#, php-format +msgid "Error adding the queue to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:5130 +msgid "Error syncronizing ." +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:175 +msgid "Empty configuration" +msgstr "Empty configuration" + +#: ../../enterprise/include/functions_local_components.php:180 +msgid "Empty OS" +msgstr "Empty OS" + +#: ../../enterprise/include/functions_local_components.php:342 +#: ../../include/functions_alerts.php:1135 +#: ../../include/functions_network_components.php:617 +msgid "Copy of" +msgstr "Copy of" + +#: ../../enterprise/include/functions_ux_console.php:506 +#: ../../enterprise/operation/agentes/tag_view.php:861 +#: ../../enterprise/operation/agentes/tag_view.php:871 +#: ../../enterprise/operation/agentes/ux_console_view.php:102 +#: ../../enterprise/operation/agentes/ux_console_view.php:297 +#: ../../enterprise/operation/agentes/ux_console_view.php:377 +#: ../../enterprise/operation/agentes/wux_console_view.php:351 +#: ../../include/functions_ui.php:5723 +msgid "Snapshot view" +msgstr "Command Snapshot view" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "Getting module inventory data was unsuccessful." + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:558 +#: ../../mobile/operation/agents.php:453 ../../mobile/operation/modules.php:769 +#: ../../mobile/operation/agent.php:385 +#: ../../mobile/operation/visualmap.php:143 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:864 +#: ../../mobile/operation/tactical.php:239 +msgid "Loading..." +msgstr "Loading..." + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:38 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:97 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:289 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 +msgid "Transactions List" +msgstr "List of transactions" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:72 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:377 +msgid "Edit Transaction" +msgstr "Edit transaction" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "Go back to phases list" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "Transactional Map - Phase - " + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "This agent has no assigned policy." + +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../include/functions_events.php:2419 +msgid "V." +msgstr "V." + +#: ../../enterprise/operation/agentes/policy_view.php:69 +msgid "Policy outdate" +msgstr "Policy expired" + +#: ../../enterprise/operation/agentes/policy_view.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:145 +msgid "Toggle the collection table" +msgstr "Toggle the collection table" + +#: ../../enterprise/operation/agentes/policy_view.php:141 +msgid "Descripttion" +msgstr "Description" + +#: ../../enterprise/operation/agentes/policy_view.php:146 +msgid "Show Collection" +msgstr "Show collection" + +#: ../../enterprise/operation/agentes/policy_view.php:205 +#: ../../enterprise/operation/agentes/policy_view.php:214 +msgid "Toggle the alert table" +msgstr "Toggle the alert table" + +#: ../../enterprise/operation/agentes/policy_view.php:206 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../operation/agentes/alerts_status.php:513 +#: ../../operation/agentes/alerts_status.php:549 +#: ../../operation/agentes/alerts_status.php:584 +#: ../../operation/agentes/alerts_status.php:617 +#: ../../operation/agentes/alerts_status.functions.php:107 +msgid "Standby" +msgstr "Standby" + +#: ../../enterprise/operation/agentes/policy_view.php:210 +#: ../../extensions/agents_alerts.php:521 +#: ../../godmode/snmpconsole/snmp_alert.php:1284 +#: ../../godmode/alerts/alert_view.php:76 +#: ../../include/functions_reporting_html.php:4185 +#: ../../include/ajax/alert_list.ajax.php:281 +#: ../../include/ajax/alert_list.ajax.php:306 +#: ../../include/functions_treeview.php:459 +#: ../../operation/agentes/alerts_status.php:525 +#: ../../operation/agentes/alerts_status.php:560 +#: ../../operation/agentes/alerts_status.php:595 +#: ../../operation/agentes/alerts_status.php:627 +msgid "Last fired" +msgstr "Last triggered" + +#: ../../enterprise/operation/agentes/policy_view.php:215 +msgid "Show Alert" +msgstr "Show alert" + +#: ../../enterprise/operation/agentes/policy_view.php:322 +#: ../../enterprise/operation/agentes/policy_view.php:331 +msgid "Toggle the module table" +msgstr "Toggle the module table" + +#: ../../enterprise/operation/agentes/policy_view.php:323 +msgid "Relationship" +msgstr "Relationship" + +#: ../../enterprise/operation/agentes/policy_view.php:332 +msgid "Show Modules" +msgstr "Show modules" + +#: ../../enterprise/operation/agentes/policy_view.php:351 +msgid "(Un-adopted)" +msgstr "(Not adopted)" + +#: ../../enterprise/operation/agentes/policy_view.php:354 +msgid "(Adopted)" +msgstr "(Adopted)" + +#: ../../enterprise/operation/agentes/policy_view.php:359 +msgid "(Un-adopted) (Unlinked)" +msgstr "(Not adopted) (Unlinked)" + +#: ../../enterprise/operation/agentes/policy_view.php:362 +msgid "(Adopted) (Unlinked)" +msgstr "(Adopted) (Unlinked)" + +#: ../../enterprise/operation/agentes/policy_view.php:371 +#: ../../godmode/agentes/module_manager.php:816 +msgid "Non initialized module" +msgstr "Non initialized module" + +#: ../../enterprise/operation/agentes/transactional_map.php:49 +msgid "Transactions list" +msgstr "List of transactions" + +#: ../../enterprise/operation/agentes/transactional_map.php:123 +msgid "Name can't be empty" +msgstr "Name cannot be empty" + +#: ../../enterprise/operation/agentes/transactional_map.php:180 +msgid "Transaction name" +msgstr "Transaction name" + +#: ../../enterprise/operation/agentes/transactional_map.php:183 +msgid "Running status" +msgstr "Running status" + +#: ../../enterprise/operation/agentes/transactional_map.php:185 +msgid "Time spent" +msgstr "Time spent" + +#: ../../enterprise/operation/agentes/transactional_map.php:186 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:444 +#: ../../operation/incidents/incident_detail.php:289 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:418 +#: ../../operation/servers/recon_view.php:112 +msgid "Updated at" +msgstr "Updated at" + +#: ../../enterprise/operation/agentes/transactional_map.php:227 +msgid "Stopped" +msgstr "Stopped" + +#: ../../enterprise/operation/agentes/transactional_map.php:233 +msgid "Starting" +msgstr "Starting" + +#: ../../enterprise/operation/agentes/transactional_map.php:235 +msgid "Stopping" +msgstr "Stopping" + +#: ../../enterprise/operation/agentes/transactional_map.php:361 +#: ../../godmode/menu.php:31 ../../godmode/setup/setup_ehorus.php:108 +#: ../../godmode/setup/setup_integria.php:493 +#: ../../operation/users/user_edit.php:695 +msgid "Start" +msgstr "Start" + +#: ../../enterprise/operation/agentes/transactional_map.php:372 +msgid "Edit phases" +msgstr "Edit phases" + +#: ../../enterprise/operation/agentes/transactional_map.php:380 +msgid "Error in phases section" +msgstr "Error in phases section" + +#: ../../enterprise/operation/agentes/transactional_map.php:402 +msgid "Create Transaction" +msgstr "Create transaction" + +#: ../../enterprise/operation/agentes/tag_view.php:32 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "Tag view" + +#: ../../enterprise/operation/agentes/tag_view.php:118 +#: ../../operation/agentes/status_monitor.php:388 +msgid "Monitor status" +msgstr "Monitor status" + +#: ../../enterprise/operation/agentes/tag_view.php:202 +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../operation/agentes/alerts_status.functions.php:91 +msgid "Only it is show tags in use." +msgstr "Show only tags in use" + +#: ../../enterprise/operation/agentes/tag_view.php:208 +#: ../../operation/agentes/status_monitor.php:452 +#: ../../operation/agentes/alerts_status.functions.php:96 +msgid "No tags" +msgstr "No tags" + +#: ../../enterprise/operation/agentes/tag_view.php:257 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:511 +msgid "Data server module" +msgstr "Data server module" + +#: ../../enterprise/operation/agentes/tag_view.php:259 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:513 +msgid "Network server module" +msgstr "Network server module" + +#: ../../enterprise/operation/agentes/tag_view.php:263 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:517 +msgid "Plugin server module" +msgstr "Plugin server module" + +#: ../../enterprise/operation/agentes/tag_view.php:267 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:521 +msgid "WMI server module" +msgstr "WMI server module" + +#: ../../enterprise/operation/agentes/tag_view.php:271 +#: ../../godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../operation/agentes/status_monitor.php:525 +msgid "Prediction server module" +msgstr "Prediction server module" + +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../enterprise/operation/agentes/tag_view.php:657 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1155 +msgid "Server type" +msgstr "Server type" + +#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../godmode/agentes/modificar_agente.php:183 +#: ../../operation/agentes/status_monitor.php:542 +msgid "Only enabled" +msgstr "Only enabled" + +#: ../../enterprise/operation/agentes/tag_view.php:285 +#: ../../godmode/agentes/modificar_agente.php:182 +#: ../../operation/agentes/status_monitor.php:543 +msgid "Only disabled" +msgstr "Only disabled" + +#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../operation/agentes/status_monitor.php:546 +msgid "Show monitors..." +msgstr "Show monitors" + +#: ../../enterprise/operation/agentes/tag_view.php:298 +#: ../../enterprise/operation/agentes/tag_view.php:656 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:561 +msgid "Data type" +msgstr "Data type" + +#: ../../enterprise/operation/agentes/tag_view.php:426 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:729 +msgid "Agent custom fields" +msgstr "Agent custom fields" + +#: ../../enterprise/operation/agentes/tag_view.php:579 +#: ../../include/functions_treeview.php:645 +#: ../../operation/agentes/estado_agente.php:710 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "Remote" + +#: ../../enterprise/operation/agentes/tag_view.php:624 +#: ../../operation/agentes/estado_agente.php:846 +msgid "Remote config" +msgstr "Remote configuration" + +#: ../../enterprise/operation/agentes/tag_view.php:659 +#: ../../enterprise/operation/services/services.service.php:177 +#: ../../enterprise/operation/services/services.list.php:435 +#: ../../extensions/realtime_graphs.php:110 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/ajax/module.php:848 +#: ../../include/class/NetworkMap.class.php:2933 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:249 +#: ../../include/functions_events.php:4174 +#: ../../operation/agentes/status_monitor.php:1178 +#: ../../operation/search_modules.php:36 +msgid "Graph" +msgstr "Graph" + +#: ../../enterprise/operation/agentes/tag_view.php:660 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:151 +#: ../../godmode/agentes/module_manager.php:651 +#: ../../operation/agentes/status_monitor.php:1183 +msgid "Warn" +msgstr "Warn" + +#: ../../enterprise/operation/agentes/tag_view.php:923 +#: ../../mobile/operation/modules.php:515 +#: ../../mobile/operation/modules.php:578 +#: ../../include/functions_modules.php:2557 +#: ../../include/functions_modules.php:3524 +#: ../../include/functions_events.php:60 +#: ../../operation/agentes/status_monitor.php:1381 +#: ../../operation/search_modules.php:96 ../../operation/events/events.php:1848 +msgid "NOT INIT" +msgstr "Not initialised" + +#: ../../enterprise/operation/agentes/tag_view.php:1063 +#: ../../include/functions_reporting.php:10081 +#: ../../include/functions_reporting.php:10090 +#, php-format +msgid "%d Total modules" +msgstr "%d Total modules" + +#: ../../enterprise/operation/agentes/tag_view.php:1064 +#: ../../include/functions_reporting.php:10082 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d Modules in normal status" + +#: ../../enterprise/operation/agentes/tag_view.php:1065 +#: ../../include/functions_reporting.php:10083 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d Modules in critical status" + +#: ../../enterprise/operation/agentes/tag_view.php:1066 +#: ../../include/functions_reporting.php:10084 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d Modules in warning status" + +#: ../../enterprise/operation/agentes/tag_view.php:1067 +#: ../../include/functions_reporting.php:10085 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d Modules in unknown status" + +#: ../../enterprise/operation/agentes/tag_view.php:1068 +#: ../../include/functions_reporting.php:10086 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d Modules in not initialized status" + +#: ../../enterprise/operation/agentes/manage_transmap.php:63 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:106 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:368 +msgid "Edit main data" +msgstr "Edit main data" + +#: ../../enterprise/operation/agentes/manage_transmap.php:82 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:125 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:387 +msgid "View Transaction" +msgstr "View transaction" + +#: ../../enterprise/operation/agentes/manage_transmap.php:113 +msgid "Return to windowed mode" +msgstr "Return to windowed mode" + +#: ../../enterprise/operation/agentes/manage_transmap.php:119 +msgid "Transactional Map - " +msgstr "Transactional Map - " + +#: ../../enterprise/operation/agentes/manage_transmap.php:128 +msgid "Transaction not found" +msgstr "Transaction not found" + +#: ../../enterprise/operation/agentes/manage_transmap.php:131 +msgid "Master lock file not found (No data to show)" +msgstr "Master lock file not found (No data to show)" + +#: ../../enterprise/operation/agentes/manage_transmap.php:134 +msgid "Transaction is stopped" +msgstr "Transaction is stopped" + +#: ../../enterprise/operation/agentes/manage_transmap.php:137 +msgid "Error, please check the transaction phases" +msgstr "Error, please check the transaction phases" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:95 +#: ../../operation/agentes/pandora_networkmap.editor.php:294 +msgid "Position X" +msgstr "Position X" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:97 +#: ../../operation/agentes/pandora_networkmap.editor.php:296 +msgid "Position Y" +msgstr "Position Y" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/agentes/pandora_networkmap.editor.php:299 +msgid "Zoom scale" +msgstr "Zoom scale" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:102 +#: ../../operation/agentes/pandora_networkmap.editor.php:304 +msgid "" +"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgstr "" +"Introduce zoom level. 1 = Highest resolution. Figures may include decimals." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +msgid "Recon task" +msgstr "Recon task" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +msgid "CIDR IP mask" +msgstr "CIDR IP mask" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:132 +#: ../../operation/agentes/pandora_networkmap.editor.php:309 +msgid "Source from recon task" +msgstr "Source from recon task" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 +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 " +"IP mask instead from the group." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:150 +#: ../../operation/agentes/pandora_networkmap.editor.php:328 +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." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:332 +msgid "Source from CIDR IP mask" +msgstr "Source from CIDR IP mask" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:166 +#: ../../operation/agentes/pandora_networkmap.editor.php:357 +msgid "Don't show subgroups:" +msgstr "Don't show subgroups:" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:200 +#: ../../operation/agentes/pandora_networkmap.editor.php:375 +msgid "Method generation networkmap" +msgstr "Network map creation method" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:215 +#: ../../operation/agentes/pandora_networkmap.editor.php:395 +msgid "Node separation" +msgstr "Node separation" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:216 +#: ../../operation/agentes/pandora_networkmap.editor.php:396 +msgid "Separation between nodes. By default 0.25" +msgstr "Separation between nodes. By default 0.25" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:218 +#: ../../operation/agentes/pandora_networkmap.editor.php:398 +msgid "Rank separation" +msgstr "Rank separation" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:219 +#: ../../operation/agentes/pandora_networkmap.editor.php:399 +msgid "" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and " +"1.0 in radial" +msgstr "" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and " +"1.0 in radial." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:221 +#: ../../operation/agentes/pandora_networkmap.editor.php:401 +msgid "Min nodes dist" +msgstr "Min nodes distance" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:222 +#: ../../operation/agentes/pandora_networkmap.editor.php:402 +msgid "Only circular. Minimum separation between all nodes. By default 1.0" +msgstr "Only circular. Minimum separation between all nodes. By default 1.0" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:224 +#: ../../operation/agentes/pandora_networkmap.editor.php:404 +msgid "Default ideal node separation" +msgstr "Ideal default node separation" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:225 +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" +msgstr "" +"Only fdp. Ideal default node separation in the layout. By default 0.3" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1204 +#: ../../include/functions_treeview.php:851 +#: ../../operation/agentes/estado_generalagente.php:654 +msgid "Interface traffic" +msgstr "Interface traffic" + +#: ../../enterprise/operation/agentes/ver_agente.php:69 +#: ../../operation/agentes/ver_agente.php:847 +msgid "Main IP" +msgstr "Main IP" + +#: ../../enterprise/operation/agentes/ver_agente.php:75 +#: ../../include/functions_events.php:4094 +#: ../../operation/agentes/ver_agente.php:859 +msgid "Last remote contact" +msgstr "Last remote contact" + +#: ../../enterprise/operation/agentes/ver_agente.php:119 +#: ../../operation/agentes/ver_agente.php:904 +msgid "Monitors down" +msgstr "Monitors down" + +#: ../../enterprise/operation/agentes/ver_agente.php:161 +#: ../../mobile/operation/groups.php:164 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:504 +#: ../../operation/agentes/ver_agente.php:945 +msgid "Alerts fired" +msgstr "Triggered alerts" + +#: ../../enterprise/operation/agentes/ver_agente.php:234 +msgid "URL Route Analyzer" +msgstr "URL Route Analyzer" + +#: ../../enterprise/operation/agentes/ver_agente.php:250 +msgid "UX Console" +msgstr "UX Console" + +#: ../../enterprise/operation/agentes/ver_agente.php:266 +msgid "WUX Console" +msgstr "WUX Console" + +#: ../../enterprise/operation/agentes/collection_view.php:53 +msgid "No collection assigned to this agent" +msgstr "No collection assigned to this agent" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:46 +msgid "Please, reset the transaction" +msgstr "Please, reset the transaction" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:85 +msgid "Successfully data updated" +msgstr "Data updated successfully" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:86 +msgid "Could not be data updated" +msgstr "Could not update data" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:130 +msgid "Transactional Map - Create Phase - " +msgstr "Transactional Map - Create Phase - " + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:145 +msgid "Index" +msgstr "Index" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:148 +msgid "Dependencies" +msgstr "Dependencies" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:149 +msgid "Enables" +msgstr "Enabled" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:214 +msgid "Not valid dependencies field" +msgstr "Dependencies field not valid" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:220 +msgid "Not valid enables field" +msgstr "Enabling field not valid" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:294 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:393 +msgid "Transactional Map - Create Transaction" +msgstr "Transactional Map - Create Transaction" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:311 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:414 +msgid "Loop interval" +msgstr "Loop interval" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "No agent selected" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +msgid "Route not found" +msgstr "Route not found" + +#: ../../enterprise/operation/agentes/agent_inventory.php:61 +msgid "This agent has not modules inventory" +msgstr "This agent does not have inventory modules." + +#: ../../enterprise/operation/agentes/agent_inventory.php:162 +#: ../../enterprise/operation/agentes/agent_inventory.php:163 +msgid "Diff view" +msgstr "Diff view" + +#: ../../enterprise/operation/agentes/ux_console_view.php:43 +msgid "No ux transaction selected." +msgstr "No UX transaction selected" + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +msgid "No ux transactions found." +msgstr "No UX transactions found" + +#: ../../enterprise/operation/agentes/ux_console_view.php:133 +#: ../../enterprise/operation/agentes/wux_console_view.php:253 +msgid "Transaction" +msgstr "Transaction" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:278 +msgid "Show transaction" +msgstr "Show transaction" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +msgid "Execution results for transaction " +msgstr "Execution results for transaction " + +#: ../../enterprise/operation/agentes/ux_console_view.php:266 +#: ../../enterprise/operation/agentes/wux_console_view.php:331 +msgid "Global results" +msgstr "Global results" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 +msgid "Transaction history" +msgstr "Transaction history" + +#: ../../enterprise/operation/agentes/wux_console_view.php:92 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "No WUX transaction selected" + +#: ../../enterprise/operation/agentes/wux_console_view.php:167 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "Phase modules not found" + +#: ../../enterprise/operation/agentes/wux_console_view.php:229 +msgid "Selected transaction has no stats" +msgstr "Selected transaction has no statistics" + +#: ../../enterprise/operation/agentes/wux_console_view.php:242 +msgid "No WUX transactions found." +msgstr "No WUX transactions found" + +#: ../../enterprise/operation/agentes/wux_console_view.php:356 +msgid "Failed: " +msgstr "Failed: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:356 +#: ../../enterprise/operation/agentes/wux_console_view.php:376 +#: ../../godmode/setup/performance.php:179 +#: ../../godmode/setup/performance.php:234 ../../general/logon_ok.php:189 +msgid "ago" +msgstr "ago" + +#: ../../enterprise/operation/agentes/wux_console_view.php:368 +#: ../../enterprise/operation/agentes/wux_console_view.php:371 +#: ../../include/functions_alerts.php:664 +msgid "Unknown status" +msgstr "Unknown status" + +#: ../../enterprise/operation/agentes/wux_console_view.php:376 +msgid "Success: " +msgstr "Success: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:382 +msgid "Total transaction time: " +msgstr "Total transaction time: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:396 +#, php-format +msgid "Execution results for transaction %s" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:525 +msgid "View all stats" +msgstr "View all statistics" + +#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../include/functions_events.php:6624 +#: ../../operation/snmpconsole/snmp_view.php:988 ../../operation/menu.php:251 +#: ../../operation/events/events.php:1706 +#: ../../operation/events/events.php:1872 +#: ../../operation/events/events.build_table.php:831 +msgid "Show more" +msgstr "Show more" + +#: ../../enterprise/operation/agentes/wux_console_view.php:609 +msgid "Invalid transaction." +msgstr "Invalid transaction" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:32 +#: ../../enterprise/operation/log/log_viewer.php:324 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" +msgstr "Log viewer" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:37 +#: ../../enterprise/operation/log/log_viewer.php:318 +#: ../../enterprise/operation/menu.php:202 +msgid "Elasticsearch Interface" +msgstr "" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:41 +msgid "" +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly " +"what are you are doing. \n" +"This view is intended to be used only by users with a knowledge of " +"Elasticsearch" +msgstr "" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:53 +msgid "Query" +msgstr "" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:59 +msgid "Execute query" +msgstr "" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:64 +msgid "Results" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:347 +msgid "All words" +msgstr "All words" + +#: ../../enterprise/operation/log/log_viewer.php:348 +msgid "Any word" +msgstr "Any word" + +#: ../../enterprise/operation/log/log_viewer.php:351 +msgid "Search mode" +msgstr "Search mode" + +#: ../../enterprise/operation/log/log_viewer.php:398 +msgid "Full context" +msgstr "Full context" + +#: ../../enterprise/operation/log/log_viewer.php:520 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:263 +msgid "Start date" +msgstr "Start date" + +#: ../../enterprise/operation/log/log_viewer.php:544 +#: ../../operation/agentes/exportdata.php:338 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:287 +msgid "End date" +msgstr "End date" + +#: ../../enterprise/operation/log/log_viewer.php:576 +msgid "Show log entries" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:577 +msgid "Graph log results" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:579 +msgid "Display mode" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:592 +msgid "Use capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:615 +msgid "Create new model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:619 +#: ../../godmode/reporting/graph_builder.main.php:157 +msgid "Horizontal bars" +msgstr "Horizontal bars" + +#: ../../enterprise/operation/log/log_viewer.php:620 +#: ../../godmode/reporting/graph_builder.main.php:158 +msgid "Vertical bars" +msgstr "Vertical bars" + +#: ../../enterprise/operation/log/log_viewer.php:622 +msgid "Graph type" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:637 +msgid "Advanced options " +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:795 +msgid "The start date cannot be greater than the end date" +msgstr "The start date cannot be greater than the end date" + +#: ../../enterprise/operation/log/log_viewer.php:928 +msgid "Add new capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:931 +msgid "Edit capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1015 +msgid "Error create new model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1042 +msgid "Error delete model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1088 +msgid "Error update model" +msgstr "" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "Cluster view" + +#: ../../enterprise/operation/menu.php:61 +#: ../../operation/agentes/ver_agente.php:1334 +#: ../../operation/agentes/ver_agente.php:1524 ../../general/sap_view.php:43 +msgid "SAP view" +msgstr "" + +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +msgstr "Transactional map" + +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "Custom SQL" + +#: ../../enterprise/operation/inventory/inventory.php:245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1697 +msgid "Last" +msgstr "Last" + +#: ../../enterprise/operation/inventory/inventory.php:248 +msgid "Order by agent" +msgstr "Order by agent" + +#: ../../enterprise/operation/inventory/inventory.php:289 +msgid "Export this list to CSV" +msgstr "Export this list to CSV" + +#: ../../enterprise/operation/services/services.service.php:116 +#: ../../enterprise/operation/services/services.service_map.php:140 +#: ../../include/lib/Dashboard/Widgets/service_map.php:162 +msgid "Service Map" +msgstr "Service map" + +#: ../../enterprise/operation/services/services.service.php:134 +msgid "No Services" +msgstr "No services" + +#: ../../enterprise/operation/services/services.service.php:249 +#: ../../enterprise/operation/services/services.list.php:524 +msgid "SLA graph" +msgstr "SLA graph" + +#: ../../enterprise/operation/services/services.service.php:260 +msgid "List of elements" +msgstr "List of elements" + +#: ../../enterprise/operation/services/services.service_map.php:160 +#: ../../extensions/agents_modules.php:872 +#: ../../extensions/module_groups.php:375 +#: ../../godmode/snmpconsole/snmp_alert.php:1460 +#: ../../include/functions_reporting_html.php:1728 +#: ../../include/lib/Dashboard/Widgets/service_map.php:322 +#: ../../operation/snmpconsole/snmp_view.php:1191 +msgid "Legend" +msgstr "Legend" + +#: ../../enterprise/operation/services/services.treeview_services.php:41 +#: ../../enterprise/operation/services/services.list.php:41 +#: ../../enterprise/operation/services/services.table_services.php:38 +msgid "Service table view" +msgstr "Service table view" + +#: ../../enterprise/operation/services/services.treeview_services.php:52 +#: ../../enterprise/operation/services/services.list.php:52 +#: ../../enterprise/operation/services/services.table_services.php:49 +msgid "Service tree view" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:101 +#: ../../enterprise/operation/services/services.list.php:244 +#: ../../enterprise/operation/services/services.table_services.php:223 +msgid "Show only favourites" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:140 +#: ../../enterprise/operation/services/services.list.php:376 +#: ../../enterprise/operation/services/services.list.php:382 +#: ../../enterprise/operation/services/services.table_services.php:352 +#: ../../enterprise/operation/services/services.table_services.php:358 +msgid "No services defined." +msgstr "No services defined" + +#: ../../enterprise/operation/services/services.treeview_services.php:224 +#: ../../godmode/groups/group_list.php:846 +msgid "Found groups" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:77 +msgid "Service deleted successfully" +msgstr "Service deleted successfully" + +#: ../../enterprise/operation/services/services.list.php:78 +msgid "Error deleting service" +msgstr "Error deleting service" + +#: ../../enterprise/operation/services/services.list.php:86 +msgid "Service forced successfully" +msgstr "Service forced successfully" + +#: ../../enterprise/operation/services/services.list.php:87 +msgid "Error service forced" +msgstr "Error forcing the service" + +#: ../../enterprise/operation/services/services.list.php:528 +msgid "Status graph" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:547 +#: ../../operation/agentes/pandora_networkmap.php:795 +msgid "Config" +msgstr "Configuration" + +#: ../../enterprise/operation/reporting/custom_reporting.php:65 +#: ../../enterprise/operation/reporting/custom_reporting.php:119 +msgid "Send by email" +msgstr "Send by e-mail" + +#: ../../enterprise/operation/reporting/custom_reporting.php:73 +msgid "ID Report" +msgstr "Report ID" + +#: ../../enterprise/operation/reporting/custom_reporting.php:147 +msgid "Send by email " +msgstr "Send by e-mail " + +#: ../../extensions/disabled/matrix_events.php:27 +msgid "Matrix events" +msgstr "Matrix Events" + +#: ../../extensions/quick_shell.php:104 ../../extensions/quick_shell.php:207 +msgid "WebService engine has not been started, please check documentation." +msgstr "WebService engine has not been started, please check documentation." + +#: ../../extensions/quick_shell.php:116 +msgid "Retry" +msgstr "Retry" + +#: ../../extensions/quick_shell.php:160 +msgid "Telnet" +msgstr "Telnet" + +#: ../../extensions/quick_shell.php:168 +msgid "Connect" +msgstr "Connect" + +#: ../../extensions/quick_shell.php:196 +msgid "Please use SSH or Telnet." +msgstr "Please use SSH or Telnet." + +#: ../../extensions/quick_shell.php:229 +msgid "" +"WebService engine is not working properly, please check documentation." +msgstr "" +"WebService engine is not working properly, please check documentation." + +#: ../../extensions/quick_shell.php:382 +#, php-format +msgid "%d Updated" +msgstr "%d Updated" + +#: ../../extensions/quick_shell.php:385 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "%d Updated, please restart WebSocket engine service" + +#: ../../extensions/quick_shell.php:395 +msgid "Quickshell" +msgstr "Quickshell" + +#: ../../extensions/quick_shell.php:405 +msgid "Gotty path" +msgstr "Gotty path" + +#: ../../extensions/quick_shell.php:415 +msgid "Gotty host" +msgstr "Gotty host" + +#: ../../extensions/quick_shell.php:425 +msgid "Gotty ssh port" +msgstr "Gotty ssh port" + +#: ../../extensions/quick_shell.php:435 +msgid "Gotty telnet port" +msgstr "Gotty telnet port" + +#: ../../extensions/quick_shell.php:452 +msgid "Gotty user" +msgstr "Gotty user" + +#: ../../extensions/quick_shell.php:462 +msgid "Gotty password" +msgstr "Gotty password" + +#: ../../extensions/quick_shell.php:501 +msgid "QuickShell" +msgstr "QuickShell" + +#: ../../extensions/extension_uploader.php:29 +msgid "Uploader extension" +msgstr "Upload extension" + +#: ../../extensions/extension_uploader.php:69 +msgid "Success to upload extension" +msgstr "Extension uploaded successfully" + +#: ../../extensions/extension_uploader.php:70 +msgid "Fail to upload extension" +msgstr "Error uploading the extension" + +#: ../../extensions/extension_uploader.php:79 +msgid "Upload extension" +msgstr "Upload extension" + +#: ../../extensions/extension_uploader.php:80 +msgid "Upload the extension as a zip file." +msgstr "Upload the extension as a zip file." + +#: ../../extensions/extension_uploader.php:82 +msgid "Upload enterprise extension" +msgstr "Upload Enterprise extension" + +#: ../../extensions/extension_uploader.php:95 +msgid "Extension uploader" +msgstr "Extension uploader" + +#: ../../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:71 +#, 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:79 +#, 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:88 +msgid "Error the report haven't name." +msgstr "Error: the report is unnamed." + +#: ../../extensions/resource_registration.php:94 +msgid "Error the report haven't group." +msgstr "Error: the report is not in any available group." + +#: ../../extensions/resource_registration.php:106 +#, php-format +msgid "Success create '%s' report." +msgstr "Report '%s' created successfully" + +#: ../../extensions/resource_registration.php:107 +#, php-format +msgid "Error create '%s' report." +msgstr "Error creating '%s' report" + +#: ../../extensions/resource_registration.php:384 +#: ../../extensions/resource_registration.php:406 +#: ../../extensions/resource_registration.php:417 +#, php-format +msgid "Success add '%s' content." +msgstr "Success adding the '%s' content" + +#: ../../extensions/resource_registration.php:394 +#, php-format +msgid "Success add '%s' SLA." +msgstr "Success adding the '%s' SLA" + +#: ../../extensions/resource_registration.php:395 +#, php-format +msgid "Error add '%s' SLA." +msgstr "Error adding the '%s' SLA" + +#: ../../extensions/resource_registration.php:438 +#, 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:481 +#, 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:489 +#, 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:501 +#, php-format +msgid "Success create '%s' visual map." +msgstr "Success creating the '%s' visual map" + +#: ../../extensions/resource_registration.php:502 +#, php-format +msgid "Error create '%s' visual map." +msgstr "Error creating the '%s' visual map" + +#: ../../extensions/resource_registration.php:663 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "Success creating item type '%d' on the visual map." + +#: ../../extensions/resource_registration.php:664 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "Error creating the '%d' visual map" + +#: ../../extensions/resource_registration.php:683 +#: ../../extensions/resource_registration.php:699 +#, 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:684 +#: ../../extensions/resource_registration.php:700 +#, 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:960 +#, php-format +msgid "Success create '%s' component." +msgstr "Success creating '%s' component" + +#: ../../extensions/resource_registration.php:961 +#, php-format +msgid "Error create '%s' component." +msgstr "Error creating '%s' component" + +#: ../../extensions/resource_registration.php:1024 +#: ../../extensions/resource_registration.php:1067 +msgid "Resource registration" +msgstr "Resource registration" + +#: ../../extensions/resource_registration.php:1034 +msgid "" +"This node is configured with centralized mode. Go to metaconsole to create a " +"policy." +msgstr "" +"This node is configured with centralized mode. Go to metaconsole to create a " +"policy." + +#: ../../extensions/resource_registration.php:1038 +msgid "This extension makes registering resource templates easier." +msgstr "This extension makes registering resource templates easier." + +#: ../../extensions/resource_registration.php:1038 +msgid "Here you can upload a resource template in .ptr format." +msgstr "Here you can upload a resource template in .ptr format." + +#: ../../extensions/resource_registration.php:1038 +#, php-format +msgid "" +"Please refer to our documentation for more information on how to obtain and " +"use %s resources." +msgstr "" +"Please refer to our documentation for more information on how to obtain and " +"use %s resources." + +#: ../../extensions/resource_registration.php:1038 +msgid "" +"You can get more resurces in our Public Resource Library" +msgstr "" +"You can get more resurces in our Public Resource Library" + +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:252 +msgid "API checker" +msgstr "API checker" + +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" +msgstr "%s Console URL" + +#: ../../extensions/api_checker.php:133 +msgid "API Pass" +msgstr "API password" + +#: ../../extensions/api_checker.php:151 +msgid "Action (get or set)" +msgstr "Action (get or set)" + +#: ../../extensions/api_checker.php:166 +msgid "ID 2" +msgstr "ID 2" + +#: ../../extensions/api_checker.php:171 +msgid "Return Type" +msgstr "Return Type" + +#: ../../extensions/api_checker.php:181 +msgid "Other Mode" +msgstr "Alternate mode" + +#: ../../extensions/api_checker.php:189 +msgid "Raw URL" +msgstr "Raw URL" + +#: ../../extensions/api_checker.php:200 +msgid "Call parameters" +msgstr "Call parameters" + +#: ../../extensions/api_checker.php:200 +msgid "Action: get Operation: module_last_value id: 63" +msgstr "" + +#: ../../extensions/api_checker.php:205 ../../extensions/api_checker.php:217 +msgid "Call" +msgstr "Call" + +#: ../../extensions/api_checker.php:211 +msgid "Custom URL" +msgstr "Custom URL" + +#: ../../extensions/api_checker.php:223 ../../extensions/api_checker.php:230 +#: ../../include/functions_reporting_html.php:3538 +#: ../../include/functions_db.php:1766 +msgid "Result" +msgstr "Result" + +#: ../../extensions/api_checker.php:226 ../../extensions/api_checker.php:243 msgid "Show URL" msgstr "Show URL" -#: ../../extensions/api_checker.php:216 +#: ../../extensions/api_checker.php:239 msgid "Hide URL" msgstr "Hide URL" -#: ../../extensions/db_status.php:41 ../../extensions/db_status.php:348 -#: ../../godmode/menu.php:341 +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:411 msgid "DB Schema check" msgstr "DB Schema check" -#: ../../extensions/db_status.php:54 +#: ../../extensions/db_status.php:43 msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." @@ -1914,31 +27736,31 @@ msgstr "" "the old DB to not include some fields in their tables, or suffer changes in " "their data scheme." -#: ../../extensions/db_status.php:56 +#: ../../extensions/db_status.php:46 msgid "At the moment the checks is for MySQL/MariaDB." msgstr "This check only works for MySQL-type databases" -#: ../../extensions/db_status.php:61 +#: ../../extensions/db_status.php:52 msgid "DB settings" msgstr "DB settings" -#: ../../extensions/db_status.php:65 +#: ../../extensions/db_status.php:56 msgid "DB User with privileges" msgstr "DB User with privileges" -#: ../../extensions/db_status.php:67 +#: ../../extensions/db_status.php:58 msgid "DB Password for this user" msgstr "DB Password for this user" -#: ../../extensions/db_status.php:71 +#: ../../extensions/db_status.php:62 msgid "DB Hostname" msgstr "DB Hostname" -#: ../../extensions/db_status.php:73 +#: ../../extensions/db_status.php:64 msgid "DB Name (temporal for testing)" msgstr "DB Name (testing purposes only; temporary)" -#: ../../extensions/db_status.php:81 +#: ../../extensions/db_status.php:72 msgid "Execute Test" msgstr "Run Test" @@ -1946,1213 +27768,632 @@ msgstr "Run Test" msgid "Unsuccessful connected to the DB" msgstr "Connection to the DB was unsuccessful" -#: ../../extensions/db_status.php:115 +#: ../../extensions/db_status.php:119 msgid "Unsuccessful created the testing DB" msgstr "Unable to create DB test" -#: ../../extensions/db_status.php:126 +#: ../../extensions/db_status.php:135 msgid "Unsuccessful installed tables into the testing DB" msgstr "Tables not installed correctly on the DB test." -#: ../../extensions/db_status.php:184 -msgid "Successful the DB Pandora has all tables" -msgstr "Success! Pandora FMS DB contains all tables" - -#: ../../extensions/db_status.php:185 +#: ../../extensions/db_status.php:219 #, php-format -msgid "Pandora DB could not retrieve all tables. The missing tables are (%s)" -msgstr "" -"Pandora FMS DB could not retrieve all tables. The missing tables are (%s)" +msgid "Success! %s DB contains all tables" +msgstr "Success! %s DB contains all tables" -#: ../../extensions/db_status.php:195 ../../extensions/db_status.php:251 +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "%s DB could not retrieve all tables. The missing tables are (%s)" + +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 msgid "You can execute this SQL query for to fix." msgstr "You can make this SQL query in order to fix it." -#: ../../extensions/db_status.php:248 +#: ../../extensions/db_status.php:343 #, php-format msgid "Unsuccessful the table %s has not the field %s" msgstr "Unsuccessful: the table %s doesn't have the field %s" -#: ../../extensions/db_status.php:319 +#: ../../extensions/db_status.php:408 msgid "Successful all the tables have the correct fields" msgstr "Successful: all tables have the correct fields" -#: ../../extensions/dbmanager.php:134 +#: ../../extensions/agents_alerts.php:97 +msgid "Show modules without alerts" +msgstr "Show modules without alerts" + +#: ../../extensions/agents_alerts.php:105 ../../include/functions.php:3196 +#: ../../operation/gis_maps/render_view.php:139 +msgid "1 minute" +msgstr "1 minute" + +#: ../../extensions/agents_alerts.php:106 ../../include/functions.php:3197 +#: ../../operation/gis_maps/render_view.php:140 +msgid "2 minutes" +msgstr "2 minutes" + +#: ../../extensions/agents_alerts.php:107 ../../include/functions.php:3198 +#: ../../include/ajax/module.php:163 +#: ../../operation/gis_maps/render_view.php:141 +msgid "5 minutes" +msgstr "5 minutes" + +#: ../../extensions/agents_alerts.php:108 +#: ../../operation/gis_maps/render_view.php:142 +msgid "10 minutes" +msgstr "10 minutes" + +#: ../../extensions/agents_alerts.php:143 +msgid "Agents/Alerts" +msgstr "Agents/Alerts" + +#: ../../extensions/agents_alerts.php:295 +#: ../../godmode/alerts/configure_alert_template.php:564 +#: ../../godmode/alerts/alert_list.builder.php:161 +msgid "Create Template" +msgstr "Create template" + +#: ../../extensions/agents_alerts.php:307 +#: ../../godmode/alerts/alert_list.builder.php:196 +msgid "Add alert" +msgstr "Add alert" + +#: ../../extensions/agents_alerts.php:312 +msgid "module" +msgstr "module" + +#: ../../extensions/agents_alerts.php:353 +msgid "There are no agents with alerts" +msgstr "There are no agents with alerts." + +#: ../../extensions/agents_alerts.php:390 +#: ../../godmode/massive/massive_delete_action_alerts.php:193 +#: ../../godmode/massive/massive_add_action_alerts.php:177 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +msgid "Alert templates" +msgstr "Alert templates" + +#: ../../extensions/agents_alerts.php:395 +msgid "Previous templates" +msgstr "Previous templates" + +#: ../../extensions/agents_alerts.php:439 +msgid "More templates" +msgstr "More templates" + +#: ../../extensions/agents_alerts.php:590 +msgid "Agents/Alerts view" +msgstr "Agents/Alerts view" + +#: ../../extensions/resource_exportation.php:47 +#: ../../extensions/resource_exportation.php:410 +msgid "Resource exportation" +msgstr "Resource exporting" + +#: ../../extensions/resource_exportation.php:413 +msgid "This extension makes exportation of resource template more easy." +msgstr "This extension makes exportation of resource template more easy." + +#: ../../extensions/resource_exportation.php:413 +msgid "You can export resource templates in .ptr format." +msgstr "You can export resource templates in .ptr format." + +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "Extension not installed" + +#: ../../extensions/files_repo.php:127 ../../extensions/files_repo.php:237 +msgid "Files repository manager" +msgstr "File repository manager" + +#: ../../extensions/files_repo.php:145 ../../include/functions.php:2734 +#: ../../include/functions.php:2738 +msgid "The file exceeds the maximum size" +msgstr "The file exceeds the maximum size." + +#: ../../extensions/files_repo.php:218 ../../extensions/files_repo.php:235 +msgid "Files repository" +msgstr "File repository" + +#: ../../extensions/dbmanager.php:99 msgid "Database interface" msgstr "Database interface" -#: ../../extensions/dbmanager.php:149 +#: ../../extensions/dbmanager.php:103 +#, php-format +msgid "" +"This is an advanced extension to interface with %s database directly from " +"WEB console\n" +"\t\tusing native SQL sentences. Please note that you can damage your " +"%s installation\n" +"\t\tif you don't know exactly what are you are doing,\n" +"\t\tthis means that you can severily damage your setup using this " +"extension.\n" +"\t\tThis extension is intended to be used only by experienced users\n" +"\t\twith a depth knowledge of %s internals." +msgstr "" +"This is an advanced extension to interface with %s database directly from " +"WEB console\n" +"\t\tusing native SQL sentences. Please note that you can damage your " +"%s installation\n" +"\t\tif you don't know exactly what are you are doing,\n" +"\t\tthis means that you can severily damage your setup using this " +"extension.\n" +"\t\tThis extension is intended to be used only by experienced users\n" +"\t\twith a depth knowledge of %s internals." + +#: ../../extensions/dbmanager.php:124 msgid "Execute SQL" msgstr "Execute SQL query" -#: ../../extensions/dbmanager.php:196 ../../godmode/menu.php:341 +#: ../../extensions/dbmanager.php:173 ../../godmode/menu.php:411 msgid "DB interface" msgstr "DB interface" -#: ../../extensions/disabled/matrix_events.php:29 -msgid "Matrix events" -msgstr "Matrix Events" +#: ../../extensions/agents_modules.php:450 +#: ../../include/functions_reports.php:776 +msgid "Agents/Modules" +msgstr "Agents/Modules" -#: ../../extensions/extension_uploader.php:28 -msgid "Uploader extension" -msgstr "Upload extension" +#: ../../extensions/agents_modules.php:513 +msgid "Agent/module view" +msgstr "Agent/module view" -#: ../../extensions/extension_uploader.php:64 -msgid "Success to upload extension" -msgstr "Extension uploaded successfully" +#: ../../extensions/agents_modules.php:550 +msgid "Filters " +msgstr "" -#: ../../extensions/extension_uploader.php:65 -msgid "Fail to upload extension" -msgstr "Error uploading the extension" +#: ../../extensions/agents_modules.php:550 +msgid "Secondary groups and agent subgroups will be taken into account." +msgstr "" -#: ../../extensions/extension_uploader.php:73 -msgid "Upload extension" -msgstr "Upload extension" +#: ../../extensions/agents_modules.php:685 +#: ../../include/functions_reporting.php:2333 +msgid "There are no agents with modules" +msgstr "There are no agents with modules" -#: ../../extensions/extension_uploader.php:75 -msgid "Upload the extension as a zip file." -msgstr "Upload the extension as a zip file." +#: ../../extensions/agents_modules.php:700 +msgid "Previous modules" +msgstr "Previous modules" -#: ../../extensions/extension_uploader.php:77 -msgid "Upload enterprise extension" -msgstr "Upload Enterprise extension" +#: ../../extensions/agents_modules.php:726 +msgid "More modules" +msgstr "More modules" -#: ../../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:4289 -msgid "Upload" -msgstr "Upload" +#: ../../extensions/agents_modules.php:859 +#: ../../include/functions_reporting_html.php:1729 +msgid "Orange cell when the module has fired alerts" +msgstr "Cell turns orange when there are alerts triggered for that module" -#: ../../extensions/extension_uploader.php:90 -msgid "Extension uploader" -msgstr "Extension uploader" +#: ../../extensions/agents_modules.php:861 +#: ../../include/functions_reporting_html.php:1730 +msgid "Red cell when the module has a critical status" +msgstr "Cell turns red when a module is in 'critical' status" -#: ../../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:1669 -#: ../../mobile/include/functions_web.php:26 -#: ../../mobile/operation/groups.php:66 ../../mobile/operation/home.php:50 -#: ../../operation/agentes/pandora_networkmap.php:567 -#: ../../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:36 -#: ../../enterprise/godmode/policies/policy_agents.php:435 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -#: ../../enterprise/meta/advanced/synchronizing.group.php:162 -msgid "Groups" -msgstr "Groups" +#: ../../extensions/agents_modules.php:864 +#: ../../include/functions_reporting_html.php:1731 +msgid "Yellow cell when the module has a warning status" +msgstr "Cell turns yellow when a module is in 'warning' status" -#: ../../extensions/files_repo/files_repo_form.php:72 -#: ../../extensions/files_repo/files_repo_list.php:59 -#: ../../godmode/agentes/agent_manager.php:289 -#: ../../godmode/agentes/agent_template.php:230 -#: ../../godmode/agentes/modificar_agente.php:477 -#: ../../godmode/agentes/module_manager.php:566 -#: ../../godmode/agentes/module_manager_editor_common.php:355 -#: ../../godmode/agentes/planned_downtime.editor.php:497 -#: ../../godmode/agentes/planned_downtime.list.php:392 -#: ../../godmode/alerts/alert_commands.php:350 -#: ../../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:88 -#: ../../godmode/events/event_responses.list.php:55 -#: ../../godmode/groups/configure_group.php:182 -#: ../../godmode/groups/group_list.php:377 -#: ../../godmode/massive/massive_edit_agents.php:376 -#: ../../godmode/massive/massive_edit_modules.php:479 -#: ../../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:238 -#: ../../godmode/reporting/graph_builder.main.php:134 -#: ../../godmode/reporting/graphs.php:156 -#: ../../godmode/reporting/reporting_builder.item_editor.php:700 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.main.php:121 -#: ../../godmode/reporting/reporting_builder.php:567 -#: ../../godmode/servers/modificar_server.php:57 -#: ../../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:149 -#: ../../godmode/snmpconsole/snmp_filters.php:224 -#: ../../godmode/tag/edit_tag.php:177 ../../godmode/tag/tag.php:156 -#: ../../godmode/tag/tag.php:200 ../../godmode/users/user_list.php:274 -#: ../../include/ajax/module.php:780 ../../include/functions_treeview.php:129 -#: ../../include/functions_treeview.php:593 -#: ../../include/functions_container.php:130 -#: ../../include/functions_events.php:1802 -#: ../../include/functions_snmp_browser.php:461 -#: ../../include/functions_reporting_html.php:123 -#: ../../include/functions_reporting_html.php:2085 -#: ../../include/functions_reporting_html.php:2118 -#: ../../include/functions_reporting_html.php:3219 -#: ../../include/functions_reporting_html.php:4099 -#: ../../mobile/operation/tactical.php:312 -#: ../../operation/agentes/custom_fields.php:64 -#: ../../operation/agentes/estado_agente.php:540 -#: ../../operation/agentes/estado_generalagente.php:200 -#: ../../operation/agentes/gis_view.php:203 -#: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../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:341 -#: ../../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:66 -#: ../../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/agentes/module_manager_editor_webux.php:153 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:109 -#: ../../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:123 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1293 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:270 -#: ../../enterprise/godmode/reporting/cluster_list.php:158 -#: ../../enterprise/godmode/services/services.elements.php:384 -#: ../../enterprise/godmode/services/services.service.php:287 -#: ../../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:4977 -#: ../../enterprise/include/functions_reporting_csv.php:266 -#: ../../enterprise/include/functions_reporting_csv.php:269 -#: ../../enterprise/include/functions_reporting_csv.php:353 -#: ../../enterprise/include/functions_reporting_csv.php:355 -#: ../../enterprise/include/functions_reporting_csv.php:385 -#: ../../enterprise/include/functions_reporting_csv.php:387 -#: ../../enterprise/include/functions_reporting_csv.php:411 -#: ../../enterprise/include/functions_reporting_csv.php:413 -#: ../../enterprise/include/functions_reporting_csv.php:438 -#: ../../enterprise/include/functions_reporting_csv.php:440 -#: ../../enterprise/include/functions_reporting_csv.php:464 -#: ../../enterprise/include/functions_reporting_csv.php:466 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:506 -#: ../../enterprise/include/functions_reporting_csv.php:563 -#: ../../enterprise/include/functions_reporting_csv.php:565 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:599 -#: ../../enterprise/include/functions_reporting_csv.php:601 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:636 -#: ../../enterprise/include/functions_reporting_csv.php:638 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../enterprise/include/functions_reporting_csv.php:675 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:708 -#: ../../enterprise/include/functions_reporting_csv.php:710 -#: ../../enterprise/include/functions_reporting_csv.php:743 -#: ../../enterprise/include/functions_reporting_csv.php:745 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:780 -#: ../../enterprise/include/functions_reporting_csv.php:782 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:817 -#: ../../enterprise/include/functions_reporting_csv.php:819 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:853 -#: ../../enterprise/include/functions_reporting_csv.php:855 -#: ../../enterprise/include/functions_reporting_csv.php:912 -#: ../../enterprise/include/functions_reporting_csv.php:914 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:949 -#: ../../enterprise/include/functions_reporting_csv.php:951 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:986 -#: ../../enterprise/include/functions_reporting_csv.php:988 -#: ../../enterprise/include/functions_reporting_csv.php:1028 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/functions_reporting_csv.php:1151 -#: ../../enterprise/include/functions_reporting_csv.php:1264 -#: ../../enterprise/include/functions_reporting_csv.php:1411 -#: ../../enterprise/include/functions_reporting_csv.php:1476 -#: ../../enterprise/include/functions_reporting_csv.php:1616 -#: ../../enterprise/include/functions_reporting_csv.php:1620 -#: ../../enterprise/include/functions_reporting_pdf.php:2256 -#: ../../enterprise/include/functions_reporting_pdf.php:2399 -#: ../../enterprise/include/functions_reporting_pdf.php:2447 -#: ../../enterprise/include/functions_reporting_pdf.php:2502 -#: ../../enterprise/include/functions_services.php:1503 -#: ../../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/meta/include/functions_autoprovision.php:383 -#: ../../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/pandora_networkmap.view.php:78 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/tag_view.php:463 -#: ../../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/agents_modules.php:866 +#: ../../include/functions_reporting_html.php:1732 +msgid "Green cell when the module has a normal status" +msgstr "Cell turns green when a module is in 'normal' status" -#: ../../extensions/files_repo/files_repo_form.php:73 -msgid "Only 200 characters are permitted" -msgstr "200 characters max." +#: ../../extensions/agents_modules.php:868 +#: ../../include/functions_reporting_html.php:1733 +msgid "Grey cell when the module has an unknown status" +msgstr "Cell turns grey when the module is in 'unknown' status" -#: ../../extensions/files_repo/files_repo_form.php:84 -#: ../../godmode/extensions.php:143 -msgid "File" -msgstr "File" +#: ../../extensions/agents_modules.php:870 +msgid "Cell turns blue when the module is in 'not initialize' status" +msgstr "Cell turns blue when the module is in 'not initialize' status" -#: ../../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/agents_modules.php:883 +msgid "Agents/Modules view" +msgstr "Agent/Module view" -#: ../../extensions/files_repo/files_repo_form.php:88 -#: ../../extensions/net_tools.php:343 -#: ../../godmode/agentes/agent_conf_gis.php:88 -#: ../../godmode/agentes/agent_manager.php:514 -#: ../../godmode/agentes/agent_template.php:253 -#: ../../godmode/agentes/configure_field.php:66 -#: ../../godmode/agentes/module_manager_editor.php:534 -#: ../../godmode/agentes/planned_downtime.editor.php:639 -#: ../../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:167 -#: ../../godmode/groups/configure_group.php:221 -#: ../../godmode/groups/configure_modu_group.php:83 -#: ../../godmode/massive/massive_edit_agents.php:535 -#: ../../godmode/massive/massive_edit_modules.php:698 -#: ../../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:276 -#: ../../godmode/reporting/graph_builder.main.php:204 -#: ../../godmode/reporting/reporting_builder.main.php:38 -#: ../../godmode/reporting/visual_console_builder.data.php:194 -#: ../../godmode/reporting/visual_console_builder.elements.php:522 -#: ../../godmode/servers/manage_recontask_form.php:407 -#: ../../godmode/servers/modificar_server.php:72 -#: ../../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:213 -#: ../../godmode/setup/setup_ehorus.php:57 -#: ../../godmode/setup/setup_ehorus.php:158 -#: ../../godmode/setup/setup_general.php:241 -#: ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_visuals.php:852 -#: ../../godmode/setup/snmp_wizard.php:106 -#: ../../godmode/snmpconsole/snmp_alert.php:977 -#: ../../godmode/snmpconsole/snmp_alert.php:1232 -#: ../../godmode/snmpconsole/snmp_filters.php:197 -#: ../../godmode/snmpconsole/snmp_filters.php:237 -#: ../../godmode/snmpconsole/snmp_filters.php:252 -#: ../../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:708 -#: ../../include/ajax/alert_list.ajax.php:193 -#: ../../include/functions_pandora_networkmap.php:1733 -#: ../../include/functions_events.php:1698 -#: ../../include/functions_events.php:1736 -#: ../../include/functions_visual_map_editor.php:623 -#: ../../operation/agentes/datos_agente.php:209 -#: ../../operation/events/events_list.php:696 -#: ../../operation/reporting/reporting_viewer.php:201 -#: ../../operation/snmpconsole/snmp_view.php:517 -#: ../../operation/users/user_edit.php:483 -#: ../../enterprise/dashboard/main_dashboard.php:302 -#: ../../enterprise/dashboard/widget.php:191 -#: ../../enterprise/extensions/cron/main.php:496 -#: ../../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:303 -#: ../../enterprise/extensions/translate_string.php:310 -#: ../../enterprise/extensions/vmware/vmware_admin.php:355 -#: ../../enterprise/extensions/vmware/vmware_admin.php:490 -#: ../../enterprise/extensions/vmware/vmware_view.php:1169 -#: ../../enterprise/extensions/vmware/vmware_view.php:1430 -#: ../../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:124 -#: ../../enterprise/godmode/agentes/collections.editor.php:190 -#: ../../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:79 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:89 -#: ../../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:418 -#: ../../enterprise/godmode/setup/edit_skin.php:262 -#: ../../enterprise/godmode/setup/setup.php:270 -#: ../../enterprise/godmode/setup/setup.php:370 -#: ../../enterprise/godmode/setup/setup_history.php:84 -#: ../../enterprise/godmode/setup/setup_log_collector.php:60 -#: ../../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:106 -#: ../../enterprise/meta/advanced/metasetup.setup.php:268 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:102 -#: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../enterprise/meta/include/functions_autoprovision.php:494 -#: ../../enterprise/meta/include/functions_autoprovision.php:679 -#: ../../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/pandora_logs.php:29 +msgid "Cannot find file" +msgstr "Cannot find file" -#: ../../extensions/files_repo/files_repo_form.php:94 -#: ../../godmode/agentes/planned_downtime.editor.php:643 -#: ../../godmode/agentes/planned_downtime.editor.php:750 -#: ../../godmode/agentes/planned_downtime.editor.php:890 -#: ../../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:329 -#: ../../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:776 -#: ../../godmode/setup/setup_visuals.php:812 -#: ../../godmode/snmpconsole/snmp_alert.php:1317 -#: ../../godmode/users/configure_profile.php:375 -#: ../../operation/events/events_list.php:405 -#: ../../operation/events/events_list.php:432 -#: ../../operation/incidents/incident_detail.php:404 -#: ../../enterprise/dashboard/main_dashboard.php:365 -#: ../../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:184 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:330 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:181 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 -#: ../../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/reporting/cluster_builder.main.php:527 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:700 -#: ../../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:381 -#: ../../enterprise/godmode/setup/setup_acl.php:400 -#: ../../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:171 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1213 -#: ../../enterprise/meta/include/functions_autoprovision.php:598 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:235 -msgid "Add" -msgstr "Add" +#: ../../extensions/pandora_logs.php:34 +msgid "File is too large than PHP memory allocated in the system." +msgstr "File is too large for the PHP memory allocated on the system" -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Unreliable petition" -msgstr "Unreliable petition" +#: ../../extensions/pandora_logs.php:35 +msgid "The preview file is imposible." +msgstr "File preview not available" -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Please contact the administrator" -msgstr "Please contact the administrator." +#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45 +msgid "" +"The folder /var/log/pandora must have pandora:apache and its content too." +msgstr "" -#: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../godmode/agentes/configure_field.php:50 -#: ../../godmode/agentes/module_manager.php:548 -#: ../../godmode/agentes/module_manager_editor_common.php:149 -#: ../../godmode/agentes/module_manager_editor_common.php:655 -#: ../../godmode/agentes/planned_downtime.editor.php:493 -#: ../../godmode/agentes/planned_downtime.editor.php:779 -#: ../../godmode/alerts/alert_actions.php:340 -#: ../../godmode/alerts/alert_commands.php:348 -#: ../../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:77 -#: ../../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:373 -#: ../../godmode/groups/modu_group_list.php:190 -#: ../../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:119 -#: ../../godmode/netflow/nf_edit_form.php:189 -#: ../../godmode/reporting/create_container.php:211 -#: ../../godmode/reporting/graph_builder.main.php:114 -#: ../../godmode/reporting/reporting_builder.item_editor.php:670 -#: ../../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:55 -#: ../../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:266 ../../godmode/users/user_list.php:400 -#: ../../include/functions_pandora_networkmap.php:1646 -#: ../../include/functions_pandora_networkmap.php:1679 -#: ../../include/functions_pandora_networkmap.php:1686 -#: ../../include/functions_pandora_networkmap.php:1847 -#: ../../include/functions_treeview.php:79 -#: ../../include/functions_events.php:2118 -#: ../../include/functions_events.php:2169 -#: ../../include/functions_filemanager.php:580 -#: ../../include/functions_reporting_html.php:811 -#: ../../include/functions_reporting_html.php:820 -#: ../../include/functions_reporting_html.php:1649 -#: ../../include/functions_reporting_html.php:2113 -#: ../../include/functions_reporting_html.php:4098 -#: ../../mobile/operation/networkmaps.php:195 -#: ../../mobile/operation/visualmaps.php:139 -#: ../../operation/agentes/pandora_networkmap.editor.php:221 -#: ../../operation/agentes/pandora_networkmap.php:563 -#: ../../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:86 -#: ../../enterprise/dashboard/main_dashboard.php:311 -#: ../../enterprise/dashboard/main_dashboard.php:355 -#: ../../enterprise/godmode/agentes/collection_manager.php:105 -#: ../../enterprise/godmode/agentes/collection_manager.php:163 -#: ../../enterprise/godmode/agentes/inventory_manager.php:233 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:64 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:219 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:98 -#: ../../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:572 -#: ../../enterprise/godmode/policies/policy_agents.php:818 -#: ../../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:1234 -#: ../../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:112 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1283 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103 -#: ../../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:284 -#: ../../enterprise/godmode/setup/edit_skin.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:97 -#: ../../enterprise/godmode/setup/setup_skins.php:82 -#: ../../enterprise/include/functions_reporting.php:4976 -#: ../../enterprise/include/functions_reporting_pdf.php:2501 -#: ../../enterprise/include/functions_services.php:1502 -#: ../../enterprise/meta/advanced/servers.build_table.php:59 -#: ../../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_autoprovision.php:382 -#: ../../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/pandora_networkmap.view.php:69 -#: ../../enterprise/operation/agentes/policy_view.php:131 -#: ../../enterprise/operation/agentes/policy_view.php:305 -#: ../../enterprise/operation/agentes/tag_view.php:530 -#: ../../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/pandora_logs.php:64 +msgid "System logfile viewer" +msgstr "System logfile viewer" -#: ../../extensions/files_repo/files_repo_list.php:60 -#: ../../godmode/events/event_responses.editor.php:98 -#: ../../include/functions_visual_map_editor.php:109 -#: ../../include/functions_visual_map_editor.php:151 -#: ../../include/functions_visual_map_editor.php:595 -#: ../../include/functions_visual_map_editor.php:671 -#: ../../include/functions_filemanager.php:582 -#: ../../operation/incidents/incident_detail.php:455 -#: ../../enterprise/extensions/backup/main.php:100 -msgid "Size" -msgstr "Size" +#: ../../extensions/pandora_logs.php:66 +#, php-format +msgid "Use this tool to view your %s logfiles directly on the console" +msgstr "Use this tool to view your %s logfiles directly on the console" -#: ../../extensions/files_repo/files_repo_list.php:61 -#: ../../include/functions_filemanager.php:581 -msgid "Last modification" -msgstr "Last modification" +#: ../../extensions/pandora_logs.php:68 +msgid "" +"You can choose the amount of information shown in general setup (Log size " +"limit in system logs viewer extension), " +msgstr "" +"You can choose the amount of information shown in general setup (Log size " +"limit in system logs viewer extension), " -#: ../../extensions/files_repo/files_repo_list.php:86 -msgid "Copy to clipboard" -msgstr "Copy to clipboard" +#: ../../extensions/pandora_logs.php:78 +msgid "System logfiles" +msgstr "System logfiles" -#: ../../extensions/files_repo/files_repo_list.php:94 -#: ../../enterprise/extensions/backup/main.php:179 -msgid "Download" -msgstr "Download" +#: ../../extensions/plugin_registration.php:27 +#: ../../extensions/plugin_registration.php:34 +#: ../../godmode/servers/plugin.php:283 +msgid "Plugin registration" +msgstr "Plugin registration" -#: ../../extensions/files_repo/files_repo_list.php:101 -#: ../../godmode/agentes/fields_manager.php:128 -#: ../../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:1245 -#: ../../godmode/reporting/reporting_builder.list_items.php:443 -#: ../../godmode/reporting/reporting_builder.php:736 -#: ../../godmode/servers/plugin.php:157 ../../godmode/servers/plugin.php:781 -#: ../../godmode/servers/servers.build_table.php:167 -#: ../../godmode/setup/snmp_wizard.php:119 -#: ../../godmode/users/profile_list.php:389 -#: ../../godmode/users/user_list.php:465 ../../include/ajax/module.php:903 -#: ../../include/functions_pandora_networkmap.php:1711 -#: ../../include/functions_groups.php:2160 -#: ../../operation/agentes/estado_agente.php:644 -#: ../../operation/agentes/pandora_networkmap.php:570 -#: ../../operation/agentes/status_monitor.php:1126 -#: ../../operation/gis_maps/gis_map.php:163 -#: ../../operation/search_reports.php:52 -#: ../../operation/servers/recon_view.php:113 -#: ../../enterprise/extensions/cron/main.php:413 -#: ../../enterprise/extensions/cron/main.php:426 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:256 -#: ../../enterprise/godmode/agentes/collections.editor.php:172 -#: ../../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/include/functions_autoprovision.php:415 -#: ../../enterprise/meta/include/functions_autoprovision.php:568 -#: ../../enterprise/meta/include/functions_autoprovision.php:569 -#: ../../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 -#: ../../enterprise/operation/agentes/tag_view.php:592 -msgid "Edit" -msgstr "Edit" +#: ../../extensions/plugin_registration.php:31 +msgid "Plugin Registration" +msgstr "Plugin Registration" -#: ../../extensions/files_repo/files_repo_list.php:105 -#: ../../godmode/agentes/agent_manager.php:200 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:129 -#: ../../godmode/agentes/modificar_agente.php:643 -#: ../../godmode/agentes/module_manager.php:767 -#: ../../godmode/agentes/module_manager.php:775 -#: ../../godmode/agentes/module_manager.php:790 -#: ../../godmode/agentes/module_manager.php:805 -#: ../../godmode/agentes/module_manager.php:816 -#: ../../godmode/agentes/module_manager_editor_common.php:159 -#: ../../godmode/agentes/planned_downtime.editor.php:874 -#: ../../godmode/alerts/alert_actions.php:385 -#: ../../godmode/alerts/alert_actions.php:388 -#: ../../godmode/alerts/alert_commands.php:379 -#: ../../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/events/event_filter.php:146 -#: ../../godmode/groups/modu_group_list.php:205 -#: ../../godmode/groups/modu_group_list.php:207 -#: ../../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:537 -#: ../../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:144 -#: ../../godmode/netflow/nf_item_list.php:237 -#: ../../godmode/reporting/create_container.php:618 -#: ../../godmode/reporting/graphs.php:195 -#: ../../godmode/reporting/reporting_builder.php:741 -#: ../../godmode/reporting/visual_console_builder.elements.php:323 -#: ../../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:238 -#: ../../godmode/snmpconsole/snmp_filters.php:253 -#: ../../godmode/tag/tag.php:273 ../../godmode/users/configure_user.php:781 -#: ../../godmode/users/profile_list.php:390 -#: ../../godmode/users/user_list.php:467 ../../godmode/users/user_list.php:469 -#: ../../include/functions_container.php:167 -#: ../../include/functions_container.php:294 -#: ../../include/functions_events.php:1753 -#: ../../include/functions_filemanager.php:751 -#: ../../include/functions_groups.php:2167 -#: ../../operation/agentes/pandora_networkmap.php:666 -#: ../../operation/events/events.build_table.php:774 -#: ../../operation/events/events.php:878 -#: ../../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:858 -#: ../../operation/snmpconsole/snmp_view.php:864 -#: ../../operation/snmpconsole/snmp_view.php:1019 -#: ../../operation/users/user_edit.php:810 -#: ../../enterprise/dashboard/dashboards.php:155 -#: ../../enterprise/extensions/backup/main.php:238 -#: ../../enterprise/extensions/vmware/vmware_admin.php:502 -#: ../../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/agentes/module_manager_editor_webux.php:73 -#: ../../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:347 -#: ../../enterprise/godmode/policies/policy_agents.php:521 -#: ../../enterprise/godmode/policies/policy_agents.php:680 -#: ../../enterprise/godmode/policies/policy_agents.php:734 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:921 -#: ../../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:1282 -#: ../../enterprise/godmode/policies/policy_modules.php:1289 -#: ../../enterprise/godmode/policies/policy_modules.php:1318 -#: ../../enterprise/godmode/policies/policy_queue.php:460 -#: ../../enterprise/godmode/policies/policy_queue.php:496 -#: ../../enterprise/godmode/policies/policy_queue.php:512 -#: ../../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:763 -#: ../../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:1749 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 -#: ../../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/plugin_registration.php:36 +msgid "" +"This extension makes registering server plugins an easier task.\n" +"\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" +"\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " +"use Server Plugins.\n" +"\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " +msgstr "" +"This extension makes registering server plugins an easier task.\n" +"\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" +"\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " +"use Server Plugins.\n" +"\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " -#: ../../extensions/files_repo/files_repo_list.php:106 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:129 -#: ../../godmode/agentes/module_manager.php:572 -#: ../../godmode/agentes/module_manager.php:807 -#: ../../godmode/agentes/module_manager.php:824 -#: ../../godmode/agentes/module_manager_editor_common.php:720 -#: ../../godmode/agentes/planned_downtime.editor.php:824 -#: ../../godmode/agentes/planned_downtime.editor.php:829 -#: ../../godmode/agentes/planned_downtime.editor.php:877 -#: ../../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:351 -#: ../../godmode/alerts/alert_list.list.php:711 -#: ../../godmode/alerts/alert_templates.php:345 -#: ../../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:191 -#: ../../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:539 -#: ../../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:146 ../../godmode/netflow/nf_edit.php:158 -#: ../../godmode/netflow/nf_item_list.php:239 -#: ../../godmode/netflow/nf_item_list.php:250 -#: ../../godmode/reporting/create_container.php:564 -#: ../../godmode/reporting/create_container.php:619 -#: ../../godmode/reporting/graph_builder.graph_editor.php:208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:249 -#: ../../godmode/reporting/graphs.php:196 -#: ../../godmode/reporting/graphs.php:211 -#: ../../godmode/reporting/map_builder.php:262 -#: ../../godmode/reporting/reporting_builder.list_items.php:445 -#: ../../godmode/reporting/reporting_builder.list_items.php:472 -#: ../../godmode/reporting/reporting_builder.list_items.php:491 -#: ../../godmode/reporting/reporting_builder.list_items.php:551 -#: ../../godmode/reporting/reporting_builder.php:745 -#: ../../godmode/reporting/reporting_builder.php:789 -#: ../../godmode/reporting/visual_console_builder.elements.php:524 -#: ../../godmode/servers/recon_script.php:350 -#: ../../godmode/servers/servers.build_table.php:180 -#: ../../godmode/setup/gis.php:64 ../../godmode/setup/links.php:137 -#: ../../godmode/setup/news.php:225 ../../godmode/setup/setup_visuals.php:786 -#: ../../godmode/setup/setup_visuals.php:817 -#: ../../godmode/setup/snmp_wizard.php:122 -#: ../../godmode/snmpconsole/snmp_alert.php:1201 -#: ../../godmode/snmpconsole/snmp_alert.php:1237 -#: ../../godmode/snmpconsole/snmp_filters.php:239 -#: ../../godmode/snmpconsole/snmp_filters.php:254 -#: ../../godmode/update_manager/update_manager.messages.php:91 -#: ../../godmode/update_manager/update_manager.messages.php:165 -#: ../../godmode/users/user_list.php:467 -#: ../../include/functions_pandora_networkmap.php:1006 -#: ../../include/functions_container.php:168 -#: ../../include/functions_container.php:295 -#: ../../include/functions_groups.php:2167 -#: ../../operation/agentes/pandora_networkmap.php:571 -#: ../../operation/agentes/pandora_networkmap.php:666 -#: ../../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:858 -#: ../../operation/snmpconsole/snmp_view.php:864 -#: ../../operation/snmpconsole/snmp_view.php:1019 -#: ../../operation/snmpconsole/snmp_view.php:1044 -#: ../../enterprise/dashboard/dashboards.php:93 -#: ../../enterprise/dashboard/dashboards.php:155 -#: ../../enterprise/extensions/backup/main.php:190 -#: ../../enterprise/extensions/cron/main.php:419 -#: ../../enterprise/extensions/cron/main.php:432 -#: ../../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:688 -#: ../../enterprise/godmode/policies/policy_agents.php:929 -#: ../../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:1300 -#: ../../enterprise/godmode/policies/policy_modules.php:1324 -#: ../../enterprise/godmode/policies/policy_plugins.php:88 -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/godmode/policies/policy_queue.php:399 -#: ../../enterprise/godmode/policies/policy_queue.php:441 -#: ../../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:436 -#: ../../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/agents_setup.move_agents.php:433 -#: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../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/include/functions_autoprovision.php:425 -#: ../../enterprise/meta/include/functions_autoprovision.php:584 -#: ../../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/plugin_registration.php:86 +msgid "Cannot load INI file" +msgstr "Cannot load INI file" -#: ../../extensions/files_repo/files_repo_list.php:115 -msgid "No items" -msgstr "No items" +#: ../../extensions/plugin_registration.php:107 +msgid "Plugin exec not found. Aborting!" +msgstr "Exec plugin not found. Aborting!" -#: ../../extensions/files_repo/functions_files_repo.php:29 -#: ../../extensions/files_repo/functions_files_repo.php:40 -#: ../../include/functions_config.php:1988 +#: ../../extensions/plugin_registration.php:117 +msgid "Plugin already registered. Aborting!" +msgstr "Plugin already registered. Aborting!" + +#: ../../extensions/plugin_registration.php:281 +msgid "Plug-in Remote Registered unsuccessfull" +msgstr "Remote plugin registry unsuccessful" + +#: ../../extensions/plugin_registration.php:284 +msgid "Please check the syntax of file \"plugin_definition.ini\"" +msgstr "Please check syntax for 'plugin_definition.ini' file" + +#: ../../extensions/plugin_registration.php:403 +msgid "Module plugin registered" +msgstr "Module plugin registered" + +#: ../../extensions/plugin_registration.php:406 +msgid "Registered successfully" +msgstr "Registered successfully" + +#: ../../extensions/plugin_registration.php:417 +msgid "Register plugin" +msgstr "Register plugin" + +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 msgid "Attachment directory is not writable by HTTP Server" msgstr "Attachment directory is not writable by HTTP Server" -#: ../../extensions/files_repo/functions_files_repo.php:30 -#: ../../extensions/files_repo/functions_files_repo.php:41 +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 #, php-format msgid "Please check that the web server has write rights on the %s directory" msgstr "" "Please check whether the web server has writing permissions on the %s " "directory or not." -#: ../../extensions/files_repo/functions_files_repo.php:229 +#: ../../extensions/files_repo/functions_files_repo.php:248 msgid "The file could not be copied" msgstr "The file could not be copied." -#: ../../extensions/files_repo/functions_files_repo.php:233 +#: ../../extensions/files_repo/functions_files_repo.php:251 msgid "There was an error creating the file" msgstr "There was an error creating the file." -#: ../../extensions/files_repo/functions_files_repo.php:274 +#: ../../extensions/files_repo/functions_files_repo.php:295 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/files_repo_get_file.php:66 +msgid "Unreliable petition" +msgstr "Unreliable petition" -#: ../../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/files_repo_get_file.php:66 +msgid "Please contact the administrator" +msgstr "Please contact the administrator." -#: ../../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/files_repo_form.php:63 +msgid "Only 200 characters are permitted" +msgstr "200 characters max." -#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 -msgid "Files repository manager" -msgstr "File repository manager" +#: ../../extensions/files_repo/files_repo_form.php:74 +#: ../../godmode/extensions.php:136 +msgid "File" +msgstr "File" -#: ../../extensions/files_repo.php:133 ../../include/functions.php:2214 -#: ../../include/functions.php:2217 -msgid "The file exceeds the maximum size" -msgstr "The file exceeds the maximum size." +#: ../../extensions/files_repo/files_repo_form.php:77 +#: ../../extensions/files_repo/files_repo_form.php:83 +#: ../../extensions/files_repo/files_repo_list.php:90 +msgid "Public link" +msgstr "Public link" -#: ../../extensions/files_repo.php:166 -#: ../../godmode/agentes/planned_downtime.list.php:107 -#: ../../godmode/alerts/alert_actions.php:332 -#: ../../godmode/alerts/alert_commands.php:337 -#: ../../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:250 -#: ../../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:94 -#: ../../godmode/reporting/reporting_builder.php:446 -#: ../../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:128 -#: ../../godmode/users/configure_user.php:478 -#: ../../godmode/users/profile_list.php:94 -#: ../../godmode/users/user_list.php:147 ../../godmode/users/user_list.php:188 -#: ../../operation/events/events.php:562 -#: ../../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:113 -#: ../../enterprise/dashboard/dashboards.php:53 -#: ../../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/meta/advanced/agents_setup.move_agents.php:225 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:53 -#: ../../enterprise/operation/agentes/transactional_map.php:132 -msgid "Successfully deleted" -msgstr "Successfully deleted" +#: ../../extensions/files_repo/files_repo_list.php:56 +#: ../../include/functions_filemanager.php:620 +msgid "Last modification" +msgstr "Last modification" -#: ../../extensions/files_repo.php:166 -#: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_commands.php:338 -#: ../../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:447 -#: ../../godmode/setup/gis.php:55 ../../godmode/setup/news.php:98 -#: ../../godmode/users/configure_user.php:479 -#: ../../operation/agentes/pandora_networkmap.php:427 -#: ../../operation/events/events.php:563 -#: ../../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:114 -#: ../../enterprise/dashboard/dashboards.php:54 -#: ../../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:96 -#: ../../enterprise/godmode/policies/policy_agents.php:118 -#: ../../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:1128 -#: ../../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/files_repo_list.php:87 +msgid "Copy to clipboard" +msgstr "Copy to clipboard" -#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 -msgid "Files repository" -msgstr "File repository" +#: ../../extensions/files_repo/files_repo_list.php:119 +msgid "No items" +msgstr "No items" -#: ../../extensions/insert_data.php:56 +#: ../../extensions/module_groups.php:48 +msgid "Counters Module" +msgstr "Counters Module" + +#: ../../extensions/module_groups.php:49 +msgid "Alerts_Fired" +msgstr "Alerts_Fired" + +#: ../../extensions/module_groups.php:51 +msgid "warning" +msgstr "warning" + +#: ../../extensions/module_groups.php:54 +msgid "Not_init" +msgstr "Not_init" + +#: ../../extensions/module_groups.php:248 +msgid "Combined table of agent group and module group" +msgstr "Combined table of agent group and module group" + +#: ../../extensions/module_groups.php:262 +msgid "Search by agent group" +msgstr "Search by agent group" + +#: ../../extensions/module_groups.php:266 +msgid "Search by module group" +msgstr "Search by module group" + +#: ../../extensions/module_groups.php:376 +msgid "" +"Orange cell when the module group and agent have at least one alarm fired." +msgstr "" +"Cell turns orange when the module and agent groups have at least one alarm " +"triggered." + +#: ../../extensions/module_groups.php:377 +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 turns red when the module and agent groups have at least one module in " +"critical status. The others may be in any status." + +#: ../../extensions/module_groups.php:378 +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 turns yellow when module and agent groups have at least one module in " +"warning status. The others may be in green or grey status." + +#: ../../extensions/module_groups.php:379 +msgid "" +"Grey cell when the module group and agent have at least one in unknown " +"status and the others in green status" +msgstr "" +"Cell turns 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:380 +msgid "" +"Green cell when the module group and agent have all modules in OK status" +msgstr "" +"Cell turns green when all modules in the module and agent groups are in " +"normal status." + +#: ../../extensions/module_groups.php:381 +msgid "" +"Blue cell when the module group and agent have all modules in not init " +"status." +msgstr "" +"Cell turns blue if all modules in the module and agent groups are in non-" +"initialized status." + +#: ../../extensions/module_groups.php:385 +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 columns, and agent groups in rows. Cells " +"show all modules." + +#: ../../extensions/module_groups.php:386 +msgid "There are no defined groups or module groups" +msgstr "There are no agent or module groups defined." + +#: ../../extensions/module_groups.php:406 ../../godmode/menu.php:90 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../operation/tree.php:74 +msgid "Module groups" +msgstr "Module groups" + +#: ../../extensions/net_tools.php:140 +#: ../../godmode/agentes/configurar_agente.php:785 +#: ../../godmode/agentes/configurar_agente.php:934 +msgid "The ip or dns name entered cannot be resolved" +msgstr "The IP address or DNS name entered cannot be resolved" + +#: ../../extensions/net_tools.php:146 +msgid "Traceroute executable does not exist." +msgstr "Traceroute executable does not exist." + +#: ../../extensions/net_tools.php:148 +msgid "Traceroute to " +msgstr "Traceroute to " + +#: ../../extensions/net_tools.php:158 +msgid "Ping executable does not exist." +msgstr "Ping executable does not exist." + +#: ../../extensions/net_tools.php:160 +#, php-format +msgid "Ping to %s" +msgstr "Ping %s" + +#: ../../extensions/net_tools.php:170 +msgid "Nmap executable does not exist." +msgstr "Nmap executable does not exist." + +#: ../../extensions/net_tools.php:172 +msgid "Basic TCP Scan on " +msgstr "Perform basic TCP Scan on " + +#: ../../extensions/net_tools.php:180 +msgid "Domain and IP information for " +msgstr "Domain and IP information on " + +#: ../../extensions/net_tools.php:184 +msgid "Dig executable does not exist." +msgstr "Dig executable does not exist." + +#: ../../extensions/net_tools.php:193 +msgid "Whois executable does not exist." +msgstr "Whois executable does not exist." + +#: ../../extensions/net_tools.php:211 +msgid "SNMP information for " +msgstr "SNMP information on " + +#: ../../extensions/net_tools.php:212 +msgid "Uptime" +msgstr "Uptime" + +#: ../../extensions/net_tools.php:215 ../../extensions/net_tools.php:227 +msgid "Target unreachable." +msgstr "Target unreachable." + +#: ../../extensions/net_tools.php:222 +msgid "Device info" +msgstr "Device info" + +#: ../../extensions/net_tools.php:240 +msgid "Interface" +msgstr "Interface" + +#: ../../extensions/net_tools.php:320 +msgid "The agent hasn't got IP" +msgstr "The agent doesn't have an IP yet." + +#: ../../extensions/net_tools.php:350 +msgid "Traceroute" +msgstr "Traceroute" + +#: ../../extensions/net_tools.php:351 +msgid "Ping host & Latency" +msgstr "Ping host & Latency" + +#: ../../extensions/net_tools.php:352 +msgid "SNMP Interface status" +msgstr "SNMP Interface status" + +#: ../../extensions/net_tools.php:353 +msgid "Basic TCP Port Scan" +msgstr "Basic TCP Port Scan" + +#: ../../extensions/net_tools.php:354 +msgid "DiG/Whois Lookup" +msgstr "Look up DiG/Whois" + +#: ../../extensions/net_tools.php:359 +msgid "Please select" +msgstr "Please select" + +#: ../../extensions/net_tools.php:382 +msgid "SNMP Version" +msgstr "SNMP Version" + +#: ../../extensions/net_tools.php:395 ../../include/ajax/events.php:1716 +#: ../../include/functions_events.php:3580 +msgid "Execute" +msgstr "Execute" + +#: ../../extensions/net_tools.php:430 ../../extensions/net_tools.php:505 +msgid "Config Network Tools" +msgstr "Configure Network Tools" + +#: ../../extensions/net_tools.php:456 ../../extensions/net_tools.php:457 +msgid "Set the paths." +msgstr "Set paths" + +#: ../../extensions/net_tools.php:476 +msgid "Traceroute path" +msgstr "Traceroute path" + +#: ../../extensions/net_tools.php:479 +msgid "Ping path" +msgstr "Ping path" + +#: ../../extensions/net_tools.php:482 +msgid "Nmap path" +msgstr "Nmap path" + +#: ../../extensions/net_tools.php:485 +msgid "Dig path" +msgstr "Dig path" + +#: ../../extensions/net_tools.php:488 +msgid "Snmpget path" +msgstr "Snmpget path" + +#: ../../extensions/insert_data.php:58 msgid "Insert data" msgstr "Insert data" -#: ../../extensions/insert_data.php:93 +#: ../../extensions/insert_data.php:86 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 +#: ../../extensions/insert_data.php:122 #, php-format msgid "Can't save agent (%s), module (%s) data xml." msgstr "Cannot save agent (%s), module (%s) XML data" -#: ../../extensions/insert_data.php:137 +#: ../../extensions/insert_data.php:131 #, php-format msgid "Save agent (%s), module (%s) data xml." msgstr "(%s) agent saved, (%s) module XML data" -#: ../../extensions/insert_data.php:146 +#: ../../extensions/insert_data.php:142 #, php-format msgid "" "Please check that the directory \"%s\" is writeable by the apache user.

You can get more plugins in our Public Resource Library " -msgstr "" -"This extension makes registering server plugins an easier task\n" -"\t\t\t\t\t\tHere you can upload a server plugin in Pandora FMS 3.x zipped " -"format (.pspz). \n" -"\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " -"use Pandora FMS Server Plugins.\n" -"\t\t\t\t\t\t

You can get more plugins from our Public Resource Library. " - -#: ../../extensions/plugin_registration.php:84 -msgid "Cannot load INI file" -msgstr "Cannot load INI file" - -#: ../../extensions/plugin_registration.php:107 -msgid "Plugin exec not found. Aborting!" -msgstr "Exec plugin not found. Aborting!" - -#: ../../extensions/plugin_registration.php:120 -msgid "Plugin already registered. Aborting!" -msgstr "Plugin already registered. Aborting!" - -#: ../../extensions/plugin_registration.php:291 -msgid "Plug-in Remote Registered unsuccessfull" -msgstr "Remote plugin registry unsuccessful" - -#: ../../extensions/plugin_registration.php:293 -msgid "Please check the syntax of file \"plugin_definition.ini\"" -msgstr "Please check syntax for 'plugin_definition.ini' file" - -#: ../../extensions/plugin_registration.php:417 -msgid "Module plugin registered" -msgstr "Module plugin registered" - -#: ../../extensions/plugin_registration.php:422 -#: ../../godmode/agentes/module_manager_editor_plugin.php:50 -#: ../../godmode/massive/massive_edit_modules.php:671 -#: ../../godmode/massive/massive_edit_plugins.php:287 -#: ../../godmode/modules/manage_network_components_form_plugin.php:22 -#: ../../enterprise/extensions/vmware/vmware_admin.php:360 -msgid "Plugin" -msgstr "Plugin" - -#: ../../extensions/plugin_registration.php:422 -msgid "Registered successfully" -msgstr "Registered successfully" - -#: ../../extensions/plugin_registration.php:432 -msgid "Register plugin" -msgstr "Register plugin" - -#: ../../extensions/realtime_graphs.php:29 -#: ../../extensions/realtime_graphs.php:136 +#: ../../extensions/realtime_graphs.php:33 +#: ../../extensions/realtime_graphs.php:211 msgid "Realtime graphs" msgstr "Real-time graphs" -#: ../../extensions/realtime_graphs.php:61 -msgid "Pandora Server CPU" -msgstr "Pandora FMS Server CPU" +#: ../../extensions/realtime_graphs.php:98 +#, php-format +msgid "%s Server CPU" +msgstr "%s Server CPU" -#: ../../extensions/realtime_graphs.php:62 -msgid "Pandora Server Pending packets" -msgstr "Pending packages from Pandora FMS Server" +#: ../../extensions/realtime_graphs.php:99 +#, php-format +msgid "Pending packages from %s Server" +msgstr "Pending packages from %s Server" -#: ../../extensions/realtime_graphs.php:63 -msgid "Pandora Server Disk IO Wait" -msgstr "Pandora FMS Server Disk IO Wait" +#: ../../extensions/realtime_graphs.php:100 +#, php-format +msgid "%s Server Disk IO Wait" +msgstr "%s Server Disk IO Wait" -#: ../../extensions/realtime_graphs.php:64 -msgid "Pandora Server Apache load" -msgstr "Pandora FMS Server Apache load" +#: ../../extensions/realtime_graphs.php:101 +#, php-format +msgid "%s Server Apache load" +msgstr "%s Server Apache load" -#: ../../extensions/realtime_graphs.php:65 -msgid "Pandora Server MySQL load" -msgstr "Pandora FMS Server MySQL load" +#: ../../extensions/realtime_graphs.php:102 +#, php-format +msgid "%s Server MySQL load" +msgstr "%s Server MySQL load" -#: ../../extensions/realtime_graphs.php:66 -msgid "Pandora Server load" -msgstr "Pandora FMS Server load" +#: ../../extensions/realtime_graphs.php:103 +#, php-format +msgid "%s Server load" +msgstr "%s Server load" -#: ../../extensions/realtime_graphs.php:67 +#: ../../extensions/realtime_graphs.php:104 msgid "SNMP Interface throughput" msgstr "SNMP Interface throughput" -#: ../../extensions/realtime_graphs.php:72 ../../include/ajax/module.php:786 -#: ../../include/functions_pandora_networkmap.php:1648 -#: ../../include/functions_events.php:2204 -#: ../../include/functions_visual_map_editor.php:56 -#: ../../operation/agentes/status_monitor.php:985 -#: ../../operation/search_modules.php:52 -#: ../../enterprise/dashboard/widgets/custom_graph.php:33 -#: ../../enterprise/include/ajax/clustermap.php:67 -#: ../../enterprise/include/ajax/clustermap.php:277 -#: ../../enterprise/operation/agentes/tag_view.php:535 -#: ../../enterprise/operation/services/services.list.php:344 -#: ../../enterprise/operation/services/services.service.php:143 -msgid "Graph" -msgstr "Graph" - -#: ../../extensions/realtime_graphs.php:79 +#: ../../extensions/realtime_graphs.php:142 msgid "Refresh interval" msgstr "Refresh interval" -#: ../../extensions/realtime_graphs.php:80 +#: ../../extensions/realtime_graphs.php:144 msgid "Incremental" msgstr "Incremental" -#: ../../extensions/realtime_graphs.php:81 +#: ../../extensions/realtime_graphs.php:147 msgid "Clear graph" msgstr "Clear graph" -#: ../../extensions/realtime_graphs.php:94 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:705 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:423 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:297 -#: ../../godmode/agentes/module_manager_editor_network.php:67 -#: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/massive/massive_edit_modules.php:514 -#: ../../include/functions_snmp_browser.php:552 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:694 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:412 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:296 -msgid "Target IP" -msgstr "Target IP" - -#: ../../extensions/realtime_graphs.php:97 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 -#: ../../include/functions_snmp_browser.php:554 +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:82 +#: ../../include/functions_snmp_browser.php:660 msgid "Community" msgstr "Community" -#: ../../extensions/realtime_graphs.php:108 -#: ../../godmode/setup/snmp_wizard.php:41 -#: ../../include/functions_snmp_browser.php:447 -#: ../../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 -msgid "OID" -msgstr "OID" - -#: ../../extensions/realtime_graphs.php:111 ../../godmode/extensions.php:144 -#: ../../godmode/servers/servers.build_table.php:67 -#: ../../include/functions_snmp_browser.php:559 -#: ../../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 -msgid "Version" -msgstr "Version" - -#: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/module_manager_editor_network.php:161 +#: ../../extensions/realtime_graphs.php:176 +#: ../../godmode/agentes/module_manager_editor_network.php:266 msgid "SNMP walk" msgstr "SNMP walk" -#: ../../extensions/realtime_graphs.php:125 -#: ../../godmode/agentes/module_manager_editor_network.php:30 +#: ../../extensions/realtime_graphs.php:199 +#: ../../godmode/agentes/module_manager_editor_network.php:43 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/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 -#: ../../enterprise/dashboard/widgets/reports.php:27 -#: ../../enterprise/dashboard/widgets/reports.php:43 -#: ../../enterprise/extensions/cron/functions.php:487 -#: ../../enterprise/extensions/cron/main.php:281 -#: ../../enterprise/extensions/cron/main.php:360 -#: ../../enterprise/extensions/cron/main.php:386 -msgid "Report" -msgstr "Report" - -#: ../../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/resource_exportation.php:355 -#: ../../godmode/users/configure_user.php:587 ../../operation/menu.php:134 -#: ../../operation/menu.php:139 ../../operation/users/user_edit.php:279 -#: ../../enterprise/meta/screens/screens.visualmap.php:156 -#: ../../enterprise/meta/screens/screens.visualmap.php:160 -msgid "Visual console" -msgstr "Visual console" - -#: ../../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 "Report '%s' created successfully" - -#: ../../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 -#: ../../enterprise/extensions/resource_registration/functions.php:516 -#, 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 -#: ../../enterprise/include/functions_policies.php:4269 -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. You can upload a " -"resource template in Pandora FMS 3.x format (.ptr files) here. Please refer " -"to our documentation for more information on how to obtain and use Pandora " -"FMS resources.

You can get more resources in our Public " -"Resource Library." - -#: ../../extensions/resource_registration.php:872 -#: ../../enterprise/include/functions_policies.php:4285 -msgid "Group filter: " -msgstr "Group filter: " - -#: ../../extensions/users_connected.php:38 -#: ../../extensions/users_connected.php:122 -#: ../../extensions/users_connected.php:123 +#: ../../extensions/users_connected.php:37 +#: ../../extensions/users_connected.php:137 +#: ../../extensions/users_connected.php:138 msgid "Users connected" msgstr "Connected users" -#: ../../extensions/users_connected.php:66 +#: ../../extensions/users_connected.php:67 msgid "No other users connected" msgstr "No other users connected" -#: ../../extras/pandora_diag.php:91 -msgid "Pandora FMS Diagnostic tool" -msgstr "Pandora FMS Diagnostic tool" +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "Update Group Component" -#: ../../extras/pandora_diag.php:94 -msgid "Pandora status info" -msgstr "Pandora FMS status info" +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" +msgstr "Create Group Component" -#: ../../extras/pandora_diag.php:123 -msgid "PHP setup" -msgstr "PHP setup" +#: ../../godmode/modules/manage_nc_groups_form.php:71 +#: ../../godmode/groups/configure_group.php:138 +#: ../../godmode/groups/group_list.php:687 +#: ../../godmode/agentes/agent_manager.php:579 +#: ../../godmode/massive/massive_edit_agents.php:522 +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +#: ../../include/functions_visual_map_editor.php:866 +#: ../../include/rest-api/models/VisualConsole/Item.php:2049 +#: ../../operation/agentes/ver_agente.php:1027 +#: ../../operation/agentes/estado_generalagente.php:361 +msgid "Parent" +msgstr "Parent" -#: ../../extras/pandora_diag.php:136 ../../godmode/db/db_main.php:95 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" +msgstr "Module template management" + +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" +msgstr "Successfully deleted module from profile" + +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" +msgstr "Error deleting module from profile" + +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" +msgstr "Module added to profile successfully" + +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" +msgstr "Error adding module to profile" + +#: ../../godmode/modules/manage_network_templates_form.php:107 +msgid "Successfully updated network profile" +msgstr "Network profile updated successfully" + +#: ../../godmode/modules/manage_network_templates_form.php:108 +msgid "Error updating network profile" +msgstr "Error updating the network profile" + +#: ../../godmode/modules/manage_network_templates_form.php:126 +msgid "Successfully added network profile" +msgstr "Network profile added successfully" + +#: ../../godmode/modules/manage_network_templates_form.php:127 +msgid "Error adding network profile" +msgstr "Error adding network profile" + +#: ../../godmode/modules/manage_network_templates_form.php:133 +msgid "Cannot create a template without name" +msgstr "Cannot create a template without a name" + +#: ../../godmode/modules/manage_network_templates_form.php:207 +msgid "No modules for this profile" +msgstr "No modules for this profile" + +#: ../../godmode/modules/manage_network_templates_form.php:248 +#: ../../operation/snmpconsole/snmp_browser.php:138 +#: ../../operation/snmpconsole/snmp_browser.php:158 +msgid "Add modules" +msgstr "Add modules" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "Component group management" + +#: ../../godmode/modules/manage_nc_groups.php:63 +msgid "Could not be created. Blank name" +msgstr "Could not be created: name left blank" + +#: ../../godmode/modules/manage_nc_groups.php:112 +#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:100 +#: ../../godmode/events/event_edit_filter.php:192 +msgid "Not updated. Error updating data" +msgstr "Could not update: error updating data" + +#: ../../godmode/modules/manage_nc_groups.php:276 +msgid "There are no defined component groups" +msgstr "There are no component groups defined" + +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" +msgstr "Enterprise SNMP String" + +#: ../../godmode/modules/manage_network_components_form.php:285 +msgid "Update Network Component" +msgstr "Update Network Components" + +#: ../../godmode/modules/manage_network_components_form.php:287 +msgid "Create Network Component" +msgstr "Create Network Components" + +#: ../../godmode/modules/manage_network_components.php:201 +msgid "Remote component management" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:581 +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:671 +msgid "Max/Min" +msgstr "Max/Min" + +#: ../../godmode/modules/manage_network_components.php:707 +#: ../../include/class/ModuleTemplates.class.php:1138 +msgid "Network module" +msgstr "Network module" + +#: ../../godmode/modules/manage_network_components.php:715 +#: ../../include/class/ModuleTemplates.class.php:1146 +msgid "WMI module" +msgstr "WMI module" + +#: ../../godmode/modules/manage_network_components.php:723 +#: ../../include/class/ModuleTemplates.class.php:1154 +msgid "Plug-in module" +msgstr "Plugin module" + +#: ../../godmode/modules/manage_network_components.php:770 +msgid "There are no defined network components" +msgstr "There are no network components defined" + +#: ../../godmode/modules/manage_network_components.php:780 +msgid "Create a new network component" +msgstr "Create a new network component" + +#: ../../godmode/modules/manage_network_components.php:781 +msgid "Create a new plugin component" +msgstr "Create a new plugin component" + +#: ../../godmode/modules/manage_network_components.php:782 +msgid "Create a new WMI component" +msgstr "Create a new WMI component" + +#: ../../godmode/modules/module_list.php:26 +msgid "Defined modules" +msgstr "Defined modules" + +#: ../../godmode/modules/module_list.php:48 +msgid "Problem modifying module" +msgstr "There was a problem modifying the module" + +#: ../../godmode/modules/module_list.php:50 +msgid "Module updated successfully" +msgstr "Module updated successfully" + +#: ../../godmode/modules/manage_network_templates.php:77 +msgid "Template successfully deleted" +msgstr "Template successfully deleted" + +#: ../../godmode/modules/manage_network_templates.php:78 +msgid "Error deleting template" +msgstr "Error deleting template" + +#: ../../godmode/modules/manage_network_templates.php:112 +msgid "This template does not exist" +msgstr "This template does not exist" + +#: ../../godmode/modules/manage_network_templates.php:286 +msgid "There are no defined network profiles" +msgstr "There are no network profiles defined" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "Current setup for database maintenance" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "Database setup" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "Max. time before compacting data" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "Max. time before purging" + +#: ../../godmode/db/db_main.php:98 +#: ../../include/class/Diagnostics.class.php:225 msgid "Database size stats" msgstr "Database size stats" -#: ../../extras/pandora_diag.php:154 ../../godmode/db/db_main.php:160 +#: ../../godmode/db/db_main.php:108 +#: ../../include/class/Diagnostics.class.php:560 +#: ../../include/functions_reporting.php:11635 +msgid "Total events" +msgstr "Total amount of events" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "Total data items (tagente_datos)" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "Total log4x items (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "Total number of data string items" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "Total amount of modules configured" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "Total agent access records" + +#: ../../godmode/db/db_main.php:166 msgid "Database sanity" msgstr "Database health status" -#: ../../extras/pandora_diag.php:236 +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "Total number of unknown agents" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "Total amount of non-initialized modules" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "Last time on DB maintance" + +#: ../../godmode/db/db_main.php:208 +#, php-format +msgid "" +"Please make sure your %s Server settings are correct and that the database " +"maintenance daemon is running. It's very important to keep your database up " +"to date in order to get the best performance and results from %s." +msgstr "" + +#: ../../godmode/groups/configure_group.php:66 +#: ../../godmode/groups/configure_modu_group.php:46 +msgid "There was a problem loading group" +msgstr "Error loading the group" + +#: ../../godmode/groups/configure_group.php:85 +msgid "Update group" +msgstr "Update group" + +#: ../../godmode/groups/configure_group.php:87 +#: ../../godmode/groups/group_list.php:791 +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:146 +msgid "You have not access to the parent." +msgstr "You do not have access to the parent." + +#: ../../godmode/groups/configure_group.php:180 +msgid "Group Password" +msgstr "Group Password" + +#: ../../godmode/groups/configure_group.php:184 +msgid "Enable alert use in this group." +msgstr "" + +#: ../../godmode/groups/configure_group.php:188 +msgid "Propagate ACL" +msgstr "Propagate ACL" + +#: ../../godmode/groups/configure_group.php:188 +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:200 +#: ../../include/functions_events.php:4623 +msgid "Contact" +msgstr "Contact" + +#: ../../godmode/groups/configure_group.php:200 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "Contact information can be accessed using the _groupcontact_ macro" + +#: ../../godmode/groups/configure_group.php:204 +msgid "Information accessible through the _group_other_ macro" +msgstr "Information can be accessed using the _group_other_ macro" + +#: ../../godmode/groups/configure_group.php:210 +#: ../../godmode/users/configure_user.php:855 +#: ../../operation/users/user_edit.php:381 +msgid "Skin" +msgstr "Skin" + +#: ../../godmode/groups/configure_group.php:251 +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 are 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 to the node. " + +#: ../../godmode/groups/group_list.php:259 +msgid "Tree Group view" +msgstr "" + +#: ../../godmode/groups/group_list.php:281 +msgid "Credential Store" +msgstr "" + +#: ../../godmode/groups/group_list.php:288 +#, php-format +msgid "Groups defined in %s" +msgstr "" + +#: ../../godmode/groups/group_list.php:297 +msgid "Credential store" +msgstr "" + +#: ../../godmode/groups/group_list.php:310 +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:369 +#: ../../godmode/groups/modu_group_list.php:101 +msgid "Group successfully created" +msgstr "Group successfully created" + +#: ../../godmode/groups/group_list.php:371 +#: ../../godmode/groups/modu_group_list.php:104 +msgid "There was a problem creating group" +msgstr "Error creating the group" + +#: ../../godmode/groups/group_list.php:374 +msgid "Each group must have a different name" +msgstr "Each group must have a different name" + +#: ../../godmode/groups/group_list.php:377 +msgid "Group must have a name" +msgstr "Group must have a name" + +#: ../../godmode/groups/group_list.php:433 +#: ../../godmode/groups/modu_group_list.php:137 +msgid "Group successfully updated" +msgstr "Group successfully updated" + +#: ../../godmode/groups/group_list.php:435 +#: ../../godmode/groups/modu_group_list.php:140 +msgid "There was a problem modifying group" +msgstr "There was a problem modifying the group" + +#: ../../godmode/groups/group_list.php:477 +#, php-format +msgid "" +"The group %s could not be deleted because it is not empty in the nodes" +msgstr "" + +#: ../../godmode/groups/group_list.php:535 +msgid "" +"The group has not been deleted in the metaconsole due to an error in the " +"node database" +msgstr "" + +#: ../../godmode/groups/group_list.php:541 +#, php-format +msgid "The group %s has been deleted in the nodes" +msgstr "" + +#: ../../godmode/groups/group_list.php:570 +#: ../../godmode/groups/modu_group_list.php:211 +msgid "Group successfully deleted" +msgstr "Group successfully deleted" + +#: ../../godmode/groups/group_list.php:572 +#: ../../godmode/groups/modu_group_list.php:209 +msgid "There was a problem deleting group" +msgstr "Error deleting the group" + +#: ../../godmode/groups/group_list.php:577 +#, php-format +msgid "The group is not empty. It is use in %s." +msgstr "The group is not empty. It is used in %s." + +#: ../../godmode/groups/group_list.php:621 +#: ../../godmode/groups/group_list.php:784 +msgid "There are no defined groups" +msgstr "There are no groups defined" + +#: ../../godmode/groups/group_list.php:743 +msgid "Are you sure? This group will also be deleted in all the nodes." +msgstr "" + +#: ../../godmode/groups/group_list.php:749 +msgid "" +"The child groups will be updated to use the parent id of the deleted group" +msgstr "" + +#: ../../godmode/groups/configure_modu_group.php:28 +msgid "Module group management" +msgstr "Module group management" + +#: ../../godmode/groups/modu_group_list.php:71 +#, php-format +msgid "Module groups defined in %s" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:109 +#: ../../godmode/groups/modu_group_list.php:145 +#: ../../include/functions_api.php:9521 +msgid "Each module group must have a different name" +msgstr "Each module group must have a different name" + +#: ../../godmode/groups/modu_group_list.php:113 +#: ../../godmode/groups/modu_group_list.php:149 +#: ../../include/functions_api.php:9514 +msgid "Module group must have a name" +msgstr "The module group must be named" + +#: ../../godmode/groups/modu_group_list.php:265 +msgid "There are no defined module groups" +msgstr "There are no module groups defined" + +#: ../../godmode/groups/modu_group_list.php:273 +msgid "Create module group" +msgstr "Create module group" + +#: ../../godmode/extensions.php:26 +msgid "Defined extensions" +msgstr "Defined extensions" + +#: ../../godmode/extensions.php:31 +msgid "There are no extensions defined" +msgstr "There are no extensions defined" + +#: ../../godmode/extensions.php:139 +msgid "Godmode Function" +msgstr "Godmode Function" + +#: ../../godmode/extensions.php:140 +msgid "Godmode Menu" +msgstr "Godmode Menu" + +#: ../../godmode/extensions.php:141 +msgid "Operation Menu" +msgstr "Operation Menu" + +#: ../../godmode/extensions.php:142 +msgid "Operation Function" +msgstr "Operation Function" + +#: ../../godmode/extensions.php:143 +msgid "Login Function" +msgstr "Login Function" + +#: ../../godmode/extensions.php:144 +msgid "Agent operation tab" +msgstr "Agent operation tab" + +#: ../../godmode/extensions.php:145 +msgid "Agent godmode tab" +msgstr "Agent godmode tab" + +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Registration ID:" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:248 +msgid "Cancel registration:" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:253 +msgid "Unregister" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +msgid "Pandora FMS community reminder" +msgstr "Pandora FMS community reminder" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +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 FMS instance." + +#: ../../godmode/update_manager/update_manager.online.php:62 +#, php-format +msgid "" +"Your PHP has set memory limit in %s. To use Update Manager Online, please " +"set it to %s" +msgstr "" + +#: ../../godmode/update_manager/update_manager.online.php:75 +#, php-format +msgid "" +"Your PHP has post_max_size limited to %s. To use Update Manager Online, " +"please set it to %s" +msgstr "" + +#: ../../godmode/update_manager/update_manager.online.php:88 +#, php-format +msgid "" +"Your PHP has set maximum allowed size for uploaded files limit in %s. To use " +"Update Manager Online, please set it to %s" +msgstr "" + +#: ../../godmode/update_manager/update_manager.online.php:102 +msgid "Update Manager Online requires registration" +msgstr "" + +#: ../../godmode/update_manager/update_manager.online.php:133 +msgid "The latest version of package installed is:" +msgstr "The latest version of package installed is:" + +#: ../../godmode/update_manager/update_manager.online.php:141 +msgid "Checking for the newest package." +msgstr "Checking for the latest package" + +#: ../../godmode/update_manager/update_manager.online.php:145 +msgid "Downloading for the newest package." +msgstr "Downloading the latest package" + +#: ../../godmode/update_manager/update_manager.online.php:186 +#: ../../general/alert_enterprise.php:160 +msgid "" +"WARNING: You are just one click away from an automated update. This may " +"result in a damaged system, including loss of data and operativity. Check " +"you have a recent backup. OpenSource updates are automatically created " +"packages, and there is no WARRANTY or SUPPORT. If you need professional " +"support and warranty, please upgrade to Enterprise Version." +msgstr "" +"WARNING: You are just one click away from an automated update. This may " +"result in a damaged system, including loss of data and operativity. Check " +"you have a recent backup. OpenSource updates are automatically created " +"packages, and there is no WARRANTY or SUPPORT. If you need professional " +"support and warranty, please upgrade to Enterprise Version." + +#: ../../godmode/update_manager/update_manager.offline.php:63 +msgid "Drop the package here or" +msgstr "Please drop the package here or" + +#: ../../godmode/update_manager/update_manager.offline.php:64 +msgid "browse it" +msgstr "browse it" + +#: ../../godmode/update_manager/update_manager.offline.php:65 +msgid "The package has been uploaded successfully." +msgstr "The package has been uploaded successfully." + +#: ../../godmode/update_manager/update_manager.offline.php:66 +#, php-format +msgid "" +"Please keep in mind that this package is going to override your actual %s " +"files and that it's recommended to conduct a backup before continuing the " +"updating process." +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:67 +msgid "Click on the file below to begin." +msgstr "Please click on the file below to begin." + +#: ../../godmode/update_manager/update_manager.offline.php:68 +msgid "Updating" +msgstr "Updating" + +#: ../../godmode/update_manager/update_manager.offline.php:69 +msgid "Package updated successfully." +msgstr "Package updated successfully" + +#: ../../godmode/update_manager/update_manager.offline.php:70 +msgid "If there are any database change, it will be applied." +msgstr "If there are any database changes, they will be applied." + +#: ../../godmode/update_manager/update_manager.offline.php:101 +msgid "This update does not correspond to the next version of Pandora" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:41 +msgid "Offline update manager" +msgstr "Offline Update Manager" + +#: ../../godmode/update_manager/update_manager.php:47 +msgid "Online update manager" +msgstr "Online Update Manager" + +#: ../../godmode/update_manager/update_manager.php:53 +msgid "Update manager » Setup" +msgstr "Update Manager Setup" + +#: ../../godmode/update_manager/update_manager.php:57 +msgid "Update manager » Offline" +msgstr "Offline Update Manager" + +#: ../../godmode/update_manager/update_manager.php:61 +msgid "Update manager » Online" +msgstr "Online Update Manager" + +#: ../../godmode/users/profile_list.php:55 +#: ../../godmode/users/configure_profile.php:51 +#, php-format +msgid "Profiles defined on %s" +msgstr "" + +#: ../../godmode/users/profile_list.php:80 +#: ../../godmode/users/user_list.php:219 +msgid "There was a problem deleting the profile" +msgstr "Error deleting the profile" + +#: ../../godmode/users/profile_list.php:207 +msgid "There was a problem updating this profile" +msgstr "Error updating this profile" + +#: ../../godmode/users/profile_list.php:210 +msgid "Profile name cannot be empty" +msgstr "Profile name cannot be empty" + +#: ../../godmode/users/profile_list.php:256 +#: ../../godmode/users/profile_list.php:259 +msgid "There was a problem creating this profile" +msgstr "Error creating this profile" + +#: ../../godmode/users/profile_list.php:375 +msgid "There are no defined profiles" +msgstr "There are no defined profiles" + +#: ../../godmode/users/configure_profile.php:117 +msgid "Create profile" +msgstr "Create profile" + +#: ../../godmode/users/configure_profile.php:122 +msgid "There was a problem loading profile" +msgstr "There was a problem loading the profile" + +#: ../../godmode/users/configure_profile.php:191 +msgid "Update profile" +msgstr "Update profile" + +#: ../../godmode/users/configure_profile.php:201 +msgid "Update Profile" +msgstr "Update profile" + +#: ../../godmode/users/configure_profile.php:203 +msgid "Create Profile" +msgstr "Create profile" + +#: ../../godmode/users/configure_profile.php:224 +msgid "View agents" +msgstr "View agents" + +#: ../../godmode/users/configure_profile.php:228 +msgid "Disable agents" +msgstr "Disable agents" + +#: ../../godmode/users/configure_profile.php:232 +msgid "Edit agents" +msgstr "Edit agents" + +#: ../../godmode/users/configure_profile.php:239 +msgid "Edit alerts" +msgstr "Edit alerts" + +#: ../../godmode/users/configure_profile.php:254 +msgid "Edit events" +msgstr "Edit events" + +#: ../../godmode/users/configure_profile.php:258 +#: ../../godmode/events/events.php:88 ../../godmode/events/events.php:96 +#: ../../operation/events/events.php:748 +msgid "Manage events" +msgstr "Manage events" + +#: ../../godmode/users/configure_profile.php:265 +msgid "View reports" +msgstr "View reports" + +#: ../../godmode/users/configure_profile.php:269 +msgid "Edit reports" +msgstr "Edit reports" + +#: ../../godmode/users/configure_profile.php:273 +msgid "Manage reports" +msgstr "Manage reports" + +#: ../../godmode/users/configure_profile.php:280 +msgid "View network maps" +msgstr "View network maps" + +#: ../../godmode/users/configure_profile.php:284 +msgid "Edit network maps" +msgstr "Edit network maps" + +#: ../../godmode/users/configure_profile.php:288 +msgid "Manage network maps" +msgstr "Manage network maps" + +#: ../../godmode/users/configure_profile.php:295 +#: ../../include/functions_menu.php:509 +msgid "View visual console" +msgstr "View visual console" + +#: ../../godmode/users/configure_profile.php:299 +msgid "Edit visual console" +msgstr "Edit visual console" + +#: ../../godmode/users/configure_profile.php:303 +msgid "Manage visual console" +msgstr "Manage visual console" + +#: ../../godmode/users/configure_profile.php:310 +msgid "View incidents" +msgstr "View issues" + +#: ../../godmode/users/configure_profile.php:314 +msgid "Edit incidents" +msgstr "Edit issues" + +#: ../../godmode/users/configure_profile.php:318 +msgid "Manage incidents" +msgstr "Manage issues" + +#: ../../godmode/users/configure_profile.php:330 +msgid "Manage users" +msgstr "Manage users" + +#: ../../godmode/users/configure_profile.php:337 +msgid "Manage database" +msgstr "Manage database" + +#: ../../godmode/users/configure_profile.php:344 +#, php-format +msgid "%s management" +msgstr "" + +#: ../../godmode/users/user_list.php:145 +#, php-format +msgid "Users defined on %s" +msgstr "" + +#: ../../godmode/users/user_list.php:165 +#, php-format +msgid "Deleted user %s" +msgstr "User %s deleted" + +#: ../../godmode/users/user_list.php:172 ../../godmode/users/user_list.php:210 +msgid "There was a problem deleting the user" +msgstr "Error deleting the user" + +#: ../../godmode/users/user_list.php:187 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "User %s deleted from the Metaconsole" + +#: ../../godmode/users/user_list.php:198 +#, php-format +msgid "Deleted user %s from %s" +msgstr "User %s deleted from %s" + +#: ../../godmode/users/user_list.php:204 +#, php-format +msgid "Successfully deleted from %s" +msgstr "Successfully deleted from %s" + +#: ../../godmode/users/user_list.php:205 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "Error deleting the user from %s" + +#: ../../godmode/users/user_list.php:235 +msgid "There was a problem disabling user" +msgstr "Error disabling the user" + +#: ../../godmode/users/user_list.php:241 +msgid "There was a problem enabling user" +msgstr "Error enabling the user" + +#: ../../godmode/users/user_list.php:270 ../../godmode/users/user_list.php:274 +msgid "Search by username, fullname or email" +msgstr "Search by username, full name, or e-mail" + +#: ../../godmode/users/user_list.php:300 +msgid "Users control filter" +msgstr "User control filter" + +#: ../../godmode/users/user_list.php:328 +#: ../../godmode/users/configure_user.php:668 +#: ../../godmode/users/configure_user.php:684 +#: ../../include/functions_reporting_html.php:3996 +#: ../../operation/search_users.php:34 ../../operation/users/user_edit.php:242 +#: ../../operation/snmpconsole/snmp_view.php:821 +msgid "User ID" +msgstr "User ID" + +#: ../../godmode/users/user_list.php:333 +msgid "Profile / Group" +msgstr "Profile / Group" + +#: ../../godmode/users/user_list.php:484 +#: ../../godmode/users/configure_user.php:769 +#: ../../operation/search_users.php:52 +msgid "Administrator" +msgstr "Administrator" + +#: ../../godmode/users/user_list.php:528 ../../operation/search_users.php:75 +msgid "The user doesn't have any assigned profile/group" +msgstr "The user does not have any assigned profile/group" + +#: ../../godmode/users/user_list.php:542 +msgid "Deleting User" +msgstr "Deleting user" + +#: ../../godmode/users/user_list.php:544 +msgid "Delete from all consoles" +msgstr "Delete from all consoles" + +#: ../../godmode/users/user_list.php:544 +#, php-format +msgid "Deleting User %s from all consoles" +msgstr "Deleting user %s from all consoles" + +#: ../../godmode/users/user_list.php:562 +#: ../../godmode/users/configure_user.php:129 +msgid "Create user" +msgstr "Create user" + +#: ../../godmode/users/user_list.php:565 +#: ../../godmode/users/configure_user.php:223 +#, php-format +msgid "" +"The current authentication scheme doesn't support creating users on %s" +msgstr "" + +#: ../../godmode/users/configure_user.php:127 +msgid "Update user" +msgstr "" + +#: ../../godmode/users/configure_user.php:151 +#: ../../operation/users/user_edit_header.php:111 +msgid "User detail editor" +msgstr "User detail editor" + +#: ../../godmode/users/configure_user.php:298 +msgid "User ID cannot be empty" +msgstr "User ID field cannot be empty" + +#: ../../godmode/users/configure_user.php:304 +msgid "Invalid user ID: leading or trailing blank spaces not allowed" +msgstr "" + +#: ../../godmode/users/configure_user.php:310 +msgid "Passwords cannot be empty" +msgstr "Password field cannot be empty" + +#: ../../godmode/users/configure_user.php:316 +msgid "Passwords didn't match" +msgstr "Provided passwords do not match" + +#: ../../godmode/users/configure_user.php:369 +msgid "" +"Strict ACL is not recommended for admin users because performance could be " +"affected." +msgstr "" +"Strict ACL is not recommended for admin users because it could affect " +"overall performance." + +#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:495 +#: ../../godmode/users/configure_user.php:558 +#: ../../godmode/users/configure_user.php:565 +#: ../../godmode/users/configure_user.php:596 +#: ../../operation/users/user_edit.php:189 +#: ../../operation/users/user_edit.php:232 +msgid "User info successfully updated" +msgstr "User information successfully updated" + +#: ../../godmode/users/configure_user.php:472 +#: ../../godmode/users/configure_user.php:496 +#: ../../godmode/users/configure_user.php:559 +#: ../../godmode/users/configure_user.php:566 +#: ../../godmode/users/configure_user.php:597 +msgid "Error updating user info (no change?)" +msgstr "Error updating user information (no change?)" + +#: ../../godmode/users/configure_user.php:512 +msgid "Passwords does not match" +msgstr "Passwords do not match" + +#: ../../godmode/users/configure_user.php:586 +msgid "" +"Strict ACL is not recommended for this user. Performance could be affected." +msgstr "" +"Strict ACL is not recommended for this user. Performance could be affected." + +#: ../../godmode/users/configure_user.php:626 +msgid "Profile added successfully" +msgstr "Profile added successfully" + +#: ../../godmode/users/configure_user.php:627 +msgid "Profile cannot be added" +msgstr "Profile could not be added" + +#: ../../godmode/users/configure_user.php:661 +msgid "Update User" +msgstr "Update user" + +#: ../../godmode/users/configure_user.php:663 +msgid "Create User" +msgstr "Create user" + +#: ../../godmode/users/configure_user.php:707 +#: ../../operation/users/user_edit.php:256 +msgid "Full (display) name" +msgstr "Full (display) name" + +#: ../../godmode/users/configure_user.php:724 +#: ../../operation/users/user_edit.php:390 +msgid "Timezone" +msgstr "" + +#: ../../godmode/users/configure_user.php:724 +#: ../../operation/users/user_edit.php:390 +msgid "The timezone must be that of the associated server." +msgstr "" + +#: ../../godmode/users/configure_user.php:755 +#: ../../operation/users/user_edit.php:282 +msgid "Password confirmation" +msgstr "Password confirmation" + +#: ../../godmode/users/configure_user.php:763 +msgid "Global Profile" +msgstr "Global profile" + +#: ../../godmode/users/configure_user.php:770 +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:782 +#: ../../operation/search_users.php:61 +msgid "Standard User" +msgstr "Standard user" + +#: ../../godmode/users/configure_user.php:783 +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 its group agents, create " +"issues belonging to its groups, add notes in other issues, create personal " +"assignments or reviews and other tasks, on different profiles." + +#: ../../godmode/users/configure_user.php:804 +#: ../../operation/users/user_edit.php:275 +msgid "E-mail" +msgstr "E-mail" + +#: ../../godmode/users/configure_user.php:820 +#: ../../operation/users/user_edit.php:277 +msgid "Phone number" +msgstr "Phone number" + +#: ../../godmode/users/configure_user.php:864 +msgid "Search custom field view" +msgstr "" + +#: ../../godmode/users/configure_user.php:864 +msgid "Load by default the selected view in custom field view" +msgstr "" + +#: ../../godmode/users/configure_user.php:881 +msgid "Use global conf" +msgstr "Use global configuration" + +#: ../../godmode/users/configure_user.php:886 +#: ../../operation/users/user_edit.php:335 +msgid "Home screen" +msgstr "Home screen" + +#: ../../godmode/users/configure_user.php:886 +#: ../../operation/users/user_edit.php:335 +msgid "" +"User can customize the home page. By default, will display 'Agent Detail'. " +"Example: Select 'Other' and type " +"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 to show " +"agent detail view" +msgstr "" + +#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/events/events.php:37 ../../operation/users/user_edit.php:339 +#: ../../operation/events/events.php:722 +msgid "Event list" +msgstr "Event list" + +#: ../../godmode/users/configure_user.php:894 +#: ../../operation/users/user_edit.php:342 +#: ../../operation/agentes/alerts_status.php:178 ../../operation/menu.php:65 +msgid "Alert detail" +msgstr "Alert details" + +#: ../../godmode/users/configure_user.php:895 +msgid "External link" +msgstr "External link" + +#: ../../godmode/users/configure_user.php:945 +msgid "Metaconsole access" +msgstr "Metaconsole access" + +#: ../../godmode/users/configure_user.php:963 +msgid "Not Login" +msgstr "Login error" + +#: ../../godmode/users/configure_user.php:964 +msgid "The user with not login set only can access to API." +msgstr "The user with no access authorization can only access the API." + +#: ../../godmode/users/configure_user.php:967 +msgid "Session Time" +msgstr "Session time" + +#: ../../godmode/users/configure_user.php:968 +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/users/configure_user.php:982 +msgid "Default event filter" +msgstr "Default event filter" + +#: ../../godmode/users/configure_user.php:985 +#: ../../include/functions_config.php:448 +msgid "Disabled newsletter" +msgstr "" + +#: ../../godmode/users/configure_user.php:1000 +msgid "eHorus user access enabled" +msgstr "" + +#: ../../godmode/users/configure_user.php:1003 +#: ../../include/functions_config.php:1480 +msgid "eHorus user" +msgstr "eHorus user" + +#: ../../godmode/users/configure_user.php:1005 +#: ../../include/functions_config.php:1484 +msgid "eHorus password" +msgstr "eHorus password" + +#: ../../godmode/users/configure_user.php:1014 +msgid "Enable agents managment" +msgstr "Enable agent management" + +#: ../../godmode/users/configure_user.php:1017 +msgid "Assigned node" +msgstr "Assigned node" + +#: ../../godmode/users/configure_user.php:1017 +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:1026 +msgid "Enable node access" +msgstr "Enable node access" + +#: ../../godmode/users/configure_user.php:1026 +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/agentes/agent_template.php:67 +#: ../../include/functions_api.php:14063 +msgid "Created by template " +msgstr "Created from a template " + +#: ../../godmode/agentes/agent_template.php:154 +#: ../../include/functions_api.php:14150 +msgid "Error adding modules" +msgstr "Error adding modules" + +#: ../../godmode/agentes/agent_template.php:156 +#: ../../include/functions_api.php:14152 +msgid "Error adding modules. The following errors already exists: " +msgstr "Error adding modules. The following errors already exist: " + +#: ../../godmode/agentes/agent_template.php:161 +#: ../../include/functions_api.php:14157 +msgid "Modules successfully added" +msgstr "Modules successfully added" + +#: ../../godmode/agentes/agent_template.php:186 +msgid "Assign" +msgstr "Assign" + +#: ../../godmode/agentes/agent_template.php:267 +#: ../../mobile/operation/modules.php:736 +msgid "No modules" +msgstr "No modules" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 +msgid "" +"Optional. Substring to look for in the WQL query result. The module returns " +"1 if found, 0 if not." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +msgid "" +"Column number to retrieve from the WQL query result (starting from zero)." +msgstr "" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:330 +#: ../../operation/agentes/status_monitor.php:1172 +#: ../../operation/agentes/estado_generalagente.php:372 +msgid "Last status change" +msgstr "" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:230 +#: ../../godmode/agentes/configurar_agente.php:939 +msgid "No agent alias specified" +msgstr "No agent alias specified" + +#: ../../godmode/agentes/configurar_agente.php:353 +#: ../../include/functions_api.php:1644 +msgid "Could not be created, because name already exists" +msgstr "Could not be created, because the name already exists." + +#: ../../godmode/agentes/configurar_agente.php:355 +#: ../../include/functions_api.php:1646 +msgid "Could not be created, because IP already exists" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:406 ../../godmode/menu.php:146 +#: ../../godmode/wizards/HostDevices.class.php:1074 +msgid "Module templates" +msgstr "Module templates" + +#: ../../godmode/agentes/configurar_agente.php:457 +#: ../../operation/agentes/ver_agente.php:1221 +msgid "GIS data" +msgstr "GIS data" + +#: ../../godmode/agentes/configurar_agente.php:494 +#: ../../godmode/agentes/configurar_agente.php:649 +#: ../../operation/agentes/ver_agente.php:1234 ../../operation/menu.php:494 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../general/first_task/incidents.php:28 +msgid "Incidents" +msgstr "Issues" + +#: ../../godmode/agentes/configurar_agente.php:644 +msgid "Gis" +msgstr "Gis" + +#: ../../godmode/agentes/configurar_agente.php:686 +msgid "SNMP explorer" +msgstr "SNMP explorer" + +#: ../../godmode/agentes/configurar_agente.php:717 +#: ../../godmode/agentes/configurar_agente.php:739 ../../godmode/menu.php:103 +msgid "Resources" +msgstr "Resources" + +#: ../../godmode/agentes/configurar_agente.php:727 +msgid "Agent manager" +msgstr "Agent manager" + +#: ../../godmode/agentes/configurar_agente.php:767 +#: ../../godmode/servers/modificar_server.php:180 +msgid "Conf file deleted successfully" +msgstr "Configuration file deleted successfully" + +#: ../../godmode/agentes/configurar_agente.php:768 +#: ../../godmode/servers/modificar_server.php:181 +msgid "Could not delete conf file" +msgstr "Could not delete configuration file" + +#: ../../godmode/agentes/configurar_agente.php:812 +#: ../../godmode/agentes/configurar_agente.php:816 +msgid "No data to normalize" +msgstr "No data to normalize" + +#: ../../godmode/agentes/configurar_agente.php:821 +#, php-format +msgid "Deleted data above %f" +msgstr "Deleted data above %f" + +#: ../../godmode/agentes/configurar_agente.php:822 +#, php-format +msgid "Error normalizing module %s" +msgstr "Error normalizing module %s" + +#: ../../godmode/agentes/configurar_agente.php:949 +#, php-format +msgid "The group id %d is incorrect." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:951 +msgid "Duplicate main IP address" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1007 +msgid "There was a problem updating the agent" +msgstr "There was a problem updating the agent" + +#: ../../godmode/agentes/configurar_agente.php:1141 +msgid "There was a problem loading the agent" +msgstr "Error loading the agent" + +#: ../../godmode/agentes/configurar_agente.php:1626 +msgid "" +"There was a problem updating module. Another module already exists with the " +"same name." +msgstr "" +"Error updating the module: there is another module with the same name." + +#: ../../godmode/agentes/configurar_agente.php:1630 +msgid "" +"There was a problem updating module. Some required fields are missed: (name)" +msgstr "Error updating the module: some required fields are missing (name)" + +#: ../../godmode/agentes/configurar_agente.php:1634 +msgid "There was a problem updating module. \"No change\"" +msgstr "Error updating the module: \"no change\"" + +#: ../../godmode/agentes/configurar_agente.php:1640 +msgid "There was a problem updating module. Processing error" +msgstr "Error updating the module: processing error" + +#: ../../godmode/agentes/configurar_agente.php:1669 +msgid "Module successfully updated" +msgstr "Module successfully updated" + +#: ../../godmode/agentes/configurar_agente.php:1814 +msgid "" +"There was a problem adding module. Another module already exists with the " +"same name." +msgstr "Error adding the module: there is another module with the same name" + +#: ../../godmode/agentes/configurar_agente.php:1818 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "Error adding the module: some required fields are missing (name)" + +#: ../../godmode/agentes/configurar_agente.php:1824 +msgid "There was a problem adding module. Processing error" +msgstr "Error adding the module: processing error" + +#: ../../godmode/agentes/configurar_agente.php:1853 +#: ../../godmode/reporting/graph_builder.php:311 +msgid "Module added successfully" +msgstr "Module added successfully" + +#: ../../godmode/agentes/configurar_agente.php:2101 +msgid "There was a problem deleting the module" +msgstr "Error deleting the module" + +#: ../../godmode/agentes/configurar_agente.php:2105 +msgid "Module deleted succesfully" +msgstr "Module deleted successfully" + +#: ../../godmode/agentes/configurar_agente.php:2232 +#: ../../include/functions_api.php:10128 +#, php-format +msgid "Save by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2250 +#: ../../include/functions_api.php:10129 +#, php-format +msgid "Update by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2266 +#: ../../include/functions_api.php:10130 +#, php-format +msgid "Insert by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2335 +#: ../../godmode/agentes/configurar_agente.php:2347 +msgid "Invalid tab specified" +msgstr "Invalid tab specified" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:96 +msgid "Source module" +msgstr "Source module" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:133 +#: ../../godmode/agentes/module_manager_editor_prediction.php:151 +msgid "Select Module" +msgstr "Select Module" + +#: ../../godmode/agentes/module_manager_editor.php:691 +msgid "Invalid module type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:711 +msgid "Base options" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:735 +msgid "Module relations" +msgstr "Module relations" + +#: ../../godmode/agentes/module_manager_editor.php:825 +msgid "No module to predict" +msgstr "No module to predict" + +#: ../../godmode/agentes/module_manager_editor.php:835 +msgid "No plug-in provided" +msgstr "No plugin provided" + +#: ../../godmode/agentes/module_manager_editor.php:845 +msgid "No server provided" +msgstr "No server provided" + +#: ../../godmode/agentes/module_manager_editor.php:876 +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 in data configuration " +"are different." + +#: ../../godmode/agentes/module_manager_editor.php:914 +msgid "The File APIs are not fully supported in this browser." +msgstr "The File APIs are not fully supported in this browser." + +#: ../../godmode/agentes/module_manager_editor.php:915 +msgid "Couldn`t find the fileinput element." +msgstr "Could not find the fileinput element" + +#: ../../godmode/agentes/module_manager_editor.php:916 +msgid "" +"This browser doesn`t seem to support the files property of file inputs." +msgstr "" +"This browser does not seem to support the files property of file inputs." + +#: ../../godmode/agentes/module_manager_editor.php:917 +msgid "Please select a file before clicking Load" +msgstr "Please select a file before clicking Load" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:229 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:334 +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:475 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 +msgid "Use agent ip" +msgstr "Use agent IP" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:501 +msgid "" +"In order to use remote executions you need to enable remote execution in " +"satellite server" +msgstr "" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:617 +msgid "When selecting interfaces" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:63 +#, php-format +msgid "Agents defined in %s" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:66 +#: ../../godmode/massive/massive_operations.php:334 +msgid "" +"This node is configured with centralized mode. To delete an agent go to " +"metaconsole." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:103 +msgid "Success deleted agent." +msgstr "Agent successfully deleted" + +#: ../../godmode/agentes/modificar_agente.php:103 +msgid "Could not be deleted." +msgstr "Agent could not be deleted" + +#: ../../godmode/agentes/modificar_agente.php:110 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "It is possible that the .conf or md5 files could not be deleted." + +#: ../../godmode/agentes/modificar_agente.php:179 +msgid "Show Agents" +msgstr "Show Agents" + +#: ../../godmode/agentes/modificar_agente.php:181 +msgid "Everyone" +msgstr "Everyone" + +#: ../../godmode/agentes/modificar_agente.php:190 +msgid "Operative System" +msgstr "Operating System" + +#: ../../godmode/agentes/modificar_agente.php:211 +msgid "" +"Search filter by alias, name, description, IP address or custom fields " +"content" +msgstr "" +"Search filter by alias, name, description, IP address or custom fields " +"content" + +#: ../../godmode/agentes/modificar_agente.php:492 +msgid "Remote agent configuration" +msgstr "Remote agent configuration" + +#: ../../godmode/agentes/modificar_agente.php:492 +msgid "R" +msgstr "R" + +#: ../../godmode/agentes/modificar_agente.php:666 +msgid "Edit remote config" +msgstr "Edit remote configuration" + +#: ../../godmode/agentes/modificar_agente.php:713 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:716 +msgid "Enable agent" +msgstr "Enable agent" + +#: ../../godmode/agentes/modificar_agente.php:723 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:726 +msgid "Disable agent" +msgstr "Disable agent" + +#: ../../godmode/agentes/modificar_agente.php:736 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../operation/agentes/gis_view.php:56 +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 setup in order to select one." + +#: ../../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 will be found in its default " +"position on the map." + +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "" +"When you change the Agent position, the agent automatically activates the " +"'Ignore new GIS data' option" +msgstr "" +"When you change the position of the agent, it will automatically activate " +"the 'Ignore new GIS data' option." + +#: ../../godmode/agentes/agent_conf_gis.php:67 +msgid "Agent position" +msgstr "Agent position" + +#: ../../godmode/agentes/agent_conf_gis.php:73 +msgid "Latitude: " +msgstr "Latitude: " + +#: ../../godmode/agentes/agent_conf_gis.php:90 +msgid "Longitude: " +msgstr "Longitude: " + +#: ../../godmode/agentes/agent_conf_gis.php:107 +msgid "Altitude: " +msgstr "Altitude: " + +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:685 +msgid "Ignore new GIS data:" +msgstr "Ignore new GIS data:" + +#: ../../godmode/agentes/planned_downtime.list.php:47 +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 execute the migration again or contact the administrator" + +#: ../../godmode/agentes/planned_downtime.list.php:55 +msgid "Scheduled Downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:83 +msgid "An error occurred stopping the planned downtime" +msgstr "An error occurred when attempting to stop planned downtime." + +#: ../../godmode/agentes/planned_downtime.list.php:106 +msgid "This planned downtime is running" +msgstr "This planned downtime is running." + +#: ../../godmode/agentes/planned_downtime.list.php:157 +#: ../../godmode/agentes/planned_downtime.editor.php:697 +msgid "Once" +msgstr "Once" + +#: ../../godmode/agentes/planned_downtime.list.php:158 +#: ../../godmode/agentes/planned_downtime.list.php:446 +#: ../../godmode/agentes/planned_downtime.editor.php:698 +msgid "Periodically" +msgstr "Periodically" + +#: ../../godmode/agentes/planned_downtime.list.php:160 +msgid "Execution type" +msgstr "Execution type" + +#: ../../godmode/agentes/planned_downtime.list.php:162 +msgid "Show past downtimes" +msgstr "Show past downtimes" + +#: ../../godmode/agentes/planned_downtime.list.php:365 +#: ../../godmode/agentes/planned_downtime.export_csv.php:199 +msgid "No planned downtime" +msgstr "No planned downtime" + +#: ../../godmode/agentes/planned_downtime.list.php:398 +msgid "Name #Ag." +msgstr "Name #Ag." + +#: ../../godmode/agentes/planned_downtime.list.php:402 +#: ../../godmode/agentes/planned_downtime.editor.php:694 +#: ../../include/functions_reporting_html.php:5174 +msgid "Execution" +msgstr "Execution" + +#: ../../godmode/agentes/planned_downtime.list.php:407 +#: ../../godmode/agentes/planned_downtime.list.php:479 +msgid "Stop downtime" +msgstr "Stop downtime" + +#: ../../godmode/agentes/planned_downtime.list.php:438 +#: ../../godmode/agentes/planned_downtime.editor.php:680 +msgid "Disabled Agents" +msgstr "Disable Agents" + +#: ../../godmode/agentes/planned_downtime.list.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:681 +msgid "Disabled only Alerts" +msgstr "Disable only Alerts" + +#: ../../godmode/agentes/planned_downtime.list.php:445 +msgid "once" +msgstr "once" + +#: ../../godmode/agentes/planned_downtime.list.php:460 +msgid "Not running" +msgstr "Not running" + +#: ../../godmode/agentes/planned_downtime.list.php:555 +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:561 +msgid "WARNING: There are malformed planned downtimes" +msgstr "WARNING: there are faulty planned downtimes." + +#: ../../godmode/agentes/planned_downtime.list.php:561 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "Do you want to automatically migrate the faulty items?" + +#: ../../godmode/agentes/planned_downtime.editor.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:313 +#: ../../godmode/agentes/planned_downtime.editor.php:1235 +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:346 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:744 +msgid "" +"Not created. Error inserting data. Start time must be higher than the " +"current time" +msgstr "" +"Could not be created: error during data insertion. Start time must be higher " +"than the current time." + +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../godmode/agentes/planned_downtime.editor.php:354 +#: ../../godmode/agentes/planned_downtime.editor.php:361 +#: ../../godmode/agentes/planned_downtime.editor.php:365 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:749 +#: ../../include/functions_planned_downtimes.php:756 +#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:772 +#: ../../include/functions_planned_downtimes.php:777 +#: ../../include/functions_planned_downtimes.php:782 +#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:802 +msgid "Not created. Error inserting data" +msgstr "Not created: error inserting data" + +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:756 +msgid "The end date must be higher than the start date" +msgstr "The end date cannot be earlier than the start date." + +#: ../../godmode/agentes/planned_downtime.editor.php:354 +#: ../../include/functions_planned_downtimes.php:749 +msgid "The end date must be higher than the current time" +msgstr "End date must be after current time." + +#: ../../godmode/agentes/planned_downtime.editor.php:361 +#: ../../godmode/agentes/planned_downtime.editor.php:807 +#: ../../godmode/agentes/planned_downtime.editor.php:820 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:764 +msgid "The end time must be higher than the start time" +msgstr "End time must be after start time." + +#: ../../godmode/agentes/planned_downtime.editor.php:365 +#: ../../godmode/agentes/planned_downtime.editor.php:792 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:772 +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:417 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:816 +msgid "Each planned downtime must have a different name" +msgstr "Each planned downtime must have a different name." + +#: ../../godmode/agentes/planned_downtime.editor.php:422 +#: ../../godmode/agentes/planned_downtime.editor.php:454 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:822 +msgid "Planned downtime must have a name" +msgstr "Planned downtime must have a name." + +#: ../../godmode/agentes/planned_downtime.editor.php:467 +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:674 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "Quiet: modules will not generate events or trigger alerts." + +#: ../../godmode/agentes/planned_downtime.editor.php:674 +msgid "Disable Agents: Disables the selected agents." +msgstr "Disable Agents: disables the selected agents." + +#: ../../godmode/agentes/planned_downtime.editor.php:674 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "Disable Alerts: disables alerts for the selected agents." + +#: ../../godmode/agentes/planned_downtime.editor.php:713 +msgid "Configure the time" +msgstr "Set time" + +#: ../../godmode/agentes/planned_downtime.editor.php:719 +#: ../../include/functions_reporting_html.php:71 +#: ../../include/functions_reporting_html.php:4514 +msgid "From:" +msgstr "From:" + +#: ../../godmode/agentes/planned_downtime.editor.php:723 +#: ../../include/functions_reporting_html.php:71 +#: ../../include/functions_reporting_html.php:4514 +msgid "To:" +msgstr "To:" + +#: ../../godmode/agentes/planned_downtime.editor.php:732 +msgid "Type Periodicity:" +msgstr "Periodicity type:" + +#: ../../godmode/agentes/planned_downtime.editor.php:764 +msgid "From day:" +msgstr "From day:" + +#: ../../godmode/agentes/planned_downtime.editor.php:778 +msgid "To day:" +msgstr "To day:" + +#: ../../godmode/agentes/planned_downtime.editor.php:797 +msgid "From hour:" +msgstr "From hour:" + +#: ../../godmode/agentes/planned_downtime.editor.php:810 +msgid "To hour:" +msgstr "To hour:" + +#: ../../godmode/agentes/planned_downtime.editor.php:971 +msgid "Available modules:" +msgstr "Available modules:" + +#: ../../godmode/agentes/planned_downtime.editor.php:972 +msgid "Only for type Quiet for downtimes." +msgstr "Only for quiet type downtimes" + +#: ../../godmode/agentes/planned_downtime.editor.php:1009 +msgid "Agents planned for this downtime" +msgstr "Selected agents for this downtime" + +#: ../../godmode/agentes/planned_downtime.editor.php:1027 +msgid "There are no agents" +msgstr "There are no agents" + +#: ../../godmode/agentes/planned_downtime.editor.php:1069 +msgid "All alerts" +msgstr "All alerts" + +#: ../../godmode/agentes/planned_downtime.editor.php:1071 +msgid "Entire agent" +msgstr "Entire agent" + +#: ../../godmode/agentes/planned_downtime.editor.php:1074 +#: ../../godmode/agentes/planned_downtime.editor.php:1183 +msgid "All modules" +msgstr "All modules" + +#: ../../godmode/agentes/planned_downtime.editor.php:1076 +#: ../../godmode/agentes/planned_downtime.editor.php:1175 +#: ../../godmode/agentes/planned_downtime.editor.php:1179 +msgid "Some modules" +msgstr "Some modules" + +#: ../../godmode/agentes/planned_downtime.editor.php:1144 +msgid "Add Module:" +msgstr "Add Module:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +msgid "Please select a module." +msgstr "Please select a module" + +#: ../../godmode/agentes/planned_downtime.editor.php:1498 +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/fields_manager.php:30 +msgid "Agents custom fields manager" +msgstr "Agent custom field manager" + +#: ../../godmode/agentes/fields_manager.php:46 +#: ../../include/ajax/custom_fields.php:727 +msgid "The name must not be empty" +msgstr "The name field cannot be left empty" + +#: ../../godmode/agentes/fields_manager.php:48 +msgid "The name must be unique" +msgstr "The name must be unique" + +#: ../../godmode/agentes/fields_manager.php:59 +msgid "Field successfully created" +msgstr "Custom field successfully created" + +#: ../../godmode/agentes/fields_manager.php:80 +msgid "Field successfully updated" +msgstr "Field successfully updated" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem modifying field" +msgstr "Error modifying the field" + +#: ../../godmode/agentes/fields_manager.php:94 +msgid "There was a problem deleting field" +msgstr "Error deleting the field" + +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Field successfully deleted" +msgstr "Field successfully deleted" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:92 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "Display up front" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:93 +#: ../../operation/agentes/custom_fields.php:67 +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 details." + +#: ../../godmode/agentes/fields_manager.php:164 +msgid "Create field" +msgstr "Create field" + +#: ../../godmode/agentes/module_manager_editor_network.php:470 +msgid "Windows remote" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:473 +msgid "Connection method" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:221 +#: ../../operation/agentes/estado_agente.php:189 ../../operation/menu.php:56 +msgid "Agent detail" +msgstr "Agent detail" + +#: ../../godmode/agentes/agent_manager.php:231 +msgid "Delete agent" +msgstr "Delete agent" + +#: ../../godmode/agentes/agent_manager.php:258 +msgid "QR Code Agent view" +msgstr "View agent QR code" + +#: ../../godmode/agentes/agent_manager.php:279 +msgid "Use alias as name" +msgstr "Use alias as name" + +#: ../../godmode/agentes/agent_manager.php:287 +#: ../../godmode/setup/setup_general.php:338 +msgid "Unique IP" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:321 +msgid "Primary group" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:532 +#: ../../godmode/massive/massive_edit_agents.php:707 +msgid "Safe operation mode" +msgstr "Safe operation mode" + +#: ../../godmode/agentes/agent_manager.php:554 +#: ../../godmode/massive/massive_edit_agents.php:653 +msgid "Not available" +msgstr "Not available" + +#: ../../godmode/agentes/agent_manager.php:572 +msgid "Cascade protection services" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:599 +#: ../../godmode/massive/massive_edit_agents.php:535 +msgid "Cascade protection" +msgstr "Cascade protection" + +#: ../../godmode/agentes/agent_manager.php:615 +#: ../../godmode/massive/massive_edit_agents.php:633 +msgid "Module definition" +msgstr "Module definition" + +#: ../../godmode/agentes/agent_manager.php:620 +#: ../../godmode/massive/massive_edit_agents.php:635 +msgid "Learning mode" +msgstr "Learning mode" + +#: ../../godmode/agentes/agent_manager.php:630 +#: ../../godmode/massive/massive_edit_agents.php:636 +msgid "Normal mode" +msgstr "Normal mode" + +#: ../../godmode/agentes/agent_manager.php:640 +#: ../../godmode/massive/massive_edit_agents.php:637 +msgid "Autodisable mode" +msgstr "Autodisable mode" + +#: ../../godmode/agentes/agent_manager.php:657 +msgid "Disabled mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:662 +#: ../../godmode/agentes/agent_manager.php:679 +#: ../../include/functions_treeview.php:736 +#: ../../operation/agentes/ver_agente.php:1246 +#: ../../operation/agentes/estado_generalagente.php:431 +msgid "Url address" +msgstr "URL address" + +#: ../../godmode/agentes/agent_manager.php:704 +#: ../../godmode/massive/massive_edit_agents.php:681 +msgid "Agent icon" +msgstr "Agent icon" + +#: ../../godmode/agentes/agent_manager.php:754 +msgid "Update new GIS data:" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:816 +msgid "Click to display" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:1069 +msgid "Primary group cannot be secondary too." +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:1199 +msgid "Secondary group cannot be primary too." +msgstr "" + +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "No issues associated to this agent" + +#: ../../godmode/agentes/agent_incidents.php:90 +#: ../../operation/incidents/incident_detail.php:272 +#: ../../operation/incidents/incident.php:421 +msgid "Incident" +msgstr "Issue" + +#: ../../godmode/agentes/configure_field.php:38 +msgid "Update agent custom field" +msgstr "Update agent custom fields" + +#: ../../godmode/agentes/configure_field.php:40 +msgid "Create agent custom field" +msgstr "Create agent custom field" + +#: ../../godmode/agentes/configure_field.php:52 +#: ../../godmode/agentes/configure_field.php:56 +#: ../../godmode/agentes/configure_field.php:60 +#: ../../godmode/agentes/configure_field.php:64 +msgid "Agent Custom Fields Information" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:53 +msgid "" +"You cannot set the Password type until you clear the combo values and click " +"on update button." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:57 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click " +"on update." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:61 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:65 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:81 +msgid "Pass type" +msgstr "Password type" + +#: ../../godmode/agentes/configure_field.php:82 +msgid "" +"The fields with pass type enabled will be displayed like html input type " +"pass in html" +msgstr "" +"The fields with password type enabled will be displayed with asterisks in " +"HTML." + +#: ../../godmode/agentes/configure_field.php:103 +msgid "Enabled combo" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:115 +msgid "Combo values" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:116 +msgid "Set values separated by comma" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:90 +msgid "Using module component" +msgstr "Using module component" + +#: ../../godmode/agentes/module_manager_editor_common.php:387 +#: ../../godmode/agentes/module_manager_editor_common.php:440 +msgid "Min. " +msgstr "Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:614 +msgid "Dynamic Threshold Interval" +msgstr "Dynamic Threshold Interval" + +#: ../../godmode/agentes/module_manager_editor_common.php:634 +msgid "Dynamic Threshold Min. " +msgstr "Dynamic Threshold Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:647 +msgid "Dynamic Threshold Max. " +msgstr "Dynamic Threshold Max. " + +#: ../../godmode/agentes/module_manager_editor_common.php:660 +msgid "Dynamic Threshold Two Tailed: " +msgstr "Dynamic Threshold Two Tailed: " + +#: ../../godmode/agentes/module_manager_editor_common.php:671 +msgid "Not needed" +msgstr "Not needed" + +#: ../../godmode/agentes/module_manager_editor_common.php:951 +msgid "Tags from policy" +msgstr "Tags from policy" + +#: ../../godmode/agentes/module_manager_editor_common.php:991 +msgid "Cascade Protection Services" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1025 +#: ../../godmode/agentes/module_manager_editor_common.php:1033 +#: ../../godmode/agentes/module_manager_editor_common.php:1042 +msgid "Cron from" +msgstr "Cron from" + +#: ../../godmode/agentes/module_manager_editor_common.php:1029 +#: ../../godmode/agentes/module_manager_editor_common.php:1037 +#: ../../godmode/agentes/module_manager_editor_common.php:1046 +msgid "Cron to" +msgstr "Cron to" + +#: ../../godmode/agentes/module_manager_editor_common.php:1082 +msgid "Module parent" +msgstr "Module parent" + +#: ../../godmode/agentes/module_manager_editor_common.php:1180 +#: ../../godmode/agentes/module_manager_editor_common.php:1275 +msgid "Direct" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1181 +#: ../../godmode/agentes/module_manager_editor_common.php:1275 +#: ../../include/functions_reporting_html.php:3028 +#: ../../include/functions_reporting_html.php:3113 +#: ../../include/functions_reporting_html.php:3176 +#: ../../include/functions_reporting_html.php:3531 +msgid "Failover" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1182 +msgid "Rel. type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1197 +msgid "Add relationship" +msgstr "Add relation" + +#: ../../godmode/agentes/module_manager_editor_common.php:1222 +msgid "Changes" +msgstr "Changes" + +#: ../../godmode/agentes/module_manager.php:89 +msgid "Create a new data server module" +msgstr "Create a new data server module" + +#: ../../godmode/agentes/module_manager.php:91 +msgid "Create a new network server module" +msgstr "Create a new network server module" + +#: ../../godmode/agentes/module_manager.php:95 +msgid "Create a new plugin server module" +msgstr "Create a new plugin server module" + +#: ../../godmode/agentes/module_manager.php:99 +msgid "Create a new WMI server module" +msgstr "Create a new WMI server module" + +#: ../../godmode/agentes/module_manager.php:103 +msgid "Create a new prediction server module" +msgstr "Create a new prediction server module" + +#: ../../godmode/agentes/module_manager.php:147 +#: ../../operation/agentes/estado_monitores.php:575 +msgid "Show in hierachy mode" +msgstr "Show in hierarchy mode" + +#: ../../godmode/agentes/module_manager.php:159 +msgid "

Type

" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:176 +msgid "Get more modules on Monitoring Library" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:210 +msgid "Nice try buddy" +msgstr "Nice try, buddy!" + +#: ../../godmode/agentes/module_manager.php:337 +#, 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:343 +msgid "All Modules deleted succesfully" +msgstr "All Modules deleted successfully" + +#: ../../godmode/agentes/module_manager.php:347 +#, php-format +msgid "There was a problem only deleted %s modules of %s total." +msgstr "Error deleting modules: only %s modules of %s total were deleted" + +#: ../../godmode/agentes/module_manager.php:618 +#: ../../godmode/reporting/map_builder.php:403 +#: ../../godmode/reporting/map_builder.php:420 +#: ../../include/ajax/module.php:442 +#: ../../operation/agentes/datos_agente.php:296 +msgid "No available data to show" +msgstr "No available data to show" + +#: ../../godmode/agentes/module_manager.php:655 +msgid "Del." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:782 +#: ../../godmode/agentes/module_manager.php:790 +#: ../../include/ajax/module.php:949 ../../include/ajax/module.php:957 +msgid "Adopted" +msgstr "Adopted" + +#: ../../godmode/agentes/module_manager.php:894 +msgid "Normalize" +msgstr "Normalize" + +#: ../../godmode/agentes/module_manager.php:902 +msgid "Normalize (Disabled)" +msgstr "Normalize (Disabled)" + +#: ../../godmode/agentes/module_manager.php:916 +#: ../../include/functions_snmp_browser.php:602 +msgid "Create network component" +msgstr "Create network component" + +#: ../../godmode/agentes/module_manager.php:923 +msgid "Create network component (Disabled)" +msgstr "Create network component (Disabled)" + +#: ../../godmode/netflow/nf_item_list.php:36 +#: ../../operation/reporting/reporting_viewer.php:79 +msgid "Report list" +msgstr "Report list" + +#: ../../godmode/netflow/nf_item_list.php:39 +#: ../../godmode/netflow/nf_item_list.php:46 +msgid "Report items" +msgstr "Report items" + +#: ../../godmode/netflow/nf_item_list.php:42 +msgid "Edit report" +msgstr "Edit report" + +#: ../../godmode/netflow/nf_item_list.php:55 +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:178 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2000 +#: ../../operation/netflow/nf_live_view.php:322 +msgid "Max. values" +msgstr "Max. values" + +#: ../../godmode/netflow/nf_item_list.php:179 +#: ../../operation/agentes/graphs.php:226 +msgid "Chart type" +msgstr "Chart type" + +#: ../../godmode/netflow/nf_item_list.php:279 +msgid "There are no defined items" +msgstr "There are no items defined" + +#: ../../godmode/netflow/nf_edit.php:38 +msgid "Manage Netflow Filter" +msgstr "Manage Netflow Filter" + +#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 +#: ../../godmode/netflow/nf_edit_form.php:73 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:97 +msgid "Netflow filters" +msgstr "Netflow filters" + +#: ../../godmode/netflow/nf_edit.php:187 +#: ../../godmode/events/event_filter.php:179 +msgid "There are no defined filters" +msgstr "There are no filters set" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:43 +msgid "Filter list" +msgstr "Filter list" + +#: ../../godmode/netflow/nf_edit_form.php:55 +#: ../../godmode/netflow/nf_edit_form.php:77 +msgid "Add filter" +msgstr "Add filter" + +#: ../../godmode/netflow/nf_edit_form.php:58 +msgid "Netflow Filter" +msgstr "Netflow Filter" + +#: ../../godmode/netflow/nf_edit_form.php:187 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../include/ajax/custom_fields.php:697 ../../include/ajax/events.php:549 +#: ../../include/ajax/events.php:609 ../../operation/events/events_list.php:414 +#: ../../operation/events/events_list.php:467 +msgid "Update filter" +msgstr "Update filter" + +#: ../../godmode/netflow/nf_edit_form.php:224 +msgid "Filter:" +msgstr "Filter:" + +#: ../../godmode/netflow/nf_edit_form.php:228 +#: ../../operation/netflow/nf_live_view.php:406 +msgid "Dst Ip" +msgstr "DST IP" + +#: ../../godmode/netflow/nf_edit_form.php:228 +#: ../../operation/netflow/nf_live_view.php:406 +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 destination 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:231 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "Src Ip" +msgstr "SRC IP" + +#: ../../godmode/netflow/nf_edit_form.php:231 +#: ../../operation/netflow/nf_live_view.php:414 +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:234 +#: ../../godmode/netflow/nf_edit_form.php:247 +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "Dst Port" +msgstr "DST port" + +#: ../../godmode/netflow/nf_edit_form.php:234 +#: ../../operation/netflow/nf_live_view.php:425 +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. " +"Leaving this field blank will show all ports. Example: filtering by ports 80 " +"and 22:
80,22" + +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/netflow/nf_edit_form.php:246 +#: ../../operation/netflow/nf_live_view.php:341 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "Src Port" +msgstr "SRC Port" + +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../operation/netflow/nf_live_view.php:433 +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 this " +"field is left blank, all ports will be shown. Example: filter by ports 80 " +"and 22:
80,22" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:336 +msgid "Aggregate by" +msgstr "Aggregate by" + +#: ../../godmode/netflow/nf_edit_form.php:244 +#: ../../operation/netflow/nf_live_view.php:339 +msgid "Src Ip Address" +msgstr "SRC IP address" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../operation/netflow/nf_live_view.php:340 +msgid "Dst Ip Address" +msgstr "DST IP address" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 +msgid "SNMP Trap generator" +msgstr "SNMP Trap generator" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:55 +msgid "Empty parameters" +msgstr "Empty parameters" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:61 +msgid "Successfully generated" +msgstr "Generated successfully" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:62 +#, php-format +msgid "Could not be generated: %s" +msgstr "Could not be generated: %s" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 +msgid "Host address" +msgstr "Host address" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:92 +#: ../../godmode/snmpconsole/snmp_alert.php:760 +#: ../../godmode/snmpconsole/snmp_alert.php:1272 +#: ../../operation/snmpconsole/snmp_view.php:804 +msgid "Enterprise String" +msgstr "Enterprise String" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:122 +msgid "SNMP Type" +msgstr "SNMP Type" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:155 +msgid "Generate trap" +msgstr "Generate trap" + +#: ../../godmode/snmpconsole/snmp_alert.php:76 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +#: ../../godmode/snmpconsole/snmp_alert.php:92 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/snmpconsole/snmp_filters.php:41 +#: ../../operation/snmpconsole/snmp_statistics.php:57 +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:750 +msgid "SNMP Console" +msgstr "SNMP Console" + +#: ../../godmode/snmpconsole/snmp_alert.php:76 +msgid "Update alert" +msgstr "Update alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:92 +msgid "Alert overview" +msgstr "Alert overview" + +#: ../../godmode/snmpconsole/snmp_alert.php:257 +msgid "There was a problem creating the alert" +msgstr "Error creating the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:380 +msgid "There was a problem updating the alert" +msgstr "Error updating the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:662 +msgid "There was a problem duplicating the alert" +msgstr "Error duplicating the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:665 +msgid "Successfully Duplicate" +msgstr "Duplicated successfully" + +#: ../../godmode/snmpconsole/snmp_alert.php:683 +msgid "There was a problem deleting the alert" +msgstr "Error deleting the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:760 +msgid "Matches substrings. End the string with $ for exact matches." +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:812 +#: ../../godmode/snmpconsole/snmp_alert.php:819 +#: ../../godmode/snmpconsole/snmp_alert.php:828 +#: ../../godmode/snmpconsole/snmp_alert.php:837 +#: ../../godmode/snmpconsole/snmp_alert.php:846 +#: ../../godmode/snmpconsole/snmp_alert.php:855 +#: ../../godmode/snmpconsole/snmp_alert.php:864 +#: ../../godmode/snmpconsole/snmp_alert.php:872 +#: ../../godmode/snmpconsole/snmp_alert.php:880 +#: ../../godmode/snmpconsole/snmp_alert.php:888 +#: ../../godmode/snmpconsole/snmp_alert.php:896 +#: ../../godmode/snmpconsole/snmp_alert.php:904 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:920 +#: ../../godmode/snmpconsole/snmp_alert.php:928 +#: ../../godmode/snmpconsole/snmp_alert.php:936 +#: ../../godmode/snmpconsole/snmp_alert.php:944 +#: ../../godmode/snmpconsole/snmp_alert.php:952 +#: ../../godmode/snmpconsole/snmp_alert.php:960 +#: ../../godmode/snmpconsole/snmp_alert.php:968 +msgid "Variable bindings/Data" +msgstr "Variable bindings/Data" + +#: ../../godmode/snmpconsole/snmp_alert.php:1120 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Variable bindings/Datas." +msgstr "" +"Search by these description fields: OID, Custom Value, SNMP Agent (IP), " +"Single value, each Variable bindings/Data." + +#: ../../godmode/snmpconsole/snmp_alert.php:1139 +msgid "Alert SNMP control filter" +msgstr "Alert SNMP control filter" + +#: ../../godmode/snmpconsole/snmp_alert.php:1224 +msgid "There are no SNMP alerts" +msgstr "There are no SNMP alerts" + +#: ../../godmode/snmpconsole/snmp_alert.php:1275 +msgid "Custom Value/Enterprise String" +msgstr "Custom Value/Enterprise String" + +#: ../../godmode/snmpconsole/snmp_alert.php:1280 +#: ../../include/functions_reporting_html.php:4064 +#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_treeview.php:458 +msgid "Times fired" +msgstr "Times triggered" + +#: ../../godmode/snmpconsole/snmp_alert.php:1280 +msgid "TF." +msgstr "TF." + +#: ../../godmode/snmpconsole/snmp_alert.php:1356 +msgid "ID Alert SNMP" +msgstr "SNMP Alert ID" + +#: ../../godmode/snmpconsole/snmp_alert.php:1602 +msgid "Add action " +msgstr "Add Action " + +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "Filter overview" + +#: ../../godmode/snmpconsole/snmp_filters.php:87 +msgid "There was a problem updating the filter" +msgstr "Error updating the filter" + +#: ../../godmode/snmpconsole/snmp_filters.php:105 +#: ../../godmode/snmpconsole/snmp_filters.php:131 +msgid "Description is empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "Filter is empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:128 +msgid "Filters are empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:138 +msgid "There was a problem creating the filter" +msgstr "Error creating the filter" + +#: ../../godmode/snmpconsole/snmp_filters.php:157 +msgid "There was a problem deleting the filter" +msgstr "Error deleting the filter" + +#: ../../godmode/snmpconsole/snmp_filters.php:200 +#: ../../godmode/snmpconsole/snmp_filters.php:210 +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_filters.php:202 +msgid "Click to remove the filter" +msgstr "Click to remove the filter" + +#: ../../godmode/snmpconsole/snmp_filters.php:228 +msgid "Click to add new filter" +msgstr "Click to add new filter" + +#: ../../godmode/menu.php:33 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "" + +#: ../../godmode/menu.php:41 +msgid "Network scan" +msgstr "" + +#: ../../godmode/menu.php:43 +msgid "Custom network scan" +msgstr "" + +#: ../../godmode/menu.php:47 +msgid "Manage scan scripts" +msgstr "" + +#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "" + +#: ../../godmode/menu.php:83 +msgid "Module categories" +msgstr "Module categories" + +#: ../../godmode/menu.php:87 +msgid "Module types" +msgstr "Module types" + +#: ../../godmode/menu.php:111 +msgid "Manage agents groups" +msgstr "Manage agent groups" + +#: ../../godmode/menu.php:148 ../../include/class/ConfigPEN.class.php:331 +#: ../../include/class/ConfigPEN.class.php:339 +msgid "Private Enterprise Numbers" +msgstr "" + +#: ../../godmode/menu.php:152 +msgid "Remote components" +msgstr "" + +#: ../../godmode/menu.php:176 ../../godmode/massive/massive_operations.php:268 +msgid "Bulk operations" +msgstr "Bulk operations" + +#: ../../godmode/menu.php:181 ../../godmode/massive/massive_operations.php:206 +msgid "Agents operations" +msgstr "Agent operations" + +#: ../../godmode/menu.php:182 ../../godmode/massive/massive_operations.php:214 +msgid "Modules operations" +msgstr "Module operations" + +#: ../../godmode/menu.php:183 ../../godmode/massive/massive_operations.php:222 +msgid "Plugins operations" +msgstr "Plugin operations" + +#: ../../godmode/menu.php:185 ../../godmode/massive/massive_operations.php:198 +msgid "Users operations" +msgstr "User operations" + +#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:190 +msgid "Alerts operations" +msgstr "Alert operations" + +#: ../../godmode/menu.php:212 +msgid "List of Alerts" +msgstr "List of Alerts" + +#: ../../godmode/menu.php:227 ../../godmode/menu.php:228 +#: ../../godmode/alerts/alert_special_days.php:45 +msgid "Special days list" +msgstr "List of special days" + +#: ../../godmode/menu.php:232 ../../include/functions_menu.php:543 +msgid "SNMP alerts" +msgstr "SNMP alerts" + +#: ../../godmode/menu.php:243 +msgid "Event filters" +msgstr "Event filters" + +#: ../../godmode/menu.php:248 +msgid "Custom events" +msgstr "Custom events" + +#: ../../godmode/menu.php:271 +msgid "Manage servers" +msgstr "Manage servers" + +#: ../../godmode/menu.php:305 +#: ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" +msgstr "General Setup" + +#: ../../godmode/menu.php:330 ../../godmode/setup/setup.php:127 +#: ../../godmode/setup/setup.php:191 +#: ../../operation/agentes/ver_agente.php:1301 +msgid "eHorus" +msgstr "eHorus" + +#: ../../godmode/menu.php:333 ../../godmode/setup/setup.php:122 +#: ../../godmode/setup/setup.php:197 ../../godmode/setup/setup_integria.php:507 +msgid "Integria IMS" +msgstr "" + +#: ../../godmode/menu.php:338 ../../godmode/setup/setup.php:140 +#: ../../godmode/setup/setup.php:214 +msgid "Notifications" +msgstr "" + +#: ../../godmode/menu.php:341 +msgid "Websocket Engine" +msgstr "" + +#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:209 +msgid "Map conections GIS" +msgstr "GIS map connection" + +#: ../../godmode/menu.php:349 ../../godmode/setup/os.php:147 +msgid "Edit OS" +msgstr "Edit OS" + +#: ../../godmode/menu.php:360 +msgid "Admin tools" +msgstr "Admin tools" + +#: ../../godmode/menu.php:368 +msgid "System audit log" +msgstr "System audit log" + +#: ../../godmode/menu.php:372 +msgid "Diagnostic info" +msgstr "Diagnostic info" + +#: ../../godmode/menu.php:376 +msgid "Site news" +msgstr "Site news" + +#: ../../godmode/menu.php:382 +msgid "DB Schema Check" +msgstr "DB Schema Check" + +#: ../../godmode/menu.php:385 +msgid "DB Interface" +msgstr "DB Interface" + +#: ../../godmode/menu.php:471 +msgid "Extension manager view" +msgstr "Extension manager view" + +#: ../../godmode/menu.php:475 +msgid "Extension manager" +msgstr "Extension manager" + +#: ../../godmode/menu.php:506 +msgid "Update manager" +msgstr "Update manager" + +#: ../../godmode/menu.php:512 +msgid "Update Manager offline" +msgstr "Update Manager offline" + +#: ../../godmode/menu.php:516 +msgid "Update Manager online" +msgstr "Update Manager online" + +#: ../../godmode/menu.php:518 +msgid "Update Manager options" +msgstr "Update Manager options" + +#: ../../godmode/menu.php:526 +msgid "Module library" +msgstr "" + +#: ../../godmode/menu.php:534 +#: ../../godmode/module_library/module_library_view.php:51 +#: ../../godmode/module_library/module_library_view.php:86 +msgid "Categories" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:143 +msgid "Map successfully created" +msgstr "Map created successfully" + +#: ../../godmode/gis_maps/configure_gis_map.php:144 +msgid "Map could not be created" +msgstr "Could not create map" + +#: ../../godmode/gis_maps/configure_gis_map.php:246 +msgid "Map successfully update" +msgstr "Map updated successfully" + +#: ../../godmode/gis_maps/configure_gis_map.php:247 +msgid "Map could not be updated" +msgstr "Could not update map" + +#: ../../godmode/gis_maps/configure_gis_map.php:262 +#: ../../operation/gis_maps/gis_map.php:30 +msgid "GIS Maps list" +msgstr "List of GIS maps" + +#: ../../godmode/gis_maps/configure_gis_map.php:271 +msgid "View GIS" +msgstr "View GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:277 +msgid "GIS Maps builder" +msgstr "GIS map builder" + +#: ../../godmode/gis_maps/configure_gis_map.php:326 +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:360 +msgid "The connection" +msgstr "The connection" + +#: ../../godmode/gis_maps/configure_gis_map.php:360 +msgid "just added previously." +msgstr "just added previously." + +#: ../../godmode/gis_maps/configure_gis_map.php:423 +msgid "Map Name" +msgstr "Map Name" + +#: ../../godmode/gis_maps/configure_gis_map.php:442 +msgid "Add Map connection" +msgstr "Add Map connection" + +#: ../../godmode/gis_maps/configure_gis_map.php:465 +msgid "Default zoom" +msgstr "Default zoom" + +#: ../../godmode/gis_maps/configure_gis_map.php:468 +msgid "Center Latitude" +msgstr "Center Latitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:471 +msgid "Center Longitude" +msgstr "Center Longitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:474 +msgid "Center Altitude" +msgstr "Center Altitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:477 +msgid "Default Latitude" +msgstr "Default Latitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:480 +msgid "Default Longitude" +msgstr "Default Longitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:483 +msgid "Default Altitude" +msgstr "Default Altitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:488 +#: ../../godmode/setup/gis_step_2.php:287 +msgid "Layers" +msgstr "Layers" + +#: ../../godmode/gis_maps/configure_gis_map.php:497 +msgid "List of layers" +msgstr "List of layers" + +#: ../../godmode/gis_maps/configure_gis_map.php:498 +msgid "New layer" +msgstr "New layer" + +#: ../../godmode/gis_maps/configure_gis_map.php:504 +msgid "Layer name" +msgstr "Layer name" + +#: ../../godmode/gis_maps/configure_gis_map.php:506 +msgid "Visible" +msgstr "Visible" + +#: ../../godmode/gis_maps/configure_gis_map.php:510 +msgid "Show agents from group" +msgstr "Show agents from group" + +#: ../../godmode/gis_maps/configure_gis_map.php:522 +msgid "Add agent" +msgstr "Add agent" + +#: ../../godmode/gis_maps/configure_gis_map.php:541 +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:570 +msgid "Use the data of this agent" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:578 +msgid "List of groups to be shown in the layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:585 +msgid "Save Layer" +msgstr "Save Layer" + +#: ../../godmode/gis_maps/configure_gis_map.php:601 +#: ../../godmode/gis_maps/configure_gis_map.php:608 +msgid "Save map" +msgstr "Save Map" + +#: ../../godmode/gis_maps/configure_gis_map.php:603 +msgid "Update map" +msgstr "Update Map" + +#: ../../godmode/gis_maps/configure_gis_map.php:975 +msgid "Using data from" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:1133 +msgid "Empty layer names are not supported" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:177 +msgid "Copy alerts" +msgstr "Copy alerts" + +#: ../../godmode/massive/massive_copy_modules.php:180 +#: ../../godmode/massive/massive_delete_modules.php:434 +#: ../../godmode/massive/massive_edit_modules.php:393 +msgid "Filter Modules" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:214 +msgid "No alerts for this agent" +msgstr "No alerts for this agent" + +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:506 +msgid "Filter Agents" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:293 +msgid "To agent(s)" +msgstr "To agent(s)" + +#: ../../godmode/massive/massive_copy_modules.php:543 +msgid "No operation selected" +msgstr "No operation selected" + +#: ../../godmode/massive/massive_copy_modules.php:553 +#: ../../include/functions_agents.php:768 +msgid "No destiny agent(s) to copy" +msgstr "No destiny agent(s) to copy" + +#: ../../godmode/massive/massive_operations.php:37 +msgid "Bulk alert add" +msgstr "Add alerts in bulk" + +#: ../../godmode/massive/massive_operations.php:38 +msgid "Bulk alert delete" +msgstr "Delete alerts in bulk" + +#: ../../godmode/massive/massive_operations.php:39 +msgid "Bulk alert actions add" +msgstr "Add alert actions in bulk" + +#: ../../godmode/massive/massive_operations.php:40 +msgid "Bulk alert actions delete" +msgstr "Delete alert actions in bulk" + +#: ../../godmode/massive/massive_operations.php:41 +msgid "Bulk alert enable/disable" +msgstr "Enable/disable alerts in bulk" + +#: ../../godmode/massive/massive_operations.php:42 +msgid "Bulk alert setting standby" +msgstr "Set alerts standby in bulk" + +#: ../../godmode/massive/massive_operations.php:46 +msgid "Bulk agent edit" +msgstr "Edit agents in bulk" + +#: ../../godmode/massive/massive_operations.php:47 +msgid "Bulk agent delete" +msgstr "Delete agents in bulk" + +#: ../../godmode/massive/massive_operations.php:52 +msgid "Bulk profile add" +msgstr "Add profiles in bulk" + +#: ../../godmode/massive/massive_operations.php:53 +msgid "Bulk profile delete" +msgstr "Delete profiles in bulk" + +#: ../../godmode/massive/massive_operations.php:60 +msgid "Bulk module edit" +msgstr "Edit modules in bulk" + +#: ../../godmode/massive/massive_operations.php:61 +msgid "Bulk module copy" +msgstr "Copy modules in bulk" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk module delete" +msgstr "Delete modules in bulk" + +#: ../../godmode/massive/massive_operations.php:66 +msgid "Bulk plugin edit" +msgstr "Edit plugins in bulk" + +#: ../../godmode/massive/massive_operations.php:304 +msgid "Please wait..." +msgstr "Please wait..." + +#: ../../godmode/massive/massive_operations.php:354 +msgid "The blank fields will not be updated" +msgstr "Fields left blank will not be updated" + +#: ../../godmode/massive/massive_standby_alerts.php:184 +msgid "Not standby alerts" +msgstr "Alerts without standby" + +#: ../../godmode/massive/massive_standby_alerts.php:213 +#: ../../godmode/massive/massive_standby_alerts.php:217 +msgid "Set standby selected alerts" +msgstr "Set selected alerts to standby" + +#: ../../godmode/massive/massive_standby_alerts.php:219 +msgid "Standby alerts" +msgstr "Standby alerts" + +#: ../../godmode/massive/massive_delete_action_alerts.php:60 +msgid "Could not be deleted. No agents selected" +msgstr "Could not be deleted: no agents selected" + +#: ../../godmode/massive/massive_delete_action_alerts.php:88 +msgid "Could not be deleted. No alerts selected" +msgstr "Could not be deleted: no alerts selected" + +#: ../../godmode/massive/massive_delete_action_alerts.php:135 +msgid "Could not be deleted. No action selected" +msgstr "Could not be deleted: no action selected" + +#: ../../godmode/massive/massive_delete_action_alerts.php:184 +#: ../../godmode/massive/massive_add_action_alerts.php:171 +msgid "Agents with templates" +msgstr "Agents with templates" + +#: ../../godmode/massive/massive_delete_action_alerts.php:201 +#: ../../godmode/massive/massive_delete_modules.php:532 +#: ../../godmode/massive/massive_add_action_alerts.php:188 +#: ../../godmode/massive/massive_edit_modules.php:502 +msgid "Show unknown and not init modules" +msgstr "Show unknown and not initialized modules" + +#: ../../godmode/massive/massive_delete_modules.php:67 +msgid "No module selected" +msgstr "No module selected" + +#: ../../godmode/massive/massive_delete_modules.php:137 +msgid "" +"There was an error deleting the modules, the operation has been cancelled" +msgstr "" +"Error deleting the selected modules: the operation has been cancelled." + +#: ../../godmode/massive/massive_delete_modules.php:294 +#: ../../godmode/massive/massive_edit_modules.php:274 +msgid "Selection mode" +msgstr "Selection mode" + +#: ../../godmode/massive/massive_delete_modules.php:295 +#: ../../godmode/massive/massive_edit_modules.php:275 +msgid "Select modules first " +msgstr "Select modules first " + +#: ../../godmode/massive/massive_delete_modules.php:296 +#: ../../godmode/massive/massive_edit_modules.php:276 +msgid "Select agents first " +msgstr "Select agents first " + +#: ../../godmode/massive/massive_delete_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:298 +msgid "Select all modules of this type" +msgstr "Select all modules of the same type" + +#: ../../godmode/massive/massive_delete_modules.php:363 +#: ../../godmode/massive/massive_edit_modules.php:344 +msgid "Select all modules of this group" +msgstr "Select all modules from this group" + +#: ../../godmode/massive/massive_delete_modules.php:412 +#: ../../godmode/massive/massive_edit_modules.php:355 +#: ../../godmode/events/custom_events.php:115 +#: ../../include/functions_events.php:292 +#: ../../operation/events/events.build_table.php:340 +msgid "Module Status" +msgstr "Module Status" + +#: ../../godmode/massive/massive_delete_modules.php:455 +#: ../../godmode/massive/massive_edit_modules.php:410 +msgid "When select modules" +msgstr "When selecting modules" + +#: ../../godmode/massive/massive_delete_modules.php:459 +#: ../../godmode/massive/massive_edit_modules.php:414 +msgid "Show common agents" +msgstr "Show common agents" + +#: ../../godmode/massive/massive_delete_modules.php:460 +#: ../../godmode/massive/massive_edit_modules.php:415 +msgid "Show all agents" +msgstr "Show all agents" + +#: ../../godmode/massive/massive_delete_modules.php:572 +#: ../../godmode/massive/massive_edit_modules.php:1182 +msgid "Please, select an agent first" +msgstr "" + +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:93 +msgid "No alert selected" +msgstr "No alert selected" + +#: ../../godmode/massive/massive_delete_agents.php:60 +#, php-format +msgid "" +"There was an error deleting the agent, the operation has been cancelled " +"Could not delete agent %s" +msgstr "Error deleting the agent %s: the operation has been cancelled" + +#: ../../godmode/massive/massive_delete_agents.php:70 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "Successfully deleted (%s)" + +#: ../../godmode/massive/massive_delete_agents.php:153 +#: ../../godmode/massive/massive_edit_agents.php:439 +msgid "Show agents" +msgstr "Show agents" + +#: ../../godmode/massive/massive_edit_plugins.php:162 +msgid "Error retrieving the plugin macros" +msgstr "Error retrieving plugin macros" + +#: ../../godmode/massive/massive_edit_plugins.php:170 +msgid "Error retrieving the modified macros" +msgstr "Error retrieving modified macros" + +#: ../../godmode/massive/massive_edit_plugins.php:193 +msgid "Error retrieving the module plugin macros" +msgstr "Error retrieving module plugin macros" + +#: ../../godmode/massive/massive_edit_plugins.php:211 +msgid "Error retrieving the module plugin macros data" +msgstr "Error retrieving data from module plugin macros" + +#: ../../godmode/massive/massive_edit_plugins.php:249 +msgid "Error building the new macros" +msgstr "Error creating new macros" + +#: ../../godmode/massive/massive_edit_plugins.php:278 +#, php-format +msgid "%d modules updated" +msgstr "%d modules updated" + +#: ../../godmode/massive/massive_edit_plugins.php:299 +msgid "There are not registered plugins" +msgstr "There are no registered plugins" + +#: ../../godmode/massive/massive_edit_plugins.php:476 +msgid "Invalid plugin data" +msgstr "Invalid plugin data" + +#: ../../godmode/massive/massive_edit_plugins.php:583 +msgid "Clear" +msgstr "Clear" + +#: ../../godmode/massive/massive_edit_plugins.php:611 +msgid "Invalid macros array" +msgstr "Invalid array of macros" + +#: ../../godmode/massive/massive_edit_plugins.php:636 +msgid "Multiple values" +msgstr "Multiple values" + +#: ../../godmode/massive/massive_edit_plugins.php:668 +#: ../../godmode/massive/massive_edit_plugins.php:804 +#: ../../godmode/massive/massive_edit_plugins.php:820 +msgid "Invalid agents array" +msgstr "Invalid array of agents" + +#: ../../godmode/massive/massive_edit_plugins.php:684 +msgid "Invalid agent element" +msgstr "Invalid agent item" + +#: ../../godmode/massive/massive_edit_plugins.php:695 +msgid "Invalid modules array" +msgstr "Invalid array of modules" + +#: ../../godmode/massive/massive_edit_plugins.php:723 +msgid "Invalid module element" +msgstr "Invalid module item" + +#: ../../godmode/massive/massive_edit_plugins.php:930 +msgid "There are no modules using this plugin" +msgstr "There are no modules using this plugin." + +#: ../../godmode/massive/massive_edit_plugins.php:1013 +msgid "There was a problem loading the module plugin macros data" +msgstr "Error loading the data from the module plugin macros" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +msgid "Enabled alerts" +msgstr "Alerts enabled" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:201 +msgid "Disable selected alerts" +msgstr "Disable the selected alerts" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:205 +msgid "Enable selected alerts" +msgstr "Enable selected alerts" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +msgid "Disabled alerts" +msgstr "Disabled alerts" + +#: ../../godmode/massive/massive_edit_agents.php:140 +msgid "No values changed" +msgstr "No values changed" + +#: ../../godmode/massive/massive_edit_agents.php:185 +msgid "Configuration files deleted successfully" +msgstr "Configuration files deleted successfully" + +#: ../../godmode/massive/massive_edit_agents.php:186 +msgid "Configuration files cannot be deleted" +msgstr "Configuration files cannot be deleted" + +#: ../../godmode/massive/massive_edit_agents.php:376 +msgid "Agents updated successfully" +msgstr "Agents updated successfully" + +#: ../../godmode/massive/massive_edit_agents.php:377 +msgid "Agents cannot be updated (maybe there was no field to update)" +msgstr "Agents cannot be updated (maybe there was no field to update)" + +#: ../../godmode/massive/massive_edit_agents.php:642 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode " +"when disabling it." +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:643 +#: ../../include/class/AgentWizard.class.php:444 +msgid "Active" +msgstr "Active" + +#: ../../godmode/massive/massive_edit_agents.php:649 +msgid "Delete available remote configurations" +msgstr "Delete the available remote configurations" + +#: ../../godmode/massive/massive_edit_agents.php:682 +msgid "Without status" +msgstr "Without status" + +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:321 +msgid "Bad" +msgstr "Bad" + +#: ../../godmode/massive/massive_edit_agents.php:692 +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:709 +#, php-format +msgid "" +"This mode allow %s to disable all modules \n" +"of this agent while the selected module is on CRITICAL status" +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:60 +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:90 +msgid "Profiles deleted successfully" +msgstr "Profiles deleted successfully" + +#: ../../godmode/massive/massive_delete_profiles.php:91 +msgid "Profiles cannot be deleted" +msgstr "Profiles cannot be deleted" + +#: ../../godmode/massive/massive_delete_alerts.php:271 +msgid "Show alerts on disabled modules" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:99 +msgid "No alerts selected" +msgstr "No alerts selected" + +#: ../../godmode/massive/massive_add_action_alerts.php:125 +msgid "No actions selected" +msgstr "No actions selected" + +#: ../../godmode/massive/massive_add_profiles.php:82 +msgid "Profiles added successfully" +msgstr "Profiles successfully added" + +#: ../../godmode/massive/massive_add_profiles.php:83 +msgid "Profiles cannot be added" +msgstr "Profiles cannot be added" + +#: ../../godmode/massive/massive_edit_modules.php:119 +msgid "Error updating the modules from a module type" +msgstr "Error updating the modules from a module type" + +#: ../../godmode/massive/massive_edit_modules.php:142 +msgid "Error updating the modules from an agent group" +msgstr "Error updating the modules from an agent group" + +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules (maybe there was no field to update)" +msgstr "Error updating the modules (maybe there was no field to update)" + +#: ../../godmode/massive/massive_edit_modules.php:478 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:392 +msgid "Filter agents" +msgstr "Filter agents" + +#: ../../godmode/admin_access_logs.php:47 +#, php-format +msgid "%s audit" +msgstr "" + +#: ../../godmode/admin_access_logs.php:47 +msgid "Review Logs" +msgstr "Review Logs" + +#: ../../godmode/admin_access_logs.php:199 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:4691 +#: ../../include/functions.php:2889 +#: ../../operation/snmpconsole/snmp_statistics.php:144 +#: ../../general/logon_ok.php:248 +msgid "Source IP" +msgstr "Source IP" + +#: ../../godmode/alerts/configure_alert_command.php:43 +msgid "Configure alert command" +msgstr "Configure alert command" + +#: ../../godmode/alerts/configure_alert_command.php:155 +msgid "Update Command" +msgstr "Update Command" + +#: ../../godmode/alerts/configure_alert_command.php:155 +#: ../../godmode/alerts/configure_alert_action.php:170 +msgid "Create Command" +msgstr "Create Command" + +#: ../../godmode/alerts/configure_alert_command.php:199 +#, php-format +msgid "Field %s description" +msgstr "%s field description" + +#: ../../godmode/alerts/configure_alert_command.php:209 +#, php-format +msgid "Field %s values" +msgstr "%s field values" + +#: ../../godmode/alerts/configure_alert_command.php:209 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:225 +msgid "Hide" +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:52 +msgid "Alert actions" +msgstr "Alert actions" + +#: ../../godmode/alerts/alert_actions.php:290 +msgid "" +"The action and the command associated with it do not have the same group. " +"Please contact an administrator to fix it." +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:318 +msgid "No alert actions configured" +msgstr "No alert actions established" + +#: ../../godmode/alerts/alert_list.list.php:117 +msgid "Field content" +msgstr "Field content" + +#: ../../godmode/alerts/alert_list.list.php:126 +msgid "Enabled / Disabled" +msgstr "Enabled / Disabled" + +#: ../../godmode/alerts/alert_list.list.php:167 +#: ../../operation/agentes/alerts_status.php:474 +msgid "Alert control filter" +msgstr "Alert control filter" + +#: ../../godmode/alerts/alert_list.list.php:630 +#: ../../godmode/alerts/alert_view.php:358 +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 triggered and no other " +"action is executed." + +#: ../../godmode/alerts/alert_list.list.php:642 +msgid "Delete action" +msgstr "Delete action" + +#: ../../godmode/alerts/alert_list.list.php:855 +msgid "View alert advanced details" +msgstr "View alert advanced details" + +#: ../../godmode/alerts/alert_list.list.php:871 +#: ../../include/functions_reporting_html.php:2393 +msgid "No alerts defined" +msgstr "No alerts defined" + +#: ../../godmode/alerts/alert_commands.php:127 +msgid "" +"For sending emails, text must be HTML format, if you want to use plain text, " +"type it between the following labels:
"
+msgstr ""
+"For sending e-mails, text must be HTML format, if you want to use plain "
+"text, type it between the following labels: 
"
+
+#: ../../godmode/alerts/alert_commands.php:147
+#: ../../godmode/alerts/alert_commands.php:156
+msgid "Text/plain"
+msgstr "Text/plain"
+
+#: ../../godmode/alerts/alert_commands.php:147
+#: ../../godmode/alerts/alert_commands.php:156
+msgid "For sending emails only text plain"
+msgstr "For sending e-mails in only plain text"
+
+#: ../../godmode/alerts/alert_commands.php:150
+#: ../../godmode/alerts/alert_commands.php:159
+msgid "Text/html"
+msgstr "Text/html"
+
+#: ../../godmode/alerts/alert_commands.php:284
+msgid "Alert commands"
+msgstr "Alert commands"
+
+#: ../../godmode/alerts/alert_commands.php:342
+#: ../../include/functions_alerts.php:2758
+msgid "No name specified"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:346
+#: ../../include/functions_alerts.php:2753
+msgid "No command specified"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:395
+msgid " (copy)"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:475
+msgid "No alert commands configured"
+msgstr "No alert commands configured"
+
+#: ../../godmode/alerts/configure_alert_special_days.php:55
+msgid "Configure special day"
+msgstr "Configure special day"
+
+#: ../../godmode/alerts/configure_alert_special_days.php:81
+#: ../../godmode/alerts/alert_special_days.php:263
+msgid "Same day of the week"
+msgstr "Same day of the week"
+
+#: ../../godmode/alerts/alert_templates.php:422
+msgid "No alert templates defined"
+msgstr "No alert templates defined"
+
+#: ../../godmode/alerts/configure_alert_action.php:60
+#: ../../godmode/alerts/configure_alert_action.php:73
+msgid "Configure alert action"
+msgstr "Configure alert action"
+
+#: ../../godmode/alerts/configure_alert_action.php:114
+msgid "Update Action"
+msgstr "Update Action"
+
+#: ../../godmode/alerts/configure_alert_action.php:132
+msgid "This action may stop working, if you change its name."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:201
+msgid "Recovery"
+msgstr "Recovery"
+
+#: ../../godmode/alerts/configure_alert_action.php:205
+#: ../../godmode/alerts/alert_view.php:504
+#: ../../godmode/alerts/alert_view.php:591 ../../godmode/servers/plugin.php:415
+msgid "Command preview"
+msgstr "Command preview"
+
+#: ../../godmode/alerts/configure_alert_template.php:69
+#: ../../godmode/alerts/configure_alert_template.php:93
+#: ../../godmode/alerts/configure_alert_template.php:126
+#: ../../include/functions_menu.php:506
+msgid "Configure alert template"
+msgstr "Configure alert template"
+
+#: ../../godmode/alerts/configure_alert_template.php:483
+msgid "No template name specified"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:645
+msgid "Reset counter for non-sustained alerts"
+msgstr "Reset counter for non-sustained alerts"
+
+#: ../../godmode/alerts/configure_alert_template.php:645
+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 triggered consecutively, even if it is within the time threshold."
+
+#: ../../godmode/alerts/configure_alert_template.php:704
+msgid ""
+"Unless they're left blank, the fields from the action will override those "
+"set on the template."
+msgstr ""
+"Unless they are left blank, the fields from the action will override those "
+"set on the template."
+
+#: ../../godmode/alerts/configure_alert_template.php:708
+msgid "Condition type"
+msgstr "Condition type"
+
+#: ../../godmode/alerts/configure_alert_template.php:723
+msgid "Trigger when matches the value"
+msgstr "Triggered when the value matches"
+
+#: ../../godmode/alerts/configure_alert_template.php:746
+msgid "The regular expression is valid"
+msgstr "The regular expression is valid"
+
+#: ../../godmode/alerts/configure_alert_template.php:756
+msgid "The regular expression is not valid"
+msgstr "The regular expression is not valid"
+
+#: ../../godmode/alerts/configure_alert_template.php:822
+msgid "Alert recovery"
+msgstr "Alert recovery"
+
+#: ../../godmode/alerts/configure_alert_template.php:842
+msgid "Recovery fields"
+msgstr "Recovery fields"
+
+#: ../../godmode/alerts/configure_alert_template.php:961
+msgid "No wizard"
+msgstr "No wizard"
+
+#: ../../godmode/alerts/configure_alert_template.php:1039
+#: ../../godmode/alerts/alert_view.php:134 ../../include/functions_ui.php:1310
+msgid ""
+"The alert would fire when the value matches "
+msgstr ""
+"The alert is triggered when the value matches "
+
+#: ../../godmode/alerts/configure_alert_template.php:1040
+#, php-format
+msgid "The alert would fire when the value doesn\\'t match %s"
+msgstr "The alert is triggered when the value does not match %s"
+
+#: ../../godmode/alerts/configure_alert_template.php:1041
+#: ../../godmode/alerts/alert_view.php:143 ../../include/functions_ui.php:1299
+msgid "The alert would fire when the value is "
+msgstr ""
+"The alert is triggered when the value is equal to "
+
+#: ../../godmode/alerts/configure_alert_template.php:1042
+#: ../../godmode/alerts/alert_view.php:148 ../../include/functions_ui.php:1304
+msgid "The alert would fire when the value is not "
+msgstr ""
+"The alert is triggered when the value is different to "
+
+#: ../../godmode/alerts/configure_alert_template.php:1043
+#: ../../godmode/alerts/alert_view.php:154 ../../include/functions_ui.php:1322
+msgid ""
+"The alert would fire when the value is between  and "
+""
+msgstr ""
+"The alert is triggered when the value is between  "
+"and "
+
+#: ../../godmode/alerts/configure_alert_template.php:1044
+msgid ""
+"The alert would fire when the value is not between  and "
+msgstr ""
+"The alert will be triggered when the value is not between  and "
+
+#: ../../godmode/alerts/configure_alert_template.php:1045
+#: ../../godmode/alerts/alert_view.php:164
+msgid "The alert would fire when the value is below "
+msgstr ""
+"The alert is triggered when the value is below "
+
+#: ../../godmode/alerts/configure_alert_template.php:1046
+#: ../../godmode/alerts/alert_view.php:169
+msgid "The alert would fire when the value is above "
+msgstr ""
+"The alert is triggered when the value is over "
+
+#: ../../godmode/alerts/configure_alert_template.php:1047
+#: ../../godmode/alerts/alert_view.php:182 ../../include/functions_ui.php:1341
+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/configure_alert_template.php:1048
+#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1346
+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/configure_alert_template.php:1049
+#: ../../godmode/alerts/alert_view.php:175
+msgid "The alert would fire when the module value changes"
+msgstr "The alert is triggered when the module value changes."
+
+#: ../../godmode/alerts/configure_alert_template.php:1050
+#: ../../godmode/alerts/alert_view.php:177
+msgid "The alert would fire when the module value does not change"
+msgstr "The alert is triggered when the module value remains the same."
+
+#: ../../godmode/alerts/configure_alert_template.php:1051
+#: ../../godmode/alerts/alert_view.php:194
+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/configure_alert_template.php:1052
+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/alerts/configure_alert_template.php:1053
+#: ../../godmode/alerts/alert_view.php:190
+msgid "The alert would fire when the module is in not normal status"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:91
+msgid "Skipped dates: "
+msgstr "Skipped dates: "
+
+#: ../../godmode/alerts/alert_special_days.php:111
+msgid "Success to upload iCalendar"
+msgstr "iCalendar successfully uploaded"
+
+#: ../../godmode/alerts/alert_special_days.php:111
+msgid "Fail to upload iCalendar"
+msgstr "Error uploading iCalendar"
+
+#: ../../godmode/alerts/alert_special_days.php:143
+msgid "Could not be created, it already exists"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:207
+msgid "Could not be updated, it already exists"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:260
+msgid "iCalendar(.ics) file"
+msgstr "iCalendar(.ics) file"
+
+#: ../../godmode/alerts/alert_special_days.php:284
+msgid "Overwrite"
+msgstr "Overwrite"
+
+#: ../../godmode/alerts/alert_special_days.php:285
+msgid "Check this box, if you want to overwrite existing same days."
+msgstr "Check this box, if you want to overwrite existing days."
+
+#: ../../godmode/alerts/alert_special_days.php:304
+msgid "Display range: "
+msgstr "Display range: "
+
+#: ../../godmode/alerts/alert_special_days.php:470
+msgid "Same as "
+msgstr "Same as "
+
+#: ../../godmode/alerts/alert_view.php:49
+#: ../../godmode/alerts/alert_view.php:327
+#: ../../include/functions_events.php:4217
+msgid "Alert details"
+msgstr "Alert details"
+
+#: ../../godmode/alerts/alert_view.php:60
+#: ../../godmode/alerts/alert_view.php:61
+#: ../../godmode/alerts/alert_list.php:433
+msgid "List alerts"
+msgstr "List alerts"
+
+#: ../../godmode/alerts/alert_view.php:101
+#: ../../mobile/operation/alerts.php:107 ../../mobile/operation/alerts.php:108
+#: ../../mobile/operation/alerts.php:237 ../../mobile/operation/alerts.php:238
+msgid "Stand by"
+msgstr "Stand by"
+
+#: ../../godmode/alerts/alert_view.php:136 ../../include/functions_ui.php:1313
+msgid ""
+"The alert would fire when the value doesn't match "
+msgstr ""
+"The alert is triggered when the value does not match "
+
+#: ../../godmode/alerts/alert_view.php:156 ../../include/functions_ui.php:1325
+msgid ""
+"The alert would fire when the value is not between  "
+"and "
+msgstr ""
+"The alert is triggered when the value is not between  and "
+
+#: ../../godmode/alerts/alert_view.php:328
+msgid "Firing conditions"
+msgstr "Triggering conditions"
+
+#: ../../godmode/alerts/alert_view.php:351
+#: ../../godmode/alerts/alert_view.php:371
+msgid "Every time that the alert is fired"
+msgstr "Every time that the alert is triggered"
+
+#: ../../godmode/alerts/alert_view.php:412
+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 Triggering/Recovery fields "
+"for this action"
+
+#: ../../godmode/alerts/alert_view.php:439
+msgid "Template fields"
+msgstr "Template fields"
+
+#: ../../godmode/alerts/alert_view.php:439
+msgid "Triggering fields configured in template"
+msgstr "Triggering fields configured in template"
+
+#: ../../godmode/alerts/alert_view.php:512
+msgid "The alert recovering is disabled on this template."
+msgstr "Alert recovery is disabled for this template."
+
+#: ../../godmode/alerts/alert_view.php:524
+msgid "Recovering fields"
+msgstr "Recovery fields"
+
+#: ../../godmode/alerts/alert_view.php:524
+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:528
+msgid "Template recovery fields"
+msgstr "Template recovery fields"
+
+#: ../../godmode/alerts/alert_view.php:528
+msgid "Recovery fields configured in alert template"
+msgstr "Recovery fields configured on alert templates"
+
+#: ../../godmode/alerts/alert_view.php:529
+msgid "Action recovery fields"
+msgstr "Action recovery fields"
+
+#: ../../godmode/alerts/alert_view.php:529
+msgid "Recovery fields configured in alert action"
+msgstr "Recovery fields configured on alert action"
+
+#: ../../godmode/alerts/alert_view.php:530
+msgid "Executed on recovery"
+msgstr "Executed upon recovery"
+
+#: ../../godmode/alerts/alert_view.php:530
+msgid "Fields used on execution when the alert is recovered"
+msgstr "Fields used during execution when the alert is recovered"
+
+#: ../../godmode/alerts/alert_list.builder.php:90
+msgid "Latest value"
+msgstr "Latest value"
+
+#: ../../godmode/alerts/alert_list.builder.php:193
+msgid "Finish and view cluster"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:114
+msgid "Already added"
+msgstr "Already added"
+
+#: ../../godmode/alerts/alert_list.php:168
+msgid "No template specified"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:437
+msgid "Builder alert"
+msgstr "Builder alert"
+
+#: ../../godmode/setup/license.php:48
+msgid "License management"
+msgstr "License management"
+
+#: ../../godmode/setup/license.php:70
+msgid "License updated"
+msgstr "License updated"
+
+#: ../../godmode/setup/license.php:99
+msgid "Licence"
+msgstr "License"
+
+#: ../../godmode/setup/license.php:107
+#: ../../include/class/Diagnostics.class.php:1143
+msgid "Customer key"
+msgstr "Customer key"
+
+#: ../../godmode/setup/license.php:113
+#: ../../include/class/Diagnostics.class.php:1151
+msgid "Platform Limit"
+msgstr "Platform Limit"
+
+#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117
+#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123
+msgid "agents"
+msgstr "agents"
+
+#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117
+#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123
+#: ../../operation/tree.php:122
+msgid "modules"
+msgstr "modules"
+
+#: ../../godmode/setup/license.php:116
+#: ../../include/class/Diagnostics.class.php:1155
+msgid "Current Platform Count"
+msgstr "Current platform count"
+
+#: ../../godmode/setup/license.php:119
+#: ../../include/class/Diagnostics.class.php:1159
+msgid "Current Platform Count (enabled: items)"
+msgstr "Current platform count (enabled: items)"
+
+#: ../../godmode/setup/license.php:122
+#: ../../include/class/Diagnostics.class.php:1163
+msgid "Current Platform Count (disabled: items)"
+msgstr "Current platform count (disabled: items)"
+
+#: ../../godmode/setup/license.php:125
+#: ../../include/class/Diagnostics.class.php:1167
+msgid "License Mode"
+msgstr "License Mode"
+
+#: ../../godmode/setup/license.php:128
+msgid "NMS"
+msgstr "NMS"
+
+#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132
+msgid "enabled"
+msgstr "enabled"
+
+#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132
+msgid "disabled"
+msgstr "disabled"
+
+#: ../../godmode/setup/license.php:131
+#: ../../godmode/servers/modificar_server.php:42
+#: ../../include/functions_servers.php:1232 ../../include/functions_ui.php:849
+#: ../../include/class/Diagnostics.class.php:1175
+msgid "Satellite"
+msgstr "Satellite"
+
+#: ../../godmode/setup/license.php:134
+#: ../../include/class/Diagnostics.class.php:1179
+msgid "Licensed to"
+msgstr "Licensed to"
+
+#: ../../godmode/setup/license.php:145 ../../godmode/setup/license.php:160
+msgid "Request new license"
+msgstr "Request new license"
+
+#: ../../godmode/setup/license.php:164
+#, php-format
+msgid "To get your %s Enterprise License:"
+msgstr ""
+
+#: ../../godmode/setup/license.php:167
+#, php-format
+msgid "Go to %s"
+msgstr "Go to %s"
+
+#: ../../godmode/setup/license.php:170
+msgid "Enter the auth key and the following request key:"
+msgstr "Enter the auth key and the following request key:"
+
+#: ../../godmode/setup/license.php:176
+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:179
+msgid "Click on Generate."
+msgstr "Click on Generate."
+
+#: ../../godmode/setup/license.php:182
+msgid ""
+"Click here, enter "
+"the generated license key and click on Validate."
+msgstr ""
+"Click here, enter "
+"the generated license key and click on Validate."
+
+#: ../../godmode/setup/news.php:29
+msgid "Site news management"
+msgstr "Manage site news"
+
+#: ../../godmode/setup/news.php:144 ../../godmode/setup/links.php:89
+msgid "Name error"
+msgstr "Name error"
+
+#: ../../godmode/setup/news.php:181
+msgid "Modal screen"
+msgstr "Modal window"
+
+#: ../../godmode/setup/news.php:184
+msgid "Expire"
+msgstr "Expire"
+
+#: ../../godmode/setup/news.php:187 ../../godmode/setup/news.php:240
+msgid "Expiration"
+msgstr "Expiration"
+
+#: ../../godmode/setup/news.php:231
+msgid "There are no defined news"
+msgstr "There are no news defined."
+
+#: ../../godmode/setup/news.php:238
+#: ../../operation/agentes/estado_generalagente.php:577
+#: ../../operation/incidents/incident_detail.php:440
+msgid "Author"
+msgstr "Author"
+
+#: ../../godmode/setup/news.php:258
+msgid "Modal"
+msgstr "Modal"
+
+#: ../../godmode/setup/news.php:260
+msgid "Board"
+msgstr "Board"
+
+#: ../../godmode/setup/news.php:271
+msgid "Expired"
+msgstr "Expired"
+
+#: ../../godmode/setup/gis.php:65
+msgid "Map connection name"
+msgstr "Map connection name"
+
+#: ../../godmode/setup/gis.php:83
+msgid "Do you wan delete this connection?"
+msgstr "Do you want to delete this connection?"
+
+#: ../../godmode/setup/setup.php:145
+msgid "Websocket engine"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:151
+msgid "GIS Map connection"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:219
+msgid "Pandora Websocket Engine"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:248
+msgid "Correct update the setup options"
+msgstr "Correctly updated the setup options"
+
+#: ../../godmode/setup/setup_ehorus.php:55
+#: ../../include/functions_config.php:1472
+msgid "Enable eHorus"
+msgstr "Enable eHorus"
+
+#: ../../godmode/setup/setup_ehorus.php:89
+#: ../../godmode/setup/setup_integria.php:228
+msgid "API Hostname"
+msgstr "API Hostname"
+
+#: ../../godmode/setup/setup_ehorus.php:95
+msgid "API Port"
+msgstr "API Port"
+
+#: ../../godmode/setup/setup_ehorus.php:101
+#: ../../godmode/setup/setup_integria.php:240
+msgid "Request timeout"
+msgstr "Request timeout"
+
+#: ../../godmode/setup/setup_ehorus.php:107
+#: ../../godmode/setup/setup_integria.php:492
+#: ../../operation/users/user_edit.php:694
+msgid "Test"
+msgstr "Test"
+
+#: ../../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:134
+msgid "eHorus has his own agent identifiers"
+msgstr "eHorus has its own agent identifiers"
+
+#: ../../godmode/setup/setup_ehorus.php:135
+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:136
+msgid ""
+"Possibly the eHorus id will have to be filled in by hand for every agent"
+msgstr ""
+"The eHorus ID will possibly have to be filled out manually for every agent."
+
+#: ../../godmode/setup/setup_ehorus.php:141
+msgid "The custom field does not exists already"
+msgstr "The custom field does not exist yet."
+
+#: ../../godmode/setup/setup_ehorus.php:155
+msgid "eHorus API"
+msgstr "eHorus API"
+
+#: ../../godmode/setup/setup_ehorus.php:237
+#: ../../godmode/setup/setup_integria.php:618
+msgid "Connection timeout"
+msgstr "Connection timeout"
+
+#: ../../godmode/setup/setup_ehorus.php:238
+#: ../../godmode/setup/setup_integria.php:619
+#: ../../operation/users/user_edit.php:1154
+msgid "Empty user or password"
+msgstr "Empty user or password"
+
+#: ../../godmode/setup/setup_ehorus.php:239
+#: ../../godmode/setup/setup_integria.php:620
+#: ../../operation/users/user_edit.php:1155
+msgid "User not found"
+msgstr "User not found"
+
+#: ../../godmode/setup/setup_ehorus.php:240
+#: ../../godmode/setup/setup_integria.php:621
+#: ../../operation/users/user_edit.php:1156
+msgid "Invalid password"
+msgstr "Invalid password"
+
+#: ../../godmode/setup/setup_websocket_engine.php:38
+msgid "WebSocket settings"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:47
+msgid "Bind address"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:57
+msgid "Bind port"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:67
+#: ../../include/functions_config.php:367
+msgid "WebSocket proxy url"
+msgstr ""
+
+#: ../../godmode/setup/os.list.php:90
+msgid "There are no defined operating systems"
+msgstr "There are no operating systems defined"
+
+#: ../../godmode/setup/os.list.php:96
+msgid "Create OS"
+msgstr "Create OS"
+
+#: ../../godmode/setup/os.php:74
+msgid "Fail creating OS"
+msgstr "Error creating OS"
+
+#: ../../godmode/setup/os.php:80 ../../include/functions_api.php:1689
+msgid "Success creating OS"
+msgstr "OS created successfully"
+
+#: ../../godmode/setup/os.php:103
+msgid "Success updatng OS"
+msgstr "OS updated successfully"
+
+#: ../../godmode/setup/os.php:103 ../../include/functions_api.php:1722
+msgid "Error updating OS"
+msgstr "Error updating OS"
+
+#: ../../godmode/setup/os.php:123
+msgid "There are agents with this OS."
+msgstr "This OS is being used."
+
+#: ../../godmode/setup/os.php:127
+msgid "Success deleting"
+msgstr "Deleted successfully"
+
+#: ../../godmode/setup/os.php:127
+msgid "Error deleting"
+msgstr "Error deleting"
+
+#: ../../godmode/setup/os.php:135
+msgid "List OS"
+msgstr "List of OS"
+
+#: ../../godmode/setup/os.php:139
+msgid "Builder OS"
+msgstr "OS editor"
+
+#: ../../godmode/setup/gis_step_2.php:30
+msgid "GIS Maps connections"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:44
+msgid "Create new map connection"
+msgstr "Create new map connection"
+
+#: ../../godmode/setup/gis_step_2.php:71
+msgid "Edit map connection"
+msgstr "Edit map connection"
+
+#: ../../godmode/setup/gis_step_2.php:203
+msgid "Connection Name"
+msgstr "Connection name"
+
+#: ../../godmode/setup/gis_step_2.php:209
+msgid "Number of zoom levels"
+msgstr "Number of zoom levels"
+
+#: ../../godmode/setup/gis_step_2.php:213
+msgid "Default zoom level"
+msgstr "Default zoom level"
+
+#: ../../godmode/setup/gis_step_2.php:216
+msgid "Basic configuration"
+msgstr "Basic configuration"
+
+#: ../../godmode/setup/gis_step_2.php:221
+msgid "Open Street Maps"
+msgstr "OpenStreetMaps"
+
+#: ../../godmode/setup/gis_step_2.php:222
+msgid "Google Maps"
+msgstr "Google Maps"
+
+#: ../../godmode/setup/gis_step_2.php:223
+#: ../../godmode/reporting/visual_console_builder.elements.php:174
+#: ../../include/functions_visual_map_editor.php:1297
+#: ../../include/functions_visual_map.php:4200
+#: ../../operation/visual_console/view.php:215
+msgid "Static Image"
+msgstr "Static image"
+
+#: ../../godmode/setup/gis_step_2.php:224
+msgid "WMS Server"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:226
+msgid "Please select the connection type"
+msgstr "Please select the connection type"
+
+#: ../../godmode/setup/gis_step_2.php:228
+msgid "Map connection type"
+msgstr "Map connection type"
+
+#: ../../godmode/setup/gis_step_2.php:275
+msgid "Tile Server URL"
+msgstr "Tile Server URL"
+
+#: ../../godmode/setup/gis_step_2.php:278
+msgid "Google Physical"
+msgstr "Google Physical"
+
+#: ../../godmode/setup/gis_step_2.php:279
+msgid "Google Hybrid"
+msgstr "Google Hybrid"
+
+#: ../../godmode/setup/gis_step_2.php:280
+msgid "Google Satelite"
+msgstr "Google Satellite"
+
+#: ../../godmode/setup/gis_step_2.php:282
+msgid "Google Map Type"
+msgstr "Google Map Type"
+
+#: ../../godmode/setup/gis_step_2.php:282
+msgid "Google Maps Key"
+msgstr "Google Maps Key"
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Image URL"
+msgstr "Image URL"
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Corners of the area of the image"
+msgstr "Corners of the image area"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1842
+msgid "Left"
+msgstr "Left"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1839
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:296
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:296
+msgid "Bottom"
+msgstr "Bottom"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1841
+msgid "Right"
+msgstr "Right"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1840
+msgid "Top"
+msgstr "Top"
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Image Size"
+msgstr "Image size"
+
+#: ../../godmode/setup/gis_step_2.php:287
+msgid "WMS Server URL"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:315
+msgid ""
+"Preview to select the center of the map and the default position of an agent "
+"without gis data"
+msgstr ""
+"Preview to select the center of the map and the default position for an "
+"agent without GIS data."
+
+#: ../../godmode/setup/gis_step_2.php:316
+msgid "Load preview map"
+msgstr "Load preview map"
+
+#: ../../godmode/setup/gis_step_2.php:325
+msgid "Map Center"
+msgstr "Map Centre"
+
+#: ../../godmode/setup/gis_step_2.php:326
+msgid "Default position for agents without GIS data"
+msgstr "Default position for agents without GIS data"
+
+#: ../../godmode/setup/gis_step_2.php:328
+msgid "Change in the map"
+msgstr "Change on the map"
+
+#: ../../godmode/setup/gis_step_2.php:332
+#: ../../operation/agentes/gis_view.php:215
+msgid "Latitude"
+msgstr "Latitude"
+
+#: ../../godmode/setup/gis_step_2.php:336
+#: ../../operation/agentes/gis_view.php:214
+msgid "Longitude"
+msgstr "Longitude"
+
+#: ../../godmode/setup/gis_step_2.php:340
+#: ../../operation/agentes/gis_view.php:216
+msgid "Altitude"
+msgstr "Altitude"
+
+#: ../../godmode/setup/gis_step_2.php:389
+#: ../../godmode/setup/gis_step_2.php:484
+msgid "Center"
+msgstr "Center"
+
+#: ../../godmode/setup/gis_step_2.php:449
+msgid "Refresh preview map"
+msgstr "Refresh preview map"
+
+#: ../../godmode/setup/setup_auth.php:228
+msgid "Session timeout (mins)"
+msgstr "Session timeout (mins)"
+
+#: ../../godmode/setup/setup_auth.php:271
+#, php-format
+msgid "Local %s"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:272
+msgid "ldap"
+msgstr "LDAP"
+
+#: ../../godmode/setup/setup_integria.php:53
+#: ../../operation/incidents/configure_integriaims_incident.php:48
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:38
+#: ../../operation/incidents/list_integriaims_incidents.php:49
+msgid "Integria IMS API is not reachable"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:200
+#: ../../include/functions_config.php:1506
+msgid "Enable Integria IMS"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:234
+msgid "API Password"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:525
+msgid "Integria API settings"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:536
+msgid "Alert default values"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:546
+msgid "Event custom response default values"
+msgstr ""
+
+#: ../../godmode/setup/links.php:25
+msgid "Link management"
+msgstr "Link management"
+
+#: ../../godmode/setup/snmp_wizard.php:155
+msgid "Unsucessful update the snmp translation"
+msgstr "Error updating SNMP translation"
+
+#: ../../godmode/setup/snmp_wizard.php:162
+msgid "Unsucessful update the snmp translation."
+msgstr "Error updating SNMP translation"
+
+#: ../../godmode/setup/snmp_wizard.php:210
+msgid "Unsucessful delete the snmp translation"
+msgstr "Error deleting SNMP translation"
+
+#: ../../godmode/setup/snmp_wizard.php:217
+msgid "Unsucessful delete the snmp translation."
+msgstr "Error deleting SNMP translation"
+
+#: ../../godmode/setup/snmp_wizard.php:278
+msgid "Unsucessful save the snmp translation"
+msgstr "Error saving SNMP translation"
+
+#: ../../godmode/setup/snmp_wizard.php:287
+msgid "Unsucessful save the snmp translation."
+msgstr "Error saving SNMP translation"
+
+#: ../../godmode/setup/setup_netflow.php:46
+#: ../../include/functions_config.php:1354
+msgid "Data storage path"
+msgstr "Data storage path"
+
+#: ../../godmode/setup/setup_netflow.php:49
+#: ../../include/functions_config.php:1358
+msgid "Daemon interval"
+msgstr "Daemon interval"
+
+#: ../../godmode/setup/setup_netflow.php:52
+#: ../../include/functions_config.php:1362
+msgid "Daemon binary path"
+msgstr "Daemon binary path"
+
+#: ../../godmode/setup/setup_netflow.php:55
+#: ../../include/functions_config.php:1366
+msgid "Nfdump binary path"
+msgstr "Nfdump binary path"
+
+#: ../../godmode/setup/setup_netflow.php:58
+#: ../../include/functions_config.php:1370
+msgid "Nfexpire binary path"
+msgstr "Nfexpire binary path"
+
+#: ../../godmode/setup/setup_netflow.php:61
+#: ../../include/functions_config.php:1374
+msgid "Maximum chart resolution"
+msgstr "Maximum chart resolution"
+
+#: ../../godmode/setup/setup_netflow.php:66
+#: ../../include/functions_config.php:1382
+msgid "Netflow max lifetime"
+msgstr "Max. Netflow lifespan"
+
+#: ../../godmode/setup/setup_netflow.php:69
+#: ../../include/functions_config.php:1386
+msgid "Name resolution for IP address"
+msgstr "Enable IP address name resolution"
+
+#: ../../godmode/setup/setup_netflow.php:70
+#: ../../operation/netflow/nf_live_view.php:451
+msgid "IP address resolution can take a lot of time"
+msgstr "This process can take a long time"
+
+#: ../../godmode/setup/setup_visuals.php:73
+msgid "Paginated module view"
+msgstr "Paginated module view"
+
+#: ../../godmode/setup/setup_visuals.php:100
+msgid "Click to display lateral menus"
+msgstr "Click to display lateral menus"
+
+#: ../../godmode/setup/setup_visuals.php:110
+#: ../../include/functions_config.php:1184
+msgid "Service label font size"
+msgstr "Service label font size"
+
+#: ../../godmode/setup/setup_visuals.php:114
+msgid "Space between items in Service maps"
+msgstr "Space between items in Service maps"
+
+#: ../../godmode/setup/setup_visuals.php:120
+msgid "Behaviour configuration"
+msgstr "Behaviour configuration"
+
+#: ../../godmode/setup/setup_visuals.php:134
+#: ../../include/functions_config.php:909
+msgid "Style template"
+msgstr "Style template"
+
+#: ../../godmode/setup/setup_visuals.php:146
+#: ../../include/functions_config.php:925
+msgid "Status icon set"
+msgstr "Status icon set"
+
+#: ../../godmode/setup/setup_visuals.php:147
+msgid "Colors"
+msgstr "Colours"
+
+#: ../../godmode/setup/setup_visuals.php:148
+msgid "Faces"
+msgstr "Faces"
+
+#: ../../godmode/setup/setup_visuals.php:149
+msgid "Colors and text"
+msgstr "Colours and text"
+
+#: ../../godmode/setup/setup_visuals.php:208
+msgid "Custom background logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:275
+msgid "Custom logo (menu)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:280
+msgid "Custom logo collapsed (menu)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:389
+#: ../../include/functions_config.php:961
+msgid "Custom documentation logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:409
+#: ../../include/functions_config.php:965
+msgid "Custom support logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:428
+#: ../../include/functions_config.php:969
+#: ../../include/functions_config.php:973
+msgid "Custom networkmap center logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:447
+msgid "Custom mobile console icon"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:468
+msgid "Title (header)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:475
+msgid "Subtitle (header)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:519
+msgid "Disable logo in graphs"
+msgstr "Disable logo in graphs"
+
+#: ../../godmode/setup/setup_visuals.php:535
+msgid "Disable helps"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:544
+#: ../../include/functions_config.php:1129
+msgid "Fixed header"
+msgstr "Fixed header"
+
+#: ../../godmode/setup/setup_visuals.php:555
+msgid "Automatically hide submenu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:573
+msgid "Style configuration"
+msgstr "Style configuration"
+
+#: ../../godmode/setup/setup_visuals.php:587
+#: ../../include/functions_config.php:1101
+msgid "GIS Labels"
+msgstr "GIS Labels"
+
+#: ../../godmode/setup/setup_visuals.php:602
+#: ../../include/functions_config.php:1109
+msgid "Default icon in GIS"
+msgstr "Default icon in GIS"
+
+#: ../../godmode/setup/setup_visuals.php:608
+msgid "Agent icon group"
+msgstr "Agent icon group"
+
+#: ../../godmode/setup/setup_visuals.php:616
+msgid "GIS configuration"
+msgstr "GIS configuration"
+
+#: ../../godmode/setup/setup_visuals.php:660
+msgid "Graphs font size"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:691
+#: ../../include/functions_config.php:1077
+#: ../../include/functions_config.php:1081
+msgid "Agent size text"
+msgstr "Agent text size"
+
+#: ../../godmode/setup/setup_visuals.php:692
+#: ../../godmode/setup/setup_visuals.php:697
+msgid "Small:"
+msgstr "Small:"
+
+#: ../../godmode/setup/setup_visuals.php:693
+#: ../../godmode/setup/setup_visuals.php:698
+msgid "Normal:"
+msgstr "Normal:"
+
+#: ../../godmode/setup/setup_visuals.php:696
+#: ../../include/functions_config.php:1085
+msgid "Module size text"
+msgstr "Module text size"
+
+#: ../../godmode/setup/setup_visuals.php:701
+#: ../../include/functions_config.php:1089
+#: ../../include/functions_config.php:1093
+msgid "Description size text"
+msgstr "Description text size"
+
+#: ../../godmode/setup/setup_visuals.php:705
+#: ../../include/functions_config.php:1097
+msgid "Item title size text"
+msgstr "Item title text size"
+
+#: ../../godmode/setup/setup_visuals.php:716
+msgid "Show unit along with value in reports"
+msgstr "Show unit along with value in reports"
+
+#: ../../godmode/setup/setup_visuals.php:726
+msgid "Font and Text configuration"
+msgstr "Font and text settings"
+
+#: ../../godmode/setup/setup_visuals.php:752
+#: ../../include/functions_config.php:868
+msgid "Graph color #4"
+msgstr "Graph colour #4"
+
+#: ../../godmode/setup/setup_visuals.php:756
+#: ../../include/functions_config.php:872
+msgid "Graph color #5"
+msgstr "Graph colour #5"
+
+#: ../../godmode/setup/setup_visuals.php:760
+#: ../../include/functions_config.php:876
+msgid "Graph color #6"
+msgstr "Graph colour #6"
+
+#: ../../godmode/setup/setup_visuals.php:764
+#: ../../include/functions_config.php:880
+msgid "Graph color #7"
+msgstr "Graph colour #7"
+
+#: ../../godmode/setup/setup_visuals.php:768
+#: ../../include/functions_config.php:884
+msgid "Graph color #8"
+msgstr "Graph colour #8"
+
+#: ../../godmode/setup/setup_visuals.php:772
+#: ../../include/functions_config.php:888
+msgid "Graph color #9"
+msgstr "Graph colour #9"
+
+#: ../../godmode/setup/setup_visuals.php:776
+#: ../../include/functions_config.php:892
+msgid "Graph color #10"
+msgstr "Graph colour #10"
+
+#: ../../godmode/setup/setup_visuals.php:789
+msgid "Data precision"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:797
+msgid "Data precision in graphs"
+msgstr "Data precision in graphs"
+
+#: ../../godmode/setup/setup_visuals.php:801
+#: ../../include/functions_config.php:1153
+msgid "Default line thickness for the Custom Graph."
+msgstr "Default line width for the Custom Graph"
+
+#: ../../godmode/setup/setup_visuals.php:838
+msgid "Type of interface charts"
+msgstr "Type of interface charts"
+
+#: ../../godmode/setup/setup_visuals.php:859
+msgid "Graph TIP view:"
+msgstr "Graph TIP view:"
+
+#: ../../godmode/setup/setup_visuals.php:870
+msgid "Show only average"
+msgstr "Show only average"
+
+#: ../../godmode/setup/setup_visuals.php:901
+msgid "Charts configuration"
+msgstr "Chart settings"
+
+#: ../../godmode/setup/setup_visuals.php:955
+msgid "Classic view"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:956
+msgid "View of favorites"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:957
+msgid "Type of view of visual consoles"
+msgstr "Type of view of visual consoles"
+
+#: ../../godmode/setup/setup_visuals.php:961
+msgid "Number of favorite visual consoles to show in the menu"
+msgstr "Number of favourite visual consoles to show in the menu"
+
+#: ../../godmode/setup/setup_visuals.php:965
+#: ../../include/functions_config.php:1069
+msgid "Default line thickness for the Visual Console"
+msgstr "Default line width for the Visual Console"
+
+#: ../../godmode/setup/setup_visuals.php:970
+msgid "Visual consoles configuration"
+msgstr "Visual consoles configuration"
+
+#: ../../godmode/setup/setup_visuals.php:984
+msgid "Number of favorite services to show in the menu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:988
+msgid "Services configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1126
+msgid "Reports configuration "
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1143
+#: ../../include/functions_config.php:1137
+msgid "Custom graphviz directory"
+msgstr "Custom graphviz directory"
+
+#: ../../godmode/setup/setup_visuals.php:1155
+#: ../../include/functions_config.php:1141
+msgid "Networkmap max width"
+msgstr "Networkmap max width"
+
+#: ../../godmode/setup/setup_visuals.php:1206
+msgid "Custom values post process"
+msgstr "Custom value post processing"
+
+#: ../../godmode/setup/setup_visuals.php:1227
+#: ../../godmode/setup/setup_visuals.php:1295
+msgid "Delete custom values"
+msgstr "Delete custom values"
+
+#: ../../godmode/setup/setup_visuals.php:1259
+msgid "Interval values"
+msgstr "Interval values"
+
+#: ../../godmode/setup/setup_visuals.php:1287
+msgid "Module units"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1340
+msgid "Other configuration"
+msgstr "Other configuration"
+
+#: ../../godmode/setup/setup_visuals.php:1643
+msgid "Mobile console logo preview"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1678
+msgid "Gis icons preview"
+msgstr "GIS icon preview"
+
+#: ../../godmode/setup/setup_visuals.php:1744
+msgid "Status set preview"
+msgstr "Status set preview"
+
+#: ../../godmode/setup/setup_general.php:70
+msgid ""
+"This is an email test sent from Pandora FMS. If you can read this, your "
+"configuration works."
+msgstr ""
+"This is an e-mail test sent from Pandora FMS. If you can read this, your "
+"configuration works!"
+
+#: ../../godmode/setup/setup_general.php:71
+msgid "Testing Pandora FMS email"
+msgstr "Testing Pandora FMS e-mail"
+
+#: ../../godmode/setup/setup_general.php:109
+#: ../../include/functions_update_manager.php:147
+msgid "Language code"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:120
+#: ../../include/functions_config.php:165
+msgid "Remote config directory"
+msgstr "Remote configuration directory"
+
+#: ../../godmode/setup/setup_general.php:134
+#: ../../include/functions_config.php:181
+msgid "Automatic check for updates"
+msgstr "Automatically check for updates"
+
+#: ../../godmode/setup/setup_general.php:137
+msgid "Enforce https Information"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:138
+msgid "If SSL is not properly configured you will lose access to "
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:138
+#: ../../godmode/setup/setup_general.php:263
+msgid " Console"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:144
+msgid "Use cert of SSL"
+msgstr "Use SSL certificate"
+
+#: ../../godmode/setup/setup_general.php:149
+msgid "Path of SSL Cert."
+msgstr "Path of SSL Certificate"
+
+#: ../../godmode/setup/setup_general.php:167
+#: ../../include/functions_config.php:209
+msgid "Enable GIS features"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:170
+#: ../../include/functions_config.php:225
+msgid "Enable Netflow"
+msgstr "Enable Netflow"
+
+#: ../../godmode/setup/setup_general.php:178
+#: ../../include/functions_config.php:229
+msgid "Enable Network Traffic Analyzer"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:236
+#: ../../include/functions_config.php:240
+msgid "Sound for Alert fired"
+msgstr "Sound for triggered alerts"
+
+#: ../../godmode/setup/setup_general.php:238
+#: ../../godmode/setup/setup_general.php:243
+#: ../../godmode/setup/setup_general.php:248
+msgid "Play sound"
+msgstr "Play sound"
+
+#: ../../godmode/setup/setup_general.php:241
+#: ../../include/functions_config.php:244
+msgid "Sound for Monitor critical"
+msgstr "Sound for Monitor critical"
+
+#: ../../godmode/setup/setup_general.php:246
+#: ../../include/functions_config.php:248
+msgid "Sound for Monitor warning"
+msgstr "Sound for monitor warning"
+
+#: ../../godmode/setup/setup_general.php:262
+msgid "Enforce public URL usage information"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:263
+msgid "If public URL is not properly configured you will lose access to "
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:269
+#: ../../include/functions_config.php:279
+msgid "Referer security"
+msgstr "Referer security"
+
+#: ../../godmode/setup/setup_general.php:272
+#: ../../include/functions_config.php:283
+msgid "Event storm protection"
+msgstr "Event Storm protection"
+
+#: ../../godmode/setup/setup_general.php:279
+#: ../../include/functions_config.php:291
+msgid "Server logs directory"
+msgstr "Server log directory"
+
+#: ../../godmode/setup/setup_general.php:289
+#: ../../include/functions_config.php:295
+msgid "Log size limit in system logs viewer extension"
+msgstr "Log size limit in system logs viewer extension"
+
+#: ../../godmode/setup/setup_general.php:300
+msgid "Full mode"
+msgstr "Full assist mode"
+
+#: ../../godmode/setup/setup_general.php:301
+msgid "On demand"
+msgstr "On demand"
+
+#: ../../godmode/setup/setup_general.php:302
+msgid "Expert"
+msgstr "Expert"
+
+#: ../../godmode/setup/setup_general.php:304
+#: ../../include/functions_config.php:299
+msgid "Tutorial mode"
+msgstr "Tutorial mode"
+
+#: ../../godmode/setup/setup_general.php:316
+#: ../../include/functions_config.php:303
+msgid "Allow create planned downtimes in the past"
+msgstr "Allows the creation of planned downtimes for past dates"
+
+#: ../../godmode/setup/setup_general.php:319
+msgid "Limit for bulk operations"
+msgstr "Limit for bulk operations"
+
+#: ../../godmode/setup/setup_general.php:329
+msgid "Include agents manually disabled"
+msgstr "Include manually disabled agents"
+
+#: ../../godmode/setup/setup_general.php:335
+msgid "Set alias as name by default in agent creation"
+msgstr "Set alias as name by default in agent creation"
+
+#: ../../godmode/setup/setup_general.php:344
+msgid "General options"
+msgstr "General settings"
+
+#: ../../godmode/setup/setup_general.php:361
+msgid "From address"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:367
+msgid "SMTP Server"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:370
+msgid "SMTP Port"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:373
+#: ../../include/functions_config.php:347
+msgid "Encryption"
+msgstr "Encryption"
+
+#: ../../godmode/setup/setup_general.php:374
+#: ../../godmode/reporting/create_container.php:262
+#: ../../godmode/reporting/create_container.php:278
+#: ../../include/ajax/events.php:799 ../../include/ajax/graph.ajax.php:139
+#: ../../include/functions_html.php:1161
+#: ../../operation/events/events_list.php:1592
+#: ../../operation/events/events_list.php:1683
+msgid "none"
+msgstr "none"
+
+#: ../../godmode/setup/setup_general.php:384
+msgid "Email test"
+msgstr "E-mail test"
+
+#: ../../godmode/setup/setup_general.php:415 ../../general/header.php:784
+msgid "Send"
+msgstr "Send"
+
+#: ../../godmode/setup/setup_general.php:417
+msgid "Check mail configuration"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:172
+msgid "Pandora_db running in active database."
+msgstr ""
+
+#: ../../godmode/setup/performance.php:173
+#: ../../godmode/setup/performance.php:229
+msgid "Executed:"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:228
+msgid "Pandora_db running in historical database."
+msgstr ""
+
+#: ../../godmode/setup/performance.php:236
+msgid "not executed"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:262
+#: ../../include/functions_config.php:743
+msgid "Max. days before delete traps"
+msgstr "Max. days before traps are deleted"
+
+#: ../../godmode/setup/performance.php:282
+#: ../../godmode/setup/performance.php:480
+#: ../../include/functions_config.php:747
+msgid "Max. days before delete string data"
+msgstr "Max. days before string data is deleted"
+
+#: ../../godmode/setup/performance.php:292
+#: ../../include/functions_config.php:755
+msgid "Max. days before delete GIS data"
+msgstr "Max. days before GIS data is deleted"
+
+#: ../../godmode/setup/performance.php:302
+#: ../../godmode/setup/performance.php:440
+#: ../../include/functions_config.php:759
+msgid "Max. days before purge"
+msgstr "Max. days before purge"
+
+#: ../../godmode/setup/performance.php:312
+#: ../../godmode/setup/performance.php:450
+#: ../../include/functions_config.php:767
+msgid "Max. days before compact data"
+msgstr "Max. days before data is compacted"
+
+#: ../../godmode/setup/performance.php:322
+#: ../../include/functions_config.php:763
+msgid "Max. days before delete unknown modules"
+msgstr "Max. days before unknown modules are deleted"
+
+#: ../../godmode/setup/performance.php:332
+msgid "Max. days before delete autodisabled agents"
+msgstr "Max. days before autodisabled agents are deleted"
+
+#: ../../godmode/setup/performance.php:342
+#: ../../include/functions_config.php:815
+msgid "Retention period of past special days"
+msgstr "Retention period of past special days"
+
+#: ../../godmode/setup/performance.php:352
+#: ../../include/functions_config.php:819
+msgid "Max. macro data fields"
+msgstr "Max. macro data fields"
+
+#: ../../godmode/setup/performance.php:366
+#: ../../include/functions_config.php:824
+msgid "Max. days before delete inventory data"
+msgstr "Max. days before inventory data is deleted"
+
+#: ../../godmode/setup/performance.php:415
+msgid "The tconfig table does not exist in the historical database"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:460
+#: ../../godmode/setup/performance.php:541
+#: ../../include/functions_config.php:779
+msgid "Compact interpolation in hours (1 Fine-20 bad)"
+msgstr "Compact interpolation in hours (1 = fine / 20 = bad)"
+
+#: ../../godmode/setup/performance.php:498
+#: ../../include/functions_config.php:829
+msgid "Max. days before delete old messages"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:511
+#: ../../include/functions_config.php:833
+msgid "Max. days before delete old network matrix data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:531
+msgid "Item limit for realtime reports"
+msgstr "Item limit for real-time reports"
+
+#: ../../godmode/setup/performance.php:554
+msgid "Last day"
+msgstr "Last day"
+
+#: ../../godmode/setup/performance.php:556
+msgid "10 days"
+msgstr "10 days"
+
+#: ../../godmode/setup/performance.php:558
+msgid "2 weeks"
+msgstr "2 weeks"
+
+#: ../../godmode/setup/performance.php:571
+#: ../../include/functions_config.php:787
+msgid "Use realtime statistics"
+msgstr "Use real-time statistics"
+
+#: ../../godmode/setup/performance.php:579
+#: ../../include/functions_config.php:791
+msgid "Batch statistics period (secs)"
+msgstr "Batch statistics period (secs)"
+
+#: ../../godmode/setup/performance.php:592
+#: ../../include/functions_config.php:799
+msgid "Max. recommended number of files in attachment directory"
+msgstr "Max. recommended number of files in attachment directory"
+
+#: ../../godmode/setup/performance.php:602
+#: ../../include/functions_config.php:803
+msgid "Delete not init modules"
+msgstr "Delete not initialized modules"
+
+#: ../../godmode/setup/performance.php:605
+msgid "Big Operation Step to purge old data"
+msgstr "Big Operation Step to purge old data"
+
+#: ../../godmode/setup/performance.php:615
+#: ../../include/functions_config.php:811
+msgid "Small Operation Step to purge old data"
+msgstr "Small Operation Step to purge old data"
+
+#: ../../godmode/setup/performance.php:625
+#: ../../include/functions_config.php:837
+msgid "Graph container - Max. Items"
+msgstr "Graph container - Max. Items"
+
+#: ../../godmode/setup/performance.php:648
+msgid "Database maintenance status"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:653
+msgid "Database maintenance options"
+msgstr "Database maintenance options"
+
+#: ../../godmode/setup/performance.php:659
+msgid "Historical database maintenance options"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:665
+#: ../../include/functions_network.php:242
+#: ../../include/functions_visual_map.php:2873
+#: ../../include/functions_netflow.php:1819
+#: ../../operation/network/network_report.php:344
+msgid "Others"
+msgstr "Others"
+
+#: ../../godmode/setup/file_manager.php:67 ../../godmode/servers/plugin.php:238
+#: ../../include/functions_filemanager.php:598
+#: ../../include/functions_filemanager.php:603
+#, php-format
+msgid "Index of %s"
+msgstr "Index of %s"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:94
+msgid "Create visual console"
+msgstr "Create a new visual console"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid ""
+"Use [ or ( as first character, for example '[*] Map name', to render this "
+"map name in main menu"
+msgstr ""
+"Use [ or ( as first character, for example '[*] Map name', to render this "
+"map name in main menu."
+
+#: ../../godmode/reporting/visual_console_builder.data.php:160
+#: ../../godmode/reporting/visual_console_builder.elements.php:144
+#: ../../include/functions_visual_map_editor.php:55
+#: ../../include/functions_visual_map_editor.php:564
+#: ../../include/lib/Dashboard/Widget.php:508
+msgid "Background"
+msgstr "Background"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:170
+msgid "Background image"
+msgstr "Background image"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:172
+#: ../../include/functions_visual_map_editor.php:325
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:450
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:511
+msgid "Background color"
+msgstr "Background colour"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:202
+msgid "Layout size"
+msgstr "Layout size"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:205
+msgid "Set custom size"
+msgstr "Set custom size"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:211
+msgid "Get default image size"
+msgstr "Get default image size"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:213
+msgid "Favourite visual console"
+msgstr "Favourite visual console"
+
+#: ../../godmode/reporting/visual_console_builder.php:185
+msgid "This file isn't image"
+msgstr "Invalid image file"
+
+#: ../../godmode/reporting/visual_console_builder.php:188
+msgid "This file isn't image."
+msgstr "Invalid image file"
+
+#: ../../godmode/reporting/visual_console_builder.php:194
+#: ../../godmode/reporting/visual_console_builder.php:197
+msgid "File already are exists."
+msgstr "File already exists"
+
+#: ../../godmode/reporting/visual_console_builder.php:205
+#: ../../godmode/reporting/visual_console_builder.php:208
+msgid "The file have not image extension."
+msgstr "The file does not have an image extension."
+
+#: ../../godmode/reporting/visual_console_builder.php:220
+#: ../../godmode/reporting/visual_console_builder.php:223
+#: ../../godmode/reporting/visual_console_builder.php:233
+#: ../../godmode/reporting/visual_console_builder.php:239
+msgid "Problems with move file to target."
+msgstr "Error moving file to target location"
+
+#: ../../godmode/reporting/visual_console_builder.php:270
+msgid "Successfully update."
+msgstr "Updated successfully"
+
+#: ../../godmode/reporting/visual_console_builder.php:286
+msgid "Could not be update."
+msgstr "Could not be updated"
+
+#: ../../godmode/reporting/visual_console_builder.php:303
+msgid "Successfully created."
+msgstr "Created successfully"
+
+#: ../../godmode/reporting/visual_console_builder.php:319
+msgid "Could not be created."
+msgstr "Could not be created"
+
+#: ../../godmode/reporting/visual_console_builder.php:366
+msgid "Successfully multiple delete."
+msgstr "Multiple items deleted successfully"
+
+#: ../../godmode/reporting/visual_console_builder.php:367
+msgid "Unsuccessful multiple delete."
+msgstr "Error deleting multiple items"
+
+#: ../../godmode/reporting/visual_console_builder.php:469
+msgid "Successfully delete."
+msgstr "Deleted successfully"
+
+#: ../../godmode/reporting/visual_console_builder.php:778
+#: ../../operation/visual_console/pure_ajax.php:148
+#: ../../operation/visual_console/view.php:161
+#: ../../operation/visual_console/legacy_view.php:151
+msgid "Services wizard"
+msgstr "Services wizard"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:389
+msgid "Name or Description"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:409
+#: ../../include/functions_graph.php:1377
+msgid "No items."
+msgstr "No items"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:605
+#: ../../godmode/reporting/reporting_builder.list_items.php:609
+#: ../../godmode/reporting/graph_builder.graph_editor.php:270
+#: ../../godmode/reporting/graph_builder.graph_editor.php:274
+msgid "Sort items"
+msgstr "Sort items"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:612
+msgid "Sort selected items from position: "
+msgstr "Sort selected items from position: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:615
+msgid "Move before to"
+msgstr "Move before"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:616
+msgid "Move after to"
+msgstr "Move after"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:656
+#: ../../godmode/reporting/reporting_builder.list_items.php:660
+msgid "Delete items"
+msgstr "Delete items"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:663
+msgid "Delete selected items from position: "
+msgstr "Delete selected items from position: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:666
+msgid "Delete above to"
+msgstr "Delete everything above"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:667
+msgid "Delete below to"
+msgstr "Delete everything below"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:723
+msgid ""
+"Are you sure to sort the items into the report?\\n. This action change the "
+"sorting of items into data base."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:743
+#: ../../godmode/reporting/graph_builder.graph_editor.php:450
+msgid "Please select any item to order"
+msgstr "Please select any item to sort"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:773
+msgid "Are you sure to delete the items into the report?\\n"
+msgstr "Are you sure you want to delete the items in the report?\\n"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:800
+msgid "Please select any item to delete"
+msgstr "Please select an item to delete it."
+
+#: ../../godmode/reporting/create_container.php:181
+#: ../../godmode/reporting/graph_container.php:84
+msgid "Create container"
+msgstr "Create container"
+
+#: ../../godmode/reporting/create_container.php:190
+msgid "Container stored successfully"
+msgstr "Container stored successfully"
+
+#: ../../godmode/reporting/create_container.php:190
+msgid "There was a problem storing container"
+msgstr "There was a problem storing the container"
+
+#: ../../godmode/reporting/create_container.php:194
+msgid "Update the container"
+msgstr "Update the container"
+
+#: ../../godmode/reporting/create_container.php:194
+msgid "Bad update the container"
+msgstr "Bad update the container"
+
+#: ../../godmode/reporting/create_container.php:255
+msgid "Parent container"
+msgstr "Parent container"
+
+#: ../../godmode/reporting/create_container.php:313
+#: ../../include/functions.php:2529
+msgid "custom"
+msgstr "custom"
+
+#: ../../godmode/reporting/create_container.php:315
+#: ../../godmode/reporting/create_container.php:316
+#: ../../godmode/reporting/create_container.php:317
+#: ../../include/functions.php:2541 ../../include/functions.php:2542
+#: ../../include/ajax/graph.ajax.php:141 ../../include/ajax/graph.ajax.php:142
+#: ../../include/ajax/graph.ajax.php:143
+#, php-format
+msgid "%s hours"
+msgstr "%s hours"
+
+#: ../../godmode/reporting/create_container.php:319
+#: ../../godmode/reporting/create_container.php:320
+#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/graph.ajax.php:146
+#, php-format
+msgid "%s days"
+msgstr "%s days"
+
+#: ../../godmode/reporting/create_container.php:321
+#: ../../include/functions.php:2544 ../../include/ajax/module.php:169
+#: ../../include/ajax/graph.ajax.php:147
+msgid "1 week"
+msgstr "1 week"
+
+#: ../../godmode/reporting/create_container.php:323
+#: ../../include/functions.php:2546 ../../include/ajax/module.php:171
+#: ../../include/ajax/graph.ajax.php:149
+msgid "1 month"
+msgstr "1 month"
+
+#: ../../godmode/reporting/create_container.php:333
+#: ../../godmode/reporting/create_container.php:442
+#: ../../godmode/reporting/create_container.php:496
+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 ""
+"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. "
+
+#: ../../godmode/reporting/create_container.php:396
+#: ../../godmode/reporting/create_container.php:551
+#: ../../godmode/reporting/graph_builder.main.php:145
+#: ../../include/functions_visual_map_editor.php:498
+msgid "Type of graph"
+msgstr "Type of graph"
+
+#: ../../godmode/reporting/create_container.php:405
+#: ../../godmode/reporting/create_container.php:462
+#: ../../godmode/reporting/create_container.php:557
+#: ../../godmode/reporting/graph_builder.main.php:177
+#: ../../operation/agentes/stat_win.php:367
+#: ../../operation/agentes/interface_traffic_graph_win.php:222
+msgid "Show full scale graph (TIP)"
+msgstr "Show full scale graph (TIP)"
+
+#: ../../godmode/reporting/create_container.php:416
+#: ../../godmode/reporting/create_container.php:469
+#: ../../godmode/reporting/create_container.php:564
+msgid "Add item"
+msgstr "Add item"
+
+#: ../../godmode/reporting/create_container.php:580
+msgid "There are no defined item container"
+msgstr "There are no defined item containers"
+
+#: ../../godmode/reporting/create_container.php:589
+msgid "Agent/Module"
+msgstr "Agent/Module"
+
+#: ../../godmode/reporting/create_container.php:592
+msgid "M.Group"
+msgstr "M.Group"
+
+#: ../../godmode/reporting/map_builder.php:270
+#: ../../godmode/reporting/map_builder.php:278
+msgid "Not copied. Error copying data"
+msgstr "Error copying data"
+
+#: ../../godmode/reporting/map_builder.php:319
+#: ../../godmode/reporting/visual_console_favorite.php:135
+msgid "Group Recursion"
+msgstr "Group Recursion"
+
+#: ../../godmode/reporting/map_builder.php:335
+msgid "Map name"
+msgstr "Map name"
+
+#: ../../godmode/reporting/map_builder.php:337
+msgid "Items"
+msgstr "Items"
+
+#: ../../godmode/reporting/map_builder.php:413
+#: ../../general/first_task/map_builder.php:23
+msgid "There are no visual console defined yet."
+msgstr "There are no visual consoles defined yet."
+
+#: ../../godmode/reporting/graph_builder.php:257
+#: ../../operation/reporting/graph_viewer.php:160
+msgid "Graph editor"
+msgstr "Graph editor"
+
+#: ../../godmode/reporting/graph_builder.php:261
+#: ../../operation/reporting/graph_viewer.php:168
+msgid "View graph"
+msgstr "View graph"
+
+#: ../../godmode/reporting/graph_builder.php:273
+msgid "Graph builder"
+msgstr "Graph builder"
+
+#: ../../godmode/reporting/graph_builder.php:307
+msgid "Graph stored successfully"
+msgstr "Graph stored successfully"
+
+#: ../../godmode/reporting/graph_builder.php:307
+msgid "There was a problem storing Graph"
+msgstr "There was a problem storing the graph"
+
+#: ../../godmode/reporting/graph_builder.php:311
+msgid "There was a problem adding Module"
+msgstr "There was a problem adding the module"
+
+#: ../../godmode/reporting/graph_builder.php:315
+msgid "Update the graph"
+msgstr "Update the graph"
+
+#: ../../godmode/reporting/graph_builder.php:315
+msgid "Bad update the graph"
+msgstr "Error updating the graph"
+
+#: ../../godmode/reporting/graph_builder.php:319
+msgid "Graph deleted successfully"
+msgstr "Graph deleted successfully"
+
+#: ../../godmode/reporting/graph_builder.php:319
+msgid "There was a problem deleting Graph"
+msgstr "Error deleting the graph"
+
+#: ../../godmode/reporting/graphs.php:77
+msgid "Graphs containers"
+msgstr "Graphs containers"
+
+#: ../../godmode/reporting/graphs.php:172
+#: ../../godmode/reporting/reporting_builder.php:665
+msgid "Free text for search: "
+msgstr "Free text for search: "
+
+#: ../../godmode/reporting/graphs.php:173
+#: ../../godmode/reporting/reporting_builder.php:667
+msgid "Search by report name or description, list matches."
+msgstr "Search by report name or description, list matches."
+
+#: ../../godmode/reporting/graphs.php:185
+#: ../../godmode/reporting/reporting_builder.php:693
+msgid "Show Option"
+msgstr "Show Option"
+
+#: ../../godmode/reporting/graphs.php:263
+#: ../../include/functions_container.php:147
+#: ../../operation/search_graphs.php:29
+#: ../../operation/reporting/graph_viewer.php:376
+msgid "Graph name"
+msgstr "Graph name"
+
+#: ../../godmode/reporting/graphs.php:265
+#: ../../include/functions_container.php:149
+msgid "Number of Graphs"
+msgstr "Number of graphs"
+
+#: ../../godmode/reporting/graphs.php:334
+msgid "Create graph"
+msgstr "Create graph"
+
+#: ../../godmode/reporting/visual_console_favorite.php:167
+msgid "No favourite consoles defined"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:277
+msgid "Sort selected items"
+msgstr "Sort selected items"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:280
+msgid "before to"
+msgstr "before to"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:281
+msgid "after to"
+msgstr "after to"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:808
+msgid "Not valid"
+msgstr "Not valid"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:816
+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 loading a lot of data. Therefore it is "
+"recommended for scheduled reports, not real-time view."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:918
+msgid "Local metaconsole"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:966
+msgid "Log number"
+msgstr "Log number"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:968
+msgid ""
+"Warning: this parameter limits the contents of the logs and affects the "
+"performance."
+msgstr ""
+"Warning: this parameter limits the contents of the logs and affects the "
+"performance."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:984
+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:1028
+#: ../../operation/netflow/nf_live_view.php:295
+#: ../../operation/incidents/integriaims_export_csv.php:92
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:374
+#: ../../operation/incidents/list_integriaims_incidents.php:155
+msgid "Resolution"
+msgstr "Resolution"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1524
+msgid "Show modules"
+msgstr "Show modules"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1776
+msgid "Target server"
+msgstr "Target server"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2064
+msgid "This option may cause performance issues."
+msgstr "This option may cause performance issues."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2098
+msgid "Greater or equal (>=)"
+msgstr "Greater or equal to (>=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2099
+msgid "Less or equal (<=)"
+msgstr "Less than or equal to (<=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2100
+msgid "Less (<)"
+msgstr "Less than (<)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2101
+msgid "Greater (>)"
+msgstr "Greater than (>)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2102
+msgid "Equal (=)"
+msgstr "Equal to (=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2103
+msgid "Not equal (!=)"
+msgstr "Not equal to (!=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2220
+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:2414
+msgid "Include extended events"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2478
+msgid ""
+"With the token enabled the query will affect the Historical Database, which "
+"may mean a small drop in performance."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2667
+msgid ""
+"Lapses of time in which the period is divided to make more precise "
+"calculations\n"
+msgstr ""
+"Lapses of time in which the period is divided to make more precise "
+"calculations\n"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2864
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3290
+msgid "Agent Failover"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2869
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3293
+msgid "Module Failover"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2909
+msgid "Please save the SLA for start to add items in this list."
+msgstr "Please save the SLA before adding items to this list."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3266
+msgid "rate"
+msgstr "rate"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3314
+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 summation may return mistaken results."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3334
+msgid "Please save the report to start adding items into the list."
+msgstr "Please save the report to start adding items to the list."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3597
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3601
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3605
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3609
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3613
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3617
+msgid "Item Editor Information"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3598
+msgid "Please select a name."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3602
+msgid "Please select an agent."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3610
+msgid "Please insert a SQL query."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3614
+msgid "Please insert a URL."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3618
+msgid "Please checked a custom interval option."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:106
+msgid "Width x Height
Max value" +msgstr "Width x Height
Max value" + +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "Map linked" + +#: ../../godmode/reporting/visual_console_builder.elements.php:182 +msgid "Percentile Bar" +msgstr "Percentile Bar" + +#: ../../godmode/reporting/visual_console_builder.elements.php:190 +msgid "Percentile Bubble" +msgstr "Percentile Bubble" + +#: ../../godmode/reporting/visual_console_builder.elements.php:198 +#: ../../mobile/operation/events.php:549 +#: ../../include/functions_visual_map_editor.php:1299 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:542 +#: ../../operation/visual_console/view.php:225 +msgid "Module Graph" +msgstr "Module Graph" + +#: ../../godmode/reporting/visual_console_builder.elements.php:206 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:1302 +#: ../../include/functions_visual_map.php:4180 +#: ../../operation/visual_console/view.php:240 +msgid "Event history graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:214 +#: ../../include/functions_visual_map_editor.php:1303 +#: ../../include/functions_visual_map.php:4205 +#: ../../include/rest-api/models/VisualConsole/Item.php:2013 +#: ../../operation/visual_console/view.php:245 +msgid "Simple Value" +msgstr "Simple Value" + +#: ../../godmode/reporting/visual_console_builder.elements.php:222 +msgid "Simple Value (Process Max)" +msgstr "Simple Value (Process Max)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:230 +msgid "Simple Value (Process Min)" +msgstr "Simple Value (Process Min)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:238 +msgid "Simple Value (Process Avg)" +msgstr "Simple Value (Process Avg)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:262 +#: ../../include/functions_visual_map_editor.php:71 +#: ../../include/functions_visual_map_editor.php:1308 +#: ../../include/functions_visual_map.php:4160 +#: ../../operation/visual_console/view.php:270 +msgid "Box" +msgstr "Box" + +#: ../../godmode/reporting/visual_console_builder.elements.php:286 +#: ../../include/functions_visual_map_editor.php:73 +#: ../../include/functions_visual_map_editor.php:1310 +#: ../../include/functions_visual_map.php:4220 +#: ../../include/rest-api/models/VisualConsole/Item.php:2025 +#: ../../operation/visual_console/view.php:280 +msgid "Color cloud" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:312 +#: ../../godmode/reporting/visual_console_builder.elements.php:758 +msgid "Edit label" +msgstr "Edit label" + +#: ../../godmode/reporting/reporting_builder.main.php:130 +msgid "Only the group can view the report" +msgstr "Only the group can view the report" + +#: ../../godmode/reporting/reporting_builder.main.php:131 +msgid "The next group can edit the report" +msgstr "The next group can edit the report" + +#: ../../godmode/reporting/reporting_builder.main.php:132 +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:134 +msgid "Write Access" +msgstr "Write Access" + +#: ../../godmode/reporting/reporting_builder.main.php:134 +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 to be visible to \"All\" groups, but you only " +"want your group or yourself to be able to edit it." + +#: ../../godmode/reporting/reporting_builder.main.php:171 +msgid "Non interactive report" +msgstr "Non-interactive Report" + +#: ../../godmode/reporting/reporting_builder.php:185 +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 is finished." + +#: ../../godmode/reporting/reporting_builder.php:186 +msgid "An error has ocurred" +msgstr "An error has ocurred." + +#: ../../godmode/reporting/reporting_builder.php:495 +#: ../../godmode/reporting/reporting_builder.php:3001 +#: ../../godmode/reporting/reporting_builder.php:3072 +#: ../../godmode/reporting/reporting_builder.php:3110 +msgid "Reports list" +msgstr "List of reports" + +#: ../../godmode/reporting/reporting_builder.php:508 +#: ../../godmode/reporting/reporting_builder.php:540 +#: ../../godmode/reporting/reporting_builder.php:3012 +#: ../../operation/menu.php:334 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "Custom reports" + +#: ../../godmode/reporting/reporting_builder.php:925 +msgid "This report exceeds the item limit for realtime operations" +msgstr "This report exceeds the item limit for real-time operations" + +#: ../../godmode/reporting/reporting_builder.php:1136 +msgid "Create report" +msgstr "Create report" + +#: ../../godmode/reporting/reporting_builder.php:3097 +#: ../../operation/reporting/reporting_viewer.php:109 +msgid "View report" +msgstr "View report" + +#: ../../godmode/reporting/reporting_builder.php:3113 +msgid "Create Custom Report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:3165 +msgid "Unsuccessful action

" +msgstr "Unsuccessful action

" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 +msgid "Static Graph" +msgstr "Static Graph" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1298 +#: ../../operation/visual_console/view.php:220 +msgid "Percentile Item" +msgstr "Percentile item" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:129 +#: ../../mobile/operation/home.php:98 +#: ../../include/functions_visual_map_editor.php:363 +#: ../../include/functions_visual_map.php:4165 +#: ../../include/rest-api/models/VisualConsole/Item.php:1981 +msgid "Module graph" +msgstr "Module graph" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 +msgid "Simple value" +msgstr "Simple value" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "Range between elements (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "Size (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:248 +#: ../../include/functions_config.php:933 +msgid "Font size" +msgstr "Font size" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:279 +#: ../../include/functions_visual_map_editor.php:547 +msgid "Min value" +msgstr "Min value" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:280 +#: ../../godmode/reporting/visual_console_builder.wizard.php:298 +#: ../../include/functions_visual_map_editor.php:548 +#: ../../include/functions_visual_map_editor.php:614 +msgid "Max value" +msgstr "Max value" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:281 +#: ../../include/functions_visual_map_editor.php:549 +msgid "Avg value" +msgstr "Avg value" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:293 +msgid "Width (px)" +msgstr "Width (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:315 +#: ../../include/functions_visual_map_editor.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:453 +msgid "Bubble" +msgstr "Bubble" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:327 +#: ../../include/functions_visual_map_editor.php:643 +#: ../../include/functions_visual_map_editor.php:661 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:503 +msgid "Value to show" +msgstr "Value to show" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:329 +#: ../../include/functions_visual_map_editor.php:624 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:498 +msgid "Percent" +msgstr "Percent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:398 +msgid "One item per agent" +msgstr "One item per agent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/reporting/visual_console_builder.wizard.php:785 +msgid "Agent - Module" +msgstr "Agent - Module" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +msgid "Enable link agent" +msgstr "Enable agent link" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:496 +msgid "Set Parent" +msgstr "Set parent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:499 +msgid "Item created in the visualmap" +msgstr "Item created on the visual map" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:500 +msgid "Use the agents relationship (from selected agents)" +msgstr "Use the agents relationship (from selected agents)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:509 +msgid "Item in the map" +msgstr "Item on the map" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:530 +#: ../../godmode/reporting/visual_console_builder.wizard.php:534 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "Are you sure you want to add so many elements\\non the visual map?" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:706 +msgid "Please select any module or modules." +msgstr "Please select any module or modules." + +#: ../../godmode/reporting/visual_console_builder.editor.php:162 +msgid "Min allowed size is 1024x768" +msgstr "Min allowed size is 1024x768" + +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +#: ../../godmode/reporting/visual_console_builder.editor.php:168 +#: ../../godmode/reporting/visual_console_builder.editor.php:170 +#: ../../operation/snmpconsole/snmp_browser.php:208 +msgid "Action in progress" +msgstr "Action in progress" + +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +msgid "Loading in progress" +msgstr "Loading" + +#: ../../godmode/reporting/visual_console_builder.editor.php:168 +msgid "Saving in progress" +msgstr "Saving" + +#: ../../godmode/reporting/visual_console_builder.editor.php:170 +msgid "Deletion in progress" +msgstr "Deleting" + +#: ../../godmode/reporting/graph_builder.main.php:155 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:265 +#: ../../operation/reporting/graph_viewer.php:269 +msgid "Bullet chart" +msgstr "Bullet chart" + +#: ../../godmode/reporting/graph_builder.main.php:156 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:266 +#: ../../operation/reporting/graph_viewer.php:270 +msgid "Gauge" +msgstr "Gauge" + +#: ../../godmode/reporting/graph_builder.main.php:159 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:269 +#: ../../operation/reporting/graph_viewer.php:273 +msgid "Pie" +msgstr "Pie chart" + +#: ../../godmode/reporting/graph_builder.main.php:167 +#: ../../operation/reporting/graph_viewer.php:278 +msgid "Equalize maximum thresholds" +msgstr "Equalize maximum thresholds" + +#: ../../godmode/reporting/graph_builder.main.php:170 +msgid "Add summatory series" +msgstr "Add summation series" + +#: ../../godmode/reporting/graph_builder.main.php:172 +msgid "Add average series" +msgstr "Add average series" + +#: ../../godmode/reporting/graph_builder.main.php:174 +msgid "Modules and series" +msgstr "Modules and series" + +#: ../../godmode/events/event_responses.editor.php:63 +msgid "Edit event responses" +msgstr "Edit event responses" + +#: ../../godmode/events/event_responses.editor.php:105 +msgid "For Command type Modal Window mode is enforced" +msgstr "For Command type Modal Window mode is enforced" + +#: ../../godmode/events/event_responses.editor.php:107 +msgid "Modal window" +msgstr "Modal window" + +#: ../../godmode/events/event_responses.editor.php:108 +msgid "New window" +msgstr "New window" + +#: ../../godmode/events/event_responses.editor.php:180 +msgid "Command timeout (s)" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:221 +msgid "Update Filter" +msgstr "Update Filter" + +#: ../../godmode/events/event_edit_filter.php:223 +msgid "Create Filter" +msgstr "Create Filter" + +#: ../../godmode/events/event_edit_filter.php:233 +#: ../../include/ajax/custom_fields.php:561 +#: ../../include/ajax/custom_fields.php:608 +#: ../../include/ajax/custom_fields.php:652 ../../include/ajax/events.php:556 +#: ../../operation/events/events_list.php:421 +msgid "Filter name" +msgstr "Filter name" + +#: ../../godmode/events/event_edit_filter.php:236 +msgid "Save in group" +msgstr "Save in group" + +#: ../../godmode/events/event_edit_filter.php:236 +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:380 +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:403 +#: ../../operation/events/events_list.php:970 +#: ../../operation/events/events.php:936 ../../operation/events/events.php:1440 +msgid "Group events" +msgstr "Group events" + +#: ../../godmode/events/event_edit_filter.php:568 +#: ../../operation/events/events_list.php:826 +#: ../../operation/events/events.php:1104 +msgid "Filter alert events" +msgstr "Filter alert events" + +#: ../../godmode/events/event_edit_filter.php:569 +#: ../../operation/events/events_list.php:827 +#: ../../operation/events/events.php:1105 +msgid "Only alert events" +msgstr "Only alert events" + +#: ../../godmode/events/event_edit_filter.php:596 +#: ../../include/functions_events.php:6100 +#: ../../operation/events/events_list.php:987 +#: ../../operation/events/events.php:1012 +#: ../../operation/events/events.build_table.php:303 +msgid "Extra ID" +msgstr "Extra ID" + +#: ../../godmode/events/event_edit_filter.php:603 +msgid "Id souce event" +msgstr "" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "No responses found" + +#: ../../godmode/events/event_responses.list.php:73 +msgid "Create response" +msgstr "Create response" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "Load the fields from previous events" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "Event fields will be loaded. Do you want to continue?" + +#: ../../godmode/events/custom_events.php:94 +#: ../../include/functions_events.php:226 +msgid "Event Id" +msgstr "" + +#: ../../godmode/events/custom_events.php:95 +#: ../../mobile/operation/events.php:124 ../../include/functions_events.php:229 +#: ../../include/functions_events.php:6019 +#: ../../operation/events/events.build_table.php:172 +msgid "Event Name" +msgstr "Event name" + +#: ../../godmode/events/custom_events.php:96 +#: ../../include/functions_events.php:232 +#: ../../operation/events/events.php:1614 +msgid "Agent ID" +msgstr "" + +#: ../../godmode/events/custom_events.php:97 +msgid "Agent Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:102 +#: ../../include/functions_events.php:253 +#: ../../operation/events/events.build_table.php:232 +msgid "Event Type" +msgstr "" + +#: ../../godmode/events/custom_events.php:103 +#: ../../include/class/ModuleTemplates.class.php:1112 +#: ../../include/class/AgentWizard.class.php:439 +#: ../../include/functions_events.php:256 +#: ../../operation/events/events.build_table.php:243 +msgid "Module Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:109 +#: ../../include/functions_events.php:274 +msgid "Extra Id" +msgstr "" + +#: ../../godmode/events/custom_events.php:113 +#: ../../include/functions_events.php:286 +msgid "Server Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:116 +#: ../../include/functions_events.php:301 +msgid "Severity mini" +msgstr "" + +#: ../../godmode/events/event_responses.php:50 +msgid "Response added succesfully" +msgstr "Response added successfully" + +#: ../../godmode/events/event_responses.php:52 +msgid "Response cannot be added" +msgstr "Response cannot be added" + +#: ../../godmode/events/event_responses.php:75 +msgid "Response updated succesfully" +msgstr "Response successfully updated" + +#: ../../godmode/events/event_responses.php:77 +msgid "Response cannot be updated" +msgstr "Response cannot be updated" + +#: ../../godmode/events/event_responses.php:87 +msgid "Response deleted succesfully" +msgstr "Response successfully deleted" + +#: ../../godmode/events/event_responses.php:89 +msgid "Response cannot be deleted" +msgstr "Response cannot be deleted" + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:342 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:385 +msgid "" +"This network scan task has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:427 +msgid "You must provide a valid network." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:477 +#: ../../godmode/wizards/HostDevices.class.php:589 +#: ../../include/class/CustomNetScan.class.php:221 +msgid "Failed to find network scan task." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:694 +#, php-format +msgid "\"%s\" features" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:724 +#: ../../include/class/CustomNetScan.class.php:402 +msgid "Internal error, please re-run this wizard." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:809 +#: ../../include/class/CustomNetScan.class.php:543 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "The minimum recommended interval for a recon task is 5 minutes" + +#: ../../godmode/wizards/HostDevices.class.php:864 +msgid "Use CSV file definition" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:865 +msgid "Define targets using csv o network definition." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:883 +msgid "Networks (csv)" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:884 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK " +"format. For instance: 192.168.1.1/32" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:896 +msgid "Networks (current)" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:897 +msgid "Plese upload a new file to overwrite this content." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:913 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" + +#: ../../godmode/wizards/HostDevices.class.php:1044 +msgid "Filter by opened ports" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1046 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) " +"is open." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1059 +msgid "Auto discover known hardware" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1061 +msgid "" +"Targets will be monitorized based on its Private Enterprise Number. " +"Requires SNMP." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1076 +msgid "" +"Module Host Alive will be added to discovered agents by default." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1124 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, " +"'review results' is mandatory." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1132 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:708 +msgid "Review results" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1134 +msgid "Targets must be validated by user before create agents." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1160 +msgid "Apply autoconfiguration rules" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1162 +msgid "" +"System is able to auto configure detected host & devices by applying your " +"defined configuration rules." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:238 +msgid "Task successfully deleted" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:342 +msgid "Console Task successfully deleted" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:374 +#: ../../operation/servers/recon_view.php:33 +msgid "Discovery Server is disabled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:438 +msgid "Task type" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:506 +msgid "This task has not been completely defined, please edit it" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:544 +msgid "Cancelled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:545 +msgid "Server has been restarted while executing this task, please retry." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:552 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../operation/servers/recon_view.php:140 +msgid "Done" +msgstr "Done" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:556 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:571 +msgid "Not started" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:566 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1034 +msgid "Review" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:576 +msgid "Searching" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:587 +msgid "Discovery Cloud Azure Compute" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:589 +msgid "Cloud.Azure.Compute" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 +msgid "Discovery Cloud AWS EC2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:599 +msgid "Cloud.AWS.EC2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:607 +msgid "Discovery Cloud RDS" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:609 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:617 +msgid "Discovery Applications MySQL" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:619 +msgid "Discovery.App.MySQL" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:627 +msgid "Discovery Applications Oracle" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:629 +msgid "Discovery.App.Oracle" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:640 +msgid "Discovery.Agent.Deployment" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:650 +msgid "Discovery NetScan" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:652 +msgid "Discovery.NetScan" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:697 +msgid "Not executed yet" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:717 +msgid "View summary" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 +msgid "View map" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:753 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:773 +msgid "Edit task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:760 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:780 +msgid "Delete task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +msgid "has no discovery tasks assigned" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:806 +msgid "Server Tasks" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:942 +msgid "Overall Progress" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:961 +msgid "Scanning network" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 +msgid "Checking" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:969 +msgid "Finding AFT connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:973 +msgid "Finding traceroute connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:977 +msgid "Finding gateway connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:981 +msgid "Searching for devices..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:985 +msgid "Analyzing application..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:989 +msgid "Executing custom queries..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:993 +msgid "Testing modules..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 +msgid "Processing results..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 +msgid "Processing..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1111 +msgid "Host&devices total" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1116 +msgid "Agents monitored" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1121 +msgid "Agents pending" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1127 +msgid "Hosts discovered" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1143 +msgid "Responding SNMP" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1148 +msgid "Responding WMI" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1155 +#: ../../include/functions_reporting_html.php:3827 +#: ../../include/functions_reporting_html.php:3964 +#: ../../include/functions_netflow.php:1028 +#: ../../include/lib/Dashboard/Widgets/tactical.php:286 +msgid "Summary" +msgstr "Summary" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1190 +msgid "This task has never executed" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1198 +msgid "Task queued, please wait." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1249 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1388 +msgid "Invalid task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1345 +msgid "Please select devices to be monitored" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1348 +msgid "select all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1351 +msgid "deselect all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1354 +msgid "expand all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1357 +msgid "collapse all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1371 +msgid "No devices found in temporary resources, please re-launch." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1438 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1462 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1481 +msgid "Removed" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1518 +msgid "No changes. Re-Scheduled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1520 +msgid "Scheduled for creation" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:105 +msgid "Exec server enabled" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:164 +msgid "Manage Discovery tasks" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:176 +msgid "Reset module status and fired alert counts" +msgstr "Reset module status and triggered alert counts" + +#: ../../godmode/servers/servers.build_table.php:184 +msgid "Claim back SNMP modules" +msgstr "Reclaim SNMP modules" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "Update server" + +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:335 ../../godmode/servers/plugin.php:999 +msgid "Standard" +msgstr "Standard" + +#: ../../godmode/servers/modificar_server.php:75 +msgid "Exec Server" +msgstr "Execute server" + +#: ../../godmode/servers/modificar_server.php:83 +msgid "Leave blank to use SSH default port (22)" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:88 +msgid "Check Exec Server" +msgstr "Check execution of server" + +#: ../../godmode/servers/modificar_server.php:104 +msgid "Remote Configuration" +msgstr "Remote configuration" + +#: ../../godmode/servers/modificar_server.php:108 +#, php-format +msgid "%s servers" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:159 +msgid "Server updated successfully" +msgstr "Server updated successfully" + +#: ../../godmode/servers/modificar_server.php:161 +msgid "There was a problem updating the server" +msgstr "Error updating the server" + +#: ../../godmode/servers/plugin.php:56 +msgid "Network Components" +msgstr "Network components" + +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:582 +msgid "To manage plugin you must activate centralized management" +msgstr "" + +#: ../../godmode/servers/plugin.php:291 +msgid "Plugin update" +msgstr "Plugin update" + +#: ../../godmode/servers/plugin.php:303 ../../godmode/servers/plugin.php:630 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" + +#: ../../godmode/servers/plugin.php:334 +msgid "Plugin type" +msgstr "Plugin type" + +#: ../../godmode/servers/plugin.php:336 ../../godmode/servers/plugin.php:1001 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:341 +msgid "Max. timeout" +msgstr "Max. timeout" + +#: ../../godmode/servers/plugin.php:341 +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 is lower than the plugin timeout of " +"the general configuration of the server." + +#: ../../godmode/servers/plugin.php:341 +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 plugin timeout will be used." + +#: ../../godmode/servers/plugin.php:394 +msgid "Plugin command" +msgstr "Plugin command" + +#: ../../godmode/servers/plugin.php:394 +msgid "" +"Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" + +#: ../../godmode/servers/plugin.php:406 +msgid "Plug-in parameters" +msgstr "Plugin parameters" + +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:671 +msgid "Hide value" +msgstr "Hide value" + +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:673 +msgid "This field will show up as dots like a password" +msgstr "This field will be displayed with dots, just like a password." + +#: ../../godmode/servers/plugin.php:547 ../../godmode/servers/plugin.php:552 +msgid "Parameters macros" +msgstr "Macro parameters" + +#: ../../godmode/servers/plugin.php:589 +msgid "" +"The previous configuration of plugins has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" + +#: ../../godmode/servers/plugin.php:590 +msgid "" +"These definitions will not be operational until you manually \n" +" \t\t\tcopy the files from the nodes to the atachment/plugin/ directory " +"of the meta console." +msgstr "" + +#: ../../godmode/servers/plugin.php:617 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "" + +#: ../../godmode/servers/plugin.php:639 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "You will need to create your own Windows-compatible plugins." + +#: ../../godmode/servers/plugin.php:705 +msgid "Problem updating plugin" +msgstr "Error updating plugin" + +#: ../../godmode/servers/plugin.php:707 +msgid "Plugin updated successfully" +msgstr "Plugin updated successfully" + +#: ../../godmode/servers/plugin.php:765 +msgid "Problem creating plugin" +msgstr "Error creating plugin" + +#: ../../godmode/servers/plugin.php:767 +msgid "Plugin created successfully" +msgstr "Plugin created successfully" + +#: ../../godmode/servers/plugin.php:779 ../../godmode/servers/plugin.php:813 +msgid "Problem deleting plugin" +msgstr "Error deleting plugin" + +#: ../../godmode/servers/plugin.php:781 ../../godmode/servers/plugin.php:815 +msgid "Plugin deleted successfully" +msgstr "Plugin deleted successfully" + +#: ../../godmode/servers/plugin.php:826 +msgid "Problem deploying plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:828 +msgid "Plugin deployed successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:1031 +msgid "All the modules that are using this plugin will be deleted" +msgstr "All the modules using this plugin will be deleted." + +#: ../../godmode/servers/plugin.php:1044 +msgid "There are no plugins in the system" +msgstr "There are no plugins on the system." + +#: ../../godmode/servers/plugin.php:1058 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "List of modules and components created by \"%s\" " + +#: ../../godmode/servers/plugin.php:1164 ../../godmode/servers/plugin.php:1180 +msgid "Some modules or components are using the plugin" +msgstr "Some modules or components are using the plugin." + +#: ../../godmode/servers/plugin.php:1165 +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:1167 +msgid "Are you sure you want to perform this action?" +msgstr "Are you sure you want to perform this action?" + +#: ../../godmode/servers/plugin.php:1181 +msgid "Are you sure you want to unlock this item?" +msgstr "Are you sure you want to unlock this item?" + +#: ../../godmode/servers/plugin.php:1201 +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:1207 +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/discovery.php:182 +msgid "You must create a task first" +msgstr "" + +#: ../../godmode/tag/tag.php:93 +msgid "Number of modules" +msgstr "Number of modules" + +#: ../../godmode/tag/tag.php:95 +msgid "Number of policy modules" +msgstr "Number of policy modules" + +#: ../../godmode/tag/tag.php:113 ../../godmode/tag/edit_tag.php:51 +#: ../../godmode/tag/edit_tag.php:62 +msgid "List tags" +msgstr "List tags" + +#: ../../godmode/tag/tag.php:125 ../../godmode/tag/edit_tag.php:68 +msgid "Tags configuration" +msgstr "Tag settings" + +#: ../../godmode/tag/tag.php:141 +msgid "Error deleting tag" +msgstr "Error deleting tag" + +#: ../../godmode/tag/tag.php:144 +msgid "Successfully deleted tag" +msgstr "Tag deleted successfully" + +#: ../../godmode/tag/tag.php:224 +msgid "Tag name" +msgstr "Tag name" + +#: ../../godmode/tag/tag.php:226 +msgid "Detail information" +msgstr "Detail information" + +#: ../../godmode/tag/tag.php:227 +msgid "Number of modules affected" +msgstr "Number of modules affected" + +#: ../../godmode/tag/tag.php:229 ../../godmode/tag/edit_tag.php:208 +msgid "Phone" +msgstr "Phone" + +#: ../../godmode/tag/tag.php:249 +msgid "Tag details" +msgstr "Tag details" + +#: ../../godmode/tag/tag.php:277 +#, php-format +msgid "Emails for the tag: %s" +msgstr "E-mails for the tag: %s" + +#: ../../godmode/tag/tag.php:287 +#, php-format +msgid "Phones for the tag: %s" +msgstr "Phone numbers for the tag: %s" + +#: ../../godmode/tag/tag.php:303 +msgid "No tags defined" +msgstr "No tags defined" + +#: ../../godmode/tag/tag.php:317 +msgid "Create tag" +msgstr "Create tag" + +#: ../../godmode/tag/edit_tag.php:91 +msgid "Error updating tag" +msgstr "Error updating tag" + +#: ../../godmode/tag/edit_tag.php:94 +msgid "Successfully updated tag" +msgstr "Tag updated successfully" + +#: ../../godmode/tag/edit_tag.php:120 +msgid "Error creating tag" +msgstr "Error creating tag" + +#: ../../godmode/tag/edit_tag.php:125 +msgid "Successfully created tag" +msgstr "Tag created successfully" + +#: ../../godmode/tag/edit_tag.php:158 +msgid "Update Tag" +msgstr "Update tag" + +#: ../../godmode/tag/edit_tag.php:162 +msgid "Create Tag" +msgstr "Create tag" + +#: ../../godmode/tag/edit_tag.php:186 +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:198 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "Associated e-mail address to use later in alerts associated to tags" + +#: ../../godmode/tag/edit_tag.php:210 +msgid "Associated phone number to use later in alerts associated to Tags." +msgstr "Linked phone number to use later in alerts related to tags" + +#: ../../godmode/category/category.php:41 +#: ../../godmode/category/category.php:48 +#: ../../godmode/category/edit_category.php:40 +#: ../../godmode/category/edit_category.php:47 +msgid "List categories" +msgstr "List categories" + +#: ../../godmode/category/category.php:57 +#: ../../godmode/category/category.php:59 +#: ../../godmode/category/edit_category.php:56 +#: ../../godmode/category/edit_category.php:58 +msgid "Categories configuration" +msgstr "Category settings" + +#: ../../godmode/category/category.php:69 +msgid "Error deleting category" +msgstr "Error deleting category" + +#: ../../godmode/category/category.php:72 +msgid "Successfully deleted category" +msgstr "Successfully deleted category" + +#: ../../godmode/category/category.php:111 +msgid "Category name" +msgstr "Category name" + +#: ../../godmode/category/category.php:144 +msgid "No categories found" +msgstr "No categories found" + +#: ../../godmode/category/category.php:156 +#: ../../godmode/category/edit_category.php:142 +msgid "Create category" +msgstr "Create category" + +#: ../../godmode/category/edit_category.php:56 +msgid "Editor" +msgstr "Editor" + +#: ../../godmode/category/edit_category.php:75 +msgid "Error updating category" +msgstr "Error updating category" + +#: ../../godmode/category/edit_category.php:78 +msgid "Successfully updated category" +msgstr "Category successfully updated" + +#: ../../godmode/category/edit_category.php:97 +msgid "Error creating category" +msgstr "Error creating category" + +#: ../../godmode/category/edit_category.php:102 +msgid "Successfully created category" +msgstr "Category successfully created" + +#: ../../godmode/category/edit_category.php:134 +msgid "Update category" +msgstr "Update category" + +#: ../../godmode/module_library/module_library_view.php:129 +msgid "View all categories" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:140 +msgid "More details" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:142 +msgid "View in Module Library" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:143 +msgid "No module found" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:146 +msgid "Error loading Module Library" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "Error loading category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:148 +msgid "Error loading categories" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:149 +msgid "There is no such category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:150 +msgid "Error loading results" +msgstr "" + +#: ../../mobile/include/functions_web.php:81 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - Build %s" + +#: ../../mobile/include/system.class.php:156 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"your system administrator if you should need help." +msgstr "" + +#: ../../mobile/include/system.class.php:156 +#, php-format +msgid "" +"Please remember that any attempts to access this page will be recorded on " +"the %s System Database." +msgstr "" + +#: ../../mobile/include/ui.class.php:105 +#, php-format +msgid "%s mobile" +msgstr "" + +#: ../../mobile/include/ui.class.php:202 +#, php-format +msgid "%s : Mobile" +msgstr "" + +#: ../../mobile/include/ui.class.php:223 ../../mobile/operation/home.php:162 +msgid "Home" +msgstr "Home" + +#: ../../mobile/include/ui.class.php:306 +#, php-format +msgid "%s %s - Build %s" +msgstr "" + +#: ../../mobile/include/ui.class.php:752 +msgid "Not found header." +msgstr "Header not found" + +#: ../../mobile/include/ui.class.php:754 +msgid "Not found content." +msgstr "Content not found" + +#: ../../mobile/include/ui.class.php:756 +msgid "Not found footer." +msgstr "Footer not found" + +#: ../../mobile/include/ui.class.php:758 +msgid "Incorrect form." +msgstr "Incorrect form" + +#: ../../mobile/include/ui.class.php:760 +msgid "Incorrect grid." +msgstr "Wrong grid" + +#: ../../mobile/include/ui.class.php:762 +msgid "Incorrect collapsible." +msgstr "Wrong collapsible" + +#: ../../mobile/include/user.class.php:173 +#: ../../mobile/include/user.class.php:188 +#: ../../mobile/include/user.class.php:195 +msgid "Double authentication failed" +msgstr "Double authentication failed" + +#: ../../mobile/include/user.class.php:174 +msgid "Secret code not found" +msgstr "Secret code not found" + +#: ../../mobile/include/user.class.php:174 +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:196 +msgid "There was an error checking the code" +msgstr "Error checking the code" + +#: ../../mobile/include/user.class.php:232 +msgid "Login Failed" +msgstr "Login failed" + +#: ../../mobile/include/user.class.php:233 +msgid "User not found in database or incorrect password." +msgstr "User not found in database or wrong password" + +#: ../../mobile/include/user.class.php:240 +msgid "Login out" +msgstr "Log out" + +#: ../../mobile/include/user.class.php:271 +msgid "user" +msgstr "User" + +#: ../../mobile/include/user.class.php:278 +msgid "password" +msgstr "Password" + +#: ../../mobile/include/user.class.php:344 +#: ../../mobile/include/user.class.php:345 +msgid "Authenticator code" +msgstr "Authentication code" + +#: ../../mobile/include/user.class.php:349 ../../general/login_page.php:286 +msgid "Check code" +msgstr "Check code" + +#: ../../mobile/operation/agents.php:203 +#, php-format +msgid "Filter Agents by %s" +msgstr "Filter agents by %s" + +#: ../../mobile/operation/agents.php:245 ../../mobile/operation/modules.php:300 +#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/events.php:717 +msgid "Apply Filter" +msgstr "Apply filter" + +#: ../../mobile/operation/agents.php:444 +msgid "No agents" +msgstr "No agents" + +#: ../../mobile/operation/agents.php:539 ../../mobile/operation/modules.php:855 +#: ../../mobile/operation/alerts.php:360 ../../mobile/operation/events.php:1148 +msgid "(Default)" +msgstr "(Default)" + +#: ../../mobile/operation/agents.php:545 ../../mobile/operation/modules.php:861 +#: ../../mobile/operation/alerts.php:373 ../../mobile/operation/events.php:1181 +#, php-format +msgid "Group: %s" +msgstr "Group: %s" + +#: ../../mobile/operation/agents.php:552 ../../mobile/operation/modules.php:883 +#: ../../mobile/operation/alerts.php:380 ../../mobile/operation/events.php:1201 +#, php-format +msgid "Status: %s" +msgstr "Status: %s" + +#: ../../mobile/operation/agents.php:559 ../../mobile/operation/modules.php:890 +#: ../../mobile/operation/alerts.php:387 +#, php-format +msgid "Free Search: %s" +msgstr "Free Search: %s" + +#: ../../mobile/operation/modules.php:225 +#, php-format +msgid "Filter Modules by %s" +msgstr "Filter modules by %s" + +#: ../../mobile/operation/modules.php:632 +msgid "Interval." +msgstr "Interval" + +#: ../../mobile/operation/modules.php:634 +msgid "Last update." +msgstr "Last update" + +#: ../../mobile/operation/modules.php:876 +#, php-format +msgid "Module group: %s" +msgstr "Module group: %s" + +#: ../../mobile/operation/modules.php:898 +#, php-format +msgid "Tag: %s" +msgstr "Tag: %s" + +#: ../../mobile/operation/home.php:84 ../../mobile/operation/visualmaps.php:109 +msgid "Visual consoles" +msgstr "Visual consoles" + +#: ../../mobile/operation/home.php:104 +msgid "Visualmap" +msgstr "Visual map" + +#: ../../mobile/operation/home.php:169 ../../operation/search_results.php:66 +msgid "Global search" +msgstr "Global search" + +#: ../../mobile/operation/agent.php:167 +msgid "No agent found" +msgstr "No agents found" + +#: ../../mobile/operation/agent.php:260 +msgid "Modules by status" +msgstr "Modules by status" + +#: ../../mobile/operation/agent.php:275 +#: ../../include/functions_treeview.php:808 +msgid "Events (24h)" +msgstr "Events (24h)" + +#: ../../mobile/operation/agent.php:348 +#, php-format +msgid "Last %s Events" +msgstr "Last %s events" + +#: ../../mobile/operation/alerts.php:46 +#: ../../operation/agentes/alerts_status.functions.php:77 +msgid "All (Enabled)" +msgstr "All (Enabled)" + +#: ../../mobile/operation/alerts.php:49 +#: ../../operation/agentes/alerts_status.functions.php:80 +#: ../../operation/snmpconsole/snmp_view.php:207 +#: ../../operation/snmpconsole/snmp_view.php:1182 +msgid "Not fired" +msgstr "Not triggered" + +#: ../../mobile/operation/alerts.php:189 +#, php-format +msgid "Filter Alerts by %s" +msgstr "Filter alerts by %s" + +#: ../../mobile/operation/alerts.php:327 +msgid "Last Fired" +msgstr "Last triggered" + +#: ../../mobile/operation/alerts.php:338 +msgid "No alerts" +msgstr "No alerts" + +#: ../../mobile/operation/alerts.php:366 +#, php-format +msgid "Standby: %s" +msgstr "Standby: %s" + +#: ../../mobile/operation/visualmaps.php:169 +msgid "No maps defined" +msgstr "No maps defined" + +#: ../../mobile/operation/module_graph.php:362 +#: ../../mobile/operation/module_graph.php:374 +#, php-format +msgid "%s: %s" +msgstr "" + +#: ../../mobile/operation/module_graph.php:406 +#, php-format +msgid "Options for %s : %s" +msgstr "Options for %s : %s" + +#: ../../mobile/operation/module_graph.php:413 +msgid "Show Alerts" +msgstr "Show alerts" + +#: ../../mobile/operation/module_graph.php:421 +msgid "Show Events" +msgstr "Show events" + +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:353 +msgid "Time compare (Separated)" +msgstr "Time comparison (separated)" + +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:359 +msgid "Show unknown graph" +msgstr "Show unknown graph" + +#: ../../mobile/operation/module_graph.php:450 +msgid "Time range (hours)" +msgstr "Time range (hours)" + +#: ../../mobile/operation/module_graph.php:462 +#: ../../operation/agentes/stat_win.php:257 +#: ../../operation/agentes/interface_traffic_graph_win.php:197 +#: ../../operation/agentes/graphs.php:207 +#: ../../operation/agentes/exportdata.php:317 +msgid "Begin date" +msgstr "Begin date" + +#: ../../mobile/operation/module_graph.php:469 +msgid "Update graph" +msgstr "Update graph" + +#: ../../mobile/operation/module_graph.php:479 +msgid "Error get the graph" +msgstr "Error retrieving the graph" + +#: ../../mobile/operation/events.php:267 +#: ../../include/functions_reporting_html.php:993 +#: ../../include/functions_reporting_html.php:1216 +#: ../../include/functions_reporting_html.php:1977 +#: ../../include/ajax/events.php:1475 +#: ../../include/functions_reporting.php:8437 +#: ../../include/functions_events.php:2442 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:6173 +#: ../../operation/events/events.php:1932 +#: ../../operation/events/events.build_table.php:413 +msgid "New event" +msgstr "New event" + +#: ../../mobile/operation/events.php:272 +#: ../../include/functions_reporting_html.php:998 +#: ../../include/functions_reporting_html.php:1221 +#: ../../include/functions_reporting_html.php:1982 +#: ../../include/ajax/events.php:1480 +#: ../../include/functions_reporting.php:8442 +#: ../../include/functions_events.php:2447 +#: ../../include/functions_events.php:4384 +#: ../../include/functions_events.php:6178 +#: ../../operation/events/events.php:1936 +#: ../../operation/events/events.build_table.php:418 +msgid "Event validated" +msgstr "Event validated" + +#: ../../mobile/operation/events.php:277 +#: ../../include/functions_reporting_html.php:1003 +#: ../../include/functions_reporting_html.php:1226 +#: ../../include/functions_reporting_html.php:1987 +#: ../../include/ajax/events.php:1485 +#: ../../include/functions_reporting.php:8447 +#: ../../include/functions_events.php:2452 +#: ../../include/functions_events.php:4390 +#: ../../include/functions_events.php:6183 +#: ../../operation/events/events.php:1940 +#: ../../operation/events/events.build_table.php:423 +msgid "Event in process" +msgstr "Event in process" + +#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 +#: ../../mobile/operation/events.php:642 ../../mobile/operation/events.php:643 +msgid "Preset Filters" +msgstr "Preset filters" + +#: ../../mobile/operation/events.php:485 +msgid "ERROR: Event detail" +msgstr "ERROR: Event details" + +#: ../../mobile/operation/events.php:486 +msgid "Error connecting to DB." +msgstr "" + +#: ../../mobile/operation/events.php:501 +msgid "Event detail" +msgstr "Event details" + +#: ../../mobile/operation/events.php:512 +#: ../../include/functions_events.php:4498 +#: ../../include/functions_events.php:6013 +#: ../../operation/events/events.build_table.php:162 +msgid "Event ID" +msgstr "Event ID" + +#: ../../mobile/operation/events.php:540 +#: ../../include/functions_events.php:4587 +msgid "Acknowledged by" +msgstr "Acknowledged by" + +#: ../../mobile/operation/events.php:584 +msgid "Sucessful validate" +msgstr "Validated successfully" + +#: ../../mobile/operation/events.php:586 +msgid "Fail validate" +msgstr "Validation failed" + +#: ../../mobile/operation/events.php:624 +#, php-format +msgid "Filter Events by %s" +msgstr "Filter events by %s" + +#: ../../mobile/operation/events.php:858 +#: ../../include/functions_reporting_html.php:4893 +#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting.php:1834 +#: ../../include/functions_reporting.php:2124 +#: ../../include/functions_events.php:2366 +#: ../../include/functions_events.php:2369 +#: ../../operation/events/events.build_table.php:134 +#: ../../operation/events/events.build_table.php:1142 +msgid "No events" +msgstr "No events" + +#: ../../mobile/operation/events.php:1153 +#, php-format +msgid "Filter: %s" +msgstr "Filter: %s" + +#: ../../mobile/operation/events.php:1165 +#, php-format +msgid "Severity: %s" +msgstr "Severity: %s" + +#: ../../mobile/operation/events.php:1194 +#, php-format +msgid "Type: %s" +msgstr "Type: %s" + +#: ../../mobile/operation/events.php:1208 +#, php-format +msgid "Free search: %s" +msgstr "Free search: %s" + +#: ../../mobile/operation/events.php:1215 +#, php-format +msgid "Hours: %s" +msgstr "Hours: %s" + +#: ../../mobile/operation/tactical.php:216 +msgid "Last activity" +msgstr "Last activity" + +#: ../../include/functions_visual_map_editor.php:62 +msgid "" +"To use 'label'field, you should write\n" +"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " +"printed at the end." +msgstr "" +"In order to use the '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:69 +#: ../../include/functions_visual_map_editor.php:1306 +#: ../../include/functions_visual_map.php:4170 +#: ../../include/rest-api/models/VisualConsole/Item.php:1985 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:260 +msgid "Clock" +msgstr "Clock" + +#: ../../include/functions_visual_map_editor.php:108 +#: ../../include/functions_visual_map_editor.php:134 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 +msgid "Border color" +msgstr "Border colour" + +#: ../../include/functions_visual_map_editor.php:152 +msgid "Border width" +msgstr "Outline width" + +#: ../../include/functions_visual_map_editor.php:161 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 +msgid "Fill color" +msgstr "Fill colour" + +#: ../../include/functions_visual_map_editor.php:217 +msgid "" +"Scroll the mouse wheel over the label editor to change the background color" +msgstr "" +"Scroll the mouse wheel over the label editor to change the background color" + +#: ../../include/functions_visual_map_editor.php:233 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 +msgid "Clock animation" +msgstr "Clock animation" + +#: ../../include/functions_visual_map_editor.php:236 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 +msgid "Simple analogic" +msgstr "Simple analogic" + +#: ../../include/functions_visual_map_editor.php:237 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 +msgid "Simple digital" +msgstr "Simple digital" + +#: ../../include/functions_visual_map_editor.php:251 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 +msgid "Time format" +msgstr "Time format" + +#: ../../include/functions_visual_map_editor.php:254 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 +msgid "Only time" +msgstr "Only time" + +#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 +msgid "Time and date" +msgstr "Time and date" + +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 +msgid "Time zone" +msgstr "Time zone" + +#: ../../include/functions_visual_map_editor.php:307 +msgid "Enable link" +msgstr "Enable link" + +#: ../../include/functions_visual_map_editor.php:328 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:444 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:505 +msgid "White" +msgstr "White" + +#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:445 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:506 +msgid "Black" +msgstr "Black" + +#: ../../include/functions_visual_map_editor.php:330 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:446 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:507 +msgid "Transparent" +msgstr "Transparent" + +#: ../../include/functions_visual_map_editor.php:344 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:480 +msgid "Grid color" +msgstr "Grid colour" + +#: ../../include/functions_visual_map_editor.php:464 +msgid "Data image" +msgstr "Data image" + +#: ../../include/functions_visual_map_editor.php:469 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 +msgid "Resume data color" +msgstr "Resume data colour" + +#: ../../include/functions_visual_map_editor.php:483 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:228 +msgid "24h" +msgstr "24h" + +#: ../../include/functions_visual_map_editor.php:484 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:230 +msgid "8h" +msgstr "8h" + +#: ../../include/functions_visual_map_editor.php:485 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:231 +msgid "2h" +msgstr "2h" + +#: ../../include/functions_visual_map_editor.php:486 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:232 +msgid "1h" +msgstr "1h" + +#: ../../include/functions_visual_map_editor.php:490 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:236 +msgid "Max. Time" +msgstr "Max. Time" + +#: ../../include/functions_visual_map_editor.php:572 +msgid "Original Size" +msgstr "Original size" + +#: ../../include/functions_visual_map_editor.php:580 +msgid "Aspect ratio" +msgstr "Aspect ratio" + +#: ../../include/functions_visual_map_editor.php:581 +msgid "Proportional Width" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:589 +msgid "Height proportional" +msgstr "Proportional height" + +#: ../../include/functions_visual_map_editor.php:620 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:454 +msgid "Circular porgress bar" +msgstr "Circular porgress bar" + +#: ../../include/functions_visual_map_editor.php:621 +#: ../../include/functions_visual_map.php:4195 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:456 +#: ../../include/rest-api/models/VisualConsole/Item.php:2009 +msgid "Circular progress bar (interior)" +msgstr "Circular progress bar (interior)" + +#: ../../include/functions_visual_map_editor.php:671 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:516 +msgid "Element color" +msgstr "Element colour" + +#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:528 +msgid "Value color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:733 +msgid "Diameter" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:740 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:425 +msgid "Default color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:744 +msgid "" +"The color of the element will be the one selected in the first range created " +"in which the value of the module is found (with the initial and final values " +"of the range included)" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "Ranges" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "From value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "To value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +#: ../../include/rest-api/index.php:322 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:470 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:529 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:481 +msgid "Color" +msgstr "Colour" + +#: ../../include/functions_visual_map_editor.php:752 +msgid "Always show on top" +msgstr "Always show on top" + +#: ../../include/functions_visual_map_editor.php:753 +msgid "" +"It allows the element to be superimposed to the rest of items of the visual " +"console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:756 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:341 +msgid "Hide last value on boolean modules" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:762 +msgid "Show last value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:844 +msgid "For use the original image file size, set 0 width and 0 height." +msgstr "" +"In order to use the original image file size, set width and height to 0." + +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/rest-api/models/VisualConsole/Item.php:2303 +msgid "Linked visual console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1007 +#: ../../include/rest-api/models/VisualConsole/Item.php:2362 +msgid "Type of the status calculation of the linked visual console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1032 +#: ../../include/rest-api/models/VisualConsole/Item.php:2378 +msgid "Linked visual console weight" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1099 +msgid "Lines haven't advanced options" +msgstr "Lines do not have advanced options" + +#: ../../include/functions_visual_map_editor.php:1116 +#: ../../include/rest-api/models/VisualConsole/Item.php:2062 +msgid "Restrict access to group" +msgstr "Restrict access to group" + +#: ../../include/functions_visual_map_editor.php:1127 +msgid "" +"If selected, restrict visualization of this item in the visual console to " +"users who have access to selected group. This is also used on calculating " +"child visual consoles." +msgstr "" +"If selected, it restricts visualization of this item in the visual console " +"to users who have access to the selected group. This is also used when " +"calculating child visual consoles." + +#: ../../include/functions_visual_map_editor.php:1158 +#: ../../include/rest-api/models/VisualConsole/Item.php:2075 +msgid "Cache expiration" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1197 +msgid "Click start point
of the line" +msgstr "Click the starting point
of the line" + +#: ../../include/functions_visual_map_editor.php:1200 +msgid "Click end point
of the line" +msgstr "Click the end point
of the line" + +#: ../../include/functions_visual_map_editor.php:1300 +#: ../../operation/visual_console/view.php:230 +msgid "Serialized pie graph" +msgstr "Serialized pie graph" + +#: ../../include/functions_visual_map_editor.php:1301 +#: ../../operation/visual_console/view.php:235 +msgid "Bars Graph" +msgstr "Bars graph" + +#: ../../include/functions_visual_map_editor.php:1323 +msgid "Show grid" +msgstr "Show grid" + +#: ../../include/functions_visual_map_editor.php:1325 +msgid "Delete item" +msgstr "Delete item" + +#: ../../include/functions_visual_map_editor.php:1326 +msgid "Copy item" +msgstr "Copy item" + +#: ../../include/functions_visual_map_editor.php:1366 +#: ../../include/functions_visual_map_editor.php:1370 +#: ../../include/functions_visual_map_editor.php:1374 +#: ../../include/functions_visual_map_editor.php:1378 +#: ../../include/functions_visual_map_editor.php:1382 +#: ../../include/functions_visual_map_editor.php:1386 +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../include/functions_visual_map_editor.php:1394 +#: ../../include/functions_visual_map_editor.php:1398 +#: ../../include/functions_visual_map_editor.php:1402 +#: ../../include/functions_visual_map_editor.php:1406 +#: ../../include/functions_visual_map_editor.php:1410 +#: ../../include/functions_visual_map_editor.php:1414 +#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1422 +#: ../../include/functions_visual_map_editor.php:1426 +#: ../../include/functions_visual_map_editor.php:1430 +#: ../../include/functions_visual_map_editor.php:1434 +#: ../../include/functions_visual_map_editor.php:1438 +msgid "Visual Console Builder Information" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1367 +msgid "Min allowed size is 1024x768." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1371 +#: ../../include/functions_visual_map_editor.php:1439 +msgid "No custom graph defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1375 +msgid "No image or name defined." +msgstr "No image or name defined" + +#: ../../include/functions_visual_map_editor.php:1379 +msgid "No label defined." +msgstr "No label defined" + +#: ../../include/functions_visual_map_editor.php:1383 +msgid "No service defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1387 +msgid "No image defined." +msgstr "No image defined" + +#: ../../include/functions_visual_map_editor.php:1391 +msgid "No process defined." +msgstr "No process defined" + +#: ../../include/functions_visual_map_editor.php:1395 +msgid "No Max value defined." +msgstr "No max value defined" + +#: ../../include/functions_visual_map_editor.php:1399 +msgid "No width defined." +msgstr "No width defined" + +#: ../../include/functions_visual_map_editor.php:1403 +msgid "No height defined." +msgstr "No height defined" + +#: ../../include/functions_visual_map_editor.php:1407 +msgid "The width must not exceed the size of the visual console container." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1411 +msgid "The height must not exceed the size of the visual console container." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1415 +msgid "No period defined." +msgstr "No period defined" + +#: ../../include/functions_visual_map_editor.php:1419 +msgid "No agent defined." +msgstr "No agent defined" + +#: ../../include/functions_visual_map_editor.php:1423 +msgid "No module defined." +msgstr "No module defined" + +#: ../../include/functions_visual_map_editor.php:1427 +msgid "No module defined. This module must be string type." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1431 +msgid "Successfully save the changes." +msgstr "Changes successfully saved" + +#: ../../include/functions_visual_map_editor.php:1435 +msgid "Could not be save." +msgstr "" + +#: ../../include/graphs/export_data.php:68 +#: ../../include/graphs/export_data.php:128 +msgid "An error occured exporting the data" +msgstr "Error exporting the data" + +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2717 +#: ../../include/functions_graph.php:2765 +msgid "Out of limits" +msgstr "Out of limits" + +#: ../../include/graphs/functions_flot.php:347 +msgid "Cancel zoom" +msgstr "Cancel zoom" + +#: ../../include/graphs/functions_flot.php:349 +msgid "Warning and Critical thresholds" +msgstr "Warning and critical thresholds" + +#: ../../include/graphs/functions_flot.php:354 +msgid "Overview graph" +msgstr "Overview graph" + +#: ../../include/graphs/functions_flot.php:468 +#: ../../include/functions_reporting_html.php:595 +#: ../../include/functions_reporting_html.php:3448 +#: ../../include/functions_treeview.php:319 +#: ../../include/functions_visual_map.php:2854 +#: ../../include/functions_visual_map.php:2869 +msgid "No data" +msgstr "No data" + +#: ../../include/functions_servers.php:560 +#: ../../include/functions_servers.php:1187 +msgid "Data server" +msgstr "Data server" + +#: ../../include/functions_servers.php:570 +#: ../../include/functions_servers.php:1190 +msgid "Network server" +msgstr "Network server" + +#: ../../include/functions_servers.php:580 +msgid "SNMP Trap server" +msgstr "SNMP trap server" + +#: ../../include/functions_servers.php:600 +#: ../../include/functions_servers.php:1202 +msgid "Plugin server" +msgstr "Plugin server" + +#: ../../include/functions_servers.php:620 +#: ../../include/functions_servers.php:1208 +msgid "WMI server" +msgstr "WMI server" + +#: ../../include/functions_servers.php:640 +#: ../../include/functions_servers.php:1217 +msgid "Inventory server" +msgstr "Inventory server" + +#: ../../include/functions_servers.php:650 +#: ../../include/functions_servers.php:1211 +msgid "Web server" +msgstr "Web server" + +#: ../../include/functions_servers.php:660 +#: ../../include/functions_servers.php:1220 +msgid "Event server" +msgstr "Event server" + +#: ../../include/functions_servers.php:670 +#: ../../include/functions_servers.php:1196 +msgid "Enterprise ICMP server" +msgstr "Enterprise ICMP server" + +#: ../../include/functions_servers.php:680 +#: ../../include/functions_servers.php:1199 +msgid "Enterprise SNMP server" +msgstr "Enterprise SNMP server" + +#: ../../include/functions_servers.php:690 +msgid "Enterprise Satellite server" +msgstr "Enterprise Satellite server" + +#: ../../include/functions_servers.php:700 +msgid "Enterprise Transactional server" +msgstr "Enterprise Transactional server" + +#: ../../include/functions_servers.php:710 +msgid "Mainframe server" +msgstr "Mainframe server" + +#: ../../include/functions_servers.php:720 +msgid "Sync server" +msgstr "Sync server" + +#: ../../include/functions_servers.php:730 +msgid "Wux server" +msgstr "WUX server" + +#: ../../include/functions_servers.php:740 +#: ../../include/functions_servers.php:1226 +msgid "Log server" +msgstr "" + +#: ../../include/functions_servers.php:750 +msgid "Autoprovision server" +msgstr "" + +#: ../../include/functions_servers.php:760 +msgid "Migration server" +msgstr "" + +#: ../../include/functions_servers.php:1193 +msgid "SNMP server" +msgstr "" + +#: ../../include/functions_servers.php:1205 +msgid "Prediction Server" +msgstr "" + +#: ../../include/functions_servers.php:1229 +msgid "WUX server" +msgstr "" + +#: ../../include/functions_reporting_html.php:94 +msgid "Label: " +msgstr "Label: " + +#: ../../include/functions_reporting_html.php:526 +msgid "Global Time" +msgstr "Global Time" + +#: ../../include/functions_reporting_html.php:528 +msgid "Time Failed" +msgstr "Time in failed status" + +#: ../../include/functions_reporting_html.php:532 +msgid "Downtime" +msgstr "Downtime" + +#: ../../include/functions_reporting_html.php:557 +msgid "Checks Time" +msgstr "Checks time" + +#: ../../include/functions_reporting_html.php:725 +#: ../../include/functions_reporting_html.php:3297 +#: ../../include/functions_reporting_html.php:3785 +#: ../../include/functions_reporting_html.php:3788 +#: ../../include/functions_reporting.php:1449 +#: ../../include/functions_reporting.php:2490 +msgid "There are no Agent/Modules defined" +msgstr "There are no Agent/Modules defined" + +#: ../../include/functions_reporting_html.php:911 +#: ../../include/functions_reporting_html.php:1838 +#: ../../include/functions_reporting_html.php:3334 +#: ../../include/functions_reporting_html.php:3812 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Min Value" +msgstr "Minimum value" + +#: ../../include/functions_reporting_html.php:912 +#: ../../include/functions_reporting_html.php:1839 +#: ../../include/functions_reporting_html.php:3335 +#: ../../include/functions_reporting_html.php:3813 +msgid "Average Value" +msgstr "Average value" + +#: ../../include/functions_reporting_html.php:913 +#: ../../include/functions_reporting_html.php:1840 +#: ../../include/functions_reporting_html.php:3332 +#: ../../include/functions_reporting_html.php:3815 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Max Value" +msgstr "Maximum value" + +#: ../../include/functions_reporting_html.php:967 +#: ../../include/functions_reporting_html.php:975 +#: ../../include/functions_reporting_html.php:1961 +msgid "Val. by" +msgstr "Value" + +#: ../../include/functions_reporting_html.php:1034 +#, php-format +msgid "%s System" +msgstr "" + +#: ../../include/functions_reporting_html.php:1082 +#: ../../include/functions_reporting_html.php:1282 +msgid "Events by agent" +msgstr "Events per agent" + +#: ../../include/functions_reporting_html.php:1099 +#: ../../include/functions_reporting_html.php:1299 +msgid "Events by user validator" +msgstr "Events according to validating user" + +#: ../../include/functions_reporting_html.php:1116 +#: ../../include/functions_reporting_html.php:1316 +msgid "Events by Severity" +msgstr "Events according to severity" + +#: ../../include/functions_reporting_html.php:1133 +#: ../../include/functions_reporting_html.php:1333 +msgid "Events validated vs unvalidated" +msgstr "Validated vs. unvalidated events" + +#: ../../include/functions_reporting_html.php:1734 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "Cell turns grey when the module is in 'not initialize' status" + +#: ../../include/functions_reporting_html.php:1904 +#: ../../include/functions_reporting_html.php:4382 +msgid "Monitors" +msgstr "Monitors" + +#: ../../include/functions_reporting_html.php:1923 +msgid "Events (not validated)" +msgstr "" + +#: ../../include/functions_reporting_html.php:2060 +msgid "Events validated by user" +msgstr "Events validated by user" + +#: ../../include/functions_reporting_html.php:2077 +#: ../../include/functions_reporting_html.php:4657 +msgid "Events by severity" +msgstr "Events by severity" + +#: ../../include/functions_reporting_html.php:2094 +#: ../../operation/events/event_statistics.php:75 +msgid "Amount events validated" +msgstr "Number of validated events" + +#: ../../include/functions_reporting_html.php:2321 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "Interface '%s' throughput graph" + +#: ../../include/functions_reporting_html.php:2325 +msgid "Mac" +msgstr "MAC address" + +#: ../../include/functions_reporting_html.php:2326 +msgid "Actual status" +msgstr "Current status" + +#: ../../include/functions_reporting_html.php:2648 +#: ../../include/functions_reporting_html.php:2650 +msgid "Empty modules" +msgstr "Empty modules" + +#: ../../include/functions_reporting_html.php:2657 +msgid "Warning
Critical" +msgstr "Warning
Critical" + +#: ../../include/functions_reporting_html.php:3065 +msgid "Time Not Init Module" +msgstr "Time of not initialized module" + +#: ../../include/functions_reporting_html.php:3076 +msgid "% Ok" +msgstr "% OK" + +#: ../../include/functions_reporting_html.php:3144 +msgid "Checks Uknown" +msgstr "Unknown checks" + +#: ../../include/functions_reporting_html.php:3525 +msgid "Primary" +msgstr "" + +#: ../../include/functions_reporting_html.php:3927 +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:9040 +msgid "Alert level" +msgstr "Alert level" + +#: ../../include/functions_reporting_html.php:4156 +#, php-format +msgid "Agents in group: %s" +msgstr "Agents in group: %s" + +#: ../../include/functions_reporting_html.php:4258 +msgid "Last failure" +msgstr "Latest failure" + +#: ../../include/functions_reporting_html.php:4348 +msgid "N/A(*)" +msgstr "N/A(*)" + +#: ../../include/functions_reporting_html.php:4585 +#: ../../include/functions_reporting.php:9240 +msgid "Monitor checks" +msgstr "Monitor checks" + +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting.php:9259 +msgid "Total agents and monitors" +msgstr "Total agents and monitors" + +#: ../../include/functions_reporting_html.php:4608 +#: ../../include/functions_reporting_html.php:4613 +msgid "Node overview" +msgstr "Node overview" + +#: ../../include/functions_reporting_html.php:4633 +#: ../../include/functions_reporting_html.php:4645 +msgid "Critical events" +msgstr "Critical events" + +#: ../../include/functions_reporting_html.php:4636 +#: ../../include/functions_reporting_html.php:4647 +msgid "Warning events" +msgstr "Events in warning status" + +#: ../../include/functions_reporting_html.php:4639 +#: ../../include/functions_reporting_html.php:4649 +msgid "OK events" +msgstr "Events in OK status" + +#: ../../include/functions_reporting_html.php:4642 +#: ../../include/functions_reporting_html.php:4651 +msgid "Unknown events" +msgstr "Events in unknown status" + +#: ../../include/functions_reporting_html.php:4667 +msgid "Important Events by Criticity" +msgstr "Important events by severity" + +#: ../../include/functions_reporting_html.php:4693 +#, php-format +msgid "Last activity in %s console" +msgstr "" + +#: ../../include/functions_reporting_html.php:4784 +#: ../../include/functions_reporting_html.php:4925 +msgid "Events info (1hr.)" +msgstr "Event info (1h)" + +#: ../../include/functions_reporting_html.php:5114 +msgid "Kilobytes" +msgstr "Kilobytes" + +#: ../../include/functions_reporting_html.php:5119 +msgid "No network traffic sent data" +msgstr "" + +#: ../../include/functions_reporting_html.php:5129 +msgid "Network traffic sent" +msgstr "" + +#: ../../include/functions_reporting_html.php:5136 +msgid "No network traffic received data" +msgstr "" + +#: ../../include/functions_reporting_html.php:5146 +msgid "Network traffic received" +msgstr "" + +#: ../../include/functions_reporting_html.php:5167 +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:5168 +msgid "" +"If the duration of the planned downtime is less than 5 minutes it will not " +"be represented in the graph" +msgstr "" + +#: ../../include/functions_reporting_html.php:5175 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:431 +msgid "Dates" +msgstr "Dates" + +#: ../../include/functions_reporting_html.php:5206 +msgid "This item is affected by a malformed planned downtime" +msgstr "This item is affected by an erroneous planned downtime" + +#: ../../include/functions_reporting_html.php:5206 +msgid "Go to the planned downtimes section to solve this" +msgstr "Go to the planned downtimes section to solve this." + +#: ../../include/functions.php:233 +msgid "," +msgstr "," + +#: ../../include/functions.php:503 ../../include/functions.php:643 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:504 ../../include/functions.php:644 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:505 ../../include/functions.php:645 +msgid "M" +msgstr "M" + +#: ../../include/functions.php:506 ../../include/functions.php:646 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 +#: ../../include/rest-api/models/VisualConsole/Item.php:1918 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:507 ../../include/functions.php:647 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:508 ../../include/functions.php:648 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:509 ../../include/functions.php:649 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1026 ../../include/functions.php:1271 +#: ../../include/functions.php:1305 ../../include/functions_graph.php:2883 +#: ../../include/functions_graph.php:3465 +#: ../../include/functions_graph.php:3466 +#: ../../include/functions_graph.php:4947 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:3096 +msgid "Maintenance" +msgstr "Maintenance" + +#: ../../include/functions.php:1030 ../../include/functions.php:1272 +#: ../../include/functions.php:1309 ../../include/functions_graph.php:3470 +#: ../../include/functions_graph.php:3471 +#: ../../include/functions_graph.php:4951 +#: ../../include/functions_events.php:3100 +msgid "Informational" +msgstr "Informative" + +#: ../../include/functions.php:1046 ../../include/functions.php:1274 +#: ../../include/functions.php:1325 ../../include/functions_graph.php:3480 +#: ../../include/functions_graph.php:3481 +#: ../../include/functions_graph.php:4967 +msgid "Minor" +msgstr "Minor" + +#: ../../include/functions.php:1050 ../../include/functions.php:1276 +#: ../../include/functions.php:1329 ../../include/functions_graph.php:3490 +#: ../../include/functions_graph.php:3491 +#: ../../include/functions_graph.php:4971 +msgid "Major" +msgstr "Major" + +#: ../../include/functions.php:1225 ../../include/functions_events.php:3020 +msgid "Monitor Critical" +msgstr "Monitor in critical status" + +#: ../../include/functions.php:1226 ../../include/functions_events.php:3024 +msgid "Monitor Warning" +msgstr "Monitor in warning status" + +#: ../../include/functions.php:1227 ../../include/functions_events.php:3028 +msgid "Monitor Normal" +msgstr "Monitor in normal status" + +#: ../../include/functions.php:1229 +msgid "Monitor Unknown" +msgstr "Unknown Monitor" + +#: ../../include/functions.php:1232 ../../include/functions_events.php:2654 +#: ../../include/functions_events.php:3036 +msgid "Alert recovered" +msgstr "Alert recovered" + +#: ../../include/functions.php:1233 ../../include/functions_events.php:2702 +#: ../../include/functions_events.php:3040 +msgid "Alert ceased" +msgstr "Alert stopped" + +#: ../../include/functions.php:1234 ../../include/functions_events.php:3044 +msgid "Alert manual validation" +msgstr "Manual alert validation" + +#: ../../include/functions.php:1236 +msgid "Agent created" +msgstr "Agent created" + +#: ../../include/functions.php:1237 ../../include/functions_events.php:3048 +msgid "Recon host detected" +msgstr "Recon host detected" + +#: ../../include/functions.php:1240 ../../include/functions_events.php:2698 +#: ../../include/functions_events.php:3060 +msgid "Configuration change" +msgstr "Configuration change" + +#: ../../include/functions.php:2535 +#, php-format +msgid "%s seconds" +msgstr "" + +#: ../../include/functions.php:2538 ../../include/functions.php:2539 +#, php-format +msgid "%s minutes" +msgstr "%s minutes" + +#: ../../include/functions.php:2547 ../../include/functions.php:2548 +#, php-format +msgid "%s months" +msgstr "%s months" + +#: ../../include/functions.php:2550 ../../include/functions.php:2551 +#, php-format +msgid "%s years" +msgstr "%s years" + +#: ../../include/functions.php:2553 +msgid "Default values will be used" +msgstr "Default values will be applied" + +#: ../../include/functions.php:2742 +msgid "The uploaded file was only partially uploaded" +msgstr "The file was only partially uploaded." + +#: ../../include/functions.php:2746 +msgid "No file was uploaded" +msgstr "No file was uploaded" + +#: ../../include/functions.php:2750 +msgid "Missing a temporary folder" +msgstr "Temporary folder missing" + +#: ../../include/functions.php:2754 +msgid "Failed to write file to disk" +msgstr "Error writing file to disk" + +#: ../../include/functions.php:2758 +msgid "File upload stopped by extension" +msgstr "File upload stopped by an extension" + +#: ../../include/functions.php:2762 +msgid "Unknown upload error" +msgstr "Unknown upload error" + +#: ../../include/functions.php:2873 +msgid "No data found to export" +msgstr "No data found to export" + +#: ../../include/functions.php:3192 +#: ../../operation/gis_maps/render_view.php:136 +msgid "5 seconds" +msgstr "5 seconds" + +#: ../../include/functions.php:3193 +#: ../../operation/gis_maps/render_view.php:137 +msgid "10 seconds" +msgstr "10 seconds" + +#: ../../include/functions.php:3194 +msgid "15 seconds" +msgstr "15 seconds" + +#: ../../include/functions.php:3195 +#: ../../operation/gis_maps/render_view.php:138 +msgid "30 seconds" +msgstr "30 seconds" + +#: ../../include/functions.php:3199 +msgid "15 minutes" +msgstr "15 minutes" + +#: ../../include/functions.php:3200 ../../include/ajax/module.php:164 +msgid "30 minutes" +msgstr "30 minutes" + +#: ../../include/functions.php:3671 +msgid "Summatory series" +msgstr "" + +#: ../../include/functions.php:3675 +msgid "Average series" +msgstr "" + +#: ../../include/functions.php:3699 ../../include/functions.php:3700 +#: ../../include/functions.php:3708 ../../include/functions.php:3714 +#: ../../include/functions.php:3750 ../../include/functions.php:3811 +msgid "Unit " +msgstr "" + +#: ../../include/functions.php:3721 ../../include/functions.php:3757 +msgid "Min:" +msgstr "" + +#: ../../include/functions.php:3726 ../../include/functions.php:3762 +msgid "Max:" +msgstr "" + +#: ../../include/functions.php:3731 ../../include/functions.php:3767 +msgid "Avg:" +msgstr "" + +#: ../../include/functions.php:3808 ../../include/functions.php:3816 +msgid "of module" +msgstr "" + +#: ../../include/functions.php:3833 +msgid "Projection" +msgstr "" + +#: ../../include/functions_cron.php:446 +msgid "Scheduled jobs" +msgstr "Scheduled jobs" + +#: ../../include/functions_api.php:93 +msgid "No set or get or help operation." +msgstr "No 'set' or 'get' or 'help' operation" + +#: ../../include/functions_api.php:103 +msgid "This operation does not exist." +msgstr "This operation does not exist." + +#: ../../include/functions_api.php:113 +msgid "Id does not exist in BD." +msgstr "ID does not exist in BD" + +#: ../../include/functions_api.php:123 +msgid "This operation can not be used in cluster elements." +msgstr "" + +#: ../../include/functions_api.php:133 +msgid "The user has not enough permission to make this action." +msgstr "" + +#: ../../include/functions_api.php:1083 +msgid "Does not exist agent with this name." +msgstr "There are no agents with this name." + +#: ../../include/functions_api.php:1093 +msgid "Does not exist module with this name." +msgstr "There are no modules with this name." + +#: ../../include/functions_api.php:1158 +msgid "Does not exist the pair alias/module required." +msgstr "" + +#: ../../include/functions_api.php:1357 +msgid "The agent parent don`t exist." +msgstr "" + +#: ../../include/functions_api.php:1362 +msgid "The user cannot access to parent agent." +msgstr "" + +#: ../../include/functions_api.php:1648 +msgid "Could not be created for unknown reason" +msgstr "" + +#: ../../include/functions_api.php:1691 +msgid "Error creating OS" +msgstr "" + +#: ../../include/functions_api.php:1720 +msgid "Success updating OS" +msgstr "" + +#: ../../include/functions_api.php:1909 ../../include/functions_api.php:8250 +#: ../../include/functions_api.php:14010 +msgid "Correct Delete" +msgstr "Correctly deleted" + +#: ../../include/functions_api.php:3126 +msgid "" +"Error in creation network module. Id_module_type is not correct for network " +"modules." +msgstr "" +"Error creating network module. 'Id_module_type' is incorrect for network " +"modules." + +#: ../../include/functions_api.php:3205 +msgid "Error in creation network module." +msgstr "Error creating network module" + +#: ../../include/functions_api.php:3238 +msgid "Error updating network module. Module name cannot be left blank." +msgstr "" +"Error updating the network module. The module name cannot be left blank." + +#: ../../include/functions_api.php:3257 +msgid "Error updating network module. Id_module doesn't exist." +msgstr "Error updating the network module. 'Id_module' does not exist." + +#: ../../include/functions_api.php:3283 +msgid "Error updating network module. Id_module exists in the new agent." +msgstr "" +"Error updating the network module. 'Id_module' exists for the new agent." + +#: ../../include/functions_api.php:3341 +msgid "Network module updated." +msgstr "Network module updated" + +#: ../../include/functions_api.php:3371 +msgid "Error in creation plugin module. Id_plugin cannot be left blank." +msgstr "Error creating the plugin module. 'id_plugin' cannot be left blank." + +#: ../../include/functions_api.php:3472 +msgid "Error in creation plugin module." +msgstr "Error creating the plugin module" + +#: ../../include/functions_api.php:3504 +msgid "Error updating plugin module. Id_module cannot be left blank." +msgstr "Error updating the plugin module. 'Id_module' cannot be left blank." + +#: ../../include/functions_api.php:3529 +msgid "Error updating plugin module. Id_module exists in the new agent." +msgstr "" +"Error updating the plugin module. 'Id_module' already exists in the new " +"agent." + +#: ../../include/functions_api.php:3537 +msgid "Error updating plugin module. Id_agent doesn't exist." +msgstr "Error updating plugin module. Id_agent does not exist." + +#: ../../include/functions_api.php:3601 +msgid "Plugin module updated." +msgstr "Plugin module successfully updated" + +#: ../../include/functions_api.php:3631 +msgid "Error in creation data module. Module_name cannot be left blank." +msgstr "Error creating the module data. 'Module_name' cannot be left blank." + +#: ../../include/functions_api.php:3723 ../../include/functions_api.php:3814 +#: ../../include/functions_api.php:3967 +msgid "Error in creation data module." +msgstr "Error creating module data" + +#: ../../include/functions_api.php:3755 +msgid "Error in creation synthetic module. Module_name cannot be left blank." +msgstr "Error creating synthetic module. 'Module_name' cannot be left blank." + +#: ../../include/functions_api.php:3778 ../../include/functions_api.php:3784 +msgid "Error in creation synthetic module. Agent name doesn't exist." +msgstr "Error creating synthetic module. Agent name does not exist." + +#: ../../include/functions_api.php:3957 ../../include/functions_api.php:4110 +msgid "Synthetic module created ID: " +msgstr "Synthetic module ID created: " + +#: ../../include/functions_api.php:4143 +msgid "Error updating data module. Id_module cannot be left blank." +msgstr "Error updating module data. 'Id_module' cannot be left blank." + +#: ../../include/functions_api.php:4168 +msgid "Error updating data module. Id_module exists in the new agent." +msgstr "Error updating module data. 'Id_module' exists in the new agent." + +#: ../../include/functions_api.php:4176 +msgid "Error updating data module. Id_agent doesn't exist." +msgstr "Error updating module data. Id_agent does not exist." + +#: ../../include/functions_api.php:4227 +msgid "Data module updated." +msgstr "Module data updated" + +#: ../../include/functions_api.php:4263 +msgid "Error in creation SNMP module. Module_name cannot be left blank." +msgstr "Error creating the SNMP module. 'Module_name' cannot be left blank." + +#: ../../include/functions_api.php:4268 +msgid "" +"Error in creation SNMP module. Invalid id_module_type for a SNMP module." +msgstr "" +"Error creating the SNMP module. Invalid 'id_module_type' for an SNMP module." + +#: ../../include/functions_api.php:4299 ../../include/functions_api.php:4490 +#: ../../include/functions_api.php:7686 +msgid "" +"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "" +"Error in creation of SNMP module. 'snmp3_priv_method' does not exist. Please " +"set it to 'AES' or 'DES'. " + +#: ../../include/functions_api.php:4304 ../../include/functions_api.php:4501 +#: ../../include/functions_api.php:7691 +msgid "" +"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"Error in creation SNMP module. snmp3_sec_level does not exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " + +#: ../../include/functions_api.php:4309 ../../include/functions_api.php:4509 +#: ../../include/functions_api.php:7696 +msgid "" +"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "" +"Error in creation SNMP module. snmp3_auth_method does not exist. Set it to " +"'MD5' or 'SHA'. " + +#: ../../include/functions_api.php:4413 +msgid "Error in creation SNMP module." +msgstr "Error creating the SNMP module" + +#: ../../include/functions_api.php:4447 +msgid "Error updating SNMP module. Id_module cannot be left blank." +msgstr "Error updating the SNMP module. 'Id_module' cannot be left blank." + +#: ../../include/functions_api.php:4472 +msgid "Error updating SNMP module. Id_module exists in the new agent." +msgstr "" +"Error updating the SNMP module. 'Id_module' already exists for the new agent." + +#: ../../include/functions_api.php:4480 +msgid "Error updating snmp module. Id_agent doesn't exist." +msgstr "Error updating snmp module. Id_agent does not exist." + +#: ../../include/functions_api.php:4601 +msgid "SNMP module updated." +msgstr "SNMP module updated" + +#: ../../include/functions_api.php:4637 +msgid "" +"Error creating network component. Network component name cannot be left " +"blank." +msgstr "" +"Error creating a network component. The Network component name cannot be " +"left blank." + +#: ../../include/functions_api.php:4642 +msgid "" +"Error creating network component. Incorrect value for Network component type " +"field." +msgstr "" +"Error creating the network component. Incorrect value for the \"Network " +"component type\" field." + +#: ../../include/functions_api.php:4647 +msgid "" +"Error creating network component. Network component group cannot be left " +"blank." +msgstr "" +"Error creating the network component. The network component group cannot be " +"left blank." + +#: ../../include/functions_api.php:4685 +msgid "" +"Error creating network component. This network component already exists." +msgstr "" +"Error creating the network component. This network component already exists." + +#: ../../include/functions_api.php:4733 +msgid "" +"Error creating plugin component. Plugin component name cannot be left blank." +msgstr "" +"Error creating the plugin component. The plugin component name cannot be " +"left blank." + +#: ../../include/functions_api.php:4739 +msgid "Error creating plugin component. Incorrect value for Id plugin." +msgstr "" +"Error creating the plugin component. Incorrect value for the plugin ID." + +#: ../../include/functions_api.php:4744 +msgid "" +"Error creating plugin component. Plugin component group cannot be left blank." +msgstr "" +"Error creating plugin component. The plugin component group cannot be left " +"blank." + +#: ../../include/functions_api.php:4786 +msgid "" +"Error creating plugin component. This plugin component already exists." +msgstr "" +"Error creating the plugin component. This plugin component already exists." + +#: ../../include/functions_api.php:4828 +msgid "" +"Error creating SNMP component. SNMP component name cannot be left blank." +msgstr "" +"Error creating the SNMP component. The SNMP component name cannot be left " +"blank." + +#: ../../include/functions_api.php:4838 +msgid "" +"Error creating SNMP component. Incorrect value for Snmp component type field." +msgstr "" +"Error creating the SNMP component. Incorrect value for the SNMP component " +"type field." + +#: ../../include/functions_api.php:4843 +msgid "" +"Error creating SNMP component. Snmp component group cannot be left blank." +msgstr "" +"Error creating the SNMP component. The SNMP component group cannot be left " +"blank." + +#: ../../include/functions_api.php:4854 +msgid "" +"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "" +"Error creating SNMP component. 'snmp3_priv_method' does not exist. Please " +"set it to 'AES' or 'DES'. " + +#: ../../include/functions_api.php:4864 +msgid "" +"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"Error creating SNMP component. 'snmp3_sec_level' does not exist. Please set " +"it to 'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " + +#: ../../include/functions_api.php:4872 +msgid "" +"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "" +"Error on creating SNMP component. 'snmp3_auth_method' does not exist. Please " +"set it to 'MD5' or 'SHA'. " + +#: ../../include/functions_api.php:4955 +msgid "Error creating SNMP component. This SNMP component already exists." +msgstr "" +"Error creating the SNMP component. This SNMP component already exists." + +#: ../../include/functions_api.php:4997 +msgid "" +"Error creating local component. Local component name cannot be left blank." +msgstr "" +"Error creating a local component. The local component name cannot be left " +"blank." + +#: ../../include/functions_api.php:5010 +msgid "" +"Error creating local component. Local component group cannot be left blank." +msgstr "" +"Error creating the local component. The local component group cannot be left " +"blank." + +#: ../../include/functions_api.php:5043 +msgid "Error creating local component." +msgstr "Error creating local component" + +#: ../../include/functions_api.php:5051 +msgid "Error creating local component. This local component already exists." +msgstr "" +"Error creating the local component. This local component already exists." + +#: ../../include/functions_api.php:5096 +msgid "" +"Error getting module value from all agents. Module name cannot be left blank." +msgstr "" +"Error retrieving the module value from all agents. The module name cannot be " +"left blank." + +#: ../../include/functions_api.php:5106 +msgid "" +"Error getting module value from all agents. Module name doesn't exist." +msgstr "" +"Error getting module value from all agents. Module name does not exist." + +#: ../../include/functions_api.php:5169 +msgid "Error creating alert template. Template name cannot be left blank." +msgstr "" +"Error creating the alert template. The template name cannot be left blank." + +#: ../../include/functions_api.php:5241 +msgid "Error creating alert template." +msgstr "Error creating the alert template" + +#: ../../include/functions_api.php:5281 +msgid "Error updating alert template. Id_template cannot be left blank." +msgstr "Error updating alert template. 'Id_template' cannot be left blank." + +#: ../../include/functions_api.php:5291 +msgid "Error updating alert template. Id_template doesn't exist." +msgstr "Error on updating alert template. 'Id_template' does not exist." + +#: ../../include/functions_api.php:5342 +msgid "Error updating alert template." +msgstr "Error updating the alert template" + +#: ../../include/functions_api.php:5349 +msgid "Correct updating of alert template" +msgstr "Alert template successfully updated" + +#: ../../include/functions_api.php:5378 +msgid "Error deleting alert template. Id_template cannot be left blank." +msgstr "" +"Error deleting the alert template. 'Id_template' cannot be left blank." + +#: ../../include/functions_api.php:5389 +msgid "Error deleting alert template." +msgstr "Error deleting the alert template" + +#: ../../include/functions_api.php:5396 +msgid "Correct deleting of alert template." +msgstr "Alert template successfully deleted" + +#: ../../include/functions_api.php:5447 +msgid "Error getting all alert templates." +msgstr "Error retrieving all alert templates" + +#: ../../include/functions_api.php:5492 +msgid "Error getting all alert commands." +msgstr "" + +#: ../../include/functions_api.php:5527 +msgid "Error getting alert template. Id_template doesn't exist." +msgstr "Error retrieving alert template. 'Id_template' does not exist." + +#: ../../include/functions_api.php:5555 +msgid "Error getting alert template." +msgstr "Error retrieving the alert template" + +#: ../../include/functions_api.php:5669 +msgid "Error getting module groups." +msgstr "Error retrieving module groups" + +#: ../../include/functions_api.php:5733 +msgid "Error getting plugins." +msgstr "Error retrieving plugins" + +#: ../../include/functions_api.php:5781 ../../include/functions_api.php:5787 +msgid "Error creating module from network component. Agent doesn't exist." +msgstr "Error creating module from network component. Agent does not exist." + +#: ../../include/functions_api.php:5795 +msgid "" +"Error creating module from network component. Network component doesn't " +"exist." +msgstr "" +"Error creating module from network component. Network component does not " +"exist." + +#: ../../include/functions_api.php:5821 ../../include/functions_api.php:11296 +#: ../../include/functions_api.php:11362 ../../include/functions_api.php:11643 +#: ../../include/functions_api.php:11724 +#, php-format +msgid "%d agents affected" +msgstr "" + +#: ../../include/functions_api.php:5827 +msgid "Error creating module from network component. Error creating module." +msgstr "Error creating the module from a network component" + +#: ../../include/functions_api.php:5858 +msgid "Error assigning module to template. Id_template cannot be left blank." +msgstr "" +"Error assigning the module to a template. 'id_template' cannot be left blank." + +#: ../../include/functions_api.php:5866 +msgid "Error assigning module to template. Id_module cannot be left blank." +msgstr "" +"Error assigning the module to a template. 'Id_module' cannot be left blank." + +#: ../../include/functions_api.php:5874 +msgid "Error assigning module to template. Id_agent cannot be left blank." +msgstr "" +"Error assigning the module to a template. 'Id_agent' cannot be left blank." + +#: ../../include/functions_api.php:5891 +msgid "Error assigning module to template. Id_template doensn't exists." +msgstr "" +"Error assigning the module to a template. 'Id_template' does not exist." + +#: ../../include/functions_api.php:5899 +msgid "Error assigning module to template. Id_agent doesn't exist." +msgstr "Error assigning module to template. 'Id_agent' does not exist." + +#: ../../include/functions_api.php:5906 +msgid "Error assigning module to template. Id_module doesn't exist." +msgstr "Error assigning module to template. 'Id_module' does not exist." + +#: ../../include/functions_api.php:5914 +msgid "Error assigning module to template." +msgstr "Error assigning the module to a template" + +#: ../../include/functions_api.php:5948 +msgid "" +"Error deleting module template. Id_module_template cannot be left blank." +msgstr "" +"Error deleting the module template. 'Id_module_template' cannot be left " +"blank." + +#: ../../include/functions_api.php:5955 +msgid "Error deleting module template. Id_module_template doesn't exist." +msgstr "Error deleting module template. 'Id_module_template' does not exist." + +#: ../../include/functions_api.php:5963 ../../include/functions_api.php:6071 +msgid "Error deleting module template." +msgstr "Error deleting module template" + +#: ../../include/functions_api.php:5965 ../../include/functions_api.php:6073 +msgid "Correct deleting of module template." +msgstr "Module template successfully deleted" + +#: ../../include/functions_api.php:6053 +#, php-format +msgid "Module template has been deleted in %d agents." +msgstr "" + +#: ../../include/functions_api.php:6146 +msgid "Error validate all alerts. Failed " +msgstr "Error validating all alerts " + +#: ../../include/functions_api.php:6148 +#, php-format +msgid "Correct validating of all alerts (total %d)." +msgstr "" + +#: ../../include/functions_api.php:6183 +msgid "Error validating all alert policies." +msgstr "Error validating all policy alerts" + +#: ../../include/functions_api.php:6240 +msgid "Error validate all policy alerts. Failed " +msgstr "Error validating all policy alerts " + +#: ../../include/functions_api.php:6242 +msgid "Correct validating of all policy alerts." +msgstr "All policy alerts successfully validated" + +#: ../../include/functions_api.php:6274 +msgid "Error stopping downtime. Id_downtime cannot be left blank." +msgstr "Error stopping the downtime. 'Id_downtime' cannot be left blank." + +#: ../../include/functions_api.php:6285 +msgid "No action has been taken." +msgstr "" + +#: ../../include/functions_api.php:6287 +msgid "Error stopping downtime." +msgstr "" + +#: ../../include/functions_api.php:6289 +msgid "Downtime stopped." +msgstr "Downtime stopped" + +#: ../../include/functions_api.php:6416 +msgid "Error set tag." +msgstr "" + +#: ../../include/functions_api.php:6478 +msgid "No planned downtime retrieved" +msgstr "" + +#: ../../include/functions_api.php:6765 +msgid "and this modules are doesn't exists or not applicable a this agents: " +msgstr "" +"and these modules do not exist or are not applicable to these agents: " + +#: ../../include/functions_api.php:6769 +msgid "and this agents are generate problems: " +msgstr "and these agents generate issues: " + +#: ../../include/functions_api.php:6773 +msgid "and this agents with ids are doesn't exists: " +msgstr "and these agents with IDs do not exist: " + +#: ../../include/functions_api.php:6813 +msgid "Error adding data module to policy. Id_policy cannot be left blank." +msgstr "" +"Error adding module data to the policy. 'Id_policy' cannot be left blank." + +#: ../../include/functions_api.php:6823 +msgid "Error adding data module to policy. Module_name cannot be left blank." +msgstr "" +"Error adding module data to the policy. 'Module_name' cannot be left blank." + +#: ../../include/functions_api.php:6831 +msgid "Error adding data module to policy." +msgstr "Error adding module data to the policy" + +#: ../../include/functions_api.php:6869 +msgid "" +"Error adding data module to policy. The module is already in the policy." +msgstr "" +"Error adding module data to the policy. The module is already in the policy." + +#: ../../include/functions_api.php:6921 +msgid "Error updating data module in policy. Id_policy cannot be left blank." +msgstr "" +"Error updating module data in the policy. 'Id_policy' cannot be left blank." + +#: ../../include/functions_api.php:6930 +msgid "" +"Error updating data module in policy. Id_policy_module cannot be left blank." +msgstr "" +"Error updating module data in policy. 'id_policy_module' cannot be left " +"blank." + +#: ../../include/functions_api.php:6938 +msgid "Error updating data module in policy. Module doesn't exist." +msgstr "Error updating module data in policy. Module does not exist." + +#: ../../include/functions_api.php:6945 +msgid "" +"Error updating data module in policy. Module type is not network type." +msgstr "" +"Error updating module data in the policy. The module type does not match the " +"network type." + +#: ../../include/functions_api.php:6995 +msgid "Data policy module updated." +msgstr "Data module policy updated" + +#: ../../include/functions_api.php:7030 +msgid "" +"Error adding network module to policy. Id_policy cannot be left blank." +msgstr "" +"Error adding the network module to the policy. 'Id_policy' cannot be left " +"blank." + +#: ../../include/functions_api.php:7043 +msgid "" +"Error adding network module to policy. Module_name cannot be left blank." +msgstr "" +"Error adding the network module to the policy. 'Module_name' cannot be left " +"blank." + +#: ../../include/functions_api.php:7051 +msgid "" +"Error adding network module to policy. Id_module_type is not correct for " +"network modules." +msgstr "" +"Error adding the network module to the policy. The 'id_module_type' is " +"incorrect for network modules." + +#: ../../include/functions_api.php:7069 +msgid "Error adding network module to policy." +msgstr "Error adding the network module to the policy" + +#: ../../include/functions_api.php:7109 +msgid "" +"Error adding network module to policy. The module is already in the policy." +msgstr "" +"Error adding the network module to the policy. The module is already in the " +"policy." + +#: ../../include/functions_api.php:7151 +msgid "" +"Error updating network module in policy. Id_policy cannot be left blank." +msgstr "" +"Error updating the network module in the policy. 'Id_policy' cannot be left " +"blank." + +#: ../../include/functions_api.php:7159 +msgid "" +"Error updating network module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" +"Error updating the network module in the policy. 'Id_policy_module' cannot " +"be left blank." + +#: ../../include/functions_api.php:7170 +msgid "Error updating network module in policy. Module doesn't exist." +msgstr "Error updating network module in policy. Module does not exist." + +#: ../../include/functions_api.php:7178 +msgid "" +"Error updating network module in policy. Module type is not network type." +msgstr "" +"Error updating the network module in the policy. The module type is not the " +"network type." + +#: ../../include/functions_api.php:7222 +msgid "Network policy module updated." +msgstr "Network policy module updated" + +#: ../../include/functions_api.php:7252 +msgid "Error adding plugin module to policy. Id_policy cannot be left blank." +msgstr "" +"Error adding the plugin module to the policy. 'Id_policy cannot be left " +"blank." + +#: ../../include/functions_api.php:7262 +msgid "" +"Error adding plugin module to policy. Module_name cannot be left blank." +msgstr "" +"Error adding the plugin module to the policy. 'Module_name' cannot be left " +"blank." + +#: ../../include/functions_api.php:7267 +msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." +msgstr "" +"Error adding the plugin module to the policy. 'Id_plugin' cannot be left " +"blank." + +#: ../../include/functions_api.php:7275 +msgid "Error adding plugin module to policy." +msgstr "Error adding the plugin module to the policy" + +#: ../../include/functions_api.php:7319 +msgid "" +"Error adding plugin module to policy. The module is already in the policy." +msgstr "" +"Error adding the plugin module to the policy. The module is already in the " +"policy." + +#: ../../include/functions_api.php:7362 +msgid "" +"Error updating plugin module in policy. Id_policy cannot be left blank." +msgstr "" +"Error updating the plugin module in the policy. 'Id_policy' cannot be left " +"blank" + +#: ../../include/functions_api.php:7370 +msgid "" +"Error updating plugin module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" +"Error updating the plugin module in the policy. 'Id_policy_module' cannot be " +"left blank." + +#: ../../include/functions_api.php:7381 +msgid "Error updating plugin module in policy. Module doesn't exist." +msgstr "Error on updating plugin module in policy. Module does not exist." + +#: ../../include/functions_api.php:7389 +msgid "" +"Error updating plugin module in policy. Module type is not network type." +msgstr "" +"Error updating the plugin module in the policy. The module type is not the " +"network type." + +#: ../../include/functions_api.php:7449 +msgid "Plugin policy module updated." +msgstr "Plugin policy module updated" + +#: ../../include/functions_api.php:7535 +#, php-format +msgid "Remote config of module %s not available" +msgstr "" + +#: ../../include/functions_api.php:7652 +msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." +msgstr "" +"Error adding the SNMP module to the policy. 'Id_policy' cannot be left blank." + +#: ../../include/functions_api.php:7662 +msgid "Error adding SNMP module to policy. Module_name cannot be left blank." +msgstr "" +"Error adding the SNMP module to the policy. 'Module_name' cannot be left " +"blank." + +#: ../../include/functions_api.php:7670 +msgid "Error adding SNMP module to policy." +msgstr "Error adding the SNMP module to the policy" + +#: ../../include/functions_api.php:7675 +msgid "" +"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " +"modules." +msgstr "" +"Error adding the SNMP module to the policy. 'Id_module_type' is incorrect " +"for SNMP modules." + +#: ../../include/functions_api.php:7769 +msgid "" +"Error adding SNMP module to policy. The module is already in the policy." +msgstr "" +"Error adding the SNMP module to the policy. The module is already in the " +"policy." + +#: ../../include/functions_api.php:7811 +msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." +msgstr "" +"Error updating the SNMP module in the policy. 'Id_policy' cannot be left " +"blank." + +#: ../../include/functions_api.php:7816 +msgid "" +"Error updating SNMP module in policy. Id_policy_module cannot be left blank." +msgstr "" +"Error updating the SNMP module in the policy. 'Id_policy_module' cannot be " +"left blank." + +#: ../../include/functions_api.php:7824 +msgid "Error updating SNMP module in policy. Module doesn't exist." +msgstr "Error on updating SNMP module in policy. Module does not exist." + +#: ../../include/functions_api.php:7829 +msgid "Error updating SNMP module in policy. Module type is not SNMP type." +msgstr "Error updating SNMP module in policy. Module type is not SNMP type." + +#: ../../include/functions_api.php:7838 +msgid "" +"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " +"or 'DES'. " +msgstr "" +"Error updating SNMP module. 'snmp3_priv_method' does not exist. Please set " +"it to 'AES' or 'DES'. " + +#: ../../include/functions_api.php:7850 +msgid "" +"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"Error on updating SNMP module. 'snmp3_sec_level' does not exist. Please set " +"it to 'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " + +#: ../../include/functions_api.php:7859 +msgid "" +"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " +"or 'SHA'. " +msgstr "" +"Error on updating SNMP module. 'snmp3_auth_method' does not exist. Please " +"set it to 'MD5' or 'SHA'. " + +#: ../../include/functions_api.php:7945 +msgid "SNMP policy module updated." +msgstr "The SNMP policy module has been updated." + +#: ../../include/functions_api.php:7966 ../../include/functions_api.php:7999 +msgid "Error deleting agent from policy. Policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7971 +msgid "Error deleting agent from policy. Agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7977 +msgid "Error deleting agent from policy. Node ID cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8049 +msgid "Error in group creation. Group_name cannot be left blank." +msgstr "Error with group creation. 'Group_name' cannot be left blank." + +#: ../../include/functions_api.php:8057 +msgid "Error in group creation. Icon_name cannot be left blank." +msgstr "Error creating group. 'Icon_name' cannot be left blank." + +#: ../../include/functions_api.php:8070 +msgid "Error in group creation. Id_parent_group doesn't exist." +msgstr "Error on group creation. 'Id_parent_group' does not exist." + +#: ../../include/functions_api.php:8099 +msgid "Error in group creation." +msgstr "Error creating group" + +#: ../../include/functions_api.php:8156 ../../include/functions_api.php:10856 +#: ../../include/functions_api.php:10909 +msgid "There is not any group with the id provided" +msgstr "" + +#: ../../include/functions_api.php:8286 +msgid "Error in netflow filter creation. Filter name cannot be left blank." +msgstr "Error creating NetFlow filter. The filter name cannot be left blank." + +#: ../../include/functions_api.php:8291 +msgid "Error in netflow filter creation. Group id cannot be left blank." +msgstr "Error creating the NetFlow filter. Group ID cannot be left blank." + +#: ../../include/functions_api.php:8297 +msgid "Error in netflow filter creation. Id_group doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:8308 +msgid "Error in netflow filter creation. Filter cannot be left blank." +msgstr "Error creating NetFlow filter. Filter cannot be left blank." + +#: ../../include/functions_api.php:8313 +msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." +msgstr "Error creating NetFlow filter. 'Aggregate_by' cannot be left blank" + +#: ../../include/functions_api.php:8318 +msgid "Error in netflow filter creation. Output_format cannot be left blank." +msgstr "Error creating NetFlow filter. 'Output_format' cannot be left blank." + +#: ../../include/functions_api.php:8336 +msgid "Error in netflow filter creation." +msgstr "Error creating NetFlow filter." + +#: ../../include/functions_api.php:8553 +msgid "Create user." +msgstr "Create user" + +#: ../../include/functions_api.php:8607 +msgid "Error updating user. Id_user cannot be left blank." +msgstr "User update error. 'Id_user' cannot be left blank." + +#: ../../include/functions_api.php:8617 +msgid "Error updating user. Id_user doesn't exist." +msgstr "Error updating user. 'Id_user' does not exist." + +#: ../../include/functions_api.php:8634 +msgid "Error updating user. Password info incorrect." +msgstr "Error updating user. Password information is incorrect." + +#: ../../include/functions_api.php:8642 +msgid "Updated user." +msgstr "User updated" + +#: ../../include/functions_api.php:8684 +msgid "Error enable/disable user. Id_user cannot be left blank." +msgstr "Error enabling/disabling user. 'Id_user' cannot be left blank." + +#: ../../include/functions_api.php:8692 +msgid "Error enable/disable user. Enable/disable value cannot be left blank." +msgstr "" +"Error enabling/disabling user. Enable/disable value cannot be left blank." + +#: ../../include/functions_api.php:8700 +msgid "Error enable/disable user. The user doesn't exist." +msgstr "Error enable/disable user. The user does not exist." + +#: ../../include/functions_api.php:8711 +msgid "Error in user enabling/disabling." +msgstr "Error enabling/disabling user" + +#: ../../include/functions_api.php:8719 +msgid "Enabled user." +msgstr "User enabled" + +#: ../../include/functions_api.php:8727 +msgid "Disabled user." +msgstr "User disabled" + +#: ../../include/functions_api.php:9005 +#, php-format +msgid "Template have been inserted in %d agents." +msgstr "" + +#: ../../include/functions_api.php:9177 +msgid "XML file was generated successfully in path: " +msgstr "" + +#: ../../include/functions_api.php:9317 +#, php-format +msgid "Module has been created in %d agents." +msgstr "" + +#: ../../include/functions_api.php:9439 +#, php-format +msgid "Action has been set for %d agents." +msgstr "" + +#: ../../include/functions_api.php:9569 +#, php-format +msgid "Created/Updated %s/%s module groups" +msgstr "Created/Updated %s/%s module groups" + +#: ../../include/functions_api.php:9573 +#, php-format +msgid "Error creating/updating %s/%s module groups
" +msgstr "" + +#: ../../include/functions_api.php:9580 ../../include/functions_api.php:13615 +msgid "This function is only for metaconsole" +msgstr "This function is only for Metaconsole" + +#: ../../include/functions_api.php:9627 +msgid "Name cannot be empty." +msgstr "" + +#: ../../include/functions_api.php:9632 +msgid "Command cannot be empty." +msgstr "" + +#: ../../include/functions_api.php:9637 +msgid "Name already exist" +msgstr "" + +#: ../../include/functions_api.php:9642 +msgid "Group does not exist" +msgstr "" + +#: ../../include/functions_api.php:10073 +msgid "There is not gis data for the agent" +msgstr "" + +#: ../../include/functions_api.php:10114 ../../include/functions_api.php:10232 +msgid "Gis not activated" +msgstr "" + +#: ../../include/functions_api.php:10133 ../../include/functions_api.php:10251 +msgid "Missing parameters" +msgstr "" + +#: ../../include/functions_api.php:10820 +msgid "Delete user." +msgstr "Delete user" + +#: ../../include/functions_api.php:10861 ../../include/functions_api.php:10914 +msgid "There is not any profile with the id provided" +msgstr "" + +#: ../../include/functions_api.php:10873 +msgid "Add user profile." +msgstr "Add user profile" + +#: ../../include/functions_api.php:10932 +msgid "Delete user profile." +msgstr "Delete user profile" + +#: ../../include/functions_api.php:10989 +msgid "Error retrieving profiles" +msgstr "" + +#: ../../include/functions_api.php:11045 +msgid "Error creating user profile" +msgstr "" + +#: ../../include/functions_api.php:11107 +msgid "Error updating user profile" +msgstr "" + +#: ../../include/functions_api.php:11142 +msgid "Error deleting user profile" +msgstr "" + +#: ../../include/functions_api.php:11303 +msgid "Correct module disable" +msgstr "Module successfully disabled" + +#: ../../include/functions_api.php:11305 +msgid "Error disabling module" +msgstr "Error disabling module" + +#: ../../include/functions_api.php:11369 +msgid "Correct module enable" +msgstr "Module successfully enabled" + +#: ../../include/functions_api.php:11371 +msgid "Error enabling module" +msgstr "Error enabling module" + +#: ../../include/functions_api.php:11419 ../../include/functions_api.php:11472 +msgid "Error alert disable" +msgstr "Error disabling alert" + +#: ../../include/functions_api.php:11519 ../../include/functions_api.php:11572 +msgid "Error alert enable" +msgstr "Error enabling alert" + +#: ../../include/functions_api.php:12037 +msgid "No alert found" +msgstr "" + +#: ../../include/functions_api.php:12211 +msgid "Cannot connect with the agent node." +msgstr "" + +#: ../../include/functions_api.php:12457 +msgid "Error adding event comment." +msgstr "Error adding an event comment" + +#: ../../include/functions_api.php:12740 +msgid "Error enable/disable agent. Id_agent cannot be left blank." +msgstr "Error enabling/disabling agent. 'Id_agent' cannot be left blank." + +#: ../../include/functions_api.php:12752 +msgid "" +"Error enable/disable agent. Enable/disable value cannot be left blank." +msgstr "" +"Error enabling/disabling agent. Enable/disable value cannot be left blank." + +#: ../../include/functions_api.php:12760 +msgid "Error enable/disable agent. The agent doesn't exist." +msgstr "Error enable/disable agent. The agent does not exist." + +#: ../../include/functions_api.php:12784 +msgid "Error in agent enabling/disabling." +msgstr "Error enabling/disabling agent" + +#: ../../include/functions_api.php:12791 +msgid "Enabled agent." +msgstr "Agent enabled" + +#: ../../include/functions_api.php:12799 +msgid "Disabled agent." +msgstr "Agent disabled" + +#: ../../include/functions_api.php:12914 +msgid "Error getting special_days." +msgstr "Error obtaining special_days" + +#: ../../include/functions_api.php:12954 +msgid "Error creating special day. Specified day already exists." +msgstr "Error creating the special day. The specified day already exists." + +#: ../../include/functions_api.php:12959 +msgid "Error creating special day. Invalid date format." +msgstr "Error creating the special day. Invalid date format." + +#: ../../include/functions_api.php:12964 +msgid "Error creating special day. Group id cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:12970 +msgid "Error creating special day. Id_group doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:12988 +msgid "Error in creation special day." +msgstr "Error creating the special day" + +#: ../../include/functions_api.php:13038 +msgid "Error in creation service. No name" +msgstr "Error creating service. No name." + +#: ../../include/functions_api.php:13061 +msgid "Error in creation service. No agent id" +msgstr "Error creating service. No agent ID." + +#: ../../include/functions_api.php:13125 +msgid "Error in creation service" +msgstr "Error creating service" + +#: ../../include/functions_api.php:13157 +msgid "Error in update service. No service id" +msgstr "Error updating service. No service ID." + +#: ../../include/functions_api.php:13279 +msgid "Error in update service" +msgstr "Error updating service" + +#: ../../include/functions_api.php:13312 +msgid "Error adding elements to service. No service id" +msgstr "Error adding elements to service. No service ID." + +#: ../../include/functions_api.php:13389 +msgid "Error adding elements to service" +msgstr "Error adding elements to service" + +#: ../../include/functions_api.php:13426 +msgid "Error updating special day. Id cannot be left blank." +msgstr "Error updating the special day. The ID cannot be left blank." + +#: ../../include/functions_api.php:13433 +msgid "Error updating special day. Id doesn't exist." +msgstr "Error updating special day. ID does not exist." + +#: ../../include/functions_api.php:13438 +msgid "Error updating special day. Invalid date format." +msgstr "Error updating the special day. Invalid date format." + +#: ../../include/functions_api.php:13488 +msgid "Error deleting special day. Id cannot be left blank." +msgstr "Error deleting the special day. The ID cannot be left blank." + +#: ../../include/functions_api.php:13495 +msgid "Error deleting special day. Id doesn't exist." +msgstr "Error deleting the special day. ID does not exist." + +#: ../../include/functions_api.php:13502 +msgid "Error in deletion special day." +msgstr "Error deleting the special day." + +#: ../../include/functions_api.php:13641 +msgid "A cluster with this name already exists." +msgstr "" + +#: ../../include/functions_api.php:13723 +msgid "Failed to create cluster." +msgstr "" + +#: ../../include/functions_api.php:13726 +msgid "Agent name cannot be empty." +msgstr "" + +#: ../../include/functions_api.php:13759 ../../include/functions_api.php:13892 +msgid "Error adding elements to cluster" +msgstr "" + +#: ../../include/functions_api.php:13908 ../../include/functions_api.php:13953 +#: ../../include/functions_api.php:13999 ../../include/functions_api.php:14174 +#: ../../include/functions_api.php:14212 ../../include/functions_api.php:14235 +#: ../../include/functions_api.php:14269 ../../include/functions_api.php:14338 +#: ../../include/functions_api.php:14373 ../../include/functions_api.php:14566 +msgid "The user cannot access to the cluster" +msgstr "" + +#: ../../include/functions_api.php:14605 +msgid "Error creating event filter. Event filter name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:14745 +msgid "Error creating event filter." +msgstr "" + +#: ../../include/functions_api.php:14751 +msgid "Event filter successfully created." +msgstr "" + +#: ../../include/functions_api.php:14788 +msgid "Error updating event filter. Event filter ID cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:14799 +msgid "Error updating event filter. Event filter ID doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:14980 +msgid "Error updating event filter." +msgstr "" + +#: ../../include/functions_api.php:14986 +msgid "Event filter successfully updated." +msgstr "" + +#: ../../include/functions_api.php:15012 +msgid "Error deleting event_filter. Event filter ID cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:15022 +msgid "Error deleting event filter." +msgstr "" + +#: ../../include/functions_api.php:15029 +msgid "Event filter successfully deleted." +msgstr "" + +#: ../../include/functions_api.php:15077 +msgid "Error getting all event filters." +msgstr "" + +#: ../../include/functions_api.php:15307 +msgid "Error in trap update." +msgstr "" + +#: ../../include/functions_api.php:15313 +msgid "Validated traps." +msgstr "" + +#: ../../include/functions_api.php:15334 +msgid "Error in trap delete." +msgstr "" + +#: ../../include/functions_api.php:15340 +msgid "Deleted traps." +msgstr "" + +#: ../../include/functions_api.php:15498 +msgid "Error. Agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:15505 ../../include/functions_api.php:15955 +msgid "This agent does not exist." +msgstr "" + +#: ../../include/functions_api.php:15527 +#, php-format +msgid "Successfully updated module/alert count in id agent %d." +msgstr "" + +#: ../../include/functions_api.php:15529 +msgid "Successfully updated module/alert count in all agents" +msgstr "" + +#: ../../include/functions_api.php:15603 +msgid "Users could not be found." +msgstr "" + +#: ../../include/functions_api.php:15807 ../../include/functions_api.php:15814 +msgid "User profile could not be deleted." +msgstr "" + +#: ../../include/functions_api.php:15862 ../../include/functions_api.php:15889 +msgid "User profile could not be available." +msgstr "" + +#: ../../include/functions_api.php:15950 +msgid "This policy does not exist." +msgstr "" + +#: ../../include/functions_api.php:15960 +msgid "This agent does not exist in this policy." +msgstr "" + +#: ../../include/functions_api.php:15965 +#, php-format +msgid "Successfully added to delete pending id agent %d to id policy %d." +msgstr "" + +#: ../../include/functions_networkmap.php:1291 +msgid "Radial dynamic" +msgstr "Radial dynamic" + +#: ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:38 +msgid "Topology" +msgstr "Topology" + +#: ../../include/functions_networkmap.php:1313 +msgid "Create a new topology map" +msgstr "Create a new topology map" + +#: ../../include/functions_networkmap.php:1314 +msgid "Create a new group map" +msgstr "Create a new group map" + +#: ../../include/functions_networkmap.php:1315 +msgid "Create a new dynamic map" +msgstr "Create a new dynamic map" + +#: ../../include/functions_networkmap.php:1317 +msgid "Create a new radial dynamic map" +msgstr "Create a new radial dynamic map" + +#: ../../include/functions_networkmap.php:2032 +#: ../../include/functions_maps.php:73 +msgid "Copy of " +msgstr "Copy of " + +#: ../../include/ajax/double_auth.ajax.php:140 +msgid "" +"This is the private code that you should use with your authenticator app" +msgstr "" +"This is the private code that you should use with your authentication app." + +#: ../../include/ajax/double_auth.ajax.php:141 +#: ../../include/ajax/double_auth.ajax.php:279 +msgid "" +"You could enter the code manually or use the QR code to add it automatically" +msgstr "" +"You can enter the code manually or scan the QR code to add it automatically." + +#: ../../include/ajax/double_auth.ajax.php:147 +#: ../../include/ajax/double_auth.ajax.php:285 +msgid "QR" +msgstr "QR" + +#: ../../include/ajax/double_auth.ajax.php:183 +msgid "You are about to activate the double authentication" +msgstr "You are about to enable the double authentication mechanism." + +#: ../../include/ajax/double_auth.ajax.php:185 +msgid "" +"With this option enabled, your account access will be more secure, \n" +"\t\tcause a code generated by other application will be required after the " +"login" +msgstr "" +"With this option enabled your account access will be more secure, \n" +"\t\t because a code generated by another application will be required after " +"login." + +#: ../../include/ajax/double_auth.ajax.php:190 +msgid "" +"You will need to install the app from the following link before continue" +msgstr "" +"You will need to install the app from the following link before continuing." + +#: ../../include/ajax/double_auth.ajax.php:195 +msgid "Download the app" +msgstr "Download the app" + +#: ../../include/ajax/double_auth.ajax.php:199 +#: ../../include/ajax/double_auth.ajax.php:290 +#: ../../include/functions_update_manager.php:213 +msgid "Continue" +msgstr "Continue" + +#: ../../include/ajax/double_auth.ajax.php:215 +msgid "Are you installed the app yet?" +msgstr "Have you installed the app yet?" + +#: ../../include/ajax/double_auth.ajax.php:243 +#: ../../include/ajax/double_auth.ajax.php:340 +#: ../../include/ajax/double_auth.ajax.php:385 +#: ../../include/ajax/double_auth.ajax.php:499 +#: ../../operation/users/user_edit.php:972 +#: ../../operation/users/user_edit.php:1038 +#: ../../operation/users/user_edit.php:1109 ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "Authentication error" + +#: ../../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 +#: ../../operation/users/user_edit.php:979 +#: ../../operation/users/user_edit.php:1045 +msgid "There was an error loading the data" +msgstr "Error sending the data" + +#: ../../include/ajax/double_auth.ajax.php:273 +msgid "A private code has been generated" +msgstr "A private code has been generated" + +#: ../../include/ajax/double_auth.ajax.php:278 +msgid "" +"Before continue, you should create a new entry into the authenticator app" +msgstr "" +"Before continuing, you should create a new entry in the authentication app." + +#: ../../include/ajax/double_auth.ajax.php:288 +msgid "Refresh code" +msgstr "Refresh code" + +#: ../../include/ajax/double_auth.ajax.php:356 +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:418 +msgid "Introduce a code generated by the app" +msgstr "Introduce a code generated by the app" + +#: ../../include/ajax/double_auth.ajax.php:419 +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:428 +msgid "Validate code" +msgstr "Validate code" + +#: ../../include/ajax/double_auth.ajax.php:479 +msgid "The code is valid, you can exit now" +msgstr "The code is valid. You may exit now." + +#: ../../include/ajax/double_auth.ajax.php:495 +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/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:835 +#: ../../operation/agentes/alerts_status.php:517 +#: ../../operation/agentes/alerts_status.php:553 +#: ../../operation/agentes/alerts_status.php:587 +#: ../../operation/agentes/alerts_status.php:620 +msgid "Force execution" +msgstr "Force execution" + +#: ../../include/ajax/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:835 +#: ../../operation/agentes/alerts_status.php:517 +#: ../../operation/agentes/alerts_status.php:553 +#: ../../operation/agentes/alerts_status.php:587 +#: ../../operation/agentes/alerts_status.php:620 +msgid "F." +msgstr "F." + +#: ../../include/ajax/alert_list.ajax.php:327 +#: ../../operation/agentes/alerts_status.php:706 +msgid "No alerts found" +msgstr "No alerts found" + +#: ../../include/ajax/snmp_browser.ajax.php:95 +#: ../../include/ajax/snmp_browser.ajax.php:106 +msgid "SNMP modules" +msgstr "" + +#: ../../include/ajax/snmp_browser.ajax.php:99 +msgid "Error creating the following modules:" +msgstr "Error creating the following modules:" + +#: ../../include/ajax/snmp_browser.ajax.php:110 +msgid "Modules successfully created" +msgstr "Modules successfully created" + +#: ../../include/ajax/snmp_browser.ajax.php:223 +msgid "Failed to create policy" +msgstr "" + +#: ../../include/ajax/snmp_browser.ajax.php:224 +msgid "Policy created succesfully" +msgstr "" + +#: ../../include/ajax/module.php:172 +msgid "3 months" +msgstr "3 months" + +#: ../../include/ajax/module.php:175 +msgid "2 years" +msgstr "2 years" + +#: ../../include/ajax/module.php:176 +msgid "3 years" +msgstr "3 years" + +#: ../../include/ajax/module.php:188 +#: ../../operation/agentes/datos_agente.php:194 +msgid "Choose a time from now" +msgstr "Choose a time from now" + +#: ../../include/ajax/module.php:204 +#: ../../operation/agentes/datos_agente.php:197 +msgid "Specify time range" +msgstr "Specify time range" + +#: ../../include/ajax/module.php:250 +msgid "Exact phrase" +msgstr "Exact phrase" + +#: ../../include/ajax/module.php:1128 +msgid "Any monitors aren't with this filter." +msgstr "No monitors have this filter" + +#: ../../include/ajax/module.php:1130 +msgid "This agent doesn't have any active monitors." +msgstr "This agent does not have any active monitors." + +#: ../../include/ajax/custom_fields.php:404 +msgid "Current interval" +msgstr "" + +#: ../../include/ajax/custom_fields.php:450 +#: ../../include/ajax/custom_fields.php:503 +msgid "Modules normal" +msgstr "" + +#: ../../include/ajax/custom_fields.php:461 +msgid "Modules critical" +msgstr "" + +#: ../../include/ajax/custom_fields.php:472 +msgid "Modules warning" +msgstr "" + +#: ../../include/ajax/custom_fields.php:482 +msgid "Modules unknown" +msgstr "" + +#: ../../include/ajax/custom_fields.php:493 +msgid "Modules no init" +msgstr "" + +#: ../../include/ajax/custom_fields.php:535 +msgid "New Filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:542 +msgid "Existing Filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:690 +msgid "Delete filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:740 +msgid "Filter name already exists in the bbdd" +msgstr "" + +#: ../../include/ajax/custom_fields.php:752 +msgid "Please, select a custom field" +msgstr "" + +#: ../../include/ajax/custom_fields.php:780 +msgid "Success create filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:787 +msgid "Error create filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:812 +#: ../../include/ajax/custom_fields.php:885 +msgid "please, select a filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:828 +msgid "please, select a custom field" +msgstr "" + +#: ../../include/ajax/custom_fields.php:854 +msgid "Success update filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:861 +msgid "Error update filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:904 +msgid "Success delete filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:911 +msgid "Error delete filter." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:119 +msgid "Invalid extension. The package must have the extension .oum." +msgstr "Invalid extension. The package needs to be in '.oum' format." + +#: ../../include/ajax/update_manager.ajax.php:126 +msgid "The file was not uploaded succesfully." +msgstr "Error uploading the file" + +#: ../../include/ajax/update_manager.ajax.php:280 +msgid "Package rejected." +msgstr "Package rejected" + +#: ../../include/ajax/update_manager.ajax.php:596 +msgid "The package is extracted." +msgstr "The package has been extracted." + +#: ../../include/ajax/update_manager.ajax.php:599 +msgid "Error in package extraction." +msgstr "Error in package extraction" + +#: ../../include/ajax/update_manager.ajax.php:620 +msgid "An error ocurred in the installation process." +msgstr "An error ocurred in the installation process." + +#: ../../include/ajax/update_manager.ajax.php:749 +msgid "Delete files" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:750 +msgid "The oum has no files to remove" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:752 +msgid "Not deleted" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:753 +msgid "The file delete_file.txt can not be read" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:754 +msgid "'deleted' folder could not be created" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:755 +msgid "'deleted' folder was created" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:757 +msgid "The \"delete files\" could not be the \"delete\" folder" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:760 +msgid "The \"delete files\" is moved to the \"delete\" folder" +msgstr "" + +#: ../../include/ajax/events.php:93 +msgid "Failed to retrieve comments" +msgstr "" + +#: ../../include/ajax/events.php:541 ../../operation/events/events_list.php:406 +msgid "New filter" +msgstr "New filter" + +#: ../../include/ajax/events.php:559 ../../operation/events/events_list.php:424 +msgid "Save in Group" +msgstr "Save in group" + +#: ../../include/ajax/events.php:595 ../../operation/events/events_list.php:453 +msgid "Overwrite filter" +msgstr "Overwrite filter" + +#: ../../include/ajax/events.php:666 +#: ../../operation/events/events_list.php:1518 +msgid "Filter name cannot be left blank" +msgstr "The name of the filter cannot be left blank." + +#: ../../include/ajax/events.php:1004 +msgid "Error executing response" +msgstr "" + +#: ../../include/ajax/events.php:1231 +msgid "Related" +msgstr "" + +#: ../../include/ajax/events.php:1235 +msgid "Agent fields" +msgstr "Agent fields" + +#: ../../include/ajax/events.php:1257 +msgid "Custom data" +msgstr "Custom data" + +#: ../../include/ajax/events.php:1343 +msgid "Error adding comment" +msgstr "Error adding comment" + +#: ../../include/ajax/events.php:1344 +msgid "Comment added successfully" +msgstr "Comment added successfully" + +#: ../../include/ajax/events.php:1345 +msgid "Error changing event status" +msgstr "Error changing event status" + +#: ../../include/ajax/events.php:1346 +msgid "Event status changed successfully" +msgstr "Event status changed successfully" + +#: ../../include/ajax/events.php:1347 +msgid "Error changing event owner" +msgstr "Error changing event owner" + +#: ../../include/ajax/events.php:1348 +msgid "Event owner changed successfully" +msgstr "Event owner changed successfully" + +#: ../../include/ajax/events.php:1554 +msgid "Show all Events 24h" +msgstr "Show all Events 24h" + +#: ../../include/ajax/events.php:1687 +msgid "These commands will apply to all selected events" +msgstr "" + +#: ../../include/ajax/events.php:1788 +msgid "Alert fired in module " +msgstr "Alert triggered in module " + +#: ../../include/ajax/events.php:1803 +msgid " is going to critical" +msgstr " is changing to critical status" + +#: ../../include/ajax/events.php:1817 +msgid " is going to warning" +msgstr " is changing to warning status" + +#: ../../include/ajax/events.php:1831 +msgid " is going to unknown" +msgstr " is changing to unknown status" + +#: ../../include/ajax/rolling_release.ajax.php:55 +msgid "The sql file contains a dangerous query" +msgstr "The SQL file contains a dangerous query." + +#: ../../include/ajax/rolling_release.ajax.php:98 +msgid "" +"An error occurred while updating the database schema to the minor release " +msgstr "" +"An error occurred while updating the database schema to the minor release " + +#: ../../include/ajax/rolling_release.ajax.php:111 +#: ../../include/ajax/rolling_release.ajax.php:123 +msgid "The directory " +msgstr "The directory " + +#: ../../include/ajax/rolling_release.ajax.php:111 +msgid " should have read permissions in order to update the database schema" +msgstr "" +" should have read permissions in order to update the database schema." + +#: ../../include/ajax/rolling_release.ajax.php:123 +msgid " does not exist" +msgstr " does not exist" + +#: ../../include/ajax/graph.ajax.php:155 +msgid "Time container lapse" +msgstr "Time container lapse" + +#: ../../include/functions_agents.php:928 +msgid "" +"There was an error copying the agent configuration, the copy has been " +"cancelled" +msgstr "" +"There was an error copying the agent configuration, the copy has been " +"cancelled." + +#: ../../include/functions_agents.php:2633 +#: ../../include/functions_agents.php:2672 +#: ../../include/functions_agents.php:2743 +msgid "No Monitors" +msgstr "No monitors" + +#: ../../include/functions_agents.php:2641 +#: ../../include/functions_agents.php:2696 +#: ../../include/functions_agents.php:2751 +#: ../../include/functions_reporting.php:10004 +msgid "At least one module in CRITICAL status" +msgstr "At least one module is in CRITICAL status." + +#: ../../include/functions_agents.php:2647 +#: ../../include/functions_agents.php:2706 +#: ../../include/functions_agents.php:2759 +#: ../../include/functions_reporting.php:10011 +msgid "At least one module in WARNING status" +msgstr "At least one module is in WARNING status." + +#: ../../include/functions_agents.php:2653 +#: ../../include/functions_agents.php:2716 +#: ../../include/functions_agents.php:2767 +#: ../../include/functions_reporting.php:10018 +msgid "At least one module is in UKNOWN status" +msgstr "At least one module is in UNKNOWN status." + +#: ../../include/functions_agents.php:2659 +#: ../../include/functions_agents.php:2726 +#: ../../include/functions_agents.php:2775 +#: ../../include/functions_reporting.php:10025 +msgid "All Monitors OK" +msgstr "All monitors are OK" + +#: ../../include/functions_agents.php:2684 +msgid "Alert fired on agent" +msgstr "" + +#: ../../include/functions_agents.php:3631 +msgid "Average time of SAPGUI response " +msgstr "" + +#: ../../include/functions_agents.php:3633 +msgid "Dialog Logged users " +msgstr "" + +#: ../../include/functions_integriaims.php:41 +msgid "Configure Integria IMS" +msgstr "" + +#: ../../include/functions_integriaims.php:42 +msgid "Ticket list" +msgstr "" + +#: ../../include/functions_integriaims.php:43 +msgid "New ticket" +msgstr "" + +#: ../../include/functions_integriaims.php:72 +msgid "Edit ticket" +msgstr "" + +#: ../../include/functions_integriaims.php:73 +msgid "View ticket" +msgstr "" + +#: ../../include/functions_integriaims.php:209 +msgid "" +"API request failed. Please check Integria IMS' access credentials in Pandora " +"setup." +msgstr "" + +#: ../../include/functions_modules.php:3465 +msgid "Realtime SNMP graph" +msgstr "" + +#: ../../include/functions_modules.php:3528 +msgid "ALL" +msgstr "" + +#: ../../include/functions_modules.php:3536 +#: ../../include/class/Tree.class.php:601 +#: ../../operation/agentes/status_monitor.php:1444 +#: ../../operation/agentes/status_monitor.php:1450 +msgid "NO DATA" +msgstr "NO DATA" + +#: ../../include/functions_modules.php:3544 +msgid "NOT NORMAL" +msgstr "" + +#: ../../include/auth/mysql.php:276 ../../include/auth/mysql.php:313 +msgid "" +"Problems with configuration permissions. Please contact with Administrator" +msgstr "" +"Problems with configuration permissions. Please contact with the " +"administrator." + +#: ../../include/auth/mysql.php:280 ../../include/auth/mysql.php:291 +#: ../../include/auth/mysql.php:317 +msgid "Your permissions have changed. Please, login again." +msgstr "Your permissions have changed. Please, log in again." + +#: ../../include/auth/mysql.php:300 ../../include/auth/mysql.php:403 +#: ../../include/auth/mysql.php:423 +msgid "User not found in database or incorrect password" +msgstr "User not found in database or incorrect password" + +#: ../../include/auth/mysql.php:331 +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:349 ../../include/auth/mysql.php:390 +#: ../../include/auth/mysql.php:442 +msgid "Fail the group synchronizing" +msgstr "Error synchronizing the group" + +#: ../../include/auth/mysql.php:355 ../../include/auth/mysql.php:396 +#: ../../include/auth/mysql.php:448 +msgid "Fail the tag synchronizing" +msgstr "Error synchronizing tag" + +#: ../../include/auth/mysql.php:376 +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:753 +msgid "Could not changes password on remote pandora" +msgstr "Could not change password for remote Pandora FMS" + +#: ../../include/auth/mysql.php:801 +msgid "Your installation of PHP does not support LDAP" +msgstr "Your PHP environment does not support LDAP" + +#: ../../include/api.php:206 +msgid "User or group not specified" +msgstr "" + +#: ../../include/api.php:207 +msgid "User, group not specified" +msgstr "" + +#: ../../include/api.php:238 +msgid "User, group or profile not specified" +msgstr "" + +#: ../../include/api.php:239 +msgid "User, group or profile status not specified" +msgstr "" + +#: ../../include/functions_graph.php:1020 +msgid "No data to display within the selected interval" +msgstr "" + +#: ../../include/functions_graph.php:2467 +msgid "Not fired alerts" +msgstr "Non-triggered alerts" + +#: ../../include/functions_graph.php:2486 +#: ../../include/functions_graph.php:2604 +#: ../../include/functions_graph.php:2702 +#: ../../include/functions_graph.php:3276 +#: ../../include/functions_graph.php:3806 +#: ../../include/functions_reporting.php:1669 +#: ../../include/functions_reporting.php:1883 +#: ../../include/functions_reporting.php:1908 +#: ../../include/functions_reporting.php:1935 +#: ../../include/functions_reporting.php:1962 +#: ../../include/functions_reporting.php:2809 +#: ../../include/functions_reporting.php:3060 +#: ../../include/functions_reporting.php:3087 +#: ../../include/functions_reporting.php:3114 +#: ../../include/functions_reporting.php:8248 +#: ../../include/functions_reporting.php:8275 +#: ../../include/functions_reporting.php:8302 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:493 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:449 +msgid "other" +msgstr "other" + +#: ../../include/functions_graph.php:2878 +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:55 +msgid "Informative" +msgstr "Informative" + +#: ../../include/functions_graph.php:2879 +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:59 +#: ../../include/functions_netflow.php:1588 +msgid "Low" +msgstr "Low" + +#: ../../include/functions_graph.php:2880 +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:63 +#: ../../include/functions_netflow.php:1589 +msgid "Medium" +msgstr "Medium" + +#: ../../include/functions_graph.php:2881 +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:67 +msgid "Serious" +msgstr "Serious" + +#: ../../include/functions_graph.php:2882 +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:71 +msgid "Very serious" +msgstr "Very serious" + +#: ../../include/functions_graph.php:2921 +#: ../../include/functions_graph.php:2944 +msgid "Open incident" +msgstr "Open issue" + +#: ../../include/functions_graph.php:2922 +#: ../../include/functions_graph.php:2948 +msgid "Closed incident" +msgstr "Closed issue" + +#: ../../include/functions_graph.php:2923 +#: ../../include/functions_graph.php:2952 +msgid "Outdated" +msgstr "Outdated" + +#: ../../include/functions_graph.php:3258 +#: ../../include/functions_events.php:2419 +#: ../../include/functions_events.php:3155 +#: ../../include/functions_events.php:3435 +#: ../../include/functions_events.php:3444 +#: ../../include/functions_events.php:3451 +#: ../../include/functions_events.php:3458 +#: ../../include/functions_events.php:5548 +#: ../../include/functions_events.php:5556 +#: ../../operation/snmpconsole/snmp_view.php:564 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1153 +msgid "Validated" +msgstr "Validated" + +#: ../../include/functions_graph.php:3387 ../../include/functions_ui.php:3597 +#: ../../include/functions_events.php:98 +#: ../../include/functions_events.php:2686 +#: ../../operation/events/events.php:1799 +msgid "SYSTEM" +msgstr "SYSTEM" + +#: ../../include/functions_graph.php:5350 +msgid "Main node" +msgstr "Main node" + +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 +#: ../../include/functions_gis.php:36 +msgid "Hierarchy of agents" +msgstr "Agent hierarchy" + +#: ../../include/functions_treeview.php:52 +msgid "There was a problem loading module" +msgstr "Error loading the module" + +#: ../../include/functions_treeview.php:346 +msgid "Go to module edition" +msgstr "Go to module edition" + +#: ../../include/functions_treeview.php:397 +msgid "There was a problem loading alerts" +msgstr "Error loading the alerts" + +#: ../../include/functions_treeview.php:482 +msgid "Go to alerts edition" +msgstr "Go to alerts edition" + +#: ../../include/functions_treeview.php:554 +#: ../../operation/agentes/agent_fields.php:24 +#: ../../operation/agentes/custom_fields.php:24 +#: ../../operation/agentes/estado_generalagente.php:63 +msgid "There was a problem loading agent" +msgstr "Error loading agent" + +#: ../../include/functions_treeview.php:615 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Other IP addresses" +msgstr "Other IP addresses" + +#: ../../include/functions_treeview.php:653 +msgid "Next agent contact" +msgstr "Next agent contact" + +#: ../../include/functions_treeview.php:680 +msgid "Edit cluster" +msgstr "" + +#: ../../include/functions_treeview.php:684 +msgid "Go to agent edition" +msgstr "Go to agent edition" + +#: ../../include/functions_treeview.php:696 +msgid "Agent data" +msgstr "Agent data" + +#: ../../include/functions_treeview.php:727 +#: ../../operation/agentes/estado_generalagente.php:407 +msgid "Position (Long, Lat)" +msgstr "Position (Long, Lat)" + +#: ../../include/functions_treeview.php:744 +#: ../../operation/agentes/estado_generalagente.php:449 +msgid "Timezone Offset" +msgstr "Timezone Offset" + +#: ../../include/functions_treeview.php:776 +msgid "Advanced information" +msgstr "Advanced information" + +#: ../../include/functions_treeview.php:789 +msgid "Agent access rate (24h)" +msgstr "Agent access rate (24h)" + +#: ../../include/functions_treeview.php:872 +msgid "Interface information" +msgstr "Interface information" + +#: ../../include/functions_menu.php:493 +msgid "Configure user" +msgstr "Configure user" + +#: ../../include/functions_menu.php:494 +msgid "Configure profile" +msgstr "Configure profile" + +#: ../../include/functions_menu.php:496 +msgid "Manage recontask" +msgstr "Manage recon task" + +#: ../../include/functions_menu.php:498 +msgid "Module templates management" +msgstr "Module templates management" + +#: ../../include/functions_menu.php:499 +msgid "Inventory modules management" +msgstr "Inventory modules management" + +#: ../../include/functions_menu.php:504 +msgid "View agent" +msgstr "View agent" + +#: ../../include/functions_menu.php:508 +msgid "Manage network map" +msgstr "Manage network map" + +#: ../../include/functions_menu.php:510 +msgid "Builder visual console" +msgstr "Visual console editor" + +#: ../../include/functions_menu.php:512 +msgid "Administration events" +msgstr "Administration events" + +#: ../../include/functions_menu.php:514 +msgid "View reporting" +msgstr "View reporting" + +#: ../../include/functions_menu.php:515 +msgid "Graph viewer" +msgstr "Graph viewer" + +#: ../../include/functions_menu.php:517 +msgid "Manage custom graphs" +msgstr "Manage custom graphs" + +#: ../../include/functions_menu.php:518 +msgid "View graph containers" +msgstr "View graph containers" + +#: ../../include/functions_menu.php:519 +msgid "Manage graph containers" +msgstr "Manage graph containers" + +#: ../../include/functions_menu.php:520 +msgid "View graph templates" +msgstr "View graph templates" + +#: ../../include/functions_menu.php:521 +msgid "Manage graph templates" +msgstr "Manage graph templates" + +#: ../../include/functions_menu.php:522 +msgid "Graph template items" +msgstr "Graph template items" + +#: ../../include/functions_menu.php:523 +msgid "Graph template wizard" +msgstr "Graph template wizard" + +#: ../../include/functions_menu.php:526 +msgid "Manage GIS Maps" +msgstr "Manage GIS Maps" + +#: ../../include/functions_menu.php:529 +msgid "Incidents statistics" +msgstr "Issue statistics" + +#: ../../include/functions_menu.php:530 +msgid "Manage messages" +msgstr "Manage messages" + +#: ../../include/functions_menu.php:532 +msgid "Manage groups" +msgstr "Manage groups" + +#: ../../include/functions_menu.php:533 +msgid "Manage module groups" +msgstr "Manage module groups" + +#: ../../include/functions_menu.php:534 +msgid "Manage custom field" +msgstr "Manage custom fields" + +#: ../../include/functions_menu.php:536 +msgid "Manage alert actions" +msgstr "Manage alert actions" + +#: ../../include/functions_menu.php:537 +msgid "Manage commands" +msgstr "Manage commands" + +#: ../../include/functions_menu.php:538 +msgid "Manage event alerts" +msgstr "Manage event alerts" + +#: ../../include/functions_menu.php:540 +msgid "Manage export targets" +msgstr "Manage export targets" + +#: ../../include/functions_menu.php:542 +msgid "Manage services" +msgstr "Manage services" + +#: ../../include/functions_menu.php:544 ../../operation/menu.php:147 +msgid "SNMP filters" +msgstr "SNMP filters" + +#: ../../include/functions_menu.php:546 ../../operation/menu.php:148 +msgid "SNMP trap generator" +msgstr "SNMP trap generator" + +#: ../../include/functions_menu.php:547 ../../operation/menu.php:137 +msgid "SNMP console" +msgstr "SNMP console" + +#: ../../include/functions_menu.php:549 +msgid "Manage incident" +msgstr "Manage issues" + +#: ../../include/functions_menu.php:602 +msgid "Administration" +msgstr "Administration" + +#: ../../include/functions_incidents.php:95 +#: ../../include/functions_incidents.php:116 +msgid "Active incidents" +msgstr "Active issues" + +#: ../../include/functions_incidents.php:96 +#: ../../include/functions_incidents.php:120 +msgid "Active incidents, with comments" +msgstr "Active issues, with comments" + +#: ../../include/functions_incidents.php:97 +#: ../../include/functions_incidents.php:124 +msgid "Rejected incidents" +msgstr "Rejected issues" + +#: ../../include/functions_incidents.php:98 +#: ../../include/functions_incidents.php:128 +msgid "Expired incidents" +msgstr "Expired issues" + +#: ../../include/functions_incidents.php:99 +#: ../../include/functions_incidents.php:132 +msgid "Closed incidents" +msgstr "Closed issues" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "Topology Group" +msgstr "Topology group" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "" +"Please note that group topology maps do not show the parent relationship " +"between nodes, it only shows the group parentship and the agent distribution " +"inside them. " +msgstr "" +"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/homepage.php:75 +msgid "Hi, can I help you?" +msgstr "Hi! How can I help you?" + +#: ../../include/help/clippy/homepage.php:75 +#, php-format +msgid "" +"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You " +"can follow my steps to do basic tasks in %s or you can close me and never " +"see me again." +msgstr "" + +#: ../../include/help/clippy/homepage.php:75 +msgid "Close this wizard and don't open it again." +msgstr "Close this wizard and never open it again." + +#: ../../include/help/clippy/homepage.php:79 +msgid "Which task would you like to do first?" +msgstr "Which task would you like to perform first?" + +#: ../../include/help/clippy/homepage.php:79 +#, php-format +msgid "Ping a Linux or Windows server using a %s agent." +msgstr "" + +#: ../../include/help/clippy/homepage.php:79 +msgid "Create a alert by email in a critical module." +msgstr "Create an e-mail alert for a module in critical status" + +#: ../../include/help/clippy/homepage.php:190 +#, php-format +msgid "" +"The first thing you have to do is to setup the e-mail config on the %s " +"Server." +msgstr "" + +#: ../../include/help/clippy/homepage.php:190 +msgid "If you have it already configured you can go to the next step." +msgstr "If you have already configured it, you can proceed to the next step." + +#: ../../include/help/clippy/homepage.php:195 +msgid "Now, pull down the Manage alerts menu and click on Actions. " +msgstr "Now, expand the 'Manage Alerts' menu, and click on 'Actions'. " + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "You have unknown modules in this agent." +msgstr "You have unknown modules in this agent." + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "" +"Unknown modules are modules which receive data normally at least in one " +"occassion, but at this time are not receving data. Please check our " +"troubleshoot help page to help you determine why you have unknown modules." +msgstr "" +"Unknown modules are those which have received data normally at least on one " +"occasion, but that are not receiving data right now. Please check our " +"troubleshooting page to help you determine why some of your modules are in " +"unknown status." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"Please note that you have your agent setup to do not add new modules coming " +"from the data XML." +msgstr "" +"Please note that if you have your agent set up you must not add new modules " +"coming from the data XML." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"That means if you have a local plugin or add manually new modules to the " +"configuration file, you won't have it in your agent, unless you first create " +"manually in the interface (with the exact name and type as coming in the XML " +"file)." +msgstr "" +"That means that if you have a local plugin or if you add new modules to the " +"configuration file manually, you will not have it in your agent, unless you " +"create it manually in the interface first (with the exact name and type as " +"coming in the XML file)." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"You should use the \"normal\" mode (non learn) only when you don't intend to " +"add more modules to the agent." +msgstr "" +"You should use 'normal' mode (not 'learning' mode) only when you do not " +"intend to add more modules to the agent." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 +msgid "" +"The last step is to check the alert created. Click on the round icon to " +"force the action execution and after a few minutes you will receive the " +"alert in your email." +msgstr "" +"The last step is to check the created alert. 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:35 +msgid "" +"And restart your pandora server to read again general configuration tokens." +msgstr "" +"Then, restart your Pandora FMS Server to reread the general configuration " +"tokens." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 +msgid "" +"Let me show you how to create an email action: Click on Create button and " +"fill the form showed in the following screen." +msgstr "" +"Let me show you how to set up e-mail actions: click on the 'Create' button, " +"and fill out the form shown in the following screen." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 +msgid "" +"Now, you have to go to the monitors list and look for a critical module to " +"apply the alert." +msgstr "" +"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:54 +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/agent_out_of_limits.php:35 +msgid "Agent contact date passed it's ETA!." +msgstr "Agent contact date passed its ETA!" + +#: ../../include/help/clippy/agent_out_of_limits.php:35 +msgid "" +"This happen when your agent stopped reporting or the server have any problem " +"(too load or just down). Check also connectivity between the agent and the " +"server." +msgstr "" +"This occurs when your agent has stopped reporting, or the server has any " +"issues (overloaded or down). You should also check the connectivity between " +"agent and server." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 +msgid "I'm going to show you how to monitor a server." +msgstr "I will show you how to monitor a server." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 +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:43 +msgid "If you have typed the name correctly you will see the agent." +msgstr "If the name is entered correctly, the agent will be displayed." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 +msgid "Now, please choose the agent you searched." +msgstr "Now, select the agent you searched for." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 +msgid "Choose the agent and click on the name." +msgstr "Select the agent and click on its name." + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "You have non initialized modules" +msgstr "You have non initialized modules" + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "" +"This happen when you have just created a module and it's not executed at " +"first time. Usually in a few seconds should be initialized and you will be " +"able to see in main view. If you keep non-init modules for more than 24hr " +"(due a problem in it's execution or configuration) they will be " +"automatically deleted by the system. Non-init are not visible in the “main " +"view”, you can see/edit them in the module administration section, in the " +"agent administrator." +msgstr "" +"This happens when you have just created a module and it was not executed for " +"the first time. Usually after a few seconds the status should change to " +"'initialized' and you will be able to see it on the main view." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 +msgid "Fill the name of your action." +msgstr "Provide the name for your action." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 +msgid "" +"Select the group in the drop-down list and filter for ACL (the user in this " +"group can use your action to create an alert)." +msgstr "" +"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:42 +msgid "In the command field select \"email\"." +msgstr "In the 'Command' field, select 'e-mail'." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 +msgid "" +"In the threshold field enter the seconds. The help icon show more " +"information." +msgstr "" +"In the 'Threshold' field, enter the time (seconds). The help icon displays " +"more details." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 +msgid "" +"In the first field enter the email address/addresses where you want to " +"receive the email alerts separated with comas ( , ) or white spaces." +msgstr "" +"In the first field, enter the e-mail 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:56 +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:61 +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:66 +msgid "Click on Create button to create the action." +msgstr "Click on the 'Create' button to create the action." + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "Data Configuration Module." +msgstr "Data configuration module" + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Please note that information provided here affects how the agent collect " +"information and generate the data XML. Any data/configuration reported by " +"the agent, different from data or description is discarded, and the " +"configuration shown in the console prevails over any configuration coming " +"from the agent, this applies for example for crit/warn thresholds, interval, " +"module group, min/max value, tags, etc." +msgstr "" +"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 to critical/warning thresholds, " +"interval, module group, min/max value, tags, etc." + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Information imported FIRST time from the XML will fill the information you " +"can see in the console, but after the first import, system will ignore any " +"update coming from the XML/Agent." +msgstr "" +"The information imported the FIRST time from 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_configurar_agente.php:34 +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 will lead you." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 +msgid "Click in this tab.." +msgstr "Click on this tab" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 +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 will teach you." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 +msgid "Choose the network server module." +msgstr "Choose the network server module" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 +msgid "And click the button." +msgstr "And click on the button" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 +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 will teach you" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 +msgid "Now we are going to fill the form." +msgstr "Now, we will proceed to fill out the form." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 +msgid "Please choose Network Management." +msgstr "Please select Network Management" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 +msgid "Choose the component named \"Host alive\"." +msgstr "Choose the component named 'Host alive'" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 +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:95 +msgid "Check if the IP showed is the IP of your machine." +msgstr "Check if the IP shown is the same as the IP of your device" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 +msgid "And only to finish it is clicking this button." +msgstr "To finish, simply click on this button" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 +msgid "" +"Congrats! Your module has been created.
and the status color is " +"blue.
That color means that the module hasn't been executed for " +"the first time. In the next seconds, if there is no problem, the status " +"color will turn into red or green." +msgstr "" +"Congratulations! Your module has been created.
Its status colour 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:129 +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:143 +msgid "Select the critical module." +msgstr "Select the critical module" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "On the template select 'Critical Condition'" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "Now, select the previously created action." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +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:171 +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 have just created go to the main view by clicking on " +"the eye tab." + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "Too many modules queued" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your " +"server is too loaded and/or not properly configured. This could be something " +"temporal, or a bottleneck. One possible solution is increase number of " +"server threads, but you should consider getting support about this." +msgstr "" +"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 version users)." + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "All servers down" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next " +"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " +"introduce root pass." +msgstr "" +"You must boot up all servers. Go to the Linux terminal and execute the " +"following command: 'sudo /etc/init.d/pandora_server restart'. You will have " +"to provide root user credentials." + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "Interval agent" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds " +"is not recommended. This will impact seriously in the performance of the " +"server. For example, having 200 agents with one minute interval, is the same " +"than having 1000 agents with a 5 minute interval. The probability of getting " +"unknown modules is higher, and the impact on the server is higher because it " +"requires a shorter response time." +msgstr "" +"Please note that having agents with a monitoring interval below 300 seconds " +"is not recommended. This will seriously impact the performance of the " +"server. For example, having 200 agents with a one minute interval, is the " +"same as 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/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module " +"to apply the alert." +msgstr "" +"Now, go to the monitor list and look for a 'critical' module to which you " +"can apply the alert." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical " +"status, type it in this field to make the module list shorter. You can write " +"the entire name or just a part of it." +msgstr "" +"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:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "Click on the button Show to obtain a filtered list of modules." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"In order to edit the module, click on the wrench icon displayed in the " +"'Type' column." + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "" +"The configuration of email for the task email is in the enterprise setup:" +msgstr "" +"The e-mail configuration for the task e-mail is in the Enterprise setup:" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "Please check if the email configuration is correct." +msgstr "Please check if the e-mail configuration is correct." + +#: ../../include/functions_profile.php:188 +#: ../../operation/users/user_edit.php:722 +#: ../../operation/users/user_edit.php:731 +msgid "Profiles/Groups assigned to this user" +msgstr "Profiles/Groups assigned to this user" + +#: ../../include/functions_network.php:98 +msgid "Top listeners" +msgstr "" + +#: ../../include/functions_network.php:99 +msgid "Top talkers" +msgstr "" + +#: ../../include/functions_network.php:109 +msgid "Top TCP protocols" +msgstr "" + +#: ../../include/functions_network.php:110 +msgid "Top UDP protocols" +msgstr "" + +#: ../../include/functions_ui.php:280 +msgid "Information" +msgstr "Information" + +#: ../../include/functions_ui.php:454 +msgid "Request successfully processed" +msgstr "Request successfully processed" + +#: ../../include/functions_ui.php:458 +msgid "Error processing request" +msgstr "Error processing request" + +#: ../../include/functions_ui.php:615 +msgid "" +"Is possible that this view uses part of information which your user has not " +"access" +msgstr "" +"It is possible that this view uses a part of the information to which your " +"user does not have access." + +#: ../../include/functions_ui.php:857 +msgid "Software" +msgstr "Software" + +#: ../../include/functions_ui.php:1331 +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:1336 +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:1351 +msgid "Unknown option." +msgstr "" + +#: ../../include/functions_ui.php:1699 ../../include/functions_config.php:2115 +msgid "the Flexible Monitoring System" +msgstr "the Flexible Monitoring System" + +#: ../../include/functions_ui.php:2074 ../../include/functions_ui.php:2100 +#, php-format +msgid "Total items: %s" +msgstr "Total items: %s" + +#: ../../include/functions_ui.php:2499 +msgid "Unknown type" +msgstr "Unknown type" + +#: ../../include/functions_ui.php:3431 ../../include/functions_ui.php:3432 +msgid "Export current page to CSV" +msgstr "" + +#: ../../include/functions_ui.php:3588 ../../include/functions_events.php:65 +#: ../../include/functions_events.php:91 ../../operation/events/events.php:1790 +#: ../../operation/events/events.php:1855 +msgid "ALERT" +msgstr "" + +#: ../../include/functions_ui.php:3666 ../../include/functions_events.php:157 +#: ../../operation/events/events.php:1724 +msgid "MAINTENANCE" +msgstr "" + +#: ../../include/functions_ui.php:3671 ../../include/functions_events.php:160 +#: ../../operation/events/events.php:1729 +msgid "INFORMATIONAL" +msgstr "" + +#: ../../include/functions_ui.php:3691 ../../include/functions_events.php:166 +#: ../../operation/events/events.php:1739 +msgid "MINOR" +msgstr "" + +#: ../../include/functions_ui.php:3696 ../../include/functions_events.php:163 +#: ../../operation/events/events.php:1734 +msgid "MAJOR" +msgstr "" + +#: ../../include/functions_ui.php:4560 +msgid "Type at least two characters to search." +msgstr "Type at least two characters to search." + +#: ../../include/functions_ui.php:5480 +msgid "Unhandled error" +msgstr "" + +#: ../../include/functions_ui.php:5481 +msgid "An unhandled error occurs" +msgstr "" + +#: ../../include/functions_ui.php:5747 +#, php-format +msgid "" +"These controls are using the timezone of the system (%s) instead of yours " +"(%s). The difference with your time zone in hours is %s." +msgstr "" + +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:226 +msgid "Last value: " +msgstr "Last value: " + +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "Agent successfully added to the layout." + +#: ../../include/functions_visual_map.php:2816 +msgid "Modules successfully added to layout" +msgstr "Modules successfully added to the layout." + +#: ../../include/functions_visual_map.php:3147 +msgid "Agents successfully added to layout" +msgstr "Agents successfully added to the layout" + +#: ../../include/functions_visual_map.php:3552 +msgid "Cannot load the visualmap" +msgstr "Cannot load the visual map" + +#: ../../include/functions_visual_map.php:4175 +#: ../../include/rest-api/models/VisualConsole/Item.php:1989 +msgid "Bars graph" +msgstr "Bars graph" + +#: ../../include/functions_visual_map.php:4185 +#: ../../include/rest-api/models/VisualConsole/Item.php:1997 +msgid "Percentile bar" +msgstr "Percentile bar" + +#: ../../include/functions_visual_map.php:4190 +#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +msgid "Circular progress bar" +msgstr "Circular progress bar" + +#: ../../include/functions_clippy.php:152 +#, php-format +msgid "%s assistant" +msgstr "" + +#: ../../include/functions_clippy.php:189 +#: ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "End wizard" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "Next →" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "← Back" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "Do you want to exit the help tour?" + +#: ../../include/functions_alerts.php:657 +msgid "Max and min" +msgstr "Max and min" + +#: ../../include/functions_alerts.php:660 +msgid "Equal to" +msgstr "Equal to" + +#: ../../include/functions_alerts.php:661 +msgid "Not equal to" +msgstr "Not equal to" + +#: ../../include/functions_alerts.php:665 +msgid "On Change" +msgstr "On change" + +#: ../../include/functions_alerts.php:667 +msgid "Not normal status" +msgstr "" + +#: ../../include/functions_alerts.php:1691 +msgid "No actions defined" +msgstr "No actions defined" + +#: ../../include/functions_alerts.php:2764 +msgid "Alert and command group does not match" +msgstr "" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "Load average (last minute)" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "Load average (last 5 minutes)" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "Load average (last 15 minutes)" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "Total swap size configured for the host" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "Available swap space on the host" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "Total real/physical memory size on the host" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "Available real/physical memory space on the host" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "Total available memory on the host" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "Total cached memory" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "Total buffered memory" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "Amount of memory swapped in from disk (kB/s)" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "Amount of memory swapped to disk (kB/s)" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "Number of blocks sent to a block device" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "Number of blocks received from a block device" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "Number of interruptions processed" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "Number of context switches" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "user CPU time" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "system CPU time" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "idle CPU time" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "system Up time" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "Pagination" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "Group by Enterprise String / IP" + +#: ../../include/functions_db.php:115 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "Error connecting to database %s at %s." + +#: ../../include/functions_db.php:1749 +msgid "Database debug" +msgstr "Database debug" + +#: ../../include/functions_db.php:1765 +msgid "SQL sentence" +msgstr "SQL sentence" + +#: ../../include/functions_db.php:1767 +msgid "Rows" +msgstr "Rows" + +#: ../../include/functions_db.php:1768 +msgid "Saved" +msgstr "Saved" + +#: ../../include/functions_db.php:1769 +msgid "Time (ms)" +msgstr "Time (ms)" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:437 +msgid "Add new range" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:494 +msgid "Current ranges" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1876 +msgid "width" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:1886 +msgid "height" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:1908 +msgid "X" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:493 +#: ../../include/rest-api/models/VisualConsole/Item.php:1945 +msgid "Show on top" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:347 +msgid "Show Last Value" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 +msgid "Avg Value" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:468 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 +msgid "Graph Type" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:229 +msgid "12h" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:656 +#: ../../include/lib/Dashboard/Widgets/service_map.php:254 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:285 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:295 +msgid "Show legend" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:64 +msgid "Label settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:69 +#: ../../include/rest-api/models/VisualConsole/View.php:98 +msgid "General settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:74 +#: ../../include/rest-api/models/VisualConsole/View.php:88 +#: ../../include/rest-api/models/VisualConsole/View.php:103 +msgid "Specific settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:206 +msgid "Item type not valid [" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:211 +msgid "Item type has no getFormInputs method [" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1846 +msgid "Label position" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1933 +msgid "Link enabled" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1975 +msgid "Static graph" +msgstr "Static graph" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1993 +msgid "Event History Graph" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2001 +msgid "Percentile bubble" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2454 +#: ../../include/rest-api/models/VisualConsole/Item.php:2455 +msgid "Image Vc" +msgstr "" + +#: ../../include/functions_notifications.php:722 +msgid "Notified users" +msgstr "" + +#: ../../include/functions_notifications.php:722 +msgid "Notified groups" +msgstr "" + +#: ../../include/functions_notifications.php:723 +msgid "Add users" +msgstr "" + +#: ../../include/functions_notifications.php:723 +msgid "Add groups" +msgstr "" + +#: ../../include/functions_notifications.php:724 +msgid "Delete users" +msgstr "" + +#: ../../include/functions_notifications.php:724 +msgid "Delete groups" +msgstr "" + +#: ../../include/functions_notifications.php:820 +msgid "Add elements" +msgstr "" + +#: ../../include/functions_notifications.php:832 +msgid "Remove elements" +msgstr "" + +#: ../../include/functions_notifications.php:949 +msgid "Click here to get more information" +msgstr "" + +#: ../../include/functions_reports.php:631 +#: ../../include/functions_reports.php:635 +#: ../../include/functions_reports.php:640 +#: ../../include/functions_reports.php:646 +#: ../../include/functions_reports.php:652 +#: ../../include/functions_reports.php:656 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:667 +#: ../../include/functions_reports.php:673 +#: ../../include/functions_reports.php:678 +#: ../../include/functions_groups.php:123 +#: ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:118 +#: ../../operation/agentes/ver_agente.php:1266 +msgid "Graphs" +msgstr "Graphs" + +#: ../../include/functions_reports.php:632 +#: ../../include/functions_reporting.php:7717 +#: ../../include/functions_reporting.php:7864 +msgid "Simple graph" +msgstr "Simple graph" + +#: ../../include/functions_reports.php:661 +msgid "SQL horizonal bar graph" +msgstr "SQL horizonal bar graph" + +#: ../../include/functions_reports.php:668 +msgid "Automatic combined Graph" +msgstr "Automatically combined graph" + +#: ../../include/functions_reports.php:674 +msgid "Availability graph" +msgstr "Availability graph" + +#: ../../include/functions_reports.php:679 +msgid "Module Histogram graph" +msgstr "Module histogram graph" + +#: ../../include/functions_reports.php:709 +#: ../../include/functions_reports.php:713 +msgid "Forecasting" +msgstr "Forecasting" + +#: ../../include/functions_reports.php:714 +msgid "Projection graph" +msgstr "Projection graph" + +#: ../../include/functions_reports.php:719 +msgid "Avg. Value" +msgstr "Avg. value" + +#: ../../include/functions_reports.php:731 +msgid "Monitor report" +msgstr "Monitor report" + +#: ../../include/functions_reports.php:735 +msgid "Serialize data" +msgstr "Serialise data" + +#: ../../include/functions_reports.php:743 +msgid "Historical Data" +msgstr "Historical data" + +#: ../../include/functions_reports.php:751 +#: ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:763 +#: ../../include/functions_reports.php:769 +#: ../../include/functions_reports.php:775 +#: ../../include/functions_reports.php:784 +#: ../../include/functions_reports.php:790 +#: ../../include/functions_reports.php:794 +#: ../../include/functions_reports.php:798 +msgid "Grouped" +msgstr "Grouped" + +#: ../../include/functions_reports.php:795 +msgid "Network interfaces" +msgstr "Network interfaces" + +#: ../../include/functions_reports.php:803 +#: ../../include/functions_reports.php:807 +msgid "Text/HTML " +msgstr "Text / HTML " + +#: ../../include/functions_reports.php:808 +msgid "Import text from URL" +msgstr "Import text from URL" + +#: ../../include/functions_reports.php:813 +msgid "Module alert report" +msgstr "" + +#: ../../include/functions_reports.php:817 +msgid "Agent alert report " +msgstr "" + +#: ../../include/functions_reports.php:822 +msgid "Group alert report" +msgstr "" + +#: ../../include/functions_reports.php:828 +msgid "Module event report" +msgstr "" + +#: ../../include/functions_reports.php:832 +msgid "Agent event report" +msgstr "" + +#: ../../include/functions_reports.php:836 +msgid "Group event report" +msgstr "" + +#: ../../include/functions_reports.php:847 +msgid "Inventory changes" +msgstr "Inventory changes" + +#: ../../include/functions_reports.php:855 +#: ../../include/functions_reporting.php:4703 +msgid "Agent configuration" +msgstr "Agent configuration" + +#: ../../include/functions_reports.php:859 +#: ../../include/functions_reporting.php:3440 +msgid "Group configuration" +msgstr "Group settings" + +#: ../../include/functions_reports.php:863 +msgid "Netflow area chart" +msgstr "Netflow area chart" + +#: ../../include/functions_reports.php:867 +msgid "Netflow data table" +msgstr "Netflow data chart" + +#: ../../include/functions_reports.php:871 +msgid "Netflow summary table" +msgstr "Netflow summary chart" + +#: ../../include/functions_reports.php:885 +msgid "Network Traffic Top N" +msgstr "" + +#: ../../include/functions_html.php:1435 +msgid "weeks" +msgstr "weeks" + +#: ../../include/functions_html.php:1596 +msgid "Month day" +msgstr "Day of the month" + +#: ../../include/functions_html.php:1598 +msgid "Week day" +msgstr "Day of the week" + +#: ../../include/functions_html.php:3537 +msgid "Type at least two characters to search the module." +msgstr "Type at least two characters to search the module." + +#: ../../include/functions_html.php:3694 +#, php-format +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "" + +#: ../../include/functions_html.php:4371 +msgid "Type at least two characters to search the user." +msgstr "" + +#: ../../include/functions_config.php:127 +msgid "Failed updated: User did not login." +msgstr "Error updating: user did not sign in" + +#: ../../include/functions_config.php:135 +msgid "Failed updated: User is not admin." +msgstr "Update failed: user is not an admin" + +#: ../../include/functions_config.php:169 +msgid "phantomjs config directory" +msgstr "" + +#: ../../include/functions_config.php:185 +msgid "SSL cert path" +msgstr "SSL cert path" + +#: ../../include/functions_config.php:193 +msgid "Use cert." +msgstr "Use cert." + +#: ../../include/functions_config.php:213 +msgid "Integria inventory" +msgstr "Integria IMS inventory" + +#: ../../include/functions_config.php:217 +#: ../../include/functions_config.php:1522 +msgid "Integria API password" +msgstr "Integria IMS API password" + +#: ../../include/functions_config.php:221 +msgid "Integria URL" +msgstr "Integria IMS URL" + +#: ../../include/functions_config.php:261 +msgid "License information" +msgstr "License information" + +#: ../../include/functions_config.php:307 +msgid "Limit parameters bulk" +msgstr "Limit of bulk operations" + +#: ../../include/functions_config.php:311 +msgid "Identification_reminder" +msgstr "Identification_reminder" + +#: ../../include/functions_config.php:315 +msgid "Include_agents" +msgstr "Include_agents" + +#: ../../include/functions_config.php:319 +msgid "alias_as_name" +msgstr "alias_as_name" + +#: ../../include/functions_config.php:327 +msgid "unique_ip" +msgstr "" + +#: ../../include/functions_config.php:359 +msgid "WebSocket bind address" +msgstr "" + +#: ../../include/functions_config.php:363 +msgid "WebSocket port" +msgstr "" + +#: ../../include/functions_config.php:412 +msgid "Replication DB engine" +msgstr "Replication DB engine" + +#: ../../include/functions_config.php:416 +msgid "Replication DB host" +msgstr "Replication DB host" + +#: ../../include/functions_config.php:420 +msgid "Replication DB database" +msgstr "Replication DB database" + +#: ../../include/functions_config.php:424 +msgid "Replication DB user" +msgstr "Replication DB user" + +#: ../../include/functions_config.php:428 +msgid "Replication DB password" +msgstr "Replication DB password" + +#: ../../include/functions_config.php:432 +msgid "Replication DB port" +msgstr "Replication DB port" + +#: ../../include/functions_config.php:436 +msgid "Metaconsole agent cache" +msgstr "Metaconsole agent cache" + +#: ../../include/functions_config.php:444 +msgid "Enable Update Manager" +msgstr "" + +#: ../../include/functions_config.php:452 +msgid "Ipam Ocuppied Manager Critical" +msgstr "" + +#: ../../include/functions_config.php:456 +msgid "Ipam Ocuppied Manager Warning" +msgstr "" + +#: ../../include/functions_config.php:709 +msgid "Saml profile parameters" +msgstr "" + +#: ../../include/functions_config.php:771 +msgid "Max. days before autodisable deletion" +msgstr "Max. days before autodisabled deletion" + +#: ../../include/functions_config.php:775 +msgid "Item limit for realtime reports)" +msgstr "Item limit for real-time reports" + +#: ../../include/functions_config.php:807 +msgid "Big Operatiopn Step to purge old data" +msgstr "Big Operation Step to purge old data" + +#: ../../include/functions_config.php:841 +msgid "Max execution event response" +msgstr "" + +#: ../../include/functions_config.php:921 +msgid "Show QR code header" +msgstr "Display QR code in header" + +#: ../../include/functions_config.php:945 +msgid "Custom logo collapsed" +msgstr "" + +#: ../../include/functions_config.php:949 +msgid "Custom logo white background" +msgstr "" + +#: ../../include/functions_config.php:977 +msgid "Custom title header" +msgstr "" + +#: ../../include/functions_config.php:981 +msgid "Custom subtitle header" +msgstr "" + +#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1041 +msgid "Custom Docs url" +msgstr "Custom Docs URL" + +#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1045 +msgid "Custom support url" +msgstr "Custom support URL" + +#: ../../include/functions_config.php:1013 +msgid "Custom logo metaconsole" +msgstr "Custom logo Metaconsole" + +#: ../../include/functions_config.php:1017 +msgid "Custom logo metaconsole (white background)" +msgstr "" + +#: ../../include/functions_config.php:1021 +msgid "Custom logo login metaconsole" +msgstr "Custom login logo for Metaconsole" + +#: ../../include/functions_config.php:1025 +msgid "Custom splash login metaconsole" +msgstr "Custom splash login for Metaconsole" + +#: ../../include/functions_config.php:1029 +msgid "Custom title1 login metaconsole" +msgstr "Custom title1 login for Metaconsole" + +#: ../../include/functions_config.php:1033 +msgid "Custom title2 login metaconsole" +msgstr "Custom title2 login for Metaconsole" + +#: ../../include/functions_config.php:1037 +msgid "Login background metaconsole" +msgstr "Login background for Metaconsole" + +#: ../../include/functions_config.php:1061 +msgid "Default line favourite_view for the Visual Console" +msgstr "Default line favourite_view for the Visual Console" + +#: ../../include/functions_config.php:1065 +msgid "Default line menu items for the Visual Console" +msgstr "Default line menu items for the Visual Console" + +#: ../../include/functions_config.php:1073 +msgid "Default line menu items for the Services" +msgstr "" + +#: ../../include/functions_config.php:1105 +msgid "Show units in values report" +msgstr "Show units in values report" + +#: ../../include/functions_config.php:1113 +msgid "Autohidden menu" +msgstr "Automatically hide menu" + +#: ../../include/functions_config.php:1117 +msgid "visual_animation" +msgstr "visual_animation" + +#: ../../include/functions_config.php:1125 +msgid "Fixed graph" +msgstr "Fixed graph" + +#: ../../include/functions_config.php:1133 +msgid "Paginate module" +msgstr "Paginate module" + +#: ../../include/functions_config.php:1145 +msgid "Shortened module graph data" +msgstr "Shortened module graph data" + +#: ../../include/functions_config.php:1157 +msgid "Default type of module charts." +msgstr "Default module chart type" + +#: ../../include/functions_config.php:1161 +msgid "Default type of interface charts." +msgstr "Default type of interface charts" + +#: ../../include/functions_config.php:1178 +msgid "Display lateral menus with left click" +msgstr "Display lateral menus with left click" + +#: ../../include/functions_config.php:1188 +msgid "Service item padding size" +msgstr "Service item padding size" + +#: ../../include/functions_config.php:1193 +msgid "Default percentil" +msgstr "Default percentile" + +#: ../../include/functions_config.php:1197 +msgid "Default full scale (TIP)" +msgstr "Default full scale (TIP)" + +#: ../../include/functions_config.php:1201 +msgid "Default soft graphs" +msgstr "" + +#: ../../include/functions_config.php:1205 +msgid "Default zoom graphs" +msgstr "" + +#: ../../include/functions_config.php:1209 +msgid "Default height of the chart image" +msgstr "" + +#: ../../include/functions_config.php:1230 +msgid "Add the custom post process" +msgstr "Add the custom post process" + +#: ../../include/functions_config.php:1238 +msgid "Delete the custom post process" +msgstr "Delete the custom post process" + +#: ../../include/functions_config.php:1295 +msgid "Add custom module unit" +msgstr "" + +#: ../../include/functions_config.php:1301 +msgid "Delete custom module unit" +msgstr "" + +#: ../../include/functions_config.php:1392 +msgid "IP ElasticSearch server" +msgstr "IP ElasticSearch server" + +#: ../../include/functions_config.php:1396 +msgid "Port ElasticSearch server" +msgstr "Port ElasticSearch server" + +#: ../../include/functions_config.php:1414 +msgid "Enable history event" +msgstr "Enable history event" + +#: ../../include/functions_config.php:1450 +msgid "Event Days" +msgstr "Event Days" + +#: ../../include/functions_config.php:1476 +msgid "eHorus user login" +msgstr "" + +#: ../../include/functions_config.php:1488 +msgid "eHorus API hostname" +msgstr "eHorus API hostname" + +#: ../../include/functions_config.php:1492 +msgid "eHorus API port" +msgstr "eHorus API port" + +#: ../../include/functions_config.php:1496 +msgid "eHorus request timeout" +msgstr "eHorus request timeout" + +#: ../../include/functions_config.php:1500 +msgid "eHorus id custom field" +msgstr "eHorus ID custom field" + +#: ../../include/functions_config.php:1510 +msgid "Integria user" +msgstr "" + +#: ../../include/functions_config.php:1514 +msgid "Integria password" +msgstr "" + +#: ../../include/functions_config.php:1518 +msgid "integria API hostname" +msgstr "" + +#: ../../include/functions_config.php:1526 +msgid "Integria request timeout" +msgstr "" + +#: ../../include/functions_config.php:1530 +msgid "Integria default group" +msgstr "" + +#: ../../include/functions_config.php:1534 +msgid "Integria custom response default group" +msgstr "" + +#: ../../include/functions_config.php:1538 +msgid "Integria default priority" +msgstr "" + +#: ../../include/functions_config.php:1542 +msgid "Integria custom response default priority" +msgstr "" + +#: ../../include/functions_config.php:1546 +msgid "Integria default creator" +msgstr "" + +#: ../../include/functions_config.php:1550 +msgid "Integria default owner" +msgstr "" + +#: ../../include/functions_config.php:1554 +msgid "Integria custom response default owner" +msgstr "" + +#: ../../include/functions_config.php:1558 +msgid "Integria default ticket type" +msgstr "" + +#: ../../include/functions_config.php:1562 +msgid "Integria custom response default ticket type" +msgstr "" + +#: ../../include/functions_config.php:1566 +msgid "Integria default ticket status" +msgstr "" + +#: ../../include/functions_config.php:1570 +msgid "Integria custom response default ticket status" +msgstr "" + +#: ../../include/functions_config.php:1574 +msgid "Integria default ticket title" +msgstr "" + +#: ../../include/functions_config.php:1578 +msgid "Integria custom response default ticket title" +msgstr "" + +#: ../../include/functions_config.php:1582 +msgid "Integria default ticket content" +msgstr "" + +#: ../../include/functions_config.php:1586 +msgid "Integria custom response default ticket content" +msgstr "" + +#: ../../include/functions_config.php:1616 +#, 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:2111 +#: ../../operation/agentes/networkmap.dinamic.php:217 +msgid "Pandora FMS" +msgstr "Pandora FMS" + +#: ../../include/functions_config.php:2119 +msgid "PANDORA FMS" +msgstr "" + +#: ../../include/get_file.php:39 +msgid "Security error. Please contact the administrator." +msgstr "Security error. Please contact your administrator." + +#: ../../include/get_file.php:69 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" +"The file is missing from the disk storage. Please contact your administrator." + +#: ../../include/functions_netflow.php:346 +msgid "Total flows" +msgstr "Total flows" + +#: ../../include/functions_netflow.php:351 +msgid "Total bytes" +msgstr "Total bytes" + +#: ../../include/functions_netflow.php:356 +msgid "Total packets" +msgstr "Total packages" + +#: ../../include/functions_netflow.php:361 +msgid "Average bits per second" +msgstr "Average bits per second" + +#: ../../include/functions_netflow.php:366 +msgid "Average packets per second" +msgstr "Average packages per second" + +#: ../../include/functions_netflow.php:371 +msgid "Average bytes per packet" +msgstr "Average bytes per packet" + +#: ../../include/functions_netflow.php:1027 +msgid "Area graph" +msgstr "Area graph" + +#: ../../include/functions_netflow.php:1029 +#: ../../operation/agentes/exportdata.php:361 +msgid "Data table" +msgstr "Data table" + +#: ../../include/functions_netflow.php:1030 +msgid "Circular mesh" +msgstr "Circular mesh" + +#: ../../include/functions_netflow.php:1031 +#: ../../include/functions_netflow.php:1243 +msgid "Host detailed traffic" +msgstr "Detailed host traffic" + +#: ../../include/functions_netflow.php:1371 +msgid "Dst port" +msgstr "Dst port" + +#: ../../include/functions_netflow.php:1374 +msgid "Dst IP" +msgstr "Dst IP" + +#: ../../include/functions_netflow.php:1377 +msgid "Src IP" +msgstr "Source IP" + +#: ../../include/functions_netflow.php:1380 +msgid "Src port" +msgstr "Src port" + +#: ../../include/functions_netflow.php:1566 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "nfdump binary (%s) not found!" + +#: ../../include/functions_netflow.php:1573 +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!" + +#: ../../include/functions_netflow.php:1590 +msgid "High" +msgstr "" + +#: ../../include/functions_netflow.php:1591 +msgid "Ultra High" +msgstr "" + +#: ../../include/functions_netflow.php:1624 +#, php-format +msgid "Agregate by %s" +msgstr "" + +#: ../../include/functions_netflow.php:1632 +#, php-format +msgid "Resolution %s" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:422 +#: ../../include/class/ConfigPEN.class.php:591 +#: ../../include/class/ModuleTemplates.class.php:989 +msgid "PEN" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:429 +#: ../../include/class/ConfigPEN.class.php:592 +msgid "Manufacturer" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:477 +msgid "PEN is required" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:503 +msgid "PEN is required." +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:507 +msgid "Manufacturer is required" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:524 +msgid "This PEN definition does not exist" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:538 +msgid "created" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:544 +msgid "This PEN definition already exists" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:558 +msgid "updated" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:565 +#, php-format +msgid "Succesfully %s" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:645 +msgid "Register manufacturer" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:661 +msgid "Are you sure you want to delete this PEN?" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:688 +msgid "Register new manufacturer" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:104 +msgid "Browser not compatible." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:147 +msgid "Suggestion" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:158 +msgid "Something is wrong" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:171 +msgid "What happened?" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:181 +msgid "Your Email" +msgstr "Your E-mail" + +#: ../../include/class/HelpFeedBack.class.php:198 +#: ../../operation/incidents/incident_detail.php:404 +msgid "Submit" +msgstr "Submit" + +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1958 ../../general/header.php:344 +#: ../../general/header.php:346 +msgid "Feedback" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:252 +msgid "[pandorafms wiki] New suggestion" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:254 +msgid "[pandorafms wiki] New report" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:260 +msgid "Please provide your email address, we promise not to bother you" +msgstr "Please provide your e-mail address, we promise not to bother you" + +#: ../../include/class/HelpFeedBack.class.php:308 +msgid "Something went wrong while sending the report." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Your report had been successfully sent to Artica." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Thank you!" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:152 +#, php-format +msgid "%s Diagnostic tool" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:217 +#, php-format +msgid "Info status %s" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:221 +msgid "PHP setup" +msgstr "PHP setup" + +#: ../../include/class/Diagnostics.class.php:229 +msgid "Database health status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:233 msgid "Database status info" msgstr "Database status info" -#: ../../extras/pandora_diag.php:252 -msgid "System info" -msgstr "System info" +#: ../../include/class/Diagnostics.class.php:237 +msgid "System Info" +msgstr "System Info" -#: ../../extras/pandora_diag.php:322 -msgid "" -"(*) Please check your Pandora Server setup and be sure that database " -"maintenance daemon is running. It' very important to \n" -"keep up-to-date database to get the best performance and results in Pandora" +#: ../../include/class/Diagnostics.class.php:241 +msgid "MySQL Performance metrics" msgstr "" -"(*) Please check your Pandora FMS Server setup and be sure that the database " -"maintenance daemon is running. It is very important to \n" -"keep the database up to date in order to get the best performance and " -"results in Pandora FMS." -#: ../../general/alert_enterprise.php:96 -msgid "" -"This is the online help for Pandora FMS console. This help is -in best cases-" -" just a brief contextual help, not intented to teach you how to use Pandora " -"FMS. Official documentation of Pandora FMS is about 900 pages, and you " -"probably don't need to read it entirely, but sure, you should download it " -"and take a look.

\n" -"\tDownload the official documentation" +#: ../../include/class/Diagnostics.class.php:246 +#, php-format +msgid "Tables fragmentation in the %s database" msgstr "" -"This is the online help for Pandora FMS console. This help is – in best " -"cases – just a brief contextual help, and is not intended to teach you how " -"to use Pandora FMS. Official documentation of Pandora FMS is about 900 " -"pages, and you probably do not need to read it entirely, but sure, you " -"should download it and take a look.

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

\n" -"\tPlease know that all attempts to access this page are recorded in security " -"logs of Pandora System Database" +#: ../../include/class/Diagnostics.class.php:252 +#, php-format +msgid "%s logs dates" msgstr "" -"Access to this page is restricted to authorized users only, please contact " -"the system administrator if you need assistance.

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


pandorafms.com" +#: ../../include/class/Diagnostics.class.php:330 +msgid "Graph of the Free Disk Spool Dir module." msgstr "" -"Do you want to consolidate all your system monitoring? Do you have many " -"systems, making it difficult to manage them in a comprehensive manner? Would " -"you like to deploy monitoring, alerts and even local plugins with a single " -"click? Pandora FMS Enterprise Policies are exactly what you need. You will " -"save time and effort, and avoid problems. More information at pandorafms.com." -#: ../../general/alert_enterprise.php:148 -msgid "" -"Pandora FMS Enterprise also features event correlation. Through correlation " -"you can generate realtime alerts and / or new events based on logical rules. " -"This allows you to automate troubleshooting. If you know the value of " -"working with events, event correlation will take you to a new level." +#: ../../include/class/Diagnostics.class.php:336 +msgid "Graph of the Free RAM module." msgstr "" -"Pandora FMS Enterprise also features event correlation. Through correlation " -"you can generate real-time alerts and/or new events based on logical rules. " -"This allows you to automate troubleshooting. If you know how important it is " -"to work with events, event correlation will take you to a new level." -#: ../../general/alert_enterprise.php:151 -msgid "" -"Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, Pandora FMS Enterprise version is for you." +#: ../../include/class/Diagnostics.class.php:342 +msgid "Graph of the Queued Modules module." msgstr "" -"Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, Pandora FMS Enterprise version is for you." -#: ../../general/alert_enterprise.php:154 -msgid "These options are only effective on the Enterprise version." -msgstr "These options are only effective on the Enterprise version." - -#: ../../general/alert_enterprise.php:157 -msgid "" -"WARNING: You are just one click away from an automated update. This may " -"result in a damaged system, including loss of data and operativity. Check " -"you have a recent backup. OpenSource updates are automatically created " -"packages, and there is no WARRANTY or SUPPORT. If you need professional " -"support and warranty, please upgrade to Enterprise Version." +#: ../../include/class/Diagnostics.class.php:348 +msgid "Graph of the Status module." msgstr "" -"WARNING: You are just one click away from an automated update. This may " -"result in a damaged system, including loss of data and operativity. Check " -"you have a recent backup. OpenSource updates are automatically created " -"packages, and there is no WARRANTY or SUPPORT. If you need professional " -"support and warranty, please upgrade to Enterprise Version." -#: ../../general/alert_enterprise.php:160 -msgid "" -"This system is heavily loaded. OpenSource version could get a lot more " -"agents but fine tuning requires knowledge and time. Checkout the Enterprise " -"Version for a professional supported system." +#: ../../include/class/Diagnostics.class.php:354 +msgid "Graph of the System Load AVG module." msgstr "" -"This system is heavily loaded. OpenSource version could get a lot more " -"agents but fine tuning requires knowledge and time. Check out the Enterprise " -"Version for a professional supported system." -#: ../../general/alert_enterprise.php:163 -msgid "" -"This system has too many modules per agent. OpenSource version could manage " -"thousands of modules, but is not recommended to have more than 40 modules " -"per agent. This configuration has B/A modules per agent. Checkout the " -"Enterprise Version for a professional supported system." +#: ../../include/class/Diagnostics.class.php:361 +msgid "Graph of the Execution Time module." msgstr "" -"This system has too many modules per agent. OpenSource version could manage " -"thousands of modules, but it is not recommended to have more than 40 modules " -"per agent. This configuration has B/A modules per agent. Check out the " -"Enterprise Version for a professional supported system." -#: ../../general/alert_enterprise.php:166 -msgid "" -"Too much remote modules has been detected on this system. OpenSource version " -"could manage thousands of modules, but performance is limited on high amount " -"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " -"supported system with improved capacity on network monitoring, including " -"distributed servers." +#: ../../include/class/Diagnostics.class.php:370 +msgid "Graphs modules that represent the self-monitoring system" msgstr "" -"Too many remote modules have been detected on this system. OpenSource " -"version could manage thousands of modules, but performance is limited on " -"high amounts of SNMP or ICMP requests. Check out the Enterprise Version for " -"a professionally supported system with improved capacity on network " -"monitoring, including distributed servers." -#: ../../general/alert_enterprise.php:169 -msgid "" -"This system has too much events in the database. Checkout database purge " -"options. Checkout the Enterprise Version for a professional supported system." +#: ../../include/class/Diagnostics.class.php:427 +#, php-format +msgid "%s Build" msgstr "" -"This system has too many events in the database. Explore database purge " -"options. Check out the Enterprise Version for a professionally supported " -"system." -#: ../../general/alert_enterprise.php:172 -msgid "" -"You have defined a high number of alerts, this may cause you performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." +#: ../../include/class/Diagnostics.class.php:431 +#, php-format +msgid "%s Version" msgstr "" -"You have defined a high number of alerts, this may cause performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." -#: ../../general/firts_task/collections.php:21 -msgid "There are no collections defined yet." -msgstr "There are no collections defined yet." +#: ../../include/class/Diagnostics.class.php:435 +msgid "Minor Release" +msgstr "" -#: ../../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:49 -#: ../../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:3468 -msgid "Collections" -msgstr "Collections" +#: ../../include/class/Diagnostics.class.php:439 +msgid "Homedir" +msgstr "" -#: ../../general/firts_task/collections.php:28 -#: ../../general/firts_task/collections.php:37 +#: ../../include/class/Diagnostics.class.php:443 +msgid "HomeUrl" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:447 +msgid "Enterprise installed" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "true" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "false" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:451 +msgid "Update Key" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:455 +msgid "Updating code path" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:459 +msgid "Current Update #" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:483 +msgid "PHP Version" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:487 +msgid "PHP Max execution time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:491 +msgid "PHP Max input time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:495 +msgid "PHP Memory limit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:499 +msgid "Session cookie lifetime" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:548 +msgid "Total groups" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:552 +msgid "Total module data records" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:556 +msgid "Total agent access record" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:564 +msgid "Total traps" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:568 +msgid "Total users" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:572 +msgid "Total sessions" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:611 +msgid "Pandora DB has never been executed" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:618 +msgid "Ago" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:625 +msgid "Total unknown agents" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:629 +msgid "Total not-init modules" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:633 +msgid "Pandora DB Last run" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:665 +msgid "DB Schema Version (first installed)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:669 +msgid "DB Schema Version (actual)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:673 +msgid "DB Schema Build" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:677 +msgid "DB Size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:717 +msgid "RAM" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:721 +msgid "Os" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:729 +#: ../../include/class/Diagnostics.class.php:747 +#: ../../include/class/NetworkMap.class.php:2934 +msgid "Ip" +msgstr "IP" + +#: ../../include/class/Diagnostics.class.php:775 +msgid "InnoDB buffer pool size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:779 +#, php-format +msgid "" +"It has to be 40% of the server memory not recommended to be greater or less" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:784 +msgid "InnoDB file per table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:787 +#: ../../include/class/Diagnostics.class.php:859 +msgid "Recommended ON" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:791 +msgid "InnoDB flush log at trx-commit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:794 +msgid "Recommended Value" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:798 +msgid "InnoDB lock wait timeout" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:801 +#: ../../include/class/Diagnostics.class.php:808 +#: ../../include/class/Diagnostics.class.php:815 +#: ../../include/class/Diagnostics.class.php:822 +#: ../../include/class/Diagnostics.class.php:829 +#: ../../include/class/Diagnostics.class.php:838 +#: ../../include/class/Diagnostics.class.php:845 +#: ../../include/class/Diagnostics.class.php:852 +#: ../../include/class/Diagnostics.class.php:866 +#: ../../include/class/Diagnostics.class.php:873 +#: ../../include/class/Diagnostics.class.php:880 +#: ../../include/class/Diagnostics.class.php:894 +#: ../../include/class/Diagnostics.class.php:901 +msgid "Min. Recommended Value" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:805 +msgid "InnoDB log buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:812 +msgid "InnoDB log file size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:819 +msgid "Maximun allowed packet" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:826 +msgid "Maximun connections" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:831 +msgid "conections" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:835 +msgid "Query cache limit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:842 +msgid "Query cache min-res-unit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:849 +msgid "Query cache size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:856 +msgid "Query cache type" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:863 +msgid "Read buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:870 +msgid "Read rnd-buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:877 +msgid "Sort buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:884 +msgid "Sql mode" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:887 +msgid "Must be empty" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:891 +msgid "Thread cache size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:898 +msgid "Thread stack" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:961 +msgid "" +"Table fragmentation is higher than recommended. They should be defragmented." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:965 +msgid "Table fragmentation is correct." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:974 +msgid "Tables fragmentation (maximum recommended value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:979 +msgid "Tables fragmentation (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:983 +msgid "Table fragmentation status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1018 +msgid "Size server logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1022 +msgid "Status server logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1027 +msgid "Size error logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1031 +msgid "Status error logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1036 +msgid "Size console logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1040 +msgid "Status console logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1075 +msgid "License capacity is less than 90 percent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1078 +msgid "License capacity exceeds 90 percent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1086 +msgid "" +"The average of modules per agent is more than 40. You can have performance " +"problems" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1091 +msgid "The average of modules per agent is less than 40" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1127 +msgid "The system has no load" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1171 +msgid "Network Management System" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1172 +#: ../../include/class/Diagnostics.class.php:1176 +msgid "Off" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1183 +msgid "Status of agents capacity" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1188 +msgid "Status of average modules per agent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1194 +msgid "Interval average of the network modules" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1224 +msgid "The attached folder contains more than 700 files." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1229 +msgid "The attached folder contains less than 700 files." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1238 +msgid "Total files in the attached folder" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1268 +msgid "" +"The tagente_datos table contains too much data. A historical database is " +"recommended." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1273 +msgid "The tagente_datos table contains an acceptable amount of data." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1282 +msgid "Total data in tagente_datos table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1286 +msgid "Tagente_datos table status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1322 +msgid "Threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1332 +msgid "Total threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1339 +msgid "Current pandora_server running threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1343 +msgid "" +"There's more pandora_server threads than configured, are you running " +"multiple servers simultaneusly?." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1477 +msgid "" +"Please check your Pandora Server setup and make sure that the database " +"maintenance daemon is running." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1481 +msgid "" +"It' is very important to keep the database up-to-date to get the best " +"performance and results in Pandora" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1743 +msgid "You have more than 10 MB of logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1746 +msgid "You have less than 10 MB of logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1809 +msgid "Succesfuly" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1885 +msgid "What happened" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1901 +msgid "Your email" +msgstr "Your e-mail" + +#: ../../include/class/Diagnostics.class.php:1913 +msgid "Include installation data" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1950 +msgid "Hello Feedback-Men" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1960 +msgid "Hello" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1964 +#, php-format +msgid "User %s is reporting an issue in its %s experience" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1973 +msgid "Find some files attached to this mail" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1976 +msgid "PDF is the diagnostic information retrieved at report time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1979 +msgid "CSV contains the statuses of every product file" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1984 +#, php-format +msgid "" +"If you think this report must be escalated, feel free to forward this mail " +"to \"%s\"" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1988 +msgid "LEGAL WARNING" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1990 +msgid "" +"The information contained in this transmission is privileged and " +"confidential information intended only for the use of the individual or " +"entity named above" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1994 +msgid "" +"If the reader of this message is not the intended recipient, you are hereby " +"notified that any dissemination, distribution or copying of this " +"communication is strictly prohibited" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1998 +msgid "If you have received this transmission in error, do not read it" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2002 +msgid "" +"Please immediately reply to the sender that you have received this " +"communication in error and then delete it" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2081 +msgid "Invalid cron task" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2082 +msgid "Cron task generated" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2117 +#: ../../include/class/Diagnostics.class.php:2127 +msgid "Diagnostics Info" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2235 +#: ../../include/class/Diagnostics.class.php:2245 +msgid "PHP Info" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2328 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2456 +msgid "Failed to retrieve graph data." +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2676 +msgid "Holding Area" +msgstr "Holding area" + +#: ../../include/class/NetworkMap.class.php:2805 +#, php-format +msgid "Edit node %s" +msgstr "Edit node %s" + +#: ../../include/class/NetworkMap.class.php:2807 +msgid "Show details and options" +msgstr "Show details and options" + +#: ../../include/class/NetworkMap.class.php:2808 +msgid "Add a interface link" +msgstr "Add an interface link" + +#: ../../include/class/NetworkMap.class.php:2809 +msgid "Set parent interface" +msgstr "Set parent interface" + +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Set as children" +msgstr "Define as children element" + +#: ../../include/class/NetworkMap.class.php:2811 +msgid "Set parent" +msgstr "Define as parent element" + +#: ../../include/class/NetworkMap.class.php:2812 +#: ../../include/class/NetworkMap.class.php:2825 +msgid "Abort the action of set relationship" +msgstr "Abort the action of relationship configuration" + +#: ../../include/class/NetworkMap.class.php:2814 +#: ../../include/class/NetworkMap.class.php:3151 +msgid "Add node" +msgstr "Add node" + +#: ../../include/class/NetworkMap.class.php:2815 +msgid "Set center" +msgstr "Set center" + +#: ../../include/class/NetworkMap.class.php:2817 +msgid "Refresh Holding area" +msgstr "Refresh holding area" + +#: ../../include/class/NetworkMap.class.php:2818 +#: ../../include/class/NetworkMap.class.php:2821 +msgid "Proceed" +msgstr "Proceed" + +#: ../../include/class/NetworkMap.class.php:2819 +msgid "" +"Resetting the map will delete all customizations you have done, including " +"manual relationships between elements, new items, etc." +msgstr "" +"Resetting the map will delete all customization you have done, including " +"manual relationships between elements, new items, etc." + +#: ../../include/class/NetworkMap.class.php:2823 +msgid "Restart map" +msgstr "Restart map" + +#: ../../include/class/NetworkMap.class.php:2824 +msgid "Abort the interface relationship" +msgstr "Abort the interface relationship" + +#: ../../include/class/NetworkMap.class.php:2842 +#: ../../include/class/NetworkMap.class.php:2895 +#, php-format +msgid "In the Open version of %s can not be edited nodes or map" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2848 +#: ../../include/class/NetworkMap.class.php:2901 +msgid "Edit node" +msgstr "Edit node" + +#: ../../include/class/NetworkMap.class.php:2858 +#: ../../include/class/NetworkMap.class.php:2911 +msgid "Adresses" +msgstr "Addresses" + +#: ../../include/class/NetworkMap.class.php:2860 +#: ../../include/class/NetworkMap.class.php:2913 +msgid "OS type" +msgstr "OS type" + +#: ../../include/class/NetworkMap.class.php:2867 +#: ../../include/class/NetworkMap.class.php:2868 +#: ../../include/class/NetworkMap.class.php:2920 +#: ../../include/class/NetworkMap.class.php:2921 +msgid "Node Details" +msgstr "Node details" + +#: ../../include/class/NetworkMap.class.php:2946 +#: ../../include/class/NetworkMap.class.php:2947 +msgid "Interface Information (SNMP)" +msgstr "Interface Information (SNMP)" + +#: ../../include/class/NetworkMap.class.php:2958 +msgid "Shape" +msgstr "Shape" + +#: ../../include/class/NetworkMap.class.php:2961 +msgid "Circle" +msgstr "Circle" + +#: ../../include/class/NetworkMap.class.php:2962 +msgid "Square" +msgstr "Square" + +#: ../../include/class/NetworkMap.class.php:2963 +msgid "Rhombus" +msgstr "Rhombus" + +#: ../../include/class/NetworkMap.class.php:2976 +msgid "name node" +msgstr "Name node" + +#: ../../include/class/NetworkMap.class.php:2994 +#: ../../include/class/NetworkMap.class.php:3258 +msgid "name fictional node" +msgstr "Name fictional node" + +#: ../../include/class/NetworkMap.class.php:2999 +#: ../../include/class/NetworkMap.class.php:3263 +msgid "Networkmap to link" +msgstr "Networkmap to link" + +#: ../../include/class/NetworkMap.class.php:3011 +msgid "Update fictional node" +msgstr "Update fictional node" + +#: ../../include/class/NetworkMap.class.php:3021 +#: ../../include/class/NetworkMap.class.php:3022 +msgid "Node options" +msgstr "Node Options" + +#: ../../include/class/NetworkMap.class.php:3033 +#: ../../include/class/NetworkMap.class.php:3097 +msgid "Node source" +msgstr "Node source" + +#: ../../include/class/NetworkMap.class.php:3034 +#: ../../include/class/NetworkMap.class.php:3098 +msgid "Interface source" +msgstr "Interface source" + +#: ../../include/class/NetworkMap.class.php:3035 +#: ../../include/class/NetworkMap.class.php:3099 +msgid "Interface Target" +msgstr "Interface target" + +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3100 +msgid "Node target" +msgstr "Node target" + +#: ../../include/class/NetworkMap.class.php:3038 +msgid "E." +msgstr "E." + +#: ../../include/class/NetworkMap.class.php:3071 +msgid "There are not relations" +msgstr "There are no relations." + +#: ../../include/class/NetworkMap.class.php:3139 +msgid "Add interface link" +msgstr "Add interface link" + +#: ../../include/class/NetworkMap.class.php:3170 +#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3233 +#: ../../include/class/NetworkMap.class.php:3245 +#: ../../include/class/NetworkMap.class.php:3286 +msgid "Add agent node" +msgstr "Add agent node" + +#: ../../include/class/NetworkMap.class.php:3244 +msgid "Add agent node (filter by group)" +msgstr "Add agent node (filter by group)" + +#: ../../include/class/NetworkMap.class.php:3275 +msgid "Add fictional node" +msgstr "Add fictional node" + +#: ../../include/class/NetworkMap.class.php:3285 +msgid "Add fictional point" +msgstr "Add fictional point" + +#: ../../include/class/NetworkMap.class.php:3469 +msgid "Open Minimap" +msgstr "Open Minimap" + +#: ../../include/class/NetworkMap.class.php:3475 +msgid "Hide Labels" +msgstr "Hide labels" + +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "Error creating" + +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "Error updating" + +#: ../../include/class/ManageNetScanScripts.class.php:356 +#: ../../include/class/ManageNetScanScripts.class.php:367 +msgid "Problem deleting Net scan Scripts" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:372 +msgid "Deleted successfully" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:444 +msgid "Are you sure delete script?" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:464 +msgid "Delete Script" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:482 +msgid "There are no net scan scripts in the system" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:556 +msgid "Script fullpath" +msgstr "Script fullpath" + +#: ../../include/class/CredentialStore.class.php:565 +msgid "Key identifier is required" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:567 +msgid "You must select a group where store this key!" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:569 +msgid "You must specify a product type" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:571 +msgid "You must specify a username and/or password" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:672 +msgid "identifier cannot be empty" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:677 +msgid "Not allowed" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:716 +msgid "How to configure encryption." +msgstr "" + +#: ../../include/class/CredentialStore.class.php:715 +#, php-format +msgid "" +"Database encryption is not enabled. Credentials will be stored in plaintext. " +"%s" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:734 +#: ../../include/class/CredentialStore.class.php:861 +msgid "Product" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:800 +msgid "Add key" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:884 +msgid "Extra (2)" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:891 +#: ../../include/class/CredentialStore.class.php:1035 +msgid "Access key ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:892 +#: ../../include/class/CredentialStore.class.php:1036 +msgid "Secret access key" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:898 +#: ../../include/class/CredentialStore.class.php:908 +msgid "Account ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:899 +#: ../../include/class/CredentialStore.class.php:1041 +msgid "Application secret" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:900 +#: ../../include/class/CredentialStore.class.php:1042 +msgid "Tenant or domain name" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:901 +#: ../../include/class/CredentialStore.class.php:1043 +msgid "Subscription id" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1040 +msgid "Client ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1047 +msgid "Account ID." +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1116 +msgid "Register new key into keystore" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1120 +msgid "Update key" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:123 +msgid "Agent Management" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:157 +msgid "Manage Policies" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:171 +msgid "List Alerts" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:261 +msgid "Edit User" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:271 +msgid "Tree View" +msgstr "Tree view" + +#: ../../include/class/OrderInterpreter.class.php:281 +msgid "Network Component" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:295 +msgid "Task List" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:339 +msgid "Update Manager" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:353 +msgid "Manage Agent Groups" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:394 +msgid "GO TO " +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:423 +msgid "results found" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:427 +msgid "No results found" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:368 +#: ../../include/class/CustomNetScan.class.php:393 +msgid "NetScan Custom" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:609 +msgid "Recon script" +msgstr "Recon script" + +#: ../../include/class/CustomNetScan.class.php:650 +msgid "Explanation" +msgstr "Explanation" + +#: ../../include/class/CustomNetScan.class.php:666 +msgid "macro_desc" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:348 +#, php-format +msgid "Template %s successfully updated" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:390 +#, php-format +msgid "Template %s successfully created" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:392 +msgid "Error creating template" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:400 +#, php-format +msgid "Template %s successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:402 +#, php-format +msgid "Error deleting %s template" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:535 +msgid "Module successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:537 +msgid "Error deleting module" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:548 +msgid "Block successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:550 +msgid "Error deleting block" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:562 +msgid "All templates deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:564 +msgid "Error deleting all templates" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:573 +msgid "Selected templates deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:575 +msgid "Error deleting selected templates" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:587 +msgid "Something gone wrong. Please, try again" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:609 +msgid "Components added sucessfully" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1017 +#: ../../include/class/ModuleTemplates.class.php:1278 +msgid "Add components" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1069 +#: ../../include/class/ModuleTemplates.class.php:1193 +msgid "No module blocks for this profile" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1092 +msgid "Delete this block" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1093 +msgid "Do you want delete this block?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1179 +msgid "Delete this module" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1180 +msgid "Do you want delete this module?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1371 +msgid "Do you want delete all templates?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1374 +msgid "Do you want delete the selected templates?" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:758 +msgid "Limited mode." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:770 +msgid "License is about to expire" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:773 +msgid "Support is about to expire" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:791 +msgid "Expired license" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:792 +msgid "Your license has expired. Please, contact our sales department." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:794 +msgid "Support expired" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:795 +msgid "" +"This license is outside of support. Please, contact our sales department." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:876 +msgid "Attachment directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:878 +#, php-format +msgid "" +"Directory %s is not writable. Please, configure corresponding permissions." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:898 +msgid "There are too many files in attachment directory" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:900 +#, php-format +msgid "" +"There are more than %d files in attachment, consider cleaning up attachment " +"directory manually." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:932 +msgid "Remote configuration directory is not readable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:934 +#, php-format +msgid "" +"Remote configuration directory %s is not readable. Please, adjust " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:951 +msgid "Remote configuration directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:953 +#, php-format +msgid "" +"Remote configuration directory %s is not writable. Please, adjust " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:969 +msgid "Remote collections directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:971 +#, php-format +msgid "" +"Collections directory %s is not writable. Please, adjust configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:987 +msgid "Remote md5 directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:989 +#, php-format +msgid "MD5 directory %s is not writable. Please, adjust configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1017 +msgid "There are too much files in spool" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1019 +#, php-format +msgid "" +"There are more than %d files in %s. Consider checking DataServer performance" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1040 +msgid "There are too many BADXML files in spool" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1042 +#, php-format +msgid "" +"There are more than %d files in %s. Consider checking software agents." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1123 +#, php-format +msgid "%s (%s) is lacking performance." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1190 +msgid "No servers available." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1191 +msgid "" +"There are no servers registered in this console. Please, check installation " +"guide." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1213 +#, php-format +msgid "%s (%s) has crashed." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1219 +#, php-format +msgid "%s (%s) has crashed, please check log files." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1226 +#, php-format +msgid "%s (%s) is not running." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1231 +#, php-format +msgid "" +"%s (%s) is not running. Please, check configuration file or remove this " +"server from server list." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1281 +msgid "No master servers found." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1282 +msgid "" +"At least one server must be defined to run as master. Please, check " +"documentation." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1333 +msgid "PHP safe mode is enabled. Some features may not work properly" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1334 +msgid "" +"To disable it, go to your PHP configuration file (php.ini) and put safe_mode " +"= Off (Do not forget to restart apache process after changes)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1352 +#, php-format +msgid "'%s' value in PHP configuration is not recommended" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1356 +#, php-format +msgid "Recommended value is %s" +msgstr "The recommended value is %s" + +#: ../../include/class/ConsoleSupervisor.php:1357 +#: ../../include/class/ConsoleSupervisor.php:1381 +msgid "Unlimited" +msgstr "Unlimited" + +#: ../../include/class/ConsoleSupervisor.php:1358 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Do not forget to restart Apache process after)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1376 +#: ../../include/class/ConsoleSupervisor.php:1400 +#: ../../include/class/ConsoleSupervisor.php:1424 +#: ../../include/class/ConsoleSupervisor.php:1502 +#, php-format +msgid "Not recommended '%s' value in PHP configuration" +msgstr "Not recommended '%s' value in PHP configuration" + +#: ../../include/class/ConsoleSupervisor.php:1380 +#: ../../include/class/ConsoleSupervisor.php:1404 +#: ../../include/class/ConsoleSupervisor.php:1428 +#: ../../include/class/ConsoleSupervisor.php:1506 +#, php-format +msgid "Recommended value is: %s" +msgstr "The recommended value is: %s" + +#: ../../include/class/ConsoleSupervisor.php:1382 +#: ../../include/class/ConsoleSupervisor.php:1406 +#: ../../include/class/ConsoleSupervisor.php:1448 +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/class/ConsoleSupervisor.php:1405 +#: ../../include/class/ConsoleSupervisor.php:1429 +#, php-format +msgid "%s or greater" +msgstr "%s or greater" + +#: ../../include/class/ConsoleSupervisor.php:1430 +#: ../../include/class/ConsoleSupervisor.php:1508 +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/class/ConsoleSupervisor.php:1447 +msgid "Problems with disable_functions in php.ini" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1448 +msgid "" +"The variable disable_functions contains functions system() or exec() in PHP " +"configuration file (php.ini)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1465 +msgid "PhantomJS is not installed" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1466 +msgid "" +"To be able to create images of the graphs for PDFs, please install the " +"PhantomJS extension. For that, it is necessary to follow these steps:" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1483 +msgid "PHP UPDATE REQUIRED" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " +"higher." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "E-mails Sending" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1550 +msgid "Historical database not available" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1551 +msgid "" +"Historical database is enabled, though not accessible with the current " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1594 +msgid "Database maintenance problem" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1596 +#, php-format +msgid "" +"Your database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it " +"as soon as possible." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1656 +msgid "Historical database maintenance problem." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1658 +#, php-format +msgid "" +"Your historical database hasn't been through maintenance for 48hrs. Please, " +"check documentation on how to perform this maintenance process on %s and " +"enable it as soon as possible." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1696 +msgid "Historical database MR mismatch" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1697 +msgid "" +"Your historical database is not using the same schema as the main DB. This " +"could produce anomalies while storing historical data." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1738 +msgid "Log collector cannot connect to ElasticSearch" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1739 +msgid "ElasticSearch is not available using current configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1808 +msgid "Metaconsole DB is not available." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1809 +msgid "Cannot connect with Metaconsole DB using current configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1837 +msgid "Scheduled downtime running." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1838 +msgid "" +"A scheduled downtime is running. Some monitoring data won't be available " +"while downtime is taking place." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1994 +msgid "Downtime scheduled soon." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1996 +#, php-format +msgid "" +"A scheduled downtime is going to be executed from %s to %s. Some monitoring " +"data won't be available while downtime is taking place." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2026 +msgid "This instance is not registered in the Update manager section" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2027 +msgid "" +"Click here to start the " +"registration process" +msgstr "" +"Click here to start the " +"registration process" + +#: ../../include/class/ConsoleSupervisor.php:2059 +msgid "Default password for \"Admin\" user has not been changed" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2060 +msgid "" +"Please, change the default password since it is a commonly reported " +"vulnerability." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2087 +msgid "Default font doesn't exist" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2088 +msgid "" +"Your defined font doesn't exist or is not defined. Please, check font " +"parameters in your config" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2111 +msgid "Developer mode is enabled" +msgstr "Developer mode enabled" + +#: ../../include/class/ConsoleSupervisor.php:2113 +#, php-format +msgid "" +"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode " +"and should be disabled in a production environment. This value is located in " +"the main index.php file" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2137 +msgid "Event storm protection is enabled." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2138 +msgid "" +"Some events may get lost while this mode is enabled. The server must be " +"restarted after altering this setting." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2164 +msgid "Failed to retrieve updates, please configure utility" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2182 +#, php-format +msgid "New %s Console update" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2185 +msgid "" +"There is a new update available. Please.About minor release update." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2249 +msgid "Discovery relies on an appropriate cron setup." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2265 +msgid "Please, make sure process is not locked." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2271 +msgid "DiscoveryConsoleTasks is not configured." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2378 +#, php-format +msgid "%s version misaligned with Console" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2382 +#, php-format +msgid "" +"Server %s and this console have different versions. This might cause several " +"malfunctions. Please, update this server." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2434 +msgid "AllowOverride is disabled" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2476 +msgid "Desynchronized operation on the node " +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:427 +msgid "Please ensure mail configuration matches your needs" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:461 +msgid "Create an agent" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:486 +msgid "Create a module to check if an agent is online" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:511 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:536 +msgid "Discover hosts and devices in your network" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:564 +msgid "" +"If something is not working as expected, look for this icon and report!" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:186 +msgid "WMI Explorer" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:191 +msgid "Nothing" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:244 +msgid "Use agent IP" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:441 +msgid "Module info" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:644 +#, php-format +msgid "Perform %s" +msgstr "" + +#: ../../include/functions_reporting.php:361 +msgid " agents" +msgstr " agents" + +#: ../../include/functions_reporting.php:371 +msgid " modules" +msgstr " modules" + +#: ../../include/functions_reporting.php:1377 +msgid "Top N" +msgstr "Top N" + +#: ../../include/functions_reporting.php:1505 +msgid "Insuficient data" +msgstr "Insufficient data" + +#: ../../include/functions_reporting.php:1756 +msgid "Event Report Group" +msgstr "Group event report" + +#: ../../include/functions_reporting.php:2017 +msgid "Event Report Module" +msgstr "Event Report Module" + +#: ../../include/functions_reporting.php:2298 +msgid "Agent/Modules" +msgstr "Agent/Modules" + +#: ../../include/functions_reporting.php:2397 +msgid "Exception - Everything" +msgstr "Exception - Everything" + +#: ../../include/functions_reporting.php:2403 +#, php-format +msgid "Exception - Modules over or equal to %s" +msgstr "Exception - Modules larger than or equal to %s" + +#: ../../include/functions_reporting.php:2406 +#, php-format +msgid "Modules over or equal to %s" +msgstr "Modules larger than or equal to %s" + +#: ../../include/functions_reporting.php:2411 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "Exception - Modules less than or equal to %s" + +#: ../../include/functions_reporting.php:2414 +#, php-format +msgid "Modules under or equal to %s" +msgstr "Modules less than or equal to %s" + +#: ../../include/functions_reporting.php:2419 +#, php-format +msgid "Exception - Modules under %s" +msgstr "Exception - Modules less than %s" + +#: ../../include/functions_reporting.php:2422 +#, php-format +msgid "Modules under %s" +msgstr "Modules less than %s" + +#: ../../include/functions_reporting.php:2427 +#, php-format +msgid "Exception - Modules over %s" +msgstr "Exception - Modules larger than %s" + +#: ../../include/functions_reporting.php:2430 +#, php-format +msgid "Modules over %s" +msgstr "Modules larger than %s" + +#: ../../include/functions_reporting.php:2435 +#, php-format +msgid "Exception - Equal to %s" +msgstr "Exception - Equal to %s" + +#: ../../include/functions_reporting.php:2438 +#, php-format +msgid "Equal to %s" +msgstr "Equal to %s" + +#: ../../include/functions_reporting.php:2443 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "Exception - Not equal to %s" + +#: ../../include/functions_reporting.php:2446 +#, php-format +msgid "Not equal to %s" +msgstr "Not equal to %s" + +#: ../../include/functions_reporting.php:2450 +msgid "Exception - Modules at normal status" +msgstr "Exception - Modules in normal status" + +#: ../../include/functions_reporting.php:2451 +msgid "Modules at normal status" +msgstr "Modules in normal status" + +#: ../../include/functions_reporting.php:2455 +msgid "Exception - Modules at critical or warning status" +msgstr "Exception - Modules in critical or warning status" + +#: ../../include/functions_reporting.php:2456 +msgid "Modules at critical or warning status" +msgstr "Modules in critical or warning status" + +#: ../../include/functions_reporting.php:2674 +msgid "There are no Modules under those conditions." +msgstr "There are no modules under those conditions" + +#: ../../include/functions_reporting.php:2678 +#, 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:2682 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "There are no modules less than or equal to %s" + +#: ../../include/functions_reporting.php:2686 +#, php-format +msgid "There are no Modules less %s." +msgstr "There are no modules less than %s" + +#: ../../include/functions_reporting.php:2690 +#, php-format +msgid "There are no Modules over %s." +msgstr "There are no modules larger than %s" + +#: ../../include/functions_reporting.php:2694 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "There are no modules equal to %s" + +#: ../../include/functions_reporting.php:2698 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "There are no modules not equal to %s" + +#: ../../include/functions_reporting.php:2702 +msgid "There are no Modules normal status" +msgstr "There are no modules in normal status" + +#: ../../include/functions_reporting.php:2706 +msgid "There are no Modules at critial or warning status" +msgstr "There are no modules in critical or warning status." + +#: ../../include/functions_reporting.php:2936 +msgid "Event Report Agent" +msgstr "Event Report Agent" + +#: ../../include/functions_reporting.php:3276 +msgid "Database Serialized" +msgstr "Database serialized" + +#: ../../include/functions_reporting.php:3518 +msgid "Network interfaces report" +msgstr "Network interface report" + +#: ../../include/functions_reporting.php:3598 +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:3618 +msgid "bytes/s" +msgstr "bytes/s" + +#: ../../include/functions_reporting.php:3830 +#: ../../include/functions_reporting.php:3847 +#: ../../include/functions_reporting.php:3864 +msgid "Not triggered" +msgstr "" + +#: ../../include/functions_reporting.php:4258 +msgid "SQL Graph Vertical Bars" +msgstr "SQL vertical bar graph" + +#: ../../include/functions_reporting.php:4262 +msgid "SQL Graph Horizontal Bars" +msgstr "SQL horizontal bar graph" + +#: ../../include/functions_reporting.php:4266 +msgid "SQL Graph Pie" +msgstr "SQL Pie chart" + +#: ../../include/functions_reporting.php:4484 +msgid "Unknown report" +msgstr "" + +#: ../../include/functions_reporting.php:4561 +msgid "Prediction Date" +msgstr "Prediction Date" + +#: ../../include/functions_reporting.php:5212 +msgid "" +"Illegal query: Due security restrictions, there are some tokens or words you " +"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." +msgstr "" +"Illegal query: due to security restrictions, there are some tokens or words " +"you cannot use: *, delete, drop, alter, modify, password, pass, insert or " +"update." + +#: ../../include/functions_reporting.php:6445 +#: ../../include/functions_reporting.php:7039 +msgid "No Address" +msgstr "No address" + +#: ../../include/functions_reporting.php:7278 +msgid "" +"The monitor have no data in this range of dates or monitor type is not " +"numeric" +msgstr "" +"The monitor has no data in this range of dates or monitor type is not " +"numeric." + +#: ../../include/functions_reporting.php:7296 +msgid "The monitor type is not numeric" +msgstr "The monitor type is not numeric." + +#: ../../include/functions_reporting.php:7600 +msgid "Maximum" +msgstr "Maximum" + +#: ../../include/functions_reporting.php:7682 +msgid "Automatic combined graph" +msgstr "" + +#: ../../include/functions_reporting.php:8424 +msgid "Maximum of events shown" +msgstr "Maximum number of displayed events" + +#: ../../include/functions_reporting.php:9004 +#: ../../include/functions_reporting.php:9028 +msgid "Server health" +msgstr "Server health" + +#: ../../include/functions_reporting.php:9004 +#, php-format +msgid "%d Downed servers" +msgstr "%d servers down" + +#: ../../include/functions_reporting.php:9009 +#: ../../include/functions_reporting.php:9032 +msgid "Monitor health" +msgstr "Monitor health" + +#: ../../include/functions_reporting.php:9009 +#, php-format +msgid "%d Not Normal monitors" +msgstr "%d not normal monitors" + +#: ../../include/functions_reporting.php:9009 +#: ../../include/functions_reporting.php:9033 +msgid "of monitors up" +msgstr "of monitors up" + +#: ../../include/functions_reporting.php:9014 +#: ../../include/functions_reporting.php:9036 +msgid "Module sanity" +msgstr "Module sanity" + +#: ../../include/functions_reporting.php:9014 +#, php-format +msgid "%d Not inited monitors" +msgstr "%d not initialised monitors" + +#: ../../include/functions_reporting.php:9014 +#: ../../include/functions_reporting.php:9037 +msgid "of total modules inited" +msgstr "of total modules initialised" + +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:10095 +#: ../../include/functions_reporting.php:10105 +#, php-format +msgid "%d Fired alerts" +msgstr "%d triggered alerts" + +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:9041 +msgid "of defined alerts not fired" +msgstr "of defined alerts not triggered" + +#: ../../include/functions_reporting.php:9102 +msgid "Defined and fired alerts" +msgstr "Defined and triggered alerts" + +#: ../../include/functions_reporting.php:9281 +msgid "Defined users" +msgstr "Defined users" + +#: ../../include/functions_reporting.php:9952 +msgid "Agent without data" +msgstr "Agent without data" + +#: ../../include/functions_reporting.php:10091 +#, php-format +msgid "%d Normal modules" +msgstr "%d normal modules" + +#: ../../include/functions_reporting.php:10092 +#, php-format +msgid "%d Critical modules" +msgstr "%d critical modules" + +#: ../../include/functions_reporting.php:10093 +#, php-format +msgid "%d Warning modules" +msgstr "%d warning modules" + +#: ../../include/functions_reporting.php:10094 +#, php-format +msgid "%d Unknown modules" +msgstr "%d modules in unknown status" + +#: ../../include/functions_reporting.php:10099 +#, php-format +msgid "%d Total agents" +msgstr "%d total agents" + +#: ../../include/functions_reporting.php:10100 +#, php-format +msgid "%d Normal agents" +msgstr "%d agents in normal status" + +#: ../../include/functions_reporting.php:10101 +#, php-format +msgid "%d Critical agents" +msgstr "%d agents in critical status" + +#: ../../include/functions_reporting.php:10102 +#, php-format +msgid "%d Warning agents" +msgstr "%d agents in warning status" + +#: ../../include/functions_reporting.php:10103 +#, php-format +msgid "%d Unknown agents" +msgstr "%d unknown agents" + +#: ../../include/functions_reporting.php:10104 +#, php-format +msgid "%d not init agents" +msgstr "%d not initialized agents" + +#: ../../include/functions_reporting.php:11534 +msgid "Total running modules" +msgstr "Total running modules" + +#: ../../include/functions_reporting.php:11537 +#: ../../include/functions_reporting.php:11552 +#: ../../include/functions_reporting.php:11564 +#: ../../include/functions_reporting.php:11582 +#: ../../include/functions_reporting.php:11594 +#: ../../include/functions_reporting.php:11606 +#: ../../include/functions_reporting.php:11618 +msgid "Ratio" +msgstr "Ratio" + +#: ../../include/functions_reporting.php:11537 +#: ../../include/functions_reporting.php:11552 +#: ../../include/functions_reporting.php:11564 +#: ../../include/functions_reporting.php:11582 +#: ../../include/functions_reporting.php:11594 +#: ../../include/functions_reporting.php:11606 +#: ../../include/functions_reporting.php:11618 +msgid "Modules by second" +msgstr "Modules by second" + +#: ../../include/functions_reporting.php:11549 +msgid "Local modules" +msgstr "Local modules" + +#: ../../include/functions_reporting.php:11559 +msgid "Network modules" +msgstr "Network modules" + +#: ../../include/functions_reporting.php:11578 +msgid "Plugin modules" +msgstr "Plugin modules" + +#: ../../include/functions_reporting.php:11590 +msgid "Prediction modules" +msgstr "Prediction modules" + +#: ../../include/functions_reporting.php:11602 +msgid "WMI modules" +msgstr "WMI modules" + +#: ../../include/functions_reporting.php:11614 +msgid "Web modules" +msgstr "Web modules" + +#: ../../include/functions_reporting.php:11657 +#: ../../include/lib/Dashboard/Widgets/tactical.php:274 +msgid "Server performance" +msgstr "Server performance" + +#: ../../include/functions_reporting.php:11776 +msgid "Weekly:" +msgstr "Weekly:" + +#: ../../include/functions_reporting.php:11818 +msgid "Monthly:" +msgstr "Monthly:" + +#: ../../include/functions_reporting.php:11819 +msgid "From day" +msgstr "From (date):" + +#: ../../include/functions_reporting.php:11820 +msgid "To day" +msgstr "To day" + +#: ../../include/functions_reporting.php:12386 +msgid "Module Histogram Graph" +msgstr "Module histogram graph" + +#: ../../include/functions_filemanager.php:170 +#: ../../include/functions_filemanager.php:235 +#: ../../include/functions_filemanager.php:288 +#: ../../include/functions_filemanager.php:367 +msgid "Security error" +msgstr "Security error" + +#: ../../include/functions_filemanager.php:180 +msgid "Upload error" +msgstr "Upload error" + +#: ../../include/functions_filemanager.php:187 +#: ../../include/functions_filemanager.php:250 +#: ../../include/functions_filemanager.php:312 +msgid "Upload correct" +msgstr "Uploaded successfully" + +#: ../../include/functions_filemanager.php:200 +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:244 +msgid "Error creating file" +msgstr "Error creating file" + +#: ../../include/functions_filemanager.php:255 +#: ../../include/functions_filemanager.php:347 +msgid "Error creating file with empty name" +msgstr "Error creating a file with no name" + +#: ../../include/functions_filemanager.php:298 +msgid "Attach error" +msgstr "Attachment error" + +#: ../../include/functions_filemanager.php:343 +msgid "Directory created" +msgstr "Directory created" + +#: ../../include/functions_filemanager.php:548 +#: ../../include/functions_filemanager.php:776 +msgid "Create a Directory" +msgstr "" + +#: ../../include/functions_filemanager.php:552 +#: ../../include/functions_filemanager.php:783 +#: ../../include/functions_filemanager.php:784 +msgid "Create a Text" +msgstr "" + +#: ../../include/functions_filemanager.php:556 +#: ../../include/functions_filemanager.php:791 +#: ../../include/functions_filemanager.php:792 +msgid "Upload Files" +msgstr "" + +#: ../../include/functions_filemanager.php:587 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "Directory %s does not exist!" + +#: ../../include/functions_filemanager.php:636 +msgid "Parent directory" +msgstr "Parent directory" + +#: ../../include/functions_filemanager.php:650 +msgid "Directory" +msgstr "Directory" + +#: ../../include/functions_filemanager.php:658 +msgid "Compressed file" +msgstr "Compressed file" + +#: ../../include/functions_filemanager.php:662 +#: ../../include/functions_filemanager.php:669 +msgid "Text file" +msgstr "Text file" + +#: ../../include/functions_filemanager.php:702 +msgid "This file could be executed by any user" +msgstr "This file could be executed by any user." + +#: ../../include/functions_filemanager.php:703 +msgid "Make sure it can't perform dangerous tasks" +msgstr "Make sure it cannot perform dangerous tasks." + +#: ../../include/functions_filemanager.php:775 +#: ../../include/functions_filemanager.php:811 +msgid "Create directory" +msgstr "Create directory" + +#: ../../include/functions_filemanager.php:800 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "" +"Upload file in zip format in this directory, useful to upload multiple files" + +#: ../../include/functions_filemanager.php:800 +msgid "Decompress" +msgstr "Decompress" + +#: ../../include/functions_filemanager.php:819 +msgid "Create text" +msgstr "Create text" + +#: ../../include/functions_filemanager.php:827 +msgid "Upload file/s" +msgstr "Upload file(s)" + +#: ../../include/functions_filemanager.php:834 +msgid "The directory is read-only" +msgstr "This directory is read-only" + +#: ../../include/functions_tags.php:707 +msgid "Click here to open a popup window with URL tag" +msgstr "Click here to open a popup window with URL tag" + +#: ../../include/lib/Dashboard/Manager.php:468 +#, php-format +msgid "Copy of %s" +msgstr "Copy of %s" + +#: ../../include/lib/Dashboard/Manager.php:852 +msgid "Error create or update dashboard" +msgstr "" + +#: ../../include/lib/Dashboard/Manager.php:1304 +msgid "Icon image dashboard" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:430 +msgid "Please configure this widget before usage" +msgstr "Please configure this widget before using it" + +#: ../../include/lib/Dashboard/Widget.php:438 +msgid "Widget cannot be loaded" +msgstr "Error loading widget" + +#: ../../include/lib/Dashboard/Widget.php:442 +msgid "Please, configure the widget again to recover it" +msgstr "Please configure the widget again to recover it." + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:498 +msgid "General group status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:268 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:280 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:412 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:423 +#: ../../include/lib/Dashboard/Widgets/events_list.php:444 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:486 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:501 +#: ../../include/lib/Dashboard/Widgets/module_value.php:388 +#: ../../include/lib/Dashboard/Widgets/module_value.php:401 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:372 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:383 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:390 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:401 +#: ../../include/lib/Dashboard/Widgets/module_status.php:463 +#: ../../include/lib/Dashboard/Widgets/module_status.php:476 +msgid "You don't have access" +msgstr "You don't have access." + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:452 +msgid "Not agents in this group" +msgstr "No agents in this group" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:550 +msgid "Groups status" +msgstr "Groups status" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:287 +msgid "Alert Fired" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:455 +msgid "Modules in normal status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:471 +msgid "Modules in warning status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:488 +msgid "Modules in critical status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:529 +msgid "Not modules in this groups" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:481 +msgid "SLA percentage" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:343 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:407 +#: ../../include/lib/Dashboard/Widgets/module_value.php:324 +msgid "Text size of value in px" +msgstr "Text size of value in px" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:419 +#: ../../include/lib/Dashboard/Widgets/module_value.php:336 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:299 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:332 +#: ../../include/lib/Dashboard/Widgets/module_status.php:397 +msgid "Text size of label in px" +msgstr "Text size of label in px" + +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "Panel with a message" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:349 +msgid "General visual maps report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:236 +#: ../../operation/search_results.php:144 +msgid "Maps" +msgstr "Maps" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 +#, php-format +msgid "Welcome message to %s" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:37 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "" +"This is an example of a dashboard widget. A widget may contain elements" +msgstr "" +"This is an example of a dashboard widget. A widget may contain elements." + +#: ../../include/lib/Dashboard/Widgets/example.php:250 +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." + +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 +msgid "" +"To delete this message, click on the delete button on top right corner of " +"this element." +msgstr "" +"To delete this message, click on the delete button on the top right corner " +"of this element." + +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "" +"To do so, just click on the title and drag and drop it to the desired place." +msgstr "" +"To do so, just click on the title and drag and drop it to the desired place." + +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:170 +#: ../../include/lib/Dashboard/Widgets/network_map.php:414 +#: ../../operation/menu.php:177 +msgid "Network map" +msgstr "Network map" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:279 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "Introduce x-axis data. Right = positive / Left = negative" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:283 +msgid "X offset" +msgstr "X offset" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:294 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "Introduce Y-axis data. Top = positive / Bottom = negative" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:298 +msgid "Y offset" +msgstr "Y offset" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:322 +msgid "Zoom level" +msgstr "Zoom level" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:354 +msgid "Triggered alerts report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:327 +msgid "Not alert fired" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:336 +#: ../../include/lib/Dashboard/Widgets/events_list.php:429 +#: ../../include/lib/Dashboard/Widgets/events_list.php:436 +msgid "You must select some group" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:163 +#: ../../include/lib/Dashboard/Widgets/events_list.php:617 +msgid "List of latest events" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:311 +msgid "Limit" +msgstr "Limit" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:323 +#: ../../include/functions_events.php:3147 +#: ../../include/functions_events.php:3153 +#: ../../include/functions_events.php:3175 +msgid "All event" +msgstr "All events" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:324 +#: ../../include/functions_events.php:3149 +#: ../../include/functions_events.php:3183 +msgid "Only validated" +msgstr "Only validated events" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:325 +msgid "Only pending" +msgstr "Only pending" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:599 +msgid "There are no events matching selected search filters" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:170 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:372 +msgid "WUX transaction stats" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:268 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "WUX transaction" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:286 +msgid "View all statistics" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:557 +msgid "Icon and module value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:431 +#: ../../include/lib/Dashboard/Widgets/module_status.php:409 +msgid "Size of icon" +msgstr "Size of icon" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "Please configure this widget before using it." + +#: ../../include/lib/Dashboard/Widgets/module_value.php:173 +#: ../../include/lib/Dashboard/Widgets/module_value.php:443 +msgid "Module value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +msgid "Global status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:516 +msgid "Top N events by module" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "Amount to show" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:297 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:297 +msgid "No legend" +msgstr "No legend" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +msgid "Legend Position" +msgstr "Legend position" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:350 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:352 +msgid "Please select one or more groups." +msgstr "Please select one or more groups" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:402 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:398 +msgid "There is not data to show." +msgstr "There is no data to show." + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 +msgid "Show module value in a table" +msgstr "Show module value in a table" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:310 +msgid "Carriage Return" +msgstr "Carriage return" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:311 +msgid "Vertical Bar" +msgstr "Vertical bar" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 +msgid "Semicolon" +msgstr "Semicolon" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 +msgid "Colon" +msgstr "Colon" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 +msgid "Commas" +msgstr "Commas" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 +msgid "Blank" +msgstr "Blank" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:319 +msgid "Data separator" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:443 +msgid "Module in a table" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:448 +msgid "Module histogram" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:298 +msgid "The user doesn't have permission to read agents" +msgstr "The user does not have permission to read agents" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:309 +msgid "Missing Service id" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:163 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:244 +msgid "Agent/Module View" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:193 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:228 +msgid "This widget has been removed" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:420 +msgid "Defined custom graph" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:267 +#: ../../operation/reporting/graph_viewer.php:271 +msgid "Horizontal Bars" +msgstr "Horizontal bars" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:268 +#: ../../operation/reporting/graph_viewer.php:272 +msgid "Vertical Bars" +msgstr "Vertical bars" + +#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:392 +msgid "Agent module graph" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/reports.php:164 +#: ../../include/lib/Dashboard/Widgets/reports.php:370 +msgid "Custom report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:335 +msgid "Type tree" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:360 +msgid "Open all groups" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:380 +msgid "Agents status" +msgstr "Agents status" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:413 +msgid "Modules status" +msgstr "Modules status" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:425 +msgid "Filter modules" +msgstr "Filter modules" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:478 +#, php-format +msgid "" +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n.php:475 +msgid "Top N of agent modules" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:222 +msgid "" +"Case insensitive regular expression or string for module name. For example: " +".*usage.* will match: cpu_usage, vram usage." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:279 +msgid "Avg." +msgstr "Avg." + +#: ../../include/lib/Dashboard/Widgets/top_n.php:425 +msgid "There are no agents/modules found matching filter set" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tactical.php:262 +msgid "Status and Monitor checks" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +msgid "Digital" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:472 +msgid "Top N events by agent" +msgstr "" + +#: ../../include/lib/View.php:68 +#, php-format +msgid "View %s not found" +msgstr "" + +#: ../../include/functions_snmp_browser.php:524 +msgid "Numeric OID" +msgstr "Numeric OID" + +#: ../../include/functions_snmp_browser.php:542 +msgid "Syntax" +msgstr "Syntax" + +#: ../../include/functions_snmp_browser.php:548 +msgid "Display hint" +msgstr "Display hint" + +#: ../../include/functions_snmp_browser.php:554 +msgid "Max access" +msgstr "Max. access" + +#: ../../include/functions_snmp_browser.php:576 +msgid "OID Information" +msgstr "OID Information" + +#: ../../include/functions_snmp_browser.php:611 +msgid "Create agent module" +msgstr "" + +#: ../../include/functions_snmp_browser.php:669 +msgid "Starting OID" +msgstr "Starting OID" + +#: ../../include/functions_snmp_browser.php:718 +msgid "Server to execute" +msgstr "Server to execute" + +#: ../../include/functions_snmp_browser.php:721 +msgid "Browse" +msgstr "Browse" + +#: ../../include/functions_snmp_browser.php:767 +msgid "First match" +msgstr "First match" + +#: ../../include/functions_snmp_browser.php:768 +msgid "Previous match" +msgstr "Previous match" + +#: ../../include/functions_snmp_browser.php:769 +msgid "Next match" +msgstr "Next match" + +#: ../../include/functions_snmp_browser.php:770 +msgid "Last match" +msgstr "Last match" + +#: ../../include/functions_snmp_browser.php:777 +msgid "Expand the tree (can be slow)" +msgstr "Expand tree (this could take some time)" + +#: ../../include/functions_snmp_browser.php:782 +msgid "Collapse the tree" +msgstr "Collapse tree" + +#: ../../include/functions_snmp_browser.php:802 +msgid "SNMP v3 options" +msgstr "SNMP v3 settings" + +#: ../../include/functions_snmp_browser.php:805 +msgid "Search options" +msgstr "Search options" + +#: ../../include/functions_snmp_browser.php:815 +msgid "Search matches" +msgstr "Search matches" + +#: ../../include/functions_snmp_browser.php:830 +msgid "Create agent modules" +msgstr "" + +#: ../../include/functions_snmp_browser.php:839 +msgid "Create policy modules" +msgstr "" + +#: ../../include/functions_snmp_browser.php:848 +msgid "Create network components" +msgstr "Create network components" + +#: ../../include/functions_snmp_browser.php:1187 +msgid " available" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1189 +msgid " to apply" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1210 +#: ../../operation/snmpconsole/snmp_browser.php:476 +msgid "Create new policy" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1241 +msgid "Undo" +msgstr "" + +#: ../../include/chart_generator.php:114 +#: ../../operation/agentes/stat_win.php:37 +#: ../../operation/agentes/realtime_win.php:37 +#: ../../operation/agentes/interface_traffic_graph_win.php:42 +msgid "There was a problem connecting with the node" +msgstr "There was a problem connecting with the node" + +#: ../../include/functions_groups.php:75 +msgid "Alert Actions" +msgstr "Alert actions" + +#: ../../include/functions_groups.php:91 +msgid "Alert Templates" +msgstr "Alert templates" + +#: ../../include/functions_groups.php:155 +msgid "Layout visual console" +msgstr "Visual console layout" + +#: ../../include/functions_groups.php:171 +msgid "Plannet down time" +msgstr "Planned downtime" + +#: ../../include/functions_groups.php:203 +msgid "GIS maps" +msgstr "GIS maps" + +#: ../../include/functions_groups.php:219 +msgid "GIS connections" +msgstr "GIS connections" + +#: ../../include/functions_groups.php:235 +msgid "GIS map layers" +msgstr "GIS map layers" + +#: ../../include/functions_groups.php:251 +msgid "Network maps" +msgstr "Network maps" + +#: ../../include/functions_events.php:132 +msgid "NEW" +msgstr "" + +#: ../../include/functions_events.php:135 +msgid "IN PROCESS" +msgstr "" + +#: ../../include/functions_events.php:138 +msgid "VALIDATED" +msgstr "" + +#: ../../include/functions_events.php:197 +msgid "Agent module" +msgstr "Agent module" + +#: ../../include/functions_events.php:2379 +#: ../../operation/agentes/tactical.php:197 +msgid "Latest events" +msgstr "Latest events" + +#: ../../include/functions_events.php:2516 +msgid "Events -by module-" +msgstr "Events -by module-" + +#: ../../include/functions_events.php:2522 +#: ../../operation/agentes/tactical.php:214 +#: ../../operation/events/event_statistics.php:51 +msgid "Event graph" +msgstr "Event graph" + +#: ../../include/functions_events.php:2524 +#: ../../operation/agentes/tactical.php:217 +#: ../../operation/events/event_statistics.php:71 +msgid "Event graph by agent" +msgstr "Event graph by agent" + +#: ../../include/functions_events.php:2650 +msgid "Going to unknown" +msgstr "Changing to unknown" + +#: ../../include/functions_events.php:2658 +msgid "Alert manually validated" +msgstr "Alert manually validated" + +#: ../../include/functions_events.php:2662 +msgid "Going from critical to warning" +msgstr "Changing from critical to warning status" + +#: ../../include/functions_events.php:2668 +msgid "Going up to critical state" +msgstr "" + +#: ../../include/functions_events.php:2674 +msgid "Going up to normal state" +msgstr "Changing up to normal status" + +#: ../../include/functions_events.php:2678 +msgid "Going down from normal to warning" +msgstr "Changing from normal to warning status" + +#: ../../include/functions_events.php:2690 +msgid "Discovery server detected a new host" +msgstr "" + +#: ../../include/functions_events.php:2694 +msgid "New agent created" +msgstr "New agent created" + +#: ../../include/functions_events.php:2711 +msgid "Unknown type:" +msgstr "Unknown status:" + +#: ../../include/functions_events.php:3148 +#: ../../include/functions_events.php:3179 +msgid "Only new" +msgstr "Only new events" + +#: ../../include/functions_events.php:3150 +#: ../../include/functions_events.php:3187 +msgid "Only in process" +msgstr "Only in process" + +#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3191 +msgid "Only not validated" +msgstr "Only not validated" + +#: ../../include/functions_events.php:3156 +#: ../../include/functions_events.php:3434 +#: ../../include/functions_events.php:3443 +msgid "In process" +msgstr "In process" + +#: ../../include/functions_events.php:3157 +msgid "Not Validated" +msgstr "Not validated" + +#: ../../include/functions_events.php:3342 +msgid "Change owner" +msgstr "Change owner" + +#: ../../include/functions_events.php:3418 +msgid "Change status" +msgstr "Change status" + +#: ../../include/functions_events.php:3501 +#: ../../include/functions_events.php:4810 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:365 +msgid "Add comment" +msgstr "Add comment" + +#: ../../include/functions_events.php:3521 +#: ../../include/functions_events.php:3525 +#: ../../include/functions_events.php:6604 +#: ../../operation/events/events.php:1911 +#: ../../operation/events/events.build_table.php:867 +msgid "Delete event" +msgstr "Delete event" + +#: ../../include/functions_events.php:3545 +msgid "Custom responses" +msgstr "Custom responses" + +#: ../../include/functions_events.php:3979 +msgid "Extended information" +msgstr "" + +#: ../../include/functions_events.php:4007 +msgid "There was an error connecting to the node" +msgstr "There was an error connecting to the node" + +#: ../../include/functions_events.php:4044 +msgid "Agent details" +msgstr "Agent details" + +#: ../../include/functions_events.php:4101 +msgid "View custom fields" +msgstr "View custom fields" + +#: ../../include/functions_events.php:4124 +msgid "Module details" +msgstr "Module details" + +#: ../../include/functions_events.php:4140 +msgid "No assigned" +msgstr "Not assigned" + +#: ../../include/functions_events.php:4230 +#: ../../include/functions_events.php:4236 +msgid "Go to data overview" +msgstr "Go to data overview" + +#: ../../include/functions_events.php:4336 +#, php-format +msgid "Invalid custom data: %s" +msgstr "Invalid custom data: %s" + +#: ../../include/functions_events.php:4511 +msgid "First event" +msgstr "First event" + +#: ../../include/functions_events.php:4511 +msgid "Last event" +msgstr "Last event" + +#: ../../include/functions_events.php:4648 +msgid "ID extra" +msgstr "Extra ID" + +#: ../../include/functions_events.php:4701 +msgid "There are no comments" +msgstr "There are no comments." + +#: ../../include/functions_events.php:4820 +msgid "" +"If event replication is ongoing, it won't be possible to enter comments " +"here. This option is only to allow local pandora users to see comments, but " +"not to operate with them. The operation, when event replication is enabled, " +"must be done only in the Metaconsole." +msgstr "" + +#: ../../include/functions_events.php:5005 +msgid "Pandora System" +msgstr "Pandora FMS System" + +#: ../../include/functions_events.php:5550 +#: ../../include/functions_events.php:5557 +#: ../../operation/snmpconsole/snmp_view.php:563 +#: ../../operation/snmpconsole/snmp_view.php:876 +#: ../../operation/snmpconsole/snmp_view.php:1162 +msgid "Not validated" +msgstr "Not validated" + +#: ../../include/functions_events.php:6064 +msgid "Agent Module" +msgstr "Agent module" + +#: ../../include/functions_events.php:6590 +#: ../../operation/events/events.php:1887 +#: ../../operation/events/events.build_table.php:843 +msgid "Validate event" +msgstr "Validate event" + +#: ../../include/functions_events.php:6613 +#: ../../operation/events/events.build_table.php:877 +msgid "Is not allowed delete events in process" +msgstr "You cannot delete events in process." + +#: ../../include/functions_planned_downtimes.php:577 +msgid "Succesful stopped the Downtime" +msgstr "Downtime has been stopped successfully" + +#: ../../include/functions_planned_downtimes.php:578 +msgid "Unsuccesful stopped the Downtime" +msgstr "Downtime could not be stopped" + +#: ../../include/functions_planned_downtimes.php:718 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "%s elements enabled from the downtime" + +#: ../../include/functions_planned_downtimes.php:777 +msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:782 +msgid "The execution must be once or periodically" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:787 +msgid "The periodicity must be weekly or monthly" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:792 +msgid "There is no user with such id" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:797 +msgid "There is no group with such id" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:802 +msgid "Date is wrong formatted" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:909 +msgid "This planned downtime are executed now. Can't delete in this moment." +msgstr "" +"This planned downtime is active now. It cannot be deleted at the moment." + +#: ../../include/functions_planned_downtimes.php:916 +msgid "Deleted this planned downtime successfully." +msgstr "Planned downtime deleted successfully" + +#: ../../include/functions_planned_downtimes.php:918 +msgid "Problems for deleted this planned downtime." +msgstr "Error deleting this planned downtime" + +#: ../../include/functions_update_manager.php:130 +#, php-format +msgid "%s configuration wizard" +msgstr "" + +#: ../../include/functions_update_manager.php:133 +#, php-format +msgid "" +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "" + +#: ../../include/functions_update_manager.php:190 +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 in " +"order to avoid inconsistency." + +#: ../../include/functions_update_manager.php:196 +msgid "E-mail for receiving alerts" +msgstr "E-mail for receiving alerts" + +#: ../../include/functions_update_manager.php:221 +msgid "All fields required" +msgstr "All fields required" + +#: ../../include/functions_update_manager.php:230 +msgid "Are you sure you don't want to configure a base email?" +msgstr "Are you sure you don't want to configure a base e-mail?" + +#: ../../include/functions_update_manager.php:232 +msgid "" +"You could change this options later in \"alert actions\" and setting your " +"account." +msgstr "" + +#: ../../include/functions_update_manager.php:446 +msgid "Register to Update Manager" +msgstr "" + +#: ../../include/functions_update_manager.php:454 +#, php-format +msgid "Keep this %s console up to date with latest updates." +msgstr "" + +#: ../../include/functions_update_manager.php:461 +#, php-format +msgid "" +"When you subscribe to the %s Update Manager service, you accept that we " +"register your %s instance as an identifier on a database owned by %s. This " +"data will solely be used to provide you with information about %s and will " +"not be conceded to third parties. You can unregister from said database at " +"any time from the Update Manager options." +msgstr "" + +#: ../../include/functions_update_manager.php:477 +#: ../../include/functions_update_manager.php:771 +msgid "OK!" +msgstr "" + +#: ../../include/functions_update_manager.php:493 +msgid "Are you sure you don't want to use update manager?" +msgstr "" + +#: ../../include/functions_update_manager.php:495 +msgid "" +"You will need to update your system manually, through source code or RPM " +"packages to be up to date with latest updates." +msgstr "" + +#: ../../include/functions_update_manager.php:714 +msgid "Do you want to be up to date?" +msgstr "" + +#: ../../include/functions_update_manager.php:722 +#: ../../operation/users/user_edit.php:429 +msgid "Subscribe to our newsletter" +msgstr "Subscribe to our newsletter" + +#: ../../include/functions_update_manager.php:731 +#, php-format +msgid "" +"By subscribing to the newsletter, you accept that your email will be " +"transferred to a database owned by %s. These data will be used only to " +"provide you with information about %s and will not be given to third " +"parties. You can unsubscribe from this database at any time from the " +"newsletter subscription options." +msgstr "" +"By subscribing to the newsletter, you accept that your e-mail will be " +"transferred to a database owned by %s. These data will be used only to " +"provide you with information about %s and will not be given to third " +"parties. You can unsubscribe from this database at any time from the " +"newsletter subscription options." + +#: ../../include/functions_update_manager.php:788 +msgid "Are you sure you don't want to subscribe?" +msgstr "" + +#: ../../include/functions_update_manager.php:790 +msgid "You will miss all news about amazing features and fixes!" +msgstr "" + +#: ../../include/functions_update_manager.php:869 +msgid "You must specify an email" +msgstr "You must specify an e-mail" + +#: ../../include/functions_update_manager.php:1121 +#: ../../include/functions_update_manager.php:1151 +#, php-format +msgid "Line \"%s\" not copied to the progress file." +msgstr "" + +#: ../../include/functions_update_manager.php:1195 +msgid "There is a unknown error." +msgstr "There is a unknown error." + +#: ../../include/functions_update_manager.php:1548 +msgid "Remote server error on newsletter request" +msgstr "Remote server error on newsletter request" + +#: ../../include/functions_update_manager.php:1558 +msgid "E-mail successfully subscribed to newsletter." +msgstr "E-mail successfully subscribed to newsletter" + +#: ../../include/functions_update_manager.php:1563 +msgid "E-mail has already subscribed to newsletter." +msgstr "E-mail is already subscribed to the newsletter" + +#: ../../include/functions_update_manager.php:1570 +#: ../../include/functions_update_manager.php:1651 +msgid "Update manager returns error code: " +msgstr "Update manager returns error code: " + +#: ../../include/functions_update_manager.php:1607 +msgid "Error while registering console." +msgstr "" + +#: ../../include/functions_update_manager.php:1639 +msgid "Pandora successfully subscribed with UID: " +msgstr "Pandora FMS successfully subscribed with UID: " + +#: ../../include/functions_update_manager.php:1644 +msgid "Unsuccessful subscription." +msgstr "Unsuccessful subscription" + +#: ../../include/functions_update_manager.php:1722 +msgid "Failed extracting the package to temp directory." +msgstr "Error extracting the package to the temp directory" + +#: ../../include/functions_update_manager.php:1772 +msgid "Failed the copying of the files." +msgstr "Error copying the files" + +#: ../../include/functions_update_manager.php:1792 +msgid "Package extracted successfully." +msgstr "Package extracted successfully" + +#: ../../index.php:908 +msgid "User doesn\\'t exist." +msgstr "User does not exist" + +#: ../../index.php:927 +msgid "User only can use the API." +msgstr "The user can only use the API" + +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:26 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "Zero results found" + +#: ../../operation/search_users.php:38 +msgid "Profile" +msgstr "Profile" + +#: ../../operation/tree.php:103 +#, php-format +msgid "Sort the agents by %s" +msgstr "Sort the agents by %s" + +#: ../../operation/tree.php:106 +msgid "tags" +msgstr "tags" + +#: ../../operation/tree.php:114 +msgid "groups" +msgstr "groups" + +#: ../../operation/tree.php:118 +msgid "module groups" +msgstr "module groups" + +#: ../../operation/tree.php:127 +msgid "policies" +msgstr "policies" + +#: ../../operation/tree.php:166 +msgid "Search group" +msgstr "Search group" + +#: ../../operation/tree.php:170 ../../operation/tree.php:213 +msgid "Show not init modules" +msgstr "" + +#: ../../operation/tree.php:179 +msgid "Search agent" +msgstr "Search agent" + +#: ../../operation/tree.php:182 +msgid "Show not init agents" +msgstr "" + +#: ../../operation/tree.php:185 +msgid "Show full hirearchy" +msgstr "Show full hierarchy" + +#: ../../operation/tree.php:210 +msgid "Search module" +msgstr "Search module" + +#: ../../operation/tree.php:242 +msgid "Tree search" +msgstr "Tree search" + +#: ../../operation/tree.php:348 +msgid "Groups found" +msgstr "" + +#: ../../operation/tree.php:441 ../../operation/agentes/status_monitor.php:1836 +#: ../../operation/agentes/estado_monitores.php:414 +msgid "Module: " +msgstr "Module: " + +#: ../../operation/users/user_edit.php:164 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" +msgstr "" +"The passwords did not match or another problem occurred during password " +"update." + +#: ../../operation/users/user_edit.php:177 +#: ../../operation/users/user_edit.php:192 +msgid "Password successfully updated" +msgstr "Password successfully updated" + +#: ../../operation/users/user_edit.php:187 +#: ../../operation/users/user_edit.php:233 +msgid "Error updating user info" +msgstr "Error updating user info" + +#: ../../operation/users/user_edit.php:195 +msgid "No changes have been made" +msgstr "" + +#: ../../operation/users/user_edit.php:206 +msgid "Please enter a valid email" +msgstr "Please enter a valid e-mail" + +#: ../../operation/users/user_edit.php:208 +msgid "Please enter a valid phone number" +msgstr "" + +#: ../../operation/users/user_edit.php:214 +msgid "Error updating passwords: " +msgstr "" + +#: ../../operation/users/user_edit.php:238 +msgid "Edit my User" +msgstr "Edit my user" + +#: ../../operation/users/user_edit.php:284 +msgid "" +"You cannot change your password under the current authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:298 +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:404 +msgid "Show information" +msgstr "Show information" + +#: ../../operation/users/user_edit.php:412 +msgid "Event filter" +msgstr "Event filter" + +#: ../../operation/users/user_edit.php:425 +msgid "Newsletter Subscribed" +msgstr "Subscribed to newsletter" + +#: ../../operation/users/user_edit.php:427 +#, php-format +msgid "Already subscribed to %s newsletter" +msgstr "" + +#: ../../operation/users/user_edit.php:430 +msgid "Newsletter Reminder" +msgstr "Newsletter reminder" + +#: ../../operation/users/user_edit.php:503 +msgid "Autorefresh" +msgstr "Autorefresh" + +#: ../../operation/users/user_edit.php:504 +msgid "This will activate autorefresh in selected pages" +msgstr "This will activate autorefresh in selected pages" + +#: ../../operation/users/user_edit.php:539 +msgid "Full list of pages" +msgstr "Full list of pages" + +#: ../../operation/users/user_edit.php:548 +#: ../../operation/users/user_edit.php:549 +msgid "Push selected pages into autorefresh list" +msgstr "Push selected pages into autorefresh list" + +#: ../../operation/users/user_edit.php:557 +#: ../../operation/users/user_edit.php:558 +msgid "Pop selected pages out of autorefresh list" +msgstr "Pop selected pages out of autorefresh list" + +#: ../../operation/users/user_edit.php:563 +msgid "List of pages with autorefresh" +msgstr "List of pages with autorefresh" + +#: ../../operation/users/user_edit.php:572 +msgid "Time autorefresh" +msgstr "Time autorefresh" + +#: ../../operation/users/user_edit.php:574 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, " +"needing to enable the autorefresh first" +msgstr "" + +#: ../../operation/users/user_edit.php:668 +msgid "eHorus user configuration" +msgstr "" + +#: ../../operation/users/user_edit.php:673 +msgid "eHorus user acces enabled" +msgstr "" + +#: ../../operation/users/user_edit.php:711 +msgid "" +"You can not change your user info under the current authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:786 +msgid "This user doesn't have any assigned profile/group." +msgstr "This user does not have any profile/group assigned." + +#: ../../operation/users/user_edit.php:990 +msgid "Double autentication information" +msgstr "Double autentication information" + +#: ../../operation/users/user_edit.php:1053 +#: ../../operation/users/user_edit.php:1129 +msgid "Double autentication activation" +msgstr "Double autentication activation" + +#: ../../operation/users/user_edit.php:1079 +msgid "The double authentication will be deactivated" +msgstr "Double authentication will be deactivated" + +#: ../../operation/users/user_edit.php:1080 +msgid "Deactivate" +msgstr "Deactivate" + +#: ../../operation/users/user_edit.php:1112 +msgid "The double autentication was deactivated successfully" +msgstr "Double authentication deactivated successfully" + +#: ../../operation/users/user_edit.php:1115 +#: ../../operation/users/user_edit.php:1119 +msgid "There was an error deactivating the double autentication" +msgstr "Error deactivating the double authentication" + +#: ../../operation/users/user_edit_header.php:98 +msgid "User notifications" +msgstr "" + +#: ../../operation/users/user_edit_header.php:121 ../../operation/menu.php:469 +msgid "Workspace" +msgstr "Workspace" + +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Also receive an email" +msgstr "Also receive an e-mail" + +#: ../../operation/search_helps.php:19 +msgid "Zero results found." +msgstr "Zero results found" + +#: ../../operation/search_helps.php:20 +#, php-format +msgid "" +"You can find more help in the wiki" +msgstr "" + +#: ../../operation/search_helps.php:33 +msgid "Matches" +msgstr "Matches" + +#: ../../operation/visual_console/view.php:291 +msgid "Delete Item" +msgstr "" + +#: ../../operation/visual_console/view.php:297 +msgid "Copy Item" +msgstr "" + +#: ../../operation/visual_console/view.php:562 +msgid "Are you sure" +msgstr "" + +#: ../../operation/visual_console/legacy_public_view.php:147 +#: ../../operation/visual_console/public_view.php:131 +msgid "QR code of the page" +msgstr "Page QR Code" + +#: ../../operation/visual_console/legacy_public_view.php:176 +#: ../../operation/visual_console/legacy_view.php:304 +msgid "Until refresh" +msgstr "Until refreshed" + +#: ../../operation/agentes/stat_win.php:71 +#, php-format +msgid "%s Graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:96 +msgid "CSV Export Information" +msgstr "" + +#: ../../operation/agentes/stat_win.php:97 +msgid "The CSV export has been successful." +msgstr "" + +#: ../../operation/agentes/stat_win.php:105 +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:243 +#: ../../operation/agentes/interface_traffic_graph_win.php:191 +msgid "Refresh time" +msgstr "Refresh time" + +#: ../../operation/agentes/stat_win.php:263 +#: ../../operation/agentes/interface_traffic_graph_win.php:204 +msgid "Begin time" +msgstr "Start time" + +#: ../../operation/agentes/stat_win.php:270 +msgid "Zoom" +msgstr "Zoom" + +#: ../../operation/agentes/stat_win.php:284 +#: ../../operation/agentes/interface_traffic_graph_win.php:210 +#: ../../operation/agentes/graphs.php:211 +#: ../../operation/reporting/graph_viewer.php:255 +msgid "Time range" +msgstr "Time range" + +#: ../../operation/agentes/stat_win.php:298 +#: ../../operation/agentes/graphs.php:215 +msgid "Show events" +msgstr "Show events" + +#: ../../operation/agentes/stat_win.php:315 +#, php-format +msgid "" +"'Show events' is disabled because this %s node is set to event replication." +msgstr "" + +#: ../../operation/agentes/stat_win.php:324 +#: ../../operation/agentes/graphs.php:217 +msgid "Show alerts" +msgstr "Show alerts" + +#: ../../operation/agentes/stat_win.php:341 +#: ../../operation/agentes/interface_traffic_graph_win.php:216 +msgid "Show percentil" +msgstr "Show percentile" + +#: ../../operation/agentes/stat_win.php:404 +#: ../../operation/agentes/interface_traffic_graph_win.php:266 +msgid "Graph configuration menu" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:192 +msgid "Insufficient permissions to validate alerts" +msgstr "Insufficient permissions to validate alerts" + +#: ../../operation/agentes/alerts_status.php:716 +msgid "Full list of alerts" +msgstr "Full list of alerts" + +#: ../../operation/agentes/gis_view.php:93 +msgid "Period to show data as path" +msgstr "Period to show data as path" + +#: ../../operation/agentes/gis_view.php:97 +msgid "Refresh path" +msgstr "Refresh path" + +#: ../../operation/agentes/gis_view.php:155 +msgid "This agent doesn't have any GIS data." +msgstr "This agent does not have any GIS data." + +#: ../../operation/agentes/gis_view.php:167 +msgid "Positional data from the last" +msgstr "Positional data from the last" + +#: ../../operation/agentes/gis_view.php:206 +#, php-format +msgid "%s Km" +msgstr "%s Km" + +#: ../../operation/agentes/gis_view.php:220 +msgid "Distance" +msgstr "Distance" + +#: ../../operation/agentes/gis_view.php:221 +msgid "# of Packages" +msgstr "No. of packages" + +#: ../../operation/agentes/gis_view.php:222 +#: ../../operation/gis_maps/ajax.php:242 +msgid "Manual placement" +msgstr "Manual placement" + +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.excel.php:66 +msgid "Invalid time specified" +msgstr "Invalid time specified" + +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.excel.php:161 +msgid "No modules specified" +msgstr "No modules specified" + +#: ../../operation/agentes/estado_agente.php:206 +msgid "Sucessfully deleted agent" +msgstr "Agent sucessfully deleted" + +#: ../../operation/agentes/estado_agente.php:208 +msgid "There was an error message deleting the agent" +msgstr "An error message appeared when deleting the agent" + +#: ../../operation/agentes/estado_agente.php:249 +msgid "Search in custom fields" +msgstr "Search in custom fields" + +#: ../../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:97 ../../operation/agentes/ehorus.php:134 +msgid "There was an error retrieving an authorization token" +msgstr "Error retrieving an authorization token" + +#: ../../operation/agentes/ehorus.php:109 +#: ../../operation/agentes/ehorus.php:146 +#: ../../operation/agentes/ehorus.php:182 +msgid "There was an error processing the response" +msgstr "Error processing the response" + +#: ../../operation/agentes/ehorus.php:170 +msgid "There was an error retrieving the agent data" +msgstr "Error retrieving the agent data" + +#: ../../operation/agentes/ehorus.php:187 +msgid "Remote management of this agent with eHorus" +msgstr "Remote management of this agent with eHorus" + +#: ../../operation/agentes/ehorus.php:189 +msgid "Launch" +msgstr "Launch" + +#: ../../operation/agentes/ehorus.php:195 +msgid "The connection was lost and the authorization token was expired" +msgstr "The connection was lost and the authorization token has expired." + +#: ../../operation/agentes/ehorus.php:195 +msgid "Reload the page to request a new authorization token" +msgstr "Reload the page to request a new authorization token" + +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 +msgid "Latest events for this agent" +msgstr "Latest events for this agent" + +#: ../../operation/agentes/networkmap.dinamic.php:101 +#: ../../operation/agentes/pandora_networkmap.view.php:803 +#: ../../operation/snmpconsole/snmp_statistics.php:41 +#: ../../operation/snmpconsole/snmp_browser.php:52 +#: ../../operation/snmpconsole/snmp_view.php:85 +msgid "Normal screen" +msgstr "Normal screen" + +#: ../../operation/agentes/networkmap.dinamic.php:119 +#: ../../operation/agentes/pandora_networkmap.view.php:821 +msgid "List of networkmap" +msgstr "List of networkmap" + +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 +msgid "empty" +msgstr "empty" + +#: ../../operation/agentes/realtime_win.php:64 +#, php-format +msgid "%s Realtime Module Graph" +msgstr "" + +#: ../../operation/agentes/realtime_win.php:87 +msgid "Realtime extension is not enabled." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:352 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:571 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:125 +#: ../../operation/agentes/pandora_networkmap.php:366 +msgid "Succesfully created" +msgstr "Successfully created" + +#: ../../operation/agentes/pandora_networkmap.php:201 +#: ../../operation/agentes/pandora_networkmap.php:499 +msgid "Succesfully updated" +msgstr "Successfully updated" + +#: ../../operation/agentes/pandora_networkmap.php:524 +msgid "Succesfully duplicate" +msgstr "Successfully duplicated" + +#: ../../operation/agentes/pandora_networkmap.php:538 +msgid "Succesfully deleted" +msgstr "Successfully deleted" + +#: ../../operation/agentes/pandora_networkmap.php:774 +msgid "Empty map" +msgstr "Empty map" + +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Pending to generate" +msgstr "Pending to generate" + +#: ../../operation/agentes/pandora_networkmap.php:806 +msgid "There are no maps defined." +msgstr "No maps defined" + +#: ../../operation/agentes/pandora_networkmap.php:813 +msgid "Create network map" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:821 +msgid "Create empty network map" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:60 +msgid "In" +msgstr "In" + +#: ../../operation/agentes/interface_traffic_graph_win.php:61 +msgid "Out" +msgstr "Out" + +#: ../../operation/agentes/interface_traffic_graph_win.php:77 +#, php-format +msgid "%s Interface Graph" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:233 +msgid "Zoom factor" +msgstr "Zoom factor" + +#: ../../operation/agentes/interface_traffic_graph_win.php:240 +msgid "Full" +msgstr "" + +#: ../../operation/agentes/graphs.php:143 +msgid "Other modules" +msgstr "Other modules" + +#: ../../operation/agentes/graphs.php:150 +msgid "Modules network no proc" +msgstr "Modules network no proc" + +#: ../../operation/agentes/graphs.php:157 +msgid "Modules boolean" +msgstr "Modules boolean" + +#: ../../operation/agentes/graphs.php:217 +msgid "the combined graph does not show the alerts into this graph" +msgstr "The combined graph does not show the alerts in this graph." + +#: ../../operation/agentes/graphs.php:219 +msgid "Show as one combined graph" +msgstr "Show as a single combined graph" + +#: ../../operation/agentes/graphs.php:221 +msgid "several graphs for each module" +msgstr "Several graphs per module" + +#: ../../operation/agentes/graphs.php:222 +msgid "One combined graph" +msgstr "One combined graph" + +#: ../../operation/agentes/graphs.php:230 +#: ../../operation/agentes/graphs.php:406 +msgid "Area stack" +msgstr "Area stack" + +#: ../../operation/agentes/graphs.php:232 +#: ../../operation/agentes/graphs.php:414 +msgid "Line stack" +msgstr "Line stack" + +#: ../../operation/agentes/graphs.php:249 +msgid "Save as custom graph" +msgstr "Save as a custom graph" + +#: ../../operation/agentes/graphs.php:262 +msgid "Filter graphs" +msgstr "Filter graphs" + +#: ../../operation/agentes/graphs.php:289 +msgid "There was an error loading the graph" +msgstr "There was an error loading the graph" + +#: ../../operation/agentes/graphs.php:297 +#: ../../operation/agentes/graphs.php:301 +msgid "Name custom graph" +msgstr "Name the custom graph" + +#: ../../operation/agentes/graphs.php:347 +msgid "Save custom graph" +msgstr "Save custom graph" + +#: ../../operation/agentes/graphs.php:368 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "Custom graph created from the tab graphs in the agent." + +#: ../../operation/agentes/datos_agente.php:173 +msgid "Received data from" +msgstr "Received data from" + +#: ../../operation/agentes/datos_agente.php:180 +msgid "Main database" +msgstr "Main database" + +#: ../../operation/agentes/datos_agente.php:181 +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:211 +#: ../../operation/agentes/alerts_status.functions.php:101 +msgid "Free text for search" +msgstr "Free text for search" + +#: ../../operation/agentes/snapshot_view.php:42 +msgid "Cannot connect with node to display the module data." +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:85 +#, php-format +msgid "%s Snapshot data view for module (%s)" +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:91 +#, php-format +msgid "Current data at %s" +msgstr "" + +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:537 +msgid "Export data" +msgstr "Export data" + +#: ../../operation/agentes/exportdata.php:282 +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:358 +msgid "Export type" +msgstr "Export type" + +#: ../../operation/agentes/exportdata.php:363 +msgid "MS Excel" +msgstr "MS Excel" + +#: ../../operation/agentes/exportdata.php:364 +msgid "Average per hour/day" +msgstr "Average per hour/day" + +#: ../../operation/agentes/custom_fields.php:59 +msgid "No fields defined" +msgstr "No fields defined" + +#: ../../operation/agentes/status_monitor.php:66 ../../operation/menu.php:60 +msgid "Monitor detail" +msgstr "Monitor detail" + +#: ../../operation/agentes/status_monitor.php:79 +msgid "Monitor view" +msgstr "Monitor view" + +#: ../../operation/agentes/status_monitor.php:531 +msgid "Wux server module" +msgstr "WUX server module" + +#: ../../operation/agentes/status_monitor.php:552 +msgid "Min. hours in current status" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:711 +msgid "Advanced Options" +msgstr "Advanced options" + +#: ../../operation/agentes/status_monitor.php:1144 +msgid "Data Type" +msgstr "Data type" + +#: ../../operation/agentes/status_monitor.php:1263 +#: ../../operation/agentes/pandora_networkmap.view.php:281 +msgid "(Adopt) " +msgstr "(Adopted) " + +#: ../../operation/agentes/status_monitor.php:1271 +#: ../../operation/agentes/pandora_networkmap.view.php:289 +msgid "(Unlinked) (Adopt) " +msgstr "(Unlinked) (Adopted) " + +#: ../../operation/agentes/status_monitor.php:1274 +#: ../../operation/agentes/pandora_networkmap.view.php:292 +msgid "(Unlinked) " +msgstr "(Unlinked) " + +#: ../../operation/agentes/status_monitor.php:1745 +msgid "This group doesn't have any monitor" +msgstr "This group does not have any monitor" + +#: ../../operation/agentes/status_monitor.php:1747 +msgid "Sorry no search parameters" +msgstr "" + +#: ../../operation/agentes/group_view.php:151 +msgid "Summary of the status groups" +msgstr "Summary of the status groups" + +#: ../../operation/agentes/estado_monitores.php:51 +msgid "Tag's information" +msgstr "Tag information" + +#: ../../operation/agentes/estado_monitores.php:102 +msgid "Relationship information" +msgstr "Relationship information" + +#: ../../operation/agentes/estado_monitores.php:153 +msgid "No initialized modules found." +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:174 +msgid "List of modules" +msgstr "List of modules" + +#: ../../operation/agentes/estado_monitores.php:175 +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:511 +msgid "Status:" +msgstr "Status:" + +#: ../../operation/agentes/estado_monitores.php:517 +msgid "Not Normal" +msgstr "Not normal" + +#: ../../operation/agentes/estado_monitores.php:532 +#: ../../operation/agentes/alerts_status.functions.php:161 +msgid "Free text for search (*):" +msgstr "Free text for search (*):" + +#: ../../operation/agentes/estado_monitores.php:533 +msgid "Search by module name, list matches." +msgstr "Search by module name, list matches" + +#: ../../operation/agentes/pandora_networkmap.view.php:149 +msgid "Success be updated." +msgstr "Updated successfully" + +#: ../../operation/agentes/pandora_networkmap.view.php:246 +msgid "Name: " +msgstr "Name: " + +#: ../../operation/agentes/pandora_networkmap.view.php:296 +msgid "Policy: " +msgstr "Policy: " + +#: ../../operation/agentes/pandora_networkmap.view.php:393 +msgid "Data: " +msgstr "Data: " + +#: ../../operation/agentes/pandora_networkmap.view.php:395 +#: ../../operation/agentes/estado_generalagente.php:743 +msgid "Last contact: " +msgstr "Last contact: " + +#: ../../operation/agentes/ver_agente.php:1036 +msgid "Sons" +msgstr "Children" + +#: ../../operation/agentes/ver_agente.php:1281 +msgid "Log Viewer" +msgstr "Log viewer" + +#: ../../operation/agentes/ver_agente.php:1306 +msgid "Terminal" +msgstr "Terminal" + +#: ../../operation/agentes/estado_generalagente.php:58 +msgid "The agent has not assigned server. Maybe agent does not run fine." +msgstr "" +"The agent has no server assigned. Maybe the agent does not run correctly." + +#: ../../operation/agentes/estado_generalagente.php:238 +msgid "Remote configuration enabled" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:280 +msgid "Agent contact" +msgstr "Agent contact" + +#: ../../operation/agentes/estado_generalagente.php:283 +msgid "Refresh data" +msgstr "Refresh data" + +#: ../../operation/agentes/estado_generalagente.php:285 +msgid "Force remote checks" +msgstr "Force remote checks" + +#: ../../operation/agentes/estado_generalagente.php:312 +msgid "Next contact" +msgstr "Next contact" + +#: ../../operation/agentes/estado_generalagente.php:400 +msgid "Agent info" +msgstr "Agent info" + +#: ../../operation/agentes/estado_generalagente.php:413 +msgid "There is no GIS data." +msgstr "There is no GIS data." + +#: ../../operation/agentes/estado_generalagente.php:534 +msgid "Agent access rate (Last 24h)" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:573 +msgid "Active incident on this agent" +msgstr "Active issue on this agent" + +#: ../../operation/agentes/estado_generalagente.php:729 +msgid "Events info (24hr.)" +msgstr "Event info (24h)" + +#: ../../operation/agentes/estado_generalagente.php:868 +msgid "Interface information (SNMP)" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:35 +msgid "Error processing alert(s)" +msgstr "Error processing alert(s)" + +#: ../../operation/agentes/alerts_status.functions.php:102 +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:113 +msgid "No actions" +msgstr "No actions" + +#: ../../operation/agentes/alerts_status.functions.php:162 +msgid "Filter by module name, template name or action name" +msgstr "" + +#: ../../operation/agentes/tactical.php:170 +msgid "Report of State" +msgstr "Status report" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_edit.php:51 +msgid "Received messages" +msgstr "Received messages" + +#: ../../operation/messages/message_list.php:51 +#: ../../operation/messages/message_edit.php:60 +msgid "Sent messages" +msgstr "Sent messages" + +#: ../../operation/messages/message_list.php:59 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_edit.php:69 +msgid "Create message" +msgstr "Create message" + +#: ../../operation/messages/message_list.php:65 +#: ../../operation/messages/message_edit.php:75 ../../operation/menu.php:515 +msgid "Messages" +msgstr "Messages" + +#: ../../operation/messages/message_list.php:104 +msgid "Not deleted. Error deleting messages" +msgstr "Not deleted: error deleting the message(s)." + +#: ../../operation/messages/message_list.php:112 +#: ../../operation/messages/message_list.php:121 +msgid "You have" +msgstr "You have" + +#: ../../operation/messages/message_list.php:112 +msgid "sent message(s)" +msgstr "message(s) sent" + +#: ../../operation/messages/message_list.php:121 +msgid "unread message(s)" +msgstr "unread message(s)" + +#: ../../operation/messages/message_list.php:132 +msgid "There are no messages." +msgstr "There are no messages." + +#: ../../operation/messages/message_list.php:162 +#: ../../operation/messages/message_edit.php:247 +msgid "Destination" +msgstr "Destination" + +#: ../../operation/messages/message_list.php:164 +#: ../../operation/messages/message_edit.php:239 +msgid "Sender" +msgstr "Sender" + +#: ../../operation/messages/message_list.php:182 +msgid "Click to read" +msgstr "Click to read" + +#: ../../operation/messages/message_list.php:186 +msgid "Mark as unread" +msgstr "Mark as unread" + +#: ../../operation/messages/message_list.php:192 +#: ../../operation/messages/message_list.php:196 +msgid "Message unread - click to read" +msgstr "Message unread - click to read" + +#: ../../operation/messages/message_list.php:224 +msgid "No Subject" +msgstr "No subject" + +#: ../../operation/messages/message_edit.php:94 +msgid "This message does not exist in the system" +msgstr "This message does not exist on the system." + +#: ../../operation/messages/message_edit.php:158 +msgid "wrote" +msgstr "wrote" + +#: ../../operation/messages/message_edit.php:173 +msgid "Delete conversation" +msgstr "" + +#: ../../operation/messages/message_edit.php:180 +msgid "Reply" +msgstr "Reply" + +#: ../../operation/messages/message_edit.php:207 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "Message successfully sent to user %s" + +#: ../../operation/messages/message_edit.php:208 +#, php-format +msgid "Error sending message to user %s" +msgstr "Error sending message to user %s" + +#: ../../operation/messages/message_edit.php:224 +msgid "Message successfully sent" +msgstr "Message successfully sent" + +#: ../../operation/messages/message_edit.php:225 +#, php-format +msgid "Error sending message to group %s" +msgstr "Error sending message to group %s" + +#: ../../operation/messages/message_edit.php:301 +msgid "Select user" +msgstr "Select user" + +#: ../../operation/messages/message_edit.php:308 +msgid "OR" +msgstr "OR" + +#: ../../operation/messages/message_edit.php:316 +msgid "Select group" +msgstr "Select group" + +#: ../../operation/messages/message_edit.php:346 +msgid "Send message" +msgstr "Send message" + +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:125 +msgid "Data to show" +msgstr "" + +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "" + +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "" + +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +#: ../../operation/netflow/nf_live_view.php:284 +msgid "Select this checkbox to write interval instead a date." +msgstr "" + +#: ../../operation/network/network_report.php:198 +#: ../../operation/network/network_report.php:246 +msgid "Flows" +msgstr "" + +#: ../../operation/network/network_report.php:209 +#: ../../operation/network/network_report.php:249 +msgid "Packets" +msgstr "" + +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "" + +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by IP %s. Click here to remove the filter." +msgstr "" + +#: ../../operation/network/network_usage_map.php:29 +#: ../../operation/menu.php:117 +msgid "Network usage map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:140 +msgid "Show netflow map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:151 +msgid "Show NTA map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:199 +msgid "No data retrieved" +msgstr "" + +#: ../../operation/network/network_explorer.php:38 ../../operation/menu.php:105 +msgid "Network explorer" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:123 +#: ../../operation/netflow/nf_live_view.php:145 +#: ../../operation/netflow/nf_live_view.php:151 +msgid "Netflow live view" +msgstr "Netflow live view" + +#: ../../operation/netflow/nf_live_view.php:162 +msgid "Error creating filter" +msgstr "Error creating filter" + +#: ../../operation/netflow/nf_live_view.php:164 +msgid "Filter created successfully" +msgstr "Filter created successfully" + +#: ../../operation/netflow/nf_live_view.php:183 +msgid "Filter updated successfully" +msgstr "Filter updated successfully" + +#: ../../operation/netflow/nf_live_view.php:184 +msgid "Error updating filter" +msgstr "Error updating filter" + +#: ../../operation/netflow/nf_live_view.php:208 +msgid "Draw live filter" +msgstr "Draw live filter" + +#: ../../operation/netflow/nf_live_view.php:242 +msgid "Connection" +msgstr "Connection" + +#: ../../operation/netflow/nf_live_view.php:295 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "" +"The interval will be divided in chunks withthe length of the resolution." + +#: ../../operation/netflow/nf_live_view.php:396 +msgid "Select a filter" +msgstr "Select a filter" + +#: ../../operation/netflow/nf_live_view.php:469 +msgid "IP address resolution" +msgstr "IP address resolution" + +#: ../../operation/netflow/nf_live_view.php:469 +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:472 +msgid "Source ip" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:495 +msgid "Draw" +msgstr "Draw" + +#: ../../operation/netflow/nf_live_view.php:499 +msgid "Save as new filter" +msgstr "Save as a new filter" + +#: ../../operation/netflow/nf_live_view.php:500 +msgid "Update current filter" +msgstr "Update current filter" + +#: ../../operation/netflow/nf_live_view.php:514 +msgid "No filter selected" +msgstr "No filter selected" + +#: ../../operation/netflow/netflow_explorer.php:38 ../../operation/menu.php:89 +msgid "Netflow explorer" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:118 +#: ../../operation/snmpconsole/snmp_view.php:688 +msgid "There are no SNMP traps in database" +msgstr "There are no SNMP traps on the database" + +#: ../../operation/snmpconsole/snmp_statistics.php:131 +msgid "Traps received by source" +msgstr "Traps received by source" + +#: ../../operation/snmpconsole/snmp_statistics.php:145 +#: ../../operation/snmpconsole/snmp_statistics.php:213 +msgid "Number" +msgstr "Number" + +#: ../../operation/snmpconsole/snmp_statistics.php:159 +#: ../../operation/snmpconsole/snmp_view.php:907 +msgid "View agent details" +msgstr "View agent details" + +#: ../../operation/snmpconsole/snmp_statistics.php:199 +msgid "Traps received by Enterprise String" +msgstr "Traps received by the Enterprise String" + +#: ../../operation/snmpconsole/snmp_statistics.php:212 +msgid "Trap Enterprise String" +msgstr "Trap Enterprise String" + +#: ../../operation/snmpconsole/snmp_browser.php:70 +msgid "SNMP Browser" +msgstr "SNMP Browser" + +#: ../../operation/snmpconsole/snmp_browser.php:201 +msgid "Adding modules in progress" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:487 +msgid "Create policy" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:579 +msgid "Are you sure you want add module?" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:578 +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:592 +msgid "From (Date)" +msgstr "From (Date)" + +#: ../../operation/snmpconsole/snmp_view.php:594 +msgid "To (Date)" +msgstr "To (Date)" + +#: ../../operation/snmpconsole/snmp_view.php:597 +msgid "From (Time)" +msgstr "From (Time)" + +#: ../../operation/snmpconsole/snmp_view.php:599 +msgid "To (Time)" +msgstr "To (Time)" + +#: ../../operation/snmpconsole/snmp_view.php:603 +msgid "Search by trap type" +msgstr "Search by trap type" + +#: ../../operation/snmpconsole/snmp_view.php:627 +msgid "Group by Enterprise String/IP" +msgstr "Group by Enterprise String/IP" + +#: ../../operation/snmpconsole/snmp_view.php:686 +msgid "There are no SNMP traps in database that contains this filter" +msgstr "There are no SNMP traps in database containing this filter." + +#: ../../operation/snmpconsole/snmp_view.php:719 +msgid "Refresh every" +msgstr "Refresh every" + +#: ../../operation/snmpconsole/snmp_view.php:731 +msgid "SNMP Traps" +msgstr "SNMP Traps" + +#: ../../operation/snmpconsole/snmp_view.php:816 +msgid "Trap subtype" +msgstr "Trap subtype" + +#: ../../operation/snmpconsole/snmp_view.php:999 +msgid "Variable bindings:" +msgstr "Variable bindings:" + +#: ../../operation/snmpconsole/snmp_view.php:1005 +msgid "See more details" +msgstr "View more details" + +#: ../../operation/snmpconsole/snmp_view.php:1017 +msgid "Enterprise String:" +msgstr "Enterprise String:" + +#: ../../operation/snmpconsole/snmp_view.php:1069 +msgid "Trap type:" +msgstr "Trap type:" + +#: ../../operation/snmpconsole/snmp_view.php:1095 +msgid "Count:" +msgstr "Count:" + +#: ../../operation/snmpconsole/snmp_view.php:1099 +msgid "First trap:" +msgstr "First trap:" + +#: ../../operation/snmpconsole/snmp_view.php:1103 +msgid "Last trap:" +msgstr "Last trap:" + +#: ../../operation/snmpconsole/snmp_view.php:1124 +msgid "No matching traps found" +msgstr "No matching traps found" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:28 +#: ../../operation/menu.php:143 +msgid "MIB uploader" +msgstr "MIB uploader" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:70 +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/menu.php:39 +msgid "Views" +msgstr "Views" + +#: ../../operation/menu.php:93 +msgid "Netflow Live View" +msgstr "Netflow Live View" + +#: ../../operation/menu.php:138 +msgid "SNMP browser" +msgstr "SNMP browser" + +#: ../../operation/menu.php:153 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/menu.php:272 ../../operation/gis_maps/gis_map.php:35 +msgid "GIS Maps" +msgstr "GIS Maps" + +#: ../../operation/menu.php:277 +msgid "List of Gis maps" +msgstr "List of GIS maps" + +#: ../../operation/menu.php:316 +msgid "Topology maps" +msgstr "Topology maps" + +#: ../../operation/menu.php:434 +msgid "RSS" +msgstr "RSS" + +#: ../../operation/menu.php:439 +msgid "Marquee" +msgstr "Marquee" + +#: ../../operation/menu.php:448 ../../operation/events/sound_events.php:43 +msgid "Sound Events" +msgstr "Sound events" + +#: ../../operation/menu.php:459 ../../operation/events/events.php:823 +msgid "Sound Alerts" +msgstr "Sound alerts" + +#: ../../operation/menu.php:481 +msgid "Configure user notifications" +msgstr "" + +#: ../../operation/menu.php:505 +msgid "List of Incidents" +msgstr "List of issues" + +#: ../../operation/menu.php:507 +#: ../../operation/incidents/list_integriaims_incidents.php:31 +msgid "Integria IMS Tickets" +msgstr "" + +#: ../../operation/menu.php:521 +msgid "Messages List" +msgstr "List of messages" + +#: ../../operation/menu.php:522 +msgid "New message" +msgstr "New message" + +#: ../../operation/menu.php:543 +msgid "Scheduled downtime" +msgstr "Scheduled downtime" + +#: ../../operation/menu.php:617 +msgid "Tools" +msgstr "Tools" + +#: ../../operation/gis_maps/gis_map.php:195 +msgid "No maps found" +msgstr "No maps found" + +#: ../../operation/gis_maps/gis_map.php:214 +msgid "Caution: Do you want delete the map?" +msgstr "Caution: Do you want delete the map?" + +#: ../../operation/gis_maps/gis_map.php:221 +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:229 +msgid "There was error on setup the default map." +msgstr "Error setting up the default map" + +#: ../../operation/gis_maps/render_view.php:157 +msgid "Filter by status" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 +#: ../../operation/gis_maps/ajax.php:444 +msgid "Position (Lat, Long, Alt)" +msgstr "Position (Lat, Long, Alt)" + +#: ../../operation/gis_maps/ajax.php:238 +msgid "Start contact" +msgstr "Start contact" + +#: ../../operation/gis_maps/ajax.php:240 +msgid "Num reports" +msgstr "Num reports" + +#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 +msgid "Default position of map." +msgstr "Default map position" + +#: ../../operation/gis_maps/ajax.php:339 +msgid "Satellite Version" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 +msgid "Number of non-validated critical events" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 +msgid "Alert(s) fired" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:187 +msgid "File could not be saved due to database error" +msgstr "The file could not be saved due to a database error." + +#: ../../operation/incidents/incident_detail.php:200 +msgid "File uploaded" +msgstr "File uploaded" + +#: ../../operation/incidents/incident_detail.php:201 +msgid "File could not be uploaded" +msgstr "The file could not be uploaded." + +#: ../../operation/incidents/incident_detail.php:262 +msgid "Incident details" +msgstr "Issue details" + +#: ../../operation/incidents/incident_detail.php:266 +#: ../../operation/incidents/incident.php:494 +msgid "Create incident" +msgstr "Create issue" + +#: ../../operation/incidents/incident_detail.php:287 +msgid "Opened at" +msgstr "Opened at" + +#: ../../operation/incidents/incident_detail.php:355 +#: ../../operation/incidents/integriaims_export_csv.php:96 +#: ../../operation/incidents/configure_integriaims_incident.php:258 +#: ../../operation/incidents/list_integriaims_incidents.php:141 +#: ../../operation/incidents/list_integriaims_incidents.php:267 +msgid "Creator" +msgstr "Creator" + +#: ../../operation/incidents/incident_detail.php:400 +msgid "Update incident" +msgstr "Update issue" + +#: ../../operation/incidents/incident_detail.php:418 +#: ../../operation/incidents/incident_detail.php:421 +msgid "Add note" +msgstr "Add note" + +#: ../../operation/incidents/incident_detail.php:454 +msgid "Notes attached to incident" +msgstr "Notes attached to the issue" + +#: ../../operation/incidents/incident_detail.php:475 +#: ../../operation/incidents/incident_detail.php:525 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:122 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:296 +msgid "Filename" +msgstr "File name" + +#: ../../operation/incidents/incident_detail.php:503 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:274 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:448 +msgid "Attached files" +msgstr "Attached files" + +#: ../../operation/incidents/incident_detail.php:519 +#: ../../operation/incidents/incident_detail.php:523 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +msgid "Add attachment" +msgstr "Add attachment" + +#: ../../operation/incidents/integriaims_export_csv.php:88 +msgid "ID Ticket" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:90 +#: ../../operation/incidents/list_integriaims_incidents.php:263 +msgid "Group/Company" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:95 +msgid "Started" +msgstr "Started" + +#: ../../operation/incidents/incident_statistics.php:30 +msgid "Incidents by status" +msgstr "Issues by status" + +#: ../../operation/incidents/incident_statistics.php:33 +msgid "Incidents by priority" +msgstr "Issues by priority" + +#: ../../operation/incidents/incident_statistics.php:36 +msgid "Incidents by group" +msgstr "Issues by group" + +#: ../../operation/incidents/incident_statistics.php:39 +msgid "Incidents by user" +msgstr "Issues by user" + +#: ../../operation/incidents/incident_statistics.php:42 +msgid "Incidents by source" +msgstr "Issues by source" + +#: ../../operation/incidents/configure_integriaims_incident.php:33 +msgid "Update Integria IMS Ticket" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:35 +msgid "Create Integria IMS Ticket" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:40 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:30 +#: ../../operation/incidents/list_integriaims_incidents.php:41 +msgid "Integria integration must be enabled in Pandora setup" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:115 +msgid "Successfully created in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:116 +msgid "Could not be created in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:127 +msgid "Successfully updated in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:128 +msgid "Could not be updated in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:270 +msgid "" +"This field corresponds to the Integria IMS user specified in Integria IMS " +"setup" +msgstr "" + +#: ../../operation/incidents/incident.php:60 +msgid "Incident management" +msgstr "Issue management" + +#: ../../operation/incidents/incident.php:107 +msgid "Successfully reclaimed ownership" +msgstr "Ownership reclaimed successfully" + +#: ../../operation/incidents/incident.php:108 +msgid "Could not reclame ownership" +msgstr "Could not reclame ownership" + +#: ../../operation/incidents/incident.php:199 +msgid "Error creating incident" +msgstr "Error creating the issue" + +#: ../../operation/incidents/incident.php:201 +msgid "Incident created" +msgstr "Issue created" + +#: ../../operation/incidents/incident.php:296 +msgid "Incidents:" +msgstr "Issues:" + +#: ../../operation/incidents/incident.php:297 +msgid "All incidents" +msgstr "All issues" + +#: ../../operation/incidents/incident.php:319 +msgid "Priorities:" +msgstr "Priorities:" + +#: ../../operation/incidents/incident.php:320 +msgid "All priorities" +msgstr "All priorities" + +#: ../../operation/incidents/incident.php:324 +msgid "Users:" +msgstr "Users:" + +#: ../../operation/incidents/incident.php:340 +msgid "Agents:" +msgstr "Agents:" + +#: ../../operation/incidents/incident.php:346 +msgid "All agents" +msgstr "All agents" + +#: ../../operation/incidents/incident.php:356 +msgid "Groups:" +msgstr "Groups:" + +#: ../../operation/incidents/incident.php:362 +msgid "Free text:" +msgstr "Free text:" + +#: ../../operation/incidents/incident.php:363 +msgid "Search by incident name or description, list matches." +msgstr "Search by issue name or description, list matches." + +#: ../../operation/incidents/incident.php:481 +msgid "Delete incidents" +msgstr "Delete issues" + +#: ../../operation/incidents/incident.php:485 +msgid "Become owner" +msgstr "Become owner" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:84 +msgid "Not yet" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:88 +msgid "Not closed yet" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:169 +msgid "File successfully added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:170 +msgid "File could not be added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:173 +msgid "File has an invalid extension" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:189 +msgid "File successfully deleted" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:190 +msgid "File could not be deleted" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:254 +msgid "File name" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:332 +msgid "Comment successfully added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 +msgid "Comment could not be added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:359 +msgid "No comments found" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:400 +msgid "Created by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:401 +msgid "Owned by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:402 +msgid "Closed by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:419 +msgid "Closed at" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:430 +msgid "People" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:113 +msgid "Text filter" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:177 +msgid "Created from" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:189 +msgid "Created to" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:262 +msgid "Ticket" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:264 +msgid "Status/Resolution" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:265 +msgid "Prior" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:266 +msgid "Updated/Started" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:316 +msgid "No tickets to show" +msgstr "" + +#: ../../operation/search_main.php:55 ../../operation/search_main.php:57 +#: ../../operation/search_main.php:65 ../../operation/search_main.php:67 +#: ../../operation/search_main.php:69 ../../operation/search_main.php:71 +#: ../../operation/search_main.php:74 +#, php-format +msgid "%s Found" +msgstr "%s found" + +#: ../../operation/search_main.php:56 +msgid "Modules found" +msgstr "Modules found" + +#: ../../operation/search_main.php:64 +msgid "Users found" +msgstr "Users found" + +#: ../../operation/search_main.php:66 +msgid "Graphs found" +msgstr "Graphs found" + +#: ../../operation/search_main.php:68 +msgid "Reports found" +msgstr "Reports found" + +#: ../../operation/search_main.php:70 +msgid "Maps found" +msgstr "Maps found" + +#: ../../operation/search_main.php:83 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "Show %s of %s. Show all matching entities." + +#: ../../operation/reporting/reporting_viewer.php:159 +msgid "View Report" +msgstr "View report" + +#: ../../operation/reporting/reporting_viewer.php:201 +msgid "Set initial date" +msgstr "Set initial date" + +#: ../../operation/reporting/reporting_viewer.php:229 +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:334 +#: ../../operation/reporting/graph_viewer.php:357 +msgid "Invalid date selected" +msgstr "Invalid date selected" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:391 +msgid "There are no defined reportings" +msgstr "There are no defined reports" + +#: ../../operation/reporting/graph_viewer.php:230 +msgid "No data." +msgstr "No data" + +#: ../../operation/reporting/graph_viewer.php:264 +#: ../../operation/reporting/graph_viewer.php:286 +msgid "Graph defined" +msgstr "Graph defined" + +#: ../../operation/reporting/graph_viewer.php:278 +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:287 +msgid "Zoom x1" +msgstr "Zoom x1" + +#: ../../operation/reporting/graph_viewer.php:288 +msgid "Zoom x2" +msgstr "Zoom x2" + +#: ../../operation/reporting/graph_viewer.php:289 +msgid "Zoom x3" +msgstr "Zoom x3" + +#: ../../operation/reporting/graph_viewer.php:365 +msgid "Custom graph viewer" +msgstr "Custom graph viewer" + +#: ../../operation/events/event_statistics.php:55 +msgid "Event graph by user" +msgstr "Event graph by user" + +#: ../../operation/events/events_marquee.php:113 +#, php-format +msgid "%s - Latest events" +msgstr "" + +#: ../../operation/events/events_list.php:348 +#: ../../operation/events/events_list.php:1085 +msgid "No filter loaded" +msgstr "No filter loaded" + +#: ../../operation/events/events_list.php:356 +#: ../../operation/events/events_list.php:1085 +msgid "Filter loaded" +msgstr "Filter loaded" + +#: ../../operation/events/events_list.php:971 +#: ../../operation/events/events.php:937 +msgid "Group agents" +msgstr "Group agents" + +#: ../../operation/events/events_list.php:999 +#: ../../operation/events/events.php:1127 +msgid "Id source event" +msgstr "" + +#: ../../operation/events/events_list.php:1091 +#: ../../operation/events/events_list.php:1093 +msgid "Event control filter" +msgstr "Event control filter" + +#: ../../operation/events/events_list.php:1101 +msgid "Error creating filter." +msgstr "Error creating filter" + +#: ../../operation/events/events_list.php:1105 +msgid "Error creating filter is duplicated." +msgstr "Cannot create filter: duplicate filter" + +#: ../../operation/events/events_list.php:1109 +msgid "Filter created." +msgstr "Filter created" + +#: ../../operation/events/events_list.php:1114 +msgid "Filter updated." +msgstr "Filter updated" + +#: ../../operation/events/events_list.php:1118 +msgid "Error updating filter." +msgstr "Error updating filter" + +#: ../../operation/events/sound_events.php:60 +msgid "Sound console" +msgstr "Sound console" + +#: ../../operation/events/events_rss.php:195 +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:214 +msgid "The URL of your feed has bad hash." +msgstr "Your feed URL has a bad hash." + +#: ../../operation/events/events.php:697 +msgid "Event viewer" +msgstr "Event viewer" + +#: ../../operation/events/events.php:726 +msgid "History event list" +msgstr "List of event history" + +#: ../../operation/events/events.php:730 +msgid "RSS Events" +msgstr "RSS Events" + +#: ../../operation/events/events.php:734 +msgid "Marquee display" +msgstr "Marquee display" + +#: ../../operation/events/events.php:738 +msgid "Export to CSV file" +msgstr "Export to CSV file" + +#: ../../operation/events/events.php:742 ../../operation/events/events.php:782 +msgid "Sound events" +msgstr "Sound events" + +#: ../../operation/events/events.php:787 +msgid "History" +msgstr "History" + +#: ../../operation/events/events.php:849 +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:1377 +msgid "Current filter" +msgstr "" + +#: ../../operation/events/events.php:1382 +msgid "Not set." +msgstr "" + +#: ../../operation/events/events.php:1395 +msgid "Any status." +msgstr "" + +#: ../../operation/events/events.php:1399 +msgid "New events." +msgstr "" + +#: ../../operation/events/events.php:1403 +msgid "Validated." +msgstr "" + +#: ../../operation/events/events.php:1407 +msgid "In proccess." +msgstr "" + +#: ../../operation/events/events.php:1411 +msgid "Not validated." +msgstr "" + +#: ../../operation/events/events.php:1423 +msgid "Any time." +msgstr "" + +#: ../../operation/events/events.php:1425 +#: ../../operation/events/events.php:2301 +msgid "Last hour." +msgstr "" + +#: ../../operation/events/events.php:1427 +#, php-format +msgid "Last %d hours." +msgstr "" + +#: ../../operation/events/events.php:1435 +msgid "Duplicated" +msgstr "" + +#: ../../operation/events/events.php:1438 +msgid "All events." +msgstr "" + +#: ../../operation/events/events.php:1442 +msgid "Group agents." +msgstr "" + +#: ../../operation/events/events.php:1520 +msgid "In progress selected" +msgstr "" + +#: ../../operation/events/events.php:1521 +msgid "Validate selected" +msgstr "Validate selected" + +#: ../../operation/events/events.php:1539 +#: ../../operation/events/events.build_table.php:990 +msgid "Execute event response" +msgstr "" + +#: ../../operation/events/events.php:1544 +#: ../../operation/events/events.build_table.php:995 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "" + +#: ../../operation/events/events.php:1549 +#: ../../operation/events/events.build_table.php:1000 +msgid "Please, select an event" +msgstr "" + +#: ../../operation/events/events.php:1638 +msgid "has at least" +msgstr "" + +#: ../../operation/events/events.php:1640 +msgid "events" +msgstr "" + +#: ../../operation/events/events.php:1884 +msgid "Validate events" +msgstr "" + +#: ../../operation/events/events.php:1899 +#: ../../operation/events/events.build_table.php:852 +msgid "Change to in progress status" +msgstr "" + +#: ../../operation/events/events.php:1908 +msgid "Delete events" +msgstr "" + +#: ../../operation/events/events.php:2303 +msgid "hours." +msgstr "" + +#: ../../operation/events/events.build_table.php:81 +msgid "More detail" +msgstr "More detail" + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid "The Agent: " +msgstr "The Agent: " + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " has " +msgstr " has " + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " events." +msgstr " events." + +#: ../../operation/search_policies.php:36 +msgid "Id_group" +msgstr "" + +#: ../../operation/servers/recon_view.php:32 +#: ../../operation/servers/recon_view.php:38 +#: ../../operation/servers/recon_view.php:52 +msgid "Recon View" +msgstr "Recon view" + +#: ../../operation/servers/recon_view.php:147 +msgid "Network recon task" +msgstr "Network recon task" + +#: ../../operation/servers/recon_view.php:174 +msgid "has no recon tasks assigned" +msgstr "has no recon tasks assigned" + +#: ../../general/footer.php:54 +#, php-format +msgid "Page generated on %s" +msgstr "" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "" + +#: ../../general/first_task/incidents.php:21 +msgid "There are no incidents defined yet." +msgstr "There are no issues defined yet." + +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 +msgid "Create Incidents" +msgstr "Create issues" + +#: ../../general/first_task/incidents.php:34 +#, php-format +msgid "" +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take " +"place on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any " +"user is able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with " +"comments and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles " +"and work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and " +"files.\n" +"\t\t" +msgstr "" +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take " +"place on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any " +"user is able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with " +"comments and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles " +"and work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and " +"files.\n" +"\t\t" + +#: ../../general/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." +msgstr "" + +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" +msgstr "" + +#: ../../general/first_task/recon_view.php:28 +msgid "" +"Discovery Task are used to find new elements in the network. \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if " +"that item it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of " +"detection: Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks " +"and their interfaces), and other customized " +"\n" +"\t\ttype. You can define your own customized recon script." +msgstr "" + +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "There are no HA clusters defined yet." + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "PANDORA FMS DB CLUSTER" + +#: ../../general/first_task/HA_cluster_builder.php:48 +msgid "" +"With Pandora FMS Enterprise you can add high availability to your Pandora " +"FMS installation by adding redundant MySQL servers" +msgstr "" +"With Pandora FMS Enterprise you can add high availability to your Pandora " +"FMS installation by adding redundant MySQL servers" + +#: ../../general/first_task/HA_cluster_builder.php:50 +msgid "" +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " +"into a Pandora FMS DB Cluster." +msgstr "" +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " +"into a Pandora FMS DB Cluster." + +#: ../../general/first_task/HA_cluster_builder.php:59 +msgid "Add new node" +msgstr "Add new node" + +#: ../../general/first_task/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 +msgid "Create Visual Console" +msgstr "Create Visual Console" + +#: ../../general/first_task/map_builder.php:37 +#, php-format +msgid "" +"%s allows users to create visual maps on which each user is able to create " +"his or her own monitoring map. The new visual console editor is much more " +"practical, although the prior visual console editor had its advantages. On " +"the new visual console, we've been successful in imitating the sensation and " +"touch of a drawing application like GIMP. We've also simplified the editor " +"by dividing it into several subject-divided tabs named 'Data', 'Preview', " +"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " +"designed to handle are 'static images', 'percentage bars', 'module graphs' " +"and 'simple values'." +msgstr "" +"%s allows users to create visual maps on which each user is able to create " +"his or her own monitoring map. The new visual console editor is much more " +"practical, although the prior visual console editor had its advantages. On " +"the new visual console, we've been successful in imitating the sensation and " +"touch of a drawing application like GIMP. We've also simplified the editor " +"by dividing it into several subject-divided tabs named 'Data', 'Preview', " +"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " +"designed to handle are 'static images', 'percentage bars', 'module graphs' " +"and 'simple values'." + +#: ../../general/first_task/cluster_builder.php:30 +msgid "There are no clusters defined yet." +msgstr "There are no clusters defined yet." + +#: ../../general/first_task/cluster_builder.php:38 +#: ../../general/first_task/cluster_builder.php:56 +msgid "Create Cluster" +msgstr "Create Cluster" + +#: ../../general/first_task/cluster_builder.php:41 +msgid "" +"A cluster is a group of devices that provide the same service in high " +"availability." +msgstr "" +"A cluster is a group of devices that provide the same service in high " +"availability." + +#: ../../general/first_task/cluster_builder.php:43 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "There are two types, depending on how they provide that service:" + +#: ../../general/first_task/cluster_builder.php:45 +msgid "" +"Clusters to balance the service load: these are active - active " +"(A/A) mode clusters. It means that all the nodes (or machines that compose " +"it) are working. They must be working because if one stops working, it will " +"overload the others." +msgstr "" +"Clusters to balance the service load: these are active - active " +"(A/A) mode clusters. It means that all the nodes (or machines that compose " +"it) are working. They must be working because if one stops working, it will " +"overload the others." + +#: ../../general/first_task/cluster_builder.php:47 +msgid "" +"Clusters to guarantee service: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the " +"cluster) will be running (primary) and another won't (secondary). When the " +"primary goes down, the secondary must take over and give the service " +"instead. Although many of the elements of this cluster are active-passive, " +"it will also have active elements in both of them that indicate that the " +"passive node is \"online\", so that in the case of a service failure in the " +"master, the active node collects this information." +msgstr "" +"Clusters to guarantee service: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the " +"cluster) will be executed (primary) and another will not (secondary). When " +"the primary goes down, the secondary must take over and give the service " +"instead. Even though many of the elements of this cluster are active-" +"passive, it will also have active elements in both of them indicating that " +"the passive node is 'online', so that in the case of a service failure in " +"the master, the active node collects this information." + +#: ../../general/first_task/network_map.php:19 +msgid "There are no network map defined yet." +msgstr "There are no network maps defined yet." + +#: ../../general/first_task/network_map.php:26 +msgid "Network Map" +msgstr "Network Map" + +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 +msgid "Create Network Map" +msgstr "Create Network Map" + +#: ../../general/first_task/network_map.php:32 +msgid "" +"There is also an open-source version of the network map. \n" +"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " +"and relationships, agents, modules and groups available to the user. \n" +"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" +"\t\t\t" +msgstr "" +"There is also an open-source version of the network map. \n" +"\t\t\t\t\t\t\t\tThis functionality allows a graphical display of the nodes " +"and relations, agents, modules and groups available to the user. \n" +"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" +"\t\t\t" + +#: ../../general/first_task/network_map.php:37 +msgid "Topology Map" +msgstr "Topology Map" + +#: ../../general/first_task/network_map.php:38 +msgid "Group Map" +msgstr "Group Map" + +#: ../../general/first_task/network_map.php:39 +msgid "Radial Map (User without strict user)" +msgstr "Radial Map (User without strict user)" + +#: ../../general/first_task/network_map.php:40 +msgid "Dinamic Map" +msgstr "Dynamic Map" + +#: ../../general/first_task/network_map.php:41 +msgid "Policy Map (Only Enterprise version)" +msgstr "Policy Map (Only Enterprise version)" + +#: ../../general/first_task/tags.php:18 +msgid "There are no tags defined yet." +msgstr "There are no tags defined yet." + +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 +msgid "Create Tags" +msgstr "Create Tags" + +#: ../../general/first_task/tags.php:28 +msgid "" +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +"chosen modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." +msgstr "" + +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "There is no command defined yet." + +#: ../../general/first_task/omnishell.php:37 +#, php-format +msgid "" +"Omnishell is an enterprise feature which allows you to execute a structured " +"command along any agent in your %s. The only requirement is to have remote " +"configuration enabled in your agent." +msgstr "" + +#: ../../general/first_task/omnishell.php:42 +msgid "" +"You can execute any command on as many agents you need, and check the " +"execution on all of them using the Omnishell Command View" +msgstr "" + +#: ../../general/first_task/omnishell.php:50 +msgid "Define a command" +msgstr "" + +#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 +msgid "There are no custom fields defined yet." +msgstr "There are no custom fields defined yet." + +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 +msgid "Create Custom Fields" +msgstr "Create Custom Fields" + +#: ../../general/first_task/custom_fields.php:30 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t You're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" +"Custom fields are an easy way to customize agent information.\n" +"\t\t It is possible to create custom fields by clicking on 'Administration' -" +"> 'Manage monitoring' -> 'Manage custom fields'. " + +#: ../../general/first_task/fields_manager.php:22 +msgid "Fields Manager" +msgstr "Field Manager" + +#: ../../general/first_task/fields_manager.php:25 +msgid "Create Fields Manager" +msgstr "Create field manager" + +#: ../../general/first_task/fields_manager.php:28 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -" +"> 'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" +"Custom fields are an easy way to customize agent information\n" +"\t\t\t\tA user can create custom fields by clicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " + +#: ../../general/first_task/fields_manager.php:34 +msgid "Create Fields " +msgstr "Create Fields " + +#: ../../general/first_task/planned_downtime.php:18 +msgid "There are no planned downtime defined yet." +msgstr "There are no planned downtimes defined yet." + +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 +msgid "Create Planned Downtime" +msgstr "Create Planned Downtime" + +#: ../../general/first_task/planned_downtime.php:28 +#, php-format +msgid "" +"%s contains a scheduled downtime management system.\n" +"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " +"intervals whenever there is down time by deactivating the agent.\n" +"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. " +"During down time, down-time intervals aren't taken into\n" +"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " +"contain any data within those intervals." +msgstr "" + +#: ../../general/first_task/snmp_filters.php:18 +msgid "There are no SNMP filter defined yet." +msgstr "There are no SNMP filters defined yet." + +#: ../../general/first_task/snmp_filters.php:22 +msgid "SNMP Filter" +msgstr "SNMP Filter" + +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 +msgid "Create SNMP Filter" +msgstr "Create SNMP Filter" + +#: ../../general/first_task/snmp_filters.php:28 +msgid "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " +"Pandora FMS versions 3.2 and above, \n" +"\t\t\t\tit's possible to filter the traps that the server obtains in order " +"to avoid straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -" +"> 'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap which is going to run in conjunction with any of them - " +"just the ones for the server are going to get ruled out automatically. " +msgstr "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tOur goal is only to monitor a small percentage of them. On Pandora " +"FMS versions 3.2 and above, \n" +"\t\t\t\tit is possible to filter the traps that the server retrieves in " +"order to avoid straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -" +"> 'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap runs in conjunction with any of them. Only traps for the " +"server will be ruled out automatically. " + +#: ../../general/first_task/service_list.php:20 +msgid "There are no services defined yet." +msgstr "There are no services defined yet." + +#: ../../general/first_task/service_list.php:28 +#: ../../general/first_task/service_list.php:42 +msgid "Create Services" +msgstr "Create Services" + +#: ../../general/first_task/service_list.php:31 +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 "" +"A service is a way to group your IT resources based on their " +"functionalities. \n" +"\t\t\t\t\t\tA service could be, for example, 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 through its website all " +"around the world. \n" +"\t\t\t\t\t\t\tHis company consists of three main departments: a management " +"department, an online shop and a support department." + +#: ../../general/first_task/custom_graphs.php:19 +msgid "There are no custom graphs defined yet." +msgstr "There are no custom graphs defined yet." + +#: ../../general/first_task/custom_graphs.php:24 +msgid "Custom Graphs" +msgstr "Custom Graphs" + +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 +msgid "Create Custom Graph" +msgstr "Create Custom Graph" + +#: ../../general/first_task/custom_graphs.php:30 +#, php-format +msgid "" +"Graphs are designed to show the data collected by %s in a temporary scale " +"defined by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time " +"the operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." +msgstr "" +"Graphs are designed to show the data collected by %s in a temporary scale " +"defined by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time " +"the operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." + +#: ../../general/first_task/transactional_list.php:21 +msgid "There are no transactions defined yet." +msgstr "There are no transactions defined yet." + +#: ../../general/first_task/transactional_list.php:28 +msgid "Transactions" +msgstr "Transactions" + +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 +msgid "Create Transactions" +msgstr "Create Transactions" + +#: ../../general/first_task/transactional_list.php:34 +msgid "" +"The new transactional server allows you to execute tasks dependent on the " +"others following a user-defined design. This means that it is possible to " +"coordinate several executions to check a target at a given time.\n" +"\n" +"Transaction graphs represent the different processes within our " +"infrastructure that we use to deliver our service." +msgstr "" +"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 the " +"infrastructure used to deliver our service." + +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 msgid "Create Collections" msgstr "Create Collections" -#: ../../general/firts_task/collections.php:29 +#: ../../general/first_task/collections.php:28 msgid "" "A file collection is a group of files (e.g. scripts or executables) which " "are \n" @@ -4491,1165 +46452,401 @@ 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/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 agent information.\n" -"\t\t It is 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 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 agent information\n" -"\t\t\t\tA user can 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 issues defined yet." - -#: ../../general/firts_task/incidents.php:32 -#: ../../godmode/agentes/configurar_agente.php:441 -#: ../../godmode/agentes/configurar_agente.php:577 -#: ../../operation/agentes/ver_agente.php:1116 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../operation/menu.php:391 -msgid "Incidents" -msgstr "Issues" - -#: ../../general/firts_task/incidents.php:35 -#: ../../general/firts_task/incidents.php:44 -msgid "Create Incidents" -msgstr "Create issues" - -#: ../../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 also need to monitor possible issues which might take place on " -"these subsystems within the system monitoring process.\n" -"\t\t\tTo do so, the Pandora FMS team has designed an issue manager from " -"which any user is able to open issues, \n" -"\t\t\tthat explain what has happened on the network, and update them with " -"comments and files, at any time, if necessary.\n" -"\t\t\tThis system allows users to work as a team, along with different roles " -"and work-flow systems which allow an issue to be \n" -"\t\t\tmoved from one group to another, and members from different groups and " -"different people to work on the same issue, sharing information and files.\n" -"\t\t" - -#: ../../general/firts_task/map_builder.php:26 -#: ../../godmode/reporting/map_builder.php:336 -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:43 -#: ../../godmode/reporting/visual_console_favorite.php:33 -#: ../../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 a personal monitoring map.\n" -"\t\t\tThe new visual console editor is much more practical, although the " -"previous visual console editor had its advantages. \n" -"\t\t\tOn the new visual console, we have successfully imitated the sensation " -"and touch of a drawing application like GIMP. \n" -"\t\t\tWe have 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." -msgstr "There are no network maps defined yet." - -#: ../../general/firts_task/network_map.php:30 -msgid "Network Map" -msgstr "Network Map" - -#: ../../general/firts_task/network_map.php:33 -#: ../../general/firts_task/network_map.php:49 -msgid "Create Network Map" -msgstr "Create Network Map" - -#: ../../general/firts_task/network_map.php:34 -msgid "" -"There is also an open-source version of the network map. \n" -"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " -"and relationships, agents, modules and groups available to the user. \n" -"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" -"\t\t\t" -msgstr "" -"There is also an open-source version of the network map. \n" -"\t\t\t\t\t\t\t\tThis functionality allows a graphical display of the nodes " -"and relations, agents, modules and groups available to the user. \n" -"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" -"\t\t\t" - -#: ../../general/firts_task/network_map.php:38 -msgid "Topology Map" -msgstr "Topology Map" - -#: ../../general/firts_task/network_map.php:39 -msgid "Group Map" -msgstr "Group Map" - -#: ../../general/firts_task/network_map.php:40 -msgid "Radial Map (User without strict user)" -msgstr "Radial Map (User without strict user)" - -#: ../../general/firts_task/network_map.php:41 -msgid "Dinamic Map" -msgstr "Dynamic Map" - -#: ../../general/firts_task/network_map.php:42 -msgid "Policy Map (Only Enterprise version)" -msgstr "Policy Map (Only Enterprise version)" - -#: ../../general/firts_task/planned_downtime.php:21 -msgid "There are no planned downtime defined yet." -msgstr "There are no planned downtimes defined yet." - -#: ../../general/firts_task/planned_downtime.php:25 -#: ../../godmode/agentes/planned_downtime.editor.php:43 -#: ../../godmode/agentes/planned_downtime.list.php:54 -msgid "Planned Downtime" -msgstr "Planned Downtime" - -#: ../../general/firts_task/planned_downtime.php:28 -#: ../../general/firts_task/planned_downtime.php:34 -msgid "Create Planned Downtime" -msgstr "Create Planned Downtime" - -#: ../../general/firts_task/planned_downtime.php:29 -msgid "" -"Pandora FMS contains a scheduled downtime management system. \n" -"\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " -"intervals whenever there is down time by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a " -"down time, the down-time intervals aren't taken into \n" -"\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " -"agents don't contain any data within those intervals. " -msgstr "" -"Pandora FMS contains a scheduled downtime management system. \n" -"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " -"intervals whenever there is a downtime by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it does not gather information. " -"During a downtime, down-time intervals are not taken into \n" -"\t\t\t\t\t\taccount for most metrics or report types, because agents do not " -"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 tasks defined yet." - -#: ../../general/firts_task/recon_view.php:25 -#: ../../godmode/servers/manage_recontask_form.php:228 -#: ../../include/functions_servers.php:379 -#: ../../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 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 customized \n" -"\t\tdetection. 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:364 -#: ../../operation/agentes/ver_agente.php:1205 -#: ../../enterprise/dashboard/widgets/service_map.php:79 -#: ../../enterprise/godmode/menu.php:92 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:363 -#: ../../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:250 -#: ../../enterprise/include/functions_groups.php:61 -#: ../../enterprise/meta/general/main_header.php:172 -#: ../../enterprise/operation/menu.php:42 -#: ../../enterprise/operation/services/services.list.php:60 -#: ../../enterprise/operation/services/services.list.php:64 -#: ../../enterprise/operation/services/services.service_map.php:119 -#: ../../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 "" -"A service is a way to group your IT resources based on their " -"functionalities. \n" -"\t\t\t\t\t\tA service could be, for example, 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 through its website all " -"around the world. \n" -"\t\t\t\t\t\t\tHis company consists of three main departments: a management " -"department, an online shop and a support department." - -#: ../../general/firts_task/snmp_filters.php:21 -msgid "There are no SNMP filter defined yet." -msgstr "There are no SNMP filters defined yet." - -#: ../../general/firts_task/snmp_filters.php:25 -msgid "SNMP Filter" -msgstr "SNMP Filter" - -#: ../../general/firts_task/snmp_filters.php:28 -#: ../../general/firts_task/snmp_filters.php:35 -msgid "Create SNMP Filter" -msgstr "Create SNMP Filter" - -#: ../../general/firts_task/snmp_filters.php:29 -msgid "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " -"Pandora FMS versions 3.2 and above, \n" -"\t\t\t\tit's possible to filter the traps that the server obtains in order " -"to avoid straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -" -"> 'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap which is going to run in conjunction with any of them - " -"just the ones for the server are going to get ruled out automatically. " -msgstr "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tOur goal is only to monitor a small percentage of them. On Pandora " -"FMS versions 3.2 and above, \n" -"\t\t\t\tit is possible to filter the traps that the server retrieves in " -"order to avoid straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -" -"> 'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap runs in conjunction with any of them. Only traps for the " -"server will be ruled out automatically. " - -#: ../../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_copy_modules.php:134 -#: ../../godmode/massive/massive_delete_modules.php:466 -#: ../../godmode/massive/massive_delete_modules.php:516 -#: ../../godmode/massive/massive_delete_tags.php:187 -#: ../../godmode/massive/massive_edit_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../godmode/massive/massive_edit_modules.php:594 -#: ../../godmode/modules/manage_network_components_form_common.php:200 -#: ../../godmode/tag/edit_tag.php:57 -#: ../../godmode/users/configure_user.php:739 -#: ../../include/functions_treeview.php:165 -#: ../../include/functions_events.php:46 -#: ../../include/functions_events.php:2545 -#: ../../include/functions_events.php:3688 -#: ../../include/functions_reporting_html.php:2122 -#: ../../mobile/operation/events.php:514 -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/status_monitor.php:338 -#: ../../operation/agentes/status_monitor.php:341 -#: ../../operation/events/events.build_table.php:223 -#: ../../operation/tree.php:49 ../../operation/users/user_edit.php:517 -#: ../../enterprise/dashboard/widgets/events_list.php:62 -#: ../../enterprise/dashboard/widgets/tree_view.php:37 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:94 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:133 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:92 -#: ../../enterprise/godmode/modules/configure_local_component.php:375 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -#: ../../enterprise/include/functions_reporting_pdf.php:2451 -#: ../../enterprise/meta/include/functions_events_meta.php:91 -#: ../../enterprise/operation/agentes/tag_view.php:143 -#: ../../enterprise/operation/agentes/tag_view.php:146 -#: ../../enterprise/operation/agentes/tag_view.php:531 -msgid "Tags" -msgstr "Tags" - -#: ../../general/firts_task/tags.php:28 ../../general/firts_task/tags.php:33 -msgid "Create Tags" -msgstr "Create Tags" - -#: ../../general/firts_task/tags.php:29 -msgid "" -"From Pandora FMS versions 5 and above, the access to modules can be " -"configured by a tags system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " -"chosen modules. \n" -"\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " -"tags in this way. " -msgstr "" -"On Pandora FMS version 5 and newer, access to modules can be configured with " -"a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " -"chosen modules. \n" -"\t\t\t\t\t\t\t\tUser 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/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 the " -"infrastructure used to deliver our service." - -#: ../../general/firts_task/cluster_builder.php:32 -msgid "There are no clusters defined yet." -msgstr "There are no clusters defined yet." - -#: ../../general/firts_task/cluster_builder.php:37 -#: ../../enterprise/godmode/reporting/cluster_list.php:25 -msgid "Clusters" -msgstr "Clusters" - -#: ../../general/firts_task/cluster_builder.php:40 -#: ../../general/firts_task/cluster_builder.php:53 -msgid "Create Cluster" -msgstr "Create Cluster" - -#: ../../general/firts_task/cluster_builder.php:43 -msgid "" -"A cluster is a group of devices that provide the same service in high " -"availability." -msgstr "" -"A cluster is a group of devices that provide the same service in high " -"availability." - -#: ../../general/firts_task/cluster_builder.php:45 -msgid "Depending on how they provide that service, we can find two types:" -msgstr "There are two types, depending on how they provide that service:" - -#: ../../general/firts_task/cluster_builder.php:47 -msgid "" -"Clusters to balance the service load: these are active - active " -"(A/A) mode clusters. It means that all the nodes (or machines that compose " -"it) are working. They must be working because if one stops working, it will " -"overload the others." -msgstr "" -"Clusters to balance the service load: these are active - active " -"(A/A) mode clusters. It means that all the nodes (or machines that compose " -"it) are working. They must be working because if one stops working, it will " -"overload the others." - -#: ../../general/firts_task/cluster_builder.php:49 -msgid "" -"Clusters to guarantee service: these are active - passive (A/P) mode " -"clusters. It means that one of the nodes (or machines that make up the " -"cluster) will be running (primary) and another won't (secondary). When the " -"primary goes down, the secondary must take over and give the service " -"instead. Although many of the elements of this cluster are active-passive, " -"it will also have active elements in both of them that indicate that the " -"passive node is \"online\", so that in the case of a service failure in the " -"master, the active node collects this information." -msgstr "" -"Clusters to guarantee service: these are active - passive (A/P) mode " -"clusters. It means that one of the nodes (or machines that make up the " -"cluster) will be executed (primary) and another will not (secondary). When " -"the primary goes down, the secondary must take over and give the service " -"instead. Even though many of the elements of this cluster are active-" -"passive, it will also have active elements in both of them indicating that " -"the passive node is 'online', so that in the case of a service failure in " -"the master, the active node collects this information." - -#: ../../general/footer.php:48 ../../enterprise/meta/general/footer.php:30 -#, php-format -msgid "Pandora FMS %s - Build %s - MR %s" -msgstr "Pandora FMS %s - Build %s - MR %s" - -#: ../../general/footer.php:51 ../../enterprise/meta/general/footer.php:31 -msgid "Page generated at" -msgstr "Page generated as" - -#: ../../general/footer.php:52 ../../enterprise/meta/general/footer.php:32 -msgid "® Ártica ST" -msgstr "® Ártica ST" - -#: ../../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:206 -#: ../../enterprise/meta/general/main_header.php:390 -msgid "Configure autorefresh" -msgstr "Configure autorefresh" - -#: ../../general/header.php:233 ../../general/header.php:243 -#: ../../enterprise/meta/general/main_header.php:407 -#: ../../enterprise/meta/general/main_header.php:417 -msgid "Disabled autorefresh" -msgstr "Disable autorefresh" - -#: ../../general/header.php:266 +#: ../../general/header.php:76 msgid "Sobre actualización de revisión menor" msgstr "About minor revision update" -#: ../../general/header.php:269 -#: ../../godmode/update_manager/update_manager.offline.php:63 -#: ../../godmode/update_manager/update_manager.offline.php:66 -#: ../../include/functions_update_manager.php:363 -#: ../../include/functions_update_manager.php:366 -#: ../../enterprise/include/functions_update_manager.php:195 -#: ../../enterprise/include/functions_update_manager.php:198 -msgid "About minor release update" -msgstr "About minor release update" +#: ../../general/header.php:111 ../../general/header.php:113 +msgid "Enter keywords to search" +msgstr "Enter keywords to search" -#: ../../general/header.php:277 -msgid "System alerts detected - Please fix as soon as possible" -msgstr "System alerts detected - Please fix them as soon as possible" - -#: ../../general/header.php:292 -#, php-format -msgid "You have %d warning(s)" -msgstr "You have %d warning(s)" - -#: ../../general/header.php:303 -msgid "There are not warnings" -msgstr "There are no warnings" - -#: ../../general/header.php:312 -msgid "Main help" -msgstr "Main help" - -#: ../../general/header.php:318 ../../mobile/include/functions_web.php:33 -#: ../../mobile/include/ui.class.php:175 -#: ../../mobile/include/user.class.php:286 ../../mobile/operation/home.php:151 -#: ../../enterprise/meta/general/main_header.php:373 -msgid "Logout" -msgstr "Logout" - -#: ../../general/header.php:323 ../../general/header.php:325 -#: ../../operation/menu.php:373 -#: ../../enterprise/meta/general/main_header.php:430 -#: ../../enterprise/meta/general/main_header.php:435 -#: ../../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:334 -msgid "New chat message" -msgstr "New chat message" - -#: ../../general/header.php:343 -msgid "Message overview" -msgstr "Message overview" - -#: ../../general/header.php:344 -#, php-format -msgid "You have %d unread message(s)" -msgstr "You have %d unread message(s)" - -#: ../../general/links_menu.php:20 ../../godmode/menu.php:299 -#: ../../godmode/menu.php:420 -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!" +#: ../../general/header.php:363 +msgid "Go to support" msgstr "" -"If this is your first time using Pandora FMS, we suggest a few links that " -"will 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 +#: ../../general/header.php:369 +msgid "Go to documentation" +msgstr "" + +#: ../../general/header.php:786 +msgid "Report an issue" +msgstr "" + +#: ../../general/alert_enterprise.php:107 +#, php-format +msgid "" +"This is the online help for %s console. This help is -in best cases- just a " +"brief contextual help, not intented to teach you how to use %s. Official " +"documentation of %s is about 900 pages, and you probably don't need to read " +"it entirely, but sure, you should download it and take a look.

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

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

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

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


pandorafms.com" +msgstr "" +"Do you want to consolidate all your system monitoring? Do you have many " +"systems, making it difficult to manage them in a comprehensive manner? Would " +"you like to deploy monitoring, alerts and even local plugins with a single " +"click? %s Enterprise Policies are exactly what you need; you'll save time, " +"effort and annoyances. More information pandorafms.com" + +#: ../../general/alert_enterprise.php:148 +#, php-format +msgid "" +"%s Enterprise also features event correlation. Through correlation you can " +"generate realtime alerts and / or new events based on logical rules. This " +"allows you to automate troubleshooting. If you know the value of working " +"with events, event correlation will take you to a new level." +msgstr "" +"%s Enterprise also features event correlation. Through correlation you can " +"generate realtime alerts and / or new events based on logical rules. This " +"allows you to automate troubleshooting. If you know the value of working " +"with events, event correlation will take you to a new level." + +#: ../../general/alert_enterprise.php:152 +#, php-format +msgid "" +"Report generating on the Enterprise version is also more powerful: it has " +"wizards, you can schedule emails in PDF to be sent according to the schedule " +"you decide, and it has a template system to create personalized reports " +"quickly for each of your customers. It will even allow your customers to " +"generate their own reports from templates created by you. If reports are key " +"to your business, %s Enterprise version is for you." +msgstr "" +"Report generating on the Enterprise version is also more powerful: it has " +"wizards, you can schedule e-mails in PDF to be sent according to the " +"schedule you decide, and it has a template system to create personalised " +"reports quickly for each of your customers. It will even allow your " +"customers to generate their own reports from templates created by you. If " +"reports are key to your business, %s Enterprise version is for you." + +#: ../../general/alert_enterprise.php:156 +msgid "These options are only effective on the Enterprise version." +msgstr "These options are only effective on the Enterprise version." + +#: ../../general/alert_enterprise.php:164 +msgid "" +"This system is heavily loaded. OpenSource version could get a lot more " +"agents but fine tuning requires knowledge and time. Checkout the Enterprise " +"Version for a professional supported system." +msgstr "" +"This system is heavily loaded. OpenSource version could get a lot more " +"agents but fine tuning requires knowledge and time. Check out the Enterprise " +"Version for a professional supported system." + +#: ../../general/alert_enterprise.php:168 +msgid "" +"This system has too many modules per agent. OpenSource version could manage " +"thousands of modules, but is not recommended to have more than 40 modules " +"per agent. This configuration has B/A modules per agent. Checkout the " +"Enterprise Version for a professional supported system." +msgstr "" +"This system has too many modules per agent. OpenSource version could manage " +"thousands of modules, but it is not recommended to have more than 40 modules " +"per agent. This configuration has B/A modules per agent. Check out the " +"Enterprise Version for a professional supported system." + +#: ../../general/alert_enterprise.php:172 +msgid "" +"Too much remote modules has been detected on this system. OpenSource version " +"could manage thousands of modules, but performance is limited on high amount " +"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"supported system with improved capacity on network monitoring, including " +"distributed servers." +msgstr "" +"Too many remote modules have been detected on this system. OpenSource " +"version could manage thousands of modules, but performance is limited on " +"high amounts of SNMP or ICMP requests. Check out the Enterprise Version for " +"a professionally supported system with improved capacity on network " +"monitoring, including distributed servers." + +#: ../../general/alert_enterprise.php:176 +msgid "" +"This system has too much events in the database. Checkout database purge " +"options. Checkout the Enterprise Version for a professional supported system." +msgstr "" +"This system has too many events in the database. Explore database purge " +"options. Check out the Enterprise Version for a professionally supported " +"system." + +#: ../../general/alert_enterprise.php:180 +msgid "" +"You have defined a high number of alerts, this may cause you performance " +"problems in the future. In the Enterprise version, you can use event " +"correlation alerts to simplify the alerting system and have easier " +"administration and increased performance." +msgstr "" +"You have defined a high number of alerts, this may cause performance " +"problems in the future. In the Enterprise version, you can use event " +"correlation alerts to simplify the alerting system and have easier " +"administration and increased performance." + +#: ../../general/login_help_dialog.php:41 +#, php-format +msgid "" +"If this is your first time using %s, we suggest a few links that'll help you " +"learn more about the software. Monitoring can be overwhelming, but take your " +"time to learn how to harness the power of %s!" +msgstr "" + +#: ../../general/login_help_dialog.php:55 +#: ../../general/login_help_dialog.php:60 msgid "Online help" msgstr "Online help" -#: ../../general/login_help_dialog.php:59 -#: ../../general/login_help_dialog.php:61 +#: ../../general/login_help_dialog.php:68 +#: ../../general/login_help_dialog.php:73 msgid "Enterprise version" msgstr "Enterprise version" -#: ../../general/login_help_dialog.php:67 -#: ../../general/login_help_dialog.php:69 ../../general/login_page.php:113 -#: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/include/reset_pass.php:59 -#: ../../enterprise/meta/general/login_page.php:67 -#: ../../enterprise/meta/include/process_reset_pass.php:43 -#: ../../enterprise/meta/include/reset_pass.php:43 -msgid "Support" -msgstr "Support" - -#: ../../general/login_help_dialog.php:69 +#: ../../general/login_help_dialog.php:86 msgid "Forums" msgstr "Forums" -#: ../../general/login_help_dialog.php:75 -#: ../../general/login_help_dialog.php:77 +#: ../../general/login_help_dialog.php:94 +#: ../../general/login_help_dialog.php:99 ../../general/mysqlerr.php:144 msgid "Documentation" msgstr "Documentation" -#: ../../general/login_help_dialog.php:86 +#: ../../general/login_help_dialog.php:108 msgid "Click here to don't show again this message" msgstr "Do not show this message again" -#: ../../general/login_identification_wizard.php:141 -msgid "The Pandora FMS community wizard" -msgstr "The Pandora FMS community wizard" - -#: ../../general/login_identification_wizard.php:146 -msgid "Stay up to date with the Pandora FMS community" -msgstr "Stay up to date with the Pandora FMS community" - -#: ../../general/login_identification_wizard.php:150 -msgid "" -"When you subscribe to the Pandora FMS Update Manager service, you accept " -"that we register your Pandora instance as an identifier on the database " -"owned by Artica TS. This data will solely be used to provide you with " -"information about Pandora FMS and will not be conceded to third parties. " -"You'll be able to unregister from said database at any time from the Update " -"Manager options" +#: ../../general/logon_ok.php:165 +#, php-format +msgid "%s Overview" msgstr "" -"When you subscribe to the Pandora FMS Update Manager service, you accept " -"that we register your Pandora FMS instance as an identifier on the database " -"owned by Ártica ST. This data will solely be used to provide you with " -"information about Pandora FMS and will not be conceded to third parties. You " -"can unregister from this database at any time from the Update Manager " -"options." -#: ../../general/login_identification_wizard.php:151 -msgid "" -"In the same fashion, when subscribed to the newsletter you accept that your " -"email will pass on to a database property of Artica TS. This data will " -"solely be used to provide you with information about Pandora FMS and will " -"not be conceded to third parties. You'll be able to unregister from said " -"database at any time from the newsletter subscription options" +#: ../../general/logon_ok.php:204 +msgid "by" +msgstr "by" + +#: ../../general/logon_ok.php:218 +msgid "News board" +msgstr "News board" + +#: ../../general/logon_ok.php:294 +msgid "Latest activity" msgstr "" -"Similarly, when subscribing to the newsletter you accept that your email " -"will be forwarded to a database owned by Ártica ST. This data will solely be " -"used to provide you with information about Pandora FMS and will not be " -"conceded to third parties. You can unregister from this database at any time " -"from the newsletter subscription options." -#: ../../general/login_identification_wizard.php:156 -#: ../../godmode/alerts/configure_alert_template.php:817 -#: ../../enterprise/godmode/alerts/alert_events.php:548 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 -msgid "Finish" -msgstr "Finish" +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "No agents found" -#: ../../general/login_identification_wizard.php:160 -msgid "Return" -msgstr "Return" +#: ../../general/logon_failed.php:30 +msgid "" +"Either, your password or your login are incorrect. Please check your CAPS " +"LOCK key, username and password are case SeNSiTiVe.

All actions, " +"included failed login attempts are logged in Pandora FMS System logs, and " +"these can be reviewed by each user, please report to admin any incident or " +"malfunction." +msgstr "" +"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 the Pandora FMS log system " +"and can be reviewed by all users. Please report any issue or malfunction to " +"an admin." -#: ../../general/login_identification_wizard.php:164 -msgid "Join the Pandora FMS community" -msgstr "Join the Pandora FMS community" +#: ../../general/noaccess2.php:22 +msgid "Access to this page is restricted" +msgstr "Access to this page is restricted" -#: ../../general/login_identification_wizard.php:166 -#: ../../operation/users/user_edit.php:358 -msgid "Subscribe to our newsletter" -msgstr "Subscribe to our newsletter" +#: ../../general/noaccess2.php:34 +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 authorized users only, please contact " +"the 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 FMS database system." -#: ../../general/login_identification_wizard.php:169 -#: ../../general/login_identification_wizard.php:170 -#: ../../godmode/tag/edit_tag.php:195 ../../godmode/tag/tag.php:203 -#: ../../operation/search_users.php:44 -#: ../../enterprise/extensions/cron/main.php:282 -#: ../../enterprise/extensions/cron/main.php:320 -#: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../enterprise/operation/reporting/custom_reporting.php:24 -#: ../../enterprise/operation/reporting/custom_reporting.php:78 -msgid "Email" -msgstr "Email" +#: ../../general/mysqlerr.php:107 +msgid "Database error" +msgstr "" -#: ../../general/login_identification_wizard.php:171 -msgid "Required" -msgstr "Required" +#: ../../general/mysqlerr.php:117 +msgid "" +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." +msgstr "" -#: ../../general/login_identification_wizard.php:179 -#: ../../general/login_required.php:69 -msgid "Pandora FMS instance identification wizard" -msgstr "Pandora FMS instance identification wizard" +#: ../../general/mysqlerr.php:119 +msgid "" +"Failure to connect to Database server, please check the configuration file " +"config.php or contact system administrator if you need assistance." +msgstr "" -#: ../../general/login_identification_wizard.php:181 -msgid "Do you want to continue without any registration" -msgstr "Do you want to continue without any registration?" +#: ../../general/login_page.php:50 +#, php-format +msgid "Go to %s Website" +msgstr "" -#: ../../general/login_identification_wizard.php:184 -#: ../../godmode/agentes/agent_conf_gis.php:80 -#: ../../godmode/agentes/agent_manager.php:433 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:303 -#: ../../godmode/alerts/alert_view.php:385 -#: ../../godmode/massive/massive_edit_agents.php:348 -#: ../../godmode/massive/massive_edit_agents.php:469 -#: ../../godmode/massive/massive_edit_agents.php:475 -#: ../../godmode/massive/massive_edit_modules.php:428 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/massive/massive_edit_modules.php:492 -#: ../../godmode/massive/massive_edit_modules.php:590 -#: ../../godmode/massive/massive_edit_modules.php:618 -#: ../../godmode/massive/massive_edit_modules.php:636 -#: ../../godmode/reporting/reporting_builder.main.php:115 -#: ../../godmode/reporting/reporting_builder.php:677 -#: ../../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/servers/modificar_server.php:45 -#: ../../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:60 -#: ../../godmode/setup/setup_auth.php:95 -#: ../../godmode/setup/setup_auth.php:144 -#: ../../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:171 -#: ../../godmode/setup/setup_general.php:179 -#: ../../godmode/setup/setup_general.php:186 -#: ../../godmode/setup/setup_general.php:211 -#: ../../godmode/setup/setup_general.php:220 -#: ../../godmode/setup/setup_general.php:228 -#: ../../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:133 -#: ../../godmode/setup/setup_visuals.php:272 -#: ../../godmode/setup/setup_visuals.php:281 -#: ../../godmode/setup/setup_visuals.php:289 -#: ../../godmode/setup/setup_visuals.php:302 -#: ../../godmode/setup/setup_visuals.php:325 -#: ../../godmode/setup/setup_visuals.php:418 -#: ../../godmode/setup/setup_visuals.php:510 -#: ../../godmode/setup/setup_visuals.php:517 -#: ../../godmode/setup/setup_visuals.php:544 -#: ../../godmode/setup/setup_visuals.php:711 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/update_manager/update_manager.setup.php:125 -#: ../../godmode/users/configure_user.php:579 -#: ../../include/functions_events.php:2487 -#: ../../include/functions_events.php:2494 -#: ../../include/functions_snmp.php:334 ../../mobile/operation/events.php:186 -#: ../../mobile/operation/events.php:193 -#: ../../operation/netflow/nf_live_view.php:280 -#: ../../operation/snmpconsole/snmp_view.php:506 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/extensions/cron/functions.php:351 -#: ../../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:289 -#: ../../enterprise/godmode/setup/setup.php:298 -#: ../../enterprise/godmode/setup/setup.php:303 -#: ../../enterprise/godmode/setup/setup.php:312 -#: ../../enterprise/godmode/setup/setup.php:326 -#: ../../enterprise/godmode/setup/setup.php:331 -#: ../../enterprise/godmode/setup/setup.php:342 -#: ../../enterprise/godmode/setup/setup_auth.php:82 -#: ../../enterprise/godmode/setup/setup_auth.php:106 -#: ../../enterprise/godmode/setup/setup_auth.php:240 -#: ../../enterprise/godmode/setup/setup_auth.php:669 -#: ../../enterprise/godmode/setup/setup_auth.php:704 -#: ../../enterprise/godmode/setup/setup_auth.php:823 -#: ../../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:83 -#: ../../enterprise/meta/advanced/metasetup.setup.php:138 -#: ../../enterprise/meta/advanced/metasetup.setup.php:189 -#: ../../enterprise/meta/advanced/metasetup.setup.php:194 -#: ../../enterprise/meta/advanced/metasetup.setup.php:259 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:95 -#: ../../enterprise/meta/advanced/metasetup.visual.php:126 -#: ../../enterprise/meta/advanced/metasetup.visual.php:130 -#: ../../enterprise/meta/advanced/metasetup.visual.php:192 -#: ../../enterprise/meta/advanced/metasetup.visual.php:201 -#: ../../enterprise/meta/advanced/metasetup.visual.php:321 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1565 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 -msgid "No" -msgstr "No" - -#: ../../general/login_identification_wizard.php:187 -#: ../../godmode/agentes/agent_conf_gis.php:79 -#: ../../godmode/agentes/agent_manager.php:430 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:301 -#: ../../godmode/massive/massive_edit_agents.php:348 -#: ../../godmode/massive/massive_edit_agents.php:468 -#: ../../godmode/massive/massive_edit_agents.php:475 -#: ../../godmode/massive/massive_edit_modules.php:427 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/massive/massive_edit_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:590 -#: ../../godmode/massive/massive_edit_modules.php:617 -#: ../../godmode/massive/massive_edit_modules.php:636 -#: ../../godmode/reporting/reporting_builder.main.php:111 -#: ../../godmode/reporting/reporting_builder.php:675 -#: ../../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/servers/modificar_server.php:47 -#: ../../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:59 -#: ../../godmode/setup/setup_auth.php:94 -#: ../../godmode/setup/setup_auth.php:141 -#: ../../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:168 -#: ../../godmode/setup/setup_general.php:176 -#: ../../godmode/setup/setup_general.php:185 -#: ../../godmode/setup/setup_general.php:210 -#: ../../godmode/setup/setup_general.php:219 -#: ../../godmode/setup/setup_general.php:227 -#: ../../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:129 -#: ../../godmode/setup/setup_visuals.php:264 -#: ../../godmode/setup/setup_visuals.php:278 -#: ../../godmode/setup/setup_visuals.php:286 -#: ../../godmode/setup/setup_visuals.php:299 -#: ../../godmode/setup/setup_visuals.php:323 -#: ../../godmode/setup/setup_visuals.php:416 -#: ../../godmode/setup/setup_visuals.php:509 -#: ../../godmode/setup/setup_visuals.php:515 -#: ../../godmode/setup/setup_visuals.php:542 -#: ../../godmode/setup/setup_visuals.php:707 -#: ../../godmode/setup/setup_visuals.php:734 -#: ../../godmode/update_manager/update_manager.setup.php:124 -#: ../../godmode/users/configure_user.php:579 -#: ../../include/functions_snmp.php:340 -#: ../../operation/netflow/nf_live_view.php:276 -#: ../../operation/snmpconsole/snmp_view.php:503 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/extensions/cron/functions.php:351 -#: ../../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:288 -#: ../../enterprise/godmode/setup/setup.php:297 -#: ../../enterprise/godmode/setup/setup.php:302 -#: ../../enterprise/godmode/setup/setup.php:311 -#: ../../enterprise/godmode/setup/setup.php:325 -#: ../../enterprise/godmode/setup/setup.php:330 -#: ../../enterprise/godmode/setup/setup.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:79 -#: ../../enterprise/godmode/setup/setup_auth.php:103 -#: ../../enterprise/godmode/setup/setup_auth.php:237 -#: ../../enterprise/godmode/setup/setup_auth.php:666 -#: ../../enterprise/godmode/setup/setup_auth.php:701 -#: ../../enterprise/godmode/setup/setup_auth.php:822 -#: ../../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:82 -#: ../../enterprise/meta/advanced/metasetup.setup.php:137 -#: ../../enterprise/meta/advanced/metasetup.setup.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:193 -#: ../../enterprise/meta/advanced/metasetup.setup.php:258 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:94 -#: ../../enterprise/meta/advanced/metasetup.visual.php:125 -#: ../../enterprise/meta/advanced/metasetup.visual.php:129 -#: ../../enterprise/meta/advanced/metasetup.visual.php:188 -#: ../../enterprise/meta/advanced/metasetup.visual.php:197 -#: ../../enterprise/meta/advanced/metasetup.visual.php:318 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1563 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 -msgid "Yes" -msgstr "Yes" - -#: ../../general/login_page.php:53 -msgid "Go to Pandora FMS Website" -msgstr "Go to the Pandora FMS Website" - -#: ../../general/login_page.php:65 +#: ../../general/login_page.php:63 msgid "Go to Login" msgstr "Go to Login" -#: ../../general/login_page.php:73 -#: ../../enterprise/meta/general/login_page.php:48 -#: ../../enterprise/meta/include/process_reset_pass.php:30 -#: ../../enterprise/meta/include/reset_pass.php:30 -msgid "Splash login" -msgstr "Splash login" - -#: ../../general/login_page.php:107 -#: ../../enterprise/include/process_reset_pass.php:56 -#: ../../enterprise/include/reset_pass.php:57 -msgid "Docs" -msgstr "Docs" - -#: ../../general/login_page.php:177 +#: ../../general/login_page.php:227 msgid "Login as admin" msgstr "Login as admin" -#: ../../general/login_page.php:185 -#: ../../enterprise/meta/general/login_page.php:127 -msgid "Login with SAML" -msgstr "Login with SAML" - -#: ../../general/login_page.php:204 ../../mobile/include/user.class.php:256 -#: ../../enterprise/meta/general/login_page.php:119 -#: ../../enterprise/meta/general/login_page.php:147 -msgid "Login" -msgstr "Login" - -#: ../../general/login_page.php:219 +#: ../../general/login_page.php:283 msgid "Authentication code" msgstr "Authentication code" -#: ../../general/login_page.php:222 ../../mobile/include/user.class.php:306 -msgid "Check code" -msgstr "Check code" - -#: ../../general/login_page.php:230 +#: ../../general/login_page.php:295 msgid "View details" msgstr "View details" -#: ../../general/login_page.php:244 -#: ../../enterprise/meta/general/login_page.php:155 -msgid "Forgot your password?" -msgstr "Forgot your password?" +#: ../../general/login_page.php:323 ../../general/login_page.php:326 +#, php-format +msgid "WELCOME TO %s" +msgstr "" -#: ../../general/login_page.php:259 ../../general/login_page.php:263 -#: ../../include/functions_config.php:1192 -#: ../../enterprise/include/process_reset_pass.php:132 -#: ../../enterprise/include/process_reset_pass.php:136 -#: ../../enterprise/include/reset_pass.php:122 -#: ../../enterprise/include/reset_pass.php:126 -msgid "WELCOME TO PANDORA FMS" -msgstr "WELCOME TO PANDORA FMS" - -#: ../../general/login_page.php:272 ../../general/login_page.php:276 -#: ../../include/functions_config.php:1196 -#: ../../enterprise/include/process_reset_pass.php:145 -#: ../../enterprise/include/process_reset_pass.php:149 -#: ../../enterprise/include/reset_pass.php:135 -#: ../../enterprise/include/reset_pass.php:139 +#: ../../general/login_page.php:335 ../../general/login_page.php:338 msgid "NEXT GENERATION" msgstr "NEXT GENERATION" -#: ../../general/login_page.php:295 -#: ../../enterprise/include/process_reset_pass.php:170 -#: ../../enterprise/include/reset_pass.php:160 -#: ../../enterprise/meta/general/login_page.php:191 -#: ../../enterprise/meta/include/process_reset_pass.php:129 -#: ../../enterprise/meta/include/reset_pass.php:118 -msgid "Build" -msgstr "Build" - -#: ../../general/login_page.php:299 ../../general/login_page.php:302 -#: ../../general/login_page.php:317 ../../general/login_page.php:320 -#: ../../general/login_page.php:337 ../../general/login_page.php:340 -#: ../../enterprise/meta/general/login_page.php:195 -#: ../../enterprise/meta/general/login_page.php:198 -#: ../../enterprise/meta/general/login_page.php:213 -#: ../../enterprise/meta/general/login_page.php:216 -#: ../../enterprise/meta/general/login_page.php:233 -#: ../../enterprise/meta/general/login_page.php:236 -msgid "Password reset" -msgstr "Password reset" - -#: ../../general/login_page.php:306 -#: ../../enterprise/meta/general/login_page.php:202 -msgid "INFO" -msgstr "INFO" - -#: ../../general/login_page.php:307 -#: ../../enterprise/meta/general/login_page.php:203 -msgid "An email has been sent to your email address" -msgstr "An email has been sent to your email address" - -#: ../../general/login_page.php:324 ../../general/login_page.php:363 -#: ../../enterprise/include/reset_pass.php:171 -#: ../../enterprise/meta/general/login_page.php:220 -#: ../../enterprise/meta/general/login_page.php:259 -#: ../../enterprise/meta/include/reset_pass.php:129 -msgid "ERROR" -msgstr "ERROR" - -#: ../../general/login_page.php:344 -#: ../../enterprise/meta/general/login_page.php:240 -msgid "SUCCESS" -msgstr "SUCCESS" - -#: ../../general/login_page.php:356 ../../general/login_page.php:359 -#: ../../general/login_page.php:458 ../../general/login_page.php:461 -#: ../../enterprise/include/functions_login.php:131 -#: ../../enterprise/meta/general/login_page.php:252 -#: ../../enterprise/meta/general/login_page.php:255 -msgid "Login failed" -msgstr "Login failed" - -#: ../../general/login_page.php:375 ../../general/login_page.php:378 -#: ../../general/login_page.php:382 -#: ../../enterprise/meta/general/login_page.php:271 -#: ../../enterprise/meta/general/login_page.php:274 -#: ../../enterprise/meta/general/login_page.php:278 -msgid "Logged out" -msgstr "Logged out" - -#: ../../general/login_page.php:383 ../../mobile/include/user.class.php:221 -#: ../../enterprise/meta/general/login_page.php:279 -msgid "" -"Your session is over. Please close your browser window to close this Pandora " -"session." +#: ../../general/login_page.php:467 ../../general/login_page.php:469 +#, php-format +msgid "Problem with %s database" msgstr "" -"Your session has ended. Please close your browser window to close this " -"Pandora FMS session." -#: ../../general/login_page.php:396 ../../include/functions_ui.php:3720 -msgid "Problem with Pandora FMS database" -msgstr "Problem with Pandora FMS database" - -#: ../../general/login_page.php:397 +#: ../../general/login_page.php:473 msgid "" "Cannot connect to the database, please check your database setup in the " "include/config.php file.

\n" @@ -5663,93 +46860,73 @@ msgstr "" "or\n" "\t\tthe database server is not running." -#: ../../general/login_page.php:401 ../../include/functions_ui.php:3725 +#: ../../general/login_page.php:478 msgid "DB ERROR" msgstr "DB ERROR" -#: ../../general/login_page.php:407 ../../include/functions_ui.php:3731 +#: ../../general/login_page.php:484 +#, php-format msgid "" -"If you have modified auth system, this problem could be because Pandora " -"cannot override authorization variables from the config database. Remove " -"them from your database by executing:
DELETE FROM tconfig WHERE "
-"token = \"auth\";
" +"If you have modified the auth system, the origin of this problem could be " +"that %s cannot override the authorization variables from the config " +"database. Please remove them from your database by executing:
DELETE "
+"FROM tconfig WHERE token = \"auth\";
" msgstr "" -"If you have modified the authentication system, the problem could be that " -"Pandora FMS cannot override the authorization variables from the " -"configuration database. Remove them from your database by " -"executing:
DELETE FROM tconfig WHERE token = \"auth\";
" -#: ../../general/login_page.php:411 ../../include/functions_ui.php:3735 +#: ../../general/login_page.php:489 msgid "Empty configuration table" msgstr "Empty configuration table" -#: ../../general/login_page.php:412 +#: ../../general/login_page.php:491 +#, php-format 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 " +"\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

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.
" +"\t\t\t

%s Console cannot find include/config.php or this file " +"has invalid\n" +"\t\t\tpermissions and HTTP server cannot read it. Please read documentation " +"to fix this problem.
" msgstr "" -"Cannot load configuration variables from database. Please check your " -"database setup in the\n" -"\t\tinclude/config.php file.

\n" -"\t\tYour database schema has probably been created but there are is no data " -"in it: there is either 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.
" -#: ../../general/login_page.php:419 ../../include/functions_ui.php:3743 +#: ../../general/login_page.php:501 msgid "No configuration file found" msgstr "No configuration file found" -#: ../../general/login_page.php:420 +#: ../../general/login_page.php:503 +#, php-format msgid "" -"Pandora FMS Console cannot find include/config.php or this file has " -"invalid\n" +"%s Console cannot find include/config.php or this file has invalid\n" "\t\tpermissions and HTTP server cannot read it. Please read documentation to " "fix this problem." msgstr "" -"Pandora FMS Console cannot find include/config.php or this file has " -"invalid\n" -"\t\tpermissions and HTTP server cannot read it. Please read the " -"documentation to fix this problem." -#: ../../general/login_page.php:431 ../../include/functions_ui.php:3755 +#: ../../general/login_page.php:515 #, php-format msgid "You may try to run the %sinstallation wizard%s to create one." msgstr "" "You may try executing the %sinstallation wizard%s to create one." -#: ../../general/login_page.php:434 ../../include/functions_ui.php:3758 +#: ../../general/login_page.php:519 msgid "Installer active" msgstr "Installer active" -#: ../../general/login_page.php:435 +#: ../../general/login_page.php:521 +#, php-format msgid "" "For security reasons, normal operation is not possible until you delete " "installer file.\n" -"\t\tPlease delete the ./install.php file before running Pandora FMS " -"Console." +"\t\tPlease delete the ./install.php file before running %s Console." msgstr "" -"For security reasons, normal operation is not possible until you delete the " -"installation file.\n" -"\t\tPlease delete the ./install.php file before running Pandora FMS " -"Console." -#: ../../general/login_page.php:439 ../../include/functions_ui.php:3763 +#: ../../general/login_page.php:528 msgid "Bad permission for include/config.php" msgstr "Bad permission for include/config.php" -#: ../../general/login_page.php:440 +#: ../../general/login_page.php:530 msgid "" "For security reasons, config.php must have restrictive permissions, " "and \"other\" users\n" @@ -5768,11 +46945,11 @@ msgstr "" "\t\tpermissions for include/config.php file. Please do it, it is for " "your security." -#: ../../general/login_page.php:446 +#: ../../general/login_page.php:538 msgid "Bad defined homedir" msgstr "Bad defined homedir" -#: ../../general/login_page.php:447 +#: ../../general/login_page.php:539 msgid "" "In the config.php file in the variable $config[\"homedir\"] = add the " "correct path" @@ -5780,11 +46957,11 @@ msgstr "" "In the config.php file in the variable $config[\"homedir\"] = add the " "correct path" -#: ../../general/login_page.php:450 +#: ../../general/login_page.php:543 msgid "Bad defined homeurl or homeurl_static" msgstr "Bad defined homeurl or homeurl_static" -#: ../../general/login_page.php:451 +#: ../../general/login_page.php:544 msgid "" "In the config.php file in the variable $config[\"homeurl\"] or " "$config[\"homeurl_static\"] = add the correct path" @@ -5792,32831 +46969,99 @@ msgstr "" "In the config.php file in the variable $config[\"homeurl\"] or " "$config[\"homeurl_static\"] = add the correct path" -#: ../../general/login_required.php:72 -msgid "" -"Please fill the following information in order to configure your Pandora FMS " -"instance successfully" +#: ../../general/pandora_help.php:23 +#, php-format +msgid "%s help system" 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:337 -msgid "Language code for Pandora" -msgstr "Pandora FMS Language settings" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -msgid "Africa" -msgstr "Africa" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -msgid "America" -msgstr "America" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -msgid "Antarctica" -msgstr "Antarctica" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:151 -msgid "Arctic" -msgstr "Arctic" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -msgid "Asia" -msgstr "Asia" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:153 -msgid "Atlantic" -msgstr "Atlantic" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:154 -msgid "Australia" -msgstr "Australia" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -msgid "Europe" -msgstr "Europe" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:156 -msgid "Indian" -msgstr "Indian" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:157 -msgid "Pacific" -msgstr "Pacific" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../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 "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 in " -"order to avoid inconsistency." - -#: ../../general/login_required.php:116 -msgid "E-mail for receiving alerts" -msgstr "Email 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:72 -#: ../../include/functions_pandora_networkmap.php:1015 -#: ../../include/functions_update_manager.php:372 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:630 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:227 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:194 -#: ../../enterprise/include/functions_update_manager.php:204 -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:704 -#: ../../operation/users/user_edit.php:769 -#: ../../operation/users/user_edit.php:840 -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 the Pandora FMS log system " -"and can be reviewed by all users. Please report any issue 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 -#: ../../enterprise/operation/agentes/wux_console_view.php:251 -#: ../../enterprise/operation/agentes/wux_console_view.php:286 -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:3712 -#: ../../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:548 -#: ../../include/ajax/events.php:347 ../../include/functions.php:2340 -#: ../../include/functions_reporting_html.php:3713 -#: ../../mobile/operation/events.php:518 -#: ../../operation/users/user_edit.php:459 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:93 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:206 -#: ../../enterprise/extensions/ipam/ipam_excel.php:124 -#: ../../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 the last activity you performed on the Pandora FMS console." - -#: ../../general/noaccess2.php:18 ../../general/noaccess2.php:21 -#: ../../mobile/index.php:232 ../../mobile/operation/agent.php:87 -#: ../../mobile/operation/agents.php:166 ../../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 do not 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 authorized users only, please contact " -"the 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 FMS database system." - -#: ../../general/pandora_help.php:24 -msgid "Pandora FMS help system" -msgstr "Pandora FMS help wizard" - -#: ../../general/pandora_help.php:75 +#: ../../general/pandora_help.php:72 msgid "Help system error" msgstr "Help wizard error" -#: ../../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 "" -"The Pandora FMS help wizard has been asked for a reference that currently " -"does not 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:194 -#: ../../godmode/agentes/modificar_agente.php:200 -#: ../../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/map_builder.php:229 -#: ../../godmode/reporting/map_builder.php:248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:720 -#: ../../godmode/reporting/reporting_builder.php:473 -#: ../../godmode/reporting/visual_console_favorite.php:55 -#: ../../godmode/reporting/visual_console_favorite.php:72 -#: ../../godmode/users/user_list.php:228 ../../godmode/users/user_list.php:232 -#: ../../include/functions_snmp_browser.php:623 -#: ../../include/functions_snmp.php:318 -#: ../../operation/agentes/estado_agente.php:208 -#: ../../operation/agentes/estado_agente.php:231 -#: ../../operation/agentes/status_monitor.php:334 -#: ../../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:561 -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_collections.php:182 -#: ../../enterprise/godmode/reporting/cluster_list.php:109 -#: ../../enterprise/godmode/reporting/cluster_list.php:128 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:138 -#: ../../enterprise/meta/agentsearch.php:78 -#: ../../enterprise/meta/general/main_header.php:488 -#: ../../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/agentes/tag_view.php:139 -#: ../../enterprise/operation/inventory/inventory.php:180 -#: ../../enterprise/operation/inventory/inventory.php:220 -#: ../../enterprise/operation/log/log_viewer.php:187 -#: ../../enterprise/operation/log/log_viewer.php:254 -#: ../../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:121 -#: ../../godmode/massive/massive_copy_modules.php:169 -#: ../../operation/reporting/reporting_viewer.php:234 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:148 -#: ../../enterprise/godmode/policies/policy_modules.php:1340 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 -#: ../../enterprise/operation/log/log_viewer.php:262 -#: ../../enterprise/operation/log/log_viewer.php:268 -msgid "Loading" -msgstr "Loading" - -#: ../../general/ui/agents_list.php:127 -#: ../../enterprise/extensions/vmware/vmware_view.php:1440 -#: ../../enterprise/godmode/reporting/cluster_view.php:486 -#: ../../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 FMS 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:679 -#: ../../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:151 -#: ../../godmode/snmpconsole/snmp_filters.php:225 -#: ../../godmode/tag/tag.php:161 -#: ../../operation/agentes/alerts_status.functions.php:116 -#: ../../operation/agentes/alerts_status.functions.php:126 -#: ../../operation/agentes/estado_monitores.php:487 -#: ../../operation/agentes/graphs.php:194 -#: ../../operation/incidents/incident.php:230 -#: ../../operation/netflow/nf_live_view.php:320 ../../operation/tree.php:160 -#: ../../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:374 -#: ../../enterprise/godmode/setup/setup_acl.php:416 -#: ../../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:644 -#: ../../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 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 will 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 position of the agent, it 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:429 -#: ../../godmode/massive/massive_edit_agents.php:466 -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 issues 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 "Issue" - -#: ../../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:2274 -#: ../../include/functions_reporting_html.php:2996 -#: ../../operation/agentes/estado_generalagente.php:436 -#: ../../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/advanced/agents_setup.move_agents.php:355 -#: ../../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:923 -#: ../../include/functions_events.php:47 -#: ../../include/functions_events.php:2247 -#: ../../include/functions_events.php:2305 -#: ../../include/functions_events.php:3693 -#: ../../operation/agentes/pandora_networkmap.editor.php:246 -#: ../../operation/events/events.build_table.php:229 -#: ../../operation/incidents/incident.php:341 -#: ../../operation/incidents/incident_detail.php:289 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:116 -#: ../../enterprise/include/functions_log.php:369 -#: ../../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:152 -#: ../../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:528 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:103 -#: ../../enterprise/operation/log/log_viewer.php:221 -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:2465 -#: ../../include/functions_events.php:3651 -#: ../../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:460 -#: ../../godmode/events/custom_events.php:74 -#: ../../godmode/events/custom_events.php:154 -#: ../../include/functions_treeview.php:561 -#: ../../include/functions_events.php:36 -#: ../../include/functions_events.php:908 -#: ../../include/functions_events.php:3635 -#: ../../include/functions_reporting_html.php:2081 -#: ../../mobile/operation/modules.php:495 -#: ../../mobile/operation/modules.php:753 -#: ../../operation/events/events.build_table.php:161 -#: ../../enterprise/extensions/ipam/ipam_excel.php:123 -#: ../../enterprise/include/functions_reporting_pdf.php:2395 -#: ../../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 QR code" - -#: ../../godmode/agentes/agent_manager.php:166 -#: ../../operation/agentes/estado_agente.php:173 ../../operation/menu.php:55 -msgid "Agent detail" -msgstr "Agent detail" - -#: ../../godmode/agentes/agent_manager.php:190 -#: ../../enterprise/godmode/policies/policy_agents.php:626 -msgid "This agent can be remotely configured" -msgstr "This agent can be configured remotely." - -#: ../../godmode/agentes/agent_manager.php:193 -msgid "You can remotely edit this agent configuration" -msgstr "Agent settings can be remotely edited." - -#: ../../godmode/agentes/agent_manager.php:200 -msgid "Delete agent" -msgstr "Delete agent" - -#: ../../godmode/agentes/agent_manager.php:202 -#: ../../enterprise/meta/include/functions_wizard_meta.php:148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1629 -msgid "Alias" -msgstr "Alias" - -#: ../../godmode/agentes/agent_manager.php:205 -msgid "Use alias as name" -msgstr "Use alias as name" - -#: ../../godmode/agentes/agent_manager.php:208 -#: ../../godmode/servers/modificar_server.php:56 -#: ../../include/functions_treeview.php:581 -#: ../../include/functions_events.php:2128 -#: ../../include/functions_reporting_html.php:2321 -#: ../../include/functions_reporting_html.php:2364 -#: ../../operation/gis_maps/ajax.php:269 -#: ../../enterprise/include/functions_reporting_pdf.php:1925 -#: ../../enterprise/include/functions_reporting_pdf.php:1944 -#: ../../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:217 -#: ../../godmode/snmpconsole/snmp_alert.php:1331 -#: ../../operation/events/events.build_table.php:770 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:211 -msgid "Delete selected" -msgstr "Delete selected items" - -#: ../../godmode/agentes/agent_manager.php:235 -msgid "Only it is show when
the agent is saved." -msgstr "Only shown when
the agent is saved." - -#: ../../godmode/agentes/agent_manager.php:247 -#: ../../godmode/agentes/agent_manager.php:332 -#: ../../godmode/agentes/planned_downtime.editor.php:727 -#: ../../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_copy_modules.php:136 -#: ../../godmode/massive/massive_delete_modules.php:468 -#: ../../godmode/massive/massive_delete_modules.php:518 -#: ../../godmode/massive/massive_edit_agents.php:328 -#: ../../godmode/massive/massive_edit_modules.php:320 -#: ../../godmode/massive/massive_edit_modules.php:358 -#: ../../godmode/reporting/create_container.php:507 -#: ../../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:810 -#: ../../include/ajax/visual_console_builder.ajax.php:919 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:915 -#: ../../include/functions_visual_map_editor.php:956 -#: ../../include/functions_html.php:958 ../../include/functions_html.php:959 -#: ../../include/functions_html.php:960 ../../include/functions_html.php:961 -#: ../../include/functions_html.php:962 ../../include/functions_html.php:965 -#: ../../include/functions_html.php:966 ../../include/functions_html.php:967 -#: ../../include/functions_html.php:968 ../../include/functions_html.php:969 -#: ../../operation/events/events_list.php:509 -#: ../../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/massive/massive_add_modules_policy.php:135 -#: ../../enterprise/godmode/setup/setup_acl.php:414 -#: ../../enterprise/godmode/setup/setup_auth.php:65 -#: ../../enterprise/godmode/setup/setup_auth.php:190 -#: ../../enterprise/godmode/setup/setup_auth.php:224 -#: ../../enterprise/godmode/setup/setup_auth.php:693 -#: ../../enterprise/godmode/setup/setup_auth.php:785 -#: ../../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:260 -#: ../../godmode/agentes/module_manager.php:563 -#: ../../godmode/agentes/module_manager_editor_common.php:382 -#: ../../godmode/agentes/module_manager_editor_common.php:408 -#: ../../godmode/massive/massive_edit_agents.php:356 -#: ../../godmode/massive/massive_edit_modules.php:484 -#: ../../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:587 -#: ../../include/functions_reporting_html.php:2119 -#: ../../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:557 -#: ../../operation/agentes/estado_generalagente.php:229 -#: ../../operation/agentes/status_monitor.php:974 -#: ../../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:95 -#: ../../enterprise/extensions/ipam/ipam_list.php:162 -#: ../../enterprise/extensions/ipam/ipam_network.php:125 -#: ../../enterprise/extensions/vmware/functions.php:571 -#: ../../enterprise/godmode/agentes/inventory_manager.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:236 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:171 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:197 -#: ../../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:2448 -#: ../../enterprise/meta/agentsearch.php:104 -#: ../../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 -#: ../../enterprise/operation/agentes/tag_view.php:466 -#: ../../enterprise/operation/agentes/tag_view.php:534 -msgid "Interval" -msgstr "Interval" - -#: ../../godmode/agentes/agent_manager.php:266 -#: ../../godmode/agentes/modificar_agente.php:468 -#: ../../godmode/agentes/planned_downtime.editor.php:781 -#: ../../godmode/massive/massive_edit_agents.php:360 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:298 -#: ../../include/functions_events.php:2133 -#: ../../include/functions_reporting_html.php:2083 -#: ../../mobile/operation/agents.php:73 ../../mobile/operation/agents.php:339 -#: ../../operation/agentes/estado_agente.php:552 -#: ../../operation/agentes/estado_generalagente.php:156 -#: ../../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:40 -#: ../../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:103 -#: ../../enterprise/operation/agentes/tag_view.php:465 -msgid "OS" -msgstr "OS" - -#: ../../godmode/agentes/agent_manager.php:278 -#: ../../godmode/agentes/module_manager.php:557 -#: ../../godmode/massive/massive_edit_agents.php:371 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1287 -#: ../../include/functions_events.php:3614 -#: ../../operation/events/events.build_table.php:139 -#: ../../operation/events/events_list.php:516 -#: ../../operation/servers/recon_view.php:176 -#: ../../enterprise/extensions/csv_import/main.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1471 -#: ../../enterprise/include/functions_events.php:204 -#: ../../enterprise/meta/advanced/policymanager.queue.php:255 -#: ../../enterprise/meta/agentsearch.php:101 -#: ../../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:286 -#: ../../godmode/agentes/agent_manager.php:420 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:697 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:796 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:958 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:974 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:990 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1006 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1022 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1037 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1043 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:415 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:513 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:289 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:349 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:480 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:496 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:512 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:528 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:543 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:549 -#: ../../godmode/agentes/module_manager_editor_common.php:432 -#: ../../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: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:511 -#: ../../godmode/massive/massive_delete_modules.php:591 -#: ../../godmode/massive/massive_delete_modules.php:643 -#: ../../godmode/massive/massive_delete_modules.php:644 -#: ../../godmode/massive/massive_delete_modules.php:645 -#: ../../godmode/massive/massive_delete_modules.php:646 -#: ../../godmode/massive/massive_delete_modules.php:712 -#: ../../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:370 -#: ../../godmode/massive/massive_edit_modules.php:335 -#: ../../godmode/massive/massive_edit_modules.php:564 -#: ../../godmode/massive/massive_edit_modules.php:596 -#: ../../godmode/massive/massive_edit_modules.php:673 -#: ../../godmode/massive/massive_edit_modules.php:704 -#: ../../godmode/massive/massive_edit_modules.php:766 -#: ../../godmode/massive/massive_edit_modules.php:932 -#: ../../godmode/massive/massive_edit_modules.php:933 -#: ../../godmode/massive/massive_edit_modules.php:934 -#: ../../godmode/massive/massive_edit_modules.php:935 -#: ../../godmode/massive/massive_edit_modules.php:1160 -#: ../../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:432 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:360 -#: ../../godmode/reporting/graph_builder.graph_editor.php:380 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1128 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1156 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1197 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1207 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1568 -#: ../../godmode/reporting/visual_console_builder.elements.php:293 -#: ../../godmode/reporting/visual_console_builder.elements.php:434 -#: ../../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:557 -#: ../../godmode/snmpconsole/snmp_alert.php:27 -#: ../../godmode/snmpconsole/snmp_alert.php:1008 -#: ../../godmode/users/configure_user.php:573 -#: ../../godmode/users/configure_user.php:657 -#: ../../godmode/users/configure_user.php:662 -#: ../../godmode/users/configure_user.php:796 -#: ../../godmode/users/configure_user.php:800 -#: ../../godmode/users/configure_user.php:805 -#: ../../include/ajax/alert_list.ajax.php:171 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/functions.php:909 -#: ../../include/functions_pandora_networkmap.php:424 -#: ../../include/functions_pandora_networkmap.php:997 -#: ../../include/functions_pandora_networkmap.php:1718 -#: ../../include/functions_pandora_networkmap.php:1721 -#: ../../include/functions_pandora_networkmap.php:1772 -#: ../../include/functions_pandora_networkmap.php:1776 -#: ../../include/functions_pandora_networkmap.php:1828 -#: ../../include/functions_pandora_networkmap.php:1833 -#: ../../include/functions_events.php:1690 -#: ../../include/functions_events.php:1697 -#: ../../include/functions_visual_map_editor.php:326 -#: ../../include/functions_visual_map_editor.php:467 -#: ../../include/functions_visual_map_editor.php:692 -#: ../../include/functions_html.php:317 ../../include/functions_html.php:495 -#: ../../mobile/operation/events.php:587 -#: ../../operation/agentes/pandora_networkmap.editor.php:256 -#: ../../operation/agentes/ver_agente.php:888 -#: ../../operation/agentes/ver_agente.php:931 -#: ../../operation/agentes/ver_agente.php:941 -#: ../../operation/events/events_list.php:351 -#: ../../operation/events/events_list.php:877 -#: ../../operation/netflow/nf_live_view.php:399 -#: ../../operation/snmpconsole/snmp_view.php:490 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:926 -#: ../../operation/users/user_edit.php:326 -#: ../../operation/users/user_edit.php:350 -#: ../../operation/users/user_edit.php:395 -#: ../../operation/users/user_edit.php:409 -#: ../../operation/users/user_edit.php:565 -#: ../../operation/users/user_edit.php:572 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:588 -#: ../../enterprise/dashboard/widgets/service_map.php:39 -#: ../../enterprise/dashboard/widgets/top_n.php:398 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:69 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:72 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:69 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:72 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:77 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:80 -#: ../../enterprise/extensions/ipam/ipam_network.php:635 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:428 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:559 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:655 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:106 -#: ../../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:686 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:942 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:958 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:974 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:990 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1006 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1021 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1027 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:404 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:499 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:288 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:348 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:479 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:495 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:511 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:527 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:542 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:548 -#: ../../enterprise/godmode/policies/policy_agents.php:339 -#: ../../enterprise/godmode/policies/policy_agents.php:1051 -#: ../../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:60 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:350 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:367 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:383 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:399 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:423 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:439 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:514 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:523 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:542 -#: ../../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:1856 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1964 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:253 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:700 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:721 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:736 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:746 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:756 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:760 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:787 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:76 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:607 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:628 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:637 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:999 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1027 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1046 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1073 -#: ../../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:352 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:415 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:456 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:520 -#: ../../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/reporting/cluster_builder.main.php:863 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:926 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:941 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:951 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:975 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:990 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1000 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1015 -#: ../../enterprise/godmode/servers/manage_export_form.php:73 -#: ../../enterprise/godmode/setup/setup.php:384 -#: ../../enterprise/godmode/setup/setup.php:390 -#: ../../enterprise/godmode/setup/setup.php:398 -#: ../../enterprise/godmode/setup/setup.php:404 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:645 -#: ../../enterprise/meta/advanced/metasetup.setup.php:287 -#: ../../enterprise/meta/advanced/metasetup.setup.php:293 -#: ../../enterprise/meta/advanced/metasetup.setup.php:303 -#: ../../enterprise/meta/advanced/metasetup.setup.php:309 -#: ../../enterprise/meta/advanced/metasetup.visual.php:133 -#: ../../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/pandora_networkmap.view.php:135 -#: ../../enterprise/operation/agentes/ver_agente.php:36 -msgid "None" -msgstr "None" - -#: ../../godmode/agentes/agent_manager.php:307 -#: ../../godmode/agentes/module_manager_editor_common.php:360 -#: ../../godmode/groups/configure_group.php:178 -#: ../../godmode/massive/massive_edit_agents.php:407 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:158 -msgid "Custom ID" -msgstr "Custom ID" - -#: ../../godmode/agentes/agent_manager.php:310 -#: ../../godmode/groups/configure_group.php:134 -#: ../../godmode/massive/massive_edit_agents.php:333 -#: ../../godmode/modules/manage_nc_groups_form.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -#: ../../include/functions_visual_map_editor.php:689 -#: ../../operation/agentes/estado_generalagente.php:307 -#: ../../operation/agentes/ver_agente.php:929 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1277 -msgid "Parent" -msgstr "Parent" - -#: ../../godmode/agentes/agent_manager.php:324 -#: ../../godmode/massive/massive_edit_agents.php:346 -msgid "Cascade protection" -msgstr "Cascade protection" - -#: ../../godmode/agentes/agent_manager.php:337 -msgid "Safe operation mode" -msgstr "Safe operation mode" - -#: ../../godmode/agentes/agent_manager.php:338 -msgid "" -"This mode allow Pandora FMS to disable all modules \n" -"\t\tof this agent while the selected module is on CRITICAL status" -msgstr "" -"This mode allows Pandora FMS to disable all the modules \n" -"\t\tof this agent while the selected module is on CRITICAL status." - -#: ../../godmode/agentes/agent_manager.php:346 -#: ../../godmode/massive/massive_edit_agents.php:411 -msgid "Module definition" -msgstr "Module definition" - -#: ../../godmode/agentes/agent_manager.php:348 -#: ../../godmode/massive/massive_edit_agents.php:413 -msgid "Learning mode" -msgstr "Learning mode" - -#: ../../godmode/agentes/agent_manager.php:351 -#: ../../godmode/massive/massive_edit_agents.php:414 -msgid "Normal mode" -msgstr "Normal mode" - -#: ../../godmode/agentes/agent_manager.php:354 -#: ../../godmode/massive/massive_edit_agents.php:415 -msgid "Autodisable mode" -msgstr "Autodisable mode" - -#: ../../godmode/agentes/agent_manager.php:360 -#: ../../godmode/agentes/modificar_agente.php:547 -#: ../../godmode/agentes/module_manager_editor_common.php:172 -#: ../../godmode/agentes/module_manager_editor_common.php:474 -#: ../../godmode/alerts/alert_list.list.php:136 -#: ../../godmode/alerts/alert_view.php:516 -#: ../../godmode/alerts/configure_alert_template.php:666 -#: ../../godmode/massive/massive_edit_agents.php:420 -#: ../../godmode/massive/massive_edit_modules.php:487 -#: ../../include/functions_reporting.php:3721 -#: ../../include/functions_treeview.php:74 -#: ../../include/functions_treeview.php:557 -#: ../../include/functions_groups.php:2152 -#: ../../include/functions_reporting_html.php:2098 -#: ../../mobile/operation/agent.php:151 ../../mobile/operation/alerts.php:40 -#: ../../operation/agentes/alerts_status.functions.php:76 -#: ../../operation/agentes/estado_generalagente.php:86 -#: ../../operation/agentes/estado_generalagente.php:89 -#: ../../operation/agentes/estado_generalagente.php:323 -#: ../../operation/search_agents.php:91 -#: ../../enterprise/extensions/vmware/functions.php:20 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:86 -#: ../../enterprise/godmode/modules/configure_local_component.php:287 -#: ../../enterprise/godmode/policies/policy_agents.php:479 -#: ../../enterprise/godmode/policies/policy_agents.php:498 -#: ../../enterprise/godmode/policies/policy_agents.php:1085 -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/setup/edit_skin.php:248 -#: ../../enterprise/include/functions_reporting_pdf.php:2428 -#: ../../enterprise/meta/agentsearch.php:211 -#: ../../enterprise/meta/agentsearch.php:219 -#: ../../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:362 -#: ../../godmode/massive/massive_edit_agents.php:421 -msgid "Active" -msgstr "Active" - -#: ../../godmode/agentes/agent_manager.php:366 -#: ../../godmode/agentes/configurar_agente.php:464 -#: ../../godmode/agentes/configurar_agente.php:580 -#: ../../godmode/massive/massive_edit_agents.php:424 -#: ../../godmode/servers/servers.build_table.php:173 -#: ../../operation/agentes/estado_generalagente.php:321 -#: ../../enterprise/godmode/policies/policy_agents.php:573 -msgid "Remote configuration" -msgstr "Remote configuration" - -#: ../../godmode/agentes/agent_manager.php:369 -#: ../../godmode/agentes/agent_manager.php:391 -#: ../../godmode/massive/massive_edit_agents.php:431 -msgid "Not available" -msgstr "Not available" - -#: ../../godmode/agentes/agent_manager.php:382 -#: ../../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:385 -#: ../../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 configuration file means you will have to reactivate remote " -"configuration on the local agent in order to restore it." - -#: ../../godmode/agentes/agent_manager.php:400 -#: ../../godmode/massive/massive_edit_agents.php:457 -msgid "Agent icon" -msgstr "Agent icon" - -#: ../../godmode/agentes/agent_manager.php:400 -msgid "Agent icon for GIS Maps." -msgstr "Agent icon for GIS Maps" - -#: ../../godmode/agentes/agent_manager.php:438 -#: ../../include/functions_treeview.php:674 -#: ../../operation/agentes/estado_generalagente.php:358 -#: ../../operation/agentes/ver_agente.php:1129 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1144 -msgid "Url address" -msgstr "URL address" - -#: ../../godmode/agentes/agent_manager.php:442 -#: ../../godmode/agentes/modificar_agente.php:556 -#: ../../godmode/agentes/module_manager.php:646 -#: ../../godmode/agentes/module_manager_editor_common.php:568 -#: ../../godmode/agentes/planned_downtime.editor.php:503 -#: ../../godmode/agentes/planned_downtime.list.php:427 -#: ../../godmode/massive/massive_edit_agents.php:472 -#: ../../godmode/massive/massive_edit_modules.php:633 -#: ../../include/ajax/module.php:916 ../../include/class/Tree.class.php:1837 -#: ../../mobile/operation/agent.php:156 -#: ../../operation/agentes/estado_agente.php:631 -#: ../../operation/agentes/estado_generalagente.php:94 -#: ../../operation/agentes/estado_generalagente.php:97 -#: ../../operation/search_agents.php:100 -msgid "Quiet" -msgstr "Quiet" - -#: ../../godmode/agentes/agent_manager.php:444 -#: ../../godmode/massive/massive_edit_agents.php:473 -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:447 -#: ../../godmode/agentes/module_manager_editor.php:522 -#: ../../godmode/massive/massive_add_action_alerts.php:181 -#: ../../godmode/massive/massive_edit_agents.php:478 -#: ../../include/functions_visual_map_editor.php:644 -#: ../../operation/events/events_list.php:656 -#: ../../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:467 -#: ../../godmode/massive/massive_edit_agents.php:502 -msgid "This field allows url insertion using the BBCode's url tag" -msgstr "This field allows URL insertion using the BBCode URL tag." - -#: ../../godmode/agentes/agent_manager.php:469 -#: ../../godmode/massive/massive_edit_agents.php:504 -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:471 -#: ../../godmode/massive/massive_edit_agents.php:506 -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:495 -#: ../../godmode/events/events.php:53 ../../godmode/events/events.php:58 -#: ../../godmode/events/events.php:69 -#: ../../godmode/massive/massive_edit_agents.php:527 ../../godmode/menu.php:36 -#: ../../include/functions_events.php:2149 -#: ../../operation/agentes/ver_agente.php:1140 -#: ../../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:520 -#: ../../godmode/agentes/configure_field.php:70 -#: ../../godmode/agentes/module_manager.php:139 -#: ../../godmode/agentes/module_manager_editor.php:549 -#: ../../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:395 -#: ../../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:156 -#: ../../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:280 -#: ../../godmode/reporting/graph_builder.main.php:207 -#: ../../godmode/reporting/map_builder.php:408 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 -#: ../../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:200 -#: ../../godmode/snmpconsole/snmp_filters.php:276 -#: ../../godmode/tag/edit_tag.php:232 -#: ../../godmode/users/configure_user.php:702 -#: ../../godmode/users/profile_list.php:404 -#: ../../include/functions_visual_map_editor.php:631 -#: ../../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:500 -#: ../../enterprise/extensions/ipam/ipam_editor.php:121 -#: ../../enterprise/extensions/ipam/ipam_list.php:257 -#: ../../enterprise/extensions/vmware/vmware_admin.php:412 -#: ../../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:111 -#: ../../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/reporting/cluster_builder.main.php:293 -#: ../../enterprise/godmode/servers/manage_export.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:157 -#: ../../enterprise/godmode/services/services.elements.php:423 -#: ../../enterprise/godmode/services/services.service.php:417 -#: ../../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/include/functions_autoprovision.php:492 -#: ../../enterprise/meta/include/functions_autoprovision.php:677 -#: ../../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:777 ../../mobile/operation/modules.php:489 -#: ../../mobile/operation/modules.php:752 -#: ../../operation/agentes/status_monitor.php:330 -#: ../../operation/agentes/status_monitor.php:966 -#: ../../enterprise/include/ajax/clustermap.php:64 -#: ../../enterprise/include/ajax/clustermap.php:274 -#: ../../enterprise/include/functions_reporting_pdf.php:2442 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1361 -#: ../../enterprise/operation/agentes/tag_view.php:135 -msgid "Module name" -msgstr "Module name" - -#: ../../godmode/agentes/agent_template.php:229 -#: ../../godmode/agentes/modificar_agente.php:472 -#: ../../godmode/agentes/module_manager.php:134 -#: ../../godmode/agentes/module_manager.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:186 -#: ../../godmode/agentes/planned_downtime.editor.php:500 -#: ../../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:116 -#: ../../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:637 -#: ../../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/modificar_server.php:60 -#: ../../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:774 ../../include/functions_events.php:901 -#: ../../include/functions_events.php:2479 -#: ../../include/functions_visual_map_editor.php:521 -#: ../../include/functions_visual_map_editor.php:537 -#: ../../include/functions_visual_map_editor.php:609 -#: ../../include/functions_snmp_browser.php:456 -#: ../../include/functions_reporting_html.php:812 -#: ../../include/functions_reporting_html.php:821 -#: ../../include/functions_reporting_html.php:1026 -#: ../../include/functions_reporting_html.php:1036 -#: ../../include/functions_reporting_html.php:1650 -#: ../../include/functions_reporting_html.php:2114 -#: ../../include/functions_reporting_html.php:3218 -#: ../../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/estado_agente.php:567 -#: ../../operation/agentes/ver_agente.php:881 -#: ../../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:1235 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1264 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:98 -#: ../../enterprise/godmode/reporting/cluster_list.php:166 -#: ../../enterprise/godmode/services/services.elements.php:349 -#: ../../enterprise/include/functions_reporting_csv.php:1142 -#: ../../enterprise/include/functions_reporting_csv.php:1255 -#: ../../enterprise/include/functions_reporting_csv.php:1402 -#: ../../enterprise/include/functions_reporting_csv.php:1467 -#: ../../enterprise/include/functions_reporting_pdf.php:2443 -#: ../../enterprise/include/functions_services.php:1501 -#: ../../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/tag_view.php:468 -#: ../../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:66 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 -msgid "The SNMP remote plugin doesnt seem to be installed" -msgstr "The remote SNMP plugin does not appear to be installed." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:66 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 -msgid "It is necessary to use some features" -msgstr "It is necessary in order to access certain features" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:66 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 -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:258 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:253 -msgid "Remote system doesnt support host SNMP information" -msgstr "The remote system does not support the host SNMP information." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:303 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:183 -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:343 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:335 -msgid "The number of bytes read from this device since boot" -msgstr "Number of bytes read from this device since startup" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:345 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:337 -msgid "The number of bytes written to this device since boot" -msgstr "Number of bytes written to this device since startup" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:347 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:339 -msgid "The number of read accesses from this device since boot" -msgstr "Number of read accesses from this device since startup" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:349 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:341 -msgid "The number of write accesses from this device since boot" -msgstr "Number of write accesses from this device since startup" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:524 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:516 -#, php-format -msgid "Check if the process %s is running or not" -msgstr "Check if the process %s is running" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:595 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:587 -msgid "Disk use information" -msgstr "Disk usage information" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:666 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:656 -#, php-format -msgid "%s modules created succesfully" -msgstr "%s modules created successfully" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:671 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:676 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:661 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:666 -#, php-format -msgid "Error creating %s modules" -msgstr "Error creating %s modules" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:681 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:277 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:671 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:276 -#, php-format -msgid "%s modules already exist" -msgstr "%s modules already exist" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:690 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:680 -msgid "Modules created succesfully" -msgstr "Modules successfully created" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:708 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:426 -#: ../../godmode/agentes/module_manager_editor_network.php:106 -#: ../../godmode/massive/massive_edit_modules.php:653 -#: ../../godmode/modules/manage_network_components_form_network.php:38 -#: ../../include/functions_config.php:755 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:697 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:415 -#: ../../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:711 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:429 -msgid "Use agent ip" -msgstr "Use agent IP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:715 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:433 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:314 -#: ../../godmode/events/event_responses.editor.php:126 -#: ../../include/functions_snmp_browser.php:568 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:715 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:433 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:313 -msgid "Local console" -msgstr "Local console" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:731 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:449 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:330 -#: ../../godmode/events/event_responses.editor.php:144 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:731 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:449 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:329 -msgid "Server to execute command" -msgstr "Server to execute command" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:739 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:457 -#: ../../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:705 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:423 -msgid "SNMP community" -msgstr "SNMP community" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:742 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:460 -#: ../../godmode/agentes/module_manager_editor_network.php:132 -#: ../../godmode/massive/massive_edit_modules.php:520 -#: ../../godmode/modules/manage_network_components_form_network.php:40 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:708 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:426 -msgid "SNMP version" -msgstr "SNMP version" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:756 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:473 -#: ../../godmode/agentes/module_manager_editor_network.php:216 -#: ../../godmode/massive/massive_edit_modules.php:523 -#: ../../godmode/modules/manage_network_components_form_network.php:57 -#: ../../include/functions_snmp_browser.php:597 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:741 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:459 -msgid "Auth user" -msgstr "User authentication" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:758 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:475 -#: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/massive/massive_edit_modules.php:526 -#: ../../godmode/modules/manage_network_components_form_network.php:59 -#: ../../include/functions_snmp_browser.php:599 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:743 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:461 -msgid "Auth password" -msgstr "Password authentication" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:762 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:479 -#: ../../godmode/agentes/module_manager_editor_network.php:227 -#: ../../godmode/massive/massive_edit_modules.php:529 -#: ../../godmode/modules/manage_network_components_form_network.php:65 -#: ../../include/functions_snmp_browser.php:603 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:747 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:465 -msgid "Privacy method" -msgstr "Privacy method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:480 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:530 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:604 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:466 -msgid "DES" -msgstr "DES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:480 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:530 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:604 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:466 -msgid "AES" -msgstr "AES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:764 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:481 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:749 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:467 -msgid "privacy pass" -msgstr "privacy pass" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:767 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:484 -#: ../../godmode/agentes/module_manager_editor_network.php:237 -#: ../../godmode/massive/massive_edit_modules.php:533 -#: ../../godmode/modules/manage_network_components_form_network.php:72 -#: ../../include/functions_snmp_browser.php:608 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:752 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:470 -msgid "Auth method" -msgstr "Authentication method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:768 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:485 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:534 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:609 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:753 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:471 -msgid "MD5" -msgstr "MD5" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:768 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:485 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:534 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:609 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:753 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:471 -msgid "SHA" -msgstr "SHA" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:769 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:486 -#: ../../godmode/agentes/module_manager_editor_network.php:239 -#: ../../godmode/massive/massive_edit_modules.php:535 -#: ../../godmode/modules/manage_network_components_form_network.php:74 -#: ../../include/functions_snmp_browser.php:610 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:754 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:472 -msgid "Security level" -msgstr "Security level" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:770 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:487 -#: ../../godmode/agentes/module_manager_editor_network.php:240 -#: ../../godmode/massive/massive_edit_modules.php:536 -#: ../../godmode/modules/manage_network_components_form_network.php:75 -#: ../../include/functions_snmp_browser.php:611 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:755 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:473 -msgid "Not auth and not privacy method" -msgstr "Non-authenticated and non-private method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:488 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:537 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:612 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:756 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:474 -msgid "Auth and not privacy method" -msgstr "Authenticated and non-private method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:488 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:537 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:612 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:756 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:474 -msgid "Auth and privacy method" -msgstr "Authenticated and private method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:784 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:501 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:769 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 -msgid "SNMP Walk" -msgstr "SNMP Walk" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:788 -#: ../../operation/tree.php:285 -#: ../../enterprise/dashboard/widgets/tree_view.php:197 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:773 -#: ../../enterprise/include/functions_inventory.php:166 -msgid "No data found" -msgstr "No data found" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:788 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:773 -msgid "" -"If the device is a network device, try with the SNMP Interfaces wizard" -msgstr "If it is a network device, try with the SNMP interface wizard." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:817 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:801 -msgid "Devices" -msgstr "Devices" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:818 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:365 -#: ../../operation/agentes/ver_agente.php:1200 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:802 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:364 -msgid "Processes" -msgstr "Processes" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:819 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:366 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:803 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:365 -msgid "Free space on disk" -msgstr "Free space on disk" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:820 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:804 -msgid "Temperature sensors" -msgstr "Temperature sensors" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:821 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:805 -msgid "Other SNMP data" -msgstr "Other SNMP data" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:823 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:807 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:368 -msgid "Wizard mode" -msgstr "Wizard mode" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:847 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:826 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:831 -msgid "SNMP remote plugin is necessary for this feature" -msgstr "The remote SNMP plugin is necessary to execute this feature." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:879 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:881 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:883 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:885 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:888 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:412 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:414 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:416 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:418 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:863 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:865 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:867 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:869 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:872 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:411 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:413 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:415 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:417 -msgid "Add to modules list" -msgstr "Add to the module list" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:890 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:422 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:874 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:421 -msgid "Remove from modules list" -msgstr "Remove from the module list" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:900 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:552 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:433 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:884 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:537 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:432 -msgid "Create modules" -msgstr "Create modules" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:957 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:941 -msgid "Device" -msgstr "Device" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:963 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:979 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:995 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1011 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1027 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:501 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:517 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:533 -#: ../../godmode/events/event_edit_filter.php:301 -#: ../../include/functions_events.php:2484 -#: ../../mobile/operation/events.php:485 -#: ../../operation/events/events_list.php:646 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:947 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:963 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:979 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:995 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1011 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:484 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:500 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:516 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:532 -#: ../../enterprise/include/functions_events.php:149 -msgid "Repeated" -msgstr "Duplicate" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:973 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:495 -#: ../../godmode/reporting/visual_console_builder.wizard.php:193 -#: ../../include/functions_visual_map_editor.php:462 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:957 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:494 -msgid "Process" -msgstr "Process" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1005 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:989 -msgid "Temperature" -msgstr "Temperature" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1052 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:555 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1036 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:554 -msgid "Modules list is empty" -msgstr "Module list is empty" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:178 -#: ../../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:1361 -#: ../../godmode/reporting/visual_console_builder.php:488 -#: ../../include/functions_visual_map.php:2644 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:573 -#: ../../enterprise/include/functions_massive.php:15 -msgid "No modules selected" -msgstr "No modules selected" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:370 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:359 -msgid "Successfully modules created" -msgstr "Modules created successfully" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:374 -#: ../../godmode/agentes/configurar_agente.php:289 -#: ../../godmode/agentes/configurar_agente.php:644 -#: ../../godmode/agentes/planned_downtime.editor.php:371 -#: ../../godmode/alerts/alert_actions.php:185 -#: ../../godmode/alerts/alert_commands.php:312 -#: ../../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:2646 -#: ../../godmode/setup/gis.php:47 ../../godmode/setup/news.php:57 -#: ../../godmode/users/configure_user.php:256 -#: ../../include/functions_planned_downtimes.php:110 -#: ../../include/functions_planned_downtimes.php:727 -#: ../../operation/agentes/pandora_networkmap.php:112 -#: ../../operation/agentes/pandora_networkmap.php:305 -#: ../../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:363 -#: ../../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:380 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:369 -#: ../../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:383 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:372 -msgid "Some required fields are missed" -msgstr "Some required fields are missing" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:383 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:372 -msgid "name" -msgstr "name" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:388 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 -msgid "Processing error" -msgstr "Processing error" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:505 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:491 -msgid "Unable to do SNMP walk" -msgstr "Unable to perform an SNMP walk" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:525 -msgid "Interfaces" -msgstr "Interfaces" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:145 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:144 -#, php-format -msgid "Free space on %s" -msgstr "Free space on %s" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:247 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:246 -#, php-format -msgid "%s service modules created succesfully" -msgstr "%s service modules created successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:250 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:249 -#, php-format -msgid "Error creating %s service modules" -msgstr "Error when creating %s service modules" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:255 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:254 -#, php-format -msgid "%s process modules created succesfully" -msgstr "%s process modules created successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:258 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:257 -#, php-format -msgid "Error creating %s process modules" -msgstr "Error when creating %s service modules" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:263 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:262 -#, php-format -msgid "%s disk space modules created succesfully" -msgstr "%s disk space modules created successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:266 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:265 -#, php-format -msgid "Error creating %s disk space modules" -msgstr "Error upon creating %s disk space modules" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:271 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:270 -#, php-format -msgid "%s modules created from components succesfully" -msgstr "%s modules created from components successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:274 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:273 -#, php-format -msgid "Error creating %s modules from components" -msgstr "Error creating %s modules from components" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:300 -#: ../../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:299 -msgid "Namespace" -msgstr "Namespace" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:304 -#: ../../godmode/agentes/module_manager_editor_wmi.php:54 -#: ../../godmode/massive/massive_edit_modules.php:552 -#: ../../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:303 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:201 -msgid "Username" -msgstr "Username" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:337 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:336 -msgid "WMI Explore" -msgstr "WMI Explorer" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:341 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:340 -msgid "Unable to do WMI explorer" -msgstr "Unable to perform WMI exploration" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:367 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:366 -msgid "WMI components" -msgstr "WMI components" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:380 -#: ../../godmode/agentes/planned_downtime.editor.php:721 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:379 -msgid "Filter by group" -msgstr "Filter by group" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:400 -#: ../../godmode/agentes/module_manager_editor_common.php:81 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:399 -msgid "No component was found" -msgstr "No component was found" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:479 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1713 -#: ../../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:478 -#: ../../enterprise/godmode/services/services.elements.php:347 -#: ../../enterprise/godmode/services/services.elements.php:380 -#: ../../enterprise/include/functions_visual_map_editor.php:17 -#: ../../enterprise/include/functions_visual_map_editor.php:24 -#: ../../enterprise/include/functions_visual_map_editor.php:47 -#: ../../enterprise/include/functions_visual_map.php:496 -#: ../../enterprise/include/functions_reporting.php:4843 -#: ../../enterprise/include/functions_reporting.php:5144 -#: ../../enterprise/include/functions_reporting_pdf.php:2120 -#: ../../enterprise/include/functions_services.php:1547 -msgid "Service" -msgstr "Service" - -#: ../../godmode/agentes/configurar_agente.php:200 -#: ../../godmode/agentes/configurar_agente.php:780 -msgid "No agent alias specified" -msgstr "No agent alias specified" - -#: ../../godmode/agentes/configurar_agente.php:291 -msgid "Could not be created, because name already exists" -msgstr "Could not be created, because the name already exists." - -#: ../../godmode/agentes/configurar_agente.php:304 -#: ../../godmode/agentes/modificar_agente.php:53 -#: ../../godmode/agentes/modificar_agente.php:582 -#: ../../godmode/reporting/visual_console_builder.php:689 -#: ../../godmode/servers/manage_recontask.php:32 -#: ../../godmode/setup/setup_visuals.php:166 -#: ../../godmode/setup/setup_visuals.php:186 -#: ../../godmode/setup/setup_visuals.php:205 -#: ../../godmode/setup/setup_visuals.php:221 -#: ../../godmode/setup/setup_visuals.php:232 -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../operation/agentes/estado_agente.php:640 -#: ../../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:89 -#: ../../enterprise/meta/screens/screens.visualmap.php:105 -#: ../../enterprise/operation/agentes/policy_view.php:51 -msgid "View" -msgstr "View" - -#: ../../godmode/agentes/configurar_agente.php:316 -#: ../../godmode/agentes/configurar_agente.php:543 ../../godmode/menu.php:231 -#: ../../godmode/menu.php:238 ../../operation/agentes/estado_agente.php:163 -#: ../../operation/gis_maps/render_view.php:119 -#: ../../enterprise/godmode/policies/configure_policy.php:38 -#: ../../enterprise/include/functions_policies.php:3382 -msgid "Setup" -msgstr "Setup" - -#: ../../godmode/agentes/configurar_agente.php:345 ../../godmode/menu.php:101 -msgid "Module templates" -msgstr "Module templates" - -#: ../../godmode/agentes/configurar_agente.php:397 -#: ../../operation/agentes/ver_agente.php:1102 -msgid "GIS data" -msgstr "GIS data" - -#: ../../godmode/agentes/configurar_agente.php:408 -#: ../../enterprise/godmode/policies/policy.php:58 -#: ../../enterprise/include/functions_policies.php:3400 -msgid "Agent wizard" -msgstr "Agent wizard" - -#: ../../godmode/agentes/configurar_agente.php:415 -#: ../../godmode/agentes/configurar_agente.php:585 -#: ../../godmode/setup/snmp_wizard.php:30 -#: ../../enterprise/include/functions_policies.php:3407 -msgid "SNMP Wizard" -msgstr "SNMP Wizard" - -#: ../../godmode/agentes/configurar_agente.php:420 -#: ../../godmode/agentes/configurar_agente.php:588 -#: ../../enterprise/include/functions_policies.php:3412 -msgid "SNMP Interfaces wizard" -msgstr "SNMP Interface wizard" - -#: ../../godmode/agentes/configurar_agente.php:425 -#: ../../godmode/agentes/configurar_agente.php:591 -#: ../../enterprise/include/functions_policies.php:3417 -msgid "WMI Wizard" -msgstr "WMI Wizard" - -#: ../../godmode/agentes/configurar_agente.php:546 -#: ../../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:550 -#: ../../include/functions_reporting.php:1679 -#: ../../include/functions_reports.php:629 -#: ../../include/functions_reports.php:630 -#: ../../include/functions_reports.php:632 -#: ../../enterprise/godmode/agentes/configurar_agente.php:33 -#: ../../enterprise/include/functions_reporting_csv.php:314 -#: ../../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:554 -#: ../../enterprise/godmode/agentes/configurar_agente.php:49 -#: ../../enterprise/godmode/policies/policy.php:54 -#: ../../enterprise/include/functions_policies.php:3495 -msgid "Agent plugins" -msgstr "Agent plugins" - -#: ../../godmode/agentes/configurar_agente.php:565 -#: ../../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:3672 -#: ../../include/functions_snmp.php:296 -#: ../../operation/agentes/estado_monitores.php:462 -#: ../../operation/events/events.build_table.php:204 -#: ../../operation/events/events_rss.php:185 -#: ../../operation/snmpconsole/snmp_view.php:439 -#: ../../operation/snmpconsole/snmp_view.php:735 -#: ../../operation/snmpconsole/snmp_view.php:1033 -#: ../../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:569 ../../godmode/menu.php:151 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:140 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:252 -#: ../../enterprise/include/functions_reporting.php:82 -#: ../../enterprise/include/functions_reporting.php:6717 -#: ../../enterprise/include/functions_reporting.php:6741 -#: ../../enterprise/include/functions_reporting.php:6795 -#: ../../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:573 -msgid "Gis" -msgstr "Gis" - -#: ../../godmode/agentes/configurar_agente.php:599 -msgid "SNMP explorer" -msgstr "SNMP explorer" - -#: ../../godmode/agentes/configurar_agente.php:614 -msgid "Agent manager" -msgstr "Agent manager" - -#: ../../godmode/agentes/configurar_agente.php:637 -#: ../../godmode/servers/modificar_server.php:155 -msgid "Conf file deleted successfully" -msgstr "Configuration file deleted successfully" - -#: ../../godmode/agentes/configurar_agente.php:638 -#: ../../godmode/servers/modificar_server.php:156 -msgid "Could not delete conf file" -msgstr "Could not delete configuration file" - -#: ../../godmode/agentes/configurar_agente.php:648 -#: ../../godmode/agentes/planned_downtime.editor.php:380 -#: ../../godmode/alerts/alert_actions.php:184 -#: ../../godmode/alerts/alert_commands.php:311 -#: ../../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:110 -#: ../../godmode/users/configure_user.php:255 -#: ../../godmode/users/profile_list.php:241 -#: ../../include/functions_planned_downtimes.php:113 -#: ../../include/functions_planned_downtimes.php:731 -#: ../../enterprise/extensions/cron/main.php:91 -#: ../../enterprise/extensions/cron/main.php:123 -#: ../../enterprise/extensions/cron/main.php:183 -#: ../../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:678 -#: ../../godmode/agentes/configurar_agente.php:683 -msgid "No data to normalize" -msgstr "No data to normalize" - -#: ../../godmode/agentes/configurar_agente.php:687 -#, php-format -msgid "Deleted data above %f" -msgstr "Deleted data above %f" - -#: ../../godmode/agentes/configurar_agente.php:688 -#, php-format -msgid "Error normalizing module %s" -msgstr "Error normalizing module %s" - -#: ../../godmode/agentes/configurar_agente.php:836 -msgid "There was a problem updating the agent" -msgstr "There was a problem updating the agent" - -#: ../../godmode/agentes/configurar_agente.php:899 -#: ../../godmode/agentes/planned_downtime.editor.php:383 -#: ../../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:162 -#: ../../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:80 -#: ../../godmode/users/profile_list.php:223 -#: ../../include/functions_planned_downtimes.php:125 -#: ../../operation/incidents/incident.php:110 -#: ../../operation/snmpconsole/snmp_view.php:134 -#: ../../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:1069 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:66 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:52 -#: ../../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:921 -msgid "There was a problem loading the agent" -msgstr "Error loading the agent" - -#: ../../godmode/agentes/configurar_agente.php:1380 -msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." -msgstr "" -"Error updating the module: there is another module with the same name." - -#: ../../godmode/agentes/configurar_agente.php:1383 -msgid "" -"There was a problem updating module. Some required fields are missed: (name)" -msgstr "Error updating the module: some required fields are missing (name)" - -#: ../../godmode/agentes/configurar_agente.php:1386 -msgid "There was a problem updating module. \"No change\"" -msgstr "Error updating the module: \"no change\"" - -#: ../../godmode/agentes/configurar_agente.php:1391 -msgid "There was a problem updating module. Processing error" -msgstr "Error updating the module: processing error" - -#: ../../godmode/agentes/configurar_agente.php:1411 -msgid "Module successfully updated" -msgstr "Module successfully updated" - -#: ../../godmode/agentes/configurar_agente.php:1542 -msgid "" -"There was a problem adding module. Another module already exists with the " -"same name." -msgstr "Error adding the module: there is another module with the same name" - -#: ../../godmode/agentes/configurar_agente.php:1545 -msgid "" -"There was a problem adding module. Some required fields are missed : (name)" -msgstr "Error adding the module: some required fields are missing (name)" - -#: ../../godmode/agentes/configurar_agente.php:1550 -msgid "There was a problem adding module. Processing error" -msgstr "Error adding the module: processing error" - -#: ../../godmode/agentes/configurar_agente.php:1568 -#: ../../godmode/reporting/graph_builder.php:277 -msgid "Module added successfully" -msgstr "Module added successfully" - -#: ../../godmode/agentes/configurar_agente.php:1687 -msgid "There was a problem deleting the module" -msgstr "Error deleting the module" - -#: ../../godmode/agentes/configurar_agente.php:1690 -msgid "Module deleted succesfully" -msgstr "Module deleted successfully" - -#: ../../godmode/agentes/configurar_agente.php:1704 -#: ../../enterprise/godmode/policies/policy_modules.php:1174 -#, php-format -msgid "copy of %s" -msgstr "copy of %s" - -#: ../../godmode/agentes/configurar_agente.php:1714 -#: ../../enterprise/godmode/policies/policy_modules.php:1186 -#, php-format -msgid "copy of %s (%d)" -msgstr "copy of %s (%d)" - -#: ../../godmode/agentes/configurar_agente.php:1747 -#: ../../godmode/agentes/modificar_agente.php:126 -#: ../../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:86 -#: ../../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:1747 -#: ../../godmode/agentes/modificar_agente.php:126 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -#: ../../include/ajax/alert_list.ajax.php:88 -#: ../../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:1762 -#: ../../godmode/agentes/modificar_agente.php:146 -#: ../../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:102 -#: ../../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:1762 -#: ../../godmode/agentes/modificar_agente.php:146 -#: ../../godmode/alerts/alert_list.php:247 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -#: ../../include/ajax/alert_list.ajax.php:104 -#: ../../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:1790 -#: ../../include/functions_api.php:7721 -msgid "Save by Pandora Console" -msgstr "Save from Pandora FMS Console" - -#: ../../godmode/agentes/configurar_agente.php:1805 -#: ../../include/functions_api.php:7722 -msgid "Update by Pandora Console" -msgstr "Update from Pandora FMS Console" - -#: ../../godmode/agentes/configurar_agente.php:1818 -#: ../../include/functions_api.php:7723 -msgid "Insert by Pandora Console" -msgstr "Insert from Pandora FMS Console" - -#: ../../godmode/agentes/configurar_agente.php:1872 -#: ../../godmode/agentes/configurar_agente.php:1882 -msgid "Invalid tab specified" -msgstr "Invalid tab specified" - -#: ../../godmode/agentes/configure_field.php:38 -msgid "Update agent custom field" -msgstr "Update agent custom fields" - -#: ../../godmode/agentes/configure_field.php:41 -msgid "Create agent custom field" -msgstr "Create agent custom field" - -#: ../../godmode/agentes/configure_field.php:53 -msgid "Pass type" -msgstr "Password type" - -#: ../../godmode/agentes/configure_field.php:53 -msgid "" -"The fields with pass type enabled will be displayed like html input type " -"pass in html" -msgstr "" -"The fields with password type enabled will be displayed with asterisks in " -"HTML." - -#: ../../godmode/agentes/configure_field.php:56 -#: ../../godmode/agentes/fields_manager.php:98 -#: ../../operation/agentes/custom_fields.php:61 -msgid "Display on front" -msgstr "Display up front" - -#: ../../godmode/agentes/configure_field.php:56 -#: ../../godmode/agentes/fields_manager.php:98 -#: ../../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 details." - -#: ../../godmode/agentes/fields_manager.php:31 -msgid "Agents custom fields manager" -msgstr "Agent custom field manager" - -#: ../../godmode/agentes/fields_manager.php:45 -msgid "The name must not be empty" -msgstr "The name field cannot be left empty" - -#: ../../godmode/agentes/fields_manager.php:48 -msgid "The name must be unique" -msgstr "The name must be unique" - -#: ../../godmode/agentes/fields_manager.php:54 -msgid "Field successfully created" -msgstr "Custom field successfully created" - -#: ../../godmode/agentes/fields_manager.php:71 -msgid "Field successfully updated" -msgstr "Field successfully updated" - -#: ../../godmode/agentes/fields_manager.php:74 -msgid "There was a problem modifying field" -msgstr "Error modifying the field" - -#: ../../godmode/agentes/fields_manager.php:84 -msgid "There was a problem deleting field" -msgstr "Error deleting the field" - -#: ../../godmode/agentes/fields_manager.php:86 -msgid "Field successfully deleted" -msgstr "Field successfully deleted" - -#: ../../godmode/agentes/fields_manager.php:97 -#: ../../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:140 -msgid "Create field" -msgstr "Create field" - -#: ../../godmode/agentes/modificar_agente.php:63 -msgid "Agents defined in Pandora" -msgstr "Agents defined in Pandora FMS" - -#: ../../godmode/agentes/modificar_agente.php:96 -msgid "Success deleted agent." -msgstr "Agent successfully deleted" - -#: ../../godmode/agentes/modificar_agente.php:96 -msgid "Could not be deleted." -msgstr "Agent could not be deleted" - -#: ../../godmode/agentes/modificar_agente.php:103 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "It is possible that the .conf or md5 files could not be deleted." - -#: ../../godmode/agentes/modificar_agente.php:165 -msgid "Show Agents" -msgstr "Show Agents" - -#: ../../godmode/agentes/modificar_agente.php:167 -msgid "Everyone" -msgstr "Everyone" - -#: ../../godmode/agentes/modificar_agente.php:168 -#: ../../operation/agentes/status_monitor.php:402 -#: ../../enterprise/operation/agentes/tag_view.php:201 -msgid "Only disabled" -msgstr "Only disabled" - -#: ../../godmode/agentes/modificar_agente.php:169 -#: ../../operation/agentes/status_monitor.php:402 -#: ../../enterprise/operation/agentes/tag_view.php:201 -msgid "Only enabled" -msgstr "Only enabled" - -#: ../../godmode/agentes/modificar_agente.php:176 -msgid "Operative System" -msgstr "Operating System" - -#: ../../godmode/agentes/modificar_agente.php:197 -msgid "" -"Search filter by alias, name, description, IP address or custom fields " -"content" -msgstr "" -"Search filter by alias, name, description, IP address or custom fields " -"content" - -#: ../../godmode/agentes/modificar_agente.php:464 -msgid "Remote agent configuration" -msgstr "Remote agent configuration" - -#: ../../godmode/agentes/modificar_agente.php:464 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:560 -#: ../../operation/agentes/estado_agente.php:635 -#: ../../operation/agentes/estado_generalagente.php:105 -#: ../../operation/agentes/estado_generalagente.php:108 -#: ../../operation/search_agents.php:110 -msgid "Agent in planned downtime" -msgstr "Agent in planned downtime" - -#: ../../godmode/agentes/modificar_agente.php:597 -msgid "Edit remote config" -msgstr "Edit remote configuration" - -#: ../../godmode/agentes/modificar_agente.php:632 -msgid "Enable agent" -msgstr "Enable agent" - -#: ../../godmode/agentes/modificar_agente.php:637 -msgid "Disable agent" -msgstr "Disable agent" - -#: ../../godmode/agentes/modificar_agente.php:654 -#: ../../operation/agentes/estado_agente.php:708 -#: ../../operation/agentes/group_view.php:436 -msgid "There are no defined agents" -msgstr "There are no defined agents" - -#: ../../godmode/agentes/modificar_agente.php:662 -#: ../../operation/agentes/estado_agente.php:692 -#: ../../operation/agentes/estado_agente.php:712 -#: ../../operation/snmpconsole/snmp_statistics.php:151 -#: ../../operation/snmpconsole/snmp_view.php:782 -#: ../../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 plugin 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:123 -#: ../../operation/agentes/estado_monitores.php:485 -msgid "Show in hierachy mode" -msgstr "Show in hierarchy mode" - -#: ../../godmode/agentes/module_manager.php:151 -msgid "Get more modules in Pandora FMS Library" -msgstr "Get more modules on the Pandora FMS Library" - -#: ../../godmode/agentes/module_manager.php:178 -msgid "Nice try buddy" -msgstr "Nice try, buddy!" - -#: ../../godmode/agentes/module_manager.php:275 -#, 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:280 -msgid "All Modules deleted succesfully" -msgstr "All Modules deleted successfully" - -#: ../../godmode/agentes/module_manager.php:284 -#, php-format -msgid "There was a problem only deleted %s modules of %s total." -msgstr "Error deleting modules: only %s modules of %s total were deleted" - -#: ../../godmode/agentes/module_manager.php:526 -#: ../../godmode/reporting/map_builder.php:327 -#: ../../godmode/reporting/map_builder.php:341 -#: ../../include/ajax/module.php:370 -#: ../../operation/agentes/datos_agente.php:286 -msgid "No available data to show" -msgstr "No available data to show" - -#: ../../godmode/agentes/module_manager.php:554 -#: ../../godmode/alerts/alert_view.php:123 ../../include/ajax/module.php:771 -#: ../../operation/agentes/alerts_status.php:445 -#: ../../operation/agentes/alerts_status.php:492 -#: ../../operation/agentes/status_monitor.php:954 -#: ../../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_add_modules_policy.php:161 -#: ../../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:351 -#: ../../enterprise/godmode/policies/policy_queue.php:394 -#: ../../enterprise/include/functions_policies.php:3968 -#: ../../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 "Policy" - -#: ../../godmode/agentes/module_manager.php:554 -#: ../../godmode/reporting/graph_builder.graph_editor.php:203 -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/snmpconsole/snmp_alert.php:1148 -#: ../../include/ajax/module.php:771 -#: ../../operation/agentes/alerts_status.php:446 -#: ../../operation/agentes/alerts_status.php:492 -#: ../../operation/agentes/status_monitor.php:954 -#: ../../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:557 -#: ../../include/functions_events.php:898 -#: ../../mobile/operation/agents.php:345 -#: ../../operation/agentes/alerts_status.php:450 -#: ../../operation/agentes/alerts_status.php:495 -#: ../../operation/agentes/alerts_status.php:530 -#: ../../operation/agentes/alerts_status.php:565 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/policies/policy_agents.php:574 -#: ../../enterprise/godmode/policies/policy_agents.php:819 -#: ../../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:568 -#: ../../operation/agentes/status_monitor.php:988 -#: ../../enterprise/operation/agentes/tag_view.php:536 -msgid "Warn" -msgstr "Warn" - -#: ../../godmode/agentes/module_manager.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:579 -#: ../../enterprise/godmode/policies/policy_agents.php:823 -msgid "D." -msgstr "D." - -#: ../../godmode/agentes/module_manager.php:682 -#: ../../godmode/agentes/module_manager.php:692 -#: ../../include/ajax/module.php:873 ../../include/ajax/module.php:883 -msgid "Adopted" -msgstr "Adopted" - -#: ../../godmode/agentes/module_manager.php:692 -#: ../../godmode/agentes/module_manager.php:696 -#: ../../godmode/massive/massive_edit_modules.php:604 -#: ../../include/ajax/module.php:883 ../../include/ajax/module.php:887 -msgid "Unlinked" -msgstr "Not linked" - -#: ../../godmode/agentes/module_manager.php:719 -#: ../../enterprise/operation/agentes/policy_view.php:355 -msgid "Non initialized module" -msgstr "Non initialized module" - -#: ../../godmode/agentes/module_manager.php:736 -#: ../../godmode/agentes/module_manager_editor_common.php:401 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:190 -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:757 -#: ../../enterprise/godmode/policies/policy_modules.php:1272 -#: ../../enterprise/godmode/policies/policy_modules.php:1273 -msgid "Enable module" -msgstr "Enable module" - -#: ../../godmode/agentes/module_manager.php:762 -#: ../../enterprise/godmode/policies/policy_modules.php:1278 -#: ../../enterprise/godmode/policies/policy_modules.php:1279 -msgid "Disable module" -msgstr "Disable module" - -#: ../../godmode/agentes/module_manager.php:769 -#: ../../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:1286 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:365 -msgid "Duplicate" -msgstr "Duplicate" - -#: ../../godmode/agentes/module_manager.php:777 -msgid "Normalize" -msgstr "Normalize" - -#: ../../godmode/agentes/module_manager.php:783 -msgid "Normalize (Disabled)" -msgstr "Normalize (Disabled)" - -#: ../../godmode/agentes/module_manager.php:792 -#: ../../include/functions_snmp_browser.php:521 -msgid "Create network component" -msgstr "Create network component" - -#: ../../godmode/agentes/module_manager.php:797 -msgid "Create network component (Disabled)" -msgstr "Create network component (Disabled)" - -#: ../../godmode/agentes/module_manager_editor.php:396 -#: ../../enterprise/godmode/policies/policies.php:191 -#: ../../enterprise/godmode/policies/policy_agents.php:85 -#: ../../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:400 -#: ../../enterprise/include/functions_policies.php:3229 -msgid "Module will be linked in the next application" -msgstr "Module will be linked in the next application" - -#: ../../godmode/agentes/module_manager_editor.php:408 -#: ../../enterprise/include/functions_policies.php:3234 -msgid "Module will be unlinked in the next application" -msgstr "Module will be unlinked in the next application" - -#: ../../godmode/agentes/module_manager_editor.php:496 -#, 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:497 -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 "" -"You have probably upgraded recently from an earlier version of Pandora FMS " -"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" - -#: ../../godmode/agentes/module_manager_editor.php:524 -#: ../../godmode/agentes/module_manager_editor_common.php:667 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 -msgid "Custom macros" -msgstr "Custom macros" - -#: ../../godmode/agentes/module_manager_editor.php:528 -msgid "Module relations" -msgstr "Module relations" - -#: ../../godmode/agentes/module_manager_editor.php:574 -#: ../../enterprise/godmode/policies/policy_modules.php:1388 -msgid "No module name provided" -msgstr "No module name provided" - -#: ../../godmode/agentes/module_manager_editor.php:575 -#: ../../enterprise/godmode/policies/policy_modules.php:1389 -msgid "No target IP provided" -msgstr "No target IP provided" - -#: ../../godmode/agentes/module_manager_editor.php:576 -#: ../../enterprise/godmode/policies/policy_modules.php:1390 -msgid "No SNMP OID provided" -msgstr "No SNMP OID provided" - -#: ../../godmode/agentes/module_manager_editor.php:577 -msgid "No module to predict" -msgstr "No module to predict" - -#: ../../godmode/agentes/module_manager_editor.php:578 -msgid "No plug-in provided" -msgstr "No plugin provided" - -#: ../../godmode/agentes/module_manager_editor.php:579 -msgid "No server provided" -msgstr "No server provided" - -#: ../../godmode/agentes/module_manager_editor.php:605 -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 in data configuration " -"are different." - -#: ../../godmode/agentes/module_manager_editor.php:644 -msgid "The File APIs are not fully supported in this browser." -msgstr "The File APIs are not fully supported in this browser." - -#: ../../godmode/agentes/module_manager_editor.php:645 -msgid "Couldn`t find the fileinput element." -msgstr "Could not find the fileinput element" - -#: ../../godmode/agentes/module_manager_editor.php:646 -msgid "" -"This browser doesn`t seem to support the files property of file inputs." -msgstr "" -"This browser does not seem to support the files property of file inputs." - -#: ../../godmode/agentes/module_manager_editor.php:647 -msgid "Please select a file before clicking Load" -msgstr "Please select a file before clicking Load" - -#: ../../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:61 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:71 -msgid "Manual setup" -msgstr "Manual setup" - -#: ../../godmode/agentes/module_manager_editor_common.php:161 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:75 -#: ../../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:547 -#: ../../include/functions_treeview.php:118 -#: ../../include/functions_graph.php:6186 -#: ../../operation/agentes/status_monitor.php:310 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1382 -#: ../../enterprise/operation/agentes/tag_view.php:95 -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:277 -#: ../../godmode/massive/massive_edit_modules.php:388 -#: ../../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: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:401 -#: ../../godmode/massive/massive_edit_modules.php:447 -#: ../../godmode/massive/massive_edit_modules.php:542 -#: ../../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:5162 -#: ../../include/functions_reporting_html.php:3254 -#: ../../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:287 -#: ../../godmode/agentes/module_manager_editor_common.php:308 -#: ../../godmode/massive/massive_edit_modules.php:410 -#: ../../godmode/massive/massive_edit_modules.php:456 -#: ../../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:420 -#: ../../godmode/massive/massive_edit_modules.php:466 -#: ../../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:298 -#: ../../godmode/massive/massive_edit_modules.php:434 -#: ../../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:317 -#: ../../godmode/massive/massive_edit_modules.php:575 -#: ../../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:320 -#: ../../godmode/massive/massive_edit_modules.php:577 -#: ../../godmode/massive/massive_edit_modules.php:578 -#: ../../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:323 -#: ../../godmode/massive/massive_edit_modules.php:577 -#: ../../godmode/massive/massive_edit_modules.php:579 -#: ../../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:324 -#: ../../godmode/massive/massive_edit_modules.php:580 -#: ../../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:327 -#: ../../godmode/massive/massive_edit_modules.php:581 -#: ../../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:330 -#: ../../godmode/massive/massive_edit_modules.php:582 -#: ../../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:333 -#: ../../godmode/massive/massive_edit_modules.php:589 -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../include/functions_reporting.php:2435 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:110 -#: ../../enterprise/godmode/modules/configure_local_component.php:281 -msgid "Historical data" -msgstr "Historical data" - -#: ../../godmode/agentes/module_manager_editor_common.php:365 -#: ../../godmode/massive/massive_edit_modules.php:570 -#: ../../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:2120 -#: ../../enterprise/godmode/modules/configure_local_component.php:296 -#: ../../enterprise/include/functions_reporting_pdf.php:2449 -#: ../../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:388 -#: ../../godmode/agentes/module_manager_editor_common.php:391 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:180 -#: ../../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:415 -#: ../../godmode/massive/massive_edit_modules.php:495 -#: ../../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:422 -#: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../include/functions_reporting.php:3822 -#: ../../include/functions_graph.php:806 -#: ../../include/functions_graph.php:4618 -#: ../../include/functions_reports.php:568 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:788 -#: ../../enterprise/include/functions_reporting_csv.php:795 -msgid "Min. Value" -msgstr "Min. Value" - -#: ../../godmode/agentes/module_manager_editor_common.php:425 -msgid "Any value below this number is discarted." -msgstr "Any value below this number is discarded" - -#: ../../godmode/agentes/module_manager_editor_common.php:426 -#: ../../godmode/modules/manage_network_components_form_common.php:166 -#: ../../include/functions_reporting.php:3819 -#: ../../include/functions_graph.php:804 -#: ../../include/functions_graph.php:4617 -#: ../../include/functions_reports.php:566 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 -#: ../../enterprise/include/functions_reporting_csv.php:809 -#: ../../enterprise/include/functions_reporting_csv.php:825 -#: ../../enterprise/include/functions_reporting_csv.php:832 -msgid "Max. Value" -msgstr "Max. Value" - -#: ../../godmode/agentes/module_manager_editor_common.php:427 -msgid "Any value over this number is discarted." -msgstr "Any value larger than this number is discarded" - -#: ../../godmode/agentes/module_manager_editor_common.php:430 -#: ../../godmode/massive/massive_edit_modules.php:558 -msgid "Export target" -msgstr "Export target" - -#: ../../godmode/agentes/module_manager_editor_common.php:436 -msgid "Not needed" -msgstr "Not needed" - -#: ../../godmode/agentes/module_manager_editor_common.php:440 -msgid "" -"In case you use an Export server you can link this module and export data to " -"one these." -msgstr "" -"If you are using an Export server you can link this module and export data " -"to one of these." - -#: ../../godmode/agentes/module_manager_editor_common.php:454 -#: ../../godmode/massive/massive_edit_modules.php:613 -#: ../../godmode/modules/manage_network_components_form_common.php:171 -msgid "Discard unknown events" -msgstr "Discard unknown events" - -#: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/massive/massive_edit_modules.php:584 -msgid "FF interval" -msgstr "FF interval" - -#: ../../godmode/agentes/module_manager_editor_common.php:462 -#: ../../godmode/massive/massive_edit_modules.php:585 -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:465 -#: ../../godmode/massive/massive_edit_modules.php:586 -#: ../../enterprise/godmode/modules/configure_local_component.php:284 -msgid "FF timeout" -msgstr "FlipFlop timeout" - -#: ../../godmode/agentes/module_manager_editor_common.php:471 -#: ../../godmode/massive/massive_edit_modules.php:587 -#: ../../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:474 -#: ../../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:481 -#: ../../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:543 -#: ../../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:544 -#: ../../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:546 -#: ../../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:557 -msgid "Tags from policy" -msgstr "Tags from policy" - -#: ../../godmode/agentes/module_manager_editor_common.php:570 -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:575 -#: ../../godmode/massive/massive_edit_modules.php:621 -#: ../../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:576 -#: ../../godmode/massive/massive_edit_modules.php:621 -#: ../../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:581 -#: ../../godmode/massive/massive_edit_modules.php:625 -#: ../../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:582 -#: ../../godmode/massive/massive_edit_modules.php:625 -#: ../../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:586 -#: ../../godmode/massive/massive_edit_modules.php:629 -#: ../../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:586 -#: ../../godmode/massive/massive_edit_modules.php:629 -#: ../../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:593 -#: ../../godmode/agentes/module_manager_editor_common.php:602 -#: ../../godmode/agentes/module_manager_editor_common.php:612 -msgid "Cron from" -msgstr "Cron from" - -#: ../../godmode/agentes/module_manager_editor_common.php:597 -#: ../../godmode/agentes/module_manager_editor_common.php:606 -#: ../../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:638 -#: ../../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:642 -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 -#: ../../godmode/massive/massive_edit_modules.php:644 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:65 -msgid "Retries" -msgstr "Retries" - -#: ../../godmode/agentes/module_manager_editor_common.php:625 -#: ../../godmode/massive/massive_edit_modules.php:647 -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:597 -#: ../../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:605 -#: ../../godmode/massive/massive_edit_modules.php:539 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1383 -#: ../../godmode/reporting/visual_console_builder.wizard.php:237 -#: ../../godmode/setup/setup_visuals.php:769 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#: ../../include/functions_visual_map_editor.php:516 -#: ../../include/functions_graph.php:6331 -#: ../../include/functions_snmp_browser.php:452 -#: ../../include/functions_reporting_html.php:735 -#: ../../include/functions_reporting_html.php:1491 -#: ../../include/functions_reporting_html.php:2661 -#: ../../include/functions_reporting_html.php:3220 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1717 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_pdf.php:822 -#: ../../enterprise/include/functions_reporting_pdf.php:886 -#: ../../enterprise/include/functions_reporting_pdf.php:1010 -#: ../../enterprise/meta/include/functions_autoprovision.php:541 -#: ../../enterprise/operation/services/services.list.php:341 -#: ../../enterprise/operation/services/services.service.php:137 -msgid "Value" -msgstr "Value" - -#: ../../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/module_manager_editor_common.php:1204 -#: ../../godmode/modules/manage_network_components_form_common.php:357 -#: ../../enterprise/godmode/modules/configure_local_component.php:717 -msgid "Normal Status" -msgstr "Normal Status" - -#: ../../godmode/agentes/module_manager_editor_common.php:1205 -#: ../../godmode/modules/manage_network_components_form_common.php:358 -#: ../../enterprise/godmode/modules/configure_local_component.php:718 -msgid "Warning Status" -msgstr "Warning Status" - -#: ../../godmode/agentes/module_manager_editor_common.php:1206 -#: ../../godmode/modules/manage_network_components_form_common.php:359 -#: ../../enterprise/godmode/modules/configure_local_component.php:719 -msgid "Critical Status" -msgstr "Critical Status" - -#: ../../godmode/agentes/module_manager_editor_common.php:1208 -#: ../../godmode/modules/manage_network_components_form_common.php:361 -#: ../../enterprise/godmode/modules/configure_local_component.php:721 -msgid "Please introduce a maximum warning higher than the minimun warning" -msgstr "Please introduce a maximum warning higher than the minimum warning" - -#: ../../godmode/agentes/module_manager_editor_common.php:1209 -#: ../../godmode/modules/manage_network_components_form_common.php:362 -#: ../../enterprise/godmode/modules/configure_local_component.php:722 -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:381 -#: ../../enterprise/operation/agentes/tag_view.php:180 -msgid "Data server module" -msgstr "Data server module" - -#: ../../godmode/agentes/module_manager_editor_network.php:27 -#: ../../include/functions_snmp_browser.php:670 -msgid "Search matches" -msgstr "Search matches" - -#: ../../godmode/agentes/module_manager_editor_network.php:64 -#: ../../operation/agentes/status_monitor.php:383 -#: ../../enterprise/operation/agentes/tag_view.php:182 -msgid "Network server module" -msgstr "Network server module" - -#: ../../godmode/agentes/module_manager_editor_network.php:85 -#: ../../godmode/massive/massive_edit_modules.php:510 -#: ../../include/ajax/events.php:529 -#: ../../enterprise/godmode/services/services.service.php:298 -#: ../../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:511 -#: ../../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:512 -#: ../../include/functions_html.php:666 ../../include/functions_html.php:667 -#: ../../include/functions_html.php:745 ../../include/functions_html.php:746 -#: ../../include/functions_html.php:860 ../../include/functions_html.php:861 -#: ../../enterprise/extensions/cron/functions.php:236 -#: ../../enterprise/godmode/setup/setup_acl.php:355 -#: ../../enterprise/godmode/setup/setup_acl.php:599 -#: ../../enterprise/include/functions_backup.php:483 -#: ../../enterprise/include/functions_backup.php:484 -#: ../../enterprise/meta/include/functions_wizard_meta.php:392 -#: ../../enterprise/meta/include/functions_autoprovision.php:314 -msgid "Custom" -msgstr "Custom" - -#: ../../godmode/agentes/module_manager_editor_network.php:152 -#: ../../godmode/massive/massive_edit_modules.php:505 -msgid "SNMP OID" -msgstr "SNMP OID" - -#: ../../godmode/agentes/module_manager_editor_network.php:171 -#: ../../godmode/massive/massive_edit_modules.php:656 -#: ../../godmode/modules/manage_network_components_form_network.php:90 -msgid "TCP send" -msgstr "TCP send" - -#: ../../godmode/agentes/module_manager_editor_network.php:177 -#: ../../godmode/massive/massive_edit_modules.php:659 -#: ../../godmode/modules/manage_network_components_form_network.php:97 -msgid "TCP receive" -msgstr "TCP receive" - -#: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/agentes/module_manager_editor_network.php:229 -#: ../../godmode/massive/massive_edit_modules.php:527 -#: ../../godmode/massive/massive_edit_modules.php:531 -msgid "The pass length must be eight character minimum." -msgstr "The pass length must be eight character minimum." - -#: ../../godmode/agentes/module_manager_editor_network.php:229 -#: ../../godmode/massive/massive_edit_modules.php:531 -#: ../../godmode/modules/manage_network_components_form_network.php:67 -#: ../../include/functions_snmp_browser.php:605 -msgid "Privacy pass" -msgstr "Privacy pass" - -#: ../../godmode/agentes/module_manager_editor_plugin.php:47 -#: ../../operation/agentes/status_monitor.php:385 -#: ../../enterprise/operation/agentes/tag_view.php:185 -msgid "Plugin server module" -msgstr "Plugin server module" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:88 -#: ../../operation/agentes/status_monitor.php:389 -#: ../../enterprise/operation/agentes/tag_view.php:191 -msgid "Prediction server module" -msgstr "Prediction server module" - -#: ../../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:150 -#: ../../godmode/reporting/graph_builder.main.php:158 -#: ../../godmode/reporting/reporting_builder.item_editor.php:787 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/reporting/visual_console_builder.wizard.php:185 -#: ../../include/functions_visual_map_editor.php:576 -#: ../../enterprise/dashboard/widgets/custom_graph.php:36 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:68 -#: ../../enterprise/dashboard/widgets/single_graph.php:69 -#: ../../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:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1343 -#: ../../enterprise/include/functions_reporting_csv.php:267 -#: ../../enterprise/include/functions_reporting_csv.php:270 -#: ../../enterprise/include/functions_reporting_csv.php:389 -#: ../../enterprise/include/functions_reporting_csv.php:416 -#: ../../enterprise/include/functions_reporting_csv.php:442 -#: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:1032 -msgid "Period" -msgstr "Periodicity" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:152 -#: ../../godmode/agentes/planned_downtime.editor.php:548 -#: ../../enterprise/extensions/cron/functions.php:204 -#: ../../enterprise/extensions/vmware/functions.php:27 -msgid "Weekly" -msgstr "Weekly" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:153 -#: ../../godmode/agentes/planned_downtime.editor.php:549 -#: ../../enterprise/extensions/cron/functions.php:205 -#: ../../enterprise/extensions/vmware/functions.php:28 -msgid "Monthly" -msgstr "Monthly" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../enterprise/extensions/cron/functions.php:203 -#: ../../enterprise/extensions/vmware/functions.php:26 -msgid "Daily" -msgstr "Daily" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:32 -#: ../../operation/agentes/status_monitor.php:387 -#: ../../enterprise/operation/agentes/tag_view.php:188 -msgid "WMI server module" -msgstr "WMI server module" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:64 -#: ../../godmode/massive/massive_edit_modules.php:662 -#: ../../godmode/modules/manage_network_components_form_wmi.php:32 -msgid "WMI query" -msgstr "WMI query" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:73 -#: ../../godmode/massive/massive_edit_modules.php:665 -#: ../../godmode/modules/manage_network_components_form_wmi.php:34 -msgid "Key string" -msgstr "Key string" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:77 -#: ../../godmode/massive/massive_edit_modules.php:668 -#: ../../godmode/modules/manage_network_components_form_wmi.php:40 -msgid "Field number" -msgstr "Field number" - -#: ../../godmode/agentes/planned_downtime.editor.php:38 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/category/category.php:58 ../../include/functions_html.php:679 -#: ../../include/functions_html.php:680 ../../include/functions_html.php:758 -#: ../../include/functions_html.php:759 ../../include/functions_html.php:876 -#: ../../include/functions_html.php:877 ../../operation/events/events.php:431 -#: ../../operation/snmpconsole/snmp_statistics.php:55 -#: ../../operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/include/functions_backup.php:496 -#: ../../enterprise/include/functions_backup.php:497 -msgid "List" -msgstr "List" - -#: ../../godmode/agentes/planned_downtime.editor.php:117 -#: ../../godmode/agentes/planned_downtime.editor.php:202 -#: ../../godmode/agentes/planned_downtime.editor.php:970 -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:227 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:678 -msgid "" -"Not created. Error inserting data. Start time must be higher than the " -"current time" -msgstr "" -"Could not be created: error during data insertion. Start time must be higher " -"than the current time." - -#: ../../godmode/agentes/planned_downtime.editor.php:230 -#: ../../godmode/agentes/planned_downtime.editor.php:233 -#: ../../godmode/agentes/planned_downtime.editor.php:238 -#: ../../godmode/agentes/planned_downtime.editor.php:241 -#: ../../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" - -#: ../../godmode/agentes/planned_downtime.editor.php:230 -#: ../../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." - -#: ../../godmode/agentes/planned_downtime.editor.php:233 -#: ../../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." - -#: ../../godmode/agentes/planned_downtime.editor.php:238 -#: ../../godmode/agentes/planned_downtime.editor.php:607 -#: ../../godmode/agentes/planned_downtime.editor.php:615 -#: ../../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." - -#: ../../godmode/agentes/planned_downtime.editor.php:241 -#: ../../godmode/agentes/planned_downtime.editor.php:596 -#: ../../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:290 -#: ../../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:295 -#: ../../godmode/agentes/planned_downtime.editor.php:322 -#: ../../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:333 -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:374 -#: ../../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/modules/manage_network_components.php:346 -#: ../../godmode/setup/gis.php:41 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../operation/agentes/pandora_networkmap.php:166 -#: ../../operation/agentes/pandora_networkmap.php:401 -#: ../../operation/incidents/incident.php:111 -#: ../../operation/snmpconsole/snmp_view.php:135 -#: ../../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:1070 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:53 -#: ../../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:500 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "Quiet: modules will not generate events or trigger alerts." - -#: ../../godmode/agentes/planned_downtime.editor.php:501 -msgid "Disable Agents: Disables the selected agents." -msgstr "Disable Agents: disables the selected agents." - -#: ../../godmode/agentes/planned_downtime.editor.php:502 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "Disable Alerts: disables alerts for the selected agents." - -#: ../../godmode/agentes/planned_downtime.editor.php:504 -#: ../../godmode/agentes/planned_downtime.list.php:428 -msgid "Disabled Agents" -msgstr "Disable Agents" - -#: ../../godmode/agentes/planned_downtime.editor.php:505 -#: ../../godmode/agentes/planned_downtime.list.php:429 -msgid "Disabled only Alerts" -msgstr "Disable only Alerts" - -#: ../../godmode/agentes/planned_downtime.editor.php:508 -#: ../../godmode/agentes/planned_downtime.list.php:395 -#: ../../include/functions_reporting_html.php:4100 -#: ../../enterprise/include/functions_reporting.php:4978 -#: ../../enterprise/include/functions_reporting_pdf.php:2503 -msgid "Execution" -msgstr "Execution" - -#: ../../godmode/agentes/planned_downtime.editor.php:509 -#: ../../godmode/agentes/planned_downtime.list.php:153 -msgid "Once" -msgstr "Once" - -#: ../../godmode/agentes/planned_downtime.editor.php:510 -#: ../../godmode/agentes/planned_downtime.list.php:153 -#: ../../godmode/agentes/planned_downtime.list.php:434 -msgid "Periodically" -msgstr "Periodically" - -#: ../../godmode/agentes/planned_downtime.editor.php:515 -msgid "Configure the time" -msgstr "Set time" - -#: ../../godmode/agentes/planned_downtime.editor.php:521 -#: ../../include/functions_reporting_html.php:63 -#: ../../include/functions_reporting_html.php:3507 -msgid "From:" -msgstr "From:" - -#: ../../godmode/agentes/planned_downtime.editor.php:525 -#: ../../godmode/agentes/planned_downtime.editor.php:536 -#: ../../operation/netflow/nf_live_view.php:240 -#: ../../enterprise/extensions/cron/main.php:477 -#: ../../enterprise/operation/log/log_viewer.php:234 -#: ../../enterprise/operation/log/log_viewer.php:242 -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:527 -#: ../../godmode/agentes/planned_downtime.editor.php:538 -#: ../../godmode/agentes/planned_downtime.editor.php:606 -#: ../../godmode/agentes/planned_downtime.editor.php:614 -#: ../../godmode/alerts/configure_alert_template.php:543 -#: ../../godmode/alerts/configure_alert_template.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:887 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../operation/netflow/nf_live_view.php:242 -#: ../../enterprise/extensions/cron/main.php:479 -#: ../../enterprise/operation/log/log_viewer.php:236 -#: ../../enterprise/operation/log/log_viewer.php:244 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "Time format in Pandora FMS is hours(24h):minutes:seconds" - -#: ../../godmode/agentes/planned_downtime.editor.php:532 -#: ../../include/functions_reporting_html.php:64 -#: ../../include/functions_reporting_html.php:3508 -msgid "To:" -msgstr "To:" - -#: ../../godmode/agentes/planned_downtime.editor.php:546 -msgid "Type Periodicity:" -msgstr "Periodicity type:" - -#: ../../godmode/agentes/planned_downtime.editor.php:559 -#: ../../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:10670 -#: ../../enterprise/godmode/alerts/alert_events.php:431 -#: ../../enterprise/include/functions_reporting.php:5014 -msgid "Mon" -msgstr "Mon" - -#: ../../godmode/agentes/planned_downtime.editor.php:562 -#: ../../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:10674 -#: ../../enterprise/godmode/alerts/alert_events.php:433 -#: ../../enterprise/include/functions_reporting.php:5018 -msgid "Tue" -msgstr "Tue" - -#: ../../godmode/agentes/planned_downtime.editor.php:565 -#: ../../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:10678 -#: ../../enterprise/godmode/alerts/alert_events.php:435 -#: ../../enterprise/include/functions_reporting.php:5022 -msgid "Wed" -msgstr "Wed" - -#: ../../godmode/agentes/planned_downtime.editor.php:568 -#: ../../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:10682 -#: ../../enterprise/godmode/alerts/alert_events.php:437 -#: ../../enterprise/include/functions_reporting.php:5026 -msgid "Thu" -msgstr "Thu" - -#: ../../godmode/agentes/planned_downtime.editor.php:571 -#: ../../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:10686 -#: ../../enterprise/godmode/alerts/alert_events.php:439 -#: ../../enterprise/include/functions_reporting.php:5030 -msgid "Fri" -msgstr "Fri" - -#: ../../godmode/agentes/planned_downtime.editor.php:574 -#: ../../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:10690 -#: ../../enterprise/godmode/alerts/alert_events.php:441 -#: ../../enterprise/include/functions_reporting.php:5034 -msgid "Sat" -msgstr "Sat" - -#: ../../godmode/agentes/planned_downtime.editor.php:577 -#: ../../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:10694 -#: ../../enterprise/godmode/alerts/alert_events.php:443 -#: ../../enterprise/include/functions_reporting.php:5038 -msgid "Sun" -msgstr "Sun" - -#: ../../godmode/agentes/planned_downtime.editor.php:584 -msgid "From day:" -msgstr "From day:" - -#: ../../godmode/agentes/planned_downtime.editor.php:590 -msgid "To day:" -msgstr "To day:" - -#: ../../godmode/agentes/planned_downtime.editor.php:601 -msgid "From hour:" -msgstr "From hour:" - -#: ../../godmode/agentes/planned_downtime.editor.php:609 -msgid "To hour:" -msgstr "To hour:" - -#: ../../godmode/agentes/planned_downtime.editor.php:724 -msgid "Available agents" -msgstr "Available agents" - -#: ../../godmode/agentes/planned_downtime.editor.php:738 -msgid "Available modules:" -msgstr "Available modules:" - -#: ../../godmode/agentes/planned_downtime.editor.php:739 -msgid "Only for type Quiet for downtimes." -msgstr "Only for quiet type downtimes" - -#: ../../godmode/agentes/planned_downtime.editor.php:755 -msgid "Agents planned for this downtime" -msgstr "Selected agents for this downtime" - -#: ../../godmode/agentes/planned_downtime.editor.php:770 -msgid "There are no agents" -msgstr "There are no agents" - -#: ../../godmode/agentes/planned_downtime.editor.php:782 -#: ../../godmode/users/user_list.php:269 ../../include/ajax/module.php:788 -#: ../../include/functions_treeview.php:608 -#: ../../include/functions_events.php:2139 -#: ../../mobile/operation/agent.php:188 ../../mobile/operation/agents.php:85 -#: ../../mobile/operation/agents.php:360 ../../mobile/operation/agents.php:362 -#: ../../mobile/operation/agents.php:364 ../../mobile/operation/agents.php:365 -#: ../../operation/agentes/estado_agente.php:579 -#: ../../operation/agentes/estado_generalagente.php:234 -#: ../../operation/agentes/ver_agente.php:771 -#: ../../operation/gis_maps/ajax.php:219 ../../operation/gis_maps/ajax.php:321 -#: ../../operation/search_agents.php:66 ../../operation/search_users.php:47 -#: ../../enterprise/extensions/vmware/ajax.php:101 -#: ../../enterprise/meta/agentsearch.php:109 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../enterprise/operation/agentes/policy_view.php:309 -#: ../../enterprise/operation/agentes/tag_view.php:472 -#: ../../enterprise/operation/agentes/ver_agente.php:75 -msgid "Last contact" -msgstr "Last contact" - -#: ../../godmode/agentes/planned_downtime.editor.php:806 -msgid "All alerts" -msgstr "All alerts" - -#: ../../godmode/agentes/planned_downtime.editor.php:809 -msgid "Entire agent" -msgstr "Entire agent" - -#: ../../godmode/agentes/planned_downtime.editor.php:813 -#: ../../godmode/agentes/planned_downtime.editor.php:918 -msgid "All modules" -msgstr "All modules" - -#: ../../godmode/agentes/planned_downtime.editor.php:816 -#: ../../godmode/agentes/planned_downtime.editor.php:910 -#: ../../godmode/agentes/planned_downtime.editor.php:914 -msgid "Some modules" -msgstr "Some modules" - -#: ../../godmode/agentes/planned_downtime.editor.php:882 -msgid "Add Module:" -msgstr "Add Module:" - -#: ../../godmode/agentes/planned_downtime.editor.php:1100 -msgid "Please select a module." -msgstr "Please select a module" - -#: ../../godmode/agentes/planned_downtime.editor.php:1233 -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/planned_downtime.export_csv.php:199 -#: ../../godmode/agentes/planned_downtime.list.php:358 -msgid "No planned downtime" -msgstr "No planned downtime" - -#: ../../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 execute 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:91 -#: ../../godmode/reporting/graphs.php:101 -#: ../../godmode/reporting/graphs.php:140 -#: ../../godmode/reporting/map_builder.php:101 -#: ../../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 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:226 -msgid "Not deleted. Error deleting data" -msgstr "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 -#: ../../include/functions_reporting_html.php:2234 -#: ../../include/functions_snmp.php:348 ../../include/functions_snmp.php:354 -#: ../../operation/agentes/gis_view.php:201 -#: ../../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_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:359 -#: ../../enterprise/include/functions_reporting_pdf.php:2298 -#: ../../enterprise/include/functions_reporting_pdf.php:2334 -#: ../../enterprise/include/functions_reporting_pdf.php:2372 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:148 -msgid "From" -msgstr "From" - -#: ../../godmode/agentes/planned_downtime.list.php:145 -#: ../../include/functions_reporting_html.php:2235 -#: ../../include/functions_snmp.php:363 ../../include/functions_snmp.php:369 -#: ../../operation/agentes/gis_view.php:202 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:360 -#: ../../enterprise/include/functions_reporting_pdf.php:2335 -#: ../../enterprise/include/functions_reporting_pdf.php:2373 -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:638 -#: ../../include/functions_reports.php:640 -#: ../../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/meta/advanced/agents_setup.move_agents.php:416 -#: ../../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_treeview.php:158 -#: ../../include/functions_treeview.php:398 -#: ../../include/functions_ui.php:2063 ../../include/functions_ui.php:2073 -#: ../../include/functions_db.php:171 ../../include/functions_events.php:1770 -#: ../../include/functions_events.php:1872 -#: ../../include/functions_events.php:1874 -#: ../../include/functions_events.php:1885 -#: ../../include/functions_events.php:1886 -#: ../../include/functions_events.php:1896 -#: ../../include/functions_events.php:1936 -#: ../../include/functions_events.php:1958 -#: ../../include/functions_events.php:1975 -#: ../../include/functions_events.php:2046 -#: ../../include/functions_events.php:2113 -#: ../../include/functions_events.php:2129 -#: ../../include/functions_events.php:2140 -#: ../../include/functions_events.php:2145 -#: ../../include/functions_events.php:2163 -#: ../../include/functions_events.php:2242 -#: ../../include/functions_events.php:2300 -#: ../../include/functions_events.php:2310 -#: ../../include/functions_events.php:2419 -#: ../../include/functions_events.php:2467 -#: ../../include/functions_events.php:2531 -#: ../../include/functions_events.php:2553 -#: ../../include/functions_events.php:2563 -#: ../../include/functions_reporting_html.php:491 -#: ../../include/functions_reporting_html.php:570 -#: ../../include/functions_reporting_html.php:3286 -#: ../../include/functions_reporting_html.php:3324 -#: ../../mobile/operation/agent.php:180 ../../mobile/operation/agent.php:194 -#: ../../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:180 -#: ../../operation/agentes/estado_generalagente.php:192 -#: ../../operation/agentes/estado_generalagente.php:205 -#: ../../operation/agentes/estado_generalagente.php:309 -#: ../../operation/agentes/estado_generalagente.php:388 -#: ../../operation/snmpconsole/snmp_view.php:799 -#: ../../operation/snmpconsole/snmp_view.php:818 -#: ../../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_visual_map.php:277 -#: ../../enterprise/include/functions_reporting.php:4862 -#: ../../enterprise/include/functions_reporting.php:5194 -#: ../../enterprise/include/functions_reporting_pdf.php:1395 -#: ../../enterprise/include/functions_reporting_pdf.php:1476 -#: ../../enterprise/include/functions_reporting_pdf.php:2141 -#: ../../enterprise/include/functions_servicemap.php:265 -#: ../../enterprise/include/functions_services.php:1101 -#: ../../enterprise/include/functions_services.php:1308 -#: ../../enterprise/include/functions_services.php:1786 -#: ../../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:265 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:350 -#: ../../enterprise/operation/log/log_viewer.php:255 -#: ../../enterprise/operation/reporting/custom_reporting.php:59 -msgid "Export to CSV" -msgstr "Export to CSV" - -#: ../../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/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:140 -#: ../../godmode/reporting/map_builder.php:190 -#: ../../godmode/reporting/map_builder.php:199 -#: ../../include/functions_agents.php:702 -#: ../../enterprise/godmode/policies/policies.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 -msgid "Successfully copied" -msgstr "Successfully copied" - -#: ../../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" - -#: ../../godmode/alerts/alert_actions.php:342 -#: ../../godmode/massive/massive_copy_modules.php:229 -#: ../../godmode/reporting/map_builder.php:261 -#: ../../operation/agentes/pandora_networkmap.php:569 -#: ../../operation/agentes/pandora_networkmap.php:653 -#: ../../enterprise/dashboard/dashboards.php:92 -#: ../../enterprise/dashboard/dashboards.php:149 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:184 -#: ../../enterprise/godmode/policies/policies.php:434 -#: ../../enterprise/godmode/policies/policy_modules.php:1364 -msgid "Copy" -msgstr "Copy" - -#: ../../godmode/alerts/alert_actions.php:398 -msgid "No alert actions configured" -msgstr "No alert actions established" - -#: ../../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 -#, php-format -msgid "Field %s" -msgstr "Field %s" - -#: ../../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:640 -#: ../../enterprise/godmode/modules/configure_local_component.php:157 -#: ../../enterprise/meta/advanced/metasetup.setup.php:107 -msgid "Basic" -msgstr "Basic" - -#: ../../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 ""
-"For sending emails, text must be HTML format, if you want to use plain text, "
-"type it between the following labels: 
"
-
-#: ../../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:641
-#: ../../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"
-
-#: ../../godmode/alerts/alert_commands.php:170
-#: ../../godmode/alerts/alert_commands.php:179
-msgid "Text/plain"
-msgstr "Text/plain"
-
-#: ../../godmode/alerts/alert_commands.php:170
-#: ../../godmode/alerts/alert_commands.php:179
-msgid "For sending emails only text plain"
-msgstr "For sending emails only text plain"
-
-#: ../../godmode/alerts/alert_commands.php:173
-#: ../../godmode/alerts/alert_commands.php:182
-msgid "Text/html"
-msgstr "Text/html"
-
-#: ../../godmode/alerts/alert_commands.php:267
-msgid "Alert commands"
-msgstr "Alert commands"
-
-#: ../../godmode/alerts/alert_commands.php:390
-msgid "No alert commands configured"
-msgstr "No alert commands configured"
-
-#: ../../godmode/alerts/alert_list.builder.php:78
-msgid "Latest value"
-msgstr "Latest value"
-
-#: ../../godmode/alerts/alert_list.builder.php:209
-#: ../../godmode/massive/massive_copy_modules.php:80
-#: ../../godmode/massive/massive_copy_modules.php:198
-#: ../../godmode/massive/massive_delete_agents.php:116
-#: ../../godmode/massive/massive_delete_modules.php:477
-#: ../../godmode/massive/massive_delete_modules.php:491
-#: ../../godmode/massive/massive_edit_agents.php:272
-#: ../../godmode/massive/massive_edit_modules.php:308
-#: ../../godmode/massive/massive_edit_modules.php:346
-#: ../../include/ajax/module.php:861 ../../include/functions.php:1032
-#: ../../include/functions_reporting.php:3558
-#: ../../include/functions_alerts.php:593 ../../include/functions_ui.php:454
-#: ../../include/functions_ui.php:455 ../../include/functions_events.php:1396
-#: ../../include/functions_events.php:2954
-#: ../../include/functions_visual_map.php:2457
-#: ../../include/functions_visual_map.php:2488
-#: ../../include/functions_visual_map.php:2504
-#: ../../include/functions_visual_map.php:2520
-#: ../../include/functions_filemanager.php:706
-#: ../../include/functions_graph.php:882
-#: ../../include/functions_graph.php:2667
-#: ../../include/functions_graph.php:4638
-#: ../../include/functions_groups.php:797
-#: ../../include/functions_groups.php:799
-#: ../../include/functions_groups.php:801
-#: ../../include/functions_groups.php:802
-#: ../../include/functions_groups.php:803 ../../include/functions_maps.php:46
-#: ../../include/functions_reporting_html.php:493
-#: ../../include/functions_reporting_html.php:572
-#: ../../include/functions_reporting_html.php:1561
-#: ../../include/functions_reporting_html.php:1582
-#: ../../include/functions_reporting_html.php:2045
-#: ../../include/functions_reporting_html.php:2207
-#: ../../include/functions_reports.php:426
-#: ../../include/graphs/functions_flot.php:489
-#: ../../mobile/operation/agents.php:36 ../../mobile/operation/modules.php:42
-#: ../../operation/agentes/estado_agente.php:217
-#: ../../operation/agentes/estado_monitores.php:466
-#: ../../operation/agentes/group_view.php:166
-#: ../../operation/agentes/group_view.php:169
-#: ../../operation/agentes/pandora_networkmap.view.php:261
-#: ../../operation/agentes/status_monitor.php:300
-#: ../../operation/agentes/tactical.php:153 ../../operation/tree.php:140
-#: ../../operation/tree.php:172 ../../operation/tree.php:315
-#: ../../enterprise/dashboard/widgets/events_list.php:185
-#: ../../enterprise/dashboard/widgets/service_map.php:87
-#: ../../enterprise/dashboard/widgets/tree_view.php:58
-#: ../../enterprise/dashboard/widgets/tree_view.php:71
-#: ../../enterprise/dashboard/widgets/tree_view.php:227
-#: ../../enterprise/extensions/cron/functions.php:238
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:89
-#: ../../enterprise/godmode/reporting/cluster_view.php:320
-#: ../../enterprise/godmode/reporting/cluster_view.php:397
-#: ../../enterprise/godmode/reporting/cluster_list.php:118
-#: ../../enterprise/godmode/reporting/cluster_list.php:235
-#: ../../enterprise/include/functions_reporting.php:1674
-#: ../../enterprise/include/functions_reporting.php:2482
-#: ../../enterprise/include/functions_reporting.php:3259
-#: ../../enterprise/include/functions_reporting.php:4177
-#: ../../enterprise/include/functions_reporting.php:4864
-#: ../../enterprise/include/functions_reporting.php:5195
-#: ../../enterprise/include/functions_reporting_pdf.php:334
-#: ../../enterprise/include/functions_reporting_pdf.php:738
-#: ../../enterprise/include/functions_reporting_pdf.php:756
-#: ../../enterprise/include/functions_reporting_pdf.php:1397
-#: ../../enterprise/include/functions_reporting_pdf.php:1478
-#: ../../enterprise/include/functions_reporting_pdf.php:1722
-#: ../../enterprise/include/functions_reporting_pdf.php:2143
-#: ../../enterprise/include/functions_reporting_pdf.php:2178
-#: ../../enterprise/meta/monitoring/group_view.php:146
-#: ../../enterprise/meta/monitoring/group_view.php:150
-#: ../../enterprise/meta/monitoring/tactical.php:281
-#: ../../enterprise/operation/agentes/tag_view.php:85
-#: ../../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:127
-#: ../../enterprise/operation/services/services.table_services.php:142
-msgid "Unknown"
-msgstr "Unknown"
-
-#: ../../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:2071
-#: ../../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"
-
-#: ../../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 "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/configure_alert_template.php:666
-#: ../../include/functions_groups.php:2152
-#: ../../include/functions_reporting_html.php:2095
-#: ../../operation/agentes/estado_generalagente.php:326
-#: ../../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:2425
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:892
-msgid "Enabled"
-msgstr "Enabled"
-
-#: ../../godmode/alerts/alert_list.list.php:138
-#: ../../operation/agentes/alerts_status.functions.php:103
-#: ../../operation/agentes/alerts_status.php:449
-#: ../../operation/agentes/alerts_status.php:495
-#: ../../operation/agentes/alerts_status.php:530
-#: ../../operation/agentes/alerts_status.php:565
-#: ../../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:853 ../../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"
-
-#: ../../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"
-
-#: ../../godmode/alerts/alert_list.list.php:163
-#: ../../operation/agentes/alerts_status.php:429
-msgid "Alert control filter"
-msgstr "Alert control filter"
-
-#: ../../godmode/alerts/alert_list.list.php:163
-#: ../../godmode/snmpconsole/snmp_alert.php:1019
-#: ../../godmode/users/user_list.php:247
-#: ../../operation/agentes/alerts_status.php:429
-#: ../../operation/agentes/graphs.php:198
-#: ../../operation/snmpconsole/snmp_view.php:555
-#: ../../operation/snmpconsole/snmp_view.php:661
-#: ../../enterprise/godmode/policies/policy_queue.php:297
-#: ../../enterprise/godmode/policies/policy_queue.php:384
-msgid "Toggle filter(s)"
-msgstr "Toggle filter(s)"
-
-#: ../../godmode/alerts/alert_list.list.php:412
-#: ../../godmode/massive/massive_copy_modules.php:138
-#: ../../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"
-
-#: ../../godmode/alerts/alert_list.list.php:412
-#: ../../godmode/alerts/alert_templates.php:303
-#: ../../godmode/reporting/graphs.php:168
-#: ../../godmode/reporting/reporting_builder.list_items.php:308
-#: ../../godmode/reporting/reporting_builder.php:603
-#: ../../godmode/reporting/reporting_builder.php:725
-#: ../../godmode/servers/plugin.php:739
-#: ../../godmode/servers/servers.build_table.php:76
-#: ../../godmode/users/profile_list.php:327
-#: ../../godmode/users/user_list.php:275
-#: ../../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
-#: ../../enterprise/meta/include/functions_autoprovision.php:542
-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 ""
-"Default actions will run every time an alert is triggered 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:872
-msgid "Update action"
-msgstr "Update action"
-
-#: ../../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 "Add action"
-
-#: ../../godmode/alerts/alert_list.list.php:719
-msgid "View alert advanced details"
-msgstr "View alert advanced details"
-
-#: ../../godmode/alerts/alert_list.list.php:730
-msgid "No alerts defined"
-msgstr "No alerts defined"
-
-#: ../../godmode/alerts/alert_list.list.php:785
-#: ../../godmode/extensions.php:277 ../../godmode/users/user_list.php:460
-#: ../../include/functions.php:2606
-#: ../../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"
-
-#: ../../godmode/alerts/alert_list.list.php:794
-#: ../../godmode/extensions.php:273 ../../godmode/users/user_list.php:463
-#: ../../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"
-
-#: ../../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 "Turn off 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 "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:182
-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:183
-#: ../../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 "Successfully 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 "iCalendar successfully uploaded"
-
-#: ../../godmode/alerts/alert_special_days.php:106
-msgid "Fail to upload iCalendar"
-msgstr "Error uploading 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:842
-#: ../../include/functions_html.php:939
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1406
-#: ../../enterprise/include/functions_reporting.php:1561
-#: ../../enterprise/include/functions_reporting.php:2068
-#: ../../enterprise/include/functions_reporting.php:2371
-#: ../../enterprise/include/functions_reporting.php:2793
-#: ../../enterprise/include/functions_reporting.php:3575
-#: ../../enterprise/include/functions_reporting_pdf.php:1606
-#: ../../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:848
-#: ../../include/functions_html.php:940
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1412
-#: ../../enterprise/include/functions_reporting.php:1562
-#: ../../enterprise/include/functions_reporting.php:2069
-#: ../../enterprise/include/functions_reporting.php:2372
-#: ../../enterprise/include/functions_reporting.php:2794
-#: ../../enterprise/include/functions_reporting.php:3576
-#: ../../enterprise/include/functions_reporting_pdf.php:1607
-#: ../../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:854
-#: ../../include/functions_html.php:941
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1418
-#: ../../enterprise/include/functions_reporting.php:1563
-#: ../../enterprise/include/functions_reporting.php:2070
-#: ../../enterprise/include/functions_reporting.php:2373
-#: ../../enterprise/include/functions_reporting.php:2795
-#: ../../enterprise/include/functions_reporting.php:3577
-#: ../../enterprise/include/functions_reporting_pdf.php:1608
-#: ../../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:860
-#: ../../include/functions_html.php:942
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1424
-#: ../../enterprise/include/functions_reporting.php:1564
-#: ../../enterprise/include/functions_reporting.php:2071
-#: ../../enterprise/include/functions_reporting.php:2374
-#: ../../enterprise/include/functions_reporting.php:2796
-#: ../../enterprise/include/functions_reporting.php:3578
-#: ../../enterprise/include/functions_reporting_pdf.php:1609
-#: ../../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:866
-#: ../../include/functions_html.php:943
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1430
-#: ../../enterprise/include/functions_reporting.php:1565
-#: ../../enterprise/include/functions_reporting.php:2072
-#: ../../enterprise/include/functions_reporting.php:2375
-#: ../../enterprise/include/functions_reporting.php:2797
-#: ../../enterprise/include/functions_reporting.php:3579
-#: ../../enterprise/include/functions_reporting_pdf.php:1610
-#: ../../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:872
-#: ../../include/functions_html.php:944
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1436
-#: ../../enterprise/include/functions_reporting.php:1566
-#: ../../enterprise/include/functions_reporting.php:2073
-#: ../../enterprise/include/functions_reporting.php:2376
-#: ../../enterprise/include/functions_reporting.php:2798
-#: ../../enterprise/include/functions_reporting.php:3580
-#: ../../enterprise/include/functions_reporting_pdf.php:1611
-#: ../../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:878
-#: ../../include/functions_html.php:938
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1442
-#: ../../enterprise/include/functions_reporting.php:1567
-#: ../../enterprise/include/functions_reporting.php:2074
-#: ../../enterprise/include/functions_reporting.php:2377
-#: ../../enterprise/include/functions_reporting.php:2799
-#: ../../enterprise/include/functions_reporting.php:3581
-#: ../../enterprise/include/functions_reporting_pdf.php:1612
-#: ../../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 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:1599
-#: ../../enterprise/include/functions_reporting.php:2412
-#: ../../enterprise/include/functions_reporting.php:3190
-#: ../../enterprise/include/functions_reporting_pdf.php:1643
-msgid "January"
-msgstr "January"
-
-#: ../../godmode/alerts/alert_special_days.php:350
-#: ../../enterprise/include/functions_reporting.php:1602
-#: ../../enterprise/include/functions_reporting.php:2415
-#: ../../enterprise/include/functions_reporting.php:3193
-#: ../../enterprise/include/functions_reporting_pdf.php:1646
-msgid "February"
-msgstr "February"
-
-#: ../../godmode/alerts/alert_special_days.php:353
-#: ../../enterprise/include/functions_reporting.php:1605
-#: ../../enterprise/include/functions_reporting.php:2418
-#: ../../enterprise/include/functions_reporting.php:3196
-#: ../../enterprise/include/functions_reporting_pdf.php:1649
-msgid "March"
-msgstr "March"
-
-#: ../../godmode/alerts/alert_special_days.php:356
-#: ../../enterprise/include/functions_reporting.php:1608
-#: ../../enterprise/include/functions_reporting.php:2421
-#: ../../enterprise/include/functions_reporting.php:3199
-#: ../../enterprise/include/functions_reporting_pdf.php:1652
-msgid "April"
-msgstr "April"
-
-#: ../../godmode/alerts/alert_special_days.php:359
-#: ../../enterprise/include/functions_reporting.php:1611
-#: ../../enterprise/include/functions_reporting.php:2424
-#: ../../enterprise/include/functions_reporting.php:3202
-#: ../../enterprise/include/functions_reporting_pdf.php:1655
-msgid "May"
-msgstr "May"
-
-#: ../../godmode/alerts/alert_special_days.php:362
-#: ../../enterprise/include/functions_reporting.php:1614
-#: ../../enterprise/include/functions_reporting.php:2427
-#: ../../enterprise/include/functions_reporting.php:3205
-#: ../../enterprise/include/functions_reporting_pdf.php:1658
-msgid "June"
-msgstr "June"
-
-#: ../../godmode/alerts/alert_special_days.php:365
-#: ../../enterprise/include/functions_reporting.php:1617
-#: ../../enterprise/include/functions_reporting.php:2430
-#: ../../enterprise/include/functions_reporting.php:3208
-#: ../../enterprise/include/functions_reporting_pdf.php:1661
-msgid "July"
-msgstr "July"
-
-#: ../../godmode/alerts/alert_special_days.php:368
-#: ../../enterprise/include/functions_reporting.php:1620
-#: ../../enterprise/include/functions_reporting.php:2433
-#: ../../enterprise/include/functions_reporting.php:3211
-#: ../../enterprise/include/functions_reporting_pdf.php:1664
-msgid "August"
-msgstr "August"
-
-#: ../../godmode/alerts/alert_special_days.php:371
-#: ../../enterprise/include/functions_reporting.php:1623
-#: ../../enterprise/include/functions_reporting.php:2436
-#: ../../enterprise/include/functions_reporting.php:3214
-#: ../../enterprise/include/functions_reporting_pdf.php:1667
-msgid "September"
-msgstr "September"
-
-#: ../../godmode/alerts/alert_special_days.php:374
-#: ../../enterprise/include/functions_reporting.php:1626
-#: ../../enterprise/include/functions_reporting.php:2439
-#: ../../enterprise/include/functions_reporting.php:3217
-#: ../../enterprise/include/functions_reporting_pdf.php:1670
-msgid "October"
-msgstr "October"
-
-#: ../../godmode/alerts/alert_special_days.php:377
-#: ../../enterprise/include/functions_reporting.php:1629
-#: ../../enterprise/include/functions_reporting.php:2442
-#: ../../enterprise/include/functions_reporting.php:3220
-#: ../../enterprise/include/functions_reporting_pdf.php:1673
-msgid "November"
-msgstr "November"
-
-#: ../../godmode/alerts/alert_special_days.php:380
-#: ../../enterprise/include/functions_reporting.php:1632
-#: ../../enterprise/include/functions_reporting.php:2445
-#: ../../enterprise/include/functions_reporting.php:3223
-#: ../../enterprise/include/functions_reporting_pdf.php:1676
-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:407
-#: ../../operation/events/events_list.php:434
-#: ../../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:763
-#: ../../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: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 "Time threshold"
-
-#: ../../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:241
-#: ../../operation/agentes/alerts_status.php:423
-#: ../../operation/agentes/status_monitor.php:542
-#: ../../operation/events/events_list.php:708 ../../operation/tree.php:197
-#: ../../enterprise/godmode/alerts/alert_events_list.php:382
-#: ../../enterprise/godmode/modules/local_components.php:457
-#: ../../enterprise/meta/advanced/policymanager.queue.php:244
-#: ../../enterprise/meta/agentsearch.php:81
-msgid "Show Options"
-msgstr "Show Options"
-
-#: ../../godmode/alerts/alert_templates.php:360
-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:2241
-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:847
-#: ../../include/functions_ui.php:1039
-msgid ""
-"The alert would fire when the value matches "
-msgstr ""
-"The alert is triggered when the value matches "
-
-#: ../../godmode/alerts/alert_view.php:147 ../../include/functions_ui.php:1042
-msgid ""
-"The alert would fire when the value doesn't match "
-msgstr ""
-"The alert is triggered when the value does not match "
-
-#: ../../godmode/alerts/alert_view.php:152
-#: ../../godmode/alerts/configure_alert_template.php:849
-#: ../../include/functions_ui.php:1030
-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:850
-#: ../../include/functions_ui.php:1034
-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:851
-#: ../../include/functions_ui.php:1048
-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:1051
-msgid ""
-"The alert would fire when the value is not between  "
-"and "
-msgstr ""
-"The alert is triggered when the value is not between  and "
-
-#: ../../godmode/alerts/alert_view.php:170
-#: ../../godmode/alerts/configure_alert_template.php:853
-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:854
-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:857
-msgid "The alert would fire when the module value changes"
-msgstr "The alert is triggered when the module value changes."
-
-#: ../../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 "The alert is triggered when the module value remains the same."
-
-#: ../../godmode/alerts/alert_view.php:186
-#: ../../godmode/alerts/configure_alert_template.php:855
-#: ../../include/functions_ui.php:1065
-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:856
-#: ../../include/functions_ui.php:1070
-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:859
-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:539
-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:818
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1352
-#: ../../include/functions_reporting.php:1039
-#: ../../include/functions_ui.php:2057 ../../include/functions_graph.php:860
-#: ../../include/functions_graph.php:861 ../../include/functions_graph.php:862
-#: ../../include/functions_graph.php:870 ../../include/functions_graph.php:871
-#: ../../include/functions_graph.php:872 ../../include/functions_graph.php:878
-#: ../../include/functions_graph.php:903
-#: ../../include/functions_graph.php:1601
-#: ../../include/functions_graph.php:4631
-#: ../../include/functions_graph.php:5515
-#: ../../include/functions_graph.php:5518
-#: ../../include/functions_graph.php:5521
-#: ../../include/functions_reporting_html.php:2707
-#: ../../include/graphs/functions_pchart.php:203
-#: ../../include/graphs/functions_pchart.php:1465
-#: ../../enterprise/dashboard/widgets/top_n.php:477
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:200
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:275
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1384
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1693
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:476
-#: ../../enterprise/include/functions_reporting_csv.php:531
-#: ../../enterprise/include/functions_reporting_pdf.php:912
-#: ../../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:820
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1350
-#: ../../include/functions_reporting.php:1036
-#: ../../include/functions_ui.php:2057 ../../include/functions_graph.php:860
-#: ../../include/functions_graph.php:861 ../../include/functions_graph.php:862
-#: ../../include/functions_graph.php:870 ../../include/functions_graph.php:871
-#: ../../include/functions_graph.php:872 ../../include/functions_graph.php:878
-#: ../../include/functions_graph.php:900
-#: ../../include/functions_graph.php:1599
-#: ../../include/functions_graph.php:4631
-#: ../../include/functions_graph.php:5515
-#: ../../include/functions_graph.php:5518
-#: ../../include/functions_graph.php:5521
-#: ../../include/functions_reporting_html.php:2706
-#: ../../include/graphs/functions_pchart.php:197
-#: ../../include/graphs/functions_pchart.php:1467
-#: ../../enterprise/dashboard/widgets/top_n.php:474
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:205
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:272
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1382
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:478
-#: ../../enterprise/include/functions_reporting_csv.php:531
-#: ../../enterprise/include/functions_reporting_pdf.php:911
-#: ../../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 "Triggering 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 triggered"
-
-#: ../../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 Triggering/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 "Triggering"
-
-#: ../../godmode/alerts/alert_view.php:421
-msgid "Recovering"
-msgstr "Recovering"
-
-#: ../../godmode/alerts/alert_view.php:423
-#: ../../godmode/massive/massive_edit_modules.php:577
-#: ../../godmode/servers/manage_recontask.php:296
-#: ../../godmode/servers/manage_recontask_form.php:243
-#: ../../enterprise/godmode/services/services.service.php:293
-#: ../../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:673
-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, the action defining 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 triggered"
-
-#: ../../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 during 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:115
-#: ../../godmode/events/event_responses.editor.php:121
-#: ../../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: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 "Configure alert template"
-
-#: ../../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 "Successfully created from %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:767
-#: ../../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/reporting/cluster_builder.main.php:45
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:51
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:56
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:75
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:81
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:86
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:106
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:112
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:117
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:139
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:145
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:150
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:175
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:181
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:186
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:207
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:213
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:218
-#: ../../enterprise/godmode/setup/setup_history.php:71
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:356
-msgid "Step"
-msgstr "Step"
-
-#: ../../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:344
-#: ../../include/functions_reporting.php:6118
-#: ../../include/functions_reports.php:582
-#: ../../enterprise/godmode/alerts/alert_events.php:97
-#: ../../enterprise/godmode/alerts/alert_events.php:102
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
-#: ../../enterprise/include/functions_reporting_csv.php:496
-#: ../../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 "Conditions"
-
-#: ../../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 "Advanced fields"
-
-#: ../../godmode/alerts/configure_alert_template.php:523
-#: ../../enterprise/godmode/alerts/alert_events.php:430
-msgid "Days of week"
-msgstr "Days of week"
-
-#: ../../godmode/alerts/configure_alert_template.php:542
-#: ../../godmode/reporting/reporting_builder.item_editor.php:886
-#: ../../enterprise/godmode/alerts/alert_events.php:446
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1450
-msgid "Time from"
-msgstr "Set initial time"
-
-#: ../../godmode/alerts/configure_alert_template.php:546
-#: ../../godmode/reporting/reporting_builder.item_editor.php:895
-#: ../../enterprise/godmode/alerts/alert_events.php:449
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1458
-msgid "Time to"
-msgstr "Set end time"
-
-#: ../../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 "Min. number of alerts"
-
-#: ../../godmode/alerts/configure_alert_template.php:560
-msgid "Reset counter for non-sustained alerts"
-msgstr "Reset counter for non-sustained alerts"
-
-#: ../../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 ""
-"Enable this option if you want the counter to be reset when the alert is not "
-"being triggered consecutively, even if it is within the time threshold."
-
-#: ../../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 "Max. number of alerts"
-
-#: ../../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 ""
-"Unless they are left blank, the fields from the action will override those "
-"set on the template."
-
-#: ../../godmode/alerts/configure_alert_template.php:593
-msgid "Condition type"
-msgstr "Condition type"
-
-#: ../../godmode/alerts/configure_alert_template.php:600
-msgid "Trigger when matches the value"
-msgstr "Triggered when the value matches"
-
-#: ../../godmode/alerts/configure_alert_template.php:612
-msgid "The regular expression is valid"
-msgstr "The regular expression is valid"
-
-#: ../../godmode/alerts/configure_alert_template.php:617
-msgid "The regular expression is not valid"
-msgstr "The regular expression is not valid"
-
-#: ../../godmode/alerts/configure_alert_template.php:623
-#: ../../godmode/massive/massive_edit_modules.php:392
-#: ../../godmode/massive/massive_edit_modules.php:438
-#: ../../godmode/massive/massive_edit_modules.php:540
-#: ../../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:5162
-#: ../../include/functions_reporting_html.php:3253
-#: ../../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:665
-msgid "Alert recovery"
-msgstr "Alert recovery"
-
-#: ../../godmode/alerts/configure_alert_template.php:674
-msgid "Recovery fields"
-msgstr "Recovery fields"
-
-#: ../../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 "Wizard level"
-
-#: ../../godmode/alerts/configure_alert_template.php:777
-msgid "No wizard"
-msgstr "No wizard"
-
-#: ../../godmode/alerts/configure_alert_template.php:824
-#: ../../godmode/alerts/configure_alert_template.php:828
-#: ../../enterprise/godmode/alerts/alert_events.php:552
-#: ../../enterprise/include/functions_dashboard.php:831
-#: ../../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:848
-#, php-format
-msgid "The alert would fire when the value doesn\\'t match %s"
-msgstr "The alert is triggered when the value does not match %s"
-
-#: ../../godmode/alerts/configure_alert_template.php:852
-msgid ""
-"The alert would fire when the value is not between  and "
-msgstr ""
-"The alert will be triggered when the value is not between  and "
-
-#: ../../godmode/alerts/configure_alert_template.php:860
-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_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:806 ../../include/functions.php:431
-#: ../../include/functions.php:565 ../../include/functions_html.php:834
-#: ../../enterprise/meta/advanced/metasetup.visual.php:165
-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:99 ../../include/functions_reporting.php:7912
-#: ../../include/functions_reporting_html.php:3582
-#: ../../mobile/operation/groups.php:125 ../../operation/tree.php:293
-#: ../../enterprise/dashboard/widgets/tree_view.php:205
-#: ../../enterprise/include/functions_reporting_csv.php:469
-msgid "Total agents"
-msgstr "Total amount of agents"
-
-#: ../../godmode/db/db_main.php:105
-#: ../../include/functions_reporting.php:10562
-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: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-initialized 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:601 ../../include/functions_ui.php:454
-#: ../../operation/agentes/estado_generalagente.php:239
-#: ../../operation/gis_maps/ajax.php:323 ../../operation/gis_maps/ajax.php:334
-#: ../../enterprise/extensions/cron/main.php:408
-#: ../../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 FMS Server settings are correct and that the "
-"database maintenance daemon is running. It is very important to keep your "
-"database up to date in order to get the best performance and results from "
-"Pandora FMS."
-
-#: ../../godmode/events/custom_events.php:68
-#: ../../godmode/events/custom_events.php:152
-#: ../../include/functions_events.php:34
-#: ../../enterprise/meta/include/functions_events_meta.php:55
-msgid "Event id"
-msgstr "Event ID"
-
-#: ../../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:2448
-#: ../../include/functions_reporting_html.php:1025
-#: ../../include/functions_reporting_html.php:1035
-#: ../../include/functions_reporting_html.php:2938
-#: ../../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:514 ../../include/functions_events.php:40
-#: ../../include/functions_events.php:912
-#: ../../include/functions_events.php:2453
-#: ../../include/functions_events.php:3641
-#: ../../include/functions_netflow.php:287
-#: ../../include/functions_reporting_html.php:816
-#: ../../include/functions_reporting_html.php:825
-#: ../../include/functions_reporting_html.php:1029
-#: ../../include/functions_reporting_html.php:1038
-#: ../../include/functions_reporting_html.php:1653
-#: ../../include/functions_reporting_html.php:2940
-#: ../../mobile/operation/events.php:473
-#: ../../mobile/operation/modules.php:548
-#: ../../mobile/operation/modules.php:756
-#: ../../operation/agentes/estado_generalagente.php:431
-#: ../../operation/agentes/exportdata.csv.php:77
-#: ../../operation/agentes/exportdata.excel.php:76
-#: ../../operation/agentes/exportdata.php:99
-#: ../../operation/agentes/status_monitor.php:998
-#: ../../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:731
-#: ../../enterprise/include/functions_inventory.php:65
-#: ../../enterprise/include/functions_inventory.php:242
-#: ../../enterprise/include/functions_inventory.php:392
-#: ../../enterprise/include/functions_reporting_csv.php:361
-#: ../../enterprise/include/functions_reporting_csv.php:990
-#: ../../enterprise/meta/include/functions_events_meta.php:73
-#: ../../enterprise/operation/agentes/tag_view.php:539
-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:1479
-#: ../../include/functions_events.php:41
-#: ../../include/functions_events.php:3661
-#: ../../operation/events/events.build_table.php:191
-#: ../../operation/events/events_list.php:628
-#: ../../enterprise/dashboard/widgets/events_list.php:36
-#: ../../enterprise/godmode/alerts/configure_alert_rule.php:210
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1789
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:414
-#: ../../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:1467
-#: ../../include/functions_events.php:44
-#: ../../include/functions_events.php:898
-#: ../../include/functions_events.php:2499
-#: ../../include/functions_events.php:3678
-#: ../../include/functions_reporting_html.php:814
-#: ../../include/functions_reporting_html.php:823
-#: ../../include/functions_reporting_html.php:1027
-#: ../../include/functions_reporting_html.php:1037
-#: ../../include/functions_reporting_html.php:1651
-#: ../../include/functions_snmp.php:303 ../../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:634
-#: ../../operation/snmpconsole/snmp_view.php:456
-#: ../../enterprise/dashboard/widgets/events_list.php:54
-#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1777
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:403
-#: ../../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:1783
-#: ../../enterprise/include/functions_reporting_pdf.php:1842
-#: ../../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:1743
-#: ../../include/functions_events.php:3683
-#: ../../include/functions_events.php:4028
-#: ../../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:2295
-#: ../../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:3703
-#: ../../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:2290
-#: ../../include/functions_events.php:3708
-#: ../../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 the fields from previous events"
-msgstr "Load the fields from previous events"
-
-#: ../../godmode/events/custom_events.php:133
-msgid "Event fields will be loaded. Do you want to continue?"
-msgstr "Event fields will be loaded. Do you want to 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 "Could not 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 "Could not 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:291
-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:199
-#: ../../godmode/massive/massive_delete_agents.php:117
-#: ../../godmode/massive/massive_delete_modules.php:478
-#: ../../godmode/massive/massive_delete_modules.php:492
-#: ../../godmode/massive/massive_edit_agents.php:273
-#: ../../godmode/massive/massive_edit_modules.php:309
-#: ../../godmode/massive/massive_edit_modules.php:347
-#: ../../include/functions.php:1083 ../../include/functions_events.php:1432
-#: ../../mobile/operation/modules.php:43
-#: ../../operation/agentes/estado_agente.php:218
-#: ../../operation/agentes/status_monitor.php:301
-#: ../../operation/events/events_list.php:631
-#: ../../enterprise/dashboard/widgets/events_list.php:34
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:90
-#: ../../enterprise/operation/agentes/tag_view.php:86
-msgid "Not normal"
-msgstr "Not normal"
-
-#: ../../godmode/events/event_edit_filter.php:245
-#: ../../godmode/events/event_filter.php:111
-#: ../../operation/events/events_list.php:641
-#: ../../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:1593
-#: ../../godmode/snmpconsole/snmp_alert.php:999
-#: ../../include/ajax/module.php:185 ../../mobile/operation/agents.php:215
-#: ../../mobile/operation/alerts.php:188 ../../mobile/operation/events.php:642
-#: ../../mobile/operation/modules.php:254
-#: ../../operation/events/events_list.php:477
-#: ../../operation/snmpconsole/snmp_view.php:470
-#: ../../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:2007
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:465
-#: ../../enterprise/include/functions_events.php:90
-msgid "Free search"
-msgstr "Free search"
-
-#: ../../godmode/events/event_edit_filter.php:253
-#: ../../operation/events/events_list.php:479
-#: ../../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:627
-#: ../../include/functions_config.php:489
-#: ../../operation/events/events_list.php:537
-#: ../../operation/snmpconsole/snmp_view.php:445
-#: ../../operation/users/user_edit.php:240
-#: ../../enterprise/meta/advanced/metasetup.visual.php:121
-#: ../../enterprise/meta/include/functions_meta.php:1165
-msgid "Block size for pagination"
-msgstr "Block size for pagination"
-
-#: ../../godmode/events/event_edit_filter.php:285
-#: ../../operation/events/events_list.php:499
-#: ../../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:647
-#: ../../enterprise/godmode/setup/setup.php:90
-msgid "All events"
-msgstr "All events"
-
-#: ../../godmode/events/event_edit_filter.php:300
-#: ../../operation/events/events_list.php:648
-msgid "Group events"
-msgstr "Group events"
-
-#: ../../godmode/events/event_edit_filter.php:305
-#: ../../operation/events/events_list.php:548
-#: ../../enterprise/include/functions_events.php:135
-msgid "Date from"
-msgstr "From (date)"
-
-#: ../../godmode/events/event_edit_filter.php:308
-#: ../../operation/events/events_list.php:552
-#: ../../enterprise/include/functions_events.php:142
-msgid "Date to"
-msgstr "To (date)"
-
-#: ../../godmode/events/event_edit_filter.php:350
-#: ../../operation/events/events_list.php:572
-#: ../../operation/events/events_list.php:586
-#: ../../enterprise/include/functions_events.php:180
-msgid "Events with following tags"
-msgstr "Events with the following tags"
-
-#: ../../godmode/events/event_edit_filter.php:365
-#: ../../operation/events/events_list.php:578
-#: ../../operation/events/events_list.php:592
-#: ../../enterprise/include/functions_events.php:197
-msgid "Events without following tags"
-msgstr "Events without the following tags"
-
-#: ../../godmode/events/event_edit_filter.php:379
-#: ../../operation/events/events_list.php:530
-#: ../../enterprise/include/functions_events.php:156
-msgid "Alert events"
-msgstr "Alert events"
-
-#: ../../godmode/events/event_edit_filter.php:383
-#: ../../operation/events/events_list.php:533
-msgid "Filter alert events"
-msgstr "Filter alert events"
-
-#: ../../godmode/events/event_edit_filter.php:384
-#: ../../operation/events/events_list.php:534
-msgid "Only alert events"
-msgstr "Only alert events"
-
-#: ../../godmode/events/event_edit_filter.php:388
-#: ../../operation/events/events_list.php:511
-msgid "Module search"
-msgstr "Module search"
-
-#: ../../godmode/events/event_filter.php:167
-#: ../../godmode/netflow/nf_edit.php:163
-msgid "There are no defined filters"
-msgstr "There are no filters set"
-
-#: ../../godmode/events/event_filter.php:175
-#: ../../godmode/netflow/nf_edit.php:168
-#: ../../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:64
-msgid "Edit event responses"
-msgstr "Edit event responses"
-
-#: ../../godmode/events/event_responses.editor.php:94
-#: ../../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"
-
-#: ../../godmode/events/event_responses.editor.php:94
-msgid "For Command type Modal Window mode is enforced"
-msgstr "For Command type Modal Window mode is enforced"
-
-#: ../../godmode/events/event_responses.editor.php:95
-msgid "Modal window"
-msgstr "Modal window"
-
-#: ../../godmode/events/event_responses.editor.php:95
-msgid "New window"
-msgstr "New window"
-
-#: ../../godmode/events/event_responses.editor.php:105
-#: ../../godmode/reporting/graph_builder.main.php:148
-#: ../../godmode/reporting/visual_console_builder.wizard.php:134
-#: ../../godmode/setup/gis_step_2.php:257
-#: ../../include/functions_visual_map_editor.php:86
-#: ../../include/functions_visual_map_editor.php:500
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:172
-msgid "Width"
-msgstr "Width"
-
-#: ../../godmode/events/event_responses.editor.php:107
-#: ../../godmode/reporting/graph_builder.main.php:152
-#: ../../godmode/reporting/visual_console_builder.wizard.php:137
-#: ../../godmode/setup/gis_step_2.php:259
-#: ../../include/functions_visual_map_editor.php:506
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:176
-msgid "Height"
-msgstr "Height"
-
-#: ../../godmode/events/event_responses.editor.php:112
-#: ../../include/functions_events.php:1809
-#: ../../enterprise/extensions/cron/main.php:480
-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:63
-msgid "Response added succesfully"
-msgstr "Response added successfully"
-
-#: ../../godmode/events/event_responses.php:66
-msgid "Response cannot be added"
-msgstr "Response cannot be added"
-
-#: ../../godmode/events/event_responses.php:103
-msgid "Response updated succesfully"
-msgstr "Response successfully updated"
-
-#: ../../godmode/events/event_responses.php:106
-msgid "Response cannot be updated"
-msgstr "Response cannot be updated"
-
-#: ../../godmode/events/event_responses.php:115
-msgid "Response deleted succesfully"
-msgstr "Response successfully deleted"
-
-#: ../../godmode/events/event_responses.php:118
-msgid "Response cannot be deleted"
-msgstr "Response cannot be deleted"
-
-#: ../../godmode/events/events.php:37
-#: ../../godmode/users/configure_user.php:588
-#: ../../operation/events/events.php:360
-#: ../../operation/users/user_edit.php:280
-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:351
-#: ../../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:391
-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:165
-#: ../../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 is 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 "Center Latitude"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:375
-msgid "Center Longitude"
-msgstr "Center 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 "Error loading the group"
-
-#: ../../godmode/groups/configure_group.php:92
-msgid "Update group"
-msgstr "Update group"
-
-#: ../../godmode/groups/configure_group.php:94
-#: ../../godmode/groups/group_list.php:433
-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:375
-#: ../../godmode/modules/module_list.php:57
-#: ../../godmode/reporting/visual_console_builder.elements.php:188
-#: ../../godmode/setup/os.builder.php:39
-#: ../../include/functions_visual_map.php:3947
-#: ../../include/functions_visual_map_editor.php:61
-#: ../../include/functions_visual_map_editor.php:872
-#: ../../enterprise/dashboard/widgets/module_icon.php:84
-#: ../../enterprise/dashboard/widgets/module_status.php:73
-#: ../../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 do not 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:572
-#: ../../operation/users/user_edit.php:325
-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 are 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 to the node. "
-
-#: ../../godmode/groups/configure_modu_group.php:32
-msgid "Module group management"
-msgstr "Module group management"
-
-#: ../../godmode/groups/group_list.php:190
-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:196
-msgid "Groups defined in Pandora"
-msgstr "Groups defined in Pandora FMS"
-
-#: ../../godmode/groups/group_list.php:242
-#: ../../godmode/groups/modu_group_list.php:75
-msgid "Group successfully created"
-msgstr "Group successfully created"
-
-#: ../../godmode/groups/group_list.php:245
-#: ../../godmode/groups/modu_group_list.php:78
-msgid "There was a problem creating group"
-msgstr "Error creating the group"
-
-#: ../../godmode/groups/group_list.php:249
-msgid "Each group must have a different name"
-msgstr "Each group must have a different name"
-
-#: ../../godmode/groups/group_list.php:254
-msgid "Group must have a name"
-msgstr "Group must have a name"
-
-#: ../../godmode/groups/group_list.php:298
-#: ../../godmode/groups/modu_group_list.php:106
-msgid "Group successfully updated"
-msgstr "Group successfully updated"
-
-#: ../../godmode/groups/group_list.php:301
-#: ../../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:326
-#, php-format
-msgid "The group is not empty. It is use in %s."
-msgstr "The group is not empty. It is used in %s."
-
-#: ../../godmode/groups/group_list.php:330
-#: ../../godmode/groups/modu_group_list.php:145
-msgid "Group successfully deleted"
-msgstr "Group successfully deleted"
-
-#: ../../godmode/groups/group_list.php:333
-#: ../../godmode/groups/modu_group_list.php:143
-msgid "There was a problem deleting group"
-msgstr "Error deleting the group"
-
-#: ../../godmode/groups/group_list.php:427
-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 FMS"
-
-#: ../../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:215
-msgid "There are no defined module groups"
-msgstr "There are no module groups defined"
-
-#: ../../godmode/groups/modu_group_list.php:220
-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:2552
-#: ../../include/functions_visual_map.php:2883
-#: ../../enterprise/godmode/policies/policy_agents.php:731
-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:190
-#: ../../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:457
-#: ../../godmode/massive/massive_edit_agents.php:263
-#: ../../godmode/massive/massive_edit_modules.php:295
-#: ../../godmode/massive/massive_enable_disable_alerts.php:138
-#: ../../godmode/massive/massive_standby_alerts.php:139
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
-#: ../../enterprise/godmode/policies/policy_agents.php:378
-#: ../../enterprise/godmode/policies/policy_agents.php:394
-#: ../../enterprise/godmode/policies/policy_agents.php:428
-#: ../../enterprise/godmode/policies/policy_agents.php:558
-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:525
-#: ../../godmode/massive/massive_edit_modules.php:366
-#: ../../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:527
-#: ../../godmode/massive/massive_edit_modules.php:370
-msgid "Show unknown and not init modules"
-msgstr "Show unknown and not initialized modules"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:228
-#: ../../godmode/massive/massive_add_alerts.php:213
-#: ../../godmode/massive/massive_copy_modules.php:443
-#: ../../godmode/massive/massive_delete_agents.php:163
-#: ../../godmode/massive/massive_delete_alerts.php:266
-#: ../../godmode/massive/massive_delete_modules.php:769
-#: ../../godmode/massive/massive_edit_agents.php:583
-#: ../../godmode/massive/massive_edit_modules.php:734
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:313
-msgid ""
-"Unsucessful sending the data, please contact with your administrator or make "
-"with less elements."
-msgstr ""
-"Error sending data, 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 "Profiles successfully added"
-
-#: ../../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:737
-#: ../../operation/users/user_edit.php:515
-#: ../../enterprise/godmode/setup/setup_acl.php:432
-msgid "Profile name"
-msgstr "Profile name"
-
-#: ../../godmode/massive/massive_add_profiles.php:90
-#: ../../godmode/massive/massive_delete_profiles.php:104
-#: ../../include/functions_reporting.php:7976
-#: ../../operation/search_results.php:84
-#: ../../enterprise/meta/advanced/synchronizing.user.php:531
-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:195
-#: ../../godmode/massive/massive_delete_agents.php:113
-#: ../../godmode/massive/massive_delete_modules.php:474
-#: ../../godmode/massive/massive_delete_modules.php:488
-#: ../../godmode/massive/massive_edit_agents.php:269
-#: ../../godmode/massive/massive_edit_modules.php:305
-#: ../../godmode/massive/massive_edit_modules.php:343
-#: ../../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:1469
-#: ../../include/functions_graph.php:2666
-#: ../../include/functions_graph.php:3767
-#: ../../include/functions_graph.php:3768
-#: ../../include/functions_graph.php:6079
-#: ../../include/functions_groups.php:815
-#: ../../include/functions_groups.php:817
-#: ../../include/functions_groups.php:819
-#: ../../include/functions_groups.php:820
-#: ../../include/functions_groups.php:821
-#: ../../include/functions_groups.php:829
-#: ../../include/functions_reporting_html.php:1576
-#: ../../mobile/operation/agents.php:34 ../../mobile/operation/modules.php:39
-#: ../../operation/agentes/estado_agente.php:214
-#: ../../operation/agentes/estado_monitores.php:463
-#: ../../operation/agentes/group_view.php:171
-#: ../../operation/agentes/status_monitor.php:297
-#: ../../operation/agentes/tactical.php:152
-#: ../../operation/netflow/nf_live_view.php:322 ../../operation/tree.php:137
-#: ../../operation/tree.php:169 ../../operation/tree.php:325
-#: ../../enterprise/dashboard/widgets/tree_view.php:55
-#: ../../enterprise/dashboard/widgets/tree_view.php:68
-#: ../../enterprise/dashboard/widgets/tree_view.php:237
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:86
-#: ../../enterprise/godmode/reporting/cluster_view.php:335
-#: ../../enterprise/godmode/reporting/cluster_view.php:412
-#: ../../enterprise/godmode/reporting/cluster_list.php:115
-#: ../../enterprise/godmode/reporting/cluster_list.php:250
-#: ../../enterprise/include/functions_reporting_pdf.php:753
-#: ../../enterprise/include/functions_services.php:1347
-#: ../../enterprise/meta/monitoring/group_view.php:152
-#: ../../enterprise/meta/monitoring/tactical.php:280
-#: ../../enterprise/operation/agentes/tag_view.php:82
-msgid "Normal"
-msgstr "Normal"
-
-#: ../../godmode/massive/massive_copy_modules.php:78
-#: ../../godmode/massive/massive_copy_modules.php:196
-#: ../../godmode/massive/massive_delete_agents.php:114
-#: ../../godmode/massive/massive_delete_modules.php:475
-#: ../../godmode/massive/massive_delete_modules.php:489
-#: ../../godmode/massive/massive_edit_agents.php:270
-#: ../../godmode/massive/massive_edit_agents.php:463
-#: ../../godmode/massive/massive_edit_modules.php:306
-#: ../../godmode/massive/massive_edit_modules.php:344
-#: ../../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:239
-#: ../../include/functions_ui.php:2057 ../../include/functions_events.php:1472
-#: ../../include/functions_graph.php:2665
-#: ../../include/functions_graph.php:3775
-#: ../../include/functions_graph.php:3776
-#: ../../include/functions_graph.php:6082
-#: ../../include/functions_groups.php:824
-#: ../../include/functions_groups.php:826
-#: ../../include/functions_groups.php:828
-#: ../../include/functions_groups.php:829
-#: ../../include/functions_groups.php:830
-#: ../../include/functions_reporting_html.php:1580
-#: ../../mobile/operation/agents.php:35 ../../mobile/operation/modules.php:40
-#: ../../operation/agentes/estado_agente.php:215
-#: ../../operation/agentes/estado_monitores.php:465
-#: ../../operation/agentes/group_view.php:172
-#: ../../operation/agentes/status_monitor.php:298
-#: ../../operation/agentes/tactical.php:151
-#: ../../operation/gis_maps/render_view.php:150
-#: ../../operation/netflow/nf_live_view.php:273 ../../operation/tree.php:138
-#: ../../operation/tree.php:170 ../../operation/tree.php:310
-#: ../../enterprise/dashboard/widgets/service_map.php:85
-#: ../../enterprise/dashboard/widgets/tree_view.php:56
-#: ../../enterprise/dashboard/widgets/tree_view.php:69
-#: ../../enterprise/dashboard/widgets/tree_view.php:222
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:87
-#: ../../enterprise/godmode/reporting/cluster_view.php:315
-#: ../../enterprise/godmode/reporting/cluster_view.php:392
-#: ../../enterprise/godmode/reporting/cluster_list.php:116
-#: ../../enterprise/godmode/reporting/cluster_list.php:230
-#: ../../enterprise/godmode/services/services.service.php:314
-#: ../../enterprise/include/functions_login.php:22
-#: ../../enterprise/include/functions_reporting.php:4167
-#: ../../enterprise/include/functions_reporting_pdf.php:755
-#: ../../enterprise/include/functions_reporting_pdf.php:2444
-#: ../../enterprise/include/functions_services.php:1356
-#: ../../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/tag_view.php:83
-#: ../../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:125
-#: ../../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:197
-#: ../../godmode/massive/massive_delete_agents.php:115
-#: ../../godmode/massive/massive_delete_modules.php:476
-#: ../../godmode/massive/massive_delete_modules.php:490
-#: ../../godmode/massive/massive_edit_agents.php:271
-#: ../../godmode/massive/massive_edit_modules.php:307
-#: ../../godmode/massive/massive_edit_modules.php:345
-#: ../../include/functions.php:879 ../../include/functions.php:1081
-#: ../../include/functions.php:1082 ../../include/functions.php:1084
-#: ../../include/functions.php:1120 ../../include/functions_ui.php:2057
-#: ../../include/functions_events.php:1475
-#: ../../include/functions_graph.php:2664
-#: ../../include/functions_graph.php:3783
-#: ../../include/functions_graph.php:3784
-#: ../../include/functions_graph.php:6085
-#: ../../include/functions_groups.php:833
-#: ../../include/functions_groups.php:835
-#: ../../include/functions_groups.php:837
-#: ../../include/functions_groups.php:838
-#: ../../include/functions_groups.php:839
-#: ../../include/functions_reporting_html.php:683
-#: ../../include/functions_reporting_html.php:1578
-#: ../../include/functions_reporting_html.php:2602
-#: ../../mobile/operation/agents.php:33 ../../mobile/operation/modules.php:41
-#: ../../operation/agentes/estado_agente.php:216
-#: ../../operation/agentes/estado_monitores.php:461
-#: ../../operation/agentes/group_view.php:168
-#: ../../operation/agentes/group_view.php:173
-#: ../../operation/agentes/status_monitor.php:299
-#: ../../operation/agentes/tactical.php:150
-#: ../../operation/gis_maps/render_view.php:149 ../../operation/tree.php:139
-#: ../../operation/tree.php:171 ../../operation/tree.php:305
-#: ../../enterprise/dashboard/widgets/service_map.php:84
-#: ../../enterprise/dashboard/widgets/tree_view.php:57
-#: ../../enterprise/dashboard/widgets/tree_view.php:70
-#: ../../enterprise/dashboard/widgets/tree_view.php:217
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:88
-#: ../../enterprise/godmode/reporting/cluster_view.php:310
-#: ../../enterprise/godmode/reporting/cluster_view.php:387
-#: ../../enterprise/godmode/reporting/cluster_list.php:117
-#: ../../enterprise/godmode/reporting/cluster_list.php:225
-#: ../../enterprise/godmode/services/services.elements.php:406
-#: ../../enterprise/godmode/services/services.service.php:310
-#: ../../enterprise/include/functions_reporting.php:2666
-#: ../../enterprise/include/functions_reporting.php:3435
-#: ../../enterprise/include/functions_reporting.php:4172
-#: ../../enterprise/include/functions_reporting_pdf.php:754
-#: ../../enterprise/include/functions_reporting_pdf.php:1585
-#: ../../enterprise/include/functions_reporting_pdf.php:2444
-#: ../../enterprise/include/functions_services.php:1353
-#: ../../enterprise/include/functions_services.php:1512
-#: ../../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/agentes/tag_view.php:84
-#: ../../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:124
-#: ../../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:200
-#: ../../godmode/massive/massive_delete_agents.php:118
-#: ../../godmode/massive/massive_delete_modules.php:479
-#: ../../godmode/massive/massive_delete_modules.php:493
-#: ../../godmode/massive/massive_edit_agents.php:274
-#: ../../godmode/massive/massive_edit_modules.php:310
-#: ../../godmode/massive/massive_edit_modules.php:348
-#: ../../include/functions_graph.php:2670
-#: ../../include/functions_groups.php:806
-#: ../../include/functions_groups.php:808
-#: ../../include/functions_groups.php:810
-#: ../../include/functions_groups.php:811
-#: ../../include/functions_groups.php:812
-#: ../../include/functions_reporting_html.php:1584
-#: ../../mobile/operation/modules.php:44
-#: ../../operation/agentes/estado_agente.php:219
-#: ../../operation/agentes/group_view.php:167
-#: ../../operation/agentes/status_monitor.php:302
-#: ../../operation/agentes/tactical.php:154 ../../operation/tree.php:141
-#: ../../operation/tree.php:173 ../../operation/tree.php:320
-#: ../../enterprise/dashboard/widgets/tree_view.php:59
-#: ../../enterprise/dashboard/widgets/tree_view.php:72
-#: ../../enterprise/dashboard/widgets/tree_view.php:232
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:91
-#: ../../enterprise/godmode/reporting/cluster_view.php:269
-#: ../../enterprise/godmode/reporting/cluster_view.php:330
-#: ../../enterprise/godmode/reporting/cluster_view.php:407
-#: ../../enterprise/godmode/reporting/cluster_list.php:119
-#: ../../enterprise/godmode/reporting/cluster_list.php:245
-#: ../../enterprise/include/functions_reporting_pdf.php:757
-#: ../../enterprise/meta/monitoring/group_view.php:147
-#: ../../enterprise/meta/monitoring/group_view.php:151
-#: ../../enterprise/meta/monitoring/tactical.php:282
-#: ../../enterprise/operation/agentes/tag_view.php:87
-#: ../../enterprise/operation/agentes/transactional_map.php:275
-msgid "Not init"
-msgstr "Not initialised"
-
-#: ../../godmode/massive/massive_copy_modules.php:141
-#: ../../enterprise/godmode/policies/policy_modules.php:1346
-msgid "Copy modules"
-msgstr "Copy modules"
-
-#: ../../godmode/massive/massive_copy_modules.php:146
-msgid "Copy alerts"
-msgstr "Copy alerts"
-
-#: ../../godmode/massive/massive_copy_modules.php:155
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:143
-msgid "No modules for this agent"
-msgstr "No modules for this agent"
-
-#: ../../godmode/massive/massive_copy_modules.php:164
-msgid "No alerts for this agent"
-msgstr "No alerts for this agent"
-
-#: ../../godmode/massive/massive_copy_modules.php:173
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152
-#: ../../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:194
-#: ../../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 "Targets"
-
-#: ../../godmode/massive/massive_copy_modules.php:222
-msgid "To agent(s)"
-msgstr "To agent(s)"
-
-#: ../../godmode/massive/massive_copy_modules.php:453
-#: ../../include/functions_agents.php:553
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:320
-msgid "No source agent to copy"
-msgstr "No source agent to copy"
-
-#: ../../godmode/massive/massive_copy_modules.php:461
-msgid "No operation selected"
-msgstr "No operation selected"
-
-#: ../../godmode/massive/massive_copy_modules.php:466
-#: ../../include/functions_agents.php:583
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:325
-msgid "No modules have been selected"
-msgstr "No modules have been selected"
-
-#: ../../godmode/massive/massive_copy_modules.php:471
-#: ../../include/functions_agents.php:558
-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"
-
-#: ../../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
-msgid ""
-"There was an error deleting the agent, the operation has been cancelled "
-"Could not delete agent %s"
-msgstr "Error deleting the agent %s: the operation has been cancelled"
-
-#: ../../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:278
-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:244
-msgid ""
-"There was an error deleting the modules, the operation has been cancelled"
-msgstr ""
-"Error deleting the selected modules: the operation has been cancelled."
-
-#: ../../godmode/massive/massive_delete_modules.php:412
-#: ../../godmode/massive/massive_edit_modules.php:249
-msgid "Selection mode"
-msgstr "Selection mode"
-
-#: ../../godmode/massive/massive_delete_modules.php:413
-#: ../../godmode/massive/massive_edit_modules.php:250
-msgid "Select modules first "
-msgstr "Select modules first "
-
-#: ../../godmode/massive/massive_delete_modules.php:415
-#: ../../godmode/massive/massive_edit_modules.php:252
-msgid "Select agents first "
-msgstr "Select agents first "
-
-#: ../../godmode/massive/massive_delete_modules.php:421
-#: ../../godmode/massive/massive_edit_modules.php:259
-#: ../../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:430
-#: ../../godmode/massive/massive_edit_modules.php:268
-msgid "Select all modules of this type"
-msgstr "Select all modules of the same type"
-
-#: ../../godmode/massive/massive_delete_modules.php:451
-#: ../../godmode/massive/massive_edit_modules.php:289
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:202
-msgid "Agent group"
-msgstr "Agent group"
-
-#: ../../godmode/massive/massive_delete_modules.php:459
-#: ../../godmode/massive/massive_edit_modules.php:297
-msgid "Select all modules of this group"
-msgstr "Select all modules from this group"
-
-#: ../../godmode/massive/massive_delete_modules.php:485
-#: ../../godmode/massive/massive_edit_modules.php:302
-msgid "Module Status"
-msgstr "Module Status"
-
-#: ../../godmode/massive/massive_delete_modules.php:504
-#: ../../godmode/massive/massive_edit_modules.php:327
-msgid "When select modules"
-msgstr "When selecting modules"
-
-#: ../../godmode/massive/massive_delete_modules.php:507
-#: ../../godmode/massive/massive_edit_modules.php:330
-msgid "Show common agents"
-msgstr "Show common agents"
-
-#: ../../godmode/massive/massive_delete_modules.php:508
-#: ../../godmode/massive/massive_edit_modules.php:331
-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:238
-msgid "Agents updated successfully"
-msgstr "Agents updated successfully"
-
-#: ../../godmode/massive/massive_edit_agents.php:239
-msgid "Agents cannot be updated (maybe there was no field to update)"
-msgstr "Agents cannot be updated (maybe there was no field to update)"
-
-#: ../../godmode/massive/massive_edit_agents.php:349
-#: ../../godmode/massive/massive_edit_agents.php:354
-#: ../../godmode/massive/massive_edit_agents.php:358
-#: ../../godmode/massive/massive_edit_agents.php:362
-#: ../../godmode/massive/massive_edit_agents.php:373
-#: ../../godmode/massive/massive_edit_agents.php:412
-#: ../../godmode/massive/massive_edit_agents.php:419
-#: ../../godmode/massive/massive_edit_agents.php:458
-#: ../../godmode/massive/massive_edit_agents.php:467
-#: ../../godmode/massive/massive_edit_agents.php:474
-#: ../../godmode/massive/massive_edit_modules.php:426
-#: ../../godmode/massive/massive_edit_modules.php:471
-#: ../../godmode/massive/massive_edit_modules.php:486
-#: ../../godmode/massive/massive_edit_modules.php:490
-#: ../../godmode/massive/massive_edit_modules.php:516
-#: ../../godmode/massive/massive_edit_modules.php:522
-#: ../../godmode/massive/massive_edit_modules.php:530
-#: ../../godmode/massive/massive_edit_modules.php:534
-#: ../../godmode/massive/massive_edit_modules.php:537
-#: ../../godmode/massive/massive_edit_modules.php:550
-#: ../../godmode/massive/massive_edit_modules.php:569
-#: ../../godmode/massive/massive_edit_modules.php:577
-#: ../../godmode/massive/massive_edit_modules.php:590
-#: ../../godmode/massive/massive_edit_modules.php:598
-#: ../../godmode/massive/massive_edit_modules.php:604
-#: ../../godmode/massive/massive_edit_modules.php:616
-#: ../../godmode/massive/massive_edit_modules.php:635
-#: ../../include/functions_html.php:637 ../../include/functions_html.php:715
-#: ../../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:427
-msgid "Delete available remote configurations"
-msgstr "Delete the available remote configurations"
-
-#: ../../godmode/massive/massive_edit_agents.php:459
-msgid "Without status"
-msgstr "Without status"
-
-#: ../../godmode/massive/massive_edit_agents.php:461
-#: ../../godmode/update_manager/update_manager.offline.php:73
-#: ../../include/functions_config.php:596
-#: ../../include/functions_config.php:1793
-#: ../../include/functions_update_manager.php:373
-#: ../../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:205
-#: ../../enterprise/load_enterprise.php:386
-#: ../../enterprise/load_enterprise.php:804
-#: ../../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:126
-#: ../../enterprise/operation/services/services.table_services.php:139
-msgid "Ok"
-msgstr "OK"
-
-#: ../../godmode/massive/massive_edit_agents.php:462
-#: ../../enterprise/dashboard/widgets/maps_status.php:77
-msgid "Bad"
-msgstr "Bad"
-
-#: ../../godmode/massive/massive_edit_modules.php:115
-msgid "Error updating the modules from a module type"
-msgstr "Error updating the modules from a module type"
-
-#: ../../godmode/massive/massive_edit_modules.php:137
-msgid "Error updating the modules from an agent group"
-msgstr "Error updating the modules from an agent group"
-
-#: ../../godmode/massive/massive_edit_modules.php:157
-msgid "Error updating the modules (maybe there was no field to update)"
-msgstr "Error updating the modules (maybe there was no field to update)"
-
-#: ../../godmode/massive/massive_edit_modules.php:340
-msgid "Agent Status"
-msgstr "Agent Status"
-
-#: ../../godmode/massive/massive_edit_modules.php:377
-#: ../../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:379
-msgid "Dynamic Min."
-msgstr "Dynamic Min."
-
-#: ../../godmode/massive/massive_edit_modules.php:382
-#: ../../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:385
-#: ../../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:501
-msgid "SMNP community"
-msgstr "SMNP community"
-
-#: ../../godmode/massive/massive_edit_modules.php:603
-msgid "Policy linking status"
-msgstr "Policy linking status"
-
-#: ../../godmode/massive/massive_edit_modules.php:603
-msgid "This field only has sense in modules adopted by a policy."
-msgstr "This field is only relevant in modules adopted by a policy."
-
-#: ../../godmode/massive/massive_edit_modules.php:604
-msgid "Linked"
-msgstr "Linked"
-
-#: ../../godmode/massive/massive_edit_modules.php:634
-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:650
-#: ../../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"
-
-#: ../../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: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:233
-#: ../../include/functions_events.php:1176
-#: ../../include/functions_events.php:1426
-#: ../../operation/users/user_edit.php:707
-#: ../../operation/users/user_edit.php:772
-#: ../../enterprise/dashboard/main_dashboard.php:380
-#: ../../enterprise/dashboard/main_dashboard.php:476
-#: ../../enterprise/include/functions_login.php:98
-#: ../../enterprise/meta/include/functions_ui_meta.php:779
-msgid "Error"
-msgstr "Error"
-
-#: ../../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:959
-msgid "There was a problem loading the module plugin macros data"
-msgstr "Error 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 ../../godmode/menu.php:111
-msgid "Bulk operations"
-msgstr "Bulk operations"
-
-#: ../../godmode/massive/massive_operations.php:223
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:203
-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 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 "Alerts without standby" - -#: ../../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: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 "Profile management" - -#: ../../godmode/menu.php:91 ../../godmode/users/profile_list.php:302 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -#: ../../enterprise/meta/advanced/synchronizing.user.php:578 -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: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:533 -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_graph.php:846 -#: ../../include/functions_graph.php:4622 -#: ../../include/functions_graph.php:5507 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reports.php:621 -#: ../../include/functions_reports.php:623 -#: ../../include/functions_reports.php:625 -#: ../../mobile/include/functions_web.php:24 -#: ../../mobile/operation/events.php:564 ../../mobile/operation/home.php:44 -#: ../../operation/events/events.php:446 ../../operation/events/events.php:455 -#: ../../operation/menu.php:305 -#: ../../enterprise/dashboard/widgets/events_list.php:26 -#: ../../enterprise/extensions/ipam/ipam_massive.php:76 -#: ../../enterprise/extensions/ipam/ipam_network.php:539 -#: ../../enterprise/godmode/reporting/cluster_view.php:443 -#: ../../enterprise/include/functions_reporting_pdf.php:799 -#: ../../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:249 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:106 -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:127 -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:642 -#: ../../include/functions_reports.php:644 -#: ../../include/functions_reports.php:646 -#: ../../include/functions_reports.php:648 -#: ../../include/functions_reports.php:650 -#: ../../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:1183 -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 "License" - -#: ../../godmode/menu.php:289 -msgid "Admin tools" -msgstr "Admin tools" - -#: ../../godmode/menu.php:297 -msgid "System audit log" -msgstr "System audit log" - -#: ../../godmode/menu.php:301 -msgid "Diagnostic info" -msgstr "Diagnostic info" - -#: ../../godmode/menu.php:303 -msgid "Site news" -msgstr "Site news" - -#: ../../godmode/menu.php:305 ../../godmode/setup/file_manager.php:30 -#: ../../enterprise/meta/advanced/metasetup.php:85 -#: ../../enterprise/meta/advanced/metasetup.php:136 -msgid "File manager" -msgstr "File manager" - -#: ../../godmode/menu.php:309 -msgid "DB Schema Check" -msgstr "DB Schema Check" - -#: ../../godmode/menu.php:312 -msgid "DB Interface" -msgstr "DB Interface" - -#: ../../godmode/menu.php:405 -msgid "Extension manager view" -msgstr "Extension manager view" - -#: ../../godmode/menu.php:409 -msgid "Extension manager" -msgstr "Extension manager" - -#: ../../godmode/menu.php:439 -msgid "Update manager" -msgstr "Update manager" - -#: ../../godmode/menu.php:445 -msgid "Update Manager offline" -msgstr "Update Manager offline" - -#: ../../godmode/menu.php:448 -msgid "Update Manager online" -msgstr "Update Manager online" - -#: ../../godmode/menu.php:450 -msgid "Update Manager options" -msgstr "Update Manager options" - -#: ../../godmode/menu.php:463 ../../operation/menu.php:410 -#: ../../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 "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 "Plugin 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 plugin 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 "Module added to profile successfully" - -#: ../../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:167 -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:1036 -#: ../../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:698 -#: ../../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:285 -#: ../../operation/events/events_list.php:318 -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 destination 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. " -"Leaving this field blank will show all ports. 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 this " -"field is left 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:1320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1567 -#: ../../enterprise/dashboard/widgets/top_n.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1666 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1855 -#: ../../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:1342 -#: ../../operation/netflow/nf_live_view.php:258 -msgid "Max. values" -msgstr "Max. values" - -#: ../../godmode/netflow/nf_item_list.php:151 -#: ../../operation/agentes/graphs.php:179 -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:1680 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095 -msgid "Create item" -msgstr "Create item" - -#: ../../godmode/reporting/create_container.php:190 -#: ../../godmode/reporting/graph_container.php:73 -#: ../../godmode/reporting/graph_container.php:75 -#: ../../enterprise/godmode/reporting/graph_template_list.php:70 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:98 -msgid "Graph container" -msgstr "Graph container" - -#: ../../godmode/reporting/create_container.php:193 -#: ../../godmode/reporting/graph_container.php:84 -msgid "Create container" -msgstr "Create container" - -#: ../../godmode/reporting/create_container.php:196 -msgid "Container stored successfully" -msgstr "Container stored successfully" - -#: ../../godmode/reporting/create_container.php:196 -msgid "There was a problem storing container" -msgstr "There was a problem storing the container" - -#: ../../godmode/reporting/create_container.php:200 -msgid "Update the container" -msgstr "Update the container" - -#: ../../godmode/reporting/create_container.php:200 -msgid "Bad update the container" -msgstr "Bad update the container" - -#: ../../godmode/reporting/create_container.php:259 -msgid "Parent container" -msgstr "Parent container" - -#: ../../godmode/reporting/create_container.php:262 -#: ../../godmode/reporting/create_container.php:265 -#: ../../include/ajax/graph.ajax.php:129 ../../include/functions_html.php:634 -#: ../../operation/events/events_list.php:1174 -#: ../../operation/events/events_list.php:1260 -#: ../../enterprise/godmode/setup/setup.php:257 -msgid "none" -msgstr "none" - -#: ../../godmode/reporting/create_container.php:292 -#: ../../include/functions.php:2050 -msgid "custom" -msgstr "custom" - -#: ../../godmode/reporting/create_container.php:293 -#: ../../godmode/setup/performance.php:105 -#: ../../include/ajax/graph.ajax.php:130 ../../include/ajax/module.php:139 -#: ../../include/functions.php:2057 ../../include/functions.php:2616 -#: ../../include/functions_netflow.php:1052 -#: ../../include/functions_netflow.php:1085 -#: ../../operation/gis_maps/render_view.php:142 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:63 -#: ../../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/reporting/create_container.php:294 -#: ../../godmode/reporting/create_container.php:295 -#: ../../godmode/reporting/create_container.php:296 -#: ../../include/ajax/graph.ajax.php:131 ../../include/ajax/graph.ajax.php:132 -#: ../../include/ajax/graph.ajax.php:133 ../../include/functions.php:2058 -#: ../../include/functions.php:2059 -#, php-format -msgid "%s hours" -msgstr "%s hours" - -#: ../../godmode/reporting/create_container.php:297 -#: ../../include/ajax/graph.ajax.php:134 ../../include/ajax/module.php:142 -#: ../../include/functions.php:2060 ../../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" - -#: ../../godmode/reporting/create_container.php:298 -#: ../../godmode/reporting/create_container.php:299 -#: ../../include/ajax/graph.ajax.php:135 ../../include/ajax/graph.ajax.php:136 -#, php-format -msgid "%s days" -msgstr "%s days" - -#: ../../godmode/reporting/create_container.php:300 -#: ../../include/ajax/graph.ajax.php:137 ../../include/ajax/module.php:143 -#: ../../include/functions.php:2061 ../../include/functions_netflow.php:1093 -msgid "1 week" -msgstr "1 week" - -#: ../../godmode/reporting/create_container.php:301 -#: ../../include/ajax/graph.ajax.php:138 ../../include/ajax/module.php:144 -#: ../../include/functions.php:2062 ../../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" - -#: ../../godmode/reporting/create_container.php:302 -#: ../../include/ajax/graph.ajax.php:139 ../../include/ajax/module.php:145 -#: ../../include/functions.php:2063 ../../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" - -#: ../../godmode/reporting/create_container.php:305 -#: ../../godmode/reporting/graph_builder.main.php:168 -#: ../../godmode/setup/setup_visuals.php:523 -#: ../../godmode/setup/setup_visuals.php:532 -#: ../../include/functions_visual_map_editor.php:439 -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:184 -#: ../../operation/agentes/graphs.php:333 -#: ../../operation/agentes/graphs.php:352 -#: ../../operation/reporting/graph_viewer.php:229 -#: ../../enterprise/dashboard/widgets/custom_graph.php:39 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../enterprise/meta/advanced/metasetup.visual.php:151 -msgid "Area" -msgstr "Area" - -#: ../../godmode/reporting/create_container.php:306 -#: ../../godmode/reporting/graph_builder.main.php:170 -#: ../../godmode/reporting/visual_console_builder.elements.php:203 -#: ../../godmode/setup/setup_visuals.php:526 -#: ../../godmode/setup/setup_visuals.php:535 -#: ../../include/functions_visual_map_editor.php:65 -#: ../../include/functions_visual_map_editor.php:438 -#: ../../include/functions_visual_map_editor.php:876 -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:184 -#: ../../operation/agentes/graphs.php:341 -#: ../../operation/agentes/graphs.php:356 -#: ../../operation/reporting/graph_viewer.php:231 -#: ../../enterprise/dashboard/widgets/custom_graph.php:41 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:210 -#: ../../enterprise/meta/advanced/metasetup.visual.php:154 -msgid "Line" -msgstr "Line" - -#: ../../godmode/reporting/create_container.php:311 -#: ../../godmode/reporting/create_container.php:416 -#: ../../godmode/reporting/create_container.php:471 -#: ../../godmode/reporting/reporting_builder.item_editor.php:744 -#: ../../godmode/reporting/reporting_builder.list_items.php:305 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:106 -msgid "Time lapse" -msgstr "Time lapse" - -#: ../../godmode/reporting/create_container.php:312 -#: ../../godmode/reporting/create_container.php:417 -#: ../../godmode/reporting/create_container.php:472 -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 "" -"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. " - -#: ../../godmode/reporting/create_container.php:353 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1850 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1885 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2046 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2074 -#: ../../enterprise/dashboard/widgets/top_n.php:179 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 -msgid "Select an Agent first" -msgstr "Select an Agent first" - -#: ../../godmode/reporting/create_container.php:362 -#: ../../godmode/reporting/create_container.php:518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1370 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:364 -msgid "Only average" -msgstr "Only average" - -#: ../../godmode/reporting/create_container.php:371 -#: ../../godmode/reporting/create_container.php:512 -#: ../../godmode/reporting/graph_builder.main.php:162 -#: ../../include/functions_visual_map_editor.php:436 -msgid "Type of graph" -msgstr "Type of graph" - -#: ../../godmode/reporting/create_container.php:380 -#: ../../godmode/reporting/create_container.php:437 -#: ../../godmode/reporting/create_container.php:524 -#: ../../godmode/reporting/graph_builder.main.php:198 -#: ../../operation/agentes/interface_traffic_graph_win.php:274 -#: ../../operation/agentes/stat_win.php:428 -msgid "Show full scale graph (TIP)" -msgstr "Show full scale graph (TIP)" - -#: ../../godmode/reporting/create_container.php:391 -#: ../../godmode/reporting/create_container.php:445 -#: ../../godmode/reporting/create_container.php:532 -msgid "Add item" -msgstr "Add item" - -#: ../../godmode/reporting/create_container.php:423 -#: ../../godmode/reporting/create_container.php:558 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1190 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.elements.php:385 -#: ../../include/functions_reporting.php:6408 -#: ../../include/functions_visual_map_editor.php:312 -#: ../../include/functions_visual_map_editor.php:322 -#: ../../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:1577 -msgid "Custom graph" -msgstr "Custom graph" - -#: ../../godmode/reporting/create_container.php:504 -#: ../../godmode/reporting/create_container.php:563 -#: ../../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:255 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:410 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:309 -msgid "Tag" -msgstr "Tag" - -#: ../../godmode/reporting/create_container.php:548 -msgid "There are no defined item container" -msgstr "There are no defined item containers" - -#: ../../godmode/reporting/create_container.php:557 -msgid "Agent/Module" -msgstr "Agent/Module" - -#: ../../godmode/reporting/create_container.php:560 -msgid "M.Group" -msgstr "M.Group" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:206 -#: ../../godmode/reporting/reporting_builder.item_editor.php:709 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:183 -#: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map.php:3939 -#: ../../include/functions_visual_map_editor.php:60 -#: ../../include/functions_visual_map_editor.php:169 -#: ../../include/functions_visual_map_editor.php:571 -#: ../../include/functions_visual_map_editor.php:871 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:38 -#: ../../enterprise/dashboard/widgets/module_icon.php:49 -#: ../../enterprise/dashboard/widgets/module_status.php:38 -#: ../../enterprise/dashboard/widgets/module_value.php:49 -#: ../../enterprise/dashboard/widgets/sla_percent.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1302 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:342 -msgid "Label" -msgstr "Label" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:207 -#: ../../godmode/reporting/graph_builder.graph_editor.php:322 -#: ../../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:209 -#: ../../godmode/reporting/graph_builder.graph_editor.php:290 -#: ../../godmode/reporting/reporting_builder.list_items.php:314 -#: ../../godmode/reporting/reporting_builder.list_items.php:520 -#: ../../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 -#: ../../enterprise/meta/include/functions_autoprovision.php:381 -#: ../../enterprise/meta/include/functions_autoprovision.php:538 -msgid "Sort" -msgstr "Sort" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 -#: ../../godmode/reporting/graph_builder.graph_editor.php:281 -#: ../../godmode/reporting/reporting_builder.list_items.php:506 -#: ../../godmode/reporting/reporting_builder.list_items.php:511 -msgid "Sort items" -msgstr "Sort items" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:283 -msgid "Sort selected items" -msgstr "Sort selected items" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:285 -msgid "before to" -msgstr "before to" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:285 -msgid "after to" -msgstr "after to" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:306 -#: ../../operation/events/events_list.php:296 -#: ../../enterprise/godmode/policies/policy_agents.php:368 -#: ../../enterprise/godmode/policies/policy_agents.php:385 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:155 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:94 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:342 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111 -#: ../../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:351 -#: ../../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.graph_editor.php:402 -#: ../../godmode/reporting/reporting_builder.list_items.php:605 -msgid "Please select any item to order" -msgstr "Please select any item to sort" - -#: ../../godmode/reporting/graph_builder.main.php:169 -#: ../../operation/reporting/graph_viewer.php:230 -#: ../../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:171 -#: ../../operation/reporting/graph_viewer.php:232 -#: ../../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:172 -#: ../../operation/reporting/graph_viewer.php:233 -#: ../../enterprise/dashboard/widgets/custom_graph.php:43 -msgid "Bullet chart" -msgstr "Bullet chart" - -#: ../../godmode/reporting/graph_builder.main.php:173 -#: ../../operation/reporting/graph_viewer.php:234 -#: ../../enterprise/dashboard/widgets/custom_graph.php:44 -msgid "Gauge" -msgstr "Gauge" - -#: ../../godmode/reporting/graph_builder.main.php:174 -msgid "Horizontal bars" -msgstr "Horizontal bars" - -#: ../../godmode/reporting/graph_builder.main.php:175 -msgid "Vertical bars" -msgstr "Vertical bars" - -#: ../../godmode/reporting/graph_builder.main.php:176 -#: ../../operation/reporting/graph_viewer.php:237 -#: ../../enterprise/dashboard/widgets/custom_graph.php:47 -msgid "Pie" -msgstr "Pie chart" - -#: ../../godmode/reporting/graph_builder.main.php:182 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1379 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1711 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:384 -msgid "Percentil" -msgstr "Percentile" - -#: ../../godmode/reporting/graph_builder.main.php:184 -#: ../../operation/reporting/graph_viewer.php:242 -msgid "Equalize maximum thresholds" -msgstr "Equalize maximum thresholds" - -#: ../../godmode/reporting/graph_builder.main.php:185 -#: ../../operation/reporting/graph_viewer.php:243 -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:188 -msgid "Add summatory series" -msgstr "Add summation series" - -#: ../../godmode/reporting/graph_builder.main.php:189 -msgid "" -"Adds synthetic series to the graph, using all module \n" -"\tvalues to calculate the summation and/or average in each time interval. \n" -"\tThis feature could be used instead of synthetic modules if you only want " -"to see a graph." -msgstr "" -"Adds synthetic series to the graph, using all module \n" -"\tvalues to calculate the summation and/or average in each time interval. \n" -"\tThis feature could be used instead of synthetic modules if you only want " -"to see a graph." - -#: ../../godmode/reporting/graph_builder.main.php:193 -msgid "Add average series" -msgstr "Add average series" - -#: ../../godmode/reporting/graph_builder.main.php:195 -msgid "Modules and series" -msgstr "Modules and series" - -#: ../../godmode/reporting/graph_builder.main.php:198 -#: ../../godmode/setup/setup_visuals.php:554 -#: ../../operation/agentes/interface_traffic_graph_win.php:276 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1707 -#: ../../enterprise/meta/advanced/metasetup.visual.php:137 -msgid "This option may cause performance issues" -msgstr "This option may cause performance issues" - -#: ../../godmode/reporting/graph_builder.php:233 -#: ../../godmode/reporting/graph_container.php:56 -#: ../../godmode/reporting/graphs.php:43 ../../godmode/reporting/graphs.php:53 -#: ../../operation/reporting/graph_viewer.php:148 -#: ../../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:236 -#: ../../godmode/reporting/reporting_builder.main.php:51 -#: ../../godmode/reporting/reporting_builder.php:2053 -#: ../../godmode/reporting/reporting_builder.php:2081 -#: ../../godmode/reporting/visual_console_builder.php:670 -#: ../../operation/reporting/graph_viewer.php:151 -#: ../../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:121 -#: ../../enterprise/meta/screens/screens.visualmap.php:146 -msgid "Main data" -msgstr "Main data" - -#: ../../godmode/reporting/graph_builder.php:239 -#: ../../operation/reporting/graph_viewer.php:154 -msgid "Graph editor" -msgstr "Graph editor" - -#: ../../godmode/reporting/graph_builder.php:242 -#: ../../operation/reporting/graph_viewer.php:160 -msgid "View graph" -msgstr "View graph" - -#: ../../godmode/reporting/graph_builder.php:254 -msgid "Graph builder" -msgstr "Graph builder" - -#: ../../godmode/reporting/graph_builder.php:274 -msgid "Graph stored successfully" -msgstr "Graph stored successfully" - -#: ../../godmode/reporting/graph_builder.php:274 -msgid "There was a problem storing Graph" -msgstr "There was a problem storing the graph" - -#: ../../godmode/reporting/graph_builder.php:277 -msgid "There was a problem adding Module" -msgstr "There was a problem adding the module" - -#: ../../godmode/reporting/graph_builder.php:280 -msgid "Update the graph" -msgstr "Update the graph" - -#: ../../godmode/reporting/graph_builder.php:280 -msgid "Bad update the graph" -msgstr "Error updating the graph" - -#: ../../godmode/reporting/graph_builder.php:283 -msgid "Graph deleted successfully" -msgstr "Graph deleted successfully" - -#: ../../godmode/reporting/graph_builder.php:283 -msgid "There was a problem deleting Graph" -msgstr "Error deleting the graph" - -#: ../../godmode/reporting/graphs.php:70 -msgid "Graphs containers" -msgstr "Graphs containers" - -#: ../../godmode/reporting/graphs.php:78 -#: ../../godmode/reporting/map_builder.php:43 -#: ../../godmode/reporting/reporting_builder.php:393 -#: ../../godmode/reporting/reporting_builder.php:398 -#: ../../godmode/reporting/reporting_builder.php:2020 -#: ../../godmode/reporting/reporting_builder.php:2025 -#: ../../godmode/reporting/reporting_builder.php:2091 -#: ../../godmode/reporting/reporting_builder.php:2096 -#: ../../godmode/reporting/visual_console_favorite.php:37 -#: ../../operation/menu.php:272 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../operation/reporting/graph_viewer.php:329 -#: ../../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:78 ../../operation/menu.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:295 -msgid "Custom graphs" -msgstr "Custom graphs" - -#: ../../godmode/reporting/graphs.php:155 -#: ../../include/functions_container.php:129 -#: ../../operation/reporting/graph_viewer.php:340 -#: ../../operation/search_graphs.php:33 -msgid "Graph name" -msgstr "Graph name" - -#: ../../godmode/reporting/graphs.php:157 -#: ../../include/functions_container.php:131 -msgid "Number of Graphs" -msgstr "Number of graphs" - -#: ../../godmode/reporting/graphs.php:220 -msgid "Create graph" -msgstr "Create graph" - -#: ../../godmode/reporting/map_builder.php:39 -#: ../../godmode/reporting/visual_console_favorite.php:37 -msgid "Visual Favourite Console" -msgstr "Favorite Visual Console" - -#: ../../godmode/reporting/map_builder.php:194 -#: ../../godmode/reporting/map_builder.php:204 -msgid "Not copied. Error copying data" -msgstr "Error copying data" - -#: ../../godmode/reporting/map_builder.php:244 -#: ../../godmode/reporting/visual_console_favorite.php:69 -msgid "Group Recursion" -msgstr "Group Recursion" - -#: ../../godmode/reporting/map_builder.php:258 -msgid "Map name" -msgstr "Map name" - -#: ../../godmode/reporting/map_builder.php:260 -#: ../../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:50 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:166 -#: ../../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:51 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:167 -#: ../../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:52 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:168 -#: ../../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:1323 -#: ../../enterprise/dashboard/widgets/top_n.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:172 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1669 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:250 -#: ../../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:1326 -#: ../../enterprise/dashboard/widgets/top_n.php:71 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1672 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:49 -msgid "Descending" -msgstr "Descending" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:628 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1255 -msgid "Item Editor" -msgstr "Item Editor" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:656 -msgid "Not valid" -msgstr "Not valid" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:661 -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 loading a lot of data. Therefore it is " -"recommended for scheduled reports, not real-time view." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:731 -msgid "Log number" -msgstr "Log number" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:732 -msgid "" -"Warning: this parameter limits the contents of the logs and affects the " -"performance." -msgstr "" -"Warning: this parameter limits the contents of the logs and affects the " -"performance." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:745 -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:759 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:150 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1328 -msgid "Last value" -msgstr "Last value" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:760 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3484 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:622 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1329 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3326 -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 always report the most " -"recent information." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:774 -#: ../../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:805 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1362 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 -msgid "Projection period" -msgstr "Projected period" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:815 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1376 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:473 -msgid "Data range" -msgstr "Data range" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:826 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1390 -#: ../../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:835 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399 -msgid "Working time" -msgstr "Work time" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1093 -msgid "Show modules" -msgstr "Show modules" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1183 -#: ../../include/functions_graph.php:856 ../../include/functions_graph.php:866 -#: ../../include/functions_graph.php:4631 -#: ../../include/functions_graph.php:5515 -#: ../../include/functions_graph.php:5518 -#: ../../include/functions_graph.php:5521 -#: ../../enterprise/operation/inventory/inventory.php:228 -msgid "Last" -msgstr "Last" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1231 -msgid "Target server" -msgstr "Target server" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1252 -#: ../../godmode/setup/news.php:181 ../../godmode/setup/setup_visuals.php:771 -#: ../../include/functions_reporting.php:4400 -#: ../../include/functions_reports.php:604 -#: ../../enterprise/dashboard/widgets/post.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1603 -#: ../../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:1259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1627 -msgid "Custom SQL template" -msgstr "Custom SQL template" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1264 -#: ../../include/functions_reports.php:593 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 -msgid "SQL query" -msgstr "SQL query" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1274 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1613 -msgid "Max items" -msgstr "Max items" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1475 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1477 -msgid "Select server" -msgstr "Select server" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:497 -msgid "Serialized header" -msgstr "Serialised header" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:497 -msgid "The separator character is |" -msgstr "The separation character is |" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1308 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:501 -msgid "Field separator" -msgstr "Field separator" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1308 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:501 -msgid "Separator for different fields in the serialized text chain" -msgstr "Separator for different fields in the serialized text chain" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:505 -msgid "Line separator" -msgstr "Line break" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:505 -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:1316 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:221 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1649 -msgid "Group by agent" -msgstr "Group by agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1329 -#: ../../enterprise/dashboard/widgets/top_n.php:73 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1675 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:254 -msgid "By agent name" -msgstr "By agent name" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1337 -#: ../../enterprise/dashboard/widgets/top_n.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:255 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1683 -msgid "Quantity (n)" -msgstr "Quantity (n)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1347 -#: ../../operation/agentes/ver_agente.php:1195 -#: ../../enterprise/dashboard/widgets/top_n.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1688 -msgid "Display" -msgstr "Display" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1354 -#: ../../include/functions_reporting.php:1044 -#: ../../include/functions_graph.php:857 ../../include/functions_graph.php:860 -#: ../../include/functions_graph.php:861 ../../include/functions_graph.php:862 -#: ../../include/functions_graph.php:867 ../../include/functions_graph.php:870 -#: ../../include/functions_graph.php:871 ../../include/functions_graph.php:872 -#: ../../include/functions_graph.php:878 ../../include/functions_graph.php:897 -#: ../../include/functions_graph.php:1603 -#: ../../include/functions_graph.php:4631 -#: ../../include/functions_graph.php:5515 -#: ../../include/functions_graph.php:5518 -#: ../../include/functions_graph.php:5521 -#: ../../include/functions_reporting_html.php:2705 -#: ../../enterprise/dashboard/widgets/top_n.php:482 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1695 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_pdf.php:910 -msgid "Avg" -msgstr "Avg." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1361 -#: ../../mobile/operation/module_graph.php:418 -#: ../../operation/agentes/stat_win.php:408 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:354 -msgid "Time compare (Overlapped)" -msgstr "Time comparison (overlapped)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1374 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1706 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:374 -msgid "Full resolution graph (TIP)" -msgstr "Full resolution graph (TIP)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1375 -msgid "This option may cause performance issues." -msgstr "This option may cause performance issues." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1392 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1721 -msgid "Condition" -msgstr "Condition" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1397 -#: ../../include/functions_reporting.php:1835 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1724 -msgid "Everything" -msgstr "Everything" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1398 -msgid "Greater or equal (>=)" -msgstr "Greater or equal to (>=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1399 -msgid "Less or equal (<=)" -msgstr "Less than or equal to (<=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1400 -msgid "Less (<)" -msgstr "Less than (<)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1401 -msgid "Greater (>)" -msgstr "Greater than (>)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1402 -msgid "Equal (=)" -msgstr "Equal to (=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1403 -msgid "Not equal (!=)" -msgstr "Not equal to (!=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1404 -#: ../../include/functions_db.php:1594 -#: ../../include/functions_reporting_html.php:499 -#: ../../include/functions_reporting_html.php:578 -#: ../../include/functions_reporting_html.php:678 -#: ../../include/functions_reporting_html.php:2052 -#: ../../include/functions_reporting_html.php:2597 -#: ../../enterprise/dashboard/widgets/maps_status.php:74 -#: ../../enterprise/extensions/backup/main.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:302 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1730 -#: ../../enterprise/include/functions_reporting.php:1668 -#: ../../enterprise/include/functions_reporting.php:2476 -#: ../../enterprise/include/functions_reporting.php:2661 -#: ../../enterprise/include/functions_reporting.php:3253 -#: ../../enterprise/include/functions_reporting.php:3430 -#: ../../enterprise/include/functions_reporting.php:4162 -#: ../../enterprise/include/functions_reporting.php:4858 -#: ../../enterprise/include/functions_reporting.php:5200 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../enterprise/include/functions_reporting_csv.php:1123 -#: ../../enterprise/include/functions_reporting_pdf.php:1403 -#: ../../enterprise/include/functions_reporting_pdf.php:1484 -#: ../../enterprise/include/functions_reporting_pdf.php:1583 -#: ../../enterprise/include/functions_reporting_pdf.php:1716 -#: ../../enterprise/include/functions_reporting_pdf.php:2137 -#: ../../enterprise/include/functions_reporting_pdf.php:2187 -#: ../../enterprise/include/functions_services.php:1789 -#: ../../enterprise/include/functions_ux_console.php:448 -#: ../../enterprise/operation/agentes/ux_console_view.php:201 -#: ../../enterprise/operation/agentes/ux_console_view.php:364 -#: ../../enterprise/operation/agentes/wux_console_view.php:331 -msgid "OK" -msgstr "OK" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1405 -#: ../../include/functions_reporting_html.php:2058 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1732 -#: ../../enterprise/include/functions_reporting_pdf.php:2190 -msgid "Not OK" -msgstr "Not OK" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1427 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1739 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:232 -msgid "Show graph" -msgstr "Show graph" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1435 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1746 -msgid "Show address instead module name." -msgstr "Show address instead of module name" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 -msgid "Show the main address of agent." -msgstr "Show the main address of the agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1448 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1759 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:264 -msgid "Show resume" -msgstr "Show summary" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1448 -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:1458 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1768 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:395 -msgid "Show Summary group" -msgstr "Show Summary group" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1491 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1802 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:425 -msgid "Event Status" -msgstr "Event Status" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1503 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1814 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:436 -msgid "Event graphs" -msgstr "Event graphs" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1507 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1818 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:440 -msgid "By agent" -msgstr "By agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1513 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1824 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:446 -msgid "By user validator" -msgstr "By user validation" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1519 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 -msgid "By criticity" -msgstr "By severity" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1525 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1836 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:458 -msgid "Validated vs unvalidated" -msgstr "Validated vs unvalidated" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872 -msgid "Query History Database" -msgstr "Query History Database" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1543 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1844 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:509 -msgid "Show in two columns" -msgstr "Show in two columns" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1548 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1850 -msgid "Height (dynamic graphs)" -msgstr "Height (dynamic graphs)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1555 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1655 -msgid "Show in the same row" -msgstr "Show in the same row" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1556 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1656 -msgid "Show one module per row with all its operations" -msgstr "Show one module per row with all its operations" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1567 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1855 -#: ../../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:1572 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1860 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:514 -msgid "Show in landscape" -msgstr "Show in landscape" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1583 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1881 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -msgid "Hide not init agents" -msgstr "Hide not initialized agents" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1613 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2017 -msgid "Calculate for custom intervals" -msgstr "Calculate for custom intervals" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1624 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2028 -msgid "Time lapse intervals" -msgstr "Time lapse intervals" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2029 -msgid "" -"Lapses of time in which the period is divided to make more precise " -"calculations\n" -msgstr "" -"Lapses of time in which the period is divided to make more precise " -"calculations\n" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1657 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2068 -msgid "Table only" -msgstr "Table only" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1660 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2071 -msgid "Graph only" -msgstr "Graph only" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1663 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2074 -msgid "Graph and table" -msgstr "Graph and table" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1714 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2134 -msgid "SLA Min. (value)" -msgstr "SLA Min. (value)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1715 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2135 -msgid "SLA Max. (value)" -msgstr "SLA Max. (value)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1716 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2136 -msgid "SLA Limit (%)" -msgstr "SLA Limit (%)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1725 -msgid "Please save the SLA for start to add items in this list." -msgstr "Please save the SLA before adding items to this list." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1897 -msgid "rate" -msgstr "rate" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1898 -#: ../../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:1899 -#: ../../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:1900 -#: ../../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:1920 -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 summation may return mistaken results." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1934 -msgid "Please save the report to start adding items into the list." -msgstr "Please save the report to start adding items to the list." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2294 -msgid "Please select Agent" -msgstr "Please select an 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:659 -#: ../../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:320 -#: ../../include/functions_custom_graphs.php:233 -msgid "No items." -msgstr "No items" - -#: ../../godmode/reporting/reporting_builder.list_items.php:513 -msgid "Sort selected items from position: " -msgstr "Sort selected items from position: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:515 -msgid "Move before to" -msgstr "Move before" - -#: ../../godmode/reporting/reporting_builder.list_items.php:515 -msgid "Move after to" -msgstr "Move after" - -#: ../../godmode/reporting/reporting_builder.list_items.php:537 -#: ../../godmode/reporting/reporting_builder.list_items.php:542 -msgid "Delete items" -msgstr "Delete items" - -#: ../../godmode/reporting/reporting_builder.list_items.php:544 -msgid "Delete selected items from position: " -msgstr "Delete selected items from position: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:546 -msgid "Delete above to" -msgstr "Delete everything above" - -#: ../../godmode/reporting/reporting_builder.list_items.php:546 -msgid "Delete below to" -msgstr "Delete everything below" - -#: ../../godmode/reporting/reporting_builder.list_items.php:584 -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 want to sort the items into the report?\\nThis action " -"changes the way items are sorted into the database." - -#: ../../godmode/reporting/reporting_builder.list_items.php:635 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "Are you sure you want to delete the items in the report?\\n" - -#: ../../godmode/reporting/reporting_builder.list_items.php:657 -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 "Write 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 to be visible to \"All\" groups, but you only " -"want your group or yourself to be able to edit it." - -#: ../../godmode/reporting/reporting_builder.main.php:110 -msgid "Non interactive report" -msgstr "Non-interactive Report" - -#: ../../godmode/reporting/reporting_builder.php:114 -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 is finished." - -#: ../../godmode/reporting/reporting_builder.php:115 -msgid "An error has ocurred" -msgstr "An error has ocurred." - -#: ../../godmode/reporting/reporting_builder.php:369 -#: ../../godmode/reporting/reporting_builder.php:1998 -#: ../../godmode/reporting/reporting_builder.php:2050 -msgid "Reports list" -msgstr "List of reports" - -#: ../../godmode/reporting/reporting_builder.php:380 -#: ../../godmode/reporting/reporting_builder.php:402 -#: ../../godmode/reporting/reporting_builder.php:2007 -#: ../../operation/menu.php:279 -#: ../../operation/reporting/custom_reporting.php:27 -msgid "Custom reporting" -msgstr "Custom reports" - -#: ../../godmode/reporting/reporting_builder.php:469 -msgid "Free text for search: " -msgstr "Free text for search: " - -#: ../../godmode/reporting/reporting_builder.php:470 -msgid "Search by report name or description, list matches." -msgstr "Search by report name or description, list matches." - -#: ../../godmode/reporting/reporting_builder.php:480 -msgid "Show Option" -msgstr "Show Option" - -#: ../../godmode/reporting/reporting_builder.php:566 -#: ../../operation/reporting/custom_reporting.php:38 -#: ../../operation/search_reports.php:38 -#: ../../enterprise/extensions/cron/functions.php:47 -#: ../../enterprise/extensions/cron/main.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:272 -#: ../../enterprise/include/functions_reporting_csv.php:1615 -#: ../../enterprise/include/functions_reporting_csv.php:1619 -msgid "Report name" -msgstr "Report name" - -#: ../../godmode/reporting/reporting_builder.php:568 -#: ../../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:569 -#: ../../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:588 -#: ../../enterprise/dashboard/main_dashboard.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:287 -msgid "Private" -msgstr "Private" - -#: ../../godmode/reporting/reporting_builder.php:648 -msgid "This report exceeds the item limit for realtime operations" -msgstr "This report exceeds the item limit for real-time operations" - -#: ../../godmode/reporting/reporting_builder.php:653 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:342 -msgid "HTML view" -msgstr "HTML view" - -#: ../../godmode/reporting/reporting_builder.php:654 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:344 -msgid "Export to XML" -msgstr "Export to XML" - -#: ../../godmode/reporting/reporting_builder.php:771 -#: ../../include/functions_reporting.php:1720 -#: ../../enterprise/operation/agentes/agent_inventory.php:242 -#: ../../enterprise/operation/inventory/inventory.php:259 -#: ../../enterprise/operation/log/log_viewer.php:436 -#: ../../enterprise/operation/log/log_viewer.php:444 -msgid "No data found." -msgstr "No data found" - -#: ../../godmode/reporting/reporting_builder.php:779 -msgid "Create report" -msgstr "Create report" - -#: ../../godmode/reporting/reporting_builder.php:2056 -#: ../../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:2059 -#: ../../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:6753 -#: ../../enterprise/include/functions_reporting.php:6803 -msgid "Item editor" -msgstr "Item editor" - -#: ../../godmode/reporting/reporting_builder.php:2068 -#: ../../operation/reporting/reporting_viewer.php:98 -msgid "View report" -msgstr "View report" - -#: ../../godmode/reporting/reporting_builder.php:2116 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1234 -msgid "Successfull action" -msgstr "Successful action" - -#: ../../godmode/reporting/reporting_builder.php:2116 -msgid "Unsuccessful action

" -msgstr "Unsuccessful 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 -#: ../../enterprise/meta/include/functions_autoprovision.php:470 -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:128 -#: ../../enterprise/godmode/agentes/collections.data.php:358 -msgid "Group:" -msgstr "Group:" - -#: ../../godmode/reporting/visual_console_builder.data.php:145 -#: ../../godmode/reporting/visual_console_builder.elements.php:111 -#: ../../include/functions_visual_map_editor.php:53 -#: ../../include/functions_visual_map_editor.php:473 -#: ../../enterprise/dashboard/widget.php:65 -msgid "Background" -msgstr "Background" - -#: ../../godmode/reporting/visual_console_builder.data.php:148 -msgid "Background image" -msgstr "Background image" - -#: ../../godmode/reporting/visual_console_builder.data.php:150 -#: ../../include/functions_visual_map_editor.php:283 -msgid "Background color" -msgstr "Background colour" - -#: ../../godmode/reporting/visual_console_builder.data.php:170 -msgid "Layout size" -msgstr "Layout size" - -#: ../../godmode/reporting/visual_console_builder.data.php:174 -msgid "Set custom size" -msgstr "Set custom size" - -#: ../../godmode/reporting/visual_console_builder.data.php:183 -msgid "Get default image size" -msgstr "Get default image size" - -#: ../../godmode/reporting/visual_console_builder.data.php:186 -msgid "Favourite visual console" -msgstr "Favourite visual console" - -#: ../../godmode/reporting/visual_console_builder.editor.php:134 -msgid "Min allowed size is 1024x768" -msgstr "Min allowed size is 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:373 -msgid "Action in progress" -msgstr "Action in progress" - -#: ../../godmode/reporting/visual_console_builder.editor.php:139 -#: ../../enterprise/dashboard/main_dashboard.php:374 -msgid "Loading in progress" -msgstr "Loading" - -#: ../../godmode/reporting/visual_console_builder.editor.php:144 -msgid "Saving in progress" -msgstr "Saving" - -#: ../../godmode/reporting/visual_console_builder.editor.php:149 -msgid "Deletion in progress" -msgstr "Deleting" - -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.wizard.php:118 -#: ../../include/functions_visual_map_editor.php:204 -#: ../../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:701 -msgid "Map linked" -msgstr "Map linked" - -#: ../../godmode/reporting/visual_console_builder.elements.php:86 -#: ../../mobile/operation/agents.php:347 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/policies/policy_agents.php:576 -#: ../../enterprise/godmode/policies/policy_agents.php:820 -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:864 -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:866 -#: ../../mobile/operation/events.php:506 -msgid "Module Graph" -msgstr "Module Graph" - -#: ../../godmode/reporting/visual_console_builder.elements.php:158 -#: ../../include/functions_visual_map.php:3914 -#: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:869 -msgid "Auto SLA Graph" -msgstr "Auto SLA Graph" - -#: ../../godmode/reporting/visual_console_builder.elements.php:163 -#: ../../include/functions_visual_map.php:3935 -#: ../../include/functions_visual_map_editor.php:870 -msgid "Simple Value" -msgstr "Simple Value" - -#: ../../godmode/reporting/visual_console_builder.elements.php:168 -msgid "Simple Value (Process Max)" -msgstr "Simple Value (Process Max)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:173 -msgid "Simple Value (Process Min)" -msgstr "Simple Value (Process Min)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:178 -msgid "Simple Value (Process Avg)" -msgstr "Simple Value (Process Avg)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -#: ../../include/functions_visual_map.php:3898 -#: ../../include/functions_visual_map_editor.php:64 -#: ../../include/functions_visual_map_editor.php:875 -msgid "Box" -msgstr "Box" - -#: ../../godmode/reporting/visual_console_builder.elements.php:231 -#: ../../godmode/reporting/visual_console_builder.elements.php:632 -msgid "Edit label" -msgstr "Edit label" - -#: ../../godmode/reporting/visual_console_builder.php:162 -msgid "This file isn't image" -msgstr "Invalid image file" - -#: ../../godmode/reporting/visual_console_builder.php:163 -msgid "This file isn't image." -msgstr "Invalid image file" - -#: ../../godmode/reporting/visual_console_builder.php:167 -#: ../../godmode/reporting/visual_console_builder.php:168 -msgid "File already are exists." -msgstr "File already exists" - -#: ../../godmode/reporting/visual_console_builder.php:174 -#: ../../godmode/reporting/visual_console_builder.php:175 -msgid "The file have not image extension." -msgstr "The file does not have an image extension." - -#: ../../godmode/reporting/visual_console_builder.php:186 -#: ../../godmode/reporting/visual_console_builder.php:187 -#: ../../godmode/reporting/visual_console_builder.php:194 -#: ../../godmode/reporting/visual_console_builder.php:197 -msgid "Problems with move file to target." -msgstr "Error moving file to target location" - -#: ../../godmode/reporting/visual_console_builder.php:222 -msgid "Successfully update." -msgstr "Updated successfully" - -#: ../../godmode/reporting/visual_console_builder.php:234 -msgid "Could not be update." -msgstr "Could not be updated" - -#: ../../godmode/reporting/visual_console_builder.php:248 -msgid "Successfully created." -msgstr "Created successfully" - -#: ../../godmode/reporting/visual_console_builder.php:261 -msgid "Could not be created." -msgstr "Could not be created" - -#: ../../godmode/reporting/visual_console_builder.php:302 -msgid "Successfully multiple delete." -msgstr "Multiple items deleted successfully" - -#: ../../godmode/reporting/visual_console_builder.php:303 -msgid "Unsuccessful multiple delete." -msgstr "Error deleting multiple items" - -#: ../../godmode/reporting/visual_console_builder.php:386 -msgid "Successfully delete." -msgstr "Deleted successfully" - -#: ../../godmode/reporting/visual_console_builder.php:664 -#: ../../operation/visual_console/pure_ajax.php:96 -#: ../../operation/visual_console/render_view.php:96 -#: ../../enterprise/meta/screens/screens.visualmap.php:136 -msgid "Visual consoles list" -msgstr "List of visual consoles" - -#: ../../godmode/reporting/visual_console_builder.php:667 -#: ../../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:128 -msgid "Show link to public Visual Console" -msgstr "Show link to public Visual Console" - -#: ../../godmode/reporting/visual_console_builder.php:673 -#: ../../operation/visual_console/pure_ajax.php:113 -#: ../../operation/visual_console/render_view.php:116 -#: ../../enterprise/meta/screens/screens.visualmap.php:117 -msgid "List elements" -msgstr "List of elements" - -#: ../../godmode/reporting/visual_console_builder.php:678 -#: ../../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:683 -#: ../../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:90 -#: ../../enterprise/include/functions_reporting.php:33 -#: ../../enterprise/include/functions_reporting.php:6723 -#: ../../enterprise/include/functions_reporting.php:6745 -#: ../../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:113 -msgid "Wizard" -msgstr "Wizard" - -#: ../../godmode/reporting/visual_console_builder.php:686 -#: ../../operation/visual_console/pure_ajax.php:126 -#: ../../operation/visual_console/render_view.php:129 -#: ../../enterprise/meta/screens/screens.visualmap.php:109 -msgid "Builder" -msgstr "Builder" - -#: ../../godmode/reporting/visual_console_builder.php:695 -#: ../../enterprise/meta/screens/screens.visualmap.php:148 -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:865 -msgid "Percentile Item" -msgstr "Percentile item" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:106 -#: ../../include/functions_visual_map.php:3902 -#: ../../include/functions_visual_map_editor.php:309 -#: ../../mobile/operation/home.php:98 -msgid "Module graph" -msgstr "Module graph" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:107 -#: ../../include/functions_visual_map_editor.php:58 -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:1420 -msgid "Font" -msgstr "Font" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -#: ../../godmode/setup/setup_visuals.php:365 -#: ../../include/functions_config.php:499 -msgid "Font size" -msgstr "Font size" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:196 -#: ../../include/functions_visual_map_editor.php:464 -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:465 -#: ../../include/functions_visual_map_editor.php:512 -msgid "Max value" -msgstr "Max value" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:198 -#: ../../include/functions_visual_map_editor.php:466 -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:548 -#: ../../include/functions_visual_map_editor.php:515 -#: ../../enterprise/meta/advanced/metasetup.visual.php:114 -#: ../../enterprise/meta/include/functions_meta.php:1122 -msgid "Percentile" -msgstr "Percentile" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:223 -#: ../../include/functions_visual_map_editor.php:515 -msgid "Bubble" -msgstr "Bubble" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:230 -#: ../../include/functions_visual_map_editor.php:528 -#: ../../include/functions_visual_map_editor.php:544 -msgid "Value to show" -msgstr "Value to show" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_visual_map_editor.php:516 -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 "Item 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 parent-child relations in Pandora FMS will be represented 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 want to add so many elements\\non the visual map?" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:377 -#: ../../mobile/operation/agent.php:338 ../../mobile/operation/agents.php:404 -#: ../../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:81 -#: ../../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/reporting/visual_console_favorite.php:102 -#: ../../include/ajax/visual_console_builder.ajax.php:280 -#: ../../enterprise/operation/agentes/wux_console_view.php:447 -msgid "No data to show" -msgstr "No data to show" - -#: ../../godmode/servers/manage_recontask.php:43 -#: ../../godmode/servers/manage_recontask_form.php:186 -#: ../../include/functions_menu.php:484 -msgid "Manage recontask" -msgstr "Manage recon task" - -#: ../../godmode/servers/manage_recontask.php:55 -msgid "Successfully deleted recon task" -msgstr "Recon task deleted successfully" - -#: ../../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 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 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 -#: ../../include/functions_ui.php:678 -#: ../../operation/servers/recon_view.php:98 -#: ../../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:148 -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:295 -#: ../../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 configured." - -#: ../../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:92 -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 will " -"not 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:73 -#: ../../enterprise/extensions/cron/main.php:336 -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 "" -"You can specify several networks, separated by commas, for example: " -"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 "Manual interval means that it will run only on demand." - -#: ../../godmode/servers/manage_recontask_form.php:262 -#: ../../include/functions_reporting_html.php:1605 -#: ../../enterprise/include/functions_reporting_pdf.php:779 -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 do not 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 issue or not." - -#: ../../godmode/servers/manage_recontask_form.php:323 -msgid "SNMP enabled" -msgstr "SNMP enabled" - -#: ../../godmode/servers/manage_recontask_form.php:327 -msgid "SNMP Default community" -msgstr "Default SNMP community" - -#: ../../godmode/servers/manage_recontask_form.php:328 -msgid "" -"You can specify several values, separated by commas, for example: " -"public,mysecret,1234" -msgstr "" -"You can specify several values, separated by commas, for example: " -"public,mysecret,1234" - -#: ../../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 "Vlan enabled" - -#: ../../godmode/servers/modificar_server.php:35 -msgid "Update Server" -msgstr "Update server" - -#: ../../godmode/servers/modificar_server.php:41 -#: ../../godmode/servers/plugin.php:300 ../../godmode/servers/plugin.php:759 -msgid "Standard" -msgstr "Standard" - -#: ../../godmode/servers/modificar_server.php:43 -#: ../../godmode/setup/license.php:88 ../../include/functions_ui.php:673 -#: ../../enterprise/meta/advanced/license_meta.php:103 -msgid "Satellite" -msgstr "Satellite" - -#: ../../godmode/servers/modificar_server.php:62 -msgid "Exec Server" -msgstr "Execute server" - -#: ../../godmode/servers/modificar_server.php:64 -msgid "Check Exec Server" -msgstr "Check execution of server" - -#: ../../godmode/servers/modificar_server.php:80 -msgid "Remote Configuration" -msgstr "Remote configuration" - -#: ../../godmode/servers/modificar_server.php:85 -msgid "Pandora servers" -msgstr "Pandora FMS servers" - -#: ../../godmode/servers/modificar_server.php:92 -#: ../../godmode/servers/modificar_server.php:104 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1234 -msgid "Unsuccessfull action" -msgstr "Unsuccessful action" - -#: ../../godmode/servers/modificar_server.php:95 -#: ../../godmode/servers/modificar_server.php:107 -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 -msgid "Successfully action" -msgstr "Action processed successfully" - -#: ../../godmode/servers/modificar_server.php:117 -#: ../../enterprise/meta/advanced/servers.php:39 -msgid "Server deleted successfully" -msgstr "Server deleted successfully" - -#: ../../godmode/servers/modificar_server.php:120 -#: ../../enterprise/meta/advanced/servers.php:42 -msgid "There was a problem deleting the server" -msgstr "Error deleting the server" - -#: ../../godmode/servers/modificar_server.php:132 -msgid "Server updated successfully" -msgstr "Server updated successfully" - -#: ../../godmode/servers/modificar_server.php:135 -msgid "There was a problem updating the server" -msgstr "Error updating the server" - -#: ../../godmode/servers/plugin.php:53 -msgid "Network Components" -msgstr "Network components" - -#: ../../godmode/servers/plugin.php:151 -#: ../../include/functions_filemanager.php:770 -#: ../../enterprise/godmode/agentes/collections.editor.php:105 -#: ../../enterprise/godmode/agentes/collections.editor.php:166 -msgid "Edit file" -msgstr "Edit file" - -#: ../../godmode/servers/plugin.php:170 -#: ../../enterprise/godmode/agentes/collections.editor.php:187 -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 "Plugin creation" - -#: ../../godmode/servers/plugin.php:269 -msgid "Plugin update" -msgstr "Plugin update" - -#: ../../godmode/servers/plugin.php:299 -msgid "Plugin type" -msgstr "Plugin type" - -#: ../../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 is lower than the plugin timeout of " -"the general configuration of the server." - -#: ../../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 plugin timeout will be used." - -#: ../../godmode/servers/plugin.php:362 -msgid "Plugin command" -msgstr "Plugin command" - -#: ../../godmode/servers/plugin.php:373 -msgid "Plug-in parameters" -msgstr "Plugin 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 will be displayed with dots, just like a password." - -#: ../../godmode/servers/plugin.php:473 -#: ../../godmode/servers/recon_script.php:183 -#: ../../include/functions_ui.php:1112 -#: ../../enterprise/godmode/modules/configure_local_component.php:452 -#: ../../enterprise/meta/general/login_page.php:78 -#: ../../enterprise/meta/include/process_reset_pass.php:48 -#: ../../enterprise/meta/include/reset_pass.php:48 -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 "Plugins registered on Pandora FMS" - -#: ../../godmode/servers/plugin.php:569 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "You will need to create your own Windows-compatible plugins." - -#: ../../godmode/servers/plugin.php:629 -msgid "Problem updating plugin" -msgstr "Error 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 "Error 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 "Error 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 the modules 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 "Error updating" - -#: ../../godmode/servers/recon_script.php:317 -msgid "Problem creating" -msgstr "Error creating" - -#: ../../godmode/servers/recon_script.php:331 -msgid "Problem deleting reconscript" -msgstr "Error deleting recon script" - -#: ../../godmode/servers/recon_script.php:334 -msgid "reconscript deleted successfully" -msgstr "Recon script 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" - -#: ../../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:148 -msgid "Manage recon tasks" -msgstr "Manage recon tasks" - -#: ../../godmode/servers/servers.build_table.php:155 -msgid "Reset module status and fired alert counts" -msgstr "Reset module status and triggered alert counts" - -#: ../../godmode/servers/servers.build_table.php:161 -msgid "Claim back SNMP modules" -msgstr "Reclaim SNMP modules" - -#: ../../godmode/servers/servers.build_table.php:181 -#: ../../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:202 -#: ../../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 want 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 "OpenStreetMaps" - -#: ../../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 Satellite" - -#: ../../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 image area" - -#: ../../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 "" -"Preview 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 "Select what changes when you click on the map" - -#: ../../godmode/setup/gis_step_2.php:296 -#: ../../operation/agentes/gis_view.php:199 -msgid "Latitude" -msgstr "Latitude" - -#: ../../godmode/setup/gis_step_2.php:300 -#: ../../operation/agentes/gis_view.php:198 -msgid "Longitude" -msgstr "Longitude" - -#: ../../godmode/setup/gis_step_2.php:304 -#: ../../operation/agentes/gis_view.php:200 -msgid "Altitude" -msgstr "Altitude" - -#: ../../godmode/setup/gis_step_2.php:353 -#: ../../godmode/setup/gis_step_2.php:446 -msgid "Center" -msgstr "Center" - -#: ../../godmode/setup/gis_step_2.php:413 -msgid "Refresh preview map" -msgstr "Refresh preview map" - -#: ../../godmode/setup/license.php:27 -msgid "License management" -msgstr "License management" - -#: ../../godmode/setup/license.php:37 -msgid "License updated" -msgstr "License 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 "License 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: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:469 -#: ../../operation/agentes/alerts_status.php:510 -#: ../../operation/agentes/alerts_status.php:544 -#: ../../operation/agentes/alerts_status.php:578 -#: ../../operation/agentes/alerts_status.php:623 -#: ../../operation/snmpconsole/snmp_view.php:853 -#: ../../operation/snmpconsole/snmp_view.php:1014 -#: ../../operation/snmpconsole/snmp_view.php:1042 -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -#: ../../enterprise/godmode/alerts/alert_events_list.php:676 -#: ../../enterprise/load_enterprise.php:494 -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 license" - -#: ../../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 License:" - -#: ../../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 email 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 license 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 "Error creating the link" - -#: ../../godmode/setup/links.php:56 -msgid "There was a problem modifying link" -msgstr "Error modifying the link" - -#: ../../godmode/setup/links.php:67 -msgid "There was a problem deleting link" -msgstr "Error deleting the link" - -#: ../../godmode/setup/links.php:86 ../../godmode/setup/news.php:130 -msgid "Name error" -msgstr "Name error" - -#: ../../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 are no links." - -#: ../../godmode/setup/news.php:28 -msgid "Site news management" -msgstr "Manage site news" - -#: ../../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:421 -#: ../../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 "Error creating OS" - -#: ../../godmode/setup/os.php:80 -msgid "Success creating OS" -msgstr "OS created successfully" - -#: ../../godmode/setup/os.php:100 -msgid "Success updatng OS" -msgstr "OS updated successfully" - -#: ../../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 "Deleted successfully" - -#: ../../godmode/setup/os.php:124 -msgid "Error deleting" -msgstr "Error deleting" - -#: ../../godmode/setup/os.php:133 -msgid "List OS" -msgstr "List of OS" - -#: ../../godmode/setup/os.php:137 -msgid "Builder OS" -msgstr "OS editor" - -#: ../../godmode/setup/performance.php:49 -#: ../../include/functions_config.php:401 -#: ../../enterprise/meta/advanced/metasetup.performance.php:78 -#: ../../enterprise/meta/include/functions_meta.php:1426 -msgid "Max. days before delete events" -msgstr "Max. days before events are deleted" - -#: ../../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:403 -msgid "Max. days before delete traps" -msgstr "Max. days before traps are deleted" - -#: ../../godmode/setup/performance.php:55 -#: ../../include/functions_config.php:407 -#: ../../enterprise/meta/advanced/metasetup.performance.php:85 -#: ../../enterprise/meta/include/functions_meta.php:1446 -msgid "Max. days before delete audit events" -msgstr "Max. days before audited events are deleted" - -#: ../../godmode/setup/performance.php:58 -#: ../../include/functions_config.php:405 -msgid "Max. days before delete string data" -msgstr "Max. days before string data is deleted" - -#: ../../godmode/setup/performance.php:61 -#: ../../include/functions_config.php:409 -msgid "Max. days before delete GIS data" -msgstr "Max. days before GIS data is deleted" - -#: ../../godmode/setup/performance.php:64 -#: ../../include/functions_config.php:411 -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 " -"is illogical." - -#: ../../godmode/setup/performance.php:67 -#: ../../include/functions_config.php:415 -msgid "Max. days before compact data" -msgstr "Max. days before data is compacted" - -#: ../../godmode/setup/performance.php:70 -#: ../../include/functions_config.php:413 -msgid "Max. days before delete unknown modules" -msgstr "Max. days before unknown modules are deleted" - -#: ../../godmode/setup/performance.php:73 -msgid "Max. days before delete autodisabled agents" -msgstr "Max. days before autodisabled agents are deleted" - -#: ../../godmode/setup/performance.php:76 -#: ../../include/functions_config.php:439 -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 represents the number of days that past special days will be " -"stored. 0 means they will never be removed." - -#: ../../godmode/setup/performance.php:79 -#: ../../include/functions_config.php:441 -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 "Number of macro fields in alerts and templates between 1 and 15" - -#: ../../godmode/setup/performance.php:83 -#: ../../include/functions_config.php:444 -msgid "Max. days before delete inventory data" -msgstr "Max. days before inventory data is deleted" - -#: ../../godmode/setup/performance.php:96 -msgid "Item limit for realtime reports" -msgstr "Item limit for real-time 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 excessively high values will cause a slowdown on the console and a " -"performance problem in the system." - -#: ../../godmode/setup/performance.php:100 -#: ../../include/functions_config.php:421 -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:106 ../../include/ajax/module.php:141 -#: ../../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 -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:423 -#: ../../enterprise/meta/advanced/metasetup.performance.php:88 -#: ../../enterprise/meta/include/functions_meta.php:1456 -msgid "Default hours for event view" -msgstr "Default hours for event view" - -#: ../../godmode/setup/performance.php:117 -#: ../../include/functions_config.php:425 -msgid "Use realtime statistics" -msgstr "Use real-time statistics" - -#: ../../godmode/setup/performance.php:121 -#: ../../include/functions_config.php:427 -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 real-time statistics are disabled, the refresh interval for statistics " -"will be set here." - -#: ../../godmode/setup/performance.php:124 -#: ../../include/functions_config.php:429 -#: ../../enterprise/meta/include/functions_meta.php:1466 -msgid "Use agent access graph" -msgstr "Use agent access graph" - -#: ../../godmode/setup/performance.php:128 -#: ../../include/functions_config.php:431 -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 " -"notification space." - -#: ../../godmode/setup/performance.php:131 -#: ../../include/functions_config.php:433 -msgid "Delete not init modules" -msgstr "Delete not initialized 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 higher value " -"means bigger blocks, which are faster but heavier on the database. Default " -"is 100." - -#: ../../godmode/setup/performance.php:138 -#: ../../include/functions_config.php:437 -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:141 -#: ../../include/functions_config.php:447 -msgid "Graph container - Max. Items" -msgstr "Graph container - Max. Items" - -#: ../../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 "" -"The number of graphs that are viewed in a container. Default is 10. " -"Increasing this number could lead to performance problems." - -#: ../../godmode/setup/performance.php:146 -msgid "Database maintenance options" -msgstr "Database maintenance options" - -#: ../../godmode/setup/performance.php:152 -#: ../../include/functions_visual_map.php:2818 -#: ../../include/functions_graph.php:3717 -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:351 -#: ../../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, if remote authentication (LDAP, etc.) fails." - -#: ../../godmode/setup/setup_auth.php:58 -#: ../../include/functions_config.php:308 -#: ../../enterprise/meta/include/functions_meta.php:622 -msgid "Autocreate remote users" -msgstr "Automatically create remote users" - -#: ../../godmode/setup/setup_auth.php:74 -#: ../../include/functions_config.php:335 -#: ../../enterprise/meta/include/functions_meta.php:796 -msgid "LDAP server" -msgstr "LDAP server" - -#: ../../godmode/setup/setup_auth.php:80 -#: ../../include/functions_config.php:337 -#: ../../enterprise/meta/include/functions_meta.php:806 -msgid "LDAP port" -msgstr "LDAP port" - -#: ../../godmode/setup/setup_auth.php:87 -#: ../../include/functions_config.php:339 -#: ../../enterprise/meta/include/functions_meta.php:816 -msgid "LDAP version" -msgstr "LDAP version" - -#: ../../godmode/setup/setup_auth.php:93 -#: ../../include/functions_config.php:323 -#: ../../include/functions_config.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:821 -#: ../../enterprise/meta/include/functions_meta.php:714 -#: ../../enterprise/meta/include/functions_meta.php:826 -msgid "Start TLS" -msgstr "Start TLS" - -#: ../../godmode/setup/setup_auth.php:100 -#: ../../include/functions_config.php:343 -#: ../../enterprise/meta/include/functions_meta.php:836 -msgid "Base DN" -msgstr "Base DN" - -#: ../../godmode/setup/setup_auth.php:106 -#: ../../include/functions_config.php:345 -#: ../../enterprise/meta/include/functions_meta.php:846 -msgid "Login attribute" -msgstr "Login attribute" - -#: ../../godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:347 -#: ../../enterprise/meta/include/functions_meta.php:856 -msgid "Admin LDAP login" -msgstr "Admin LDAP login" - -#: ../../godmode/setup/setup_auth.php:118 -#: ../../include/functions_config.php:349 -#: ../../enterprise/meta/include/functions_meta.php:866 -msgid "Admin LDAP password" -msgstr "Admin LDAP password" - -#: ../../godmode/setup/setup_auth.php:139 -#: ../../include/functions_config.php:389 -#: ../../operation/users/user_edit.php:337 -#: ../../enterprise/meta/include/functions_meta.php:672 -msgid "Double authentication" -msgstr "Double authentication" - -#: ../../godmode/setup/setup_auth.php:140 -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:152 -msgid "Session timeout (mins)" -msgstr "Session timeout (mins)" - -#: ../../godmode/setup/setup_auth.php:153 -#: ../../godmode/users/configure_user.php:652 -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:188 -msgid "Local Pandora FMS" -msgstr "Local Pandora FMS" - -#: ../../godmode/setup/setup_auth.php:188 -msgid "ldap" -msgstr "LDAP" - -#: ../../godmode/setup/setup_auth.php:194 -#: ../../include/functions_config.php:306 -#: ../../enterprise/meta/include/functions_meta.php:602 -msgid "Authentication method" -msgstr "Authentication method" - -#: ../../godmode/setup/setup_ehorus.php:54 -#: ../../include/functions_config.php:773 -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/main_dashboard.php:501 -#: ../../enterprise/include/functions_dashboard.php:931 -#: ../../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 "" -"The eHorus ID will possibly 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 configuration directory" - -#: ../../godmode/setup/setup_general.php:58 -msgid "Directory where agent remote configuration is stored." -msgstr "Directory in which the remote configuration of the agent 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:347 -msgid "Auto login (hash) password" -msgstr "Automatic 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:357 -msgid "Time source" -msgstr "Time source" - -#: ../../godmode/setup/setup_general.php:66 ../../include/functions.php:1042 -#: ../../include/functions_reporting.php:7057 -#: ../../include/functions_events.php:988 -#: ../../include/functions_events.php:1423 -#: ../../include/functions_graph.php:2736 -#: ../../include/functions_graph.php:3405 -#: ../../include/functions_graph.php:3833 -#: ../../include/functions_graph.php:3836 -#: ../../include/functions_reporting_html.php:881 -#: ../../include/functions_reporting_html.php:1704 -#: ../../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:367 -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 SSL certificate" - -#: ../../godmode/setup/setup_general.php:83 -msgid "Path of SSL Cert." -msgstr "Path of SSL Certificate" - -#: ../../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 insert your certificate and name of this certificate. " -"Remember that your certificate 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:377 -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:246 -#: ../../enterprise/meta/include/functions_meta.php:448 -msgid "IP list with API access" -msgstr "IP list with API access" - -#: ../../godmode/setup/setup_general.php:98 -#: ../../include/functions_config.php:150 -#: ../../enterprise/extensions/vmware/functions.php:473 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:183 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:318 -#: ../../enterprise/meta/advanced/metasetup.setup.php:242 -#: ../../enterprise/meta/include/functions_meta.php:427 -#: ../../enterprise/meta/include/functions_meta.php:437 -msgid "API password" -msgstr "API password" - -#: ../../godmode/setup/setup_general.php:99 -#: ../../enterprise/meta/advanced/metasetup.setup.php:243 -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 FMS 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 triggered alerts" - -#: ../../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:397 -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 Pandora FMS to be accessible via a public URL " -"(for example using Apache mod_proxy settings)" - -#: ../../godmode/setup/setup_general.php:163 -msgid "Without the index.php such as http://domain/pandora_url/" -msgstr "Without the index.php such as http://domain/pandora_url/" - -#: ../../godmode/setup/setup_general.php:166 -#: ../../include/functions_config.php:190 -msgid "Referer security" -msgstr "Referer security" - -#: ../../godmode/setup/setup_general.php:167 -msgid "" -"When it is set as \"yes\" in some important sections check if the user have " -"gone from url Pandora." -msgstr "" -"If enabled, it actively checks if the user comes from a Pandora FMS URL." - -#: ../../godmode/setup/setup_general.php:174 -#: ../../include/functions_config.php:192 -msgid "Event storm protection" -msgstr "Event Storm protection" - -#: ../../godmode/setup/setup_general.php:175 -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 -#: ../../include/functions_config.php:194 -#: ../../enterprise/meta/advanced/metasetup.setup.php:191 -#: ../../enterprise/meta/include/functions_meta.php:417 -msgid "Command Snapshot" -msgstr "Command line snapshot" - -#: ../../godmode/setup/setup_general.php:184 -#: ../../enterprise/meta/advanced/metasetup.setup.php:192 -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:188 -#: ../../include/functions_config.php:196 -msgid "Server logs directory" -msgstr "Server log directory" - -#: ../../godmode/setup/setup_general.php:188 -msgid "Directory where the server logs are stored." -msgstr "The directory where server logs are stored." - -#: ../../godmode/setup/setup_general.php:192 -#: ../../include/functions_config.php:198 -msgid "Log size limit in system logs viewer extension" -msgstr "Log size limit in system logs viewer extension" - -#: ../../godmode/setup/setup_general.php:192 -msgid "Max size (in bytes) for the logs to be shown." -msgstr "Max size (in bytes) for the logs to be shown." - -#: ../../godmode/setup/setup_general.php:197 -msgid "Full mode" -msgstr "Full assist mode" - -#: ../../godmode/setup/setup_general.php:198 -msgid "On demand" -msgstr "On demand" - -#: ../../godmode/setup/setup_general.php:199 -msgid "Expert" -msgstr "Expert" - -#: ../../godmode/setup/setup_general.php:201 -#: ../../include/functions_config.php:200 -msgid "Tutorial mode" -msgstr "Tutorial mode" - -#: ../../godmode/setup/setup_general.php:202 -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 "" -"Settings of the assistant. When 'Full mode' is enabled the icon in the " -"header and help texts will all be active and will automatically be " -"displayed. 'On demand' mode is the same as 'Full mode' but users will choose " -"when the helper is activated. In 'Expert' mode, the icons in the header and " -"help texts are all disabled." - -#: ../../godmode/setup/setup_general.php:208 -#: ../../include/functions_config.php:202 -msgid "Allow create planned downtimes in the past" -msgstr "Allows the creation of planned downtimes for past dates" - -#: ../../godmode/setup/setup_general.php:209 -msgid "The planned downtimes created in the past will affect the SLA reports" -msgstr "Planned downtimes created in the past will affect the SLA reports." - -#: ../../godmode/setup/setup_general.php:213 -msgid "Limit for bulk operations" -msgstr "Limit for bulk operations" - -#: ../../godmode/setup/setup_general.php:214 -msgid "" -"Your PHP environment is set to 1000 max_input_vars. This parameter should " -"have the same value or lower." -msgstr "" -"Your PHP environment is set to 1000 max_input_vars. This parameter should " -"have the same value or lower." - -#: ../../godmode/setup/setup_general.php:218 -msgid "Include agents manually disabled" -msgstr "Include manually disabled agents" - -#: ../../godmode/setup/setup_general.php:222 -msgid "audit log directory" -msgstr "audit log directory" - -#: ../../godmode/setup/setup_general.php:223 -msgid "Directory where audit log is stored." -msgstr "Directory where audit log is stored." - -#: ../../godmode/setup/setup_general.php:226 -msgid "Set alias as name by default in agent creation" -msgstr "Set alias as name by default in agent creation" - -#: ../../godmode/setup/setup_general.php:233 -msgid "General options" -msgstr "General settings" - -#: ../../godmode/setup/setup_general.php:292 -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:719 -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:721 -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:723 -msgid "Daemon binary path" -msgstr "Daemon binary path" - -#: ../../godmode/setup/setup_netflow.php:52 -#: ../../include/functions_config.php:725 -msgid "Nfdump binary path" -msgstr "Nfdump binary path" - -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:727 -msgid "Nfexpire binary path" -msgstr "Nfexpire binary path" - -#: ../../godmode/setup/setup_netflow.php:58 -#: ../../include/functions_config.php:729 -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:731 -#: ../../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:733 -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:735 -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:540 -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 the pages of the Visual Console" - -#: ../../godmode/setup/setup_visuals.php:80 -msgid "Paginated module view" -msgstr "Paginated module view" - -#: ../../godmode/setup/setup_visuals.php:85 -#: ../../include/functions_config.php:595 -#: ../../enterprise/meta/advanced/metasetup.visual.php:196 -#: ../../enterprise/meta/include/functions_meta.php:1402 -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:597 -#: ../../enterprise/meta/advanced/metasetup.visual.php:205 -#: ../../enterprise/meta/include/functions_meta.php:1407 -msgid "Display text proc modules have state is ok" -msgstr "Display text when proc modules are in OK status" - -#: ../../godmode/setup/setup_visuals.php:99 -#: ../../include/functions_config.php:599 -#: ../../enterprise/meta/advanced/metasetup.visual.php:208 -#: ../../enterprise/meta/include/functions_meta.php:1412 -msgid "Display text when proc modules have state critical" -msgstr "Display text when proc modules are in critical status" - -#: ../../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 "" -"If enabled, the lateral menus are shown by left clicking, not by hovering " -"over them." - -#: ../../godmode/setup/setup_visuals.php:117 -#: ../../include/functions_config.php:606 -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:122 -msgid "It must be bigger than 80" -msgstr "It must be higher than 80" - -#: ../../godmode/setup/setup_visuals.php:127 -#: ../../include/functions_config.php:617 -msgid "Classic menu mode" -msgstr "Classic menu mode" - -#: ../../godmode/setup/setup_visuals.php:128 -msgid "Text menu options always visible, don't hide" -msgstr "Text menu options always visible" - -#: ../../godmode/setup/setup_visuals.php:139 -msgid "Behaviour configuration" -msgstr "Behaviour configuration" - -#: ../../godmode/setup/setup_visuals.php:154 -#: ../../include/functions_config.php:487 -msgid "Style template" -msgstr "Style template" - -#: ../../godmode/setup/setup_visuals.php:159 -#: ../../include/functions_config.php:495 -msgid "Status icon set" -msgstr "Status icon set" - -#: ../../godmode/setup/setup_visuals.php:160 -msgid "Colors" -msgstr "Colours" - -#: ../../godmode/setup/setup_visuals.php:161 -msgid "Faces" -msgstr "Faces" - -#: ../../godmode/setup/setup_visuals.php:162 -msgid "Colors and text" -msgstr "Colours and text" - -#: ../../godmode/setup/setup_visuals.php:169 -#: ../../include/functions_config.php:514 -#: ../../enterprise/meta/advanced/metasetup.visual.php:229 -msgid "Login background" -msgstr "Login background" - -#: ../../godmode/setup/setup_visuals.php:170 -#: ../../enterprise/meta/advanced/metasetup.visual.php:230 -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:189 -#: ../../enterprise/meta/advanced/metasetup.visual.php:240 -msgid "Custom logo (header)" -msgstr "Custom logo (header)" - -#: ../../godmode/setup/setup_visuals.php:208 -#: ../../enterprise/meta/advanced/metasetup.visual.php:247 -msgid "Custom logo (login)" -msgstr "Custom logo (login)" - -#: ../../godmode/setup/setup_visuals.php:226 -#: ../../enterprise/meta/advanced/metasetup.visual.php:254 -msgid "Custom Splash (login)" -msgstr "Custom Splash (login)" - -#: ../../godmode/setup/setup_visuals.php:239 -#: ../../enterprise/meta/advanced/metasetup.visual.php:261 -msgid "Title 1 (login)" -msgstr "Title 1 (login)" - -#: ../../godmode/setup/setup_visuals.php:246 -#: ../../enterprise/meta/advanced/metasetup.visual.php:265 -msgid "Title 2 (login)" -msgstr "Title 2 (login)" - -#: ../../godmode/setup/setup_visuals.php:252 -#: ../../enterprise/meta/advanced/metasetup.visual.php:268 -#: ../../enterprise/meta/include/functions_meta.php:1295 -msgid "Docs URL (login)" -msgstr "Docs URL (login)" - -#: ../../godmode/setup/setup_visuals.php:258 -#: ../../enterprise/meta/advanced/metasetup.visual.php:271 -#: ../../enterprise/meta/include/functions_meta.php:1305 -msgid "Support URL (login)" -msgstr "Support URL (login)" - -#: ../../godmode/setup/setup_visuals.php:263 -msgid "Disable logo in graphs" -msgstr "Disable logo in graphs" - -#: ../../godmode/setup/setup_visuals.php:277 -#: ../../include/functions_config.php:573 -msgid "Fixed header" -msgstr "Fixed header" - -#: ../../godmode/setup/setup_visuals.php:285 -#: ../../include/functions_config.php:575 -msgid "Fixed menu" -msgstr "Fixed menu" - -#: ../../godmode/setup/setup_visuals.php:294 -#: ../../include/functions_config.php:567 -msgid "Autohidden menu" -msgstr "Automatically hide menu" - -#: ../../godmode/setup/setup_visuals.php:298 -#: ../../enterprise/meta/advanced/metasetup.visual.php:317 -#: ../../enterprise/meta/include/functions_meta.php:1205 -msgid "Visual effects and animation" -msgstr "Visual effects and animation" - -#: ../../godmode/setup/setup_visuals.php:306 -msgid "Style configuration" -msgstr "Style configuration" - -#: ../../godmode/setup/setup_visuals.php:321 -#: ../../include/functions_config.php:561 -msgid "GIS Labels" -msgstr "GIS Labels" - -#: ../../godmode/setup/setup_visuals.php:322 -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:333 -#: ../../include/functions_config.php:565 -msgid "Default icon in GIS" -msgstr "Default icon in GIS" - -#: ../../godmode/setup/setup_visuals.php:334 -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:336 -msgid "Agent icon group" -msgstr "Agent icon group" - -#: ../../godmode/setup/setup_visuals.php:343 -msgid "GIS configuration" -msgstr "GIS configuration" - -#: ../../godmode/setup/setup_visuals.php:358 -#: ../../include/functions_config.php:497 -#: ../../enterprise/meta/advanced/metasetup.visual.php:274 -#: ../../enterprise/meta/include/functions_meta.php:1360 -msgid "Font path" -msgstr "Font path" - -#: ../../godmode/setup/setup_visuals.php:388 -#: ../../include/functions_config.php:549 -#: ../../include/functions_config.php:551 -msgid "Agent size text" -msgstr "Agent text size" - -#: ../../godmode/setup/setup_visuals.php:389 -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, you need to truncate it into N " -"characters in some sections in the Pandora FMS Console." - -#: ../../godmode/setup/setup_visuals.php:390 -#: ../../godmode/setup/setup_visuals.php:398 -msgid "Small:" -msgstr "Small:" - -#: ../../godmode/setup/setup_visuals.php:392 -#: ../../godmode/setup/setup_visuals.php:400 -msgid "Normal:" -msgstr "Normal:" - -#: ../../godmode/setup/setup_visuals.php:396 -#: ../../include/functions_config.php:553 -msgid "Module size text" -msgstr "Module text size" - -#: ../../godmode/setup/setup_visuals.php:397 -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, you need to truncate it into N " -"characters in some sections of the Pandora FMS Console." - -#: ../../godmode/setup/setup_visuals.php:404 -#: ../../include/functions_config.php:555 -#: ../../include/functions_config.php:557 -msgid "Description size text" -msgstr "Description text size" - -#: ../../godmode/setup/setup_visuals.php:404 -msgid "" -"When the description name have a lot of characters, in some places in " -"Pandora Console it is necesary truncate to N characters." -msgstr "" -"When the description name has a lot of characters, you need to truncate it " -"into N characters in some sections of the Pandora FMS Console." - -#: ../../godmode/setup/setup_visuals.php:408 -#: ../../include/functions_config.php:559 -msgid "Item title size text" -msgstr "Item title text size" - -#: ../../godmode/setup/setup_visuals.php:409 -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 name has a lot of characters, you need to truncate it into N " -"characters in some sections of the Pandora FMS Console." - -#: ../../godmode/setup/setup_visuals.php:414 -msgid "Show unit along with value in reports" -msgstr "Show unit along with value in reports" - -#: ../../godmode/setup/setup_visuals.php:415 -msgid "This enabling this, max, min and avg values will be shown with units." -msgstr "" -"When enabled, maximum, minimum and average values are displayed with units." - -#: ../../godmode/setup/setup_visuals.php:423 -msgid "Font and Text configuration" -msgstr "Font and text settings" - -#: ../../godmode/setup/setup_visuals.php:438 -#: ../../include/functions_config.php:458 -#: ../../enterprise/meta/advanced/metasetup.visual.php:99 -#: ../../enterprise/meta/include/functions_meta.php:1092 -msgid "Graph color (min)" -msgstr "Graph colour (min)" - -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../include/functions_config.php:460 -#: ../../enterprise/meta/advanced/metasetup.visual.php:102 -#: ../../enterprise/meta/include/functions_meta.php:1102 -msgid "Graph color (avg)" -msgstr "Graph colour (avg)" - -#: ../../godmode/setup/setup_visuals.php:446 -#: ../../include/functions_config.php:462 -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../enterprise/meta/include/functions_meta.php:1112 -msgid "Graph color (max)" -msgstr "Graph colour (max)" - -#: ../../godmode/setup/setup_visuals.php:450 -#: ../../include/functions_config.php:464 -msgid "Graph color #4" -msgstr "Graph colour #4" - -#: ../../godmode/setup/setup_visuals.php:454 -#: ../../include/functions_config.php:466 -msgid "Graph color #5" -msgstr "Graph colour #5" - -#: ../../godmode/setup/setup_visuals.php:458 -#: ../../include/functions_config.php:468 -msgid "Graph color #6" -msgstr "Graph colour #6" - -#: ../../godmode/setup/setup_visuals.php:462 -#: ../../include/functions_config.php:470 -msgid "Graph color #7" -msgstr "Graph colour #7" - -#: ../../godmode/setup/setup_visuals.php:466 -#: ../../include/functions_config.php:472 -msgid "Graph color #8" -msgstr "Graph colour #8" - -#: ../../godmode/setup/setup_visuals.php:470 -#: ../../include/functions_config.php:474 -msgid "Graph color #9" -msgstr "Graph colour #9" - -#: ../../godmode/setup/setup_visuals.php:474 -#: ../../include/functions_config.php:476 -msgid "Graph color #10" -msgstr "Graph colour #10" - -#: ../../godmode/setup/setup_visuals.php:478 -msgid "Graph resolution (1-low, 5-high)" -msgstr "Graph resolution (1 = low / 5 = high)" - -#: ../../godmode/setup/setup_visuals.php:482 -#: ../../include/functions_config.php:480 -#: ../../enterprise/meta/advanced/metasetup.visual.php:118 -#: ../../enterprise/meta/include/functions_meta.php:1152 -msgid "Value to interface graphics" -msgstr "Value to interface graphics" - -#: ../../godmode/setup/setup_visuals.php:491 -msgid "Data precision in PandoraFMS" -msgstr "Data precision in Pandora FMS" - -#: ../../godmode/setup/setup_visuals.php:492 -msgid "" -"Number of decimals shown. It must be a number between 0 and 5, except in " -"graphs." -msgstr "" -"Number of decimals shown. It must be a number between 0 and 5, except in " -"graphs." - -#: ../../godmode/setup/setup_visuals.php:498 -msgid "Data precision in graphs" -msgstr "Data precision in graphs" - -#: ../../godmode/setup/setup_visuals.php:499 -msgid "" -"Number of decimals shown. If the field is empty, it will show all the " -"decimals" -msgstr "" -"Number of decimals shown. If the field is empty, it will display all the " -"decimals." - -#: ../../godmode/setup/setup_visuals.php:503 -#: ../../include/functions_config.php:587 -msgid "Default line thickness for the Custom Graph." -msgstr "Default line width for the Custom Graph" - -#: ../../godmode/setup/setup_visuals.php:508 -#: ../../include/functions_config.php:491 -#: ../../enterprise/meta/advanced/metasetup.visual.php:124 -#: ../../enterprise/meta/include/functions_meta.php:1175 -msgid "Use round corners" -msgstr "Use round corners" - -#: ../../godmode/setup/setup_visuals.php:513 -#: ../../godmode/users/configure_user.php:578 -#: ../../include/functions_config.php:501 -#: ../../operation/users/user_edit.php:253 -#: ../../enterprise/meta/advanced/metasetup.visual.php:128 -#: ../../enterprise/meta/include/functions_meta.php:1185 -#: ../../enterprise/meta/include/functions_meta.php:1195 -msgid "Interactive charts" -msgstr "Interactive charts" - -#: ../../godmode/setup/setup_visuals.php:514 -#: ../../godmode/users/configure_user.php:578 -#: ../../operation/users/user_edit.php:253 -#: ../../enterprise/meta/advanced/metasetup.visual.php:128 -msgid "Whether to use Javascript or static PNG graphs" -msgstr "Javascript or static PNG graphs" - -#: ../../godmode/setup/setup_visuals.php:522 -#: ../../enterprise/meta/advanced/metasetup.visual.php:150 -msgid "Type of module charts" -msgstr "Type of module charts" - -#: ../../godmode/setup/setup_visuals.php:531 -msgid "Type of interface charts" -msgstr "Type of interface charts" - -#: ../../godmode/setup/setup_visuals.php:540 -msgid "Show only average" -msgstr "Show only average" - -#: ../../godmode/setup/setup_visuals.php:541 -msgid "Hide Max and Min values in graphs" -msgstr "Hide Max and Min values in graphs" - -#: ../../godmode/setup/setup_visuals.php:549 -#: ../../enterprise/meta/advanced/metasetup.visual.php:115 -msgid "Show percentile 95 in graphs" -msgstr "Show percentile 95 in graphs" - -#: ../../godmode/setup/setup_visuals.php:553 -msgid "Graph TIP view:" -msgstr "Graph TIP view:" - -#: ../../godmode/setup/setup_visuals.php:559 -#: ../../enterprise/meta/advanced/metasetup.visual.php:135 -msgid "On Boolean graphs" -msgstr "On Boolean graphs" - -#: ../../godmode/setup/setup_visuals.php:574 -msgid "Charts configuration" -msgstr "Chart settings" - -#: ../../godmode/setup/setup_visuals.php:591 -msgid "Type of view of visual consoles" -msgstr "Type of view of visual consoles" - -#: ../../godmode/setup/setup_visuals.php:592 -msgid "Allows you to directly display the list of favorite visual consoles" -msgstr "Allows you to directly display the list of favorite visual consoles" - -#: ../../godmode/setup/setup_visuals.php:596 -msgid "Number of favorite visual consoles to show in the menu" -msgstr "Number of favourite visual consoles to show in the menu" - -#: ../../godmode/setup/setup_visuals.php:597 -msgid "" -"If the number is 0 it will not show the pull-down menu and maximum 25 " -"favorite consoles" -msgstr "" -"If the number is 0 it will not show the drop-down menu and maximum 25 " -"favourite consoles" - -#: ../../godmode/setup/setup_visuals.php:603 -#: ../../include/functions_config.php:546 -msgid "Default line thickness for the Visual Console" -msgstr "Default line width for the Visual Console" - -#: ../../godmode/setup/setup_visuals.php:604 -msgid "" -"This interval will affect to the lines between elements on the Visual Console" -msgstr "" -"This interval will affect the lines between elements on the Visual Console" - -#: ../../godmode/setup/setup_visuals.php:609 -msgid "Visual consoles configuration" -msgstr "Visual consoles configuration" - -#: ../../godmode/setup/setup_visuals.php:625 -#: ../../enterprise/meta/advanced/metasetup.visual.php:280 -msgid "Show report info with description" -msgstr "Show report info with description" - -#: ../../godmode/setup/setup_visuals.php:627 -#: ../../enterprise/meta/advanced/metasetup.visual.php:280 -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:635 -#: ../../enterprise/meta/advanced/metasetup.visual.php:286 -msgid "Custom report front page" -msgstr "Front page for custom reports" - -#: ../../godmode/setup/setup_visuals.php:637 -#: ../../enterprise/meta/advanced/metasetup.visual.php:286 -msgid "" -"Custom report front page. It will be applied to all reports and templates by " -"default." -msgstr "" -"Custom report front page. It will be applied to all reports and templates by " -"default." - -#: ../../godmode/setup/setup_visuals.php:659 -#: ../../godmode/setup/setup_visuals.php:665 -#: ../../godmode/setup/setup_visuals.php:678 -#: ../../godmode/setup/setup_visuals.php:686 -#: ../../godmode/setup/setup_visuals.php:691 -#: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:696 -#: ../../include/functions_config.php:699 -#: ../../include/functions_config.php:702 -#: ../../include/functions_config.php:705 -#: ../../include/functions_config.php:708 -#: ../../include/functions_config.php:711 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/meta/advanced/metasetup.visual.php:292 -#: ../../enterprise/meta/advanced/metasetup.visual.php:296 -#: ../../enterprise/meta/advanced/metasetup.visual.php:302 -#: ../../enterprise/meta/advanced/metasetup.visual.php:306 -#: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../enterprise/meta/include/functions_meta.php:1366 -#: ../../enterprise/meta/include/functions_meta.php:1377 -#: ../../enterprise/meta/include/functions_meta.php:1382 -#: ../../enterprise/meta/include/functions_meta.php:1387 -#: ../../enterprise/meta/include/functions_meta.php:1392 -#: ../../enterprise/meta/include/functions_meta.php:1397 -msgid "Custom report front" -msgstr "Front side custom report" - -#: ../../godmode/setup/setup_visuals.php:659 -#: ../../include/functions_config.php:699 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/meta/include/functions_meta.php:1377 -msgid "Font family" -msgstr "Font family" - -#: ../../godmode/setup/setup_visuals.php:666 -#: ../../include/functions_config.php:504 -#: ../../include/functions_config.php:702 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:119 -#: ../../enterprise/meta/advanced/metasetup.visual.php:292 -#: ../../enterprise/meta/include/functions_meta.php:1245 -#: ../../enterprise/meta/include/functions_meta.php:1382 -msgid "Custom logo" -msgstr "Custom logo" - -#: ../../godmode/setup/setup_visuals.php:668 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:87 -msgid "" -"The dir of custom logos is in your www Pandora Console in " -"\"images/custom_logo\". You can upload more files (ONLY JPEG AND PNG) in " -"upload tool in console." -msgstr "" -"The directory of custom logos is in your www Pandora FMS Console in " -"\"images/custom_logo\". You can upload more files (ONLY JPEG AND PNG) in the " -"upload tool of the console." - -#: ../../godmode/setup/setup_visuals.php:686 -#: ../../include/functions_config.php:705 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 -#: ../../enterprise/meta/advanced/metasetup.visual.php:302 -#: ../../enterprise/meta/include/functions_meta.php:1387 -msgid "Header" -msgstr "Header" - -#: ../../godmode/setup/setup_visuals.php:691 -#: ../../include/functions_config.php:708 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:306 -#: ../../enterprise/meta/include/functions_meta.php:1392 -msgid "First page" -msgstr "First page" - -#: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:711 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../enterprise/meta/include/functions_meta.php:1397 -msgid "Footer" -msgstr "Footer" - -#: ../../godmode/setup/setup_visuals.php:706 -msgid "Show QR Code icon in the header" -msgstr "Display the QR Code icon on the header" - -#: ../../godmode/setup/setup_visuals.php:717 -#: ../../include/functions_config.php:579 -msgid "Custom graphviz directory" -msgstr "Custom graphviz directory" - -#: ../../godmode/setup/setup_visuals.php:718 -msgid "Custom directory where the graphviz binaries are stored." -msgstr "Custom directory in which graphviz binaries are stored." - -#: ../../godmode/setup/setup_visuals.php:724 -#: ../../include/functions_config.php:581 -msgid "Networkmap max width" -msgstr "Networkmap max width" - -#: ../../godmode/setup/setup_visuals.php:731 -#: ../../enterprise/meta/advanced/metasetup.visual.php:185 -#: ../../enterprise/meta/include/functions_meta.php:1235 -msgid "Show only the group name" -msgstr "Show only the name of the group" - -#: ../../godmode/setup/setup_visuals.php:733 -#: ../../include/functions_config.php:585 -#: ../../enterprise/meta/advanced/metasetup.visual.php:187 -msgid "Show the group name instead the group icon." -msgstr "Show group name instead of group icon" - -#: ../../godmode/setup/setup_visuals.php:743 -#: ../../include/functions_config.php:454 -#: ../../enterprise/meta/advanced/metasetup.visual.php:81 -#: ../../enterprise/meta/include/functions_meta.php:1072 -msgid "Date format string" -msgstr "Date format string" - -#: ../../godmode/setup/setup_visuals.php:744 -#: ../../enterprise/meta/advanced/metasetup.visual.php:82 -msgid "Example" -msgstr "Example" - -#: ../../godmode/setup/setup_visuals.php:756 -#: ../../include/functions_config.php:456 -#: ../../enterprise/meta/advanced/metasetup.visual.php:93 -#: ../../enterprise/meta/include/functions_meta.php:1082 -msgid "Timestamp or time comparation" -msgstr "Timestamp or time comparison" - -#: ../../godmode/setup/setup_visuals.php:757 -#: ../../enterprise/meta/advanced/metasetup.visual.php:94 -msgid "Comparation in rollover" -msgstr "Rollover comparison" - -#: ../../godmode/setup/setup_visuals.php:759 -#: ../../enterprise/meta/advanced/metasetup.visual.php:96 -msgid "Timestamp in rollover" -msgstr "Timestamp in rollover" - -#: ../../godmode/setup/setup_visuals.php:767 -msgid "Custom values post process" -msgstr "Custom value post processing" - -#: ../../godmode/setup/setup_visuals.php:781 -msgid "Delete custom values" -msgstr "Delete custom values" - -#: ../../godmode/setup/setup_visuals.php:801 -msgid "Interval values" -msgstr "Interval values" - -#: ../../godmode/setup/setup_visuals.php:804 ../../include/functions.php:434 -#: ../../include/functions.php:568 ../../include/functions_html.php:832 -#: ../../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:163 -msgid "minutes" -msgstr "minutes" - -#: ../../godmode/setup/setup_visuals.php:805 ../../include/functions.php:435 -#: ../../include/functions.php:569 ../../include/functions_html.php:833 -#: ../../enterprise/meta/advanced/metasetup.visual.php:164 -msgid "hours" -msgstr "hours" - -#: ../../godmode/setup/setup_visuals.php:807 ../../include/functions.php:432 -#: ../../include/functions.php:566 ../../include/functions_html.php:836 -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 -msgid "months" -msgstr "months" - -#: ../../godmode/setup/setup_visuals.php:808 ../../include/functions.php:433 -#: ../../include/functions.php:567 ../../include/functions_html.php:837 -#: ../../enterprise/meta/advanced/metasetup.visual.php:167 -msgid "years" -msgstr "years" - -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../enterprise/meta/advanced/metasetup.visual.php:168 -msgid "Add new custom value to intervals" -msgstr "Add new custom value to intervals" - -#: ../../godmode/setup/setup_visuals.php:815 -#: ../../include/functions_config.php:687 -#: ../../enterprise/meta/advanced/metasetup.visual.php:174 -#: ../../enterprise/meta/include/functions_meta.php:1355 -msgid "Delete interval" -msgstr "Delete interval" - -#: ../../godmode/setup/setup_visuals.php:829 -#: ../../include/functions_config.php:714 -msgid "CSV divider" -msgstr "CSV divider" - -#: ../../godmode/setup/setup_visuals.php:846 -msgid "Other configuration" -msgstr "Other configuration" - -#: ../../godmode/setup/setup_visuals.php:1079 -#: ../../godmode/setup/setup_visuals.php:1119 -#: ../../enterprise/meta/advanced/metasetup.visual.php:462 -#: ../../enterprise/meta/advanced/metasetup.visual.php:502 -msgid "Logo preview" -msgstr "Logo preview" - -#: ../../godmode/setup/setup_visuals.php:1159 -#: ../../enterprise/meta/advanced/metasetup.visual.php:542 -msgid "Splash Preview" -msgstr "Splash Preview" - -#: ../../godmode/setup/setup_visuals.php:1200 -#: ../../enterprise/meta/advanced/metasetup.visual.php:582 -msgid "Background preview" -msgstr "Background preview" - -#: ../../godmode/setup/setup_visuals.php:1244 -msgid "Gis icons preview" -msgstr "GIS icon preview" - -#: ../../godmode/setup/setup_visuals.php:1299 -msgid "Status set preview" -msgstr "Status set preview" - -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -msgid "OP" -msgstr "OP" - -#: ../../godmode/setup/snmp_wizard.php:166 -msgid "Unsucessful update the snmp translation" -msgstr "Error updating SNMP translation" - -#: ../../godmode/setup/snmp_wizard.php:173 -msgid "Unsucessful update the snmp translation." -msgstr "Error updating SNMP translation" - -#: ../../godmode/setup/snmp_wizard.php:221 -msgid "Unsucessful delete the snmp translation" -msgstr "Error deleting SNMP translation" - -#: ../../godmode/setup/snmp_wizard.php:228 -msgid "Unsucessful delete the snmp translation." -msgstr "Error deleting SNMP translation" - -#: ../../godmode/setup/snmp_wizard.php:289 -msgid "Unsucessful save the snmp translation" -msgstr "Error saving SNMP translation" - -#: ../../godmode/setup/snmp_wizard.php:298 -msgid "Unsucessful save the snmp translation." -msgstr "Error saving SNMP translation" - -#: ../../godmode/snmpconsole/snmp_alert.php:28 -#: ../../operation/snmpconsole/snmp_view.php:491 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:929 -#: ../../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:492 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:932 -#: ../../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:493 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:935 -#: ../../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:494 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:938 -#: ../../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:495 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:941 -#: ../../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:540 -#: ../../operation/snmpconsole/snmp_view.php:655 -msgid "SNMP Console" -msgstr "SNMP Console" - -#: ../../godmode/snmpconsole/snmp_alert.php:78 -msgid "Update alert" -msgstr "Update 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 "Error creating the alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:314 -msgid "There was a problem updating the alert" -msgstr "Error updating the alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:536 -msgid "There was a problem duplicating the alert" -msgstr "Error duplicating the alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:540 -msgid "Successfully Duplicate" -msgstr "Duplicated successfully" - -#: ../../godmode/snmpconsole/snmp_alert.php:556 -msgid "There was a problem deleting the alert" -msgstr "Error 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 "Alerts deleted successfully (%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 "Error deleting the 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:713 -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:709 -#: ../../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 -#: ../../include/functions_snmp.php:377 -#: ../../operation/snmpconsole/snmp_view.php:487 -#: ../../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 description fields: OID, Custom Value, SNMP Agent (IP), " -"Single value, each Variable bindings/Data." - -#: ../../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_treeview.php:429 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/functions_reporting_html.php:3223 -msgid "Times fired" -msgstr "Times triggered" - -#: ../../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:1484 -msgid "Add action " -msgstr "Add Action " - -#: ../../godmode/snmpconsole/snmp_filters.php:42 -msgid "Filter overview" -msgstr "Filter overview" - -#: ../../godmode/snmpconsole/snmp_filters.php:77 -msgid "There was a problem updating the filter" -msgstr "Error updating the filter" - -#: ../../godmode/snmpconsole/snmp_filters.php:107 -msgid "There was a problem creating the filter" -msgstr "Error creating the filter" - -#: ../../godmode/snmpconsole/snmp_filters.php:125 -msgid "There was a problem deleting the filter" -msgstr "Error deleting the filter" - -#: ../../godmode/snmpconsole/snmp_filters.php:169 -#: ../../godmode/snmpconsole/snmp_filters.php:180 -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_filters.php:172 -msgid "Click to remove the filter" -msgstr "Click to remove the filter" - -#: ../../godmode/snmpconsole/snmp_filters.php:195 -msgid "Click to add new filter" -msgstr "Click to add new filter" - -#: ../../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 "Generated successfully" - -#: ../../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:66 -msgid "Host address" -msgstr "Host address" - -#: ../../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 "Tag updated successfully" - -#: ../../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 "Tag created successfully" - -#: ../../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:4365 -#: ../../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 email address to use later in alerts associated to tags" - -#: ../../godmode/tag/edit_tag.php:205 ../../godmode/tag/tag.php:204 -#: ../../godmode/users/user_list.php:403 -msgid "Phone" -msgstr "Phone" - -#: ../../godmode/tag/edit_tag.php:207 -msgid "Associated phone number to use later in alerts associated to Tags." -msgstr "Linked phone number to 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 deleted successfully" - -#: ../../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 "Emails 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 unread" - -#: ../../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 no 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 is recommended to make 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." -msgstr "If there are any database changes, they will be applied." - -#: ../../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 available" - -#: ../../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 "New package available" - -#: ../../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 rejected. Changes will not be applied." - -#: ../../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 rejected. The database will not be updated and the package " -"will not be applied." - -#: ../../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 "These package changes will not be applied." - -#: ../../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 "Package rejected. These package changes will not be applied." - -#: ../../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 "Database successfully updated" - -#: ../../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 in MR file" - -#: ../../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 "Package updated successfully" - -#: ../../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 in package updated" - -#: ../../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 "" -"Database MR version is inconsistent, do you want to apply the package?" - -#: ../../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 "There are changes in the DB" - -#: ../../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 "" -"There are new database changes available. Do you want to start the DB update " -"process?" - -#: ../../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 "We recommend launching " - -#: ../../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 "planned downtime" - -#: ../../godmode/update_manager/update_manager.offline.php:63 -#: ../../godmode/update_manager/update_manager.offline.php:66 -#: ../../include/functions_update_manager.php:363 -#: ../../include/functions_update_manager.php:366 -#: ../../enterprise/include/functions_update_manager.php:195 -#: ../../enterprise/include/functions_update_manager.php:198 -msgid " to this process" -msgstr " to this process" - -#: ../../godmode/update_manager/update_manager.offline.php:69 -#: ../../include/functions_update_manager.php:369 -#: ../../enterprise/include/functions_update_manager.php:201 -msgid "There is a new update available" -msgstr "There is a new update available" - -#: ../../godmode/update_manager/update_manager.offline.php:70 -#: ../../include/functions_update_manager.php:370 -#: ../../enterprise/include/functions_update_manager.php:202 -msgid "" -"There is a new update available to apply. Do you want to start the update " -"process?" -msgstr "" -"There is a new update available. Do you want to start the update process?" - -#: ../../godmode/update_manager/update_manager.offline.php:71 -#: ../../include/functions_update_manager.php:371 -#: ../../enterprise/include/functions_update_manager.php:203 -msgid "Applying DB MR" -msgstr "Applying DB MR" - -#: ../../godmode/update_manager/update_manager.offline.php:74 -#: ../../include/functions_update_manager.php:374 -#: ../../enterprise/include/functions_update_manager.php:206 -msgid "Apply MR" -msgstr "Apply MR" - -#: ../../godmode/update_manager/update_manager.offline.php:75 -#: ../../include/functions_update_manager.php:375 -#: ../../include/functions_visual_map_editor.php:481 -#: ../../enterprise/godmode/policies/policy_agents.php:576 -#: ../../enterprise/godmode/policies/policy_agents.php:820 -#: ../../enterprise/godmode/policies/policy_queue.php:435 -#: ../../enterprise/include/functions_update_manager.php:207 -#: ../../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. To avoid problems with large updates " -"please set it 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. To avoid problems with " -"large updates please set it 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. To " -"avoid problems with large updates please set it to 100M." - -#: ../../godmode/update_manager/update_manager.online.php:85 -msgid "The latest version of package installed is:" -msgstr "The latest 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.mail.php:63 -#: ../../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.mail.php:64 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:59 -msgid "Unsuccesful Update the url config vars." -msgstr "Error 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 FMS instance." - -#: ../../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 "User management" - -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/profile_list.php:53 -msgid "Profiles defined in Pandora" -msgstr "Profiles defined on Pandora FMS" - -#: ../../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:311 -#: ../../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:497 -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:542 -msgid "Manage visual console" -msgstr "Manage visual console" - -#: ../../godmode/users/configure_profile.php:335 -msgid "View incidents" -msgstr "View issues" - -#: ../../godmode/users/configure_profile.php:339 -msgid "Edit incidents" -msgstr "Edit issues" - -#: ../../godmode/users/configure_profile.php:343 -msgid "Manage incidents" -msgstr "Manage issues" - -#: ../../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 FMS management" - -#: ../../godmode/users/configure_user.php:92 -#: ../../operation/users/user_edit.php:62 -msgid "User detail editor" -msgstr "User detail editor" - -#: ../../godmode/users/configure_user.php:150 -#: ../../godmode/users/user_list.php:489 -msgid "" -"The current authentication scheme doesn't support creating users from " -"Pandora FMS" -msgstr "" -"The current authentication scheme does not support the creation of users on " -"Pandora FMS." - -#: ../../godmode/users/configure_user.php:202 -msgid "User ID cannot be empty" -msgstr "User ID field cannot be empty" - -#: ../../godmode/users/configure_user.php:209 -msgid "Passwords cannot be empty" -msgstr "Password field cannot be empty" - -#: ../../godmode/users/configure_user.php:216 -msgid "Passwords didn't match" -msgstr "Provided passwords do not match" - -#: ../../godmode/users/configure_user.php:264 -msgid "" -"Strict ACL is not recommended for admin users because performance could be " -"affected." -msgstr "" -"Strict ACL is not recommended for admin users because it could affect " -"overall performance." - -#: ../../godmode/users/configure_user.php:342 -#: ../../godmode/users/configure_user.php:354 -#: ../../godmode/users/configure_user.php:404 -#: ../../godmode/users/configure_user.php:410 -#: ../../godmode/users/configure_user.php:438 -#: ../../operation/users/user_edit.php:156 -#: ../../operation/users/user_edit.php:166 -msgid "User info successfully updated" -msgstr "User information successfully updated" - -#: ../../godmode/users/configure_user.php:343 -#: ../../godmode/users/configure_user.php:355 -#: ../../godmode/users/configure_user.php:405 -#: ../../godmode/users/configure_user.php:411 -#: ../../godmode/users/configure_user.php:439 -msgid "Error updating user info (no change?)" -msgstr "Error updating user information (no change?)" - -#: ../../godmode/users/configure_user.php:361 -msgid "Passwords does not match" -msgstr "Passwords do not match" - -#: ../../godmode/users/configure_user.php:429 -msgid "" -"Strict ACL is not recommended for this user. Performance could be affected." -msgstr "" -"Strict ACL is not recommended for this user. Performance could be affected." - -#: ../../godmode/users/configure_user.php:461 -msgid "Profile added successfully" -msgstr "Profile added successfully" - -#: ../../godmode/users/configure_user.php:462 -msgid "Profile cannot be added" -msgstr "Profile could not be added" - -#: ../../godmode/users/configure_user.php:488 -msgid "Update User" -msgstr "Update user" - -#: ../../godmode/users/configure_user.php:491 -msgid "Create User" -msgstr "Create user" - -#: ../../godmode/users/configure_user.php:504 -#: ../../godmode/users/user_list.php:263 -#: ../../include/functions_reporting_html.php:2939 -#: ../../operation/search_users.php:38 -#: ../../operation/snmpconsole/snmp_view.php:727 -#: ../../operation/users/user_edit.php:186 -msgid "User ID" -msgstr "User ID" - -#: ../../godmode/users/configure_user.php:508 -#: ../../operation/users/user_edit.php:188 -msgid "Full (display) name" -msgstr "Full (display) name" - -#: ../../godmode/users/configure_user.php:512 -#: ../../operation/users/user_edit.php:257 -#: ../../enterprise/extensions/translate_string.php:250 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:132 -msgid "Language" -msgstr "Language" - -#: ../../godmode/users/configure_user.php:520 -#: ../../operation/users/user_edit.php:223 -msgid "Password confirmation" -msgstr "Password confirmation" - -#: ../../godmode/users/configure_user.php:527 -msgid "Global Profile" -msgstr "Global profile" - -#: ../../godmode/users/configure_user.php:531 -#: ../../godmode/users/user_list.php:411 ../../operation/search_users.php:64 -msgid "Administrator" -msgstr "Administrator" - -#: ../../godmode/users/configure_user.php:532 -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:536 -#: ../../operation/search_users.php:69 -msgid "Standard User" -msgstr "Standard user" - -#: ../../godmode/users/configure_user.php:537 -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 its group agents, create " -"issues belonging to its groups, add notes in other issues, create personal " -"assignments or reviews and other tasks, on different profiles." - -#: ../../godmode/users/configure_user.php:540 -#: ../../godmode/users/user_list.php:404 -#: ../../operation/users/user_edit.php:210 -msgid "E-mail" -msgstr "Email" - -#: ../../godmode/users/configure_user.php:544 -#: ../../operation/users/user_edit.php:212 -msgid "Phone number" -msgstr "Phone number" - -#: ../../godmode/users/configure_user.php:579 -msgid "Use global conf" -msgstr "Use global configuration" - -#: ../../godmode/users/configure_user.php:583 -#: ../../operation/users/user_edit.php:276 -msgid "Home screen" -msgstr "Home screen" - -#: ../../godmode/users/configure_user.php:584 -#: ../../operation/users/user_edit.php:276 -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" - -#: ../../godmode/users/configure_user.php:589 -#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:49 -#: ../../operation/users/user_edit.php:281 -#: ../../enterprise/meta/monitoring/group_view.php:46 -msgid "Group view" -msgstr "Group view" - -#: ../../godmode/users/configure_user.php:590 -#: ../../mobile/operation/home.php:38 ../../mobile/operation/tactical.php:84 -#: ../../operation/agentes/tactical.php:55 ../../operation/menu.php:46 -#: ../../operation/users/user_edit.php:282 -#: ../../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" - -#: ../../godmode/users/configure_user.php:591 -#: ../../operation/agentes/alerts_status.php:165 ../../operation/menu.php:65 -#: ../../operation/users/user_edit.php:283 -msgid "Alert detail" -msgstr "Alert details" - -#: ../../godmode/users/configure_user.php:592 -msgid "External link" -msgstr "External link" - -#: ../../godmode/users/configure_user.php:595 -#: ../../mobile/include/functions_web.php:21 -#: ../../operation/users/user_edit.php:286 -#: ../../enterprise/extensions/vmware/vmware_view.php:1212 -#: ../../enterprise/extensions/vmware/vmware_view.php:1236 -#: ../../enterprise/mobile/operation/dashboard.php:221 -#: ../../enterprise/operation/menu.php:100 -msgid "Dashboard" -msgstr "Dashboard" - -#: ../../godmode/users/configure_user.php:639 -msgid "Metaconsole access" -msgstr "Metaconsole access" - -#: ../../godmode/users/configure_user.php:647 -msgid "Not Login" -msgstr "Login error" - -#: ../../godmode/users/configure_user.php:648 -msgid "The user with not login set only can access to API." -msgstr "The user with no access authorization can only access the API." - -#: ../../godmode/users/configure_user.php:651 -msgid "Session Time" -msgstr "Session time" - -#: ../../godmode/users/configure_user.php:661 -msgid "Default event filter" -msgstr "Default event filter" - -#: ../../godmode/users/configure_user.php:668 -msgid "Enable agents managment" -msgstr "Enable agent management" - -#: ../../godmode/users/configure_user.php:675 -msgid "Assigned node" -msgstr "Assigned node" - -#: ../../godmode/users/configure_user.php:675 -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:687 -msgid "Enable node access" -msgstr "Enable node access" - -#: ../../godmode/users/configure_user.php:687 -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:718 -#: ../../godmode/users/configure_user.php:727 -#: ../../operation/users/user_edit.php:490 -#: ../../operation/users/user_edit.php:498 -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 "Error deleting profile: it is being 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 "Error deleting the profile" - -#: ../../godmode/users/profile_list.php:226 -msgid "There was a problem updating this profile" -msgstr "Error 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 "Error 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 issues" - -#: ../../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 issues" - -#: ../../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 issues" - -#: ../../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:490 -#: ../../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 FMS" - -#: ../../godmode/users/user_list.php:143 -#, php-format -msgid "Deleted user %s" -msgstr "User %s deleted" - -#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 -msgid "There was a problem deleting the user" -msgstr "Error deleting the user" - -#: ../../godmode/users/user_list.php:163 -#, php-format -msgid "Deleted user %s from metaconsole" -msgstr "User %s deleted from the Metaconsole" - -#: ../../godmode/users/user_list.php:172 -#, php-format -msgid "Deleted user %s from %s" -msgstr "User %s deleted 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 "Error deleting the user from %s" - -#: ../../godmode/users/user_list.php:204 -msgid "There was a problem disabling user" -msgstr "Error disabling the user" - -#: ../../godmode/users/user_list.php:209 -msgid "There was a problem enabling user" -msgstr "Error enabling the user" - -#: ../../godmode/users/user_list.php:229 ../../godmode/users/user_list.php:231 -msgid "Search by username, fullname or email" -msgstr "Search by username, full name, or email" - -#: ../../godmode/users/user_list.php:247 -msgid "Users control filter" -msgstr "User control filter" - -#: ../../godmode/users/user_list.php:272 ../../godmode/users/user_list.php:410 -#: ../../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:273 -msgid "Profile / Group" -msgstr "Profile / Group" - -#: ../../godmode/users/user_list.php:454 ../../operation/search_users.php:82 -msgid "The user doesn't have any assigned profile/group" -msgstr "The user does not have any assigned profile/group" - -#: ../../godmode/users/user_list.php:467 -msgid "Deleting User" -msgstr "Deleting user" - -#: ../../godmode/users/user_list.php:469 -msgid "Delete from all consoles" -msgstr "Delete from all consoles" - -#: ../../godmode/users/user_list.php:469 -#, php-format -msgid "Deleting User %s from all consoles" -msgstr "Deleting user %s from all consoles" - -#: ../../godmode/users/user_list.php:485 -msgid "Create user" -msgstr "Create user" - -#: ../../include/ajax/double_auth.ajax.php:146 -msgid "" -"This is the private code that you should use with your authenticator app" -msgstr "" -"This is the private code that you should use with your authentication app." - -#: ../../include/ajax/double_auth.ajax.php:147 -#: ../../include/ajax/double_auth.ajax.php:283 -msgid "" -"You could enter the code manually or use the QR code to add it automatically" -msgstr "" -"You can enter the code manually or scan the QR code to add it automatically." - -#: ../../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" - -#: ../../include/ajax/double_auth.ajax.php:153 -#: ../../include/ajax/double_auth.ajax.php:289 -msgid "QR" -msgstr "QR" - -#: ../../include/ajax/double_auth.ajax.php:189 -msgid "You are about to activate the double authentication" -msgstr "You are about to enable the double authentication mechanism." - -#: ../../include/ajax/double_auth.ajax.php:190 -msgid "" -"With this option enabled, your account access will be more secure, \n" -"\t\tcause a code generated by other application will be required after the " -"login" -msgstr "" -"With this option enabled your account access will be more secure, \n" -"\t\t because a code generated by another application will be required after " -"login." - -#: ../../include/ajax/double_auth.ajax.php:194 -msgid "" -"You will need to install the app from the following link before continue" -msgstr "" -"You will need to install the app from the following link before continuing." - -#: ../../include/ajax/double_auth.ajax.php:199 -msgid "Download the app" -msgstr "Download the app" - -#: ../../include/ajax/double_auth.ajax.php:203 -#: ../../include/ajax/double_auth.ajax.php:294 -msgid "Continue" -msgstr "Continue" - -#: ../../include/ajax/double_auth.ajax.php:219 -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:711 -#: ../../operation/users/user_edit.php:776 -msgid "There was an error loading the data" -msgstr "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" - -#: ../../include/ajax/double_auth.ajax.php:282 -msgid "" -"Before continue, you should create a new entry into the authenticator app" -msgstr "" -"Before continuing, you should create a new entry in the authentication app." - -#: ../../include/ajax/double_auth.ajax.php:292 -msgid "Refresh code" -msgstr "Refresh code" - -#: ../../include/ajax/double_auth.ajax.php:360 -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 -msgid "Introduce a code generated by the app" -msgstr "Introduce a code generated by the app" - -#: ../../include/ajax/double_auth.ajax.php:423 -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 -msgid "Validate code" -msgstr "Validate code" - -#: ../../include/ajax/double_auth.ajax.php:483 -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:217 -#: ../../index.php:273 -msgid "Invalid code" -msgstr "Invalid code" - -#: ../../include/ajax/double_auth.ajax.php:499 -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:203 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:269 -#, php-format -msgid "Executing command: %s" -msgstr "Executing command: %s" - -#: ../../include/ajax/events.php:210 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:276 -msgid "Execute again" -msgstr "Execute again" - -#: ../../include/ajax/events.php:345 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:210 -msgid "Details" -msgstr "Details" - -#: ../../include/ajax/events.php:346 -msgid "Agent fields" -msgstr "Agent fields" - -#: ../../include/ajax/events.php:354 -msgid "Custom data" -msgstr "Custom data" - -#: ../../include/ajax/events.php:422 -msgid "Error adding comment" -msgstr "Error adding comment" - -#: ../../include/ajax/events.php:423 -msgid "Comment added successfully" -msgstr "Comment added successfully" - -#: ../../include/ajax/events.php:424 -msgid "Error changing event status" -msgstr "Error changing event status" - -#: ../../include/ajax/events.php:425 -msgid "Event status changed successfully" -msgstr "Event status changed successfully" - -#: ../../include/ajax/events.php:426 -msgid "Error changing event owner" -msgstr "Error changing event owner" - -#: ../../include/ajax/events.php:427 -msgid "Event owner changed successfully" -msgstr "Event owner changed successfully" - -#: ../../include/ajax/events.php:495 -#: ../../include/functions_reporting.php:7031 -#: ../../include/functions_events.php:928 -#: ../../include/functions_events.php:2368 -#: ../../include/functions_events.php:3756 -#: ../../include/functions_reporting_html.php:848 -#: ../../include/functions_reporting_html.php:1064 -#: ../../include/functions_reporting_html.php:1676 -#: ../../mobile/operation/events.php:247 -#: ../../operation/events/events.build_table.php:304 -msgid "New event" -msgstr "New event" - -#: ../../include/ajax/events.php:499 -#: ../../include/functions_reporting.php:7035 -#: ../../include/functions_events.php:932 -#: ../../include/functions_events.php:2373 -#: ../../include/functions_events.php:3760 -#: ../../include/functions_reporting_html.php:852 -#: ../../include/functions_reporting_html.php:1068 -#: ../../include/functions_reporting_html.php:1680 -#: ../../mobile/operation/events.php:251 -#: ../../operation/events/events.build_table.php:308 -#: ../../operation/events/events.php:715 ../../operation/events/events.php:744 -#: ../../operation/events/events.php:745 ../../operation/events/events.php:965 -#: ../../operation/events/events.php:970 ../../operation/events/events.php:971 -msgid "Event validated" -msgstr "Event validated" - -#: ../../include/ajax/events.php:503 -#: ../../include/functions_reporting.php:7039 -#: ../../include/functions_events.php:936 -#: ../../include/functions_events.php:2378 -#: ../../include/functions_events.php:3764 -#: ../../include/functions_reporting_html.php:856 -#: ../../include/functions_reporting_html.php:1072 -#: ../../include/functions_reporting_html.php:1684 -#: ../../mobile/operation/events.php:255 -#: ../../operation/events/events.build_table.php:312 -#: ../../operation/events/events.php:777 ../../operation/events/events.php:815 -#: ../../operation/events/events.php:816 ../../operation/events/events.php:975 -#: ../../operation/events/events.php:989 ../../operation/events/events.php:990 -msgid "Event in process" -msgstr "Event in process" - -#: ../../include/ajax/events.php:562 -msgid "Show all Events 24h" -msgstr "Show all Events 24h" - -#: ../../include/ajax/graph.ajax.php:145 -msgid "Time container lapse" -msgstr "Time container lapse" - -#: ../../include/ajax/module.php:138 ../../include/functions.php:2615 -msgid "30 minutes" -msgstr "30 minutes" - -#: ../../include/ajax/module.php:140 -#: ../../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:146 ../../include/functions_netflow.php:1063 -msgid "3 months" -msgstr "3 months" - -#: ../../include/ajax/module.php:147 ../../include/functions_netflow.php:1064 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 -msgid "6 months" -msgstr "6 months" - -#: ../../include/ajax/module.php:148 ../../include/functions.php:2066 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 -msgid "1 year" -msgstr "1 year" - -#: ../../include/ajax/module.php:149 ../../include/functions_netflow.php:1066 -msgid "2 years" -msgstr "2 years" - -#: ../../include/ajax/module.php:150 -msgid "3 years" -msgstr "3 years" - -#: ../../include/ajax/module.php:154 -#: ../../operation/agentes/datos_agente.php:185 -msgid "Choose a time from now" -msgstr "Choose a time from now" - -#: ../../include/ajax/module.php:166 -#: ../../operation/agentes/datos_agente.php:188 -msgid "Specify time range" -msgstr "Specify time range" - -#: ../../include/ajax/module.php:167 -#: ../../operation/agentes/datos_agente.php:189 -#: ../../operation/events/events_list.php:558 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:450 -msgid "Timestamp from:" -msgstr "Timestamp from:" - -#: ../../include/ajax/module.php:175 -#: ../../operation/agentes/datos_agente.php:195 -#: ../../operation/events/events_list.php:561 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 -msgid "Timestamp to:" -msgstr "Timestamp to:" - -#: ../../include/ajax/module.php:188 -msgid "Exact phrase" -msgstr "Exact phrase" - -#: ../../include/ajax/module.php:768 -#: ../../operation/agentes/alerts_status.php:455 -#: ../../operation/agentes/alerts_status.php:499 -#: ../../operation/agentes/alerts_status.php:533 -#: ../../operation/agentes/alerts_status.php:568 -msgid "Force execution" -msgstr "Force execution" - -#: ../../include/ajax/module.php:768 -#: ../../operation/agentes/alerts_status.php:456 -#: ../../operation/agentes/alerts_status.php:499 -#: ../../operation/agentes/alerts_status.php:533 -#: ../../operation/agentes/alerts_status.php:568 -msgid "F." -msgstr "F." - -#: ../../include/ajax/module.php:784 -#: ../../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" - -#: ../../include/ajax/module.php:841 ../../include/functions_ui.php:861 -#: ../../include/functions_groups.php:765 -#: ../../include/functions_groups.php:958 -#: ../../operation/agentes/group_view.php:163 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/servers/recon_view.php:89 -#: ../../operation/servers/recon_view.php:121 -#: ../../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:1155 -msgid "Any monitors aren't with this filter." -msgstr "No monitors have this filter" - -#: ../../include/ajax/module.php:1158 -msgid "This agent doesn't have any active monitors." -msgstr "This agent does not have any active monitors." - -#: ../../include/ajax/rolling_release.ajax.php:56 -msgid "The sql file contains a dangerous query" -msgstr "The SQL file contains a dangerous query." - -#: ../../include/ajax/rolling_release.ajax.php:103 -msgid "" -"An error occurred while updating the database schema to the minor release " -msgstr "" -"An error occurred while updating the database schema to the minor release " - -#: ../../include/ajax/rolling_release.ajax.php:117 -#: ../../include/ajax/rolling_release.ajax.php:130 -msgid "The directory " -msgstr "The directory " - -#: ../../include/ajax/rolling_release.ajax.php:117 -msgid " should have read permissions in order to update the database schema" -msgstr "" -" should have read permissions in order to update the database schema." - -#: ../../include/ajax/rolling_release.ajax.php:130 -msgid " does not exist" -msgstr " does not exist" - -#: ../../include/ajax/update_manager.ajax.php:75 -#: ../../enterprise/include/functions_update_manager.php:369 -msgid "There was an error extracting the file '" -msgstr "There was an error extracting the file" - -#: ../../include/ajax/update_manager.ajax.php:91 -#: ../../enterprise/include/functions_update_manager.php:386 -msgid "The package was not extracted." -msgstr "The package could not be extracted" - -#: ../../include/ajax/update_manager.ajax.php:97 -msgid "Invalid extension. The package must have the extension .oum." -msgstr "Invalid extension. The package needs to be in '.oum' format." - -#: ../../include/ajax/update_manager.ajax.php:104 -msgid "The file was not uploaded succesfully." -msgstr "Error uploading the file" - -#: ../../include/ajax/update_manager.ajax.php:181 -#: ../../include/ajax/update_manager.ajax.php:185 -#: ../../include/ajax/update_manager.ajax.php:212 -#: ../../include/functions_update_manager.php:128 -#: ../../include/functions_update_manager.php:132 -#: ../../include/functions_update_manager.php:158 -#: ../../enterprise/include/functions_update_manager.php:508 -#: ../../enterprise/include/functions_update_manager.php:512 -#: ../../enterprise/include/functions_update_manager.php:539 -msgid "Some of your files might not be recovered." -msgstr "Some of your files may be impossible to recover." - -#: ../../include/ajax/update_manager.ajax.php:189 -#: ../../include/ajax/update_manager.ajax.php:206 -#: ../../include/functions_update_manager.php:136 -#: ../../include/functions_update_manager.php:152 -#: ../../enterprise/include/functions_update_manager.php:517 -#: ../../enterprise/include/functions_update_manager.php:533 -msgid "Some of your old files might not be recovered." -msgstr "Some of your old files may be impossible to recover." - -#: ../../include/ajax/update_manager.ajax.php:227 -#: ../../include/functions_update_manager.php:173 -#: ../../enterprise/include/functions_update_manager.php:554 -msgid "An error ocurred while reading a file." -msgstr "An error ocurred while reading a file" - -#: ../../include/ajax/update_manager.ajax.php:234 -#: ../../include/functions_update_manager.php:180 -#: ../../enterprise/include/functions_update_manager.php:561 -msgid "The package does not exist" -msgstr "The package does not exist." - -#: ../../include/ajax/update_manager.ajax.php:248 -msgid "Package rejected." -msgstr "Package rejected" - -#: ../../include/ajax/update_manager.ajax.php:422 -#: ../../enterprise/include/functions_update_manager.php:322 -msgid "Fail to update to the last package." -msgstr "Error updating to the latest package" - -#: ../../include/ajax/update_manager.ajax.php:430 -#: ../../enterprise/include/functions_update_manager.php:337 -msgid "Starting to update to the last package." -msgstr "Starting to update to the latest package" - -#: ../../include/ajax/update_manager.ajax.php:501 -#: ../../enterprise/include/functions_update_manager.php:430 -msgid "progress" -msgstr "progress" - -#: ../../include/ajax/update_manager.ajax.php:522 -msgid "The package is extracted." -msgstr "The package has been extracted." - -#: ../../include/ajax/update_manager.ajax.php:526 -msgid "Error in package extraction." -msgstr "Error in package extraction" - -#: ../../include/ajax/update_manager.ajax.php:544 -#: ../../include/functions_update_manager.php:189 -#: ../../enterprise/include/functions_update_manager.php:570 -msgid "The package is installed." -msgstr "The package has been installed." - -#: ../../include/ajax/update_manager.ajax.php:548 -msgid "An error ocurred in the installation process." -msgstr "An error ocurred in the installation process." - -#: ../../include/auth/mysql.php:240 -msgid "" -"Problems with configuration permissions. Please contact with Administrator" -msgstr "" -"Problems with configuration permissions. Please contact with the " -"administrator." - -#: ../../include/auth/mysql.php:246 ../../include/auth/mysql.php:257 -msgid "Your permissions have changed. Please, login again." -msgstr "Your permissions have changed. Please, log in again." - -#: ../../include/auth/mysql.php:271 -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:289 ../../include/auth/mysql.php:322 -#: ../../include/auth/mysql.php:396 -msgid "Fail the group synchronizing" -msgstr "Error synchronizing the group" - -#: ../../include/auth/mysql.php:295 ../../include/auth/mysql.php:328 -#: ../../include/auth/mysql.php:402 -msgid "Fail the tag synchronizing" -msgstr "Error synchronizing tag" - -#: ../../include/auth/mysql.php:308 -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:361 ../../include/auth/mysql.php:382 -msgid "User not found in database or incorrect password" -msgstr "User not found in database or incorrect password" - -#: ../../include/auth/mysql.php:665 -msgid "Could not changes password on remote pandora" -msgstr "Could not change password for remote Pandora FMS" - -#: ../../include/auth/mysql.php:702 -msgid "Your installation of PHP does not support LDAP" -msgstr "Your PHP environment does not support LDAP" - -#: ../../include/class/Tree.class.php:1506 -#: ../../include/functions_modules.php:1956 -#: ../../include/functions_modules.php:1976 -#: ../../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:301 -#: ../../operation/agentes/pandora_networkmap.view.php:323 -#: ../../operation/agentes/status_monitor.php:1166 -#: ../../operation/agentes/status_monitor.php:1170 -#: ../../operation/agentes/status_monitor.php:1203 -#: ../../operation/agentes/status_monitor.php:1208 -#: ../../operation/search_modules.php:112 -#: ../../operation/search_modules.php:132 -#: ../../enterprise/extensions/vmware/vmware_view.php:949 -#: ../../enterprise/include/functions_services.php:1684 -#: ../../enterprise/include/functions_services.php:1708 -#: ../../enterprise/operation/agentes/policy_view.php:363 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/tag_view.php:810 -#: ../../enterprise/operation/agentes/tag_view.php:814 -#: ../../enterprise/operation/agentes/tag_view.php:847 -#: ../../enterprise/operation/agentes/tag_view.php:852 -msgid "CRITICAL" -msgstr "CRITICAL" - -#: ../../include/class/Tree.class.php:1513 -#: ../../include/functions_pandora_networkmap.php:1013 -#: ../../include/functions_modules.php:1960 -#: ../../include/functions_modules.php:1980 -#: ../../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:305 -#: ../../operation/agentes/pandora_networkmap.view.php:328 -#: ../../operation/agentes/status_monitor.php:1176 -#: ../../operation/agentes/status_monitor.php:1180 -#: ../../operation/agentes/status_monitor.php:1215 -#: ../../operation/agentes/status_monitor.php:1220 -#: ../../operation/search_modules.php:116 -#: ../../operation/search_modules.php:139 -#: ../../enterprise/extensions/vmware/vmware_view.php:953 -#: ../../enterprise/include/functions_login.php:32 -#: ../../enterprise/include/functions_services.php:1688 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/operation/agentes/policy_view.php:367 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/tag_view.php:820 -#: ../../enterprise/operation/agentes/tag_view.php:824 -#: ../../enterprise/operation/agentes/tag_view.php:859 -#: ../../enterprise/operation/agentes/tag_view.php:864 -msgid "WARNING" -msgstr "WARNING" - -#: ../../include/class/Tree.class.php:1518 -#: ../../include/functions_modules.php:1971 -#: ../../include/functions_modules.php:1975 -#: ../../include/functions_modules.php:1979 -#: ../../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:317 -#: ../../operation/agentes/pandora_networkmap.view.php:322 -#: ../../operation/agentes/pandora_networkmap.view.php:327 -#: ../../operation/agentes/status_monitor.php:1190 -#: ../../operation/agentes/status_monitor.php:1195 -#: ../../operation/agentes/status_monitor.php:1202 -#: ../../operation/agentes/status_monitor.php:1207 -#: ../../operation/agentes/status_monitor.php:1214 -#: ../../operation/agentes/status_monitor.php:1219 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/extensions/vmware/vmware_view.php:957 -#: ../../enterprise/include/functions_services.php:1695 -#: ../../enterprise/include/functions_services.php:1703 -#: ../../enterprise/include/functions_services.php:1708 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/include/functions_services.php:1716 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/tag_view.php:834 -#: ../../enterprise/operation/agentes/tag_view.php:839 -#: ../../enterprise/operation/agentes/tag_view.php:846 -#: ../../enterprise/operation/agentes/tag_view.php:851 -#: ../../enterprise/operation/agentes/tag_view.php:858 -#: ../../enterprise/operation/agentes/tag_view.php:863 -msgid "UNKNOWN" -msgstr "UNKNOWN" - -#: ../../include/class/Tree.class.php:1524 -msgid "NO DATA" -msgstr "NO DATA" - -#: ../../include/class/Tree.class.php:1532 -#: ../../include/functions_modules.php:1964 -#: ../../include/functions_modules.php:1972 -#: ../../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:309 -#: ../../operation/agentes/pandora_networkmap.view.php:318 -#: ../../operation/agentes/status_monitor.php:1156 -#: ../../operation/agentes/status_monitor.php:1160 -#: ../../operation/agentes/status_monitor.php:1191 -#: ../../operation/agentes/status_monitor.php:1196 -#: ../../operation/search_modules.php:108 -#: ../../operation/search_modules.php:125 -#: ../../enterprise/extensions/vmware/vmware_view.php:945 -#: ../../enterprise/include/functions_services.php:1680 -#: ../../enterprise/include/functions_services.php:1703 -#: ../../enterprise/operation/agentes/policy_view.php:371 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/tag_view.php:800 -#: ../../enterprise/operation/agentes/tag_view.php:804 -#: ../../enterprise/operation/agentes/tag_view.php:835 -#: ../../enterprise/operation/agentes/tag_view.php:840 -msgid "NORMAL" -msgstr "NORMAL" - -#: ../../include/class/Tree.class.php:1619 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "Module alerts" -msgstr "Module alerts" - -#: ../../include/functions.php:215 -#: ../../enterprise/include/functions_reporting_csv.php:1646 -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:1463 -#: ../../include/functions_graph.php:3259 -#: ../../include/functions_graph.php:3759 -#: ../../include/functions_graph.php:3760 -#: ../../include/functions_graph.php:6073 -#: ../../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:1466 -#: ../../include/functions_graph.php:3763 -#: ../../include/functions_graph.php:3764 -#: ../../include/functions_graph.php:6076 -msgid "Informational" -msgstr "Informative" - -#: ../../include/functions.php:882 ../../include/functions.php:1078 -#: ../../include/functions.php:1123 ../../include/functions_graph.php:3771 -#: ../../include/functions_graph.php:3772 -#: ../../include/functions_graph.php:6088 -msgid "Minor" -msgstr "Minor" - -#: ../../include/functions.php:885 ../../include/functions.php:1080 -#: ../../include/functions.php:1126 ../../include/functions_graph.php:3779 -#: ../../include/functions_graph.php:3780 -#: ../../include/functions_graph.php:6091 -msgid "Major" -msgstr "Major" - -#: ../../include/functions.php:1029 ../../include/functions_events.php:1399 -msgid "Monitor Critical" -msgstr "Monitor in critical status" - -#: ../../include/functions.php:1030 ../../include/functions_events.php:1402 -msgid "Monitor Warning" -msgstr "Monitor in warning status" - -#: ../../include/functions.php:1031 ../../include/functions_events.php:1405 -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:1411 -msgid "Alert recovered" -msgstr "Alert recovered" - -#: ../../include/functions.php:1037 ../../include/functions_events.php:1173 -#: ../../include/functions_events.php:1414 -msgid "Alert ceased" -msgstr "Alert stopped" - -#: ../../include/functions.php:1038 ../../include/functions_events.php:1417 -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:1420 -msgid "Recon host detected" -msgstr "Recon host detected" - -#: ../../include/functions.php:1044 ../../include/functions_events.php:1170 -#: ../../include/functions_events.php:1429 -msgid "Configuration change" -msgstr "Configuration change" - -#: ../../include/functions.php:2055 ../../include/functions.php:2056 -#, php-format -msgid "%s minutes" -msgstr "%s minutes" - -#: ../../include/functions.php:2064 ../../include/functions.php:2065 -#, php-format -msgid "%s months" -msgstr "%s months" - -#: ../../include/functions.php:2067 ../../include/functions.php:2068 -#, php-format -msgid "%s years" -msgstr "%s years" - -#: ../../include/functions.php:2071 -msgid "Default values will be used" -msgstr "Default values will be applied" - -#: ../../include/functions.php:2220 -msgid "The uploaded file was only partially uploaded" -msgstr "The file was only partially uploaded." - -#: ../../include/functions.php:2223 -msgid "No file was uploaded" -msgstr "No file was uploaded" - -#: ../../include/functions.php:2226 -msgid "Missing a temporary folder" -msgstr "Temporary folder missing" - -#: ../../include/functions.php:2229 -msgid "Failed to write file to disk" -msgstr "Error writing file to disk" - -#: ../../include/functions.php:2232 -msgid "File upload stopped by extension" -msgstr "File upload stopped by an extension" - -#: ../../include/functions.php:2236 -msgid "Unknown upload error" -msgstr "Unknown upload error" - -#: ../../include/functions.php:2321 -msgid "No data found to export" -msgstr "No data found to export" - -#: ../../include/functions.php:2339 -msgid "Source ID" -msgstr "Source ID" - -#: ../../include/functions.php:2607 -#: ../../operation/gis_maps/render_view.php:135 -msgid "5 seconds" -msgstr "5 seconds" - -#: ../../include/functions.php:2608 -#: ../../operation/gis_maps/render_view.php:136 -msgid "10 seconds" -msgstr "10 seconds" - -#: ../../include/functions.php:2609 -msgid "15 seconds" -msgstr "15 seconds" - -#: ../../include/functions.php:2610 -#: ../../operation/gis_maps/render_view.php:137 -msgid "30 seconds" -msgstr "30 seconds" - -#: ../../include/functions.php:2614 -msgid "15 minutes" -msgstr "15 minutes" - -#: ../../include/functions_reporting.php:207 -#: ../../include/functions_reporting.php:10943 -msgid " agents" -msgstr " agents" - -#: ../../include/functions_reporting.php:211 -#: ../../include/functions_reporting.php:10984 -msgid " modules" -msgstr " modules" - -#: ../../include/functions_reporting.php:618 -#: ../../include/functions_reports.php:540 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:112 -#: ../../enterprise/godmode/services/services.service.php:341 -#: ../../enterprise/include/functions_reporting_csv.php:1020 -msgid "S.L.A." -msgstr "S.L.A." - -#: ../../include/functions_reporting.php:651 -#: ../../include/functions_reporting.php:5659 -#: ../../enterprise/include/functions_reporting.php:2092 -#: ../../enterprise/include/functions_reporting.php:2818 -#: ../../enterprise/include/functions_reporting.php:3599 -#: ../../enterprise/include/functions_reporting.php:4934 -#: ../../enterprise/include/functions_reporting.php:4940 -msgid "There are no SLAs defined" -msgstr "There are no SLAs defined" - -#: ../../include/functions_reporting.php:707 -#: ../../include/functions_reporting.php:5699 -#: ../../include/functions_maps.php:43 -#: ../../include/functions_networkmap.php:1759 -#: ../../enterprise/include/functions_reporting.php:2136 -#: ../../enterprise/include/functions_reporting.php:2862 -#: ../../enterprise/include/functions_reporting.php:3643 -msgid "Dynamic" -msgstr "Dynamic" - -#: ../../include/functions_reporting.php:718 -#: ../../include/functions_reporting.php:5710 -#: ../../enterprise/include/functions_reporting.php:2147 -#: ../../enterprise/include/functions_reporting.php:2873 -#: ../../enterprise/include/functions_reporting.php:3654 -msgid "Inverse" -msgstr "Inverse" - -#: ../../include/functions_reporting.php:1028 -#: ../../enterprise/dashboard/widgets/top_n.php:31 -msgid "Top N" -msgstr "Top N" - -#: ../../include/functions_reporting.php:1047 -#: ../../operation/snmpconsole/snmp_statistics.php:127 -#: ../../operation/snmpconsole/snmp_statistics.php:185 -#: ../../enterprise/include/functions_reporting_csv.php:430 -#, php-format -msgid "Top %d" -msgstr "Top %d" - -#: ../../include/functions_reporting.php:1085 -#: ../../include/functions_reporting.php:1910 -#: ../../include/functions_reporting_html.php:2498 -#: ../../include/functions_reporting_html.php:2768 -#: ../../enterprise/dashboard/widgets/top_n.php:468 -#: ../../enterprise/include/functions_reporting_pdf.php:871 -#: ../../enterprise/include/functions_reporting_pdf.php:1339 -#: ../../enterprise/include/functions_reporting_pdf.php:2094 -msgid "There are no Agent/Modules defined" -msgstr "There are no Agent/Modules defined" - -#: ../../include/functions_reporting.php:1138 -#: ../../enterprise/dashboard/widgets/top_n.php:534 -msgid "Insuficient data" -msgstr "Insufficient data" - -#: ../../include/functions_reporting.php:1295 -#: ../../include/functions_reporting.php:1450 -#: ../../include/functions_reporting.php:1469 -#: ../../include/functions_reporting.php:1490 -#: ../../include/functions_reporting.php:1511 -#: ../../include/functions_reporting.php:2181 -#: ../../include/functions_reporting.php:2363 -#: ../../include/functions_reporting.php:2384 -#: ../../include/functions_reporting.php:2405 -#: ../../include/functions_reporting.php:6871 -#: ../../include/functions_reporting.php:6891 -#: ../../include/functions_reporting.php:6911 -#: ../../include/functions_graph.php:2598 -#: ../../include/functions_graph.php:2678 -#: ../../include/functions_graph.php:2751 -#: ../../include/functions_graph.php:3520 -#: ../../include/functions_graph.php:4019 -#: ../../include/functions_reporting_html.php:3047 -#: ../../include/functions_reporting_html.php:3125 -#: ../../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_reporting.php:1373 -msgid "Event Report Group" -msgstr "Group event report" - -#: ../../include/functions_reporting.php:1417 -#: ../../include/functions_reporting.php:1589 -#: ../../include/functions_events.php:865 -#: ../../include/functions_events.php:869 -#: ../../include/functions_reporting_html.php:3893 -#: ../../include/functions_reporting_html.php:4065 -#: ../../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_reporting.php:1550 -msgid "Event Report Module" -msgstr "Event Report Module" - -#: ../../include/functions_reporting.php:1616 -#: ../../enterprise/include/functions_reporting_csv.php:302 -msgid "Inventory Changes" -msgstr "Inventory changes" - -#: ../../include/functions_reporting.php:1658 -#: ../../enterprise/extensions/ipam/ipam_action.php:198 -msgid "No changes found." -msgstr "No changes found" - -#: ../../include/functions_reporting.php:1745 -msgid "Agent/Modules" -msgstr "Agent/Modules" - -#: ../../include/functions_reporting.php:1816 -#: ../../include/functions_reports.php:586 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -#: ../../enterprise/include/functions_reporting_csv.php:403 -msgid "Exception" -msgstr "Exception" - -#: ../../include/functions_reporting.php:1834 -msgid "Exception - Everything" -msgstr "Exception - Everything" - -#: ../../include/functions_reporting.php:1839 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "Exception - Modules larger than or equal to %s" - -#: ../../include/functions_reporting.php:1841 -#, php-format -msgid "Modules over or equal to %s" -msgstr "Modules larger than or equal to %s" - -#: ../../include/functions_reporting.php:1845 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "Exception - Modules less than or equal to %s" - -#: ../../include/functions_reporting.php:1847 -#, php-format -msgid "Modules under or equal to %s" -msgstr "Modules less than or equal to %s" - -#: ../../include/functions_reporting.php:1851 -#, php-format -msgid "Exception - Modules under %s" -msgstr "Exception - Modules less than %s" - -#: ../../include/functions_reporting.php:1853 -#, php-format -msgid "Modules under %s" -msgstr "Modules less than %s" - -#: ../../include/functions_reporting.php:1857 -#, php-format -msgid "Exception - Modules over %s" -msgstr "Exception - Modules larger than %s" - -#: ../../include/functions_reporting.php:1859 -#, php-format -msgid "Modules over %s" -msgstr "Modules larger than %s" - -#: ../../include/functions_reporting.php:1863 -#, php-format -msgid "Exception - Equal to %s" -msgstr "Exception - Equal to %s" - -#: ../../include/functions_reporting.php:1865 -#, php-format -msgid "Equal to %s" -msgstr "Equal to %s" - -#: ../../include/functions_reporting.php:1869 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "Exception - Not equal to %s" - -#: ../../include/functions_reporting.php:1871 -#, php-format -msgid "Not equal to %s" -msgstr "Not equal to %s" - -#: ../../include/functions_reporting.php:1875 -msgid "Exception - Modules at normal status" -msgstr "Exception - Modules in normal status" - -#: ../../include/functions_reporting.php:1876 -msgid "Modules at normal status" -msgstr "Modules in normal status" - -#: ../../include/functions_reporting.php:1880 -msgid "Exception - Modules at critical or warning status" -msgstr "Exception - Modules in critical or warning status" - -#: ../../include/functions_reporting.php:1881 -msgid "Modules at critical or warning status" -msgstr "Modules in critical or warning status" - -#: ../../include/functions_reporting.php:2070 -msgid "There are no Modules under those conditions." -msgstr "There are no modules under those conditions" - -#: ../../include/functions_reporting.php:2073 -#, 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:2076 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "There are no modules less than or equal to %s" - -#: ../../include/functions_reporting.php:2079 -#, php-format -msgid "There are no Modules less %s." -msgstr "There are no modules less than %s" - -#: ../../include/functions_reporting.php:2082 -#, php-format -msgid "There are no Modules over %s." -msgstr "There are no modules larger than %s" - -#: ../../include/functions_reporting.php:2085 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "There are no modules equal to %s" - -#: ../../include/functions_reporting.php:2088 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "There are no modules not equal to %s" - -#: ../../include/functions_reporting.php:2091 -msgid "There are no Modules normal status" -msgstr "There are no modules in normal status" - -#: ../../include/functions_reporting.php:2094 -msgid "There are no Modules at critial or warning status" -msgstr "There are no modules in critical or warning status." - -#: ../../include/functions_reporting.php:2242 -#: ../../enterprise/include/functions_reporting_csv.php:456 -msgid "Group Report" -msgstr "Group Report" - -#: ../../include/functions_reporting.php:2296 -msgid "Event Report Agent" -msgstr "Event Report Agent" - -#: ../../include/functions_reporting.php:2498 -msgid "Database Serialized" -msgstr "Database serialized" - -#: ../../include/functions_reporting.php:2629 -#: ../../include/functions_reports.php:641 -msgid "Group configuration" -msgstr "Group settings" - -#: ../../include/functions_reporting.php:2705 -msgid "Network interfaces report" -msgstr "Network interface report" - -#: ../../include/functions_reporting.php:2728 -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:2777 -#: ../../include/functions_reporting.php:2806 -msgid "bytes/s" -msgstr "bytes/s" - -#: ../../include/functions_reporting.php:2864 -msgid "Alert Report Group" -msgstr "Group alert report" - -#: ../../include/functions_reporting.php:3010 -msgid "Alert Report Agent" -msgstr "Alert Report Agent" - -#: ../../include/functions_reporting.php:3127 -msgid "Alert Report Module" -msgstr "Alert Report Module" - -#: ../../include/functions_reporting.php:3260 -msgid "SQL Graph Vertical Bars" -msgstr "SQL vertical bar graph" - -#: ../../include/functions_reporting.php:3263 -msgid "SQL Graph Horizontal Bars" -msgstr "SQL horizontal bar graph" - -#: ../../include/functions_reporting.php:3266 -msgid "SQL Graph Pie" -msgstr "SQL Pie chart" - -#: ../../include/functions_reporting.php:3314 -#: ../../enterprise/include/functions_reporting_csv.php:941 -#: ../../enterprise/include/functions_reporting_csv.php:957 -#: ../../enterprise/include/functions_reporting_csv.php:965 -msgid "Monitor Report" -msgstr "Monitor Report" - -#: ../../include/functions_reporting.php:3391 -msgid "Netflow Area" -msgstr "Netflow Area" - -#: ../../include/functions_reporting.php:3394 -msgid "Netflow Pie" -msgstr "Netflow Pie Chart" - -#: ../../include/functions_reporting.php:3397 -msgid "Netflow Data" -msgstr "Netflow Data" - -#: ../../include/functions_reporting.php:3400 -msgid "Netflow Statistics" -msgstr "Netflow Statistics" - -#: ../../include/functions_reporting.php:3403 -msgid "Netflow Summary" -msgstr "Netflow Summary" - -#: ../../include/functions_reporting.php:3466 -#: ../../include/functions_reports.php:501 -msgid "Simple baseline graph" -msgstr "Simple baseline graph" - -#: ../../include/functions_reporting.php:3533 -msgid "Prediction Date" -msgstr "Prediction Date" - -#: ../../include/functions_reporting.php:3584 -#: ../../enterprise/include/functions_reporting_csv.php:345 -msgid "Projection Graph" -msgstr "Projection Graph" - -#: ../../include/functions_reporting.php:3671 -#: ../../include/functions_reports.php:639 -msgid "Agent configuration" -msgstr "Agent configuration" - -#: ../../include/functions_reporting.php:3825 -#: ../../enterprise/include/functions_reporting_csv.php:904 -#: ../../enterprise/include/functions_reporting_csv.php:920 -#: ../../enterprise/include/functions_reporting_csv.php:927 -msgid "AVG. Value" -msgstr "AVG. Value" - -#: ../../include/functions_reporting.php:3828 -#: ../../include/functions_reporting.php:6342 -#: ../../include/functions_reports.php:574 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:751 -#: ../../enterprise/include/functions_reporting_csv.php:758 -msgid "Summatory" -msgstr "Summation" - -#: ../../include/functions_reporting.php:3831 -#: ../../include/functions_reports.php:535 -#: ../../enterprise/include/functions_reporting_csv.php:555 -#: ../../enterprise/include/functions_reporting_csv.php:570 -#: ../../enterprise/include/functions_reporting_csv.php:577 -msgid "MTTR" -msgstr "MTTR" - -#: ../../include/functions_reporting.php:3834 -#: ../../include/functions_reports.php:533 -#: ../../enterprise/include/functions_reporting_csv.php:591 -#: ../../enterprise/include/functions_reporting_csv.php:607 -#: ../../enterprise/include/functions_reporting_csv.php:614 -msgid "MTBF" -msgstr "MTBF" - -#: ../../include/functions_reporting.php:3837 -#: ../../include/functions_reports.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:628 -#: ../../enterprise/include/functions_reporting_csv.php:644 -#: ../../enterprise/include/functions_reporting_csv.php:651 -msgid "TTO" -msgstr "TTO" - -#: ../../include/functions_reporting.php:3840 -#: ../../include/functions_reports.php:529 -#: ../../enterprise/include/functions_reporting_csv.php:665 -#: ../../enterprise/include/functions_reporting_csv.php:682 -#: ../../enterprise/include/functions_reporting_csv.php:689 -msgid "TTRT" -msgstr "TTRT" - -#: ../../include/functions_reporting.php:3906 -#: ../../include/functions_reporting.php:3984 -#: ../../include/functions_reporting.php:6348 -msgid "Maximum" -msgstr "Maximum" - -#: ../../include/functions_reporting.php:3981 -#: ../../include/functions_reporting.php:4126 -#: ../../include/functions_reporting.php:4267 -msgid "Lapse" -msgstr "Lapse" - -#: ../../include/functions_reporting.php:4050 -#: ../../include/functions_reporting.php:4129 -#: ../../include/functions_reporting.php:6345 -msgid "Minimum" -msgstr "Minimum" - -#: ../../include/functions_reporting.php:4192 -#: ../../include/functions_reporting.php:4270 -msgid "Average" -msgstr "Average" - -#: ../../include/functions_reporting.php:4420 -#: ../../enterprise/godmode/reporting/mysql_builder.php:142 -#: ../../enterprise/include/functions_reporting_csv.php:700 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:4496 -msgid "" -"Illegal query: Due security restrictions, there are some tokens or words you " -"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." -msgstr "" -"Illegal query: due to security restrictions, there are some tokens or words " -"you cannot use: *, delete, drop, alter, modify, password, pass, insert or " -"update." - -#: ../../include/functions_reporting.php:5390 -#: ../../include/functions_reporting.php:5633 -#: ../../include/functions_reports.php:600 -#: ../../enterprise/include/functions_reporting.php:1018 -#: ../../enterprise/include/functions_reporting_csv.php:258 -msgid "Availability" -msgstr "Availability" - -#: ../../include/functions_reporting.php:5501 -msgid "No Address" -msgstr "No address" - -#: ../../include/functions_reporting.php:6020 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/functions_reports.php:578 -#: ../../enterprise/include/functions_reporting_csv.php:845 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:861 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_pdf.php:363 -msgid "Increment" -msgstr "Increment" - -#: ../../include/functions_reporting.php:6074 -msgid "" -"The monitor have no data in this range of dates or monitor type is not " -"numeric" -msgstr "" -"The monitor has no data in this range of dates or monitor type is not " -"numeric." - -#: ../../include/functions_reporting.php:6096 -msgid "The monitor type is not numeric" -msgstr "The monitor type is not numeric." - -#: ../../include/functions_reporting.php:6352 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:195 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:278 -msgid "Rate" -msgstr "Rate" - -#: ../../include/functions_reporting.php:6411 -#: ../../include/functions_reporting.php:6560 -#: ../../include/functions_reports.php:499 -msgid "Simple graph" -msgstr "Simple graph" - -#: ../../include/functions_reporting.php:7016 -msgid "Maximum of events shown" -msgstr "Maximum number of displayed events" - -#: ../../include/functions_reporting.php:7656 -#: ../../include/functions_reporting.php:7693 -msgid "Server health" -msgstr "Server health" - -#: ../../include/functions_reporting.php:7656 -#, php-format -msgid "%d Downed servers" -msgstr "%d servers down" - -#: ../../include/functions_reporting.php:7664 -#: ../../include/functions_reporting.php:7696 -msgid "Monitor health" -msgstr "Monitor health" - -#: ../../include/functions_reporting.php:7664 -#, php-format -msgid "%d Not Normal monitors" -msgstr "%d not normal monitors" - -#: ../../include/functions_reporting.php:7666 -#: ../../include/functions_reporting.php:7697 -msgid "of monitors up" -msgstr "of monitors up" - -#: ../../include/functions_reporting.php:7672 -#: ../../include/functions_reporting.php:7699 -msgid "Module sanity" -msgstr "Module sanity" - -#: ../../include/functions_reporting.php:7672 -#, php-format -msgid "%d Not inited monitors" -msgstr "%d not initialised monitors" - -#: ../../include/functions_reporting.php:7674 -#: ../../include/functions_reporting.php:7700 -msgid "of total modules inited" -msgstr "of total modules initialised" - -#: ../../include/functions_reporting.php:7680 -#: ../../include/functions_reporting.php:7702 -#: ../../include/functions_reporting_html.php:2866 -msgid "Alert level" -msgstr "Alert level" - -#: ../../include/functions_reporting.php:7680 -#: ../../include/functions_reporting.php:8704 -#: ../../include/functions_reporting.php:8713 -#, php-format -msgid "%d Fired alerts" -msgstr "%d triggered alerts" - -#: ../../include/functions_reporting.php:7682 -#: ../../include/functions_reporting.php:7703 -msgid "of defined alerts not fired" -msgstr "of defined alerts not triggered" - -#: ../../include/functions_reporting.php:7740 -#: ../../enterprise/include/functions_reporting_csv.php:477 -msgid "Defined alerts" -msgstr "Defined alerts" - -#: ../../include/functions_reporting.php:7753 -#: ../../include/functions_reporting.php:7774 -#: ../../include/functions_graph.php:2589 ../../operation/tree.php:298 -#: ../../operation/tree.php:299 ../../operation/tree.php:300 -#: ../../enterprise/dashboard/widgets/tree_view.php:210 -#: ../../enterprise/dashboard/widgets/tree_view.php:211 -#: ../../enterprise/dashboard/widgets/tree_view.php:212 -#: ../../enterprise/include/functions_reporting_csv.php:478 -msgid "Fired alerts" -msgstr "Triggered alerts" - -#: ../../include/functions_reporting.php:7762 -msgid "Defined and fired alerts" -msgstr "Defined and triggered alerts" - -#: ../../include/functions_reporting.php:7821 -#: ../../operation/events/sound_events.php:84 -msgid "Monitor critical" -msgstr "Monitor in critical status" - -#: ../../include/functions_reporting.php:7825 -#: ../../operation/events/sound_events.php:86 -msgid "Monitor warning" -msgstr "Monitor in warning status" - -#: ../../include/functions_reporting.php:7832 -msgid "Monitor normal" -msgstr "Monitor in normal status" - -#: ../../include/functions_reporting.php:7836 -#: ../../operation/events/sound_events.php:85 -msgid "Monitor unknown" -msgstr "Monitor in unknown status" - -#: ../../include/functions_reporting.php:7843 -msgid "Monitor not init" -msgstr "Monitor not initialized" - -#: ../../include/functions_reporting.php:7867 -#: ../../include/functions_reporting.php:7878 -msgid "Monitors by status" -msgstr "Monitors by status" - -#: ../../include/functions_reporting.php:7925 -#: ../../include/functions_reporting_html.php:3584 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -msgid "Monitor checks" -msgstr "Monitor checks" - -#: ../../include/functions_reporting.php:7943 -#: ../../include/functions_reporting_html.php:3589 -msgid "Total agents and monitors" -msgstr "Total agents and monitors" - -#: ../../include/functions_reporting.php:7966 -msgid "Defined users" -msgstr "Defined users" - -#: ../../include/functions_reporting.php:8604 -msgid "Agent without data" -msgstr "Agent without data" - -#: ../../include/functions_reporting.php:8643 -#: ../../include/functions_agents.php:2229 -#: ../../include/functions_agents.php:2254 -#: ../../include/functions_agents.php:2279 -msgid "At least one module in CRITICAL status" -msgstr "At least one module is in CRITICAL status." - -#: ../../include/functions_reporting.php:8647 -#: ../../include/functions_agents.php:2233 -#: ../../include/functions_agents.php:2258 -#: ../../include/functions_agents.php:2283 -msgid "At least one module in WARNING status" -msgstr "At least one module is in WARNING status." - -#: ../../include/functions_reporting.php:8651 -#: ../../include/functions_agents.php:2237 -#: ../../include/functions_agents.php:2262 -#: ../../include/functions_agents.php:2287 -msgid "At least one module is in UKNOWN status" -msgstr "At least one module is in UNKNOWN status." - -#: ../../include/functions_reporting.php:8655 -#: ../../include/functions_agents.php:2241 -#: ../../include/functions_agents.php:2266 -#: ../../include/functions_agents.php:2291 -msgid "All Monitors OK" -msgstr "All monitors are OK" - -#: ../../include/functions_reporting.php:8691 -#: ../../include/functions_reporting.php:8699 -#: ../../enterprise/operation/agentes/tag_view.php:904 -#, php-format -msgid "%d Total modules" -msgstr "%d Total modules" - -#: ../../include/functions_reporting.php:8692 -#: ../../enterprise/operation/agentes/tag_view.php:905 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d Modules in normal status" - -#: ../../include/functions_reporting.php:8693 -#: ../../enterprise/operation/agentes/tag_view.php:906 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d Modules in critical status" - -#: ../../include/functions_reporting.php:8694 -#: ../../enterprise/operation/agentes/tag_view.php:907 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d Modules in warning status" - -#: ../../include/functions_reporting.php:8695 -#: ../../enterprise/operation/agentes/tag_view.php:908 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d Modules in unknown status" - -#: ../../include/functions_reporting.php:8696 -#: ../../enterprise/operation/agentes/tag_view.php:909 -#, php-format -msgid "%d Modules in not init status" -msgstr "%d Modules in not initialized status" - -#: ../../include/functions_reporting.php:8700 -#, php-format -msgid "%d Normal modules" -msgstr "%d normal modules" - -#: ../../include/functions_reporting.php:8701 -#, php-format -msgid "%d Critical modules" -msgstr "%d critical modules" - -#: ../../include/functions_reporting.php:8702 -#, php-format -msgid "%d Warning modules" -msgstr "%d warning modules" - -#: ../../include/functions_reporting.php:8703 -#, php-format -msgid "%d Unknown modules" -msgstr "%d modules in unknown status" - -#: ../../include/functions_reporting.php:8707 -#, php-format -msgid "%d Total agents" -msgstr "%d total agents" - -#: ../../include/functions_reporting.php:8708 -#, php-format -msgid "%d Normal agents" -msgstr "%d agents in normal status" - -#: ../../include/functions_reporting.php:8709 -#, php-format -msgid "%d Critical agents" -msgstr "%d agents in critical status" - -#: ../../include/functions_reporting.php:8710 -#, php-format -msgid "%d Warning agents" -msgstr "%d agents in warning status" - -#: ../../include/functions_reporting.php:8711 -#, php-format -msgid "%d Unknown agents" -msgstr "%d unknown agents" - -#: ../../include/functions_reporting.php:8712 -#, php-format -msgid "%d not init agents" -msgstr "%d not initialized agents" - -#: ../../include/functions_reporting.php:10414 -msgid "Total running modules" -msgstr "Total running modules" - -#: ../../include/functions_reporting.php:10417 -#: ../../include/functions_reporting.php:10433 -#: ../../include/functions_reporting.php:10449 -#: ../../include/functions_reporting.php:10472 -#: ../../include/functions_reporting.php:10491 -#: ../../include/functions_reporting.php:10503 -#: ../../include/functions_reporting.php:10515 -#: ../../include/functions_reporting.php:10531 -msgid "Ratio" -msgstr "Ratio" - -#: ../../include/functions_reporting.php:10417 -#: ../../include/functions_reporting.php:10433 -#: ../../include/functions_reporting.php:10449 -#: ../../include/functions_reporting.php:10472 -#: ../../include/functions_reporting.php:10491 -#: ../../include/functions_reporting.php:10503 -#: ../../include/functions_reporting.php:10515 -#: ../../include/functions_reporting.php:10531 -msgid "Modules by second" -msgstr "Modules by second" - -#: ../../include/functions_reporting.php:10429 -msgid "Local modules" -msgstr "Local modules" - -#: ../../include/functions_reporting.php:10440 -msgid "Remote modules" -msgstr "Remote modules" - -#: ../../include/functions_reporting.php:10464 -msgid "Network modules" -msgstr "Network modules" - -#: ../../include/functions_reporting.php:10487 -msgid "Plugin modules" -msgstr "Plugin modules" - -#: ../../include/functions_reporting.php:10499 -msgid "Prediction modules" -msgstr "Prediction modules" - -#: ../../include/functions_reporting.php:10511 -msgid "WMI modules" -msgstr "WMI modules" - -#: ../../include/functions_reporting.php:10523 -msgid "Web modules" -msgstr "Web modules" - -#: ../../include/functions_reporting.php:10585 -#: ../../enterprise/dashboard/widgets/tactical.php:39 -msgid "Server performance" -msgstr "Server performance" - -#: ../../include/functions_reporting.php:10667 -#: ../../enterprise/include/functions_reporting.php:5011 -msgid "Weekly:" -msgstr "Weekly:" - -#: ../../include/functions_reporting.php:10701 -#: ../../enterprise/include/functions_reporting.php:5045 -msgid "Monthly:" -msgstr "Monthly:" - -#: ../../include/functions_reporting.php:10702 -#: ../../enterprise/include/functions_reporting.php:5046 -msgid "From day" -msgstr "From (date):" - -#: ../../include/functions_reporting.php:10703 -#: ../../enterprise/include/functions_reporting.php:5047 -msgid "To day" -msgstr "To day" - -#: ../../include/functions_agents.php:690 -msgid "" -"There was an error copying the agent configuration, the copy has been " -"cancelled" -msgstr "" -"There was an error copying the agent configuration, the copy has been " -"cancelled." - -#: ../../include/functions_agents.php:2225 -#: ../../include/functions_agents.php:2250 -#: ../../include/functions_agents.php:2275 -msgid "No Monitors" -msgstr "No monitors" - -#: ../../include/functions_alerts.php:401 -#: ../../enterprise/include/functions_policies.php:456 -#: ../../enterprise/include/functions_policies.php:471 -msgid "copy" -msgstr "copy" - -#: ../../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_alerts.php:568 -msgid "Max and min" -msgstr "Max and min" - -#: ../../include/functions_alerts.php:571 -msgid "Equal to" -msgstr "Equal to" - -#: ../../include/functions_alerts.php:572 -msgid "Not equal to" -msgstr "Not equal to" - -#: ../../include/functions_alerts.php:575 -#: ../../enterprise/operation/agentes/wux_console_view.php:272 -#: ../../enterprise/operation/agentes/wux_console_view.php:276 -msgid "Unknown status" -msgstr "Unknown status" - -#: ../../include/functions_alerts.php:576 -msgid "On Change" -msgstr "On change" - -#: ../../include/functions_alerts.php:970 -#: ../../include/functions_network_components.php:507 -#: ../../enterprise/include/functions_local_components.php:284 -msgid "Copy of" -msgstr "Copy of" - -#: ../../include/functions_alerts.php:1401 -msgid "No actions defined" -msgstr "No actions defined" - -#: ../../include/functions_api.php:78 -msgid "No set or get or help operation." -msgstr "No 'set' or 'get' or 'help' operation" - -#: ../../include/functions_api.php:82 -msgid "This operation does not exist." -msgstr "This operation does not exist." - -#: ../../include/functions_api.php:86 -msgid "Id does not exist in BD." -msgstr "ID does not exist in BD" - -#: ../../include/functions_api.php:977 ../../include/functions_api.php:1037 -msgid "Does not exist agent with this name." -msgstr "There are no agents with this name." - -#: ../../include/functions_api.php:979 ../../include/functions_api.php:1039 -msgid "Does not exist module with this name." -msgstr "There are no modules with this name." - -#: ../../include/functions_api.php:1516 ../../include/functions_api.php:6477 -msgid "Correct Delete" -msgstr "Correctly deleted" - -#: ../../include/functions_api.php:2508 -msgid "Error in creation network module. Agent name doesn't exist." -msgstr "Error creating the network module: agent name does not exist." - -#: ../../include/functions_api.php:2514 -msgid "" -"Error in creation network module. Id_module_type is not correct for network " -"modules." -msgstr "" -"Error creating network module. 'Id_module_type' is incorrect for network " -"modules." - -#: ../../include/functions_api.php:2569 -msgid "Error in creation network module." -msgstr "Error creating network module" - -#: ../../include/functions_api.php:2602 -msgid "Error updating network module. Module name cannot be left blank." -msgstr "" -"Error updating the network module. The module name cannot be left blank." - -#: ../../include/functions_api.php:2610 -msgid "Error updating network module. Id_module doesn't exist." -msgstr "Error updating the network module. 'Id_module' does not exist." - -#: ../../include/functions_api.php:2625 -msgid "Error updating network module. Id_module exists in the new agent." -msgstr "" -"Error updating the network module. 'Id_module' exists for the new agent." - -#: ../../include/functions_api.php:2632 -msgid "Error updating network module. Id_agent doesn't exist." -msgstr "Error updating network module. Id_agent does not exist." - -#: ../../include/functions_api.php:2685 -msgid "Network module updated." -msgstr "Network module updated" - -#: ../../include/functions_api.php:2714 -msgid "Error in creation plugin module. Id_plugin cannot be left blank." -msgstr "Error creating the plugin module. 'id_plugin' cannot be left blank." - -#: ../../include/functions_api.php:2721 -msgid "Error in creation plugin module. Agent name doesn't exist." -msgstr "Error creating plugin module. Agent name does not exist." - -#: ../../include/functions_api.php:2781 -msgid "Error in creation plugin module." -msgstr "Error creating the plugin module" - -#: ../../include/functions_api.php:2812 -msgid "Error updating plugin module. Id_module cannot be left blank." -msgstr "Error updating the plugin module. 'Id_module' cannot be left blank." - -#: ../../include/functions_api.php:2819 -msgid "Error updating plugin module. Id_module doesn't exist." -msgstr "Error updating plugin module. 'Id_module' does not exist." - -#: ../../include/functions_api.php:2831 -msgid "Error updating plugin module. Id_module exists in the new agent." -msgstr "" -"Error updating the plugin module. 'Id_module' already exists in the new " -"agent." - -#: ../../include/functions_api.php:2838 -msgid "Error updating plugin module. Id_agent doesn't exist." -msgstr "Error updating plugin module. Id_agent does not exist." - -#: ../../include/functions_api.php:2899 -msgid "Plugin module updated." -msgstr "Plugin module successfully updated" - -#: ../../include/functions_api.php:2928 -msgid "Error in creation data module. Module_name cannot be left blank." -msgstr "Error creating the module data. 'Module_name' cannot be left blank." - -#: ../../include/functions_api.php:2935 -msgid "Error in creation data module. Agent name doesn't exist." -msgstr "Error creating module data. Agent name does not exist." - -#: ../../include/functions_api.php:2986 ../../include/functions_api.php:3052 -msgid "Error in creation data module." -msgstr "Error creating module data" - -#: ../../include/functions_api.php:3020 -msgid "Error in creation synthetic module. Module_name cannot be left blank." -msgstr "Error creating synthetic module. 'Module_name' cannot be left blank." - -#: ../../include/functions_api.php:3027 -msgid "Error in creation synthetic module. Agent name doesn't exist." -msgstr "Error creating synthetic module. Agent name does not exist." - -#: ../../include/functions_api.php:3164 -msgid "Synthetic module created ID: " -msgstr "Synthetic module ID created: " - -#: ../../include/functions_api.php:3195 -msgid "Error updating data module. Id_module cannot be left blank." -msgstr "Error updating module data. 'Id_module' cannot be left blank." - -#: ../../include/functions_api.php:3202 -msgid "Error updating data module. Id_module doesn't exist." -msgstr "Error updating module data. 'Id_module' does not exist." - -#: ../../include/functions_api.php:3214 -msgid "Error updating data module. Id_module exists in the new agent." -msgstr "Error updating module data. 'Id_module' exists in the new agent." - -#: ../../include/functions_api.php:3221 -msgid "Error updating data module. Id_agent doesn't exist." -msgstr "Error updating module data. Id_agent does not exist." - -#: ../../include/functions_api.php:3269 -msgid "Data module updated." -msgstr "Module data updated" - -#: ../../include/functions_api.php:3306 -msgid "Error in creation SNMP module. Module_name cannot be left blank." -msgstr "Error creating the SNMP module. 'Module_name' cannot be left blank." - -#: ../../include/functions_api.php:3311 -msgid "" -"Error in creation SNMP module. Invalid id_module_type for a SNMP module." -msgstr "" -"Error creating the SNMP module. Invalid 'id_module_type' for an SNMP module." - -#: ../../include/functions_api.php:3318 -msgid "Error in creation SNMP module. Agent name doesn't exist." -msgstr "Error in creation of SNMP module. Agent name does not exist." - -#: ../../include/functions_api.php:3333 ../../include/functions_api.php:3496 -#: ../../include/functions_api.php:5956 -msgid "" -"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"Error in creation of SNMP module. 'snmp3_priv_method' does not exist. Please " -"set it to 'AES' or 'DES'. " - -#: ../../include/functions_api.php:3338 ../../include/functions_api.php:3505 -#: ../../include/functions_api.php:5961 -msgid "" -"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Error in creation SNMP module. snmp3_sec_level does not exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:3343 ../../include/functions_api.php:3511 -#: ../../include/functions_api.php:5966 -msgid "" -"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"Error in creation SNMP module. snmp3_auth_method does not exist. Set it to " -"'MD5' or 'SHA'. " - -#: ../../include/functions_api.php:3427 -msgid "Error in creation SNMP module." -msgstr "Error creating the SNMP module" - -#: ../../include/functions_api.php:3460 -msgid "Error updating SNMP module. Id_module cannot be left blank." -msgstr "Error updating the SNMP module. 'Id_module' cannot be left blank." - -#: ../../include/functions_api.php:3467 -msgid "Error updating SNMP module. Id_module doesn't exist." -msgstr "Error updating SNMP module. 'Id_module' does not exist." - -#: ../../include/functions_api.php:3479 -msgid "Error updating SNMP module. Id_module exists in the new agent." -msgstr "" -"Error updating the SNMP module. 'Id_module' already exists for the new agent." - -#: ../../include/functions_api.php:3486 -msgid "Error updating snmp module. Id_agent doesn't exist." -msgstr "Error updating snmp module. Id_agent does not exist." - -#: ../../include/functions_api.php:3599 -msgid "SNMP module updated." -msgstr "SNMP module updated" - -#: ../../include/functions_api.php:3627 -msgid "" -"Error creating network component. Network component name cannot be left " -"blank." -msgstr "" -"Error creating a network component. The Network component name cannot be " -"left blank." - -#: ../../include/functions_api.php:3632 -msgid "" -"Error creating network component. Incorrect value for Network component type " -"field." -msgstr "" -"Error creating the network component. Incorrect value for the \"Network " -"component type\" field." - -#: ../../include/functions_api.php:3637 -msgid "" -"Error creating network component. Network component group cannot be left " -"blank." -msgstr "" -"Error creating the network component. The network component group cannot be " -"left blank." - -#: ../../include/functions_api.php:3673 -msgid "" -"Error creating network component. This network component already exists." -msgstr "" -"Error creating the network component. This network component already exists." - -#: ../../include/functions_api.php:3712 -msgid "" -"Error creating plugin component. Plugin component name cannot be left blank." -msgstr "" -"Error creating the plugin component. The plugin component name cannot be " -"left blank." - -#: ../../include/functions_api.php:3717 -msgid "Error creating plugin component. Incorrect value for Id plugin." -msgstr "" -"Error creating the plugin component. Incorrect value for the plugin ID." - -#: ../../include/functions_api.php:3722 -msgid "" -"Error creating plugin component. Plugin component group cannot be left blank." -msgstr "" -"Error creating plugin component. The plugin component group cannot be left " -"blank." - -#: ../../include/functions_api.php:3762 -msgid "" -"Error creating plugin component. This plugin component already exists." -msgstr "" -"Error creating the plugin component. This plugin component already exists." - -#: ../../include/functions_api.php:3800 -msgid "" -"Error creating SNMP component. SNMP component name cannot be left blank." -msgstr "" -"Error creating the SNMP component. The SNMP component name cannot be left " -"blank." - -#: ../../include/functions_api.php:3805 -msgid "" -"Error creating SNMP component. Incorrect value for Snmp component type field." -msgstr "" -"Error creating the SNMP component. Incorrect value for the SNMP component " -"type field." - -#: ../../include/functions_api.php:3810 -msgid "" -"Error creating SNMP component. Snmp component group cannot be left blank." -msgstr "" -"Error creating the SNMP component. The SNMP component group cannot be left " -"blank." - -#: ../../include/functions_api.php:3822 -msgid "" -"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"Error creating SNMP component. 'snmp3_priv_method' does not exist. Please " -"set it to 'AES' or 'DES'. " - -#: ../../include/functions_api.php:3831 -msgid "" -"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Error creating SNMP component. 'snmp3_sec_level' does not exist. Please set " -"it to 'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:3837 -msgid "" -"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"Error on creating SNMP component. 'snmp3_auth_method' does not exist. Please " -"set it to 'MD5' or 'SHA'. " - -#: ../../include/functions_api.php:3912 -msgid "Error creating SNMP component. This SNMP component already exists." -msgstr "" -"Error creating the SNMP component. This SNMP component already exists." - -#: ../../include/functions_api.php:3949 -msgid "" -"Error creating local component. Local component name cannot be left blank." -msgstr "" -"Error creating a local component. The local component name cannot be left " -"blank." - -#: ../../include/functions_api.php:3955 -msgid "" -"Error creating local component. Local component group cannot be left blank." -msgstr "" -"Error creating the local component. The local component group cannot be left " -"blank." - -#: ../../include/functions_api.php:3979 -msgid "Error creating local component." -msgstr "Error creating local component" - -#: ../../include/functions_api.php:3985 -msgid "Error creating local component. This local component already exists." -msgstr "" -"Error creating the local component. This local component already exists." - -#: ../../include/functions_api.php:4018 -msgid "" -"Error getting module value from all agents. Module name cannot be left blank." -msgstr "" -"Error retrieving the module value from all agents. The module name cannot be " -"left blank." - -#: ../../include/functions_api.php:4026 -msgid "" -"Error getting module value from all agents. Module name doesn't exist." -msgstr "" -"Error getting module value from all agents. Module name does not exist." - -#: ../../include/functions_api.php:4071 -msgid "Error creating alert template. Template name cannot be left blank." -msgstr "" -"Error creating the alert template. The template name cannot be left blank." - -#: ../../include/functions_api.php:4143 -msgid "Error creating alert template." -msgstr "Error creating the alert template" - -#: ../../include/functions_api.php:4174 -msgid "Error updating alert template. Id_template cannot be left blank." -msgstr "Error updating alert template. 'Id_template' cannot be left blank." - -#: ../../include/functions_api.php:4182 -msgid "Error updating alert template. Id_template doesn't exist." -msgstr "Error on updating alert template. 'Id_template' does not exist." - -#: ../../include/functions_api.php:4208 -msgid "Error updating alert template." -msgstr "Error updating the alert template" - -#: ../../include/functions_api.php:4213 -msgid "Correct updating of alert template" -msgstr "Alert template successfully updated" - -#: ../../include/functions_api.php:4237 -msgid "Error deleting alert template. Id_template cannot be left blank." -msgstr "" -"Error deleting the alert template. 'Id_template' cannot be left blank." - -#: ../../include/functions_api.php:4246 -msgid "Error deleting alert template." -msgstr "Error deleting the alert template" - -#: ../../include/functions_api.php:4250 -msgid "Correct deleting of alert template." -msgstr "Alert template successfully deleted" - -#: ../../include/functions_api.php:4287 -msgid "Error getting all alert templates." -msgstr "Error retrieving all alert templates" - -#: ../../include/functions_api.php:4319 -msgid "Error getting alert template. Id_template doesn't exist." -msgstr "Error retrieving alert template. 'Id_template' does not exist." - -#: ../../include/functions_api.php:4336 -msgid "Error getting alert template." -msgstr "Error retrieving the alert template" - -#: ../../include/functions_api.php:4375 -msgid "Error getting module groups." -msgstr "Error retrieving module groups" - -#: ../../include/functions_api.php:4420 -msgid "Error getting plugins." -msgstr "Error retrieving plugins" - -#: ../../include/functions_api.php:4443 -msgid "Error creating module from network component. Agent doesn't exist." -msgstr "Error creating module from network component. Agent does not exist." - -#: ../../include/functions_api.php:4450 -msgid "" -"Error creating module from network component. Network component doesn't " -"exist." -msgstr "" -"Error creating module from network component. Network component does not " -"exist." - -#: ../../include/functions_api.php:4468 -msgid "Error creating module from network component. Error creating module." -msgstr "Error creating the module from a network component" - -#: ../../include/functions_api.php:4495 -msgid "Error assigning module to template. Id_template cannot be left blank." -msgstr "" -"Error assigning the module to a template. 'id_template' cannot be left blank." - -#: ../../include/functions_api.php:4501 -msgid "Error assigning module to template. Id_module cannot be left blank." -msgstr "" -"Error assigning the module to a template. 'Id_module' cannot be left blank." - -#: ../../include/functions_api.php:4507 -msgid "Error assigning module to template. Id_agent cannot be left blank." -msgstr "" -"Error assigning the module to a template. 'Id_agent' cannot be left blank." - -#: ../../include/functions_api.php:4515 -msgid "Error assigning module to template. Id_template doensn't exists." -msgstr "" -"Error assigning the module to a template. 'Id_template' does not exist." - -#: ../../include/functions_api.php:4525 -msgid "Error assigning module to template. Id_agent doesn't exist." -msgstr "Error assigning module to template. 'Id_agent' does not exist." - -#: ../../include/functions_api.php:4532 -msgid "Error assigning module to template. Id_module doesn't exist." -msgstr "Error assigning module to template. 'Id_module' does not exist." - -#: ../../include/functions_api.php:4540 -msgid "Error assigning module to template." -msgstr "Error assigning the module to a template" - -#: ../../include/functions_api.php:4566 -msgid "" -"Error deleting module template. Id_module_template cannot be left blank." -msgstr "" -"Error deleting the module template. 'Id_module_template' cannot be left " -"blank." - -#: ../../include/functions_api.php:4573 -msgid "Error deleting module template. Id_module_template doesn't exist." -msgstr "Error deleting module template. 'Id_module_template' does not exist." - -#: ../../include/functions_api.php:4581 ../../include/functions_api.php:4640 -msgid "Error deleting module template." -msgstr "Error deleting module template" - -#: ../../include/functions_api.php:4584 ../../include/functions_api.php:4643 -msgid "Correct deleting of module template." -msgstr "Module template successfully deleted" - -#: ../../include/functions_api.php:4720 -msgid "Error validate all alerts. Failed " -msgstr "Error validating all alerts " - -#: ../../include/functions_api.php:4723 -msgid "Correct validating of all alerts." -msgstr "All alerts successfully validated" - -#: ../../include/functions_api.php:4750 -msgid "Error validating all alert policies." -msgstr "Error validating all policy alerts" - -#: ../../include/functions_api.php:4808 -msgid "Error validate all policy alerts. Failed " -msgstr "Error validating all policy alerts " - -#: ../../include/functions_api.php:4811 -msgid "Correct validating of all policy alerts." -msgstr "All policy alerts successfully validated" - -#: ../../include/functions_api.php:4834 -msgid "Error stopping downtime. Id_downtime cannot be left blank." -msgstr "Error stopping the downtime. 'Id_downtime' cannot be left blank." - -#: ../../include/functions_api.php:4850 -msgid "Downtime stopped." -msgstr "Downtime stopped" - -#: ../../include/functions_api.php:5165 -msgid "and this modules are doesn't exists or not applicable a this agents: " -msgstr "" -"and these modules do not exist or are not applicable to these agents: " - -#: ../../include/functions_api.php:5167 -msgid "and this agents are generate problems: " -msgstr "and these agents generate issues: " - -#: ../../include/functions_api.php:5169 -msgid "and this agents with ids are doesn't exists: " -msgstr "and these agents with IDs do not exist: " - -#: ../../include/functions_api.php:5196 -msgid "Error adding agent to policy. Id_policy cannot be left blank." -msgstr "" -"Error adding the agent to the policy. 'Id_policy' cannot be left blank." - -#: ../../include/functions_api.php:5201 -msgid "Error adding agent to policy. Id_agent cannot be left blank." -msgstr "" -"Error adding the agent to the policy. 'Id_agent' cannot be left blank." - -#: ../../include/functions_api.php:5209 -msgid "Error adding agent to policy. Id_agent doesn't exist." -msgstr "Error adding agent to policy. 'Id_agent' does not exist." - -#: ../../include/functions_api.php:5217 -msgid "Error adding agent to policy." -msgstr "Error adding the agent to the policy" - -#: ../../include/functions_api.php:5225 -msgid "Error adding agent to policy. The agent is already in the policy." -msgstr "" -"Error adding the agent to the policy. The agent is already in the policy." - -#: ../../include/functions_api.php:5260 -msgid "Error adding data module to policy. Id_policy cannot be left blank." -msgstr "" -"Error adding module data to the policy. 'Id_policy' cannot be left blank." - -#: ../../include/functions_api.php:5265 -msgid "Error adding data module to policy. Module_name cannot be left blank." -msgstr "" -"Error adding module data to the policy. 'Module_name' cannot be left blank." - -#: ../../include/functions_api.php:5273 -msgid "Error adding data module to policy." -msgstr "Error adding module data to the policy" - -#: ../../include/functions_api.php:5309 -msgid "" -"Error adding data module to policy. The module is already in the policy." -msgstr "" -"Error adding module data to the policy. The module is already in the policy." - -#: ../../include/functions_api.php:5349 -msgid "Error updating data module in policy. Id_policy cannot be left blank." -msgstr "" -"Error updating module data in the policy. 'Id_policy' cannot be left blank." - -#: ../../include/functions_api.php:5354 -msgid "" -"Error updating data module in policy. Id_policy_module cannot be left blank." -msgstr "" -"Error updating module data in policy. 'id_policy_module' cannot be left " -"blank." - -#: ../../include/functions_api.php:5362 -msgid "Error updating data module in policy. Module doesn't exist." -msgstr "Error updating module data in policy. Module does not exist." - -#: ../../include/functions_api.php:5368 -msgid "" -"Error updating data module in policy. Module type is not network type." -msgstr "" -"Error updating module data in the policy. The module type does not match the " -"network type." - -#: ../../include/functions_api.php:5397 -msgid "Data policy module updated." -msgstr "Data module policy updated" - -#: ../../include/functions_api.php:5426 -msgid "" -"Error adding network module to policy. Id_policy cannot be left blank." -msgstr "" -"Error adding the network module to the policy. 'Id_policy' cannot be left " -"blank." - -#: ../../include/functions_api.php:5432 -msgid "" -"Error adding network module to policy. Module_name cannot be left blank." -msgstr "" -"Error adding the network module to the policy. 'Module_name' cannot be left " -"blank." - -#: ../../include/functions_api.php:5438 -msgid "" -"Error adding network module to policy. Id_module_type is not correct for " -"network modules." -msgstr "" -"Error adding the network module to the policy. The 'id_module_type' is " -"incorrect for network modules." - -#: ../../include/functions_api.php:5448 -msgid "Error adding network module to policy." -msgstr "Error adding the network module to the policy" - -#: ../../include/functions_api.php:5486 -msgid "" -"Error adding network module to policy. The module is already in the policy." -msgstr "" -"Error adding the network module to the policy. The module is already in the " -"policy." - -#: ../../include/functions_api.php:5524 -msgid "" -"Error updating network module in policy. Id_policy cannot be left blank." -msgstr "" -"Error updating the network module in the policy. 'Id_policy' cannot be left " -"blank." - -#: ../../include/functions_api.php:5530 -msgid "" -"Error updating network module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" -"Error updating the network module in the policy. 'Id_policy_module' cannot " -"be left blank." - -#: ../../include/functions_api.php:5539 -msgid "Error updating network module in policy. Module doesn't exist." -msgstr "Error updating network module in policy. Module does not exist." - -#: ../../include/functions_api.php:5545 -msgid "" -"Error updating network module in policy. Module type is not network type." -msgstr "" -"Error updating the network module in the policy. The module type is not the " -"network type." - -#: ../../include/functions_api.php:5571 -msgid "Network policy module updated." -msgstr "Network policy module updated" - -#: ../../include/functions_api.php:5598 -msgid "Error adding plugin module to policy. Id_policy cannot be left blank." -msgstr "" -"Error adding the plugin module to the policy. 'Id_policy cannot be left " -"blank." - -#: ../../include/functions_api.php:5603 -msgid "" -"Error adding plugin module to policy. Module_name cannot be left blank." -msgstr "" -"Error adding the plugin module to the policy. 'Module_name' cannot be left " -"blank." - -#: ../../include/functions_api.php:5608 -msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." -msgstr "" -"Error adding the plugin module to the policy. 'Id_plugin' cannot be left " -"blank." - -#: ../../include/functions_api.php:5616 -msgid "Error adding plugin module to policy." -msgstr "Error adding the plugin module to the policy" - -#: ../../include/functions_api.php:5659 -msgid "" -"Error adding plugin module to policy. The module is already in the policy." -msgstr "" -"Error adding the plugin module to the policy. The module is already in the " -"policy." - -#: ../../include/functions_api.php:5698 -msgid "" -"Error updating plugin module in policy. Id_policy cannot be left blank." -msgstr "" -"Error updating the plugin module in the policy. 'Id_policy' cannot be left " -"blank" - -#: ../../include/functions_api.php:5704 -msgid "" -"Error updating plugin module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" -"Error updating the plugin module in the policy. 'Id_policy_module' cannot be " -"left blank." - -#: ../../include/functions_api.php:5713 -msgid "Error updating plugin module in policy. Module doesn't exist." -msgstr "Error on updating plugin module in policy. Module does not exist." - -#: ../../include/functions_api.php:5719 -msgid "" -"Error updating plugin module in policy. Module type is not network type." -msgstr "" -"Error updating the plugin module in the policy. The module type is not the " -"network type." - -#: ../../include/functions_api.php:5751 -msgid "Plugin policy module updated." -msgstr "Plugin policy module updated" - -#: ../../include/functions_api.php:5926 -msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -msgstr "" -"Error adding the SNMP module to the policy. 'Id_policy' cannot be left blank." - -#: ../../include/functions_api.php:5931 -msgid "Error adding SNMP module to policy. Module_name cannot be left blank." -msgstr "" -"Error adding the SNMP module to the policy. 'Module_name' cannot be left " -"blank." - -#: ../../include/functions_api.php:5939 -msgid "Error adding SNMP module to policy." -msgstr "Error adding the SNMP module to the policy" - -#: ../../include/functions_api.php:5944 -msgid "" -"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " -"modules." -msgstr "" -"Error adding the SNMP module to the policy. 'Id_module_type' is incorrect " -"for SNMP modules." - -#: ../../include/functions_api.php:6038 -msgid "" -"Error adding SNMP module to policy. The module is already in the policy." -msgstr "" -"Error adding the SNMP module to the policy. The module is already in the " -"policy." - -#: ../../include/functions_api.php:6077 -msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." -msgstr "" -"Error updating the SNMP module in the policy. 'Id_policy' cannot be left " -"blank." - -#: ../../include/functions_api.php:6082 -msgid "" -"Error updating SNMP module in policy. Id_policy_module cannot be left blank." -msgstr "" -"Error updating the SNMP module in the policy. 'Id_policy_module' cannot be " -"left blank." - -#: ../../include/functions_api.php:6090 -msgid "Error updating SNMP module in policy. Module doesn't exist." -msgstr "Error on updating SNMP module in policy. Module does not exist." - -#: ../../include/functions_api.php:6095 -msgid "Error updating SNMP module in policy. Module type is not SNMP type." -msgstr "Error updating SNMP module in policy. Module type is not SNMP type." - -#: ../../include/functions_api.php:6105 -msgid "" -"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " -"or 'DES'. " -msgstr "" -"Error updating SNMP module. 'snmp3_priv_method' does not exist. Please set " -"it to 'AES' or 'DES'. " - -#: ../../include/functions_api.php:6115 -msgid "" -"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Error on updating SNMP module. 'snmp3_sec_level' does not exist. Please set " -"it to 'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:6122 -msgid "" -"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " -"or 'SHA'. " -msgstr "" -"Error on updating SNMP module. 'snmp3_auth_method' does not exist. Please " -"set it to 'MD5' or 'SHA'. " - -#: ../../include/functions_api.php:6162 -msgid "SNMP policy module updated." -msgstr "The SNMP policy module has been updated." - -#: ../../include/functions_api.php:6185 -msgid "Error applying policy. Id_policy cannot be left blank." -msgstr "Error applying the policy. 'Id_policy' cannot be left blank." - -#: ../../include/functions_api.php:6198 ../../include/functions_api.php:6223 -msgid "Error applying policy." -msgstr "Error applying policy" - -#: ../../include/functions_api.php:6210 -msgid "Error applying policy. This policy is already pending to apply." -msgstr "" -"Error applying the policy. The application of this policy is still pending." - -#: ../../include/functions_api.php:6268 -msgid "Error applying all policies." -msgstr "Error applying all policies" - -#: ../../include/functions_api.php:6320 -msgid "Error in group creation. Group_name cannot be left blank." -msgstr "Error with group creation. 'Group_name' cannot be left blank." - -#: ../../include/functions_api.php:6326 -msgid "Error in group creation. Icon_name cannot be left blank." -msgstr "Error creating group. 'Icon_name' cannot be left blank." - -#: ../../include/functions_api.php:6339 ../../include/functions_api.php:6515 -msgid "Error in group creation. Id_parent_group doesn't exist." -msgstr "Error on group creation. 'Id_parent_group' does not exist." - -#: ../../include/functions_api.php:6367 -msgid "Error in group creation." -msgstr "Error creating group" - -#: ../../include/functions_api.php:6503 -msgid "Error in netflow filter creation. Filter name cannot be left blank." -msgstr "Error creating NetFlow filter. The filter name cannot be left blank." - -#: ../../include/functions_api.php:6508 -msgid "Error in netflow filter creation. Group id cannot be left blank." -msgstr "Error creating the NetFlow filter. Group ID cannot be left blank." - -#: ../../include/functions_api.php:6521 -msgid "Error in netflow filter creation. Filter cannot be left blank." -msgstr "Error creating NetFlow filter. Filter cannot be left blank." - -#: ../../include/functions_api.php:6526 -msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." -msgstr "Error creating NetFlow filter. 'Aggregate_by' cannot be left blank" - -#: ../../include/functions_api.php:6531 -msgid "Error in netflow filter creation. Output_format cannot be left blank." -msgstr "Error creating NetFlow filter. 'Output_format' cannot be left blank." - -#: ../../include/functions_api.php:6549 -msgid "Error in netflow filter creation." -msgstr "Error creating NetFlow filter." - -#: ../../include/functions_api.php:6733 -msgid "Create user." -msgstr "Create user" - -#: ../../include/functions_api.php:6772 -msgid "Error updating user. Id_user cannot be left blank." -msgstr "User update error. 'Id_user' cannot be left blank." - -#: ../../include/functions_api.php:6780 -msgid "Error updating user. Id_user doesn't exist." -msgstr "Error updating user. 'Id_user' does not exist." - -#: ../../include/functions_api.php:6796 -msgid "Error updating user. Password info incorrect." -msgstr "Error updating user. Password information is incorrect." - -#: ../../include/functions_api.php:6804 -msgid "Updated user." -msgstr "User updated" - -#: ../../include/functions_api.php:6835 -msgid "Error enable/disable user. Id_user cannot be left blank." -msgstr "Error enabling/disabling user. 'Id_user' cannot be left blank." - -#: ../../include/functions_api.php:6842 -msgid "Error enable/disable user. Enable/disable value cannot be left blank." -msgstr "" -"Error enabling/disabling user. Enable/disable value cannot be left blank." - -#: ../../include/functions_api.php:6848 -msgid "Error enable/disable user. The user doesn't exist." -msgstr "Error enable/disable user. The user does not exist." - -#: ../../include/functions_api.php:6857 -msgid "Error in user enabling/disabling." -msgstr "Error enabling/disabling user" - -#: ../../include/functions_api.php:6862 -msgid "Enabled user." -msgstr "User enabled" - -#: ../../include/functions_api.php:6866 -msgid "Disabled user." -msgstr "User disabled" - -#: ../../include/functions_api.php:8330 -msgid "Delete user." -msgstr "Delete user" - -#: ../../include/functions_api.php:8359 -msgid "Add user profile." -msgstr "Add user profile" - -#: ../../include/functions_api.php:8392 -msgid "Delete user profile." -msgstr "Delete user profile" - -#: ../../include/functions_api.php:8490 -msgid "Correct module disable" -msgstr "Module successfully disabled" - -#: ../../include/functions_api.php:8493 -msgid "Error disabling module" -msgstr "Error disabling module" - -#: ../../include/functions_api.php:8519 -msgid "Correct module enable" -msgstr "Module successfully enabled" - -#: ../../include/functions_api.php:8522 -msgid "Error enabling module" -msgstr "Error enabling module" - -#: ../../include/functions_api.php:8554 ../../include/functions_api.php:8592 -msgid "Error alert disable" -msgstr "Error disabling alert" - -#: ../../include/functions_api.php:8624 ../../include/functions_api.php:8661 -msgid "Error alert enable" -msgstr "Error enabling alert" - -#: ../../include/functions_api.php:9217 -msgid "Error adding event comment." -msgstr "Error adding an event comment" - -#: ../../include/functions_api.php:9454 -msgid "Error enable/disable agent. Id_agent cannot be left blank." -msgstr "Error enabling/disabling agent. 'Id_agent' cannot be left blank." - -#: ../../include/functions_api.php:9461 -msgid "" -"Error enable/disable agent. Enable/disable value cannot be left blank." -msgstr "" -"Error enabling/disabling agent. Enable/disable value cannot be left blank." - -#: ../../include/functions_api.php:9467 -msgid "Error enable/disable agent. The agent doesn't exist." -msgstr "Error enable/disable agent. The agent does not exist." - -#: ../../include/functions_api.php:9478 -msgid "Error in agent enabling/disabling." -msgstr "Error enabling/disabling agent" - -#: ../../include/functions_api.php:9484 -msgid "Enabled agent." -msgstr "Agent enabled" - -#: ../../include/functions_api.php:9489 -msgid "Disabled agent." -msgstr "Agent disabled" - -#: ../../include/functions_api.php:9585 -msgid "Error getting special_days." -msgstr "Error obtaining special_days" - -#: ../../include/functions_api.php:9620 -msgid "Error creating special day. Specified day already exists." -msgstr "Error creating the special day. The specified day already exists." - -#: ../../include/functions_api.php:9625 -msgid "Error creating special day. Invalid date format." -msgstr "Error creating the special day. Invalid date format." - -#: ../../include/functions_api.php:9637 -msgid "Error in creation special day." -msgstr "Error creating the special day" - -#: ../../include/functions_api.php:9677 -msgid "Error in creation service. No name" -msgstr "Error creating service. No name." - -#: ../../include/functions_api.php:9691 -msgid "Error in creation service. No agent id" -msgstr "Error creating service. No agent ID." - -#: ../../include/functions_api.php:9719 -msgid "Error in creation service" -msgstr "Error creating service" - -#: ../../include/functions_api.php:9744 -msgid "Error in update service. No service id" -msgstr "Error updating service. No service ID." - -#: ../../include/functions_api.php:9810 -msgid "Error in update service" -msgstr "Error updating service" - -#: ../../include/functions_api.php:9838 -msgid "Error adding elements to service. No service id" -msgstr "Error adding elements to service. No service ID." - -#: ../../include/functions_api.php:9891 -msgid "Error adding elements to service" -msgstr "Error adding elements to service" - -#: ../../include/functions_api.php:9921 -msgid "Error updating special day. Id cannot be left blank." -msgstr "Error updating the special day. The ID cannot be left blank." - -#: ../../include/functions_api.php:9928 -msgid "Error updating special day. Id doesn't exist." -msgstr "Error updating special day. ID does not exist." - -#: ../../include/functions_api.php:9933 -msgid "Error updating special day. Invalid date format." -msgstr "Error updating the special day. Invalid date format." - -#: ../../include/functions_api.php:9967 -msgid "Error deleting special day. Id cannot be left blank." -msgstr "Error deleting the special day. The ID cannot be left blank." - -#: ../../include/functions_api.php:9974 -msgid "Error deleting special day. Id doesn't exist." -msgstr "Error deleting the special day. ID does not exist." - -#: ../../include/functions_api.php:9981 -msgid "Error in deletion special day." -msgstr "Error deleting the special day." - -#: ../../include/functions_api.php:10133 -#: ../../enterprise/meta/advanced/license_meta.php:40 -msgid "Metaconsole and all nodes license updated" -msgstr "Metaconsole and all nodes license updated" - -#: ../../include/functions_api.php:10136 -#: ../../enterprise/meta/advanced/license_meta.php:43 -#, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "Metaconsole license updated but %d of %d node synchronization failed" - -#: ../../include/functions_api.php:10140 -msgid "This function is only for metaconsole" -msgstr "This function is only for Metaconsole" - -#: ../../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_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 want to exit the help tour?" - -#: ../../include/functions_pandora_networkmap.php:107 -#: ../../include/functions_pandora_networkmap.php:214 -#: ../../mobile/operation/networkmap.php:110 -#: ../../mobile/operation/networkmap.php:129 -#: ../../mobile/operation/networkmap.php:146 -#: ../../operation/agentes/networkmap.dinamic.php:190 -#: ../../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:998 -#, php-format -msgid "Edit node %s" -msgstr "Edit node %s" - -#: ../../include/functions_pandora_networkmap.php:999 -msgid "Holding Area" -msgstr "Holding area" - -#: ../../include/functions_pandora_networkmap.php:1000 -msgid "Show details and options" -msgstr "Show details and options" - -#: ../../include/functions_pandora_networkmap.php:1001 -msgid "Add a interface link" -msgstr "Add an interface link" - -#: ../../include/functions_pandora_networkmap.php:1002 -msgid "Set parent interface" -msgstr "Set parent interface" - -#: ../../include/functions_pandora_networkmap.php:1003 -msgid "Set as children" -msgstr "Define as children element" - -#: ../../include/functions_pandora_networkmap.php:1004 -msgid "Set parent" -msgstr "Define as parent element" - -#: ../../include/functions_pandora_networkmap.php:1005 -#: ../../include/functions_pandora_networkmap.php:1018 -msgid "Abort the action of set relationship" -msgstr "Abort the action of relationship configuration" - -#: ../../include/functions_pandora_networkmap.php:1007 -#: ../../include/functions_pandora_networkmap.php:1793 -msgid "Add node" -msgstr "Add node" - -#: ../../include/functions_pandora_networkmap.php:1008 -msgid "Set center" -msgstr "Set center" - -#: ../../include/functions_pandora_networkmap.php:1010 -msgid "Refresh Holding area" -msgstr "Refresh holding area" - -#: ../../include/functions_pandora_networkmap.php:1011 -#: ../../include/functions_pandora_networkmap.php:1014 -msgid "Proceed" -msgstr "Proceed" - -#: ../../include/functions_pandora_networkmap.php:1012 -msgid "" -"Resetting the map will delete all customizations you have done, including " -"manual relationships between elements, new items, etc." -msgstr "" -"Resetting the map will delete all customization you have done, including " -"manual relationships between elements, new items, etc." - -#: ../../include/functions_pandora_networkmap.php:1016 -msgid "Restart map" -msgstr "Restart map" - -#: ../../include/functions_pandora_networkmap.php:1017 -msgid "Abort the interface relationship" -msgstr "Abort the interface relationship" - -#: ../../include/functions_pandora_networkmap.php:1201 -#: ../../include/functions_maps.php:62 -msgid "Copy of " -msgstr "Copy of " - -#: ../../include/functions_pandora_networkmap.php:1524 -msgid "Open Minimap" -msgstr "Open Minimap" - -#: ../../include/functions_pandora_networkmap.php:1531 -msgid "Hide Labels" -msgstr "Hide labels" - -#: ../../include/functions_pandora_networkmap.php:1621 -msgid "Edit node" -msgstr "Edit node" - -#: ../../include/functions_pandora_networkmap.php:1632 -#: ../../enterprise/include/ajax/clustermap.php:40 -msgid "Adresses" -msgstr "Addresses" - -#: ../../include/functions_pandora_networkmap.php:1634 -msgid "OS type" -msgstr "OS type" - -#: ../../include/functions_pandora_networkmap.php:1639 -#: ../../include/functions_pandora_networkmap.php:1640 -#: ../../enterprise/include/ajax/clustermap.php:50 -#: ../../enterprise/include/ajax/clustermap.php:51 -msgid "Node Details" -msgstr "Node details" - -#: ../../include/functions_pandora_networkmap.php:1649 -msgid "Ip" -msgstr "IP" - -#: ../../include/functions_pandora_networkmap.php:1650 -msgid "MAC" -msgstr "MAC" - -#: ../../include/functions_pandora_networkmap.php:1659 -#: ../../include/functions_pandora_networkmap.php:1660 -msgid "Interface Information (SNMP)" -msgstr "Interface Information (SNMP)" - -#: ../../include/functions_pandora_networkmap.php:1667 -msgid "Shape" -msgstr "Shape" - -#: ../../include/functions_pandora_networkmap.php:1669 -msgid "Circle" -msgstr "Circle" - -#: ../../include/functions_pandora_networkmap.php:1670 -msgid "Square" -msgstr "Square" - -#: ../../include/functions_pandora_networkmap.php:1671 -msgid "Rhombus" -msgstr "Rhombus" - -#: ../../include/functions_pandora_networkmap.php:1681 -msgid "name node" -msgstr "Name node" - -#: ../../include/functions_pandora_networkmap.php:1683 -msgid "Update node" -msgstr "Update node" - -#: ../../include/functions_pandora_networkmap.php:1688 -#: ../../include/functions_pandora_networkmap.php:1849 -msgid "name fictional node" -msgstr "Name fictional node" - -#: ../../include/functions_pandora_networkmap.php:1689 -#: ../../include/functions_pandora_networkmap.php:1850 -msgid "Networkmap to link" -msgstr "Networkmap to link" - -#: ../../include/functions_pandora_networkmap.php:1695 -msgid "Update fictional node" -msgstr "Update fictional node" - -#: ../../include/functions_pandora_networkmap.php:1698 -#: ../../include/functions_pandora_networkmap.php:1699 -msgid "Node options" -msgstr "Node Options" - -#: ../../include/functions_pandora_networkmap.php:1706 -#: ../../include/functions_pandora_networkmap.php:1761 -msgid "Node source" -msgstr "Node source" - -#: ../../include/functions_pandora_networkmap.php:1707 -#: ../../include/functions_pandora_networkmap.php:1762 -msgid "Interface source" -msgstr "Interface source" - -#: ../../include/functions_pandora_networkmap.php:1708 -#: ../../include/functions_pandora_networkmap.php:1763 -msgid "Interface Target" -msgstr "Interface target" - -#: ../../include/functions_pandora_networkmap.php:1710 -#: ../../include/functions_pandora_networkmap.php:1764 -msgid "Node target" -msgstr "Node target" - -#: ../../include/functions_pandora_networkmap.php:1711 -msgid "E." -msgstr "E." - -#: ../../include/functions_pandora_networkmap.php:1742 -msgid "There are not relations" -msgstr "There are no relations." - -#: ../../include/functions_pandora_networkmap.php:1749 -#: ../../include/functions_pandora_networkmap.php:1750 -msgid "Relations" -msgstr "Relations" - -#: ../../include/functions_pandora_networkmap.php:1785 -msgid "Add interface link" -msgstr "Add interface link" - -#: ../../include/functions_pandora_networkmap.php:1812 -#: ../../include/functions_pandora_networkmap.php:1816 -#: ../../include/functions_pandora_networkmap.php:1817 -#: ../../include/functions_pandora_networkmap.php:1837 -#: ../../include/functions_pandora_networkmap.php:1842 -#: ../../include/functions_pandora_networkmap.php:1860 -msgid "Add agent node" -msgstr "Add agent node" - -#: ../../include/functions_pandora_networkmap.php:1841 -msgid "Add agent node (filter by group)" -msgstr "Add agent node (filter by group)" - -#: ../../include/functions_pandora_networkmap.php:1856 -msgid "Add fictional node" -msgstr "Add fictional node" - -#: ../../include/functions_pandora_networkmap.php:1859 -msgid "Add fictional point" -msgstr "Add fictional point" - -#: ../../include/functions_treeview.php:54 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1347 -msgid "There was a problem loading module" -msgstr "Error loading the module" - -#: ../../include/functions_treeview.php:285 -#: ../../include/functions_treeview.php:292 -#: ../../include/functions_ui.php:3830 ../../include/functions_ui.php:3837 -#: ../../mobile/operation/modules.php:610 -#: ../../mobile/operation/modules.php:617 -#: ../../operation/agentes/estado_agente.php:123 -#: ../../operation/agentes/status_monitor.php:1377 -#: ../../operation/agentes/status_monitor.php:1384 -#: ../../enterprise/include/functions_services.php:1658 -#: ../../enterprise/include/functions_ux_console.php:441 -#: ../../enterprise/operation/agentes/tag_view.php:723 -#: ../../enterprise/operation/agentes/tag_view.php:730 -#: ../../enterprise/operation/agentes/ux_console_view.php:116 -#: ../../enterprise/operation/agentes/ux_console_view.php:285 -#: ../../enterprise/operation/agentes/ux_console_view.php:358 -#: ../../enterprise/operation/agentes/wux_console_view.php:259 -msgid "Snapshot view" -msgstr "Command Snapshot view" - -#: ../../include/functions_treeview.php:300 -#: ../../include/functions_visual_map.php:2805 -#: ../../include/functions_visual_map.php:2815 -#: ../../include/graphs/functions_flot.php:631 -#: ../../enterprise/godmode/reporting/cluster_view.php:325 -#: ../../enterprise/godmode/reporting/cluster_view.php:402 -#: ../../enterprise/godmode/reporting/cluster_list.php:240 -msgid "No data" -msgstr "No data" - -#: ../../include/functions_treeview.php:304 -#: ../../include/functions_reporting_html.php:70 -#: ../../include/functions_reporting_html.php:3496 -#: ../../enterprise/include/functions_reporting_pdf.php:2341 -#: ../../enterprise/include/functions_reporting_pdf.php:2379 -msgid "Last data" -msgstr "Last data" - -#: ../../include/functions_treeview.php:319 -msgid "Go to module edition" -msgstr "Go to module edition" - -#: ../../include/functions_treeview.php:368 -msgid "There was a problem loading alerts" -msgstr "Error loading the alerts" - -#: ../../include/functions_treeview.php:452 -msgid "Go to alerts edition" -msgstr "Go to alerts edition" - -#: ../../include/functions_treeview.php:512 -#: ../../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 "Error loading agent" - -#: ../../include/functions_treeview.php:577 -#: ../../operation/agentes/estado_generalagente.php:297 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1102 -msgid "Other IP addresses" -msgstr "Other IP addresses" - -#: ../../include/functions_treeview.php:608 -#: ../../operation/agentes/estado_agente.php:546 -#: ../../operation/agentes/estado_generalagente.php:234 -#: ../../operation/gis_maps/ajax.php:332 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../enterprise/operation/agentes/tag_view.php:464 -msgid "Remote" -msgstr "Remote" - -#: ../../include/functions_treeview.php:616 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1170 -msgid "Next agent contact" -msgstr "Next agent contact" - -#: ../../include/functions_treeview.php:626 -msgid "Go to agent edition" -msgstr "Go to agent edition" - -#: ../../include/functions_treeview.php:635 -msgid "Agent data" -msgstr "Agent data" - -#: ../../include/functions_treeview.php:648 -#: ../../operation/agentes/estado_generalagente.php:188 -#: ../../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:665 -#: ../../operation/agentes/estado_generalagente.php:339 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1124 -msgid "Position (Long, Lat)" -msgstr "Position (Long, Lat)" - -#: ../../include/functions_treeview.php:682 -#: ../../operation/agentes/estado_generalagente.php:367 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1164 -msgid "Timezone Offset" -msgstr "Timezone Offset" - -#: ../../include/functions_treeview.php:697 -#: ../../operation/agentes/agent_fields.php:45 -#: ../../operation/agentes/estado_generalagente.php:383 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1180 -msgid "Custom field" -msgstr "Custom field" - -#: ../../include/functions_treeview.php:708 -msgid "Advanced information" -msgstr "Advanced information" - -#: ../../include/functions_treeview.php:720 -#: ../../operation/agentes/estado_generalagente.php:285 -msgid "Agent access rate (24h)" -msgstr "Agent access rate (24h)" - -#: ../../include/functions_treeview.php:728 -#: ../../mobile/operation/agent.php:247 -#: ../../operation/agentes/estado_generalagente.php:631 -msgid "Events (24h)" -msgstr "Events (24h)" - -#: ../../include/functions_treeview.php:780 -#: ../../operation/agentes/estado_generalagente.php:507 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1023 -msgid "Interface traffic" -msgstr "Interface traffic" - -#: ../../include/functions_treeview.php:802 -#: ../../operation/agentes/estado_generalagente.php:477 -msgid "Interface information" -msgstr "Interface information" - -#: ../../include/functions_config.php:94 -msgid "Failed updated: User did not login." -msgstr "Error updating: user did not sign in" - -#: ../../include/functions_config.php:102 -msgid "Failed updated: User is not admin." -msgstr "Update failed: user is not an 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 IMS issues in the Pandora FMS Console" - -#: ../../include/functions_config.php:156 -msgid "Integria inventory" -msgstr "Integria IMS inventory" - -#: ../../include/functions_config.php:158 -msgid "Integria API password" -msgstr "Integria IMS API password" - -#: ../../include/functions_config.php:160 -msgid "Integria URL" -msgstr "Integria IMS URL" - -#: ../../include/functions_config.php:184 -msgid "License information" -msgstr "License information" - -#: ../../include/functions_config.php:204 -msgid "Limit parameters bulk" -msgstr "Limit of bulk operations" - -#: ../../include/functions_config.php:206 -msgid "Identification_reminder" -msgstr "Identification_reminder" - -#: ../../include/functions_config.php:208 -msgid "Include_agents" -msgstr "Include_agents" - -#: ../../include/functions_config.php:210 -msgid "alias_as_name" -msgstr "alias_as_name" - -#: ../../include/functions_config.php:212 -msgid "Audit log directory" -msgstr "Audit log directory" - -#: ../../include/functions_config.php:217 -#: ../../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:219 -#: ../../enterprise/godmode/setup/setup.php:38 -msgid "Use Enterprise ACL System" -msgstr "Use Enterprise ACL System" - -#: ../../include/functions_config.php:221 -#: ../../enterprise/meta/include/functions_meta.php:327 -msgid "Activate Metaconsole" -msgstr "Activate Metaconsole" - -#: ../../include/functions_config.php:223 -#: ../../enterprise/godmode/setup/setup.php:47 -msgid "Size of collection" -msgstr "Collection size" - -#: ../../include/functions_config.php:225 -#: ../../enterprise/godmode/setup/setup.php:54 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:384 -msgid "Events replication" -msgstr "Event replication" - -#: ../../include/functions_config.php:228 -#: ../../enterprise/godmode/setup/setup.php:63 -msgid "Replication interval" -msgstr "Replication interval" - -#: ../../include/functions_config.php:230 -#: ../../enterprise/godmode/setup/setup.php:70 -msgid "Replication limit" -msgstr "Replication limit" - -#: ../../include/functions_config.php:232 -#: ../../enterprise/godmode/setup/setup.php:89 -msgid "Replication mode" -msgstr "Replication mode" - -#: ../../include/functions_config.php:234 -#: ../../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:237 -msgid "Replication DB engine" -msgstr "Replication DB engine" - -#: ../../include/functions_config.php:239 -msgid "Replication DB host" -msgstr "Replication DB host" - -#: ../../include/functions_config.php:241 -msgid "Replication DB database" -msgstr "Replication DB database" - -#: ../../include/functions_config.php:243 -msgid "Replication DB user" -msgstr "Replication DB user" - -#: ../../include/functions_config.php:245 -msgid "Replication DB password" -msgstr "Replication DB password" - -#: ../../include/functions_config.php:247 -msgid "Replication DB port" -msgstr "Replication DB port" - -#: ../../include/functions_config.php:249 -msgid "Metaconsole agent cache" -msgstr "Metaconsole agent cache" - -#: ../../include/functions_config.php:251 -#: ../../enterprise/godmode/setup/setup.php:203 -msgid "Activate Log Collector" -msgstr "Activate Log Collector" - -#: ../../include/functions_config.php:255 -#: ../../enterprise/godmode/setup/setup.php:147 -msgid "Inventory changes blacklist" -msgstr "Inventory change blacklist" - -#: ../../include/functions_config.php:258 -#: ../../enterprise/godmode/setup/setup.php:244 -#: ../../enterprise/meta/advanced/metasetup.mail.php:84 -msgid "From dir" -msgstr "From dir" - -#: ../../include/functions_config.php:260 -#: ../../enterprise/godmode/setup/setup.php:247 -#: ../../enterprise/meta/advanced/metasetup.mail.php:87 -msgid "From name" -msgstr "From name" - -#: ../../include/functions_config.php:262 -#: ../../enterprise/godmode/setup/setup.php:250 -#: ../../enterprise/meta/advanced/metasetup.mail.php:90 -msgid "Server SMTP" -msgstr "Server SMTP" - -#: ../../include/functions_config.php:264 -#: ../../enterprise/godmode/setup/setup.php:253 -#: ../../enterprise/meta/advanced/metasetup.mail.php:93 -msgid "Port SMTP" -msgstr "Port SMTP" - -#: ../../include/functions_config.php:266 -#: ../../enterprise/godmode/setup/setup.php:256 -msgid "Encryption" -msgstr "Encryption" - -#: ../../include/functions_config.php:268 -#: ../../enterprise/godmode/setup/setup.php:259 -#: ../../enterprise/meta/advanced/metasetup.mail.php:96 -msgid "Email user" -msgstr "Email user" - -#: ../../include/functions_config.php:270 -#: ../../enterprise/godmode/setup/setup.php:262 -#: ../../enterprise/meta/advanced/metasetup.mail.php:99 -msgid "Email password" -msgstr "Email password" - -#: ../../include/functions_config.php:277 -#: ../../enterprise/godmode/setup/setup.php:287 -#: ../../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:280 -#: ../../enterprise/godmode/setup/setup.php:292 -#: ../../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:282 -#: ../../enterprise/godmode/setup/setup.php:306 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/meta/include/functions_meta.php:539 -msgid "Password expiration" -msgstr "Password expiration" - -#: ../../include/functions_config.php:284 -#: ../../enterprise/godmode/setup/setup.php:310 -#: ../../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:286 -#: ../../enterprise/godmode/setup/setup.php:315 -#: ../../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:288 -#: ../../enterprise/godmode/setup/setup.php:319 -#: ../../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:290 -#: ../../enterprise/godmode/setup/setup.php:296 -#: ../../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:292 -#: ../../enterprise/godmode/setup/setup.php:301 -#: ../../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:294 -#: ../../enterprise/godmode/setup/setup.php:324 -#: ../../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:296 -#: ../../enterprise/godmode/setup/setup.php:329 -#: ../../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:298 -#: ../../enterprise/godmode/setup/setup.php:334 -#: ../../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:300 -#: ../../enterprise/godmode/setup/setup.php:339 -#: ../../enterprise/meta/advanced/metasetup.setup.php:256 -#: ../../enterprise/meta/include/functions_meta.php:459 -msgid "Activate reset password" -msgstr "Activate reset password" - -#: ../../include/functions_config.php:310 -#: ../../enterprise/godmode/setup/setup_auth.php:51 -#: ../../enterprise/godmode/setup/setup_auth.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:679 -#: ../../enterprise/meta/include/functions_meta.php:632 -msgid "Autocreate profile" -msgstr "Automatically create profile" - -#: ../../include/functions_config.php:312 -#: ../../enterprise/godmode/setup/setup_auth.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:216 -#: ../../enterprise/godmode/setup/setup_auth.php:685 -#: ../../enterprise/meta/include/functions_meta.php:642 -msgid "Autocreate profile group" -msgstr "Automatically create profile group" - -#: ../../include/functions_config.php:314 -#: ../../enterprise/godmode/setup/setup_auth.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:223 -#: ../../enterprise/godmode/setup/setup_auth.php:692 -#: ../../enterprise/meta/include/functions_meta.php:652 -msgid "Autocreate profile tags" -msgstr "Automatically create profile tags" - -#: ../../include/functions_config.php:316 -#: ../../enterprise/godmode/setup/setup_auth.php:801 -#: ../../enterprise/meta/include/functions_meta.php:662 -msgid "Autocreate blacklist" -msgstr "Automatically create blacklist" - -#: ../../include/functions_config.php:319 -#: ../../enterprise/godmode/setup/setup_auth.php:809 -#: ../../enterprise/meta/include/functions_meta.php:694 -msgid "Active directory server" -msgstr "Active directory server" - -#: ../../include/functions_config.php:321 -#: ../../enterprise/godmode/setup/setup_auth.php:815 -#: ../../enterprise/meta/include/functions_meta.php:704 -msgid "Active directory port" -msgstr "Active directory port" - -#: ../../include/functions_config.php:325 -#: ../../enterprise/godmode/setup/setup_auth.php:664 -#: ../../enterprise/meta/include/functions_meta.php:724 -msgid "Advanced Config AD" -msgstr "Advanced Configuration AD" - -#: ../../include/functions_config.php:327 -#: ../../enterprise/godmode/setup/setup_auth.php:101 -#: ../../enterprise/meta/include/functions_meta.php:764 -msgid "Advanced Config LDAP" -msgstr "Advanced Configuration LDAP" - -#: ../../include/functions_config.php:329 -#: ../../enterprise/godmode/setup/setup_auth.php:828 -#: ../../enterprise/meta/include/functions_meta.php:734 -msgid "Domain" -msgstr "Domain" - -#: ../../include/functions_config.php:331 -#: ../../enterprise/godmode/setup/setup_auth.php:726 -#: ../../enterprise/meta/include/functions_meta.php:744 -msgid "Advanced Permisions AD" -msgstr "Advanced Permisions AD" - -#: ../../include/functions_config.php:333 -#: ../../enterprise/godmode/setup/setup_auth.php:127 -#: ../../enterprise/meta/include/functions_meta.php:754 -msgid "Advanced Permissions LDAP" -msgstr "Advanced Permissions LDAP" - -#: ../../include/functions_config.php:353 -#: ../../enterprise/godmode/setup/setup_auth.php:96 -#: ../../enterprise/meta/include/functions_meta.php:891 -msgid "Login user attribute" -msgstr "Login user attribute" - -#: ../../include/functions_config.php:355 -#: ../../enterprise/godmode/setup/setup_auth.php:89 -#: ../../enterprise/meta/include/functions_meta.php:901 -msgid "LDAP function" -msgstr "LDAP function" - -#: ../../include/functions_config.php:359 -#: ../../enterprise/godmode/setup/setup_auth.php:77 -#: ../../enterprise/meta/include/functions_meta.php:877 -msgid "Save Password" -msgstr "Save password" - -#: ../../include/functions_config.php:366 -#: ../../enterprise/godmode/setup/setup_auth.php:595 -msgid "MySQL host" -msgstr "MySQL host" - -#: ../../include/functions_config.php:368 -#: ../../include/functions_config.php:379 -#: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:632 -#: ../../enterprise/meta/include/functions_meta.php:923 -#: ../../enterprise/meta/include/functions_meta.php:976 -#: ../../enterprise/meta/include/functions_meta.php:1029 -msgid "MySQL port" -msgstr "MySQL port" - -#: ../../include/functions_config.php:370 -#: ../../include/functions_config.php:381 -#: ../../include/functions_config.php:757 -#: ../../enterprise/godmode/setup/setup_auth.php:607 -#: ../../enterprise/godmode/setup/setup_auth.php:638 -#: ../../enterprise/godmode/setup/setup_history.php:59 -#: ../../enterprise/meta/include/functions_meta.php:933 -#: ../../enterprise/meta/include/functions_meta.php:986 -#: ../../enterprise/meta/include/functions_meta.php:1039 -msgid "Database name" -msgstr "Database name" - -#: ../../include/functions_config.php:377 -#: ../../enterprise/godmode/setup/setup_auth.php:626 -#: ../../enterprise/meta/include/functions_meta.php:1019 -msgid "Integria host" -msgstr "Integria IMS host" - -#: ../../include/functions_config.php:387 -msgid "Saml path" -msgstr "SAML path" - -#: ../../include/functions_config.php:391 -#: ../../enterprise/meta/include/functions_meta.php:682 -msgid "Session timeout" -msgstr "Session timeout" - -#: ../../include/functions_config.php:417 -msgid "Max. days before autodisable deletion" -msgstr "Max. days before autodisabled deletion" - -#: ../../include/functions_config.php:419 -msgid "Item limit for realtime reports)" -msgstr "Item limit for real-time reports" - -#: ../../include/functions_config.php:435 -msgid "Big Operatiopn Step to purge old data" -msgstr "Big Operation Step to purge old data" - -#: ../../include/functions_config.php:478 -#: ../../enterprise/meta/advanced/metasetup.visual.php:111 -#: ../../enterprise/meta/include/functions_meta.php:1142 -msgid "Graphic resolution (1-low, 5-high)" -msgstr "Graphic resolution (1-low, 5-high)" - -#: ../../include/functions_config.php:479 -#: ../../include/functions_config.php:1732 -#: ../../include/functions_netflow.php:1640 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes" -msgstr "Bytes" - -#: ../../include/functions_config.php:482 -#: ../../enterprise/meta/include/functions_meta.php:1132 -msgid "Data precision for reports" -msgstr "Data precision for reports" - -#: ../../include/functions_config.php:493 -msgid "Show QR code header" -msgstr "Display QR code in header" - -#: ../../include/functions_config.php:506 -#: ../../enterprise/meta/include/functions_meta.php:1255 -msgid "Custom logo login" -msgstr "Custom logo login" - -#: ../../include/functions_config.php:508 -#: ../../enterprise/meta/include/functions_meta.php:1265 -msgid "Custom splash login" -msgstr "Custom splash login" - -#: ../../include/functions_config.php:510 -#: ../../enterprise/meta/include/functions_meta.php:1275 -msgid "Custom title1 login" -msgstr "Custom title1 login" - -#: ../../include/functions_config.php:512 -#: ../../enterprise/meta/include/functions_meta.php:1285 -msgid "Custom title2 login" -msgstr "Custom title2 login" - -#: ../../include/functions_config.php:517 -#: ../../include/functions_config.php:535 -msgid "Custom Docs url" -msgstr "Custom Docs URL" - -#: ../../include/functions_config.php:519 -#: ../../include/functions_config.php:537 -msgid "Custom support url" -msgstr "Custom support URL" - -#: ../../include/functions_config.php:522 -msgid "Custom logo metaconsole" -msgstr "Custom logo Metaconsole" - -#: ../../include/functions_config.php:524 -msgid "Custom logo login metaconsole" -msgstr "Custom login logo for Metaconsole" - -#: ../../include/functions_config.php:526 -msgid "Custom splash login metaconsole" -msgstr "Custom splash login for Metaconsole" - -#: ../../include/functions_config.php:528 -msgid "Custom title1 login metaconsole" -msgstr "Custom title1 login for Metaconsole" - -#: ../../include/functions_config.php:530 -msgid "Custom title2 login metaconsole" -msgstr "Custom title2 login for Metaconsole" - -#: ../../include/functions_config.php:532 -msgid "Login background metaconsole" -msgstr "Login background for Metaconsole" - -#: ../../include/functions_config.php:542 -msgid "Default line favourite_view for the Visual Console" -msgstr "Default line favourite_view for the Visual Console" - -#: ../../include/functions_config.php:544 -msgid "Default line menu items for the Visual Console" -msgstr "Default line menu items for the Visual Console" - -#: ../../include/functions_config.php:563 -msgid "Show units in values report" -msgstr "Show units in values report" - -#: ../../include/functions_config.php:569 -msgid "visual_animation" -msgstr "visual_animation" - -#: ../../include/functions_config.php:571 -msgid "Fixed graph" -msgstr "Fixed graph" - -#: ../../include/functions_config.php:577 -msgid "Paginate module" -msgstr "Paginate module" - -#: ../../include/functions_config.php:583 -msgid "Shortened module graph data" -msgstr "Shortened module graph data" - -#: ../../include/functions_config.php:589 -msgid "Default type of module charts." -msgstr "Default module chart type" - -#: ../../include/functions_config.php:591 -msgid "Default type of interface charts." -msgstr "Default type of interface charts" - -#: ../../include/functions_config.php:593 -msgid "Default show only average or min and max" -msgstr "Only avg, min and max are displayed by default" - -#: ../../include/functions_config.php:598 -#: ../../include/functions_config.php:1796 -#: ../../include/functions_reporting_html.php:505 -#: ../../include/functions_reporting_html.php:584 -#: ../../enterprise/include/functions_reporting.php:1662 -#: ../../enterprise/include/functions_reporting.php:1698 -#: ../../enterprise/include/functions_reporting.php:2470 -#: ../../enterprise/include/functions_reporting.php:2506 -#: ../../enterprise/include/functions_reporting.php:3247 -#: ../../enterprise/include/functions_reporting.php:3283 -#: ../../enterprise/include/functions_reporting.php:4870 -#: ../../enterprise/include/functions_reporting.php:5204 -#: ../../enterprise/include/functions_reporting_csv.php:1079 -#: ../../enterprise/include/functions_reporting_csv.php:1126 -#: ../../enterprise/include/functions_reporting_pdf.php:1409 -#: ../../enterprise/include/functions_reporting_pdf.php:1490 -#: ../../enterprise/include/functions_reporting_pdf.php:1710 -#: ../../enterprise/include/functions_reporting_pdf.php:1746 -#: ../../enterprise/include/functions_reporting_pdf.php:2149 -msgid "Fail" -msgstr "Fail" - -#: ../../include/functions_config.php:602 -msgid "Display lateral menus with left click" -msgstr "Display lateral menus with left click" - -#: ../../include/functions_config.php:608 -msgid "Service item padding size" -msgstr "Service item padding size" - -#: ../../include/functions_config.php:611 -msgid "Default percentil" -msgstr "Default percentile" - -#: ../../include/functions_config.php:614 -msgid "Default full scale (TIP)" -msgstr "Default full scale (TIP)" - -#: ../../include/functions_config.php:635 -msgid "Add the custom post process" -msgstr "Add the custom post process" - -#: ../../include/functions_config.php:642 -msgid "Delete the custom post process" -msgstr "Delete the custom post process" - -#: ../../include/functions_config.php:691 -#: ../../enterprise/meta/include/functions_meta.php:1372 -msgid "Custom report info" -msgstr "Custom report info" - -#: ../../include/functions_config.php:739 -msgid "IP ElasticSearch server" -msgstr "IP ElasticSearch server" - -#: ../../include/functions_config.php:741 -msgid "Port ElasticSearch server" -msgstr "Port ElasticSearch server" - -#: ../../include/functions_config.php:743 -#: ../../enterprise/godmode/setup/setup_log_collector.php:50 -msgid "Number of logs viewed" -msgstr "Number of logs viewed" - -#: ../../include/functions_config.php:745 -#: ../../enterprise/godmode/setup/setup_log_collector.php:52 -msgid "Days to purge old information" -msgstr "Days to purge old information" - -#: ../../include/functions_config.php:749 -#: ../../enterprise/godmode/setup/setup_history.php:45 -msgid "Enable history database" -msgstr "Enable historic database" - -#: ../../include/functions_config.php:751 -msgid "Enable history event" -msgstr "Enable history event" - -#: ../../include/functions_config.php:753 -#: ../../enterprise/godmode/setup/setup_history.php:53 -msgid "Host" -msgstr "Host" - -#: ../../include/functions_config.php:759 -#: ../../enterprise/godmode/setup/setup_history.php:62 -msgid "Database user" -msgstr "Database user" - -#: ../../include/functions_config.php:761 -#: ../../enterprise/godmode/setup/setup_history.php:65 -msgid "Database password" -msgstr "Database password" - -#: ../../include/functions_config.php:765 -msgid "Event Days" -msgstr "Event Days" - -#: ../../include/functions_config.php:769 -#: ../../enterprise/godmode/setup/setup_history.php:74 -msgid "Delay" -msgstr "Delay" - -#: ../../include/functions_config.php:775 -msgid "eHorus user" -msgstr "eHorus user" - -#: ../../include/functions_config.php:777 -msgid "eHorus password" -msgstr "eHorus password" - -#: ../../include/functions_config.php:779 -msgid "eHorus API hostname" -msgstr "eHorus API hostname" - -#: ../../include/functions_config.php:781 -msgid "eHorus API port" -msgstr "eHorus API port" - -#: ../../include/functions_config.php:783 -msgid "eHorus request timeout" -msgstr "eHorus request timeout" - -#: ../../include/functions_config.php:785 -msgid "eHorus id custom field" -msgstr "eHorus ID custom field" - -#: ../../include/functions_config.php:797 -#, 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:1228 -#: ../../enterprise/meta/general/login_page.php:170 -#: ../../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:1232 -#: ../../enterprise/meta/general/login_page.php:178 -#: ../../enterprise/meta/include/process_reset_pass.php:116 -#: ../../enterprise/meta/include/reset_pass.php:105 -msgid "METACONSOLE" -msgstr "METACONSOLE" - -#: ../../include/functions_config.php:1954 -msgid "" -"Click here to start the " -"registration process" -msgstr "" -"Click here to start the " -"registration process" - -#: ../../include/functions_config.php:1955 -msgid "This instance is not registered in the Update manager" -msgstr "This instance is not registered in the Update manager" - -#: ../../include/functions_config.php:1962 -msgid "" -"Click here to start the " -"newsletter subscription process" -msgstr "" -"Click here to start the " -"newsletter subscription process" - -#: ../../include/functions_config.php:1963 -msgid "Not subscribed to the newsletter" -msgstr "Not subscribed to the newsletter" - -#: ../../include/functions_config.php:1974 -msgid "Default password for \"Admin\" user has not been changed." -msgstr "The default password for the \"Admin\" user has not been changed." - -#: ../../include/functions_config.php:1975 -msgid "" -"Please change the default password because is a common vulnerability " -"reported." -msgstr "" -"Please change the default password. It is a commonly reported security issue " -"not to do so." - -#: ../../include/functions_config.php:1981 -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:1982 -msgid "This license has expired." -msgstr "This license has expired." - -#: ../../include/functions_config.php:1987 -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:2000 -msgid "Remote configuration directory is not readble for the console" -msgstr "Remote configuration directory is unreadable for the console" - -#: ../../include/functions_config.php:2006 -#: ../../include/functions_config.php:2013 -msgid "Remote configuration directory is not writtable for the console" -msgstr "Remote configuration directory is not writable by the console" - -#: ../../include/functions_config.php:2024 -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:2024 -msgid "files" -msgstr "files" - -#: ../../include/functions_config.php:2025 -msgid "Too much files in your tempora/attachment directory" -msgstr "Too many files in your temporary/attachment directory" - -#: ../../include/functions_config.php:2042 -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 48 hours " -"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:2043 -msgid "Database maintance problem" -msgstr "Database maintenance issue" - -#: ../../include/functions_config.php:2049 -msgid "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" -msgstr "" -"Your selected font does not exist or is not defined. Please check the font " -"parameters in your configuration." - -#: ../../include/functions_config.php:2050 -msgid "Default font doesnt exist" -msgstr "The default font does not exist." - -#: ../../include/functions_config.php:2055 -msgid "You need to restart server after altering this configuration setting." -msgstr "" -"You will need to restart the server after modifying this configuration " -"setting." - -#: ../../include/functions_config.php:2056 -msgid "" -"Event storm protection is activated. No events will be generated during this " -"mode." -msgstr "" -"Event Storm protection is enabled. No events will be generated as long as " -"this mode is active." - -#: ../../include/functions_config.php:2063 -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 into the main index.php file." - -#: ../../include/functions_config.php:2064 -msgid "Developer mode is enabled" -msgstr "Developer mode enabled" - -#: ../../include/functions_config.php:2073 -msgid "Error first setup Open update" -msgstr "Error on first setup open update" - -#: ../../include/functions_config.php:2079 -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:2080 -msgid "New update of Pandora Console" -msgstr "New Pandora FMS Console update" - -#: ../../include/functions_config.php:2094 -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 do not forget to restart the " -"Apache process after the changes are completed." - -#: ../../include/functions_config.php:2095 -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:2100 -#, php-format -msgid "Recommended value is %s" -msgstr "The recommended value is %s" - -#: ../../include/functions_config.php:2100 -#: ../../include/functions_config.php:2106 -msgid "Unlimited" -msgstr "Unlimited" - -#: ../../include/functions_config.php:2100 -#: ../../include/functions_config.php:2106 -#: ../../include/functions_config.php:2114 -#: ../../include/functions_config.php:2129 -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:2101 -#: ../../include/functions_config.php:2107 -#: ../../include/functions_config.php:2115 -#: ../../include/functions_config.php:2123 -#, php-format -msgid "Not recommended '%s' value in PHP configuration" -msgstr "Not recommended '%s' value in PHP configuration" - -#: ../../include/functions_config.php:2106 -#: ../../include/functions_config.php:2114 -#: ../../include/functions_config.php:2122 -#, php-format -msgid "Recommended value is: %s" -msgstr "The recommended value is: %s" - -#: ../../include/functions_config.php:2114 -#: ../../include/functions_config.php:2122 -#, php-format -msgid "%s or greater" -msgstr "%s or greater" - -#: ../../include/functions_config.php:2122 -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:2128 -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:2129 -msgid "Problems with disable functions in PHP.INI" -msgstr "Problems with disabling functions in PHP.INI" - -#: ../../include/functions_ui.php:230 -msgid "Information" -msgstr "Information" - -#: ../../include/functions_ui.php:236 -#: ../../enterprise/include/functions_visual_map.php:622 -msgid "Success" -msgstr "Success" - -#: ../../include/functions_ui.php:372 -msgid "Request successfully processed" -msgstr "Request successfully processed" - -#: ../../include/functions_ui.php:375 -msgid "Error processing request" -msgstr "Error processing request" - -#: ../../include/functions_ui.php:513 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" -"It is possible that this view uses a part of the information to which your " -"user does not have access." - -#: ../../include/functions_ui.php:683 -msgid "Software" -msgstr "Software" - -#: ../../include/functions_ui.php:1055 -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:1060 -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:1343 -#: ../../enterprise/meta/include/functions_ui_meta.php:54 -msgid "the Flexible Monitoring System" -msgstr "the Flexible Monitoring System" - -#: ../../include/functions_ui.php:1681 ../../include/functions_ui.php:1707 -#, php-format -msgid "Total items: %s" -msgstr "Total items: %s" - -#: ../../include/functions_ui.php:2024 -msgid "Unknown type" -msgstr "Unknown type" - -#: ../../include/functions_ui.php:2837 -msgid "Type at least two characters to search." -msgstr "Type at least two characters to search." - -#: ../../include/functions_ui.php:3721 -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:3736 -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:3744 -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:3759 -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:3764 -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 by the " -"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_db.php:90 -#, php-format -msgid "Error connecting to database %s at %s." -msgstr "Error connecting to database %s at %s." - -#: ../../include/functions_db.php:1564 -msgid "Database debug" -msgstr "Database debug" - -#: ../../include/functions_db.php:1580 -msgid "SQL sentence" -msgstr "SQL sentence" - -#: ../../include/functions_db.php:1582 -msgid "Rows" -msgstr "Rows" - -#: ../../include/functions_db.php:1583 -msgid "Saved" -msgstr "Saved" - -#: ../../include/functions_db.php:1584 -msgid "Time (ms)" -msgstr "Time (ms)" - -#: ../../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:445 -#: ../../include/functions_update_manager.php:449 -#: ../../enterprise/include/functions_update_manager.php:141 -#: ../../enterprise/include/functions_update_manager.php:317 -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:456 -#: ../../include/functions_update_manager.php:460 -#: ../../enterprise/include/functions_update_manager.php:144 -msgid "Server not found." -msgstr "Server not found" - -#: ../../include/functions_update_manager.php:382 -msgid "Update to the last version" -msgstr "Update to the latest version" - -#: ../../include/functions_update_manager.php:385 -#: ../../enterprise/include/functions_update_manager.php:229 -msgid "There is no update available." -msgstr "There are no updates available" - -#: ../../include/functions_update_manager.php:494 -#: ../../include/functions_update_manager.php:524 -msgid "Remote server error on newsletter request" -msgstr "Remote server error on newsletter request" - -#: ../../include/functions_update_manager.php:502 -msgid "E-mail successfully subscribed to newsletter." -msgstr "Email successfully subscribed to newsletter" - -#: ../../include/functions_update_manager.php:504 -msgid "E-mail has already subscribed to newsletter." -msgstr "Email is already subscribed to the newsletter" - -#: ../../include/functions_update_manager.php:506 -#: ../../include/functions_update_manager.php:546 -msgid "Update manager returns error code: " -msgstr "Update manager returns error code: " - -#: ../../include/functions_update_manager.php:541 -msgid "Pandora successfully subscribed with UID: " -msgstr "Pandora FMS successfully subscribed with UID: " - -#: ../../include/functions_update_manager.php:543 -msgid "Unsuccessful subscription." -msgstr "Unsuccessful subscription" - -#: ../../include/functions_update_manager.php:670 -msgid "Failed extracting the package to temp directory." -msgstr "Error extracting the package to the temp directory" - -#: ../../include/functions_update_manager.php:709 -msgid "Failed the copying of the files." -msgstr "Error copying the files" - -#: ../../include/functions_update_manager.php:725 -msgid "Package extracted successfully." -msgstr "Package extracted successfully" - -#: ../../include/functions_events.php:880 -#: ../../operation/agentes/tactical.php:188 -msgid "Latest events" -msgstr "Latest events" - -#: ../../include/functions_events.php:895 -#: ../../include/functions_events.php:1509 -#: ../../include/functions_events.php:1711 -#: ../../include/functions_events.php:1717 -#: ../../include/functions_events.php:1721 -#: ../../include/functions_events.php:1726 -#: ../../include/functions_events.php:3250 -#: ../../include/functions_events.php:3258 -#: ../../include/functions_graph.php:3505 -#: ../../operation/snmpconsole/snmp_view.php:465 -#: ../../operation/snmpconsole/snmp_view.php:772 -#: ../../operation/snmpconsole/snmp_view.php:1027 -msgid "Validated" -msgstr "Validated" - -#: ../../include/functions_events.php:895 -#: ../../enterprise/operation/agentes/policy_view.php:51 -msgid "V." -msgstr "V." - -#: ../../include/functions_events.php:1015 -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 "Changing to unknown" - -#: ../../include/functions_events.php:1141 -msgid "Alert manually validated" -msgstr "Alert manually validated" - -#: ../../include/functions_events.php:1144 -msgid "Going from critical to warning" -msgstr "Changing from critical to warning status" - -#: ../../include/functions_events.php:1148 -msgid "Going down to critical state" -msgstr "Changing down to critical status" - -#: ../../include/functions_events.php:1152 -msgid "Going up to normal state" -msgstr "Changing up to normal status" - -#: ../../include/functions_events.php:1155 -msgid "Going down from normal to warning" -msgstr "Changing from normal to warning status" - -#: ../../include/functions_events.php:1161 -#: ../../include/functions_graph.php:3630 -#: ../../include/functions_graph.php:3681 -msgid "SYSTEM" -msgstr "SYSTEM" - -#: ../../include/functions_events.php:1164 -msgid "Recon server detected a new host" -msgstr "Recon server detected a new host" - -#: ../../include/functions_events.php:1167 -msgid "New agent created" -msgstr "New agent created" - -#: ../../include/functions_events.php:1180 -msgid "Unknown type:" -msgstr "Unknown status:" - -#: ../../include/functions_events.php:1500 -#: ../../include/functions_events.php:1507 -#: ../../include/functions_events.php:1527 -#: ../../enterprise/dashboard/widgets/events_list.php:47 -msgid "All event" -msgstr "All events" - -#: ../../include/functions_events.php:1501 -#: ../../include/functions_events.php:1530 -msgid "Only new" -msgstr "Only new events" - -#: ../../include/functions_events.php:1502 -#: ../../include/functions_events.php:1533 -#: ../../enterprise/dashboard/widgets/events_list.php:48 -msgid "Only validated" -msgstr "Only validated events" - -#: ../../include/functions_events.php:1503 -#: ../../include/functions_events.php:1536 -msgid "Only in process" -msgstr "Only in process" - -#: ../../include/functions_events.php:1504 -#: ../../include/functions_events.php:1539 -msgid "Only not validated" -msgstr "Only not validated" - -#: ../../include/functions_events.php:1508 -#: ../../include/functions_events.php:1711 -#: ../../enterprise/godmode/reporting/cluster_builder.php:144 -#: ../../enterprise/godmode/reporting/cluster_builder.php:191 -#: ../../enterprise/godmode/reporting/cluster_builder.php:300 -#: ../../enterprise/godmode/reporting/cluster_builder.php:543 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 -msgid "New" -msgstr "New" - -#: ../../include/functions_events.php:1510 -#: ../../include/functions_events.php:1711 -#: ../../include/functions_events.php:1717 -msgid "In process" -msgstr "In process" - -#: ../../include/functions_events.php:1511 -msgid "Not Validated" -msgstr "Not validated" - -#: ../../include/functions_events.php:1666 -msgid "Change owner" -msgstr "Change owner" - -#: ../../include/functions_events.php:1705 -msgid "Change status" -msgstr "Change status" - -#: ../../include/functions_events.php:1744 -#: ../../include/functions_events.php:2663 -msgid "Add comment" -msgstr "Add comment" - -#: ../../include/functions_events.php:1751 -#: ../../include/functions_events.php:1753 -#: ../../include/functions_events.php:4132 -#: ../../operation/events/events.build_table.php:687 -msgid "Delete event" -msgstr "Delete event" - -#: ../../include/functions_events.php:1763 -msgid "Custom responses" -msgstr "Custom responses" - -#: ../../include/functions_events.php:2073 -msgid "There was an error connecting to the node" -msgstr "There was an error connecting to the node" - -#: ../../include/functions_events.php:2112 -msgid "Agent details" -msgstr "Agent details" - -#: ../../include/functions_events.php:2144 -#: ../../operation/agentes/ver_agente.php:772 -#: ../../enterprise/extensions/vmware/ajax.php:105 -#: ../../enterprise/operation/agentes/ver_agente.php:76 -msgid "Last remote contact" -msgstr "Last remote contact" - -#: ../../include/functions_events.php:2150 -msgid "View custom fields" -msgstr "View custom fields" - -#: ../../include/functions_events.php:2162 -msgid "Module details" -msgstr "Module details" - -#: ../../include/functions_events.php:2179 -msgid "No assigned" -msgstr "Not assigned" - -#: ../../include/functions_events.php:2252 -#: ../../include/functions_events.php:2256 -msgid "Go to data overview" -msgstr "Go to data overview" - -#: ../../include/functions_events.php:2342 -#, php-format -msgid "Invalid custom data: %s" -msgstr "Invalid custom data: %s" - -#: ../../include/functions_events.php:2443 -#: ../../include/functions_events.php:3624 -#: ../../mobile/operation/events.php:469 -#: ../../operation/events/events.build_table.php:149 -msgid "Event ID" -msgstr "Event ID" - -#: ../../include/functions_events.php:2455 -msgid "First event" -msgstr "First event" - -#: ../../include/functions_events.php:2455 -msgid "Last event" -msgstr "Last event" - -#: ../../include/functions_events.php:2520 -#: ../../mobile/operation/events.php:497 -msgid "Acknowledged by" -msgstr "Acknowledged by" - -#: ../../include/functions_events.php:2558 -msgid "ID extra" -msgstr "Extra ID" - -#: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:2655 -msgid "There are no comments" -msgstr "There are no comments." - -#: ../../include/functions_events.php:2808 -#: ../../include/functions_reporting_html.php:878 -msgid "Pandora System" -msgstr "Pandora FMS System" - -#: ../../include/functions_events.php:3253 -#: ../../include/functions_events.php:3258 -#: ../../operation/snmpconsole/snmp_view.php:464 -#: ../../operation/snmpconsole/snmp_view.php:768 -#: ../../operation/snmpconsole/snmp_view.php:1030 -msgid "Not validated" -msgstr "Not validated" - -#: ../../include/functions_events.php:3629 -#: ../../mobile/operation/events.php:108 -#: ../../operation/events/events.build_table.php:155 -msgid "Event Name" -msgstr "Event name" - -#: ../../include/functions_events.php:3667 -#: ../../operation/events/events.build_table.php:198 -msgid "Agent Module" -msgstr "Agent module" - -#: ../../include/functions_events.php:3698 -#: ../../operation/events/events.build_table.php:235 -msgid "Extra ID" -msgstr "Extra ID" - -#: ../../include/functions_events.php:4122 -#: ../../operation/events/events.build_table.php:677 -msgid "Validate event" -msgstr "Validate event" - -#: ../../include/functions_events.php:4137 -#: ../../operation/events/events.build_table.php:692 -#: ../../operation/events/events.php:806 ../../operation/events/events.php:810 -#: ../../operation/events/events.php:980 ../../operation/events/events.php:984 -msgid "Is not allowed delete events in process" -msgstr "You cannot delete events in process." - -#: ../../include/functions_events.php:4145 -#: ../../operation/events/events.build_table.php:700 -#: ../../operation/menu.php:199 ../../operation/snmpconsole/snmp_view.php:868 -#: ../../enterprise/operation/agentes/wux_console_view.php:448 -msgid "Show more" -msgstr "Show more" - -#: ../../include/functions_users.php:527 -#, php-format -msgid "User %s login at %s" -msgstr "User %s login at %s" - -#: ../../include/functions_users.php:588 -#, 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:593 -#, php-format -msgid "User %s logout at %s" -msgstr "User %s logout at %s" - -#: ../../include/functions_visual_map.php:1031 -#: ../../enterprise/dashboard/widgets/custom_graph.php:196 -msgid "" -"Could not draw pie with labels contained inside canvas. Resize widget to " -"500px width minimum" -msgstr "" -"Could not draw pie chart with labels contained inside canvas. Resize widget " -"to 500px width minimum." - -#: ../../include/functions_visual_map.php:1826 -msgid "Last value: " -msgstr "Last value: " - -#: ../../include/functions_visual_map.php:2618 -msgid "Agent successfully added to layout" -msgstr "Agent successfully added to the layout." - -#: ../../include/functions_visual_map.php:2773 -msgid "Modules successfully added to layout" -msgstr "Modules successfully added to the layout." - -#: ../../include/functions_visual_map.php:3060 -msgid "Agents successfully added to layout" -msgstr "Agents successfully added to the layout" - -#: ../../include/functions_visual_map.php:3435 -msgid "Cannot load the visualmap" -msgstr "Cannot load the visual map" - -#: ../../include/functions_visual_map.php:3906 -#: ../../include/functions_visual_map_editor.php:62 -#: ../../include/functions_visual_map_editor.php:873 -msgid "Clock" -msgstr "Clock" - -#: ../../include/functions_visual_map.php:3910 -msgid "Bars graph" -msgstr "Bars graph" - -#: ../../include/functions_visual_map.php:3918 -msgid "Percentile bar" -msgstr "Percentile bar" - -#: ../../include/functions_visual_map.php:3922 -msgid "Circular progress bar" -msgstr "Circular progress bar" - -#: ../../include/functions_visual_map.php:3926 -#: ../../include/functions_visual_map_editor.php:515 -msgid "Circular progress bar (interior)" -msgstr "Circular progress bar (interior)" - -#: ../../include/functions_visual_map.php:3930 -msgid "Static graph" -msgstr "Static graph" - -#: ../../include/functions_visual_map_editor.php:58 -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 "" -"In order to use the '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:97 -#: ../../include/functions_visual_map_editor.php:121 -msgid "Border color" -msgstr "Border colour" - -#: ../../include/functions_visual_map_editor.php:133 -msgid "Border width" -msgstr "Outline width" - -#: ../../include/functions_visual_map_editor.php:142 -msgid "Fill color" -msgstr "Fill colour" - -#: ../../include/functions_visual_map_editor.php:193 -msgid "" -"Scroll the mouse wheel over the label editor to change the background color" -msgstr "" -"Scroll the mouse wheel over the label editor to change the background color" - -#: ../../include/functions_visual_map_editor.php:212 -msgid "Clock animation" -msgstr "Clock animation" - -#: ../../include/functions_visual_map_editor.php:214 -msgid "Simple analogic" -msgstr "Simple analogic" - -#: ../../include/functions_visual_map_editor.php:215 -msgid "Simple digital" -msgstr "Simple digital" - -#: ../../include/functions_visual_map_editor.php:221 -msgid "Time format" -msgstr "Time format" - -#: ../../include/functions_visual_map_editor.php:223 -msgid "Only time" -msgstr "Only time" - -#: ../../include/functions_visual_map_editor.php:224 -msgid "Time and date" -msgstr "Time and date" - -#: ../../include/functions_visual_map_editor.php:241 -msgid "Time zone" -msgstr "Time zone" - -#: ../../include/functions_visual_map_editor.php:263 -msgid "Enable link" -msgstr "Enable link" - -#: ../../include/functions_visual_map_editor.php:285 -msgid "White" -msgstr "White" - -#: ../../include/functions_visual_map_editor.php:286 -msgid "Black" -msgstr "Black" - -#: ../../include/functions_visual_map_editor.php:287 -msgid "Transparent" -msgstr "Transparent" - -#: ../../include/functions_visual_map_editor.php:294 -msgid "Grid color" -msgstr "Grid colour" - -#: ../../include/functions_visual_map_editor.php:404 -msgid "Data image" -msgstr "Data image" - -#: ../../include/functions_visual_map_editor.php:411 -msgid "Resume data color" -msgstr "Resume data colour" - -#: ../../include/functions_visual_map_editor.php:419 -msgid "24h" -msgstr "24h" - -#: ../../include/functions_visual_map_editor.php:420 -msgid "8h" -msgstr "8h" - -#: ../../include/functions_visual_map_editor.php:421 -msgid "2h" -msgstr "2h" - -#: ../../include/functions_visual_map_editor.php:422 -msgid "1h" -msgstr "1h" - -#: ../../include/functions_visual_map_editor.php:426 -msgid "Max. Time" -msgstr "Max. Time" - -#: ../../include/functions_visual_map_editor.php:480 -msgid "Original Size" -msgstr "Original size" - -#: ../../include/functions_visual_map_editor.php:487 -msgid "Aspect ratio" -msgstr "Aspect ratio" - -#: ../../include/functions_visual_map_editor.php:488 -msgid "Width proportional" -msgstr "Proportional width" - -#: ../../include/functions_visual_map_editor.php:494 -msgid "Height proportional" -msgstr "Proportional height" - -#: ../../include/functions_visual_map_editor.php:515 -msgid "Circular porgress bar" -msgstr "Circular porgress bar" - -#: ../../include/functions_visual_map_editor.php:552 -msgid "Element color" -msgstr "Element colour" - -#: ../../include/functions_visual_map_editor.php:561 -msgid "Label color" -msgstr "Label colour" - -#: ../../include/functions_visual_map_editor.php:582 -msgid "Show statistics" -msgstr "Show statistics" - -#: ../../include/functions_visual_map_editor.php:589 -msgid "Always show on top" -msgstr "Always show on top" - -#: ../../include/functions_visual_map_editor.php:605 -msgid "Vertical" -msgstr "Vertical" - -#: ../../include/functions_visual_map_editor.php:605 -msgid "Horizontal" -msgstr "Horizontal" - -#: ../../include/functions_visual_map_editor.php:673 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "" -"In order to use the original image file size, set width and height to 0." - -#: ../../include/functions_visual_map_editor.php:711 -msgid "Map linked weight" -msgstr "Map link weight" - -#: ../../include/functions_visual_map_editor.php:722 -msgid "By default" -msgstr "By default" - -#: ../../include/functions_visual_map_editor.php:728 -msgid "Lines haven't advanced options" -msgstr "Lines do not have advanced options" - -#: ../../include/functions_visual_map_editor.php:737 -msgid "Restrict access to group" -msgstr "Restrict access to group" - -#: ../../include/functions_visual_map_editor.php:740 -msgid "" -"If selected, restrict visualization of this item in the visual console to " -"users who have access to selected group. This is also used on calculating " -"child visual consoles." -msgstr "" -"If selected, it restricts visualization of this item in the visual console " -"to users who have access to the selected group. This is also used when " -"calculating child visual consoles." - -#: ../../include/functions_visual_map_editor.php:767 -msgid "Click start point
of the line" -msgstr "Click the starting point
of the line" - -#: ../../include/functions_visual_map_editor.php:772 -msgid "Click end point
of the line" -msgstr "Click the end point
of the line" - -#: ../../include/functions_visual_map_editor.php:867 -msgid "Serialized pie graph" -msgstr "Serialized pie graph" - -#: ../../include/functions_visual_map_editor.php:868 -msgid "Bars Graph" -msgstr "Bars graph" - -#: ../../include/functions_visual_map_editor.php:889 -msgid "Show grid" -msgstr "Show grid" - -#: ../../include/functions_visual_map_editor.php:891 -msgid "Delete item" -msgstr "Delete item" - -#: ../../include/functions_visual_map_editor.php:892 -msgid "Copy item" -msgstr "Copy item" - -#: ../../include/functions_visual_map_editor.php:920 -msgid "No image or name defined." -msgstr "No image or name defined" - -#: ../../include/functions_visual_map_editor.php:922 -msgid "No label defined." -msgstr "No label defined" - -#: ../../include/functions_visual_map_editor.php:924 -msgid "No image defined." -msgstr "No image defined" - -#: ../../include/functions_visual_map_editor.php:926 -msgid "No process defined." -msgstr "No process defined" - -#: ../../include/functions_visual_map_editor.php:928 -msgid "No Max value defined." -msgstr "No max value defined" - -#: ../../include/functions_visual_map_editor.php:930 -msgid "No width defined." -msgstr "No width defined" - -#: ../../include/functions_visual_map_editor.php:932 -msgid "No height defined." -msgstr "No height defined" - -#: ../../include/functions_visual_map_editor.php:934 -msgid "No period defined." -msgstr "No period defined" - -#: ../../include/functions_visual_map_editor.php:936 -msgid "No agent defined." -msgstr "No agent defined" - -#: ../../include/functions_visual_map_editor.php:938 -msgid "No module defined." -msgstr "No module defined" - -#: ../../include/functions_visual_map_editor.php:941 -msgid "Successfully save the changes." -msgstr "Changes successfully saved" - -#: ../../include/functions_visual_map_editor.php:943 -msgid "Could not be save" -msgstr "Could not be saved" - -#: ../../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 "Uploaded successfully" - -#: ../../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:142 -#: ../../enterprise/godmode/agentes/collections.editor.php:305 -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:1241 -#: ../../enterprise/include/functions_inventory.php:662 -#: ../../enterprise/include/functions_inventory.php:727 -#: ../../enterprise/include/functions_reporting_pdf.php:557 -msgid "Deleted" -msgstr "Deleted" - -#: ../../include/functions_filemanager.php:550 -#, php-format -msgid "Directory %s doesn't exist!" -msgstr "Directory %s does not 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 "" -"Upload file in zip format in this directory, useful to upload multiple files" - -#: ../../include/functions_filemanager.php:636 -msgid "Decompress" -msgstr "Decompress" - -#: ../../include/functions_filemanager.php:638 -#: ../../enterprise/extensions/csv_import/main.php:108 -#: ../../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:727 -msgid "This file could be executed by any user" -msgstr "This file could be executed by any user." - -#: ../../include/functions_filemanager.php:728 -msgid "Make sure it can't perform dangerous tasks" -msgstr "Make sure it cannot perform dangerous tasks." - -#: ../../include/functions_filemanager.php:796 -msgid "Create directory" -msgstr "Create directory" - -#: ../../include/functions_filemanager.php:801 -msgid "Create text" -msgstr "Create text" - -#: ../../include/functions_filemanager.php:806 -msgid "Upload file/s" -msgstr "Upload file(s)" - -#: ../../include/functions_filemanager.php:813 -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:805 -#: ../../include/functions_graph.php:4617 -#: ../../include/functions_reports.php:564 -msgid "Avg. Value" -msgstr "Avg. value" - -#: ../../include/functions_graph.php:807 -msgid "Units. Value" -msgstr "Unit value" - -#: ../../include/functions_graph.php:890 -#: ../../include/functions_graph.php:1917 -#: ../../include/functions_graph.php:2011 -#, php-format -msgid "Percentile %dº" -msgstr "Percentile %dº" - -#: ../../include/functions_graph.php:940 -#: ../../include/functions_graph.php:4852 -#: ../../enterprise/include/functions_dashboard.php:851 -#: ../../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:1412 -#, php-format -msgid "%s" -msgstr "%s" - -#: ../../include/functions_graph.php:1917 -#: ../../include/functions_graph.php:2011 -msgid " of module " -msgstr " of module " - -#: ../../include/functions_graph.php:2221 -#: ../../include/functions_graph.php:2224 -#: ../../include/functions_graph.php:2231 -#: ../../include/functions_graph.php:2234 -#: ../../include/functions_graph.php:2241 -#: ../../include/functions_graph.php:2244 -#: ../../include/functions_graph.php:2267 -#: ../../include/functions_graph.php:2269 -#: ../../include/functions_graph.php:2275 -#: ../../include/functions_graph.php:2277 -#: ../../include/functions_graph.php:2282 -#: ../../include/functions_graph.php:2284 -msgid "summatory" -msgstr "summation" - -#: ../../include/functions_graph.php:2222 -#: ../../include/functions_graph.php:2225 -#: ../../include/functions_graph.php:2232 -#: ../../include/functions_graph.php:2235 -#: ../../include/functions_graph.php:2240 -#: ../../include/functions_graph.php:2243 -#: ../../include/functions_graph.php:2307 -#: ../../include/functions_graph.php:2309 -#: ../../include/functions_graph.php:2315 -#: ../../include/functions_graph.php:2317 -#: ../../include/functions_graph.php:2322 -#: ../../include/functions_graph.php:2324 -msgid "average" -msgstr "average" - -#: ../../include/functions_graph.php:2589 -msgid "Not fired alerts" -msgstr "Non-triggered alerts" - -#: ../../include/functions_graph.php:2758 -#: ../../include/functions_graph.php:2804 -#: ../../include/graphs/functions_gd.php:165 -#: ../../include/graphs/functions_gd.php:256 -#: ../../enterprise/include/functions_reporting.php:1793 -#: ../../enterprise/include/functions_reporting_pdf.php:1849 -#: ../../enterprise/include/functions_reporting_pdf.php:1850 -msgid "Out of limits" -msgstr "Out of limits" - -#: ../../include/functions_graph.php:3037 -msgid "Today" -msgstr "Today" - -#: ../../include/functions_graph.php:3038 -msgid "Week" -msgstr "Week" - -#: ../../include/functions_graph.php:3039 ../../include/functions_html.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1271 -#: ../../enterprise/include/functions_reporting_csv.php:1483 -msgid "Month" -msgstr "Month" - -#: ../../include/functions_graph.php:3040 -#: ../../include/functions_graph.php:3041 -msgid "Months" -msgstr "Month" - -#: ../../include/functions_graph.php:3063 -msgid "History db" -msgstr "History DB" - -#: ../../include/functions_graph.php:3254 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:54 -msgid "Informative" -msgstr "Informative" - -#: ../../include/functions_graph.php:3255 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:57 -msgid "Low" -msgstr "Low" - -#: ../../include/functions_graph.php:3256 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:60 -msgid "Medium" -msgstr "Medium" - -#: ../../include/functions_graph.php:3257 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:63 -msgid "Serious" -msgstr "Serious" - -#: ../../include/functions_graph.php:3258 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:66 -msgid "Very serious" -msgstr "Very serious" - -#: ../../include/functions_graph.php:3281 -#: ../../include/functions_graph.php:3293 -msgid "Open incident" -msgstr "Open issue" - -#: ../../include/functions_graph.php:3282 -#: ../../include/functions_graph.php:3295 -msgid "Closed incident" -msgstr "Closed issue" - -#: ../../include/functions_graph.php:3283 -#: ../../include/functions_graph.php:3297 -msgid "Outdated" -msgstr "Outdated" - -#: ../../include/functions_graph.php:3284 -#: ../../include/functions_graph.php:3299 -#: ../../enterprise/godmode/setup/setup_acl.php:577 -#: ../../enterprise/godmode/setup/setup_acl.php:590 -msgid "Invalid" -msgstr "Invalid" - -#: ../../include/functions_graph.php:4618 -msgid "Units" -msgstr "Units" - -#: ../../include/functions_graph.php:5162 -#: ../../enterprise/dashboard/widgets/top_n.php:77 -msgid "Avg." -msgstr "Avg." - -#: ../../include/functions_graph.php:6457 -msgid "Main node" -msgstr "Main node" - -#: ../../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 from the disk storage. Please contact your administrator." - -#: ../../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: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:1152 -#: ../../operation/search_results.php:104 -msgid "Graphs" -msgstr "Graphs" - -#: ../../include/functions_groups.php:120 -#: ../../operation/search_results.php:114 -#: ../../enterprise/extensions/cron/functions.php:593 -#: ../../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:788 -#: ../../include/functions_groups.php:790 -#: ../../include/functions_groups.php:792 -#: ../../include/functions_groups.php:793 -#: ../../include/functions_groups.php:794 -#: ../../include/functions_reporting_html.php:3539 -#: ../../mobile/operation/groups.php:137 -msgid "Agents unknown" -msgstr "Unknown agents" - -#: ../../include/functions_groups.php:842 -#: ../../include/functions_groups.php:844 -#: ../../include/functions_groups.php:846 -#: ../../include/functions_groups.php:847 -#: ../../include/functions_groups.php:848 -#: ../../include/functions_reporting_html.php:3043 -#: ../../include/functions_reporting_html.php:3052 -#: ../../mobile/operation/groups.php:161 -#: ../../operation/agentes/ver_agente.php:848 -#: ../../enterprise/operation/agentes/ver_agente.php:152 -msgid "Alerts fired" -msgstr "Triggered alerts" - -#: ../../include/functions_groups.php:2143 -msgid "Show branch children" -msgstr "Show branch children" - -#: ../../include/functions_groups.php:2172 -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 FMS. A common installation must " -"have at least one group." - -#: ../../include/functions_html.php:835 -msgid "weeks" -msgstr "weeks" - -#: ../../include/functions_html.php:953 -msgid "Month day" -msgstr "Day of the month" - -#: ../../include/functions_html.php:955 -msgid "Week day" -msgstr "Day of the week" - -#: ../../include/functions_html.php:2261 -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 issues" - -#: ../../include/functions_incidents.php:89 -#: ../../include/functions_incidents.php:110 -msgid "Active incidents, with comments" -msgstr "Active issues, with comments" - -#: ../../include/functions_incidents.php:90 -#: ../../include/functions_incidents.php:113 -msgid "Rejected incidents" -msgstr "Rejected issues" - -#: ../../include/functions_incidents.php:91 -#: ../../include/functions_incidents.php:116 -msgid "Expired incidents" -msgstr "Expired issues" - -#: ../../include/functions_incidents.php:92 -#: ../../include/functions_incidents.php:119 -msgid "Closed incidents" -msgstr "Closed issues" - -#: ../../include/functions_maps.php:34 -#: ../../include/functions_networkmap.php:1678 -#: ../../include/functions_networkmap.php:1757 -#: ../../enterprise/meta/general/logon_ok.php:62 -msgid "Topology" -msgstr "Topology" - -#: ../../include/functions_maps.php:37 -#: ../../include/functions_networkmap.php:1672 ../../operation/tree.php:80 -#: ../../enterprise/dashboard/widgets/tree_view.php:41 -#: ../../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_menu.php:481 -msgid "Configure user" -msgstr "Configure user" - -#: ../../include/functions_menu.php:482 -msgid "Configure profile" -msgstr "Configure profile" - -#: ../../include/functions_menu.php:486 -msgid "Module templates management" -msgstr "Module templates management" - -#: ../../include/functions_menu.php:487 -msgid "Inventory modules management" -msgstr "Inventory modules management" - -#: ../../include/functions_menu.php:488 -#: ../../enterprise/meta/advanced/component_management.php:56 -msgid "Tags management" -msgstr "Tags management" - -#: ../../include/functions_menu.php:492 -msgid "View agent" -msgstr "View agent" - -#: ../../include/functions_menu.php:496 -msgid "Manage network map" -msgstr "Manage network map" - -#: ../../include/functions_menu.php:498 -msgid "Builder visual console" -msgstr "Visual console editor" - -#: ../../include/functions_menu.php:500 -msgid "Administration events" -msgstr "Administration events" - -#: ../../include/functions_menu.php:502 -msgid "View reporting" -msgstr "View reporting" - -#: ../../include/functions_menu.php:503 -msgid "Graph viewer" -msgstr "Graph viewer" - -#: ../../include/functions_menu.php:505 -msgid "Manage custom graphs" -msgstr "Manage custom graphs" - -#: ../../include/functions_menu.php:506 -msgid "View graph containers" -msgstr "View graph containers" - -#: ../../include/functions_menu.php:507 -msgid "Manage graph containers" -msgstr "Manage graph containers" - -#: ../../include/functions_menu.php:508 -msgid "View graph templates" -msgstr "View graph templates" - -#: ../../include/functions_menu.php:509 -msgid "Manage graph templates" -msgstr "Manage graph templates" - -#: ../../include/functions_menu.php:510 -msgid "Graph template items" -msgstr "Graph template items" - -#: ../../include/functions_menu.php:511 -msgid "Graph template wizard" -msgstr "Graph template wizard" - -#: ../../include/functions_menu.php:514 -msgid "Copy dashboard" -msgstr "Copy dashboard" - -#: ../../include/functions_menu.php:517 -msgid "Manage GIS Maps" -msgstr "Manage GIS Maps" - -#: ../../include/functions_menu.php:519 -msgid "Incidents statistics" -msgstr "Issue statistics" - -#: ../../include/functions_menu.php:520 -msgid "Manage messages" -msgstr "Manage messages" - -#: ../../include/functions_menu.php:522 -msgid "Manage groups" -msgstr "Manage groups" - -#: ../../include/functions_menu.php:523 -msgid "Manage module groups" -msgstr "Manage module groups" - -#: ../../include/functions_menu.php:524 -msgid "Manage custom field" -msgstr "Manage custom fields" - -#: ../../include/functions_menu.php:526 -msgid "Manage alert actions" -msgstr "Manage alert actions" - -#: ../../include/functions_menu.php:527 -msgid "Manage commands" -msgstr "Manage commands" - -#: ../../include/functions_menu.php:528 -msgid "Manage event alerts" -msgstr "Manage event alerts" - -#: ../../include/functions_menu.php:530 -msgid "Manage export targets" -msgstr "Manage export targets" - -#: ../../include/functions_menu.php:532 -msgid "Manage services" -msgstr "Manage services" - -#: ../../include/functions_menu.php:534 ../../operation/menu.php:95 -msgid "SNMP filters" -msgstr "SNMP filters" - -#: ../../include/functions_menu.php:535 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:22 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/operation/menu.php:135 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:79 -msgid "SNMP trap editor" -msgstr "SNMP trap editor" - -#: ../../include/functions_menu.php:536 ../../operation/menu.php:96 -msgid "SNMP trap generator" -msgstr "SNMP trap generator" - -#: ../../include/functions_menu.php:538 ../../operation/menu.php:87 -msgid "SNMP console" -msgstr "SNMP console" - -#: ../../include/functions_menu.php:540 -msgid "Manage incident" -msgstr "Manage issues" - -#: ../../include/functions_menu.php:592 -msgid "Administration" -msgstr "Administration" - -#: ../../include/functions_modules.php:1952 -#: ../../mobile/operation/modules.php:451 -#: ../../mobile/operation/modules.php:504 -#: ../../operation/agentes/status_monitor.php:1151 -#: ../../operation/search_modules.php:104 -#: ../../enterprise/operation/agentes/tag_view.php:795 -msgid "NOT INIT" -msgstr "Not initialised" - -#: ../../include/functions_modules.php:1971 -#: ../../include/functions_modules.php:1975 -#: ../../include/functions_modules.php:1979 -#: ../../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:317 -#: ../../operation/agentes/pandora_networkmap.view.php:322 -#: ../../operation/agentes/pandora_networkmap.view.php:327 -#: ../../operation/agentes/status_monitor.php:1190 -#: ../../operation/agentes/status_monitor.php:1195 -#: ../../operation/agentes/status_monitor.php:1202 -#: ../../operation/agentes/status_monitor.php:1207 -#: ../../operation/agentes/status_monitor.php:1214 -#: ../../operation/agentes/status_monitor.php:1219 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/include/functions_services.php:1703 -#: ../../enterprise/include/functions_services.php:1708 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/tag_view.php:834 -#: ../../enterprise/operation/agentes/tag_view.php:839 -#: ../../enterprise/operation/agentes/tag_view.php:846 -#: ../../enterprise/operation/agentes/tag_view.php:851 -#: ../../enterprise/operation/agentes/tag_view.php:858 -#: ../../enterprise/operation/agentes/tag_view.php:863 -#: ../../enterprise/operation/agentes/transactional_map.php:152 -msgid "Last status" -msgstr "Last status" - -#: ../../include/functions_netflow.php:362 -msgid "Total flows" -msgstr "Total flows" - -#: ../../include/functions_netflow.php:367 -msgid "Total bytes" -msgstr "Total bytes" - -#: ../../include/functions_netflow.php:372 -msgid "Total packets" -msgstr "Total packages" - -#: ../../include/functions_netflow.php:377 -msgid "Average bits per second" -msgstr "Average bits per second" - -#: ../../include/functions_netflow.php:382 -msgid "Average packets per second" -msgstr "Average packages per second" - -#: ../../include/functions_netflow.php:387 -msgid "Average bytes per packet" -msgstr "Average bytes per packet" - -#: ../../include/functions_netflow.php:1031 -msgid "Area graph" -msgstr "Area graph" - -#: ../../include/functions_netflow.php:1032 -msgid "Pie graph and Summary table" -msgstr "Pie graph and summary table" - -#: ../../include/functions_netflow.php:1033 -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" - -#: ../../include/functions_netflow.php:1036 -#: ../../include/functions_netflow.php:1390 -msgid "Host detailed traffic" -msgstr "Detailed host traffic" - -#: ../../include/functions_netflow.php:1049 -#: ../../include/functions_netflow.php:1082 -msgid "10 mins" -msgstr "10 mins" - -#: ../../include/functions_netflow.php:1050 -#: ../../include/functions_netflow.php:1083 -msgid "15 mins" -msgstr "15 mins" - -#: ../../include/functions_netflow.php:1051 -#: ../../include/functions_netflow.php:1084 -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:1058 -#: ../../include/functions_netflow.php:1091 -msgid "5 days" -msgstr "5 days" - -#: ../../include/functions_netflow.php:1062 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 -msgid "2 months" -msgstr "2 months" - -#: ../../include/functions_netflow.php:1065 -msgid "Last year" -msgstr "Last year" - -#: ../../include/functions_netflow.php:1079 -msgid "1 min" -msgstr "1 min" - -#: ../../include/functions_netflow.php:1080 -msgid "2 mins" -msgstr "2 mins" - -#: ../../include/functions_netflow.php:1081 -msgid "5 mins" -msgstr "5 mins" - -#: ../../include/functions_netflow.php:1132 -#: ../../include/functions_netflow.php:1142 -#: ../../include/functions_netflow.php:1191 -#: ../../include/functions_netflow.php:1249 -#: ../../include/functions_netflow.php:1255 -#: ../../include/functions_netflow.php:1288 -msgid "Aggregate" -msgstr "Aggregate" - -#: ../../include/functions_netflow.php:1361 -msgid "Sent" -msgstr "Sent" - -#: ../../include/functions_netflow.php:1368 -msgid "Received" -msgstr "Received" - -#: ../../include/functions_netflow.php:1435 -msgid "Error generating report" -msgstr "Error when generating report" - -#: ../../include/functions_netflow.php:1632 -msgid "MB" -msgstr "MB" - -#: ../../include/functions_netflow.php:1634 -msgid "MB/s" -msgstr "MB/s" - -#: ../../include/functions_netflow.php:1636 -msgid "kB" -msgstr "kB" - -#: ../../include/functions_netflow.php:1638 -msgid "kB/s" -msgstr "kB/s" - -#: ../../include/functions_netflow.php:1642 -msgid "B/s" -msgstr "B/s" - -#: ../../include/functions_netflow.php:1656 -msgid "Dst port" -msgstr "Dst port" - -#: ../../include/functions_netflow.php:1658 -msgid "Dst IP" -msgstr "Dst IP" - -#: ../../include/functions_netflow.php:1662 -msgid "Src IP" -msgstr "Source IP" - -#: ../../include/functions_netflow.php:1664 -msgid "Src port" -msgstr "Src port" - -#: ../../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" - -#: ../../include/functions_planned_downtimes.php:660 -#, php-format -msgid "Enabled %s elements from the downtime" -msgstr "%s elements enabled 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 is active now. It cannot be deleted at the moment." - -#: ../../include/functions_planned_downtimes.php:790 -msgid "Deleted this planned downtime successfully." -msgstr "Planned downtime deleted successfully" - -#: ../../include/functions_planned_downtimes.php:792 -msgid "Problems for deleted this planned downtime." -msgstr "Error deleting this planned downtime" - -#: ../../include/functions_networkmap.php:1675 -#: ../../include/functions_networkmap.php:1761 -msgid "Radial dynamic" -msgstr "Radial dynamic" - -#: ../../include/functions_networkmap.php:1731 -msgid "Create a new topology map" -msgstr "Create a new topology map" - -#: ../../include/functions_networkmap.php:1732 -msgid "Create a new group map" -msgstr "Create a new group map" - -#: ../../include/functions_networkmap.php:1733 -msgid "Create a new dynamic map" -msgstr "Create a new dynamic map" - -#: ../../include/functions_networkmap.php:1735 -msgid "Create a new radial dynamic map" -msgstr "Create a new radial dynamic map" - -#: ../../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:449 -msgid "Numeric OID" -msgstr "Numeric OID" - -#: ../../include/functions_snmp_browser.php:466 -msgid "Syntax" -msgstr "Syntax" - -#: ../../include/functions_snmp_browser.php:471 -msgid "Display hint" -msgstr "Display hint" - -#: ../../include/functions_snmp_browser.php:476 -msgid "Max access" -msgstr "Max. access" - -#: ../../include/functions_snmp_browser.php:491 -msgid "OID Information" -msgstr "OID Information" - -#: ../../include/functions_snmp_browser.php:556 -msgid "Starting OID" -msgstr "Starting OID" - -#: ../../include/functions_snmp_browser.php:585 -msgid "Server to execute" -msgstr "Server to execute" - -#: ../../include/functions_snmp_browser.php:588 -msgid "Browse" -msgstr "Browse" - -#: ../../include/functions_snmp_browser.php:625 -msgid "First match" -msgstr "First match" - -#: ../../include/functions_snmp_browser.php:627 -msgid "Previous match" -msgstr "Previous match" - -#: ../../include/functions_snmp_browser.php:629 -msgid "Next match" -msgstr "Next match" - -#: ../../include/functions_snmp_browser.php:631 -msgid "Last match" -msgstr "Last match" - -#: ../../include/functions_snmp_browser.php:636 -msgid "Expand the tree (can be slow)" -msgstr "Expand tree (this could take some time)" - -#: ../../include/functions_snmp_browser.php:638 -msgid "Collapse the tree" -msgstr "Collapse tree" - -#: ../../include/functions_snmp_browser.php:657 -msgid "SNMP v3 options" -msgstr "SNMP v3 settings" - -#: ../../include/functions_snmp_browser.php:660 -msgid "Search options" -msgstr "Search options" - -#: ../../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:1617 -#: ../../enterprise/include/functions_reporting_csv.php:1621 -#: ../../enterprise/include/functions_reporting_pdf.php:2244 -msgid "Generated" -msgstr "Generated" - -#: ../../include/functions_reporting_html.php:114 -#: ../../enterprise/include/functions_reporting_pdf.php:2247 -msgid "Report date" -msgstr "Report date" - -#: ../../include/functions_reporting_html.php:119 -#: ../../operation/reporting/reporting_viewer.php:197 -#: ../../enterprise/include/functions_reporting_pdf.php:2252 -msgid "Items period before" -msgstr "Items period before" - -#: ../../include/functions_reporting_html.php:401 -#: ../../enterprise/include/functions_reporting.php:1649 -#: ../../enterprise/include/functions_reporting.php:2457 -#: ../../enterprise/include/functions_reporting.php:3234 -#: ../../enterprise/include/functions_reporting_pdf.php:1347 -#: ../../enterprise/include/functions_reporting_pdf.php:1690 -msgid "Max/Min Values" -msgstr "Max/Min Values" - -#: ../../include/functions_reporting_html.php:402 -#: ../../enterprise/include/functions_reporting.php:1650 -#: ../../enterprise/include/functions_reporting.php:2458 -#: ../../enterprise/include/functions_reporting.php:3235 -#: ../../enterprise/include/functions_reporting.php:4844 -#: ../../enterprise/include/functions_reporting.php:5145 -#: ../../enterprise/include/functions_reporting_csv.php:1043 -#: ../../enterprise/include/functions_reporting_csv.php:1090 -#: ../../enterprise/include/functions_reporting_csv.php:1162 -#: ../../enterprise/include/functions_reporting_csv.php:1278 -#: ../../enterprise/include/functions_reporting_csv.php:1490 -#: ../../enterprise/include/functions_reporting_pdf.php:1348 -#: ../../enterprise/include/functions_reporting_pdf.php:1691 -#: ../../enterprise/include/functions_reporting_pdf.php:2121 -msgid "SLA Limit" -msgstr "SLA Limit" - -#: ../../include/functions_reporting_html.php:403 -#: ../../enterprise/include/functions_reporting.php:1650 -#: ../../enterprise/include/functions_reporting.php:1782 -#: ../../enterprise/include/functions_reporting.php:2458 -#: ../../enterprise/include/functions_reporting.php:3235 -#: ../../enterprise/include/functions_reporting.php:4845 -#: ../../enterprise/include/functions_reporting.php:5146 -#: ../../enterprise/include/functions_reporting_pdf.php:1349 -#: ../../enterprise/include/functions_reporting_pdf.php:1691 -#: ../../enterprise/include/functions_reporting_pdf.php:1840 -#: ../../enterprise/include/functions_reporting_pdf.php:2122 -msgid "SLA Compliance" -msgstr "SLA Compliance" - -#: ../../include/functions_reporting_html.php:428 -#: ../../enterprise/include/functions_reporting_pdf.php:1356 -msgid "Global Time" -msgstr "Global Time" - -#: ../../include/functions_reporting_html.php:429 -#: ../../enterprise/include/functions_reporting_csv.php:1421 -#: ../../enterprise/include/functions_reporting_pdf.php:1357 -msgid "Time Total" -msgstr "Total time" - -#: ../../include/functions_reporting_html.php:430 -#: ../../enterprise/include/functions_reporting_pdf.php:1358 -#: ../../enterprise/include/functions_reporting_pdf.php:1931 -msgid "Time Failed" -msgstr "Time in failed status" - -#: ../../include/functions_reporting_html.php:431 -#: ../../include/functions_reporting_html.php:2328 -#: ../../enterprise/include/functions_reporting_csv.php:1422 -#: ../../enterprise/include/functions_reporting_pdf.php:1359 -#: ../../enterprise/include/functions_reporting_pdf.php:1932 -msgid "Time OK" -msgstr "Time in OK status" - -#: ../../include/functions_reporting_html.php:432 -#: ../../enterprise/include/functions_reporting_csv.php:1424 -#: ../../enterprise/include/functions_reporting_pdf.php:1360 -#: ../../enterprise/include/functions_reporting_pdf.php:1933 -msgid "Time Unknown" -msgstr "Time in unknown status" - -#: ../../include/functions_reporting_html.php:433 -#: ../../enterprise/include/functions_reporting_csv.php:1425 -#: ../../enterprise/include/functions_reporting_pdf.php:1361 -msgid "Time Not Init" -msgstr "Time in not initialized status" - -#: ../../include/functions_reporting_html.php:434 -#: ../../enterprise/include/functions_reporting_pdf.php:1362 -msgid "Downtime" -msgstr "Downtime" - -#: ../../include/functions_reporting_html.php:459 -#: ../../enterprise/include/functions_reporting_pdf.php:1368 -msgid "Checks Time" -msgstr "Checks time" - -#: ../../include/functions_reporting_html.php:460 -#: ../../enterprise/include/functions_reporting_csv.php:1427 -#: ../../enterprise/include/functions_reporting_pdf.php:1369 -msgid "Checks Total" -msgstr "Total number of checks" - -#: ../../include/functions_reporting_html.php:461 -#: ../../enterprise/include/functions_reporting_pdf.php:1370 -#: ../../enterprise/include/functions_reporting_pdf.php:1951 -msgid "Checks Failed" -msgstr "Failed checks" - -#: ../../include/functions_reporting_html.php:462 -#: ../../include/functions_reporting_html.php:2371 -#: ../../enterprise/include/functions_reporting_csv.php:1428 -#: ../../enterprise/include/functions_reporting_pdf.php:1371 -#: ../../enterprise/include/functions_reporting_pdf.php:1952 -msgid "Checks OK" -msgstr "Checks in OK status" - -#: ../../include/functions_reporting_html.php:463 -#: ../../enterprise/include/functions_reporting_csv.php:1430 -#: ../../enterprise/include/functions_reporting_pdf.php:1372 -#: ../../enterprise/include/functions_reporting_pdf.php:1953 -msgid "Checks Unknown" -msgstr "Checks in unknown status" - -#: ../../include/functions_reporting_html.php:688 -#: ../../include/functions_reporting_html.php:2607 -#: ../../enterprise/include/functions_reporting.php:2671 -#: ../../enterprise/include/functions_reporting.php:3440 -#: ../../enterprise/include/functions_reporting_pdf.php:1587 -#: ../../enterprise/include/functions_services.php:1360 -msgid "Unknow" -msgstr "Unknown" - -#: ../../include/functions_reporting_html.php:693 -#: ../../include/functions_reporting_html.php:2612 -#: ../../operation/agentes/group_view.php:170 -#: ../../enterprise/include/functions_reporting.php:1680 -#: ../../enterprise/include/functions_reporting.php:2488 -#: ../../enterprise/include/functions_reporting.php:2676 -#: ../../enterprise/include/functions_reporting.php:3265 -#: ../../enterprise/include/functions_reporting.php:3445 -#: ../../enterprise/include/functions_reporting.php:4182 -#: ../../enterprise/include/functions_reporting_pdf.php:1589 -#: ../../enterprise/include/functions_reporting_pdf.php:1728 -msgid "Not Init" -msgstr "Not initialised" - -#: ../../include/functions_reporting_html.php:698 -#: ../../include/functions_reporting_html.php:2617 -#: ../../enterprise/include/functions_reporting.php:2681 -#: ../../enterprise/include/functions_reporting.php:3450 -#: ../../enterprise/include/functions_reporting_pdf.php:1591 -msgid "Downtimes" -msgstr "Downtimes" - -#: ../../include/functions_reporting_html.php:703 -#: ../../include/functions_reporting_html.php:2622 -#: ../../enterprise/include/functions_reporting.php:2686 -#: ../../enterprise/include/functions_reporting.php:3455 -#: ../../enterprise/include/functions_reporting_pdf.php:1593 -msgid "Ignore time" -msgstr "Ignore time" - -#: ../../include/functions_reporting_html.php:775 -#: ../../include/functions_reporting_html.php:1532 -#: ../../include/functions_reporting_html.php:2521 -#: ../../include/functions_reporting_html.php:2787 -#: ../../enterprise/include/functions_reporting_pdf.php:850 -#: ../../enterprise/include/functions_reporting_pdf.php:977 -#: ../../enterprise/include/functions_reporting_pdf.php:1033 -msgid "Min Value" -msgstr "Minimum value" - -#: ../../include/functions_reporting_html.php:776 -#: ../../include/functions_reporting_html.php:1533 -#: ../../include/functions_reporting_html.php:2522 -#: ../../include/functions_reporting_html.php:2788 -#: ../../enterprise/include/functions_reporting_pdf.php:851 -#: ../../enterprise/include/functions_reporting_pdf.php:978 -#: ../../enterprise/include/functions_reporting_pdf.php:1034 -#: ../../enterprise/include/functions_reporting_pdf.php:2074 -msgid "Average Value" -msgstr "Average value" - -#: ../../include/functions_reporting_html.php:777 -#: ../../include/functions_reporting_html.php:1534 -#: ../../include/functions_reporting_html.php:2519 -#: ../../include/functions_reporting_html.php:2790 -#: ../../enterprise/include/functions_reporting_pdf.php:852 -#: ../../enterprise/include/functions_reporting_pdf.php:979 -#: ../../enterprise/include/functions_reporting_pdf.php:1035 -#: ../../enterprise/include/functions_reporting_pdf.php:2071 -msgid "Max Value" -msgstr "Maximum value" - -#: ../../include/functions_reporting_html.php:810 -#: ../../include/functions_reporting_html.php:1028 -#: ../../include/functions_reporting_html.php:1647 -#: ../../operation/snmpconsole/snmp_view.php:718 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 -msgid "Count" -msgstr "Count" - -#: ../../include/functions_reporting_html.php:815 -#: ../../include/functions_reporting_html.php:824 -#: ../../include/functions_reporting_html.php:1652 -msgid "Val. by" -msgstr "Value" - -#: ../../include/functions_reporting_html.php:918 -#: ../../include/functions_reporting_html.php:1114 -msgid "Events by agent" -msgstr "Events per agent" - -#: ../../include/functions_reporting_html.php:937 -#: ../../include/functions_reporting_html.php:1133 -msgid "Events by user validator" -msgstr "Events according to validating user" - -#: ../../include/functions_reporting_html.php:956 -#: ../../include/functions_reporting_html.php:1152 -msgid "Events by Severity" -msgstr "Events according to severity" - -#: ../../include/functions_reporting_html.php:975 -#: ../../include/functions_reporting_html.php:1171 -msgid "Events validated vs unvalidated" -msgstr "Validated vs. unvalidated events" - -#: ../../include/functions_reporting_html.php:1231 -#: ../../enterprise/include/functions_inventory.php:656 -#: ../../enterprise/include/functions_inventory.php:719 -#: ../../enterprise/include/functions_reporting_pdf.php:541 -msgid "Added" -msgstr "Added" - -#: ../../include/functions_reporting_html.php:1382 -#: ../../enterprise/dashboard/widgets/agent_module.php:347 -#: ../../enterprise/include/functions_reporting_pdf.php:664 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "%s in %s : NORMAL" - -#: ../../include/functions_reporting_html.php:1391 -#: ../../enterprise/dashboard/widgets/agent_module.php:355 -#: ../../enterprise/include/functions_reporting_pdf.php:673 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "%s in %s : CRITICAL" - -#: ../../include/functions_reporting_html.php:1400 -#: ../../enterprise/dashboard/widgets/agent_module.php:363 -#: ../../enterprise/include/functions_reporting_pdf.php:682 -#, php-format -msgid "%s in %s : WARNING" -msgstr "%s in %s: WARNING" - -#: ../../include/functions_reporting_html.php:1409 -#: ../../enterprise/dashboard/widgets/agent_module.php:371 -#: ../../enterprise/include/functions_reporting_pdf.php:691 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "%s in %s: UNKNOWN" - -#: ../../include/functions_reporting_html.php:1420 -#: ../../enterprise/dashboard/widgets/agent_module.php:388 -#: ../../enterprise/include/functions_reporting_pdf.php:709 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "%s in %s: ALERTS TRIGGERED" - -#: ../../include/functions_reporting_html.php:1429 -#: ../../enterprise/dashboard/widgets/agent_module.php:379 -#: ../../enterprise/include/functions_reporting_pdf.php:700 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "%s in %s: not initialized" - -#: ../../include/functions_reporting_html.php:1453 -msgid "Cell turns grey when the module is in 'not initialize' status" -msgstr "Cell turns grey when the module is in 'not initialize' status" - -#: ../../include/functions_reporting_html.php:1559 -#: ../../include/functions_reporting_html.php:1574 -#: ../../operation/agentes/gis_view.php:214 -#: ../../operation/agentes/group_view.php:165 ../../operation/tree.php:295 -#: ../../enterprise/dashboard/widgets/tree_view.php:207 -#: ../../enterprise/include/functions_inventory.php:324 -#: ../../enterprise/include/functions_inventory.php:456 -#: ../../enterprise/include/functions_reporting_pdf.php:737 -#: ../../enterprise/include/functions_reporting_pdf.php:752 -#: ../../enterprise/meta/monitoring/group_view.php:145 -#: ../../enterprise/operation/agentes/agent_inventory.php:230 -msgid "Total" -msgstr "Total" - -#: ../../include/functions_reporting_html.php:1588 -#: ../../include/functions_reporting_html.php:3385 -msgid "Monitors" -msgstr "Monitors" - -#: ../../include/functions_reporting_html.php:1607 -#: ../../include/functions_reporting_html.php:1962 -#: ../../include/functions_reporting_html.php:1963 -#: ../../mobile/operation/alerts.php:38 -#: ../../operation/agentes/alerts_status.functions.php:74 -#: ../../operation/snmpconsole/snmp_view.php:194 -#: ../../operation/snmpconsole/snmp_view.php:1035 -#: ../../enterprise/include/functions_reporting_pdf.php:780 -msgid "Fired" -msgstr "Triggered" - -#: ../../include/functions_reporting_html.php:1620 -#: ../../enterprise/include/functions_reporting_pdf.php:795 -#, php-format -msgid "Last %s" -msgstr "Last %s" - -#: ../../include/functions_reporting_html.php:1740 -msgid "Events validated by user" -msgstr "Events validated by user" - -#: ../../include/functions_reporting_html.php:1759 -#: ../../include/functions_reporting_html.php:3674 -msgid "Events by severity" -msgstr "Events by severity" - -#: ../../include/functions_reporting_html.php:1778 -#: ../../operation/events/event_statistics.php:61 -msgid "Amount events validated" -msgstr "Number of validated events" - -#: ../../include/functions_reporting_html.php:1908 -#, php-format -msgid "Interface '%s' throughput graph" -msgstr "Interface '%s' throughput graph" - -#: ../../include/functions_reporting_html.php:1911 -msgid "Mac" -msgstr "MAC address" - -#: ../../include/functions_reporting_html.php:1912 -msgid "Actual status" -msgstr "Current status" - -#: ../../include/functions_reporting_html.php:2108 -msgid "Empty modules" -msgstr "Empty modules" - -#: ../../include/functions_reporting_html.php:2115 -msgid "Warning
Critical" -msgstr "Warning
Critical" - -#: ../../include/functions_reporting_html.php:2236 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:361 -msgid "From data" -msgstr "From data" - -#: ../../include/functions_reporting_html.php:2237 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:362 -msgid "To data" -msgstr "To data" - -#: ../../include/functions_reporting_html.php:2265 -#: ../../enterprise/include/functions_reporting_csv.php:869 -#: ../../enterprise/include/functions_reporting_csv.php:887 -#: ../../enterprise/include/functions_reporting_pdf.php:374 -msgid "Negative increase: " -msgstr "Negative increase: " - -#: ../../include/functions_reporting_html.php:2268 -#: ../../enterprise/include/functions_reporting_csv.php:872 -#: ../../enterprise/include/functions_reporting_csv.php:890 -#: ../../enterprise/include/functions_reporting_pdf.php:377 -msgid "Positive increase: " -msgstr "Positive increase: " - -#: ../../include/functions_reporting_html.php:2271 -#: ../../enterprise/include/functions_reporting_csv.php:875 -#: ../../enterprise/include/functions_reporting_csv.php:893 -#: ../../enterprise/include/functions_reporting_pdf.php:380 -msgid "Neutral increase: " -msgstr "Neutral increase: " - -#: ../../include/functions_reporting_html.php:2326 -msgid "Total time" -msgstr "Total time" - -#: ../../include/functions_reporting_html.php:2327 -msgid "Time failed" -msgstr "Time failed" - -#: ../../include/functions_reporting_html.php:2329 -msgid "Time Uknown" -msgstr "Time Uknown" - -#: ../../include/functions_reporting_html.php:2330 -msgid "Time Not Init Module" -msgstr "Time of not initialized module" - -#: ../../include/functions_reporting_html.php:2331 -#: ../../enterprise/include/functions_reporting_csv.php:1426 -msgid "Time Downtime" -msgstr "Time of downtime" - -#: ../../include/functions_reporting_html.php:2332 -#: ../../enterprise/include/functions_reporting_pdf.php:1936 -msgid "% Ok" -msgstr "% OK" - -#: ../../include/functions_reporting_html.php:2369 -msgid "Total checks" -msgstr "Total checks" - -#: ../../include/functions_reporting_html.php:2370 -msgid "Checks failed" -msgstr "Checks failed" - -#: ../../include/functions_reporting_html.php:2372 -msgid "Checks Uknown" -msgstr "Unknown checks" - -#: ../../include/functions_reporting_html.php:2518 -#: ../../enterprise/include/functions_reporting_pdf.php:2070 -msgid "Agent max value" -msgstr "Agent max value" - -#: ../../include/functions_reporting_html.php:2520 -msgid "Agent min value" -msgstr "Agent min value" - -#: ../../include/functions_reporting_html.php:2708 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_pdf.php:913 -msgid "Sum" -msgstr "Sum" - -#: ../../include/functions_reporting_html.php:2799 -#: ../../include/functions_reporting_html.php:2902 -#: ../../enterprise/dashboard/widgets/tactical.php:44 -msgid "Summary" -msgstr "Summary" - -#: ../../include/functions_reporting_html.php:2865 -#: ../../operation/tree.php:178 -msgid "Module status" -msgstr "Module status" - -#: ../../include/functions_reporting_html.php:2994 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1224 -msgid "Alert description" -msgstr "Alert description" - -#: ../../include/functions_reporting_html.php:3044 -msgid "Alerts not fired" -msgstr "Non-triggered alerts" - -#: ../../include/functions_reporting_html.php:3053 -msgid "Total alerts monitored" -msgstr "Total number of monitored alerts" - -#: ../../include/functions_reporting_html.php:3104 -msgid "Total monitors" -msgstr "Total number of monitors" - -#: ../../include/functions_reporting_html.php:3105 -msgid "Monitors down on period" -msgstr "Monitors down on period" - -#: ../../include/functions_reporting_html.php:3121 -msgid "Monitors OK" -msgstr "Monitors in OK status" - -#: ../../include/functions_reporting_html.php:3122 -msgid "Monitors BAD" -msgstr "Monitors BAD" - -#: ../../include/functions_reporting_html.php:3148 -#: ../../include/functions_reporting_html.php:3288 -#: ../../mobile/include/functions_web.php:23 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 -msgid "Monitor" -msgstr "Monitor" - -#: ../../include/functions_reporting_html.php:3196 -#, php-format -msgid "Agents in group: %s" -msgstr "Agents in group: %s" - -#: ../../include/functions_reporting_html.php:3289 -msgid "Last failure" -msgstr "Latest failure" - -#: ../../include/functions_reporting_html.php:3353 -msgid "N/A(*)" -msgstr "N/A(*)" - -#: ../../include/functions_reporting_html.php:3527 -#: ../../mobile/operation/groups.php:133 -msgid "Agents critical" -msgstr "Agents in critical status" - -#: ../../include/functions_reporting_html.php:3530 -msgid "Agents warning" -msgstr "Agents in warning status" - -#: ../../include/functions_reporting_html.php:3536 -msgid "Agents ok" -msgstr "Agents in OK status" - -#: ../../include/functions_reporting_html.php:3545 -#: ../../mobile/operation/groups.php:129 -msgid "Agents not init" -msgstr "Not initialised agents" - -#: ../../include/functions_reporting_html.php:3556 -#: ../../include/functions_reporting_html.php:3565 -msgid "Agents by status" -msgstr "Agents by status" - -#: ../../include/functions_reporting_html.php:3602 -#: ../../operation/agentes/pandora_networkmap.php:565 -#: ../../enterprise/godmode/reporting/cluster_list.php:171 -msgid "Nodes" -msgstr "Nodes" - -#: ../../include/functions_reporting_html.php:3609 -#: ../../include/functions_reporting_html.php:3618 -msgid "Node overview" -msgstr "Node overview" - -#: ../../include/functions_reporting_html.php:3636 -#: ../../include/functions_reporting_html.php:3653 -msgid "Critical events" -msgstr "Critical events" - -#: ../../include/functions_reporting_html.php:3640 -#: ../../include/functions_reporting_html.php:3657 -msgid "Warning events" -msgstr "Events in warning status" - -#: ../../include/functions_reporting_html.php:3644 -#: ../../include/functions_reporting_html.php:3661 -msgid "OK events" -msgstr "Events in OK status" - -#: ../../include/functions_reporting_html.php:3648 -#: ../../include/functions_reporting_html.php:3665 -msgid "Unknown events" -msgstr "Events in unknown status" - -#: ../../include/functions_reporting_html.php:3688 -msgid "Important Events by Criticity" -msgstr "Important events by severity" - -#: ../../include/functions_reporting_html.php:3714 -msgid "Last activity in Pandora FMS console" -msgstr "Latest activity in the Pandora FMS console" - -#: ../../include/functions_reporting_html.php:3790 -#: ../../include/functions_reporting_html.php:3930 -msgid "Events info (1hr.)" -msgstr "Event info (1h)" - -#: ../../include/functions_reporting_html.php:4096 -#: ../../enterprise/include/functions_reporting.php:4974 -#: ../../enterprise/include/functions_reporting_pdf.php:2499 -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:4101 -#: ../../enterprise/include/functions_reporting.php:4979 -#: ../../enterprise/include/functions_reporting_pdf.php:2504 -msgid "Dates" -msgstr "Dates" - -#: ../../include/functions_reporting_html.php:4142 -#: ../../enterprise/include/functions_reporting.php:5073 -#: ../../enterprise/include/functions_reporting_pdf.php:2543 -msgid "This item is affected by a malformed planned downtime" -msgstr "This item is affected by an erroneous planned downtime" - -#: ../../include/functions_reporting_html.php:4143 -#: ../../enterprise/include/functions_reporting.php:5074 -#: ../../enterprise/include/functions_reporting_pdf.php:2544 -msgid "Go to the planned downtimes section to solve this" -msgstr "Go to the planned downtimes section to solve this." - -#: ../../include/functions_reports.php:511 -msgid "SQL vertical bar graph" -msgstr "SQL vertical bar graph" - -#: ../../include/functions_reports.php:513 -msgid "SQL pie graph" -msgstr "SQL pie graph" - -#: ../../include/functions_reports.php:515 -msgid "SQL horizonal bar graph" -msgstr "SQL horizonal bar graph" - -#: ../../include/functions_reports.php:519 -msgid "Automatic combined Graph" -msgstr "Automatically combined graph" - -#: ../../include/functions_reports.php:523 -msgid "Availability graph" -msgstr "Availability graph" - -#: ../../include/functions_reports.php:526 -msgid "Module Histogram graph" -msgstr "Module histogram graph" - -#: ../../include/functions_reports.php:528 -#: ../../include/functions_reports.php:530 -#: ../../include/functions_reports.php:532 -#: ../../include/functions_reports.php:534 -msgid "ITIL" -msgstr "ITIL" - -#: ../../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:1432 -#: ../../enterprise/operation/services/services.list.php:343 -#: ../../enterprise/operation/services/services.service.php:141 -msgid "SLA" -msgstr "SLA" - -#: ../../include/functions_reports.php:543 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 -#: ../../enterprise/include/functions_reporting.php:2015 -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:2740 -msgid "Weekly S.L.A." -msgstr "Weekly SLA" - -#: ../../include/functions_reports.php:547 -#: ../../enterprise/include/functions_reporting.php:3522 -msgid "Hourly S.L.A." -msgstr "Hourly SLA" - -#: ../../include/functions_reports.php:551 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:119 -#: ../../enterprise/include/functions_reporting.php:4434 -#: ../../enterprise/include/functions_reporting.php:4898 -msgid "Services S.L.A." -msgstr "SLA services" - -#: ../../include/functions_reports.php:556 -#: ../../include/functions_reports.php:558 -msgid "Forecasting" -msgstr "Forecasting" - -#: ../../include/functions_reports.php:557 -#: ../../enterprise/include/functions_reporting_csv.php:327 -msgid "Prediction date" -msgstr "Prediction date" - -#: ../../include/functions_reports.php:559 -msgid "Projection graph" -msgstr "Projection graph" - -#: ../../include/functions_reports.php:570 -msgid "Monitor report" -msgstr "Monitor report" - -#: ../../include/functions_reports.php:572 -msgid "Serialize data" -msgstr "Serialise data" - -#: ../../include/functions_reports.php:576 -msgid "Historical Data" -msgstr "Historical data" - -#: ../../include/functions_reports.php:581 -#: ../../include/functions_reports.php:583 -#: ../../include/functions_reports.php:585 -#: ../../include/functions_reports.php:588 -#: ../../include/functions_reports.php:592 -#: ../../include/functions_reports.php:595 -#: ../../include/functions_reports.php:597 -#: ../../include/functions_reports.php:599 -msgid "Grouped" -msgstr "Grouped" - -#: ../../include/functions_reports.php:584 -#: ../../enterprise/include/functions_reporting_csv.php:482 -msgid "Group report" -msgstr "Group report" - -#: ../../include/functions_reports.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:45 -msgid "Top n" -msgstr "Top N" - -#: ../../include/functions_reports.php:598 -msgid "Network interfaces" -msgstr "Network interfaces" - -#: ../../include/functions_reports.php:603 -#: ../../include/functions_reports.php:605 -msgid "Text/HTML " -msgstr "Text / HTML " - -#: ../../include/functions_reports.php:606 -msgid "Import text from URL" -msgstr "Import text from URL" - -#: ../../include/functions_reports.php:611 -msgid "Alert report module" -msgstr "Alert report module" - -#: ../../include/functions_reports.php:613 -msgid "Alert report agent" -msgstr "Alert report agent" - -#: ../../include/functions_reports.php:616 -msgid "Alert report group" -msgstr "Group alert report" - -#: ../../include/functions_reports.php:622 -msgid "Event report agent" -msgstr "Event report agent" - -#: ../../include/functions_reports.php:624 -msgid "Event report module" -msgstr "Event report module" - -#: ../../include/functions_reports.php:626 -msgid "Event report group" -msgstr "Group event report" - -#: ../../include/functions_reports.php:633 -msgid "Inventory changes" -msgstr "Inventory changes" - -#: ../../include/functions_reports.php:643 -msgid "Netflow area chart" -msgstr "Netflow area chart" - -#: ../../include/functions_reports.php:645 -msgid "Netflow pie chart" -msgstr "Netflow pie chart" - -#: ../../include/functions_reports.php:647 -msgid "Netflow data table" -msgstr "Netflow data chart" - -#: ../../include/functions_reports.php:649 -msgid "Netflow statistics table" -msgstr "Netflow statistics chart" - -#: ../../include/functions_reports.php:651 -msgid "Netflow summary table" -msgstr "Netflow summary chart" - -#: ../../include/functions_reports.php:655 -#: ../../enterprise/include/functions_reporting.php:1831 -msgid "Log" -msgstr "Log" - -#: ../../include/functions_reports.php:656 -#: ../../enterprise/include/functions_reporting.php:1822 -msgid "Log report" -msgstr "Log report" - -#: ../../include/functions_servers.php:364 -msgid "Data server" -msgstr "Data server" - -#: ../../include/functions_servers.php:369 -msgid "Network server" -msgstr "Network server" - -#: ../../include/functions_servers.php:374 -msgid "SNMP Trap server" -msgstr "SNMP trap server" - -#: ../../include/functions_servers.php:384 -msgid "Plugin server" -msgstr "Plugin server" - -#: ../../include/functions_servers.php:389 -msgid "Prediction server" -msgstr "Prediction server" - -#: ../../include/functions_servers.php:394 -msgid "WMI server" -msgstr "WMI server" - -#: ../../include/functions_servers.php:399 -#: ../../enterprise/godmode/servers/manage_export_form.php:71 -msgid "Export server" -msgstr "Export server" - -#: ../../include/functions_servers.php:404 -msgid "Inventory server" -msgstr "Inventory server" - -#: ../../include/functions_servers.php:409 -msgid "Web server" -msgstr "Web server" - -#: ../../include/functions_servers.php:414 -msgid "Event server" -msgstr "Event server" - -#: ../../include/functions_servers.php:419 -msgid "Enterprise ICMP server" -msgstr "Enterprise ICMP server" - -#: ../../include/functions_servers.php:424 -msgid "Enterprise SNMP server" -msgstr "Enterprise SNMP server" - -#: ../../include/functions_servers.php:429 -msgid "Enterprise Satellite server" -msgstr "Enterprise Satellite server" - -#: ../../include/functions_servers.php:434 -msgid "Enterprise Transactional server" -msgstr "Enterprise Transactional server" - -#: ../../include/functions_servers.php:439 -msgid "Mainframe server" -msgstr "Mainframe server" - -#: ../../include/functions_servers.php:444 -msgid "Sync server" -msgstr "Sync server" - -#: ../../include/functions_servers.php:449 -msgid "Wux server" -msgstr "WUX server" - -#: ../../include/functions_servers.php:454 -msgid "Syslog server" -msgstr "Syslog server" - -#: ../../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 interruptions 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_snmp.php:312 -msgid "Pagination" -msgstr "Pagination" - -#: ../../include/functions_snmp.php:333 ../../include/functions_snmp.php:339 -msgid "Group by Enterprise String / IP" -msgstr "Group by Enterprise String / IP" - -#: ../../include/functions_snmp.php:384 -#: ../../enterprise/include/functions_events.php:212 -msgid "Active filter" -msgstr "Active filter" - -#: ../../include/functions_snmp.php:385 -#: ../../enterprise/include/functions_events.php:213 -msgid "Active filters" -msgstr "Active filters" - -#: ../../include/graphs/export_data.php:71 -#: ../../include/graphs/export_data.php:126 -msgid "An error occured exporting the data" -msgstr "Error exporting the data" - -#: ../../include/graphs/export_data.php:76 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -msgid "Selected" -msgstr "Selected" - -#: ../../include/graphs/functions_flot.php:257 -#: ../../include/graphs/functions_flot.php:287 -msgid "Cancel zoom" -msgstr "Cancel zoom" - -#: ../../include/graphs/functions_flot.php:259 -msgid "Warning and Critical thresholds" -msgstr "Warning and critical thresholds" - -#: ../../include/graphs/functions_flot.php:262 -msgid "Overview graph" -msgstr "Overview graph" - -#: ../../include/graphs/functions_pchart.php:200 -#: ../../include/graphs/functions_pchart.php:1466 -msgid "Actual" -msgstr "Actual" - -#: ../../include/help/clippy/agent_out_of_limits.php:39 -msgid "Agent contact date passed it's ETA!." -msgstr "Agent contact date passed its 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 down). 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 to critical/warning 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 from 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 enterprise setup:" -msgstr "" -"The email configuration for the task email is in the Enterprise setup:" - -#: ../../include/help/clippy/extension_cron_send_email.php:40 -msgid "Please check if the email configuration is correct." -msgstr "Please check if the email 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 will 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 will 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 on 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 will teach you" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 -msgid "Now we are going to fill the form." -msgstr "Now, we will proceed to fill out the form." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 -msgid "Please choose Network Management." -msgstr "Please select 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 the IP of your device" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 -msgid "And only to finish it is clicking this button." -msgstr "To finish, simply click on 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 "" -"Congratulations! Your module has been created.
Its status colour 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:140 -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 have 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 will 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 displayed." - -#: ../../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 myself: 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 never 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 perform 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 set up the email configuration 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 have already configured it, you can proceed to the next step." - -#: ../../include/help/clippy/homepage.php:218 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "Now, expand 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 performance of the " -"server. For example, having 200 agents with a one minute interval, is the " -"same as 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 are not receiving data right now. Please check our " -"troubleshooting page to help you determine why some of your modules are in " -"unknown status." - -#: ../../include/help/clippy/modules_not_init.php:39 -msgid "You have non initialized modules" -msgstr "You have non initialized 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 was not executed for " -"the first time. Usually after a few seconds the status should change to " -"'initialized' and you will 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 must not 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 that if you have a local plugin or if you add new modules to the " -"configuration file manually, you will not have it in your agent, unless you " -"create it manually in the interface first (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 do not " -"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, go to the monitor list and look for a 'critical' module to which you " -"can apply the alert." - -#: ../../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 the button Show to obtain a filtered list of modules." - -#: ../../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 displayed 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 created alert. Click on the round icon to " -"force the action execution and after a few minutes you will receive the " -"alert in your email." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:37 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" -"Then, restart your Pandora FMS 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 version 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 execute the " -"following command: 'sudo /etc/init.d/pandora_server restart'. You will 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. " - -#: ../../mobile/include/functions_web.php:81 -#: ../../mobile/include/ui.class.php:257 -#, 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:493 -#: ../../enterprise/extensions/cron/functions.php:599 -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:161 -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 "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 "Log out" - -#: ../../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:233 ../../mobile/operation/agent.php:88 -#: ../../mobile/operation/agents.php:167 ../../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 need help.

Please remember that " -"any attempts to access this page will be recorded on the Pandora FMS System " -"Database." - -#: ../../mobile/operation/agent.php:135 ../../mobile/operation/agents.php:183 -#: ../../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:139 -msgid "PandoraFMS: Agents" -msgstr "PandoraFMS: Agents" - -#: ../../mobile/operation/agent.php:145 -msgid "No agent found" -msgstr "No agents found" - -#: ../../mobile/operation/agent.php:231 -msgid "Modules by status" -msgstr "Modules by status" - -#: ../../mobile/operation/agent.php:302 -#, php-format -msgid "Last %s Events" -msgstr "Last %s events" - -#: ../../mobile/operation/agents.php:187 -#, php-format -msgid "Filter Agents by %s" -msgstr "Filter agents by %s" - -#: ../../mobile/operation/agents.php:222 ../../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:393 -msgid "No agents" -msgstr "No agents" - -#: ../../mobile/operation/agents.php:483 ../../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:489 ../../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:493 ../../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:497 ../../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:194 -#: ../../operation/snmpconsole/snmp_view.php:1038 -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 triggered" - -#: ../../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 connecting to Pandora FMS DB" - -#: ../../mobile/operation/events.php:458 -msgid "Event detail" -msgstr "Event details" - -#: ../../mobile/operation/events.php:541 -msgid "Sucessful validate" -msgstr "Validated successfully" - -#: ../../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:314 -#: ../../enterprise/dashboard/widgets/tree_view.php:226 -#: ../../enterprise/include/functions_reporting_csv.php:475 -msgid "Unknown modules" -msgstr "Unknown modules" - -#: ../../mobile/operation/groups.php:145 ../../operation/tree.php:319 -#: ../../enterprise/dashboard/widgets/tree_view.php:231 -#: ../../enterprise/include/functions_reporting_csv.php:476 -msgid "Not init modules" -msgstr "Modules in not initialised status" - -#: ../../mobile/operation/groups.php:149 ../../operation/tree.php:324 -#: ../../enterprise/dashboard/widgets/tree_view.php:236 -#: ../../enterprise/include/functions_reporting_csv.php:472 -msgid "Normal modules" -msgstr "Modules in normal status" - -#: ../../mobile/operation/groups.php:153 ../../operation/tree.php:309 -#: ../../enterprise/dashboard/widgets/tree_view.php:221 -#: ../../enterprise/include/functions_reporting_csv.php:474 -msgid "Warning modules" -msgstr "Modules in warning status" - -#: ../../mobile/operation/groups.php:157 ../../operation/tree.php:304 -#: ../../enterprise/dashboard/widgets/tree_view.php:216 -#: ../../enterprise/include/functions_reporting_csv.php:473 -msgid "Critical modules" -msgstr "Modules in critical status" - -#: ../../mobile/operation/home.php:78 -#: ../../mobile/operation/networkmaps.php:112 -msgid "Networkmaps" -msgstr "Network maps" - -#: ../../mobile/operation/home.php:84 ../../mobile/operation/visualmaps.php:96 -msgid "Visual consoles" -msgstr "Visual consoles" - -#: ../../mobile/operation/home.php:104 -#: ../../operation/agentes/pandora_networkmap.editor.php:174 -#: ../../operation/agentes/pandora_networkmap.php:526 -#: ../../operation/agentes/pandora_networkmap.view.php:744 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:76 -msgid "Networkmap" -msgstr "Network map" - -#: ../../mobile/operation/home.php:110 -msgid "Visualmap" -msgstr "Visual map" - -#: ../../mobile/operation/home.php:168 ../../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:414 -msgid "Time compare (Separated)" -msgstr "Time comparison (separated)" - -#: ../../mobile/operation/module_graph.php:426 -#: ../../operation/agentes/stat_win.php:420 -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:162 -#: ../../operation/agentes/interface_traffic_graph_win.php:249 -#: ../../operation/agentes/stat_win.php:339 -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: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:1439 -#: ../../enterprise/godmode/reporting/cluster_view.php:485 -#: ../../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: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:146 -msgid "No maps defined" -msgstr "No maps defined" - -#: ../../operation/agentes/agent_fields.php:38 -#: ../../operation/agentes/status_monitor.php:548 -#: ../../enterprise/operation/agentes/tag_view.php:318 -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:339 -#: ../../operation/agentes/status_monitor.php:342 -#: ../../enterprise/operation/agentes/tag_view.php:144 -#: ../../enterprise/operation/agentes/tag_view.php:147 -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:347 -#: ../../enterprise/operation/agentes/tag_view.php:150 -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:141 -msgid "Full list of alerts" -msgstr "Full list of alerts" - -#: ../../operation/agentes/alerts_status.php:168 -#: ../../enterprise/meta/general/main_header.php:103 -msgid "Alerts view" -msgstr "Alerts view" - -#: ../../operation/agentes/alerts_status.php:177 -msgid "Insufficient permissions to validate alerts" -msgstr "Insufficient permissions to validate alerts" - -#: ../../operation/agentes/alerts_status.php:632 -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:89 -#: ../../operation/agentes/ehorus.php:126 -msgid "There was an error retrieving an authorization token" -msgstr "Error retrieving an authorization token" - -#: ../../operation/agentes/ehorus.php:102 -#: ../../operation/agentes/ehorus.php:139 -#: ../../operation/agentes/ehorus.php:175 -msgid "There was an error processing the response" -msgstr "Error processing the response" - -#: ../../operation/agentes/ehorus.php:162 -msgid "There was an error retrieving the agent data" -msgstr "Error retrieving the agent data" - -#: ../../operation/agentes/ehorus.php:180 -msgid "Remote management of this agent with eHorus" -msgstr "Remote management of this agent with eHorus" - -#: ../../operation/agentes/ehorus.php:182 -msgid "Launch" -msgstr "Launch" - -#: ../../operation/agentes/ehorus.php:188 -msgid "The connection was lost and the authorization token was expired" -msgstr "The connection was lost and the authorization token has expired." - -#: ../../operation/agentes/ehorus.php:190 -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:184 -msgid "Sucessfully deleted agent" -msgstr "Agent sucessfully deleted" - -#: ../../operation/agentes/estado_agente.php:186 -msgid "There was an error message deleting the agent" -msgstr "An error message appeared when deleting the agent" - -#: ../../operation/agentes/estado_agente.php:226 -msgid "Search in custom fields" -msgstr "Search in custom fields" - -#: ../../operation/agentes/estado_agente.php:656 -#: ../../enterprise/operation/agentes/tag_view.php:505 -msgid "Remote config" -msgstr "Remote configuration" - -#: ../../operation/agentes/estado_generalagente.php:42 -msgid "The agent has not assigned server. Maybe agent does not run fine." -msgstr "" -"The agent has no server assigned. Maybe the agent does not run correctly." - -#: ../../operation/agentes/estado_generalagente.php:148 -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 are not shown in real time." - -#: ../../operation/agentes/estado_generalagente.php:225 -msgid "Agent contact" -msgstr "Agent contact" - -#: ../../operation/agentes/estado_generalagente.php:247 -msgid "Next contact" -msgstr "Next contact" - -#: ../../operation/agentes/estado_generalagente.php:270 -msgid "Agent info" -msgstr "Agent info" - -#: ../../operation/agentes/estado_generalagente.php:342 -#: ../../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:417 -msgid "Active incident on this agent" -msgstr "Active issue on this agent" - -#: ../../operation/agentes/estado_generalagente.php:426 -#: ../../enterprise/dashboard/widget.php:63 -#: ../../enterprise/include/functions_reporting_csv.php:1145 -#: ../../enterprise/include/functions_reporting_csv.php:1258 -#: ../../enterprise/include/functions_reporting_csv.php:1405 -#: ../../enterprise/include/functions_reporting_csv.php:1470 -msgid "Title" -msgstr "Title" - -#: ../../operation/agentes/estado_generalagente.php:568 -msgid "Events info (24hr.)" -msgstr "Event info (24h)" - -#: ../../operation/agentes/estado_generalagente.php:582 -#: ../../operation/agentes/pandora_networkmap.view.php:389 -msgid "Last contact: " -msgstr "Last contact: " - -#: ../../operation/agentes/estado_generalagente.php:650 -msgid "Refresh data" -msgstr "Refresh data" - -#: ../../operation/agentes/estado_generalagente.php:652 -msgid "Force remote checks" -msgstr "Force remote checks" - -#: ../../operation/agentes/estado_monitores.php:35 -msgid "Tag's information" -msgstr "Tag 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:380 -#: ../../operation/agentes/status_monitor.php:1550 -#: ../../operation/tree.php:379 -#: ../../enterprise/dashboard/widgets/tree_view.php:293 -#: ../../enterprise/godmode/reporting/cluster_view.php:661 -msgid "Module: " -msgstr "Module: " - -#: ../../operation/agentes/estado_monitores.php:458 -msgid "Status:" -msgstr "Status:" - -#: ../../operation/agentes/estado_monitores.php:464 -msgid "Not Normal" -msgstr "Not normal" - -#: ../../operation/agentes/estado_monitores.php:472 -msgid "Free text for search (*):" -msgstr "Free text for search (*):" - -#: ../../operation/agentes/estado_monitores.php:473 -msgid "Search by module name, list matches." -msgstr "Search by module name, list matches" - -#: ../../operation/agentes/estado_monitores.php:488 -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:436 -msgid "Export data" -msgstr "Export data" - -#: ../../operation/agentes/exportdata.php:244 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:154 -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:319 -#: ../../enterprise/include/functions_netflow_pdf.php:163 -#: ../../enterprise/operation/log/log_viewer.php:239 -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:156 -msgid "This agent doesn't have any GIS data." -msgstr "This agent does not have any GIS data." - -#: ../../operation/agentes/gis_view.php:192 -#, php-format -msgid "%s Km" -msgstr "%s Km" - -#: ../../operation/agentes/gis_view.php:204 -msgid "Distance" -msgstr "Distance" - -#: ../../operation/agentes/gis_view.php:205 -msgid "# of Packages" -msgstr "No. of packages" - -#: ../../operation/agentes/gis_view.php:206 -#: ../../operation/gis_maps/ajax.php:222 -msgid "Manual placement" -msgstr "Manual placement" - -#: ../../operation/agentes/gis_view.php:209 -msgid "positional data" -msgstr "positional data" - -#: ../../operation/agentes/graphs.php:112 -msgid "Other modules" -msgstr "Other modules" - -#: ../../operation/agentes/graphs.php:117 -msgid "Modules network no proc" -msgstr "Modules network no proc" - -#: ../../operation/agentes/graphs.php:122 -msgid "Modules boolean" -msgstr "Modules boolean" - -#: ../../operation/agentes/graphs.php:166 -#: ../../operation/agentes/interface_traffic_graph_win.php:262 -#: ../../operation/agentes/stat_win.php:363 -#: ../../operation/reporting/graph_viewer.php:219 -msgid "Time range" -msgstr "Time range" - -#: ../../operation/agentes/graphs.php:170 -#: ../../operation/agentes/stat_win.php:370 -msgid "Show events" -msgstr "Show events" - -#: ../../operation/agentes/graphs.php:172 -#: ../../operation/agentes/stat_win.php:387 -msgid "Show alerts" -msgstr "Show alerts" - -#: ../../operation/agentes/graphs.php:173 -msgid "the combined graph does not show the alerts into this graph" -msgstr "The combined graph does not show the alerts in this graph." - -#: ../../operation/agentes/graphs.php:175 -msgid "Show as one combined graph" -msgstr "Show as a single combined graph" - -#: ../../operation/agentes/graphs.php:176 -msgid "several graphs for each module" -msgstr "Several graphs per module" - -#: ../../operation/agentes/graphs.php:176 -msgid "One combined graph" -msgstr "One combined graph" - -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:337 -msgid "Area stack" -msgstr "Area stack" - -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:345 -msgid "Line stack" -msgstr "Line stack" - -#: ../../operation/agentes/graphs.php:192 -msgid "Save as custom graph" -msgstr "Save as a custom graph" - -#: ../../operation/agentes/graphs.php:198 -msgid "Filter graphs" -msgstr "Filter graphs" - -#: ../../operation/agentes/graphs.php:245 -msgid "There was an error loading the graph" -msgstr "There was an error loading the graph" - -#: ../../operation/agentes/graphs.php:253 -#: ../../operation/agentes/graphs.php:256 -msgid "Name custom graph" -msgstr "Name the custom graph" - -#: ../../operation/agentes/graphs.php:278 -msgid "Save custom graph" -msgstr "Save custom graph" - -#: ../../operation/agentes/graphs.php:299 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "Custom graph created from the tab graphs in the agent." - -#: ../../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:224 -#: ../../operation/agentes/stat_win.php:293 -msgid "Pandora FMS Graph configuration menu" -msgstr "Pandora FMS graph configuration menu" - -#: ../../operation/agentes/interface_traffic_graph_win.php:226 -#: ../../operation/agentes/stat_win.php:295 -msgid "Please, make your changes and apply with the Reload button" -msgstr "" -"Please establish your changes and apply them with the Reload button." - -#: ../../operation/agentes/interface_traffic_graph_win.php:243 -#: ../../operation/agentes/stat_win.php:322 -msgid "Refresh time" -msgstr "Refresh time" - -#: ../../operation/agentes/interface_traffic_graph_win.php:256 -#: ../../operation/agentes/stat_win.php:345 -msgid "Begin time" -msgstr "Start time" - -#: ../../operation/agentes/interface_traffic_graph_win.php:268 -#: ../../operation/agentes/stat_win.php:402 -msgid "Show percentil" -msgstr "Show percentile" - -#: ../../operation/agentes/interface_traffic_graph_win.php:286 -#: ../../operation/agentes/stat_win.php:351 -msgid "Zoom factor" -msgstr "Zoom factor" - -#: ../../operation/agentes/interface_traffic_graph_win.php:313 -#: ../../operation/agentes/stat_win.php:453 -msgid "Reload" -msgstr "Reload" - -#: ../../operation/agentes/networkmap.dinamic.php:93 -#: ../../operation/agentes/pandora_networkmap.view.php:774 -#: ../../operation/snmpconsole/snmp_browser.php:108 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_view.php:86 -msgid "Normal screen" -msgstr "Normal screen" - -#: ../../operation/agentes/networkmap.dinamic.php:109 -#: ../../operation/agentes/pandora_networkmap.view.php:790 -msgid "List of networkmap" -msgstr "List of networkmap" - -#: ../../operation/agentes/pandora_networkmap.editor.php:203 -#: ../../operation/agentes/pandora_networkmap.view.php:746 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:80 -msgid "Not found networkmap." -msgstr "Network map not found" - -#: ../../operation/agentes/pandora_networkmap.editor.php:228 -#: ../../enterprise/extensions/vmware/vmware_view.php:1424 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:105 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:75 -msgid "Node radius" -msgstr "Node radius" - -#: ../../operation/agentes/pandora_networkmap.editor.php:235 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:94 -msgid "Position X" -msgstr "Position X" - -#: ../../operation/agentes/pandora_networkmap.editor.php:237 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:96 -msgid "Position Y" -msgstr "Position Y" - -#: ../../operation/agentes/pandora_networkmap.editor.php:240 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:99 -msgid "Zoom scale" -msgstr "Zoom scale" - -#: ../../operation/agentes/pandora_networkmap.editor.php:244 -#: ../../enterprise/dashboard/widgets/network_map.php:57 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:101 -msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" -msgstr "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals." - -#: ../../operation/agentes/pandora_networkmap.editor.php:250 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:107 -msgid "CIDR IP mask" -msgstr "CIDR IP mask" - -#: ../../operation/agentes/pandora_networkmap.editor.php:252 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:131 -msgid "Source from recon task" -msgstr "Source from recon task" - -#: ../../operation/agentes/pandora_networkmap.editor.php:254 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:133 -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 " -"IP mask instead from the group." - -#: ../../operation/agentes/pandora_networkmap.editor.php:258 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:137 -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:260 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:139 -msgid "Source from CIDR IP mask" -msgstr "Source from CIDR IP mask" - -#: ../../operation/agentes/pandora_networkmap.editor.php:264 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:143 -msgid "Don't show subgroups:" -msgstr "Don't show subgroups:" - -#: ../../operation/agentes/pandora_networkmap.editor.php:277 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:173 -msgid "Method generation networkmap" -msgstr "Network map creation method" - -#: ../../operation/agentes/pandora_networkmap.editor.php:286 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:178 -msgid "Node separation" -msgstr "Node separation" - -#: ../../operation/agentes/pandora_networkmap.editor.php:287 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:179 -msgid "Separation between nodes. By default 0.25" -msgstr "Separation between nodes. By default 0.25" - -#: ../../operation/agentes/pandora_networkmap.editor.php:289 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:181 -msgid "Rank separation" -msgstr "Rank separation" - -#: ../../operation/agentes/pandora_networkmap.editor.php:290 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:182 -msgid "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and " -"1.0 in radial" -msgstr "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and " -"1.0 in radial." - -#: ../../operation/agentes/pandora_networkmap.editor.php:292 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:184 -msgid "Min nodes dist" -msgstr "Min nodes distance" - -#: ../../operation/agentes/pandora_networkmap.editor.php:293 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:185 -msgid "Only circular. Minimum separation between all nodes. By default 1.0" -msgstr "Only circular. Minimum separation between all nodes. By default 1.0" - -#: ../../operation/agentes/pandora_networkmap.editor.php:295 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:187 -msgid "Default ideal node separation" -msgstr "Ideal default node separation" - -#: ../../operation/agentes/pandora_networkmap.editor.php:296 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:188 -msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" -msgstr "" -"Only fdp. Ideal default node separation in the layout. By default 0.3" - -#: ../../operation/agentes/pandora_networkmap.editor.php:305 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:119 -msgid "Save networkmap" -msgstr "Save network map" - -#: ../../operation/agentes/pandora_networkmap.editor.php:311 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:125 -msgid "Update networkmap" -msgstr "Update network map" - -#: ../../operation/agentes/pandora_networkmap.php:112 -#: ../../operation/agentes/pandora_networkmap.php:305 -msgid "Succesfully created" -msgstr "Successfully created" - -#: ../../operation/agentes/pandora_networkmap.php:166 -#: ../../operation/agentes/pandora_networkmap.php:401 -msgid "Succesfully updated" -msgstr "Successfully updated" - -#: ../../operation/agentes/pandora_networkmap.php:418 -msgid "Succesfully duplicate" -msgstr "Successfully duplicated" - -#: ../../operation/agentes/pandora_networkmap.php:418 -#: ../../enterprise/godmode/policies/policy_modules.php:1204 -msgid "Could not be duplicated" -msgstr "Could not be duplicated" - -#: ../../operation/agentes/pandora_networkmap.php:427 -msgid "Succesfully deleted" -msgstr "Successfully deleted" - -#: ../../operation/agentes/pandora_networkmap.php:635 -msgid "Empty map" -msgstr "Empty map" - -#: ../../operation/agentes/pandora_networkmap.php:638 -msgid "Pending to generate" -msgstr "Pending to generate" - -#: ../../operation/agentes/pandora_networkmap.php:660 -#: ../../enterprise/operation/services/services.list.php:458 -msgid "Config" -msgstr "Configuration" - -#: ../../operation/agentes/pandora_networkmap.php:676 -msgid "There are no maps defined." -msgstr "No maps defined" - -#: ../../operation/agentes/pandora_networkmap.php:683 -msgid "Create networkmap" -msgstr "Create networkmap" - -#: ../../operation/agentes/pandora_networkmap.php:691 -msgid "Create empty networkmap" -msgstr "Create empty networkmap" - -#: ../../operation/agentes/pandora_networkmap.view.php:127 -msgid "Success be updated." -msgstr "Updated successfully" - -#: ../../operation/agentes/pandora_networkmap.view.php:130 -#: ../../enterprise/extensions/ipam/ipam_action.php:190 -msgid "Could not be updated." -msgstr "Could not be updated." - -#: ../../operation/agentes/pandora_networkmap.view.php:243 -msgid "Name: " -msgstr "Name: " - -#: ../../operation/agentes/pandora_networkmap.view.php:274 -#: ../../operation/agentes/status_monitor.php:1043 -msgid "(Adopt) " -msgstr "(Adopted) " - -#: ../../operation/agentes/pandora_networkmap.view.php:284 -#: ../../operation/agentes/status_monitor.php:1053 -msgid "(Unlinked) (Adopt) " -msgstr "(Unlinked) (Adopted) " - -#: ../../operation/agentes/pandora_networkmap.view.php:288 -#: ../../operation/agentes/status_monitor.php:1057 -msgid "(Unlinked) " -msgstr "(Unlinked) " - -#: ../../operation/agentes/pandora_networkmap.view.php:293 -msgid "Policy: " -msgstr "Policy: " - -#: ../../operation/agentes/pandora_networkmap.view.php:342 -#: ../../enterprise/extensions/vmware/vmware_manager.php:202 -msgid "Status: " -msgstr "Status: " - -#: ../../operation/agentes/pandora_networkmap.view.php:386 -msgid "Data: " -msgstr "Data: " - -#: ../../operation/agentes/snapshot_view.php:76 -msgid "Current data at" -msgstr "Current data at" - -#: ../../operation/agentes/stat_win.php:123 -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:330 -msgid "Avg. Only" -msgstr "Avg. only" - -#: ../../operation/agentes/stat_win.php:381 -msgid "" -"Show events is disabled because this Pandora node is set the event " -"replication." -msgstr "" -"Display of events is disabled because this Pandora FMS node has the event " -"replication configured." - -#: ../../operation/agentes/stat_win.php:393 -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:60 -msgid "Monitor detail" -msgstr "Monitor detail" - -#: ../../operation/agentes/status_monitor.php:45 -msgid "Monitor view" -msgstr "Monitor view" - -#: ../../operation/agentes/status_monitor.php:304 -#: ../../enterprise/operation/agentes/tag_view.php:89 -msgid "Monitor status" -msgstr "Monitor status" - -#: ../../operation/agentes/status_monitor.php:325 -#: ../../operation/incidents/incident.php:238 -#: ../../enterprise/extensions/vmware/vmware_view.php:1354 -#: ../../enterprise/operation/agentes/tag_view.php:112 -msgid "Show" -msgstr "Show" - -#: ../../operation/agentes/status_monitor.php:391 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:38 -#: ../../enterprise/operation/agentes/tag_view.php:194 -msgid "Web server module" -msgstr "Web server module" - -#: ../../operation/agentes/status_monitor.php:393 -msgid "Wux server module" -msgstr "WUX server module" - -#: ../../operation/agentes/status_monitor.php:398 -#: ../../operation/agentes/status_monitor.php:970 -#: ../../enterprise/operation/agentes/tag_view.php:197 -#: ../../enterprise/operation/agentes/tag_view.php:533 -msgid "Server type" -msgstr "Server type" - -#: ../../operation/agentes/status_monitor.php:404 -#: ../../enterprise/operation/agentes/tag_view.php:203 -msgid "Show monitors..." -msgstr "Show monitors" - -#: ../../operation/agentes/status_monitor.php:414 -#: ../../enterprise/operation/agentes/tag_view.php:213 -#: ../../enterprise/operation/agentes/tag_view.php:532 -msgid "Data type" -msgstr "Data type" - -#: ../../operation/agentes/status_monitor.php:538 -msgid "Advanced Options" -msgstr "Advanced options" - -#: ../../operation/agentes/status_monitor.php:960 -msgid "Data Type" -msgstr "Data type" - -#: ../../operation/agentes/status_monitor.php:1463 -msgid "This group doesn't have any monitor" -msgstr "This group does not have any monitor" - -#: ../../operation/agentes/tactical.php:135 -msgid "Report of State" -msgstr "Status report" - -#: ../../operation/agentes/ver_agente.php:761 -#: ../../enterprise/extensions/vmware/ajax.php:87 -#: ../../enterprise/extensions/vmware/ajax.php:90 -#: ../../enterprise/operation/agentes/ver_agente.php:70 -msgid "Main IP" -msgstr "Main IP" - -#: ../../operation/agentes/ver_agente.php:812 -#: ../../enterprise/operation/agentes/ver_agente.php:113 -msgid "Monitors down" -msgstr "Monitors down" - -#: ../../operation/agentes/ver_agente.php:897 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:152 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:41 -#: ../../enterprise/extensions/ipam/ipam_excel.php:120 -#: ../../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:938 -msgid "Sons" -msgstr "Children" - -#: ../../operation/agentes/ver_agente.php:1022 -#: ../../operation/search_agents.php:127 -#: ../../operation/servers/recon_view.php:49 -msgid "Manage" -msgstr "Manage" - -#: ../../operation/agentes/ver_agente.php:1170 -msgid "Log Viewer" -msgstr "Log viewer" - -#: ../../operation/agentes/ver_agente.php:1190 -msgid "Terminal" -msgstr "Terminal" - -#: ../../operation/agentes/ver_agente.php:1210 -#: ../../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:45 -#: ../../enterprise/godmode/agentes/collections.editor.php:344 -#: ../../enterprise/godmode/agentes/collections.editor.php:369 -#: ../../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:315 ../../operation/menu.php:402 -#: ../../operation/snmpconsole/snmp_statistics.php:61 -#: ../../operation/snmpconsole/snmp_view.php:80 -#: ../../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 -#: ../../operation/events/sound_events.php:91 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -msgid "Event" -msgstr "Event" - -#: ../../operation/events/events.php:168 -msgid "Alert fired in module " -msgstr "Alert triggered in module " - -#: ../../operation/events/events.php:179 ../../operation/events/events.php:190 -#: ../../operation/events/events.php:201 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:58 -msgid "Module " -msgstr "Module " - -#: ../../operation/events/events.php:179 -msgid " is going to critical" -msgstr " is changing to critical status" - -#: ../../operation/events/events.php:190 -msgid " is going to warning" -msgstr " is changing to warning status" - -#: ../../operation/events/events.php:201 -msgid " is going to unknown" -msgstr " is changing to unknown status" - -#: ../../operation/events/events.php:223 -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:365 -msgid "History event list" -msgstr "List of event history" - -#: ../../operation/events/events.php:370 -msgid "RSS Events" -msgstr "RSS Events" - -#: ../../operation/events/events.php:375 -msgid "Marquee display" -msgstr "Marquee display" - -#: ../../operation/events/events.php:380 -msgid "Export to CSV file" -msgstr "Export to CSV file" - -#: ../../operation/events/events.php:384 ../../operation/events/events.php:423 -msgid "Sound events" -msgstr "Sound events" - -#: ../../operation/events/events.php:427 -msgid "History" -msgstr "History" - -#: ../../operation/events/events.php:465 ../../operation/menu.php:356 -msgid "Sound Alerts" -msgstr "Sound alerts" - -#: ../../operation/events/events.php:498 -msgid "Event viewer" -msgstr "Event viewer" - -#: ../../operation/events/events.php:518 -msgid "No events selected" -msgstr "No events selected" - -#: ../../operation/events/events.php:544 -msgid "Successfully validated" -msgstr "Successfully validated" - -#: ../../operation/events/events.php:545 ../../operation/events/events.php:869 -#: ../../operation/events/events.php:1021 -msgid "Could not be validated" -msgstr "Could not be validated" - -#: ../../operation/events/events.php:549 -msgid "Successfully set in process" -msgstr "Successfully set as 'in process'" - -#: ../../operation/events/events.php:550 -msgid "Could not be set in process" -msgstr "Could not be set as 'in process'" - -#: ../../operation/events/events.php:605 -#: ../../operation/visual_console/public_console.php:153 -#: ../../operation/visual_console/render_view.php:241 -msgid "Until refresh" -msgstr "Until refreshed" - -#: ../../operation/events/events.php:901 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:226 -msgid "Successfully delete" -msgstr "Successfully deleted" - -#: ../../operation/events/events.php:904 -msgid "Error deleting event" -msgstr "Error deleting event" - -#: ../../operation/events/events_list.php:256 -#: ../../operation/events/events_list.php:704 -msgid "No filter loaded" -msgstr "No filter loaded" - -#: ../../operation/events/events_list.php:258 -#: ../../operation/events/events_list.php:705 -msgid "Filter loaded" -msgstr "Filter loaded" - -#: ../../operation/events/events_list.php:260 -#: ../../operation/events/events_list.php:326 -#: ../../operation/events/events_list.php:673 -msgid "Save filter" -msgstr "Save filter" - -#: ../../operation/events/events_list.php:262 -#: ../../operation/events/events_list.php:350 -#: ../../operation/events/events_list.php:352 -#: ../../operation/events/events_list.php:677 -#: ../../operation/netflow/nf_live_view.php:329 -msgid "Load filter" -msgstr "Load filter" - -#: ../../operation/events/events_list.php:284 -msgid "New filter" -msgstr "New filter" - -#: ../../operation/events/events_list.php:294 -msgid "Save in Group" -msgstr "Save in group" - -#: ../../operation/events/events_list.php:313 -msgid "Overwrite filter" -msgstr "Overwrite filter" - -#: ../../operation/events/events_list.php:649 -msgid "Group agents" -msgstr "Group agents" - -#: ../../operation/events/events_list.php:711 -#: ../../operation/events/events_list.php:713 -msgid "Event control filter" -msgstr "Event control filter" - -#: ../../operation/events/events_list.php:720 -msgid "Error creating filter." -msgstr "Error creating filter" - -#: ../../operation/events/events_list.php:721 -msgid "Error creating filter is duplicated." -msgstr "Cannot create filter: duplicate filter" - -#: ../../operation/events/events_list.php:722 -msgid "Filter created." -msgstr "Filter created" - -#: ../../operation/events/events_list.php:724 -msgid "Filter updated." -msgstr "Filter updated" - -#: ../../operation/events/events_list.php:725 -msgid "Error updating filter." -msgstr "Error updating filter" - -#: ../../operation/events/events_list.php:1105 -msgid "Filter name cannot be left blank" -msgstr "The name of the filter cannot be left blank." - -#: ../../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 URL has a bad hash." - -#: ../../operation/events/events_rss.php:185 ../../operation/menu.php:101 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/events/sound_events.php:51 ../../operation/menu.php:344 -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:222 -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 "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:39 -#: ../../enterprise/extensions/vmware/vmware_view.php:1207 -#: ../../enterprise/extensions/vmware/vmware_view.php:1232 -msgid "Map" -msgstr "Map" - -#: ../../operation/incidents/incident.php:33 -msgid "Incident management" -msgstr "Issue management" - -#: ../../operation/incidents/incident.php:72 -msgid "Successfully reclaimed ownership" -msgstr "Ownership reclaimed successfully" - -#: ../../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 issue" - -#: ../../operation/incidents/incident.php:146 -msgid "Incident created" -msgstr "Issue created" - -#: ../../operation/incidents/incident.php:233 -msgid "Incidents:" -msgstr "Issues:" - -#: ../../operation/incidents/incident.php:234 -msgid "All incidents" -msgstr "All issues" - -#: ../../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:279 -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 issue name or description, list matches." - -#: ../../operation/incidents/incident.php:399 -msgid "Delete incidents" -msgstr "Delete issues" - -#: ../../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 issue" - -#: ../../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 "No description available" - -#: ../../operation/incidents/incident_detail.php:160 -msgid "File could not be saved due to database error" -msgstr "The file could not 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 "Issue details" - -#: ../../operation/incidents/incident_detail.php:259 -msgid "Opened at" -msgstr "Opened at" - -#: ../../operation/incidents/incident_detail.php:261 -#: ../../operation/servers/recon_view.php:110 -#: ../../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 issue" - -#: ../../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 issue" - -#: ../../operation/incidents/incident_detail.php:453 -#: ../../operation/incidents/incident_detail.php:505 -msgid "Filename" -msgstr "File name" - -#: ../../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 "Issues by status" - -#: ../../operation/incidents/incident_statistics.php:36 -msgid "Incidents by priority" -msgstr "Issues by priority" - -#: ../../operation/incidents/incident_statistics.php:39 -msgid "Incidents by group" -msgstr "Issues by group" - -#: ../../operation/incidents/incident_statistics.php:42 -msgid "Incidents by user" -msgstr "Issues by user" - -#: ../../operation/incidents/incident_statistics.php:45 -msgid "Incidents by source" -msgstr "Issues by source" - -#: ../../operation/menu.php:32 ../../operation/menu.php:111 -#: ../../enterprise/godmode/reporting/cluster_list.php:25 -#: ../../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:38 -msgid "Views" -msgstr "Views" - -#: ../../operation/menu.php:52 ../../operation/tree.php:87 -#: ../../enterprise/meta/general/main_header.php:88 -msgid "Tree view" -msgstr "Tree view" - -#: ../../operation/menu.php:73 -msgid "Netflow Live View" -msgstr "Netflow Live View" - -#: ../../operation/menu.php:88 -msgid "SNMP browser" -msgstr "SNMP browser" - -#: ../../operation/menu.php:92 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 -msgid "MIB uploader" -msgstr "MIB uploader" - -#: ../../operation/menu.php:122 -#: ../../enterprise/dashboard/widgets/network_map.php:27 -#: ../../enterprise/operation/policies/networkmap.policies.php:128 -msgid "Network map" -msgstr "Network map" - -#: ../../operation/menu.php:227 -msgid "List of Gis maps" -msgstr "List of GIS maps" - -#: ../../operation/menu.php:261 -msgid "Topology maps" -msgstr "Topology maps" - -#: ../../operation/menu.php:325 -msgid "RSS" -msgstr "RSS" - -#: ../../operation/menu.php:330 -msgid "Marquee" -msgstr "Marquee" - -#: ../../operation/menu.php:336 -msgid "CSV File" -msgstr "CSV File" - -#: ../../operation/menu.php:366 -msgid "Workspace" -msgstr "Workspace" - -#: ../../operation/menu.php:379 -msgid "WebChat" -msgstr "WebChat" - -#: ../../operation/menu.php:401 -msgid "List of Incidents" -msgstr "List of issues" - -#: ../../operation/menu.php:416 -msgid "Messages List" -msgstr "List of messages" - -#: ../../operation/menu.php:417 -msgid "New message" -msgstr "New message" - -#: ../../operation/menu.php:442 -msgid "Scheduled downtime" -msgstr "Scheduled downtime" - -#: ../../operation/menu.php:447 -msgid "Recon view" -msgstr "Recon view" - -#: ../../operation/menu.php:522 -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 does not 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 withthe 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:415 -msgid "Draw" -msgstr "Draw" - -#: ../../operation/netflow/nf_live_view.php:419 -msgid "Save as new filter" -msgstr "Save as a new filter" - -#: ../../operation/netflow/nf_live_view.php:420 -msgid "Update current filter" -msgstr "Update current filter" - -#: ../../operation/netflow/nf_live_view.php:434 -msgid "No filter selected" -msgstr "No filter selected" - -#: ../../operation/reporting/custom_reporting.php:32 -#: ../../operation/reporting/graph_viewer.php:356 -msgid "There are no defined reportings" -msgstr "There are no defined reports" - -#: ../../operation/reporting/graph_viewer.php:196 -msgid "No data." -msgstr "No data" - -#: ../../operation/reporting/graph_viewer.php:228 -#: ../../operation/reporting/graph_viewer.php:251 -msgid "Graph defined" -msgstr "Graph defined" - -#: ../../operation/reporting/graph_viewer.php:235 -#: ../../enterprise/dashboard/widgets/custom_graph.php:45 -msgid "Horizontal Bars" -msgstr "Horizontal bars" - -#: ../../operation/reporting/graph_viewer.php:236 -#: ../../enterprise/dashboard/widgets/custom_graph.php:46 -msgid "Vertical Bars" -msgstr "Vertical bars" - -#: ../../operation/reporting/graph_viewer.php:252 -msgid "Zoom x1" -msgstr "Zoom x1" - -#: ../../operation/reporting/graph_viewer.php:253 -msgid "Zoom x2" -msgstr "Zoom x2" - -#: ../../operation/reporting/graph_viewer.php:254 -msgid "Zoom x3" -msgstr "Zoom x3" - -#: ../../operation/reporting/graph_viewer.php:322 -#: ../../operation/reporting/reporting_viewer.php:314 -msgid "Invalid date selected" -msgstr "Invalid date selected" - -#: ../../operation/reporting/graph_viewer.php:329 -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 FMS 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:32 -#: ../../operation/servers/recon_view.php:39 -#: ../../operation/servers/recon_view.php:54 -msgid "Recon View" -msgstr "Recon view" - -#: ../../operation/servers/recon_view.php:33 -msgid "Recon Server is disabled" -msgstr "Recon server is disabled" - -#: ../../operation/servers/recon_view.php:107 -#: ../../operation/servers/recon_view.php:161 -#: ../../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:397 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -msgid "Progress" -msgstr "Progress" - -#: ../../operation/servers/recon_view.php:143 -msgid "Pending" -msgstr "Pending" - -#: ../../operation/servers/recon_view.php:176 -msgid "has no recon tasks assigned" -msgstr "has no recon tasks assigned" - -#: ../../operation/snmpconsole/snmp_browser.php:52 -msgid "Create network components" -msgstr "Create network components" - -#: ../../operation/snmpconsole/snmp_browser.php:59 -msgid "Error creating the following modules:" -msgstr "Error creating the following modules:" - -#: ../../operation/snmpconsole/snmp_browser.php:69 -msgid "Modules successfully created" -msgstr "Modules successfully created" - -#: ../../operation/snmpconsole/snmp_browser.php:114 -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:561 -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:788 -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:471 -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:476 -msgid "From (Date)" -msgstr "From (Date)" - -#: ../../operation/snmpconsole/snmp_view.php:478 -msgid "To (Date)" -msgstr "To (Date)" - -#: ../../operation/snmpconsole/snmp_view.php:481 -msgid "From (Time)" -msgstr "From (Time)" - -#: ../../operation/snmpconsole/snmp_view.php:483 -msgid "To (Time)" -msgstr "To (Time)" - -#: ../../operation/snmpconsole/snmp_view.php:488 -msgid "Search by trap type" -msgstr "Search by trap type" - -#: ../../operation/snmpconsole/snmp_view.php:502 -msgid "Group by Enterprise String/IP" -msgstr "Group by Enterprise String/IP" - -#: ../../operation/snmpconsole/snmp_view.php:559 -msgid "There are no SNMP traps in database that contains this filter" -msgstr "There are no SNMP traps in database containing this filter." - -#: ../../operation/snmpconsole/snmp_view.php:593 -#: ../../enterprise/include/functions_dashboard.php:649 -msgid "Exit fullscreen" -msgstr "Exit fullscreen" - -#: ../../operation/snmpconsole/snmp_view.php:623 -#: ../../enterprise/include/functions_dashboard.php:880 -msgid "Refresh every" -msgstr "Refresh every" - -#: ../../operation/snmpconsole/snmp_view.php:635 -msgid "SNMP Traps" -msgstr "SNMP Traps" - -#: ../../operation/snmpconsole/snmp_view.php:723 -msgid "Trap subtype" -msgstr "Trap subtype" - -#: ../../operation/snmpconsole/snmp_view.php:880 -msgid "Variable bindings:" -msgstr "Variable bindings:" - -#: ../../operation/snmpconsole/snmp_view.php:897 -msgid "See more details" -msgstr "View more details" - -#: ../../operation/snmpconsole/snmp_view.php:910 -msgid "Enterprise String:" -msgstr "Enterprise String:" - -#: ../../operation/snmpconsole/snmp_view.php:916 -#: ../../enterprise/godmode/agentes/collections.data.php:379 -#: ../../enterprise/meta/include/functions_autoprovision.php:473 -msgid "Description:" -msgstr "Description:" - -#: ../../operation/snmpconsole/snmp_view.php:948 -msgid "Trap type:" -msgstr "Trap type:" - -#: ../../operation/snmpconsole/snmp_view.php:976 -msgid "Count:" -msgstr "Count:" - -#: ../../operation/snmpconsole/snmp_view.php:980 -msgid "First trap:" -msgstr "First trap:" - -#: ../../operation/snmpconsole/snmp_view.php:984 -msgid "Last trap:" -msgstr "Last trap:" - -#: ../../operation/snmpconsole/snmp_view.php:1004 -msgid "No matching traps found" -msgstr "No matching traps found" - -#: ../../operation/snmpconsole/snmp_view.php:1114 -#: ../../enterprise/include/functions_dashboard.php:1007 -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:144 -msgid "Search group" -msgstr "Search group" - -#: ../../operation/tree.php:150 -msgid "Search agent" -msgstr "Search agent" - -#: ../../operation/tree.php:153 -msgid "Show full hirearchy" -msgstr "Show full hierarchy" - -#: ../../operation/tree.php:156 -msgid "Agent status" -msgstr "Agent status" - -#: ../../operation/tree.php:176 -msgid "Search module" -msgstr "Search module" - -#: ../../operation/tree.php:202 -msgid "Tree search" -msgstr "Tree search" - -#: ../../operation/tree.php:286 -#: ../../enterprise/dashboard/widgets/tree_view.php:198 -msgid "Found items" -msgstr "Found items" - -#: ../../operation/tree.php:294 -#: ../../enterprise/dashboard/widgets/tree_view.php:206 -#: ../../enterprise/include/functions_reporting_csv.php:471 -msgid "Total modules" -msgstr "Total modules" - -#: ../../operation/tree.php:303 -#: ../../enterprise/dashboard/widgets/tree_view.php:215 -msgid "Critical agents" -msgstr "Critical agents" - -#: ../../operation/tree.php:308 -#: ../../enterprise/dashboard/widgets/tree_view.php:220 -msgid "Warning agents" -msgstr "Agents in 'warning' status" - -#: ../../operation/tree.php:313 -#: ../../enterprise/dashboard/widgets/tree_view.php:225 -msgid "Unknown agents" -msgstr "Agents in 'unknown' status" - -#: ../../operation/tree.php:318 -#: ../../enterprise/dashboard/widgets/tree_view.php:230 -msgid "Not init agents" -msgstr "Not initialized agents" - -#: ../../operation/tree.php:323 -#: ../../enterprise/dashboard/widgets/tree_view.php:235 -msgid "Normal agents" -msgstr "Agents in 'normal' status" - -#: ../../operation/users/user_edit.php:132 -#: ../../operation/users/user_edit.php:139 -msgid "Password successfully updated" -msgstr "Password successfully updated" - -#: ../../operation/users/user_edit.php:133 -#: ../../operation/users/user_edit.php:140 -#, php-format -msgid "Error updating passwords: %s" -msgstr "Error updating passwords: %s" - -#: ../../operation/users/user_edit.php:145 -msgid "" -"Passwords didn't match or other problem encountered while updating passwords" -msgstr "" -"The passwords did not match or another problem occurred during password " -"update." - -#: ../../operation/users/user_edit.php:157 -#: ../../operation/users/user_edit.php:167 -msgid "Error updating user info" -msgstr "Error updating user info" - -#: ../../operation/users/user_edit.php:177 -msgid "Edit my User" -msgstr "Edit my user" - -#: ../../operation/users/user_edit.php:221 -#: ../../enterprise/include/process_reset_pass.php:99 -#: ../../enterprise/meta/include/process_reset_pass.php:76 -msgid "New Password" -msgstr "New password" - -#: ../../operation/users/user_edit.php:231 -msgid "" -"You can not change your password from Pandora FMS under the current " -"authentication scheme" -msgstr "" -"You cannot change your password from Pandora FMS under the current " -"authentication scheme." - -#: ../../operation/users/user_edit.php:240 -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:342 -msgid "Show information" -msgstr "Show information" - -#: ../../operation/users/user_edit.php:348 -msgid "Event filter" -msgstr "Event filter" - -#: ../../operation/users/user_edit.php:353 -msgid "Newsletter Subscribed" -msgstr "Subscribed to newsletter" - -#: ../../operation/users/user_edit.php:355 -msgid "Already subscribed to Pandora FMS newsletter" -msgstr "Already subscribed to Pandora FMS newsletter" - -#: ../../operation/users/user_edit.php:361 -msgid "Newsletter Reminder" -msgstr "Newsletter reminder" - -#: ../../operation/users/user_edit.php:422 -msgid "Autorefresh" -msgstr "Autorefresh" - -#: ../../operation/users/user_edit.php:422 -msgid "This will activate autorefresh in selected pages" -msgstr "This will activate autorefresh in selected pages" - -#: ../../operation/users/user_edit.php:429 -msgid "Full list of pages" -msgstr "Full list of pages" - -#: ../../operation/users/user_edit.php:431 -msgid "List of pages with autorefresh" -msgstr "List of pages with autorefresh" - -#: ../../operation/users/user_edit.php:437 -msgid "Push selected pages into autorefresh list" -msgstr "Push selected pages into autorefresh list" - -#: ../../operation/users/user_edit.php:441 -msgid "Pop selected pages out of autorefresh list" -msgstr "Pop selected pages out of autorefresh list" - -#: ../../operation/users/user_edit.php:451 -msgid "Time autorefresh" -msgstr "Time autorefresh" - -#: ../../operation/users/user_edit.php:480 -msgid "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" -msgstr "" -"You cannot change your user info from Pandora FMS under the current " -"authentication scheme." - -#: ../../operation/users/user_edit.php:552 -msgid "This user doesn't have any assigned profile/group." -msgstr "This user does not have any profile/group assigned." - -#: ../../operation/users/user_edit.php:721 -msgid "Double autentication information" -msgstr "Double autentication information" - -#: ../../operation/users/user_edit.php:784 -#: ../../operation/users/user_edit.php:860 -msgid "Double autentication activation" -msgstr "Double autentication activation" - -#: ../../operation/users/user_edit.php:810 -msgid "The double authentication will be deactivated" -msgstr "Double authentication will be deactivated" - -#: ../../operation/users/user_edit.php:811 -msgid "Deactivate" -msgstr "Deactivate" - -#: ../../operation/users/user_edit.php:843 -msgid "The double autentication was deactivated successfully" -msgstr "Double authentication deactivated successfully" - -#: ../../operation/users/user_edit.php:846 -#: ../../operation/users/user_edit.php:850 -msgid "There was an error deactivating the double autentication" -msgstr "Error deactivating the double authentication" - -#: ../../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 24h" - -#: ../../operation/users/webchat.php:168 -msgid "Error in connection." -msgstr "Connection error" - -#: ../../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:34 -#: ../../enterprise/mobile/operation/home.php:35 -msgid "Dashboards" -msgstr "Dashboards" - -#: ../../enterprise/dashboard/dashboards.php:61 -msgid "Successfully duplicate" -msgstr "Successfully duplicated" - -#: ../../enterprise/dashboard/dashboards.php:62 -msgid "Could not be duplicate" -msgstr "Could not be duplicated" - -#: ../../enterprise/dashboard/dashboards.php:87 -#: ../../enterprise/dashboard/main_dashboard.php:297 -#: ../../enterprise/dashboard/main_dashboard.php:306 -msgid "Cells" -msgstr "Cells" - -#: ../../enterprise/dashboard/dashboards.php:114 -msgid "There are no dashboards defined." -msgstr "No dashboards defined" - -#: ../../enterprise/dashboard/dashboards.php:132 -#, php-format -msgid "Private for (%s)" -msgstr "Private for (%s)" - -#: ../../enterprise/dashboard/dashboards.php:169 -msgid "New dashboard" -msgstr "New dashboard" - -#: ../../enterprise/dashboard/full_dashboard.php:51 -#: ../../enterprise/dashboard/public_dashboard.php:67 -msgid "No slides selected" -msgstr "No slides selected" - -#: ../../enterprise/dashboard/main_dashboard.php:159 -msgid "Show link to public dashboard" -msgstr "Show link to public dashboard" - -#: ../../enterprise/dashboard/main_dashboard.php:176 -msgid "Back to dashboards list" -msgstr "Back to dashboard list" - -#: ../../enterprise/dashboard/main_dashboard.php:182 -msgid "Save the actual layout design" -msgstr "Save actual layout design" - -#: ../../enterprise/dashboard/main_dashboard.php:197 -#: ../../enterprise/include/functions_dashboard.php:890 -msgid "Slides mode" -msgstr "Slides mode" - -#: ../../enterprise/dashboard/main_dashboard.php:326 -msgid "Items slideshow" -msgstr "Items slideshow" - -#: ../../enterprise/dashboard/main_dashboard.php:331 -msgid "" -"If enabled, all items of this dashboard will be shown individually into " -"fullscreen mode" -msgstr "" -"If enabled, all items of this dashboard will be shown individually into " -"fullscreen mode" - -#: ../../enterprise/dashboard/main_dashboard.php:361 -msgid "Private dashboard" -msgstr "Private dashboard" - -#: ../../enterprise/dashboard/main_dashboard.php:381 -msgid "Error: there are cells not empty." -msgstr "Error: cells cannot be empty" - -#: ../../enterprise/dashboard/main_dashboard.php:386 -msgid "Error save conf dashboard" -msgstr "Error saving dashboard configuration" - -#: ../../enterprise/dashboard/main_dashboard.php:468 -msgid "Add widget" -msgstr "Add widget" - -#: ../../enterprise/dashboard/main_dashboard.php:475 -msgid "Add new widget" -msgstr "Add new widget" - -#: ../../enterprise/dashboard/main_dashboard.php:477 -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 an empty cell. Please save the " -"layout before adding any widget in this cell." - -#: ../../enterprise/dashboard/main_dashboard.php:481 -msgid "There are unsaved changes" -msgstr "There are unsaved changes." - -#: ../../enterprise/dashboard/main_dashboard.php:539 -#: ../../enterprise/include/functions_dashboard.php:995 -msgid "Slides" -msgstr "Slides" - -#: ../../enterprise/dashboard/widget.php:68 -msgid "Empty for a transparent background color or CSS compatible value" -msgstr "Empty for a transparent background colour or CSS compatible value" - -#: ../../enterprise/dashboard/widget.php:317 -msgid "Configure widget" -msgstr "Configure widget" - -#: ../../enterprise/dashboard/widget.php:325 -msgid "Delete widget" -msgstr "Delete widget" - -#: ../../enterprise/dashboard/widget.php:379 -msgid "Config widget" -msgstr "Configure widget" - -#: ../../enterprise/dashboard/widget.php:389 -#: ../../enterprise/dashboard/widgets/agent_module.php:404 -msgid "Please configure this widget before usage" -msgstr "Please configure this widget before using it" - -#: ../../enterprise/dashboard/widget.php:392 -msgid "Widget cannot be loaded" -msgstr "Error loading widget" - -#: ../../enterprise/dashboard/widget.php:393 -msgid "Please, configure the widget again to recover it" -msgstr "Please configure the widget again to recover it." - -#: ../../enterprise/dashboard/widget.php:495 -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 "Show Agent/Module View" - -#: ../../enterprise/dashboard/widgets/agent_module.php:427 -#: ../../enterprise/dashboard/widgets/custom_graph.php:93 -#: ../../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:51 -#: ../../enterprise/dashboard/widgets/groups_status.php:57 -#: ../../enterprise/dashboard/widgets/module_icon.php:116 -#: ../../enterprise/dashboard/widgets/module_icon.php:123 -#: ../../enterprise/dashboard/widgets/module_status.php:100 -#: ../../enterprise/dashboard/widgets/module_status.php:107 -#: ../../enterprise/dashboard/widgets/module_table_value.php:102 -#: ../../enterprise/dashboard/widgets/module_table_value.php:110 -#: ../../enterprise/dashboard/widgets/module_value.php:100 -#: ../../enterprise/dashboard/widgets/module_value.php:107 -#: ../../enterprise/dashboard/widgets/single_graph.php:96 -#: ../../enterprise/dashboard/widgets/single_graph.php:102 -#: ../../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 "Triggered alerts" - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:26 -msgid "Alerts Fired report" -msgstr "Triggered alerts 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 "List of latest events" - -#: ../../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:1202 -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 the 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 "Thank you 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 "Graph histogram of the module" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:64 -#: ../../enterprise/dashboard/widgets/sla_percent.php:63 -msgid "2 Hours" -msgstr "2 hours" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:65 -#: ../../enterprise/dashboard/widgets/sla_percent.php:64 -msgid "12 Hours" -msgstr "12 hours" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:66 -#: ../../enterprise/dashboard/widgets/sla_percent.php:65 -msgid "24 Hours" -msgstr "24 hours" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:67 -#: ../../enterprise/dashboard/widgets/sla_percent.php:66 -msgid "48 Hours" -msgstr "48 hours" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:72 -#: ../../enterprise/dashboard/widgets/module_icon.php:89 -#: ../../enterprise/dashboard/widgets/module_status.php:75 -#: ../../enterprise/dashboard/widgets/module_value.php:78 -#: ../../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:28 -msgid "Only embebed urls can be shown, be sure that the url is embebed." -msgstr "Only embedded URLs can be shown, make sure that the URL is embedded." - -#: ../../enterprise/dashboard/widgets/url.php:29 -msgid "For example: " -msgstr "For example: " - -#: ../../enterprise/dashboard/widgets/url.php:30 -msgid " must be " -msgstr " must be " - -#: ../../enterprise/dashboard/widgets/url.php:32 -msgid "My URL" -msgstr "My URL" - -#: ../../enterprise/dashboard/widgets/url.php:57 -#: ../../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 using it." - -#: ../../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:87 -#: ../../enterprise/dashboard/widgets/groups_status.php:159 -msgid "Total nº:" -msgstr "Total nº:" - -#: ../../enterprise/dashboard/widgets/groups_status.php:217 -msgid "Not agents in this group" -msgstr "No agents in this group" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:28 -msgid "Vsiual Console" -msgstr "Visual Console" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:30 -msgid "Show a Visual Console" -msgstr "Show a Visual Console" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:33 -msgid "WARNING: " -msgstr "WARNING: " - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:33 -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 "" -"If your visual console is larger than the size of the widget, it will not " -"fit in the widget. Instead, both vertical and horizontal scroll bars will be " -"drawn. If you want to 'fit' a visual console into a widget, create it with " -"the real size in order to make it fit in the widget." - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:36 -msgid "Layout" -msgstr "Layout" - -#: ../../enterprise/dashboard/widgets/maps_status.php:25 -msgid "Maps status" -msgstr "Map 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:75 -#: ../../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:78 -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 "Data separator" - -#: ../../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:31 -msgid "Show a map of the monitored network" -msgstr "Show a map of the monitored network" - -#: ../../enterprise/dashboard/widgets/network_map.php:43 -msgid "X offset" -msgstr "X offset" - -#: ../../enterprise/dashboard/widgets/network_map.php:46 -msgid "Introduce x-axis data. Right=positive Left=negative" -msgstr "Introduce x-axis data. Right = positive / Left = negative" - -#: ../../enterprise/dashboard/widgets/network_map.php:48 -msgid "Y offset" -msgstr "Y offset" - -#: ../../enterprise/dashboard/widgets/network_map.php:51 -msgid "Introduce Y-axis data. Top=positive Bottom=negative" -msgstr "Introduce Y-axis data. Top = positive / Bottom = negative" - -#: ../../enterprise/dashboard/widgets/network_map.php:54 -msgid "Zoom level" -msgstr "Zoom level" - -#: ../../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:100 -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 does not 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/single_graph.php:66 -msgid "Show full legend" -msgstr "Show full legend" - -#: ../../enterprise/dashboard/widgets/single_graph.php:72 -msgid "Graph colour (max)" -msgstr "Graph colour (max)" - -#: ../../enterprise/dashboard/widgets/single_graph.php:73 -msgid "Graph colour (avg)" -msgstr "Graph colour (avg)" - -#: ../../enterprise/dashboard/widgets/single_graph.php:74 -msgid "Graph colour (min)" -msgstr "Graph colour (min)" - -#: ../../enterprise/dashboard/widgets/sla_percent.php:29 -#: ../../enterprise/dashboard/widgets/sla_percent.php:31 -msgid "Show SLA percent" -msgstr "Show SLA percent" - -#: ../../enterprise/dashboard/widgets/top_n.php:34 -msgid "Show a top n of agents modules." -msgstr "Show 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 modules one by one" - -#: ../../enterprise/dashboard/widgets/top_n.php:283 -msgid "Selection several modules" -msgstr "Select 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:75 -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 no 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:24 -#: ../../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:26 -msgid "Show the tree view" -msgstr "Show the tree view" - -#: ../../enterprise/dashboard/widgets/tree_view.php:43 -msgid "Tab" -msgstr "Tab" - -#: ../../enterprise/dashboard/widgets/tree_view.php:49 -msgid "Open all nodes" -msgstr "Open all nodes" - -#: ../../enterprise/dashboard/widgets/tree_view.php:60 -msgid "Agents status" -msgstr "Agents status" - -#: ../../enterprise/dashboard/widgets/tree_view.php:62 -msgid "Filter agents" -msgstr "Filter agents" - -#: ../../enterprise/dashboard/widgets/tree_view.php:73 -msgid "Modules status" -msgstr "Modules status" - -#: ../../enterprise/dashboard/widgets/tree_view.php:84 -msgid "" -"The user doesn't have permission to read agents. Please contact with your " -"pandora administrator." -msgstr "" -"The user does not have permission to read agents. Please contact with your " -"Pandora FMS administrator." - -#: ../../enterprise/dashboard/widgets/tree_view.php:91 -msgid "This widget only working in desktop version." -msgstr "This widget will only work on desktop version." - -#: ../../enterprise/dashboard/widgets/ux_transaction.php:27 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:80 -msgid "Ux transaction" -msgstr "UX transaction" - -#: ../../enterprise/dashboard/widgets/ux_transaction.php:31 -msgid "Show an agent ux transaction" -msgstr "Show an agent UX transaction" - -#: ../../enterprise/dashboard/widgets/wux_transaction.php:27 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:80 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:88 -msgid "Wux transaction" -msgstr "WUX transaction" - -#: ../../enterprise/dashboard/widgets/wux_transaction.php:31 -msgid "Show agent wux transaction" -msgstr "Show agent WUX transaction" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:27 -msgid "Wux transaction stats" -msgstr "WUX transaction statistics" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:31 -msgid "Show agent wux transaction stats" -msgstr "Show agent WUX transaction statistics" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:43 -#: ../../enterprise/operation/agentes/wux_console_view.php:396 -msgid "View all stats" -msgstr "View all statistics" - -#: ../../enterprise/extensions/backup/main.php:63 -msgid "Pandora database backup utility" -msgstr "Pandora FMS database backup utility" - -#: ../../enterprise/extensions/backup/main.php:70 -msgid "Filter backups" -msgstr "Filter backups" - -#: ../../enterprise/extensions/backup/main.php:82 -msgid "Path backups" -msgstr "Path backups" - -#: ../../enterprise/extensions/backup/main.php:102 -#: ../../enterprise/extensions/cron/main.php:361 -#: ../../enterprise/extensions/cron/main.php:387 -msgid "Path" -msgstr "Path" - -#: ../../enterprise/extensions/backup/main.php:168 -msgid "Lost" -msgstr "Lost" - -#: ../../enterprise/extensions/backup/main.php:198 -msgid "Backups list" -msgstr "List of backups" - -#: ../../enterprise/extensions/backup/main.php:203 -msgid "Create backup" -msgstr "Create backup" - -#: ../../enterprise/extensions/backup/main.php:217 -msgid "Path to save backup" -msgstr "Path to save backup" - -#: ../../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:77 -#: ../../enterprise/extensions/cron/functions.php:112 -#: ../../enterprise/extensions/cron/functions.php:142 -#: ../../enterprise/extensions/cron/functions.php:183 -msgid "Report to build" -msgstr "Report pending to be created" - -#: ../../enterprise/extensions/cron/functions.php:23 -#: ../../enterprise/extensions/cron/functions.php:48 -msgid "Send to emails (separated by comma)" -msgstr "Send to email addresses (separated by a comma)" - -#: ../../enterprise/extensions/cron/functions.php:27 -#: ../../enterprise/extensions/cron/functions.php:127 -msgid "Template to build" -msgstr "Template pending to be created" - -#: ../../enterprise/extensions/cron/functions.php:46 -#: ../../enterprise/extensions/cron/main.php:318 -msgid "Report per agent" -msgstr "Report per agent" - -#: ../../enterprise/extensions/cron/functions.php:59 -#: ../../enterprise/extensions/cron/functions.php:67 -#: ../../enterprise/extensions/cron/functions.php:84 -#: ../../enterprise/extensions/cron/functions.php:143 -#: ../../enterprise/extensions/cron/functions.php:184 -msgid "Save to disk into path" -msgstr "Save to disk in path" - -#: ../../enterprise/extensions/cron/functions.php:60 -#: ../../enterprise/extensions/cron/functions.php:85 -msgid "The apache user should have read-write access on this folder. Ex: " -msgstr "The Apache user should have read-write access on this folder. E.g. " - -#: ../../enterprise/extensions/cron/functions.php:113 -#: ../../enterprise/extensions/cron/functions.php:128 -msgid "Send to email" -msgstr "Send to email" - -#: ../../enterprise/extensions/cron/functions.php:114 -msgid "Send custom report by email" -msgstr "Send custom report by email" - -#: ../../enterprise/extensions/cron/functions.php:129 -msgid "Send custom report (from template) by email" -msgstr "Send custom report (from template) by email" - -#: ../../enterprise/extensions/cron/functions.php:144 -#: ../../enterprise/extensions/cron/functions.php:185 -msgid "Save custom report to disk" -msgstr "Save custom report to disk" - -#: ../../enterprise/extensions/cron/functions.php:157 -msgid "Backup Pandora database" -msgstr "Backup Pandora FMS database" - -#: ../../enterprise/extensions/cron/functions.php:170 -msgid "Execute custom script" -msgstr "Execute custom script" - -#: ../../enterprise/extensions/cron/functions.php:186 -msgid "Save custom xml report to disk" -msgstr "Save custom XML report to disk" - -#: ../../enterprise/extensions/cron/functions.php:201 -msgid "Not scheduled" -msgstr "Not scheduled" - -#: ../../enterprise/extensions/cron/functions.php:202 -#: ../../enterprise/extensions/vmware/functions.php:25 -msgid "Hourly" -msgstr "Hourly" - -#: ../../enterprise/extensions/cron/functions.php:206 -#: ../../enterprise/extensions/vmware/functions.php:29 -msgid "Yearly" -msgstr "Yearly" - -#: ../../enterprise/extensions/cron/functions.php:489 -#: ../../enterprise/extensions/cron/functions.php:595 -msgid "Greetings" -msgstr "Greetings" - -#: ../../enterprise/extensions/cron/functions.php:491 -#: ../../enterprise/extensions/cron/functions.php:597 -msgid "Attached to this email there's a PDF file of the" -msgstr "Attached to this email there is a PDF file of the" - -#: ../../enterprise/extensions/cron/functions.php:491 -#: ../../enterprise/extensions/cron/functions.php:597 -msgid "report" -msgstr "report" - -#: ../../enterprise/extensions/cron/functions.php:495 -#: ../../enterprise/extensions/cron/functions.php:601 -msgid "Thanks for your time." -msgstr "Thank you for your time." - -#: ../../enterprise/extensions/cron/functions.php:497 -#: ../../enterprise/extensions/cron/functions.php:603 -msgid "Best regards, Pandora FMS" -msgstr "Best regards, Pandora FMS" - -#: ../../enterprise/extensions/cron/functions.php:499 -#: ../../enterprise/extensions/cron/functions.php:605 -msgid "" -"This is an automatically generated email from Pandora FMS, please do not " -"reply." -msgstr "" -"This is an automatically generated email from Pandora FMS, please do not " -"reply." - -#: ../../enterprise/extensions/cron/main.php:46 -#: ../../enterprise/extensions/cron.php:118 -#: ../../enterprise/extensions/cron.php:121 -#: ../../enterprise/extensions/cron.php:128 -msgid "Cron jobs" -msgstr "Cron jobs" - -#: ../../enterprise/extensions/cron/main.php:52 -msgid "Add new job" -msgstr "Add new job" - -#: ../../enterprise/extensions/cron/main.php:91 -#: ../../enterprise/extensions/cron/main.php:123 -#: ../../enterprise/extensions/cron/main.php:183 -msgid "Path doesn't exists or is not writable" -msgstr "Path does not exist or is not writable." - -#: ../../enterprise/extensions/cron/main.php:102 -msgid "Only administrator users can create this type of functions" -msgstr "Only administrator users can create this type of functions." - -#: ../../enterprise/extensions/cron/main.php:158 -#: ../../enterprise/extensions/cron/main.php:176 -msgid "Edit job" -msgstr "Edit job" - -#: ../../enterprise/extensions/cron/main.php:202 -msgid "Cron extension has never run or it's not configured well" -msgstr "Cron extension has never run or is not well configured." - -#: ../../enterprise/extensions/cron/main.php:205 -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:206 -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:211 -msgid "Last execution" -msgstr "Last execution" - -#: ../../enterprise/extensions/cron/main.php:217 -msgid "Cron extension is running" -msgstr "Cron extension is running" - -#: ../../enterprise/extensions/cron/main.php:238 -msgid "Scheduled jobs" -msgstr "Scheduled jobs" - -#: ../../enterprise/extensions/cron/main.php:247 -#: ../../enterprise/extensions/cron/main.php:458 -msgid "Task" -msgstr "Task" - -#: ../../enterprise/extensions/cron/main.php:248 -#: ../../enterprise/extensions/cron/main.php:472 -#: ../../enterprise/extensions/vmware/vmware_admin.php:409 -#: ../../enterprise/extensions/vmware/vmware_admin.php:487 -msgid "Scheduled" -msgstr "Scheduled" - -#: ../../enterprise/extensions/cron/main.php:249 -#: ../../enterprise/extensions/cron/main.php:475 -msgid "Next execution" -msgstr "Next execution" - -#: ../../enterprise/extensions/cron/main.php:250 -msgid "Last run" -msgstr "Last execution" - -#: ../../enterprise/extensions/cron/main.php:263 -#: ../../enterprise/extensions/cron/main.php:288 -#: ../../enterprise/extensions/cron/main.php:326 -#: ../../enterprise/extensions/cron/main.php:342 -#: ../../enterprise/extensions/cron/main.php:368 -#: ../../enterprise/extensions/cron/main.php:393 -msgid "Force run" -msgstr "Force execution" - -#: ../../enterprise/extensions/csv_import/main.php:39 -msgid "No data or wrong separator in line " -msgstr "No data or wrong separator in line " - -#: ../../enterprise/extensions/csv_import/main.php:42 -msgid "Agent " -msgstr "Agent " - -#: ../../enterprise/extensions/csv_import/main.php:42 -msgid " duplicated" -msgstr " duplicated" - -#: ../../enterprise/extensions/csv_import/main.php:45 -msgid "Id group " -msgstr "ID group " - -#: ../../enterprise/extensions/csv_import/main.php:45 -msgid " in line " -msgstr " in line " - -#: ../../enterprise/extensions/csv_import/main.php:52 -#, php-format -msgid "Created agent %s" -msgstr "Created agent %s" - -#: ../../enterprise/extensions/csv_import/main.php:53 -#: ../../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:60 -#: ../../enterprise/extensions/csv_import_group/main.php:46 -msgid "File processed" -msgstr "File processed" - -#: ../../enterprise/extensions/csv_import/main.php:76 -#: ../../enterprise/extensions/csv_import_group/main.php:56 -msgid "CSV format" -msgstr "CSV format" - -#: ../../enterprise/extensions/csv_import/main.php:77 -#: ../../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:92 -#: ../../enterprise/extensions/csv_import_group/main.php:72 -msgid "Upload file" -msgstr "Upload file" - -#: ../../enterprise/extensions/csv_import/main.php:99 -#: ../../enterprise/extensions/csv_import_group/main.php:75 -msgid "Separator" -msgstr "Separator" - -#: ../../enterprise/extensions/csv_import/main.php:103 -#: ../../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 has not been indicated, 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 are no available IP addresses." - -#: ../../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:121 -#: ../../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_excel.php:126 -#: ../../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_excel.php:127 -#: ../../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:216 -msgid "Created" -msgstr "Created" - -#: ../../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 manual 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:122 -#: ../../enterprise/extensions/ipam/ipam_network.php:225 -#: ../../enterprise/extensions/ipam/ipam_network.php:550 -msgid "Alive" -msgstr "Alive" - -#: ../../enterprise/extensions/ipam/ipam_excel.php:125 -msgid "OS Name" -msgstr "OS name" - -#: ../../enterprise/extensions/ipam/ipam_excel.php:128 -msgid "Created at" -msgstr "Created at" - -#: ../../enterprise/extensions/ipam/ipam_excel.php:129 -msgid "Last updated" -msgstr "Last update" - -#: ../../enterprise/extensions/ipam/ipam_excel.php:130 -msgid "Last modified" -msgstr "Last modification" - -#: ../../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 "Small" - -#: ../../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:197 -msgid "Massive operations" -msgstr "Massive operations" - -#: ../../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 "Export agents" - -#: ../../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 creating '%s' policy, the name exists and there are no 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 when 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 does not have a name." - -#: ../../enterprise/extensions/resource_registration/functions.php:65 -#, php-format -msgid "Success create '%s' policy." -msgstr "'%s' policy successfully created" - -#: ../../enterprise/extensions/resource_registration/functions.php:66 -#, php-format -msgid "Error create '%s' policy." -msgstr "Error 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 "Error adding '%s' agent. The agent does not exist in Pandora FMS." - -#: ../../enterprise/extensions/resource_registration/functions.php:108 -#, php-format -msgid "Success add '%s' agent." -msgstr "'%s' agent added successfully." - -#: ../../enterprise/extensions/resource_registration/functions.php:109 -#, php-format -msgid "Error add '%s' agent." -msgstr "Error adding '%s' agent." - -#: ../../enterprise/extensions/resource_registration/functions.php:128 -msgid "The collection does not exist in pandora" -msgstr "The collection does not exist in Pandora FMS." - -#: ../../enterprise/extensions/resource_registration/functions.php:132 -#, php-format -msgid "Success add '%s' collection." -msgstr "'%s' collection added successfully" - -#: ../../enterprise/extensions/resource_registration/functions.php:133 -#, php-format -msgid "Error add '%s' collection." -msgstr "Error adding '%s' collection." - -#: ../../enterprise/extensions/resource_registration/functions.php:149 -#, php-format -msgid "Success add '%s' agent plugin." -msgstr "'%s' agent plugin added successfully" - -#: ../../enterprise/extensions/resource_registration/functions.php:150 -#, php-format -msgid "Error add '%s' agent plugin." -msgstr "Error adding '%s' agent plugin." - -#: ../../enterprise/extensions/resource_registration/functions.php:161 -msgid "Error add the module, haven't type." -msgstr "Error adding the module, it does not have a type." - -#: ../../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 adding the module, error in tag component." - -#: ../../enterprise/extensions/resource_registration/functions.php:443 -msgid "Error add the module plugin importation, plugin is not registered" -msgstr "Error adding the module plugin importation, plugin is not registered" - -#: ../../enterprise/extensions/resource_registration/functions.php:454 -#, php-format -msgid "Success add '%s' module." -msgstr "'%s' module added successfully" - -#: ../../enterprise/extensions/resource_registration/functions.php:455 -#, php-format -msgid "Error add '%s' module." -msgstr "Error adding '%s' module" - -#: ../../enterprise/extensions/resource_registration/functions.php:465 -#, php-format -msgid "Error add the alert, the template '%s' don't exist." -msgstr "Error adding the alert, the template '%s' does not exist." - -#: ../../enterprise/extensions/resource_registration/functions.php:473 -#, php-format -msgid "Error add the alert, the module '%s' don't exist." -msgstr "Error adding the alert, the module '%s' does not exist." - -#: ../../enterprise/extensions/resource_registration/functions.php:486 -#, php-format -msgid "Success add '%s' alert." -msgstr "'%s' alert added successfully" - -#: ../../enterprise/extensions/resource_registration/functions.php:487 -#, php-format -msgid "Error add '%s' alert." -msgstr "Error adding '%s' alert" - -#: ../../enterprise/extensions/resource_registration/functions.php:503 -#, php-format -msgid "Error add the alert, the action '%s' don't exist." -msgstr "Error adding the alert, the action '%s' does not exist" - -#: ../../enterprise/extensions/resource_registration/functions.php:515 -#, php-format -msgid "Success add '%s' action." -msgstr "'%s' action added successfully" - -#: ../../enterprise/extensions/translate_string.php:165 -#: ../../enterprise/extensions/translate_string.php:323 -msgid "Translate string" -msgstr "Translate string" - -#: ../../enterprise/extensions/translate_string.php:277 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:160 -msgid "Original string" -msgstr "Original string" - -#: ../../enterprise/extensions/translate_string.php:278 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:161 -msgid "Translation in selected language" -msgstr "Translation in selected language" - -#: ../../enterprise/extensions/translate_string.php:279 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:162 -msgid "Customize translation" -msgstr "Customize translation" - -#: ../../enterprise/extensions/vmware/ajax.php:87 -#: ../../enterprise/include/ajax/clustermap.php:42 -msgid "No IP" -msgstr "No IP" - -#: ../../enterprise/extensions/vmware/functions.php:52 -msgid "This configuration has no file associated." -msgstr "This configuration has no file associated." - -#: ../../enterprise/extensions/vmware/functions.php:61 -msgid "" -"Task scheduled with this configuration does not match with the ID stored. " -"Please delete it " -msgstr "" -"Task scheduled with this configuration does not match with the ID stored. " -"Please delete it " - -#: ../../enterprise/extensions/vmware/functions.php:115 -msgid "Please reinstall Cron extension." -msgstr "Please reinstall Cron extension." - -#: ../../enterprise/extensions/vmware/functions.php:132 -msgid "Please check configuration definition." -msgstr "Please check configuration definition." - -#: ../../enterprise/extensions/vmware/functions.php:241 -msgid "The file does not exists" -msgstr "The file does not exist." - -#: ../../enterprise/extensions/vmware/functions.php:245 -msgid "The file is not readable by HTTP Server" -msgstr "The file is not readable by HTTP Server" - -#: ../../enterprise/extensions/vmware/functions.php:246 -#: ../../enterprise/extensions/vmware/functions.php:251 -msgid "Please check that the web server has write rights on the file" -msgstr "Please check that the web server has write access on the file." - -#: ../../enterprise/extensions/vmware/functions.php:250 -msgid "The file is not writable by HTTP Server" -msgstr "The file is not writable by HTTP Server" - -#: ../../enterprise/extensions/vmware/functions.php:268 -msgid "The file does not exist." -msgstr "The file does not exist." - -#: ../../enterprise/extensions/vmware/functions.php:271 -msgid "The file is not executable." -msgstr "The file is not executable." - -#: ../../enterprise/extensions/vmware/functions.php:396 -msgid "Configuration file path" -msgstr "Configuration file path" - -#: ../../enterprise/extensions/vmware/functions.php:401 -msgid "V-Center IP" -msgstr "V-Center IP" - -#: ../../enterprise/extensions/vmware/functions.php:406 -msgid "Datacenter Name" -msgstr "Datacenter Name" - -#: ../../enterprise/extensions/vmware/functions.php:411 -msgid "Datacenter user" -msgstr "Datacenter user" - -#: ../../enterprise/extensions/vmware/functions.php:434 -msgid "Temporal directory" -msgstr "Temporal directory" - -#: ../../enterprise/extensions/vmware/functions.php:439 -msgid "Target log file" -msgstr "Target log file" - -#: ../../enterprise/extensions/vmware/functions.php:444 -msgid "Entities list file" -msgstr "Entities list file" - -#: ../../enterprise/extensions/vmware/functions.php:449 -msgid "Event pointer file" -msgstr "Event pointer file" - -#: ../../enterprise/extensions/vmware/functions.php:478 -msgid "API user" -msgstr "API user" - -#: ../../enterprise/extensions/vmware/functions.php:483 -msgid "API user's password" -msgstr "API user password" - -#: ../../enterprise/extensions/vmware/functions.php:502 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:88 -msgid "Transfer mode" -msgstr "Transfer mode" - -#: ../../enterprise/extensions/vmware/functions.php:508 -msgid "Tentacle server IP" -msgstr "Tentacle server IP" - -#: ../../enterprise/extensions/vmware/functions.php:513 -msgid "Tentacle server port" -msgstr "Tentacle server port" - -#: ../../enterprise/extensions/vmware/functions.php:518 -msgid "Tentacle extra options" -msgstr "Tentacle extra options" - -#: ../../enterprise/extensions/vmware/functions.php:523 -msgid "Local folder" -msgstr "Local folder" - -#: ../../enterprise/extensions/vmware/functions.php:528 -msgid "Tentacle client path" -msgstr "Tentacle client path" - -#: ../../enterprise/extensions/vmware/functions.php:546 -msgid "Agents group" -msgstr "Agents group" - -#: ../../enterprise/extensions/vmware/functions.php:551 -msgid "Verbosity" -msgstr "Verbosity" - -#: ../../enterprise/extensions/vmware/functions.php:556 -msgid "Max. threads" -msgstr "Max. threads" - -#: ../../enterprise/extensions/vmware/functions.php:561 -msgid "Retry send" -msgstr "Retry send" - -#: ../../enterprise/extensions/vmware/functions.php:566 -msgid "Event mode" -msgstr "Event mode" - -#: ../../enterprise/extensions/vmware/functions.php:576 -msgid "Extra settings" -msgstr "Extra settings" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:37 -msgid "WMware Plugin Settings" -msgstr "WMware Plugin Settings" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:91 -msgid "" -"Pandora FMS Cron extension is required to automate VMware plugin from this " -"form." -msgstr "" -"Pandora FMS Cron extension is required to automate VMware plugin from this " -"form." - -#: ../../enterprise/extensions/vmware/vmware_admin.php:152 -msgid "Failed to update plugin path." -msgstr "Error updating plugin path" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:155 -msgid "VMWare plugin path succesfully updated." -msgstr "VMWare plugin path successfully updated" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:170 -#: ../../enterprise/extensions/vmware/vmware_admin.php:275 -msgid "Configuration name is required." -msgstr "Configuration name is required" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:174 -msgid "Configuration name already in use." -msgstr "Configuration name already in use" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:185 -msgid "Failed while creating configuration file." -msgstr "Error creating configuration file" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:198 -msgid "Failed while creating cron task." -msgstr "Error creating cron task" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:208 -#: ../../enterprise/extensions/vmware/vmware_admin.php:253 -#: ../../enterprise/extensions/vmware/vmware_admin.php:316 -msgid "Failed while updating configuration references." -msgstr "Error updating configuration references" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:214 -msgid " succesfully created." -msgstr " successfully created." - -#: ../../enterprise/extensions/vmware/vmware_admin.php:226 -msgid "Unknown configuration file." -msgstr "Unknown configuration file" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:234 -msgid "Failed while deleting associated cron task." -msgstr "Error deleting associated cron task" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:242 -msgid "Failed while deleting associated conf file." -msgstr "Error deleting associated conf file" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:260 -msgid " succesfully deleted." -msgstr " successfully deleted." - -#: ../../enterprise/extensions/vmware/vmware_admin.php:283 -msgid "Failed while deleting previous cron task. Disable and re-enable it" -msgstr "Error deleting previous cron task. Disable and re-enable it." - -#: ../../enterprise/extensions/vmware/vmware_admin.php:287 -msgid "Failed while deleting associated conf file. Please remove " -msgstr "Error deleting associated conf file. Please remove " - -#: ../../enterprise/extensions/vmware/vmware_admin.php:287 -msgid " manually" -msgstr " manually" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:295 -msgid "Failed while updating configuration file." -msgstr "Error updating configuration file" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:303 -msgid "Failed while updating cron task." -msgstr "Error updating cron task" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:322 -msgid " succesfully updated." -msgstr " successfully updated." - -#: ../../enterprise/extensions/vmware/vmware_admin.php:352 -msgid "Plugin Path" -msgstr "Plugin path" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:369 -msgid "Configuration files" -msgstr "Configuration files" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:392 -#: ../../enterprise/extensions/vmware/vmware_admin.php:426 -msgid "Configuration name" -msgstr "Configuration name" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:432 -msgid "File path" -msgstr "File path" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:439 -msgid "Load" -msgstr "Load" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:444 -msgid "Create new file" -msgstr "Create new file" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:446 -msgid "Load vmware conf file" -msgstr "Load vmware conf file" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:456 -msgid " is invalid" -msgstr " is invalid" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:500 -msgid "Delete this configuration: " -msgstr "Delete this configuration: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:160 -msgid "Power Status: " -msgstr "Power status: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:206 -msgid "Change Status" -msgstr "Change status" - -#: ../../enterprise/extensions/vmware/vmware_view.php:241 -msgid "Top 5 VMs CPU Usage" -msgstr "Top 5 VMs CPU Usage" - -#: ../../enterprise/extensions/vmware/vmware_view.php:250 -msgid "Top 5 VMs Memory Usage" -msgstr "Top 5 VMs Memory Usage" - -#: ../../enterprise/extensions/vmware/vmware_view.php:261 -msgid "Top 5 VMs Provisioning Usage" -msgstr "Top 5 VMs Provisioning Usage" - -#: ../../enterprise/extensions/vmware/vmware_view.php:270 -msgid "Top 5 VMs Network Usage" -msgstr "Top 5 VMs Network Usage" - -#: ../../enterprise/extensions/vmware/vmware_view.php:710 -msgid "Host ESX" -msgstr "Host ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:967 -msgid "CPU Usage" -msgstr "CPU Usage" - -#: ../../enterprise/extensions/vmware/vmware_view.php:977 -msgid "Memory Usage" -msgstr "Memory Usage" - -#: ../../enterprise/extensions/vmware/vmware_view.php:987 -msgid "Disk I/O Rate" -msgstr "Disk I/O Rate" - -#: ../../enterprise/extensions/vmware/vmware_view.php:997 -msgid "Network Usage" -msgstr "Network Usage" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1096 -msgid "Settings updated " -msgstr "Settings updated " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1099 -msgid "No changes in settings " -msgstr "No changes in settings " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1107 -msgid "CPU usage graphs" -msgstr "CPU usage graphs" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1108 -#: ../../enterprise/extensions/vmware/vmware_view.php:1114 -#: ../../enterprise/extensions/vmware/vmware_view.php:1120 -#: ../../enterprise/extensions/vmware/vmware_view.php:1126 -msgid "Force minimum value" -msgstr "Force minimum value" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1110 -#: ../../enterprise/extensions/vmware/vmware_view.php:1116 -#: ../../enterprise/extensions/vmware/vmware_view.php:1122 -#: ../../enterprise/extensions/vmware/vmware_view.php:1128 -msgid "Force maximum value" -msgstr "Force maximum value" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1113 -msgid "Memory usage graphs" -msgstr "Memory usage graphs" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1119 -msgid "Provisioning Usage graphs" -msgstr "Provisioning usage graphs" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1125 -msgid "Network usage graphs" -msgstr "Network usage graphs" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1137 -msgid "Map items" -msgstr "Map items" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1138 -msgid "Show datastores" -msgstr "Show datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1140 -msgid "Show ESXis" -msgstr "Show ESXis" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1142 -msgid "Show VMs" -msgstr "Show VMs" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1144 -msgid "Font size (px)" -msgstr "Font size (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1146 -msgid "Node radius (px)" -msgstr "Node radius (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1152 -msgid "Looking for plugin configuration? Is placed at " -msgstr "Looking for the plugin configuration? It is located at " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1152 -#: ../../enterprise/extensions/vmware/vmware_view.php:1360 -msgid "this link" -msgstr "this link" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1152 -#: ../../enterprise/extensions/vmware/vmware_view.php:1360 -msgid "administration page" -msgstr "administration page" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1159 -msgid "Graph settings" -msgstr "Graph settings" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1164 -msgid "Map settings" -msgstr "Map settings" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1218 -msgid "ESX Detail" -msgstr "ESX detail" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1240 -msgid "ESX details" -msgstr "ESX details" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1244 -msgid "VMware view options" -msgstr "VMware view options" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1255 -#: ../../enterprise/extensions/vmware/vmware_view.php:1518 -msgid "VMware View" -msgstr "VMware view" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1338 -msgid "" -"Some ESX Hosts are not up to date, please check vmware plugin configuration." -msgstr "" -"Some ESX Hosts are not up to date, please check vmware plugin configuration." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1341 -msgid "VMWare plugin is working." -msgstr "VMWare plugin is working." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1350 -msgid "View VMWare map" -msgstr "View VMWare map" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1351 -msgid "View VMWare dashboard" -msgstr "View VMWare dashboard" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1352 -msgid "View ESX Host statistics from" -msgstr "View ESX Host statistics from" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1410 -msgid "Show Datastores" -msgstr "Show datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1413 -msgid "Show ESX" -msgstr "Show ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1416 -msgid "Show VM" -msgstr "Show VM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1434 -msgid "View options" -msgstr "View options" - -#: ../../enterprise/extensions/vmware.php:26 -msgid "Failed to initialize VMware extension." -msgstr "Error initializing VMware extension" - -#: ../../enterprise/extensions/vmware.php:65 -msgid "VMware" -msgstr "VMware" - -#: ../../enterprise/godmode/admin_access_logs.php:42 -msgid "Show extended info" -msgstr "Show extended info" - -#: ../../enterprise/godmode/admin_access_logs.php:61 -msgid "" -"The security check cannot be performed. There are no data in " -"tsession_extended to check the hash." -msgstr "" -"The security check cannot be performed. There are no data in " -"tsession_extended to check the hash." - -#: ../../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:187 -msgid "Extended info:" -msgstr "Extended info:" - -#: ../../enterprise/godmode/admin_access_logs.php:187 -msgid "Changes:" -msgstr "Changes:" - -#: ../../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 readable." - -#: ../../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 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 "This agent has no remote configuration, please configure it." - -#: ../../enterprise/godmode/agentes/collection_manager.php:76 -msgid "Succesful add the collection" -msgstr "Collection added successfully" - -#: ../../enterprise/godmode/agentes/collection_manager.php:77 -msgid "Unsuccesful add the collection" -msgstr "Error adding the collection" - -#: ../../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 "Collection package created successfully" - -#: ../../enterprise/godmode/agentes/collection_manager.php:92 -#: ../../enterprise/godmode/agentes/collections.php:144 -msgid "Can not create collection package." -msgstr "Error creating 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 "Must 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 "Show Agent >" - -#: ../../enterprise/godmode/agentes/collections.agents.php:113 -msgid "This collection has not been added to any agents" -msgstr "This collection has not been added to any agents" - -#: ../../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:54 -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. There is 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 "Collection created successfully" - -#: ../../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 short name of the collection 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:62 -msgid "Files in " -msgstr "Files in " - -#: ../../enterprise/godmode/agentes/collections.editor.php:106 -#: ../../enterprise/godmode/agentes/collections.editor.php:167 -msgid "Back to file explorer" -msgstr "Back to file explorer" - -#: ../../enterprise/godmode/agentes/collections.editor.php:230 -msgid "Correct update file." -msgstr "File updated correctly" - -#: ../../enterprise/godmode/agentes/collections.editor.php:231 -msgid "Incorrect update file." -msgstr "Error updating file" - -#: ../../enterprise/godmode/agentes/collections.editor.php:370 -msgid "Please, first save a new collection before to upload files." -msgstr "Please save a new collection before uploading files." - -#: ../../enterprise/godmode/agentes/collections.php:48 -msgid "Success: recreate file" -msgstr "File recreated successfully" - -#: ../../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 "Collection management" - -#: ../../enterprise/godmode/agentes/collections.php:120 -msgid "Manager collection" -msgstr "Collection manager" - -#: ../../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 it?" - -#: ../../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 you want to reapply?" - -#: ../../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 "Are you sure you want to apply?" - -#: ../../enterprise/godmode/agentes/collections.php:269 -msgid "Apply changes" -msgstr "Apply changes" - -#: ../../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 "Inventory module deleted successfully" - -#: ../../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 "Inventory module forced successfully" - -#: ../../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 "Inventory module updated successfully" - -#: ../../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:543 -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:21 -msgid "Create a new web Server module" -msgstr "Create a new webserver module" - -#: ../../enterprise/godmode/agentes/module_manager.php:29 -msgid "Create a new web analysis module" -msgstr "Create a new web analysis module" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:49 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:50 -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:55 -msgid "Using local component" -msgstr "Using local component" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:128 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:129 -msgid "Show configuration data" -msgstr "Show configuration data" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:139 -msgid "Hide configuration data" -msgstr "Hide configuration data" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:147 -msgid "Data configuration" -msgstr "Data configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:153 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:101 -#: ../../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:153 -#: ../../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:158 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:105 -#: ../../enterprise/godmode/modules/configure_local_component.php:323 -#: ../../enterprise/include/functions_metaconsole.php:992 -#: ../../enterprise/include/functions_metaconsole.php:1015 -#: ../../enterprise/include/functions_metaconsole.php:1038 -#: ../../enterprise/include/functions_metaconsole.php:1061 -#: ../../enterprise/include/functions_metaconsole.php:1084 -#: ../../enterprise/include/functions_metaconsole.php:1107 -#: ../../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:158 -#: ../../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:169 -#: ../../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:170 -#: ../../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:171 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:175 -#: ../../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:172 -#: ../../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 misseding. Please add a line with 'module_name yourmodulename' to " -"the data configuration." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:173 -#: ../../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 missing. Please add a line with 'module_type yourmoduletype' to data " -"configuration." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 -#: ../../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:176 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:172 -#: ../../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:177 -#: ../../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:178 -#: ../../enterprise/godmode/modules/configure_local_component.php:336 -msgid "Data configuration are built correctly" -msgstr "Data configuration is 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:103 -#: ../../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:107 -#: ../../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:115 -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 -msgid "Check type" -msgstr "Check type" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:121 -msgid "Requests" -msgstr "Requests" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 -msgid "Agent browser id" -msgstr "Agent browser ID" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:130 -msgid "HTTP auth (login)" -msgstr "HTTP auth (login)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:133 -msgid "HTTP auth (password)" -msgstr "HTTP auth (password)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:140 -#: ../../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:147 -msgid "Proxy auth (login)" -msgstr "Proxy auth (login)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:151 -msgid "Proxy auth (pass)" -msgstr "Proxy auth (pass)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:158 -msgid "Proxy auth (server)" -msgstr "Proxy auth (server)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:162 -msgid "Proxy auth (realm)" -msgstr "Proxy auth (realm)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:168 -#: ../../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:169 -#: ../../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:170 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:171 -#: ../../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:173 -msgid "There isn't get or post" -msgstr "There is no get or post" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:174 -#: ../../enterprise/meta/include/functions_wizard_meta.php:570 -msgid "Web checks are built correctly" -msgstr "Web checks are built correctly" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:89 -msgid "Run performance tests" -msgstr "Run performance tests" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:94 -msgid "Target web site" -msgstr "Target web site" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:94 -msgid "" -"The url specified in this field is mandatory to retrieve performance stats." -msgstr "" -"The URL specified in this field is mandatory to retrieve performance " -"statistics." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:99 -msgid "target web site (http://...)" -msgstr "target web site (http://...)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:104 -msgid "Execute tests from" -msgstr "Execute tests from" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 -msgid "Paste your selenium test, exported as HTML, here" -msgstr "Paste your selenium test, exported as HTML, here" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:131 -msgid "Add file" -msgstr "Add file" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:134 -msgid "Upload your selenium test in html format" -msgstr "Upload your selenium test in HTML format" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 -msgid "Plug-in updated succesfully" -msgstr "Plugin updated successfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 -msgid "Plug-in cannot be updated" -msgstr "Plugin cannot be updated" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in deleted succesfully" -msgstr "Plugin deleted successfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in cannot be deleted" -msgstr "Plugin cannot be deleted" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:55 -msgid "Plug-in added succesfully" -msgstr "Plugin added successfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:56 -msgid "Plug-in cannot be added" -msgstr "Plugin cannot be added" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in disabled succesfully" -msgstr "Plugin disabled successfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in cannot be disabled" -msgstr "Plugin cannot be disabled" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in enabled succesfully" -msgstr "Plugin enabled successfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in cannot be enabled" -msgstr "Plugin cannot be enabled" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:124 -#: ../../enterprise/godmode/policies/policy_plugins.php:66 -msgid "New plug-in" -msgstr "New 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 "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 "Event alert builder" - -#: ../../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 in the 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 list " -"of event alerts." - -#: ../../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 -#: ../../enterprise/meta/include/functions_autoprovision.php:703 -msgid "Move up" -msgstr "Move up" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:498 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:447 -#: ../../enterprise/meta/include/functions_autoprovision.php:712 -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 event 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 "Rule created successfully" - -#: ../../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 "Rule updated successfully" - -#: ../../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 "Rule operators updated successfully" - -#: ../../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 event alert 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 "Alerts created successfully" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 -msgid "Failed: create the alerts for this modules, please check." -msgstr "Error 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 "Agent modules in policy" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:51 -msgid "Successfully copied " -msgstr "Successfully copied " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:58 -msgid " cannot be copied to " -msgstr " cannot be copied to " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:58 -msgid " policy" -msgstr " policy" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:177 -msgid "To policies" -msgstr "To policies" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:330 -msgid "No destiny policies to copy" -msgstr "No destination policies to copy" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Success: remove the alerts." -msgstr "Alerts removed successfully" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "Error 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 -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." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:182 -msgid "SNMP Alerts to be deleted" -msgstr "SNMP alerts to be deleted" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:212 -#: ../../enterprise/godmode/policies/policy_agents.php:403 -#: ../../enterprise/godmode/policies/policy_agents.php:411 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:165 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:445 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:362 -msgid "Filter agent" -msgstr "Filter agent" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:215 -msgid "Filter module" -msgstr "Filter module" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:334 -msgid "Updated modules on database" -msgstr "Updated modules in the database" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:336 -msgid "Agent configuration files updated" -msgstr "Agent configuration files updated" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:354 -#: ../../enterprise/godmode/policies/policy_queue.php:398 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:407 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -msgid "Finished" -msgstr "Finished" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:62 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:62 -msgid "Successful update the tags" -msgstr "Tags updated successfully" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:63 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:63 -msgid "Unsuccessful update the tags" -msgstr "Error updating the tags" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102 -msgid "Tags unused" -msgstr "Tags unused" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118 -msgid "Tags used" -msgstr "Tags used" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:186 -#, php-format -msgid "Successfully updated alerts (%s / %s)" -msgstr "Alerts (%s / %s) updated successfully" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:190 -#, php-format -msgid "Unsuccessfully updated alerts (%s / %s)" -msgstr "Error updating alerts (%s / %s)" - -#: ../../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 "Add policy alerts in bulk" - -#: ../../enterprise/godmode/massive/massive_operations.php:79 -msgid "Bulk alerts policy delete" -msgstr "Delete policy alerts in bulk" - -#: ../../enterprise/godmode/massive/massive_operations.php:80 -msgid "Bulk tags module policy edit" -msgstr "Edit module tags in policies in bulk" - -#: ../../enterprise/godmode/massive/massive_operations.php:81 -msgid "Bulk modules policy tags edit" -msgstr "Edit module tags in policies in bulk" - -#: ../../enterprise/godmode/massive/massive_operations.php:82 -msgid "Bulk modules policy add from agent" -msgstr "Add module policies from the agent in bulk" - -#: ../../enterprise/godmode/massive/massive_operations.php:90 -msgid "Bulk alert SNMP delete" -msgstr "Delete SNMP alerts in bulk" - -#: ../../enterprise/godmode/massive/massive_operations.php:91 -msgid "Bulk alert SNMP edit" -msgstr "Edit SNMP alerts in bulk" - -#: ../../enterprise/godmode/massive/massive_operations.php:99 -msgid "Bulk Satellite modules edit" -msgstr "Edit Satellite modules in bulk" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:100 -msgid "Modules unused" -msgstr "Unused modules" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:116 -msgid "Modules used" -msgstr "Used modules" - -#: ../../enterprise/godmode/menu.php:16 -msgid "Manage Satellite Server" -msgstr "Manage Satellite Server" - -#: ../../enterprise/godmode/menu.php:58 ../../enterprise/godmode/menu.php:152 -msgid "Duplicate config" -msgstr "Duplicate configuration" - -#: ../../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:3430 -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:145 -msgid "Log Collector" -msgstr "Log collector" - -#: ../../enterprise/godmode/menu.php:159 -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 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 you will find the script for the REMOTE inventory modules. Local " -"inventory modules do not 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 for the policy, only for database changes" - -#: ../../enterprise/godmode/policies/policies.php:368 -msgid "Pending update policy" -msgstr "Pending update of policy" - -#: ../../enterprise/godmode/policies/policies.php:381 -#: ../../enterprise/godmode/policies/policy_linking.php:122 -#: ../../enterprise/include/functions_policies.php:3459 -msgid "Linking" -msgstr "Linking" - -#: ../../enterprise/godmode/policies/policies.php:393 -msgid "Agent Wizard" -msgstr "Agent Wizard" - -#: ../../enterprise/godmode/policies/policies.php:401 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:37 -#: ../../enterprise/include/functions_policies.php:3449 -msgid "External alerts" -msgstr "External alerts" - -#: ../../enterprise/godmode/policies/policies.php:405 -#: ../../enterprise/godmode/policies/policy.php:46 -#: ../../enterprise/include/functions_policies.php:3477 -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 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:95 -msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to agents pending to be deleted. They will be deleted in " -"the next policy application." - -#: ../../enterprise/godmode/policies/policy_agents.php:100 -#: ../../enterprise/godmode/policies/policy_agents.php:122 -#: ../../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:1132 -#: ../../enterprise/godmode/policies/policy_plugins.php:42 -msgid "Successfully reverted deletion" -msgstr "Deletion reverted successfully" - -#: ../../enterprise/godmode/policies/policy_agents.php:101 -#: ../../enterprise/godmode/policies/policy_agents.php:123 -#: ../../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:1133 -#: ../../enterprise/godmode/policies/policy_plugins.php:43 -msgid "Could not be reverted" -msgstr "Could not be reverted" - -#: ../../enterprise/godmode/policies/policy_agents.php:117 -msgid "" -"Successfully added to delete pending groups. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to groups pending to be deleted. Will be deleted in the " -"next policy application." - -#: ../../enterprise/godmode/policies/policy_agents.php:159 -#: ../../enterprise/godmode/policies/policy_agents.php:282 -msgid "Successfully added to delete queue" -msgstr "Successfully added to delete queue" - -#: ../../enterprise/godmode/policies/policy_agents.php:160 -#: ../../enterprise/godmode/policies/policy_agents.php:283 -msgid "Could not be added to delete queue" -msgstr "Could not be added to the delete queue" - -#: ../../enterprise/godmode/policies/policy_agents.php:195 -msgid "Successfully deleted from delete pending agents" -msgstr "Successfully deleted from agents pending to be deleted" - -#: ../../enterprise/godmode/policies/policy_agents.php:196 -msgid "Could not be deleted from delete pending agents" -msgstr "Could not be deleted from agents pending to be deleted" - -#: ../../enterprise/godmode/policies/policy_agents.php:353 -msgid "Apply to" -msgstr "Apply to" - -#: ../../enterprise/godmode/policies/policy_agents.php:420 -msgid "Agents in Policy" -msgstr "Agents in policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:437 -msgid "Groups in Policy" -msgstr "Groups in policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:517 -msgid "Add agents to policy" -msgstr "Add agents to policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:523 -msgid "Delete agents from policy" -msgstr "Delete agents from policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:563 -msgid "Applied" -msgstr "Applied" - -#: ../../enterprise/godmode/policies/policy_agents.php:564 -msgid "Not applied" -msgstr "Not applied" - -#: ../../enterprise/godmode/policies/policy_agents.php:573 -#: ../../enterprise/operation/agentes/policy_view.php:304 -msgid "R." -msgstr "R." - -#: ../../enterprise/godmode/policies/policy_agents.php:575 -msgid "Unlinked modules" -msgstr "Unlinked modules" - -#: ../../enterprise/godmode/policies/policy_agents.php:575 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:578 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/operation/agentes/policy_view.php:50 -msgid "Last application" -msgstr "Last application" - -#: ../../enterprise/godmode/policies/policy_agents.php:579 -#: ../../enterprise/godmode/policies/policy_agents.php:823 -msgid "Add to delete queue" -msgstr "Add to delete queue" - -#: ../../enterprise/godmode/policies/policy_agents.php:631 -msgid "This agent can not be remotely configured" -msgstr "This agent cannot be remotely configured." - -#: ../../enterprise/godmode/policies/policy_agents.php:656 -#: ../../enterprise/godmode/policies/policy_agents.php:893 -#: ../../enterprise/godmode/policies/policy_queue.php:180 -msgid "Add to apply queue" -msgstr "Add to apply queue" - -#: ../../enterprise/godmode/policies/policy_agents.php:684 -#: ../../enterprise/godmode/policies/policy_agents.php:925 -#: ../../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:1295 -msgid "Undo deletion" -msgstr "Undo deletion" - -#: ../../enterprise/godmode/policies/policy_agents.php:698 -#: ../../enterprise/godmode/policies/policy_agents.php:864 -#: ../../enterprise/operation/agentes/policy_view.php:62 -msgid "Policy applied" -msgstr "Policy applied" - -#: ../../enterprise/godmode/policies/policy_agents.php:702 -#: ../../enterprise/godmode/policies/policy_agents.php:868 -msgid "Need apply" -msgstr "Must be applied" - -#: ../../enterprise/godmode/policies/policy_agents.php:710 -#: ../../enterprise/godmode/policies/policy_agents.php:875 -msgid "Applying policy" -msgstr "Applying policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:716 -#: ../../enterprise/godmode/policies/policy_agents.php:879 -msgid "Deleting from policy" -msgstr "Deleting from policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:795 -msgid "Add groups to policy" -msgstr "Add groups to policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:801 -msgid "Delete groups from policy" -msgstr "Delete groups from policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:821 -msgid "Total agents in policy group" -msgstr "Total agents in policy group" - -#: ../../enterprise/godmode/policies/policy_agents.php:821 -msgid "T." -msgstr "T." - -#: ../../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 to be deleted. 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 the 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:1113 -#: ../../enterprise/godmode/policies/policy_modules.php:1127 -msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to modules pending to be deleted. 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: updating modules linked to policy" - -#: ../../enterprise/godmode/policies/policy_linking.php:56 -msgid "Success: Update linking modules to policy" -msgstr "Success: updating modules linked 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 it in 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 -#, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "Module(s) (%s/%s) added successfully to policy %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:478 -#, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "Module(s) (%s/%s) could not be added to policy %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" - -#: ../../enterprise/godmode/policies/policy_modules.php:769 -msgid "Could not be added module." -msgstr "Module could not be added" - -#: ../../enterprise/godmode/policies/policy_modules.php:1083 -msgid "" -"The module type in Data configuration is empty, take from combo box of form." -msgstr "" -"The module type in data configuration is empty, choose one from the combo " -"box of the form." - -#: ../../enterprise/godmode/policies/policy_modules.php:1086 -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." - -#: ../../enterprise/godmode/policies/policy_modules.php:1117 -msgid "Could not be added to deleted all modules." -msgstr "Could not be added to deletion of all modules" - -#: ../../enterprise/godmode/policies/policy_modules.php:1203 -msgid "Successfully duplicate the module." -msgstr "Duplication of module successful" - -#: ../../enterprise/godmode/policies/policy_modules.php:1263 -msgid "Local component" -msgstr "Local component" - -#: ../../enterprise/godmode/policies/policy_modules.php:1329 -msgid "There are no defined modules" -msgstr "There are no defined modules" - -#: ../../enterprise/godmode/policies/policy_modules.php:1347 -msgid "Copy selected modules to policy: " -msgstr "Copy selected modules to policy: " - -#: ../../enterprise/godmode/policies/policy_modules.php:1525 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "Are you sure you want to copy modules into policy ? \\n" - -#: ../../enterprise/godmode/policies/policy_modules.php:1545 -msgid "Please select any module to copy" -msgstr "Please select any module to copy" - -#: ../../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 to be deleted. It will be deleted in " -"the next policy application." - -#: ../../enterprise/godmode/policies/policy_plugins.php:34 -msgid "Cannot be added to delete pending plugins." -msgstr "Cannot be added to plugins pending to be deleted" - -#: ../../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:164 -msgid "Update pending" -msgstr "Update pending" - -#: ../../enterprise/godmode/policies/policy_queue.php:166 -msgid "Update pending agents" -msgstr "Agents pending to be updated" - -#: ../../enterprise/godmode/policies/policy_queue.php:184 -msgid "Add to apply queue only for database" -msgstr "Add to apply queue only for database" - -#: ../../enterprise/godmode/policies/policy_queue.php:190 -msgid "Update pending groups" -msgstr "Groups pending to be updated" - -#: ../../enterprise/godmode/policies/policy_queue.php:198 -msgid "Link pending modules" -msgstr "Link pending modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:204 -msgid "Will be linked in the next policy application" -msgstr "They will be linked in the next policy application." - -#: ../../enterprise/godmode/policies/policy_queue.php:207 -msgid "Unlink pending modules" -msgstr "Unlink pending modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:213 -msgid "Will be unlinked in the next policy application" -msgstr "They will be unlinked in the next policy application." - -#: ../../enterprise/godmode/policies/policy_queue.php:218 -msgid "Delete pending" -msgstr "Delete pending" - -#: ../../enterprise/godmode/policies/policy_queue.php:220 -msgid "Delete pending agents" -msgstr "Delete pending agents" - -#: ../../enterprise/godmode/policies/policy_queue.php:226 -#: ../../enterprise/godmode/policies/policy_queue.php:234 -#: ../../enterprise/godmode/policies/policy_queue.php:243 -#: ../../enterprise/godmode/policies/policy_queue.php:252 -#: ../../enterprise/godmode/policies/policy_queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:270 -#: ../../enterprise/godmode/policies/policy_queue.php:279 -#: ../../enterprise/godmode/policies/policy_queue.php:288 -msgid "Will be deleted in the next policy application" -msgstr "Will be deleted in the next policy application" - -#: ../../enterprise/godmode/policies/policy_queue.php:229 -msgid "Delete pending groups" -msgstr "Delete pending groups" - -#: ../../enterprise/godmode/policies/policy_queue.php:237 -msgid "Delete pending modules" -msgstr "Delete pending modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:246 -msgid "Delete pending inventory modules" -msgstr "Delete pending inventory modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:255 -msgid "Delete pending alerts" -msgstr "Delete pending alerts" - -#: ../../enterprise/godmode/policies/policy_queue.php:264 -msgid "Delete pending external alerts" -msgstr "Delete pending external alerts" - -#: ../../enterprise/godmode/policies/policy_queue.php:273 -msgid "Delete pending file collections" -msgstr "Delete pending file collections" - -#: ../../enterprise/godmode/policies/policy_queue.php:282 -msgid "Delete pending plugins" -msgstr "Delete pending plugins" - -#: ../../enterprise/godmode/policies/policy_queue.php:294 -msgid "Advices" -msgstr "Advices" - -#: ../../enterprise/godmode/policies/policy_queue.php:297 -msgid "Queue summary" -msgstr "Queue summary" - -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -msgid "Apply (database and files)" -msgstr "Apply (database and files)" - -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/godmode/policies/policy_queue.php:438 -#: ../../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:370 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Complete" -msgstr "Complete" - -#: ../../enterprise/godmode/policies/policy_queue.php:370 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Incomplete" -msgstr "Incomplete" - -#: ../../enterprise/godmode/policies/policy_queue.php:384 -msgid "Queue filter" -msgstr "Queue filter" - -#: ../../enterprise/godmode/policies/policy_queue.php:466 -#: ../../enterprise/meta/advanced/policymanager.queue.php:334 -msgid "Delete from queue" -msgstr "Delete from queue" - -#: ../../enterprise/godmode/policies/policy_queue.php:479 -msgid "Empty queue" -msgstr "Empty queue" - -#: ../../enterprise/godmode/policies/policy_queue.php:496 -msgid "This operation could take a long time" -msgstr "This operation could take some time." - -#: ../../enterprise/godmode/policies/policy_queue.php:507 -msgid "Apply all" -msgstr "Apply all" - -#: ../../enterprise/godmode/policies/policy_queue.php:513 -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:2133 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2197 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2364 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2748 -#: ../../enterprise/operation/log/log_viewer.php:181 -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:73 -msgid "Graph template management" -msgstr "Graph template management" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:166 -msgid "There are no defined graph templates" -msgstr "There are no defined graph templates" - -#: ../../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 "Create template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:151 -msgid "Cleanup sucessfully" -msgstr "Cleanup successful" - -#: ../../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:100 -msgid "Wizard template" -msgstr "Wizard template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:257 -msgid "Clean up template" -msgstr "Clean up template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:463 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:382 -msgid "Agents available" -msgstr "Agents available" - -#: ../../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:381 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:387 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:323 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:331 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:402 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:410 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:555 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:563 -msgid "Select all" -msgstr "Select all" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:466 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:388 -msgid "Agents to apply" -msgstr "Agents to apply" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:409 -msgid "Add agents to template" -msgstr "Add agents to template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:413 -msgid "Undo agents to template" -msgstr "Undo agents to template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:431 -msgid "Apply template" -msgstr "Apply template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:392 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:756 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:787 -msgid "Please set template distinct than " -msgstr "Please set template distinct from " - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:419 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:782 -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 search:" - -#: ../../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 "Successful operation" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Could not be operation" -msgstr "Operation could not be completed" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:68 -msgid "Advance Reporting" -msgstr "Advance reporting" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 -#: ../../enterprise/include/functions_reporting.php:39 -msgid "Global" -msgstr "Global" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:169 -msgid "Elements to apply" -msgstr "Elements to apply" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:298 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1726 -msgid ">=" -msgstr ">=" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:300 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1728 -msgid "<" -msgstr "<" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1759 -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:101 -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 have not 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:475 -msgid "Add agents" -msgstr "Add agents" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:478 -msgid "Undo agents" -msgstr "Undo agents" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:486 -msgid "Generate" -msgstr "Generate" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:769 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:760 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1015 -msgid "Please set agent distinct than " -msgstr "Please set agent different than " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:105 -msgid "Advance Options" -msgstr "Advance options" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:121 -#: ../../enterprise/meta/advanced/metasetup.visual.php:294 -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 FMS Console under " -"'images/custom_logo'. You can upload more files (ONLY IN JPEG) using the " -"console upload tool." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1534 -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:1548 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2414 -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:1559 -msgid "Module exact match" -msgstr "Module exact match" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1559 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2180 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2343 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 -msgid "Check it if you want to match module name literally" -msgstr "Check if you want to match the module name literally" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1568 -msgid "Hide items without data" -msgstr "Hide items without data" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1568 -msgid "Check it if you want not show items without data" -msgstr "Check if you want to hide items without data" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1608 -msgid "Query SQL" -msgstr "SQL query" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1632 -msgid "SQL preview" -msgstr "SQL preview" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1712 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:385 -msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." -msgstr "" -"If this option is checked, only adding this type of modules supports this " -"option." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1893 -msgid "Modules to match" -msgstr "Modules to match" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1895 -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:1973 -msgid "Modules to match (Free text)" -msgstr "Modules to match (Free text)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1975 -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:1989 -msgid "Create a graph for each agent" -msgstr "Create a graph for each agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1991 -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 large graph with all modules from all agents." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2145 -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:2194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2361 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2652 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2751 -msgid "Not literally" -msgstr "Not literally" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2238 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 -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:2305 -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:2671 -msgid "Name and SLA limit should not be empty" -msgstr "Name and SLA limit should not be empty" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 -msgid "Sucessfully applied" -msgstr "Successfully applied" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 -msgid "reports" -msgstr "Reports" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 -msgid "items" -msgstr "Items" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:197 -msgid "Could not be applied" -msgstr "Could not be applied" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:217 -msgid "Create template report wizard" -msgstr "Create template report wizard" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:264 -msgid "Create report per agent" -msgstr "Create report per agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 -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:279 -msgid "Target group" -msgstr "Target group" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:306 -msgid "Filter by" -msgstr "Filter by" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:369 -msgid "Filter tag" -msgstr "Filter tag" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:245 -msgid "Order:" -msgstr "Order:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:265 -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:280 -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:36 -msgid "Wizard SLA" -msgstr "SLA-Wizard" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:115 -msgid "hourly S.L.A." -msgstr "hourly SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:116 -msgid "Availability Graph S.L.A." -msgstr "Availability Graph SLA" - -#: ../../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/reporting_builder.wizard_sla.php:325 -msgid "SLA min value is needed" -msgstr "SLA min value is needed" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:329 -msgid "SLA max value is needed" -msgstr "SLA max value is needed" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:333 -msgid "SLA Limit value is needed" -msgstr "SLA limit value is needed" - -#: ../../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/reporting/cluster_view.php:29 -#: ../../enterprise/godmode/reporting/cluster_builder.php:40 -msgid "Clusters list" -msgstr "Clusters list" - -#: ../../enterprise/godmode/reporting/cluster_view.php:34 -msgid "Cluster editor" -msgstr "Cluster editor" - -#: ../../enterprise/godmode/reporting/cluster_view.php:36 -msgid "Cluster detail" -msgstr "Cluster detail" - -#: ../../enterprise/godmode/reporting/cluster_view.php:102 -msgid "Node running with" -msgstr "Node running with" - -#: ../../enterprise/godmode/reporting/cluster_view.php:103 -msgid "balanced modules" -msgstr "balanced modules" - -#: ../../enterprise/godmode/reporting/cluster_view.php:118 -msgid "Cluster status" -msgstr "Cluster status" - -#: ../../enterprise/godmode/reporting/cluster_view.php:172 -msgid "Reload cluster" -msgstr "Reload cluster" - -#: ../../enterprise/godmode/reporting/cluster_view.php:292 -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:22 -msgid "Balanced modules" -msgstr "Balanced modules" - -#: ../../enterprise/godmode/reporting/cluster_view.php:369 -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:25 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:480 -msgid "Common modules" -msgstr "Common modules" - -#: ../../enterprise/godmode/reporting/cluster_builder.php:46 -msgid "Cluster view" -msgstr "Cluster view" - -#: ../../enterprise/godmode/reporting/cluster_builder.php:144 -#: ../../enterprise/godmode/reporting/cluster_builder.php:191 -#: ../../enterprise/godmode/reporting/cluster_builder.php:300 -#: ../../enterprise/godmode/reporting/cluster_builder.php:369 -#: ../../enterprise/godmode/reporting/cluster_builder.php:497 -#: ../../enterprise/godmode/reporting/cluster_builder.php:543 -msgid "Cluster" -msgstr "Cluster" - -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:199 -msgid "No init" -msgstr "No initialized" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:46 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:52 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:57 -msgid "Cluster settings" -msgstr "Cluster settings" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:76 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:82 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:87 -msgid "Cluster agents" -msgstr "Cluster agents" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:107 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:113 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:118 -msgid "A/A modules" -msgstr "A/A modules" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:140 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:146 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:151 -msgid "A/A modules limits" -msgstr "A/A modules limits" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:176 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:182 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:187 -msgid "A/P modules" -msgstr "A/P modules" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:208 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:214 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:219 -msgid "Critical A/P modules" -msgstr "Critical A/P modules" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:240 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:313 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:392 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:545 -#: ../../enterprise/godmode/reporting/cluster_list.php:155 -msgid "Cluster name" -msgstr "Cluster name" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:240 -msgid "" -"An agent with the same name of the cluster will be created, as well a " -"special service with the same name" -msgstr "" -"An agent with the same name of the cluster will be created, as well a " -"special service with the same name" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:244 -msgid "Should not be empty" -msgstr "Should not be empty" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:253 -msgid "Cluster type" -msgstr "Cluster type" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:258 -msgid "Ative - Active" -msgstr "Active - Active" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:259 -msgid "Active - Pasive" -msgstr "Active - Passive" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:296 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:373 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:515 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:687 -msgid "Update and view cluster" -msgstr "Update and view cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:318 -msgid "Adding agents to the cluster" -msgstr "Adding agents to the cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:332 -msgid "Agents in Cluster" -msgstr "Agents in cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:355 -msgid "Add agents to cluster" -msgstr "Add agents to cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:357 -msgid "Drop agents to cluster" -msgstr "Drop agents to cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:370 -msgid "Update and next" -msgstr "Update and next" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:397 -msgid "Adding common modules" -msgstr "Adding common modules" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:403 -msgid "Common in agents" -msgstr "Common modules in agents" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:411 -msgid "Added common modules" -msgstr "Common modules added" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:448 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:601 -msgid "Add modules to cluster" -msgstr "Add modules to cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:450 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:603 -msgid "Drop modules to cluster" -msgstr "Drop modules to cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:462 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:512 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:615 -msgid "Update and Next" -msgstr "Update and next" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:481 -msgid "Critical if equal or greater than" -msgstr "Critical if equal or greater than" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:482 -msgid "Warning if equal or greater than" -msgstr "Warning if equal or greater than" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:550 -msgid "Adding balanced modules" -msgstr "Adding balanced modules" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:564 -msgid "Added balanced modules" -msgstr "Balanced modules added" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:647 -msgid "Balanced modules settings" -msgstr "Balanced modules settings" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:652 -msgid "Balanced module" -msgstr "Balanced module" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:653 -msgid "is critical module" -msgstr "is critical module" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:684 -msgid "Update and Finish" -msgstr "Update and finish" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1011 -msgid "Select at least two agents " -msgstr "Select at least two agents " - -#: ../../enterprise/godmode/reporting/cluster_list.php:270 -msgid "Create cluster" -msgstr "Create cluster" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:30 -msgid "Credential Boxes List" -msgstr "Credential box list" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:33 -msgid "Credential Boxes" -msgstr "Credential boxes" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:374 -#: ../../enterprise/godmode/servers/list_satellite.php:69 -msgid "No Data" -msgstr "No data" - -#: ../../enterprise/godmode/servers/list_satellite.php:26 -msgid "Satellite Server" -msgstr "Satellite Server" - -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 -msgid "Add Credential Box" -msgstr "Add credential box" - -#: ../../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 "" -"Export target cannot be created: 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_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 configuration file of server is not readable." - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:135 -msgid "Error: The conf file of server is not writable." -msgstr "Error: the configuration 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 configuration server files in Pandora FMS" - -#: ../../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 "" -"Deleting this configuration file implies that Pandora FMS will send local " -"configuration back to console" - -#: ../../enterprise/godmode/services/services.elements.php:70 -#: ../../enterprise/godmode/services/services.service.php:306 -msgid "" -"This values are by default because the service is auto calculate mode." -msgstr "" -"These are default values because the service is in 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:215 -#: ../../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 "List of services" - -#: ../../enterprise/godmode/services/services.elements.php:102 -#: ../../enterprise/godmode/services/services.service.php:221 -#: ../../enterprise/operation/services/services.service.php:61 -#: ../../enterprise/operation/services/services.service_map.php:69 -msgid "Services table view" -msgstr "Services table view" - -#: ../../enterprise/godmode/services/services.elements.php:109 -#: ../../enterprise/godmode/services/services.service.php:226 -#: ../../enterprise/operation/services/services.service.php:66 -#: ../../enterprise/operation/services/services.service_map.php:75 -msgid "Config Service" -msgstr "Configuration service" - -#: ../../enterprise/godmode/services/services.elements.php:115 -#: ../../enterprise/godmode/services/services.service.php:231 -#: ../../enterprise/operation/services/services.service.php:71 -#: ../../enterprise/operation/services/services.service_map.php:81 -msgid "Config Elements" -msgstr "Configuration elements" - -#: ../../enterprise/godmode/services/services.elements.php:123 -#: ../../enterprise/godmode/services/services.service.php:236 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/services.service_map.php:87 -msgid "View Service" -msgstr "View service" - -#: ../../enterprise/godmode/services/services.elements.php:130 -#: ../../enterprise/godmode/services/services.service.php:241 -#: ../../enterprise/operation/services/services.service.php:85 -#: ../../enterprise/operation/services/services.service_map.php:93 -msgid "Service map" -msgstr "Service map" - -#: ../../enterprise/godmode/services/services.elements.php:142 -#: ../../enterprise/include/functions_services.php:1736 -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:324 -msgid "Edit element service" -msgstr "Edit element service" - -#: ../../enterprise/godmode/services/services.elements.php:327 -msgid "Create element service" -msgstr "Create element service" - -#: ../../enterprise/godmode/services/services.elements.php:377 -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:393 -msgid "Warning weight" -msgstr "Warning weight" - -#: ../../enterprise/godmode/services/services.elements.php:397 -msgid "Unknown weight" -msgstr "Unknown weight" - -#: ../../enterprise/godmode/services/services.elements.php:401 -msgid "Ok weight" -msgstr "OK weight" - -#: ../../enterprise/godmode/services/services.elements.php:408 -msgid "" -"Only the critical elements are relevant to calculate the service status" -msgstr "" -"Only critical elements are relevant when calculating 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:65 -#: ../../enterprise/godmode/services/services.service.php:112 -msgid "No name and description specified for the service" -msgstr "No name and description specified for the service" - -#: ../../enterprise/godmode/services/services.service.php:70 -#: ../../enterprise/godmode/services/services.service.php:117 -msgid "No name specified for the service" -msgstr "No name specified for the service" - -#: ../../enterprise/godmode/services/services.service.php:75 -#: ../../enterprise/godmode/services/services.service.php:122 -msgid "No description specified for the service" -msgstr "No description specified for the service" - -#: ../../enterprise/godmode/services/services.service.php:82 -msgid "Error creating service" -msgstr "Error creating service" - -#: ../../enterprise/godmode/services/services.service.php:86 -msgid "Service created successfully" -msgstr "Service created successfully" - -#: ../../enterprise/godmode/services/services.service.php:153 -msgid "Error updating service" -msgstr "Error updating service" - -#: ../../enterprise/godmode/services/services.service.php:157 -msgid "Service updated successfully" -msgstr "Service updated successfully" - -#: ../../enterprise/godmode/services/services.service.php:170 -#: ../../enterprise/godmode/services/services.service.php:197 -#: ../../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:174 -msgid "New Service" -msgstr "New service" - -#: ../../enterprise/godmode/services/services.service.php:269 -msgid "No Services or concrete action" -msgstr "No services or concrete action" - -#: ../../enterprise/godmode/services/services.service.php:280 -msgid "General Data" -msgstr "General data" - -#: ../../enterprise/godmode/services/services.service.php:296 -msgid "You should set the weights manually" -msgstr "You should set the weights manually" - -#: ../../enterprise/godmode/services/services.service.php:299 -msgid "The weights have default values" -msgstr "The weights have default values" - -#: ../../enterprise/godmode/services/services.service.php:301 -#: ../../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:302 -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:322 -msgid "Agent to store data" -msgstr "Agent to store data" - -#: ../../enterprise/godmode/services/services.service.php:345 -msgid "S.L.A. interval" -msgstr "SLA interval" - -#: ../../enterprise/godmode/services/services.service.php:350 -msgid "S.L.A. limit" -msgstr "SLA limit" - -#: ../../enterprise/godmode/services/services.service.php:352 -msgid "Please set limit between 0 to 100." -msgstr "Please set limit between 0 and 100." - -#: ../../enterprise/godmode/services/services.service.php:358 -msgid "Update service" -msgstr "Update service" - -#: ../../enterprise/godmode/services/services.service.php:365 -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 you will find a description of the alert templates, which will use " -"their default actions.\n" -"\t\tYou can modify the default behaviour by editing alerts in the agent who " -"stores data and alert definitions about the service and the SLA status." - -#: ../../enterprise/godmode/services/services.service.php:379 -msgid "Warning Service alert" -msgstr "Warning service alert" - -#: ../../enterprise/godmode/services/services.service.php:390 -msgid "Critical Service alert" -msgstr "Critical service alert" - -#: ../../enterprise/godmode/services/services.service.php:408 -msgid "SLA critical service alert" -msgstr "SLA critical service alert" - -#: ../../enterprise/godmode/services/services.service.php:422 -msgid "Update alerts" -msgstr "Update alerts" - -#: ../../enterprise/godmode/setup/edit_skin.php:42 -#: ../../enterprise/godmode/setup/setup_skins.php:36 -msgid "Skins configuration" -msgstr "Skin configuration" - -#: ../../enterprise/godmode/setup/edit_skin.php:45 -msgid "Successfully updated skin" -msgstr "Skin updated successfully" - -#: ../../enterprise/godmode/setup/edit_skin.php:48 -#: ../../enterprise/godmode/setup/edit_skin.php:60 -msgid "Error updating skin" -msgstr "Error updating skin" - -#: ../../enterprise/godmode/setup/edit_skin.php:171 -msgid "Error creating skin" -msgstr "Error creating skin" - -#: ../../enterprise/godmode/setup/edit_skin.php:176 -msgid "Successfully created skin" -msgstr "Skin created successfully" - -#: ../../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 can only 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 in the Metaconsole during " -"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:236 -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 -msgid "Mail configuration" -msgstr "Mail configuration" - -#: ../../enterprise/godmode/setup/setup.php:293 -#: ../../enterprise/meta/advanced/metasetup.password.php:85 -msgid " Caracters" -msgstr " Characters" - -#: ../../enterprise/godmode/setup/setup.php:306 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -msgid "Set 0 if never expire." -msgstr "Set it to '0' to prevent it from ever expiring" - -#: ../../enterprise/godmode/setup/setup.php:307 -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -msgid " Days" -msgstr " Days" - -#: ../../enterprise/godmode/setup/setup.php:316 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -msgid " Minutes" -msgstr " Minutes" - -#: ../../enterprise/godmode/setup/setup.php:320 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -msgid "Two attempts minimum" -msgstr "Two attempts minimum" - -#: ../../enterprise/godmode/setup/setup.php:321 -#: ../../enterprise/meta/advanced/metasetup.password.php:118 -msgid " Attempts" -msgstr " Attempts" - -#: ../../enterprise/godmode/setup/setup.php:361 -msgid "Enterprise password policy" -msgstr "Enterprise password policy" - -#: ../../enterprise/godmode/setup/setup.php:362 -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:309 -msgid "This record already exists in the database" -msgstr "This record already exists in the database" - -#: ../../enterprise/godmode/setup/setup_acl.php:356 -#: ../../enterprise/godmode/setup/setup_acl.php:388 -msgid "Add new ACL element to profile" -msgstr "Add new ACL element to profile" - -#: ../../enterprise/godmode/setup/setup_acl.php:361 -#: ../../enterprise/godmode/setup/setup_acl.php:433 -msgid "Section" -msgstr "Section" - -#: ../../enterprise/godmode/setup/setup_acl.php:366 -#: ../../enterprise/godmode/setup/setup_acl.php:522 -msgid "Mobile" -msgstr "Mobile" - -#: ../../enterprise/godmode/setup/setup_acl.php:370 -#: ../../enterprise/godmode/setup/setup_acl.php:434 -msgid "Section 2" -msgstr "Section 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:375 -#: ../../enterprise/godmode/setup/setup_acl.php:435 -msgid "Section 3" -msgstr "Section 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:387 -msgid "Hidden" -msgstr "Hidden" - -#: ../../enterprise/godmode/setup/setup_acl.php:393 -msgid "Page" -msgstr "Page" - -#: ../../enterprise/godmode/setup/setup_acl.php:412 -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 Integria" -msgstr "Remote Integria IMS" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "SAML" -msgstr "SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:78 -msgid "" -"by activating this option, the LDAP password will be stored in the database" -msgstr "" -"by activating this option, the LDAP password will be stored in the database" - -#: ../../enterprise/godmode/setup/setup_auth.php:87 -msgid "Local command" -msgstr "Local command" - -#: ../../enterprise/godmode/setup/setup_auth.php:90 -msgid "PHP function" -msgstr "PHP function" - -#: ../../enterprise/godmode/setup/setup_auth.php:102 -msgid "" -"Enable this option to assign profiles, groups and tags to users from " -"specific LDAP Attributes (updated at the next login)" -msgstr "" -"Enable this option to assign profiles, groups and tags to users from " -"specific LDAP Attributes (updated during the next login)" - -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -msgid "LDAP Attributes" -msgstr "LDAP attributes" - -#: ../../enterprise/godmode/setup/setup_auth.php:185 -#: ../../enterprise/godmode/setup/setup_auth.php:780 -msgid "Select profile" -msgstr "Select profile" - -#: ../../enterprise/godmode/setup/setup_auth.php:195 -#: ../../enterprise/godmode/setup/setup_auth.php:789 -msgid "Add new permissions" -msgstr "Add new permissions" - -#: ../../enterprise/godmode/setup/setup_auth.php:235 -#: ../../enterprise/godmode/setup/setup_auth.php:699 -#: ../../enterprise/meta/include/functions_meta.php:774 -#: ../../enterprise/meta/include/functions_meta.php:784 -msgid "Auto enable node access" -msgstr "Auto enable node access" - -#: ../../enterprise/godmode/setup/setup_auth.php:236 -#: ../../enterprise/godmode/setup/setup_auth.php:700 -msgid "New users will be able to log in to the nodes." -msgstr "New users will be able to log in to the nodes" - -#: ../../enterprise/godmode/setup/setup_auth.php:342 -#: ../../enterprise/godmode/setup/setup_auth.php:443 -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:656 -msgid "SimpleSAML path" -msgstr "SimpleSAML path" - -#: ../../enterprise/godmode/setup/setup_auth.php:656 -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:665 -msgid "" -"Enable this option to assign profiles, groups and tags to users from " -"specific AD groups (updated at the next login)" -msgstr "" -"Enable this option to assign profiles, groups and tags to users from " -"specific AD groups (updated at the next login)" - -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -msgid "AD Groups" -msgstr "AD Groups" - -#: ../../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, it 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 transferred 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 are transferred to history database" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "ElasticSearch IP" -msgstr "ElasticSearch IP" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:45 -msgid "IP of ElasticSearch server" -msgstr "IP of ElasticSearch server" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:47 -msgid "ElasticSearch Port" -msgstr "ElasticSearch Port" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 -msgid "Port of ElasticSearch server" -msgstr "Port of ElasticSearch server" - -#: ../../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 FMS console in order " -"to use delegated authentication." - -#: ../../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 "Trap custom values added successfully" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:177 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:190 -msgid "Error adding trap custom values" -msgstr "Error 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 "This custom OID already exists." - -#: ../../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 "Trap custom values updated successfully" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:231 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:252 -msgid "Error updating trap custom values" -msgstr "Error updating trap custom values" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:268 -msgid "Successfully deleted trap custom values" -msgstr "Trap custom values deleted successfully" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:272 -msgid "Error deleting trap custom values" -msgstr "Error deleting trap custom values" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 -#, php-format -msgid "Uploaded %s/%s traps" -msgstr "Uploaded %s/%s traps" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 -msgid "Fail uploaded file" -msgstr "Error uploading file" - -#: ../../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 "" -"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." - -#: ../../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:311 -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 API, authentication error" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:255 -msgid "Error accesing to API." -msgstr "Error accessing 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 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 -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 must " -"be configured on the Metaconsole." - -#: ../../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 does not 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 "The phase does not have a defined script." - -#: ../../enterprise/include/ajax/transactional.ajax.php:217 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:201 -msgid "Edit Data" -msgstr "Edit data" - -#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:34 -msgid "Global time: " -msgstr "Global time: " - -#: ../../enterprise/include/ajax/clustermap.php:254 -msgid "Common modules list" -msgstr "Common modules list" - -#: ../../enterprise/include/ajax/clustermap.php:465 -msgid "Balanced modules list" -msgstr "Balanced modules list" - -#: ../../enterprise/include/process_reset_pass.php:106 -#: ../../enterprise/meta/include/process_reset_pass.php:83 -msgid "Repeat password" -msgstr "Repeat password" - -#: ../../enterprise/include/process_reset_pass.php:109 -#: ../../enterprise/meta/include/process_reset_pass.php:86 -msgid "Change password" -msgstr "Change password" - -#: ../../enterprise/include/process_reset_pass.php:112 -#: ../../enterprise/meta/include/process_reset_pass.php:89 -#: ../../enterprise/meta/index.php:500 ../../index.php:620 -msgid "Passwords must be the same" -msgstr "Passwords must be the same" - -#: ../../enterprise/include/process_reset_pass.php:120 -#: ../../enterprise/include/reset_pass.php:110 -#: ../../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 "Back to login" - -#: ../../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 "Restoration the Pandora FMS 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 "" -"This is a complex operation that requires human intervention 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 the 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 execute 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 "Error 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 "Collection file is larger than the limit (" - -#: ../../enterprise/include/functions_dashboard.php:408 -#, php-format -msgid "Copy of %s" -msgstr "Copy of %s" - -#: ../../enterprise/include/functions_dashboard.php:822 -msgid "Change every" -msgstr "Change every" - -#: ../../enterprise/include/functions_dashboard.php:838 -#: ../../enterprise/operation/agentes/transactional_map.php:307 -msgid "Stop" -msgstr "Stop" - -#: ../../enterprise/include/functions_dashboard.php:845 -msgid "Pause" -msgstr "Pause" - -#: ../../enterprise/include/functions_enterprise.php:298 -msgid "Tree view by tags" -msgstr "Tree view by tags" - -#: ../../enterprise/include/functions_enterprise.php:321 -msgid "" -"If the interval of days until events data purge is shorter than the events " -"data history storage interval, data will be lost. It is recommended that the " -"storage frequency is higher than the purge frequency." -msgstr "" -"If the interval of days until event data purge is shorter than the event " -"data history storage interval, data will be lost. It is recommended to set " -"storage frequency higher than purge frequency." - -#: ../../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 is recommended to set purged days 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_visual_map.php:182 -#: ../../enterprise/include/functions_visual_map.php:235 -msgid "Crit:" -msgstr "Critical:" - -#: ../../enterprise/include/functions_visual_map.php:184 -#: ../../enterprise/include/functions_visual_map.php:237 -msgid "Warn:" -msgstr "Warning:" - -#: ../../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 -#: ../../enterprise/meta/include/functions_autoprovision.php:653 -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 could not 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/include/functions_events.php:164 -#: ../../enterprise/include/functions_reporting_csv.php:1561 -msgid "Hours" -msgstr "Hours" - -#: ../../enterprise/include/functions_events.php:177 -#: ../../enterprise/include/functions_events.php:194 -msgid "More than 5 tags" -msgstr "More than 5 tags" - -#: ../../enterprise/include/functions_groups.php:47 -msgid "Metaconsole" -msgstr "Metaconsole" - -#: ../../enterprise/include/functions_inventory.php:54 -#: ../../enterprise/include/functions_inventory.php:639 -msgid "No changes found" -msgstr "No changes found" - -#: ../../enterprise/include/functions_inventory.php:64 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:352 -msgid "Agent alias" -msgstr "Agent alias" - -#: ../../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:369 -msgid "Lines" -msgstr "Lines" - -#: ../../enterprise/include/functions_login.php:21 -msgid "You must change password:" -msgstr "You must change the password:" - -#: ../../enterprise/include/functions_login.php:37 -msgid "Password must be different from the 3 previous changes." -msgstr "Password must be different from the 3 previous changes." - -#: ../../enterprise/include/functions_login.php:47 -msgid "Old pass: " -msgstr "Old password: " - -#: ../../enterprise/include/functions_login.php:50 -msgid "New pass: " -msgstr "New password: " - -#: ../../enterprise/include/functions_login.php:54 -msgid "Confirm: " -msgstr "Confirm: " - -#: ../../enterprise/include/functions_login.php:60 -msgid "Change" -msgstr "Change" - -#: ../../enterprise/include/functions_login.php:91 -msgid "Login blocked" -msgstr "Login blocked" - -#: ../../enterprise/include/functions_login.php:99 -msgid "User has been blocked. Try again in " -msgstr "User has been blocked. Please try again in " - -#: ../../enterprise/include/functions_login.php:99 -msgid " minutes" -msgstr " minutes" - -#: ../../enterprise/include/functions_login.php:128 -msgid "Login successfully" -msgstr "Successfully logged in" - -#: ../../enterprise/include/functions_login.php:135 -msgid "Successfully" -msgstr "Successfully" - -#: ../../enterprise/include/functions_login.php:136 -msgid "User pass successfully updated" -msgstr "User password successfully updated" - -#: ../../enterprise/include/functions_login.php:237 -msgid "Password must be different from the " -msgstr "Password must be different from the " - -#: ../../enterprise/include/functions_login.php:237 -msgid " previous changes." -msgstr " previous changes." - -#: ../../enterprise/include/functions_login.php:251 -msgid "Password must be different" -msgstr "Password must be different" - -#: ../../enterprise/include/functions_login.php:261 -msgid "Password too short" -msgstr "Password too short" - -#: ../../enterprise/include/functions_login.php:272 -msgid "Password must contain numbers" -msgstr "Password has to contain numbers" - -#: ../../enterprise/include/functions_login.php:284 -msgid "Password must contain symbols" -msgstr "Password has to contain symbols" - -#: ../../enterprise/include/functions_login.php:304 -msgid "Invalid old password" -msgstr "Invalid old password" - -#: ../../enterprise/include/functions_login.php:339 -msgid "Password confirm does not match" -msgstr "Passwords do not match" - -#: ../../enterprise/include/functions_login.php:347 -msgid "Password empty" -msgstr "Password empty" - -#: ../../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:2271 -msgid "Contents" -msgstr "Contents" - -#: ../../enterprise/include/functions_netflow_pdf.php:160 -#: ../../enterprise/operation/log/log_viewer.php:231 -msgid "Start date" -msgstr "Start date" - -#: ../../enterprise/include/functions_policies.php:3214 -msgid "Policy linkation" -msgstr "Policy linking" - -#: ../../enterprise/include/functions_policies.php:3219 -msgid "Module linked" -msgstr "Module linked" - -#: ../../enterprise/include/functions_policies.php:3221 -#: ../../enterprise/include/functions_policies.php:3231 -msgid "Unlink from policy" -msgstr "Unlink from policy" - -#: ../../enterprise/include/functions_policies.php:3224 -msgid "Module unlinked" -msgstr "Module unlinked" - -#: ../../enterprise/include/functions_policies.php:3226 -#: ../../enterprise/include/functions_policies.php:3236 -msgid "Relink to policy" -msgstr "Relink to policy" - -#: ../../enterprise/include/functions_policies.php:3229 -msgid "Module pending to link" -msgstr "Module pending to be linked" - -#: ../../enterprise/include/functions_policies.php:3234 -msgid "Module pending to unlink" -msgstr "Module pending to be unlinked" - -#: ../../enterprise/include/functions_policies.php:3960 -msgid "Create a new policy map" -msgstr "Create a new policy map" - -#: ../../enterprise/include/functions_policies.php:4279 -#, 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:42 -msgid "Advance options" -msgstr "Advanced options" - -#: ../../enterprise/include/functions_reporting.php:60 -msgid "Templates list" -msgstr "List of templates" - -#: ../../enterprise/include/functions_reporting.php:66 -#: ../../enterprise/meta/general/main_header.php:165 -msgid "Templates wizard" -msgstr "Templates Wizard" - -#: ../../enterprise/include/functions_reporting.php:86 -msgid "Templates Wizard" -msgstr "Templates Wizard" - -#: ../../enterprise/include/functions_reporting.php:1019 -msgid "Availability item created from wizard." -msgstr "Availability item created from wizard" - -#: ../../enterprise/include/functions_reporting.php:1686 -#: ../../enterprise/include/functions_reporting.php:2494 -#: ../../enterprise/include/functions_reporting.php:3271 -#: ../../enterprise/include/functions_reporting_pdf.php:1734 -msgid "Planned Downtimes" -msgstr "Planned downtimes" - -#: ../../enterprise/include/functions_reporting.php:1692 -#: ../../enterprise/include/functions_reporting.php:2500 -#: ../../enterprise/include/functions_reporting.php:3277 -#: ../../enterprise/include/functions_reporting_pdf.php:1740 -msgid "Ignore Time" -msgstr "Ignore time" - -#: ../../enterprise/include/functions_reporting.php:1712 -#: ../../enterprise/include/functions_reporting_pdf.php:1755 -msgid "SLA Compliance per days" -msgstr "SLA Compliance per days" - -#: ../../enterprise/include/functions_reporting.php:1779 -#: ../../enterprise/include/functions_reporting_pdf.php:1834 -msgid "Summary of SLA Failures" -msgstr "Summary of SLA Failures" - -#: ../../enterprise/include/functions_reporting.php:1781 -#: ../../enterprise/include/functions_reporting_csv.php:1197 -#: ../../enterprise/include/functions_reporting_pdf.php:1838 -msgid "Day" -msgstr "Day" - -#: ../../enterprise/include/functions_reporting.php:2537 -msgid "T. Total" -msgstr "T. Total" - -#: ../../enterprise/include/functions_reporting.php:2538 -#: ../../enterprise/include/functions_reporting.php:3301 -msgid "T. OK" -msgstr "T. OK" - -#: ../../enterprise/include/functions_reporting.php:2539 -#: ../../enterprise/include/functions_reporting.php:3302 -msgid "T. Error" -msgstr "T. Error" - -#: ../../enterprise/include/functions_reporting.php:2540 -#: ../../enterprise/include/functions_reporting.php:3303 -msgid "T. Unknown" -msgstr "T. Unknown" - -#: ../../enterprise/include/functions_reporting.php:2541 -#: ../../enterprise/include/functions_reporting.php:3304 -msgid "T. Not_init" -msgstr "T. Not_init" - -#: ../../enterprise/include/functions_reporting.php:2542 -#: ../../enterprise/include/functions_reporting.php:3305 -msgid "T. Downtime" -msgstr "T. Downtime" - -#: ../../enterprise/include/functions_reporting.php:2543 -#: ../../enterprise/include/functions_reporting.php:3306 -msgid "SLA %" -msgstr "SLA %" - -#: ../../enterprise/include/functions_reporting.php:3930 -msgid "Module Histogram Graph" -msgstr "Module histogram graph" - -#: ../../enterprise/include/functions_reporting.php:4456 -msgid "There are no SLAs defined." -msgstr "There are no SLAs defined" - -#: ../../enterprise/include/functions_reporting.php:4570 -#: ../../enterprise/include/functions_reporting.php:5189 -#: ../../enterprise/include/functions_services.php:1305 -#: ../../enterprise/include/functions_services.php:1307 -#: ../../enterprise/include/functions_services.php:1328 -#: ../../enterprise/include/functions_services.php:1329 -#: ../../enterprise/include/functions_services.php:1331 -#: ../../enterprise/include/functions_services.php:1365 -#: ../../enterprise/include/functions_services.php:1367 -msgid "Nonexistent" -msgstr "Nonexistent" - -#: ../../enterprise/include/functions_reporting.php:5726 -#: ../../enterprise/include/functions_reporting.php:6258 -#, php-format -msgid "Graph agents(%s) - %s" -msgstr "Graph agents(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:6179 -#, php-format -msgid "Graph agent(%s) - %s" -msgstr "Graph agent(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:6598 -msgid "There is not data for the selected conditions" -msgstr "There is no data for the selected conditions" - -#: ../../enterprise/include/functions_reporting.php:6749 -#: ../../enterprise/include/functions_reporting.php:6799 -msgid "Template editor" -msgstr "Template editor" - -#: ../../enterprise/include/functions_reporting.php:6813 -msgid "Get PDF file" -msgstr "Get PDF file" - -#: ../../enterprise/include/functions_reporting_csv.php:376 -msgid "Serialized data " -msgstr "Serialized data " - -#: ../../enterprise/include/functions_reporting_csv.php:468 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -msgid "Report type" -msgstr "Report type" - -#: ../../enterprise/include/functions_reporting_csv.php:470 -msgid "Uknown agents" -msgstr "Unknown agents" - -#: ../../enterprise/include/functions_reporting_csv.php:479 -msgid "Last 8 hours events" -msgstr "Events from the last 8 hours" - -#: ../../enterprise/include/functions_reporting_csv.php:715 -msgid "Illegal query or any other error" -msgstr "Illegal query or any other error" - -#: ../../enterprise/include/functions_reporting_csv.php:953 -msgid "% OK" -msgstr "% OK" - -#: ../../enterprise/include/functions_reporting_csv.php:953 -msgid "% Wrong" -msgstr "% Wrong" - -#: ../../enterprise/include/functions_reporting_csv.php:978 -msgid "Simple Graph" -msgstr "Simple Graph" - -#: ../../enterprise/include/functions_reporting_csv.php:1041 -#: ../../enterprise/include/functions_reporting_csv.php:1088 -#: ../../enterprise/include/functions_reporting_csv.php:1160 -#: ../../enterprise/include/functions_reporting_csv.php:1276 -#: ../../enterprise/include/functions_reporting_csv.php:1488 -msgid "SLA Max" -msgstr "SLA Max" - -#: ../../enterprise/include/functions_reporting_csv.php:1042 -#: ../../enterprise/include/functions_reporting_csv.php:1089 -#: ../../enterprise/include/functions_reporting_csv.php:1161 -#: ../../enterprise/include/functions_reporting_csv.php:1277 -#: ../../enterprise/include/functions_reporting_csv.php:1489 -msgid "SLA Min" -msgstr "SLA Min" - -#: ../../enterprise/include/functions_reporting_csv.php:1044 -#: ../../enterprise/include/functions_reporting_csv.php:1091 -msgid "Time Total " -msgstr "Time Total " - -#: ../../enterprise/include/functions_reporting_csv.php:1045 -#: ../../enterprise/include/functions_reporting_csv.php:1092 -msgid "Time OK " -msgstr "Time OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1046 -#: ../../enterprise/include/functions_reporting_csv.php:1093 -msgid "Time Error " -msgstr "Time Error " - -#: ../../enterprise/include/functions_reporting_csv.php:1047 -#: ../../enterprise/include/functions_reporting_csv.php:1094 -msgid "Time Unknown " -msgstr "Time Unknown " - -#: ../../enterprise/include/functions_reporting_csv.php:1048 -#: ../../enterprise/include/functions_reporting_csv.php:1095 -msgid "Time Not Init " -msgstr "Time Not Init " - -#: ../../enterprise/include/functions_reporting_csv.php:1049 -#: ../../enterprise/include/functions_reporting_csv.php:1096 -msgid "Time Downtime " -msgstr "Time Downtime " - -#: ../../enterprise/include/functions_reporting_csv.php:1050 -#: ../../enterprise/include/functions_reporting_csv.php:1097 -msgid "Checks Total " -msgstr "Checks Total " - -#: ../../enterprise/include/functions_reporting_csv.php:1051 -#: ../../enterprise/include/functions_reporting_csv.php:1098 -msgid "Checks OK " -msgstr "Checks OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1052 -#: ../../enterprise/include/functions_reporting_csv.php:1099 -msgid "Checks Error " -msgstr "Checks Error " - -#: ../../enterprise/include/functions_reporting_csv.php:1053 -#: ../../enterprise/include/functions_reporting_csv.php:1100 -msgid "Checks Unknown " -msgstr "Checks Unknown " - -#: ../../enterprise/include/functions_reporting_csv.php:1054 -#: ../../enterprise/include/functions_reporting_csv.php:1101 -msgid "Checks Not Init " -msgstr "Checks Not Init " - -#: ../../enterprise/include/functions_reporting_csv.php:1055 -#: ../../enterprise/include/functions_reporting_csv.php:1102 -msgid "SLA " -msgstr "SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1056 -#: ../../enterprise/include/functions_reporting_csv.php:1103 -msgid "Status " -msgstr "Status " - -#: ../../enterprise/include/functions_reporting_csv.php:1148 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1408 -#: ../../enterprise/include/functions_reporting_csv.php:1473 -msgid "Subtitle" -msgstr "Subtitle" - -#: ../../enterprise/include/functions_reporting_csv.php:1163 -#: ../../enterprise/include/functions_reporting_csv.php:1292 -#: ../../enterprise/include/functions_reporting_csv.php:1504 -msgid "Time Total Month" -msgstr "Time Total Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1164 -#: ../../enterprise/include/functions_reporting_csv.php:1293 -#: ../../enterprise/include/functions_reporting_csv.php:1505 -msgid "Time OK Month" -msgstr "Time OK Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1165 -#: ../../enterprise/include/functions_reporting_csv.php:1294 -#: ../../enterprise/include/functions_reporting_csv.php:1506 -msgid "Time Error Month" -msgstr "Time Error Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1166 -#: ../../enterprise/include/functions_reporting_csv.php:1295 -#: ../../enterprise/include/functions_reporting_csv.php:1507 -msgid "Time Unknown Month" -msgstr "Time Unknown Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1296 -#: ../../enterprise/include/functions_reporting_csv.php:1508 -msgid "Time Downtime Month" -msgstr "Time Downtime Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1168 -#: ../../enterprise/include/functions_reporting_csv.php:1297 -#: ../../enterprise/include/functions_reporting_csv.php:1509 -msgid "Time Not Init Month" -msgstr "Time Not Init Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1169 -#: ../../enterprise/include/functions_reporting_csv.php:1298 -#: ../../enterprise/include/functions_reporting_csv.php:1510 -msgid "Checks Total Month" -msgstr "Checks Total Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1170 -#: ../../enterprise/include/functions_reporting_csv.php:1299 -#: ../../enterprise/include/functions_reporting_csv.php:1511 -msgid "Checks OK Month" -msgstr "Checks OK Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1171 -#: ../../enterprise/include/functions_reporting_csv.php:1300 -#: ../../enterprise/include/functions_reporting_csv.php:1512 -msgid "Checks Error Month" -msgstr "Checks Error Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1172 -#: ../../enterprise/include/functions_reporting_csv.php:1301 -#: ../../enterprise/include/functions_reporting_csv.php:1513 -msgid "Checks Unknown Month" -msgstr "Checks Unknown Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1173 -#: ../../enterprise/include/functions_reporting_csv.php:1302 -#: ../../enterprise/include/functions_reporting_csv.php:1514 -msgid "Checks Not Init Month" -msgstr "Checks Not Init Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1174 -#: ../../enterprise/include/functions_reporting_csv.php:1303 -#: ../../enterprise/include/functions_reporting_csv.php:1515 -msgid "SLA Month" -msgstr "SLA Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1175 -#: ../../enterprise/include/functions_reporting_csv.php:1304 -#: ../../enterprise/include/functions_reporting_csv.php:1516 -msgid "Status Month" -msgstr "Status Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1198 -#: ../../enterprise/include/functions_reporting_csv.php:1350 -msgid "Time Total Day" -msgstr "Time Total Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1199 -#: ../../enterprise/include/functions_reporting_csv.php:1351 -msgid "Time OK Day" -msgstr "Time OK Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1200 -#: ../../enterprise/include/functions_reporting_csv.php:1352 -msgid "Time Error Day" -msgstr "Time Error Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1201 -#: ../../enterprise/include/functions_reporting_csv.php:1353 -msgid "Time Unknown Day" -msgstr "Time Unknown Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1202 -#: ../../enterprise/include/functions_reporting_csv.php:1354 -msgid "Time Not Init Day" -msgstr "Time Not Init Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1203 -#: ../../enterprise/include/functions_reporting_csv.php:1355 -msgid "Time Downtime Day" -msgstr "Time Downtime Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1204 -#: ../../enterprise/include/functions_reporting_csv.php:1356 -msgid "Time Out Day" -msgstr "Time Out Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1205 -#: ../../enterprise/include/functions_reporting_csv.php:1357 -msgid "Checks Total Day" -msgstr "Checks Total Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1206 -#: ../../enterprise/include/functions_reporting_csv.php:1358 -msgid "Checks OK Day" -msgstr "Checks OK Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1207 -#: ../../enterprise/include/functions_reporting_csv.php:1359 -msgid "Checks Error Day" -msgstr "Checks Error Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../enterprise/include/functions_reporting_csv.php:1360 -msgid "Checks Unknown Day" -msgstr "Checks Unknown Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1209 -#: ../../enterprise/include/functions_reporting_csv.php:1361 -msgid "Checks Not Init Day" -msgstr "Checks Not Init Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1210 -#: ../../enterprise/include/functions_reporting_csv.php:1362 -msgid "SLA Day" -msgstr "SLA Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1211 -#: ../../enterprise/include/functions_reporting_csv.php:1363 -msgid "SLA Fixed Day" -msgstr "SLA Fixed Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1212 -#: ../../enterprise/include/functions_reporting_csv.php:1364 -msgid "Date From Day" -msgstr "Date From Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1213 -#: ../../enterprise/include/functions_reporting_csv.php:1365 -msgid "Date To Day" -msgstr "Date To Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1214 -#: ../../enterprise/include/functions_reporting_csv.php:1366 -msgid "Status Day" -msgstr "Status Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1272 -#: ../../enterprise/include/functions_reporting_csv.php:1484 -msgid "Month Number" -msgstr "Month Number" - -#: ../../enterprise/include/functions_reporting_csv.php:1273 -#: ../../enterprise/include/functions_reporting_csv.php:1485 -msgid "Year" -msgstr "Year" - -#: ../../enterprise/include/functions_reporting_csv.php:1323 -msgid "Time Total week" -msgstr "Time Total week" - -#: ../../enterprise/include/functions_reporting_csv.php:1324 -msgid "Time OK week" -msgstr "Time OK week" - -#: ../../enterprise/include/functions_reporting_csv.php:1325 -msgid "Time Error week" -msgstr "Time Error week" - -#: ../../enterprise/include/functions_reporting_csv.php:1326 -msgid "Time Unknown week" -msgstr "Time Unknown week" - -#: ../../enterprise/include/functions_reporting_csv.php:1327 -msgid "Time Downtime week" -msgstr "Time Downtime week" - -#: ../../enterprise/include/functions_reporting_csv.php:1328 -msgid "Time Not Init week" -msgstr "Time Not Init week" - -#: ../../enterprise/include/functions_reporting_csv.php:1329 -msgid "Checks Total week" -msgstr "Checks Total week" - -#: ../../enterprise/include/functions_reporting_csv.php:1330 -msgid "Checks OK week" -msgstr "Checks OK week" - -#: ../../enterprise/include/functions_reporting_csv.php:1331 -msgid "Checks Error week" -msgstr "Checks Error week" - -#: ../../enterprise/include/functions_reporting_csv.php:1332 -msgid "Checks Unknown week" -msgstr "Checks Unknown week" - -#: ../../enterprise/include/functions_reporting_csv.php:1333 -msgid "Status week" -msgstr "Status week" - -#: ../../enterprise/include/functions_reporting_csv.php:1349 -msgid "Day Week" -msgstr "Day Week" - -#: ../../enterprise/include/functions_reporting_csv.php:1418 -msgid "SLA max" -msgstr "SLA max" - -#: ../../enterprise/include/functions_reporting_csv.php:1419 -msgid "SLA min" -msgstr "SLA min" - -#: ../../enterprise/include/functions_reporting_csv.php:1420 -msgid "SLA limit" -msgstr "SLA limit" - -#: ../../enterprise/include/functions_reporting_csv.php:1423 -msgid "Time Error" -msgstr "Time Error" - -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "Checks Error" -msgstr "Checks Error" - -#: ../../enterprise/include/functions_reporting_csv.php:1431 -msgid "Checks Not Init" -msgstr "Checks Not Init" - -#: ../../enterprise/include/functions_reporting_csv.php:1433 -msgid "SLA Fixed" -msgstr "SLA Fixed" - -#: ../../enterprise/include/functions_reporting_csv.php:1535 -msgid "Time Total day" -msgstr "Time Total day" - -#: ../../enterprise/include/functions_reporting_csv.php:1536 -msgid "Time OK day" -msgstr "Time OK day" - -#: ../../enterprise/include/functions_reporting_csv.php:1537 -msgid "Time Error day" -msgstr "Time Error day" - -#: ../../enterprise/include/functions_reporting_csv.php:1538 -msgid "Time Unknown day" -msgstr "Time Unknown day" - -#: ../../enterprise/include/functions_reporting_csv.php:1539 -msgid "Time Downtime day" -msgstr "Time Downtime day" - -#: ../../enterprise/include/functions_reporting_csv.php:1540 -msgid "Time Not Init day" -msgstr "Time Not Init day" - -#: ../../enterprise/include/functions_reporting_csv.php:1541 -msgid "Checks Total day" -msgstr "Checks Total day" - -#: ../../enterprise/include/functions_reporting_csv.php:1542 -msgid "Checks OK day" -msgstr "Checks OK day" - -#: ../../enterprise/include/functions_reporting_csv.php:1543 -msgid "Checks Error day" -msgstr "Checks Error day" - -#: ../../enterprise/include/functions_reporting_csv.php:1544 -msgid "Checks Unknown day" -msgstr "Checks Unknown day" - -#: ../../enterprise/include/functions_reporting_csv.php:1545 -msgid "Status day" -msgstr "Status day" - -#: ../../enterprise/include/functions_reporting_csv.php:1562 -msgid "Time Total hours" -msgstr "Time Total hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1563 -msgid "Time OK hours" -msgstr "Time OK hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1564 -msgid "Time Error hours" -msgstr "Time Error hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1565 -msgid "Time Unknown hours" -msgstr "Time Unknown hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1566 -msgid "Time Not Init hours" -msgstr "Time Not Init hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1567 -msgid "Time Downtime hours" -msgstr "Time Downtime hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1568 -msgid "Time Out hours" -msgstr "Time Out hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1569 -msgid "Checks Total hours" -msgstr "Checks Total hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1570 -msgid "Checks OK hours" -msgstr "Checks OK hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1571 -msgid "Checks Error hours" -msgstr "Checks Error hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1572 -msgid "Checks Unknown hours" -msgstr "Checks Unknown hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1573 -msgid "Checks Not Init hours" -msgstr "Checks Not Init hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1574 -msgid "SLA hours" -msgstr "SLA hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1575 -msgid "SLA Fixed hours" -msgstr "SLA Fixed hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1576 -msgid "Date From hours" -msgstr "Date From hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1577 -msgid "Date To hours" -msgstr "Date To hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1578 -msgid "Status hours" -msgstr "Status hours" - -#: ../../enterprise/include/functions_reporting_pdf.php:1579 -msgid "Legend Graph" -msgstr "Legend Graph" - -#: ../../enterprise/include/functions_reporting_pdf.php:1930 -msgid "Total Time" -msgstr "Total Time" - -#: ../../enterprise/include/functions_reporting_pdf.php:1934 -msgid "Time Not init" -msgstr "Time Not init" - -#: ../../enterprise/include/functions_reporting_pdf.php:1935 -msgid "Time Downtimes" -msgstr "Time Downtimes" - -#: ../../enterprise/include/functions_reporting_pdf.php:1950 -msgid "Total Checks" -msgstr "Total Checks" - -#: ../../enterprise/include/functions_reporting_pdf.php:2072 -msgid "Agent min" -msgstr "Min amount of agents" - -#: ../../enterprise/include/functions_reporting_pdf.php:2073 -msgid "Agent min Value" -msgstr "Agent min Value" - -#: ../../enterprise/include/functions_reporting_pdf.php:2397 -msgid "SO" -msgstr "SO" - -#: ../../enterprise/include/functions_reporting_pdf.php:2438 -msgid "There are no modules." -msgstr "There are no modules" - -#: ../../enterprise/include/functions_services.php:22 -msgid "There is no information about" -msgstr "There is no information about" - -#: ../../enterprise/include/functions_services.php:26 -msgid "Service does not exist." -msgstr "The service does not exist" - -#: ../../enterprise/include/functions_services.php:34 -msgid ", module that stores the service" -msgstr ", module that stores the service" - -#: ../../enterprise/include/functions_services.php:37 -msgid "module that stores the service" -msgstr "module that stores the service" - -#: ../../enterprise/include/functions_services.php:45 -msgid ", module that stores SLA service" -msgstr ", module that stores SLA service" - -#: ../../enterprise/include/functions_services.php:48 -msgid "module that stores SLA service" -msgstr "module that stores SLA service" - -#: ../../enterprise/include/functions_services.php:58 -msgid ", agent that stores the service" -msgstr ", agent that stores the service" - -#: ../../enterprise/include/functions_services.php:61 -msgid "agent that stores the service" -msgstr "agent that stores the service" - -#: ../../enterprise/include/functions_services.php:70 -msgid ", agent that stores SLA service" -msgstr ", agent that stores SLA service" - -#: ../../enterprise/include/functions_services.php:73 -msgid "agent that stores SLA service" -msgstr "agent that stores SLA service" - -#: ../../enterprise/include/functions_services.php:86 -msgid ", alert critical SLA service" -msgstr ", alert critical SLA service" - -#: ../../enterprise/include/functions_services.php:89 -msgid "alert critical SLA service" -msgstr "alert critical SLA service" - -#: ../../enterprise/include/functions_services.php:103 -msgid ", alert warning service" -msgstr "service in warning" - -#: ../../enterprise/include/functions_services.php:106 -msgid "alert warning service" -msgstr "service in warning" - -#: ../../enterprise/include/functions_services.php:120 -msgid ", alert critical service" -msgstr ", alert critical service" - -#: ../../enterprise/include/functions_services.php:123 -msgid "alert critical service" -msgstr "alert critical service" - -#: ../../enterprise/include/functions_services.php:137 -msgid ", alert unknown service" -msgstr ", alert unknown service" - -#: ../../enterprise/include/functions_services.php:140 -msgid "alert unknown service" -msgstr "alert unknown service" - -#: ../../enterprise/include/functions_services.php:379 -#, php-format -msgid "Module automatic create for the service %s" -msgstr "Automatic module creation for the service %s" - -#: ../../enterprise/include/functions_services.php:1350 -msgid "Critical (Alert)" -msgstr "Critical (Alert)" - -#: ../../enterprise/include/functions_services.php:1480 -msgid "There are no service elements defined" -msgstr "There are no service elements defined" - -#: ../../enterprise/include/functions_services.php:1506 -msgid "Weight Critical" -msgstr "Weight Critical" - -#: ../../enterprise/include/functions_services.php:1507 -msgid "Weight Warning" -msgstr "Warning weight" - -#: ../../enterprise/include/functions_services.php:1508 -msgid "Weight Unknown" -msgstr "Weight Unknown" - -#: ../../enterprise/include/functions_services.php:1509 -msgid "Weight Ok" -msgstr "Weight OK" - -#: ../../enterprise/include/functions_services.php:1535 -#: ../../enterprise/include/functions_services.php:1550 -#: ../../enterprise/include/functions_services.php:1585 -msgid "Nonexistent. This element should be deleted" -msgstr "Nonexistent. This element should be deleted." - -#: ../../enterprise/include/functions_services.php:1750 -msgid "Delete service element" -msgstr "Delete service element" - -#: ../../enterprise/include/functions_services.php:1792 -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 "Auto provisioning into Metaconsole" - -#: ../../enterprise/include/functions_setup.php:90 -msgid "URL Metaconsole Api" -msgstr "URL Metaconsole API" - -#: ../../enterprise/include/functions_setup.php:95 -msgid "Api pass" -msgstr "API password" - -#: ../../enterprise/include/functions_setup.php:99 -msgid "Meta user" -msgstr "Meta user" - -#: ../../enterprise/include/functions_setup.php:103 -msgid "Meta pass" -msgstr "Meta password" - -#: ../../enterprise/include/functions_setup.php:107 -msgid "Metaconsole APi Online" -msgstr "Metaconsole API Online" - -#: ../../enterprise/include/functions_setup.php:109 -#: ../../enterprise/include/functions_setup.php:139 -msgid "Please click in the dot to re-check" -msgstr "Please click on the dot to re-check" - -#: ../../enterprise/include/functions_setup.php:115 -msgid "Pandora user" -msgstr "Pandora FMS user" - -#: ../../enterprise/include/functions_setup.php:116 -msgid "Normally the admin user" -msgstr "Normally the admin user" - -#: ../../enterprise/include/functions_setup.php:120 -msgid "Pandora pass" -msgstr "Pandora FMS password" - -#: ../../enterprise/include/functions_setup.php:124 -msgid "Public url console" -msgstr "Public URL console" - -#: ../../enterprise/include/functions_setup.php:125 -msgid "Without the index.php such as http://domain/pandora_url" -msgstr "Without the index.php such as http://domain/pandora_url" - -#: ../../enterprise/include/functions_setup.php:131 -msgid "Register your node in metaconsole" -msgstr "Register your node in Metaconsole" - -#: ../../enterprise/include/functions_setup.php:133 -msgid "Register the node" -msgstr "Register the node" - -#: ../../enterprise/include/functions_setup.php:138 -msgid "Status your node in metaconsole" -msgstr "Status of your node in the Metaconsole" - -#: ../../enterprise/include/functions_transactional.php:496 -msgid "Error in dependencies field" -msgstr "Error in dependencies field" - -#: ../../enterprise/include/functions_transactional.php:505 -msgid "Error in enables field" -msgstr "Error when enabling the field" - -#: ../../enterprise/include/functions_update_manager.php:147 -#: ../../enterprise/include/functions_update_manager.php:327 -#, 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:214 -msgid "Update to the next version" -msgstr "Update to the next version" - -#: ../../enterprise/include/functions_ux_console.php:422 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:404 -#: ../../enterprise/operation/agentes/transactional_map.php:260 -#: ../../enterprise/operation/agentes/ux_console_view.php:218 -#: ../../enterprise/operation/agentes/ux_console_view.php:338 -#: ../../enterprise/operation/agentes/wux_console_view.php:348 -msgid "Failed" -msgstr "Failed" - -#: ../../enterprise/include/reset_pass.php:100 -#: ../../enterprise/meta/include/reset_pass.php:76 -msgid "User to reset password" -msgstr "User password to be reset" - -#: ../../enterprise/include/reset_pass.php:103 -#: ../../enterprise/meta/include/reset_pass.php:79 -#: ../../enterprise/meta/index.php:581 ../../index.php:702 -msgid "Reset password" -msgstr "Reset password" - -#: ../../enterprise/include/reset_pass.php:164 -#: ../../enterprise/include/reset_pass.php:167 -#: ../../enterprise/meta/include/reset_pass.php:122 -#: ../../enterprise/meta/include/reset_pass.php:125 -msgid "Reset password failed" -msgstr "Error resetting password" - -#: ../../enterprise/load_enterprise.php:336 -#: ../../enterprise/load_enterprise.php:400 -msgid "Invalid licence." -msgstr "Invalid license" - -#: ../../enterprise/load_enterprise.php:337 -msgid "Please contact your system administrator." -msgstr "Please contact your system administrator" - -#: ../../enterprise/load_enterprise.php:401 -msgid "Please contact Artica at info@artica.es for a valid licence." -msgstr "Please contact Ártica ST at info@artica.es for a valid license." - -#: ../../enterprise/load_enterprise.php:403 -msgid "Or disable Pandora FMS enterprise" -msgstr "Or disable Pandora FMS Enterprise" - -#: ../../enterprise/load_enterprise.php:497 -#: ../../enterprise/load_enterprise.php:742 -msgid "Request new licence" -msgstr "Request new license" - -#: ../../enterprise/load_enterprise.php:580 -msgid "" -"Metaconsole unreached

" -"This node has a metaconsole license and cannot contact with the metaconsole." -msgstr "" -"Metaconsole unreached

" -"This node has a Metaconsole license and cannot contact with the Metaconsole." - -#: ../../enterprise/load_enterprise.php:584 -#, php-format -msgid "" -"Out of license limits

" -"This node has a Metaconsole license that allows %d agents, and you have %d " -"agents cached." -msgstr "" -"License expired

This " -"node has a Metaconsole license and it allows %d agents and you have %d " -"agents cached." - -#: ../../enterprise/load_enterprise.php:592 -#, php-format -msgid "" -"Out of license limits

" -"This node has a Metaconsole license that allows %d agents, and you have %d " -"agents configured." -msgstr "" -"License expired

This " -"license allows %d agents, and you have %d agents configured." - -#: ../../enterprise/load_enterprise.php:597 -#, php-format -msgid "" -"Out of license limits

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

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

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

You cannot get any updates until you have renewed the license." - -#: ../../enterprise/load_enterprise.php:615 -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 Ártica ST at " -"info@artica.es for a valid license:" - -#: ../../enterprise/load_enterprise.php:619 -msgid "Please contact Artica at info@artica.es to renew the license." -msgstr "Please contact Ártica ST at info@artica.es to renew the license." - -#: ../../enterprise/load_enterprise.php:739 -msgid "Renew" -msgstr "Renew" - -#: ../../enterprise/load_enterprise.php:825 -msgid "Activate license" -msgstr "Activate license" - -#: ../../enterprise/load_enterprise.php:826 -msgid "Your request key is:" -msgstr "Your request key is:" - -#: ../../enterprise/load_enterprise.php:828 -#, php-format -msgid "" -"You can activate it manually here or " -"automatically filling the form below:" -msgstr "" -"You can activate it manually here or " -"automatically by filling in the form below:" - -#: ../../enterprise/load_enterprise.php:833 -msgid "Auth Key:" -msgstr "Authentication key:" - -#: ../../enterprise/load_enterprise.php:840 -#: ../../enterprise/load_enterprise.php:856 -msgid "Online validation" -msgstr "Online validation" - -#: ../../enterprise/load_enterprise.php:849 -msgid "ERROR:" -msgstr "ERROR:" - -#: ../../enterprise/load_enterprise.php:849 -msgid "When connecting to Artica server." -msgstr "When connecting to Ártica ST server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:88 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:91 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:100 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:103 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:106 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 -msgid "Agent: " -msgstr "Agent: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:88 -msgid " already exists in target node" -msgstr " already exists in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:91 -msgid " group does not exist in target node" -msgstr " group does not exist in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 -msgid "" -" policies definitions does not match with defined ones in target node" -msgstr " policy definitions do not match with defined ones in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 -msgid " plugins does not exist in target node" -msgstr " plugins do not exist in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:100 -msgid " collections does not exist in target node" -msgstr " collections do not exist in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:103 -msgid " inventory does not exist in target node" -msgstr " inventory does not exist in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:106 -msgid " alerts template does not exist in target node" -msgstr " alert templates do not exist in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 -msgid " alerts action does not exist in target node" -msgstr " alert actions do not exist in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:112 -msgid "Exists agent conf for agent: " -msgstr "Agent configuration exists for agent: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:112 -msgid " please remove configuration file from target node." -msgstr " please remove configuration file from target node." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:115 -msgid "There are differences between MR versions" -msgstr "There are differences between MR versions" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:118 -msgid "Target server ip address is set" -msgstr "Target server IP address is set" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:204 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:207 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:211 -msgid "The agent: " -msgstr "The agent: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:204 -msgid " has been successfully added to the migration queue " -msgstr " has been successfully added to the migration queue " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:207 -msgid " has not been added due to problems in the insertion" -msgstr " has not been added due to problems in the insertion" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:211 -msgid " has already been added to the migration queue" -msgstr " has already been added to the migration queue" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:230 -msgid "Problems delete queue" -msgstr "Problems deleting queue" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:246 -msgid "Move Agents" -msgstr "Move agents" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:262 -msgid "Source Server" -msgstr "Source server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:264 -msgid "Destination Server" -msgstr "Destination server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:280 -msgid "Agents to move" -msgstr "Agents to be moved" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 -msgid "Add agents to destination server" -msgstr "Add agents to destination server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:300 -msgid "Remove agents to doesn't move to destination server" -msgstr "Removing agents does not move them to the destination server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:311 -msgid "Active DB only" -msgstr "Active DB only" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:318 -msgid "Agents do not exist in target server." -msgstr "Agents do not exist in target server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:319 -msgid "Check group is synchronized with target server." -msgstr "Check group is synchronized with target server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:320 -msgid "All policies needed are synchronized with target server." -msgstr "All policies needed are synchronized with target server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:321 -msgid "All remote plugins needed are synchronized with target server." -msgstr "All remote plugins needed are synchronized with target server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:322 -msgid "All collections needed are syncronized with target server." -msgstr "All collections needed are synchronized with target server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:323 -msgid "" -"All remote inventory definitions needed are syncronized with target server." -msgstr "" -"All remote inventory definitions needed are synchronized with target server." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:324 -msgid "" -"All alert templates definitions needed are syncronized with target server." -msgstr "" -"All alert template definitions needed are synchronized with target server." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:325 -msgid "All alert actions needed are syncronized with target server." -msgstr "All alert actions needed are synchronized with target server." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:326 -msgid "Agents conf does not exists in target server." -msgstr "Agents configuration does not exists in target server." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:327 -msgid "Both Pandora servers must be in the same version" -msgstr "Both Pandora FMS servers must be in the same version" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 -msgid "Check target server ip address is set" -msgstr "Check target server IP address is configured" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:338 -msgid "Move" -msgstr "Move" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:353 -msgid "Source node" -msgstr "Source node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:354 -msgid "Target node" -msgstr "Target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:358 -msgid "Active db only" -msgstr "Active DB only" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:388 -msgid "Creating modules in target node" -msgstr "Creating modules in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:391 -msgid "Disabling agent in source node and enabling in target one" -msgstr "Disabling agent in source node and enabling in target one" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 -msgid "Transferring data" -msgstr "Transferring data" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:398 -msgid "Creating agent in target node" -msgstr "Creating agent in target node" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:408 -msgid "Completed" -msgstr "Completed" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 -msgid "Queued" -msgstr "Queued" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:478 -msgid "checking migration requirements" -msgstr "checking migration requirements" - -#: ../../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:72 -msgid "Licence" -msgstr "License" - -#: ../../enterprise/meta/advanced/license_meta.php:113 -msgid "Validate and sync" -msgstr "Validate and synchronize" - -#: ../../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" - -#: ../../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 created, duplicated server name." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:128 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:206 -msgid "Node synchronization process failed" -msgstr "Node synchronisation process failed" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:227 -msgid "Could not be delete" -msgstr "Could not be deleted" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:316 -msgid "Full path to Pandora console (without index.php). Example " -msgstr "Full path to Pandora FMS console (without index.php). E.g. " - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:333 -msgid "DB port" -msgstr "DB port" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 -msgid "Agent cache" -msgstr "Agent cache" - -#: ../../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:201 -#: ../../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:604 -msgid "Sync" -msgstr "Sync" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:472 -msgid "There aren't server added to metaconsole" -msgstr "There are no added servers to the Metaconsole." - -#: ../../enterprise/meta/advanced/metasetup.password.php:73 -msgid "Passwords" -msgstr "Passwords" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:81 -#: ../../enterprise/meta/include/functions_meta.php:1436 -msgid "Active events history" -msgstr "Active events history" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:91 -msgid "Migration block size" -msgstr "Migration block size" - -#: ../../enterprise/meta/advanced/metasetup.php:55 -msgid "Consoles Setup" -msgstr "Consoles Setup" - -#: ../../enterprise/meta/advanced/metasetup.php:60 -#: ../../enterprise/meta/advanced/metasetup.php:121 -msgid "General setup" -msgstr "General setup" - -#: ../../enterprise/meta/advanced/metasetup.php:65 -#: ../../enterprise/meta/advanced/metasetup.php:124 -msgid "Passwords setup" -msgstr "Passwords setup" - -#: ../../enterprise/meta/advanced/metasetup.php:75 -#: ../../enterprise/meta/advanced/metasetup.php:130 -msgid "Visual setup" -msgstr "Visual setup" - -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:133 -msgid "Performance setup" -msgstr "Performance setup" - -#: ../../enterprise/meta/advanced/metasetup.php:90 -#: ../../enterprise/meta/advanced/metasetup.php:139 -msgid "Strings translation" -msgstr "Strings translation" - -#: ../../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 "Update Manager Options" - -#: ../../enterprise/meta/advanced/metasetup.php:105 -#: ../../enterprise/meta/advanced/metasetup.php:148 -msgid "Offline Update Manager" -msgstr "Update Manager Offline" - -#: ../../enterprise/meta/advanced/metasetup.php:110 -#: ../../enterprise/meta/advanced/metasetup.php:151 -msgid "Online Update Manager" -msgstr "Update Manager Online" - -#: ../../enterprise/meta/advanced/metasetup.php:117 -msgid "Consoles setup" -msgstr "Consoles setup" - -#: ../../enterprise/meta/advanced/metasetup.php:145 -msgid "Online Update Options" -msgstr "Online Update Options" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:197 -msgid "Customize sections" -msgstr "Customise sections" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:219 -msgid "Disabled sections" -msgstr "Disabled sections" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:221 -msgid "Enabled sections" -msgstr "Enabled sections" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:227 -msgid "Push selected sections to enable it" -msgstr "Push selected sections to enable it" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:231 -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 "Data precision for reports and visual consoles" -msgstr "Data precision for reports and visual consoles" - -#: ../../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:137 -msgid "Graph TIP view" -msgstr "Graph TIP view" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:158 -#: ../../enterprise/meta/include/functions_meta.php:1225 -msgid "Metaconsole elements" -msgstr "Metaconsole elements" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:158 -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:235 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:286 -#: ../../enterprise/meta/advanced/synchronizing.component.php:289 -#: ../../enterprise/meta/advanced/synchronizing.user.php:509 -#: ../../enterprise/meta/advanced/synchronizing.user.php:595 -#: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../enterprise/meta/include/functions_meta.php:99 -#: ../../enterprise/meta/include/functions_meta.php:195 -#: ../../enterprise/meta/include/functions_meta.php:285 -#, php-format -msgid "Error connecting to %s" -msgstr "Error connecting to %s" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:244 -#, php-format -msgid "Error creating %s policies" -msgstr "Error creating %s policies" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:247 -#, php-format -msgid "Created %s policies" -msgstr "Created %s policies" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:252 -#, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "Error creating/updating %s/%s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:255 -#, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "Created/updated %s/%s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:260 -#, php-format -msgid "Error deleting %s policy modules" -msgstr "Error deleting %s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:263 +#: ../../general/pandora_help.php:77 #, php-format -msgid "Deleted %s policy modules" -msgstr "Deleted %s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:268 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "Error creating %s policy alerts" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:271 -#, php-format -msgid "Created %s policy alerts" -msgstr "%s policy alerts successfully created" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:276 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "Error deleting %s policy alerts" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:279 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "%s policy alerts deleted successfully" - -#: ../../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:153 -#: ../../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:529 -msgid "This metaconsole" -msgstr "This Metaconsole" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:294 -#, php-format -msgid "Error creating/updating %s/%s comamnds" -msgstr "Error 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 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 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 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 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 "Synchronising components" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:79 -#: ../../enterprise/meta/advanced/synchronizing.group.php:80 -#: ../../enterprise/meta/advanced/synchronizing.group.php:92 -#: ../../enterprise/meta/advanced/synchronizing.group.php:93 -msgid "Open for more details" -msgstr "Open for more details" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:83 -#, php-format -msgid "Error creating %s groups" -msgstr "Error creating %s groups" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:96 -#, php-format -msgid "Error updating %s groups" -msgstr "Error updating %s groups" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:105 -#: ../../enterprise/meta/advanced/synchronizing.group.php:106 -msgid "Open for more details in creation" -msgstr "Open for more details in creation" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:111 -#: ../../enterprise/meta/advanced/synchronizing.group.php:112 -msgid "Open for more details in update" -msgstr "Open for more details about the update" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:115 -#, php-format -msgid "Error creating/updating %s/%s groups" -msgstr "Error in creating/updating %s/%s groups" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:127 -#, php-format -msgid "Created %s / Updated %s groups (" -msgstr "Created %s / Updated %s groups (" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:134 -msgid "None update or create group" -msgstr "No updated or created group" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:145 -msgid "Synchronizing Groups" -msgstr "Synchronizing groups" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 -#, 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:56 -#, php-format -msgid "Created/Updated %s/%s module groups" -msgstr "Created/Updated %s/%s module groups" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 -msgid "Synchronizing Module Groups" -msgstr "Synchronizing module groups" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:53 -#, php-format -msgid "Error creating/updating %s/%s OS" -msgstr "Error creating/updating %s/%s OS" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:56 -#, php-format -msgid "Created/Updated %s/%s OS" -msgstr "Created/Updated %s/%s OS" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:68 -msgid "Synchronizing OS" -msgstr "Synchronizing OS" - -#: ../../enterprise/meta/advanced/synchronizing.php:35 -#: ../../enterprise/meta/general/main_header.php:238 -msgid "Synchronizing" -msgstr "Synchronizing" - -#: ../../enterprise/meta/advanced/synchronizing.php:60 -#: ../../enterprise/meta/advanced/synchronizing.php:91 -msgid "Users synchronization" -msgstr "Users synchronization" - -#: ../../enterprise/meta/advanced/synchronizing.php:64 -#: ../../enterprise/meta/advanced/synchronizing.php:94 -msgid "Groups synchronization" -msgstr "Groups synchronization" - -#: ../../enterprise/meta/advanced/synchronizing.php:68 -#: ../../enterprise/meta/advanced/synchronizing.php:97 -msgid "Alerts synchronization" -msgstr "Alerts synchronization" - -#: ../../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 synchronization" - -#: ../../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 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:274 -#, php-format -msgid "Error updating user %s" -msgstr "Error updating user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:278 -#, php-format -msgid "Updated user %s" -msgstr "Updated user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:289 -#, php-format -msgid "Error creating user %s" -msgstr "Error creating user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:293 -#, php-format -msgid "Created user %s" -msgstr "Created user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:492 -#, php-format -msgid "" -"There are groups that not exist in node. The followings elements " -"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d)" -msgstr "" -"There are groups that do not exist in node. The following elements " -"groups/profiles/user profiles were created/updated successfully (%d/%d/%d)." - -#: ../../enterprise/meta/advanced/synchronizing.user.php:497 -#, 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)" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:503 -#, 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 " -"successfully (%d/%d/%d)." - -#: ../../enterprise/meta/advanced/synchronizing.user.php:521 -msgid "Synchronizing Users" -msgstr "Synchronizing users" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:553 -msgid "Profile mode" -msgstr "Profile mode" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:553 -msgid "Profile synchronization mode." -msgstr "Profile synchronization mode" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:554 -msgid "New profile" -msgstr "New profile" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:556 -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." - -#: ../../enterprise/meta/advanced/synchronizing.user.php:557 -msgid "Copy profile" -msgstr "Copy profile" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:559 -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." - -#: ../../enterprise/meta/advanced/synchronizing.user.php:561 -#: ../../enterprise/meta/advanced/synchronizing.user.php:581 -msgid "Create groups if not exist" -msgstr "Create groups if they do not exist" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:561 -#: ../../enterprise/meta/advanced/synchronizing.user.php:581 -msgid "Create groups assigned to user profile if not exist in node" -msgstr "Create groups assigned to user profile if they do not exist in node" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:65 -#, php-format -msgid "Provisioning custom data %s successfully deleted." -msgstr "Provisioning custom data %s successfully deleted" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:70 -#, php-format -msgid "Cannot delete custom data %s." -msgstr "Cannot delete custom data %s" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:80 -msgid "There was an error when moving the custom provisioning data." -msgstr "There was an error when moving the custom provisioning data." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:68 -msgid "Cannot create an unnamed rule." -msgstr "Cannot create an unnamed rule" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:76 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:97 -msgid "Error creating provisioning rule." -msgstr "Error creating provisioning rule" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:87 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:106 -msgid "Error updating provisioning rule." -msgstr "Error updating provisioning rule" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:111 -msgid "Error deleting provisioning rule." -msgstr "Error deleting provisioning rule" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 -msgid "There was an error rule when moving the provisioning." -msgstr "There was an error rule when moving the provisioning." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:184 -msgid "Create rule" -msgstr "Create rule" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:185 -msgid "Edit rule" -msgstr "Edit rule" - -#: ../../enterprise/meta/agentsearch.php:89 -msgid "Search results for" -msgstr "Search results for" - -#: ../../enterprise/meta/agentsearch.php:260 -msgid "There are no agents included in this group" -msgstr "There are no agents included in this group" - -#: ../../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." - -#: ../../enterprise/meta/event/custom_events.php:129 -msgid "Succesful updated" -msgstr "Updated successfully" - -#: ../../enterprise/meta/event/custom_events.php:130 -msgid "Unsucessful updated" -msgstr "Error updating" - -#: ../../enterprise/meta/event/custom_events.php:154 -msgid "Fields" -msgstr "Fields" - -#: ../../enterprise/meta/general/login_page.php:61 -msgid "Go to Pandora FMS Support" -msgstr "Go to Pandora FMS Support" - -#: ../../enterprise/meta/general/login_page.php:64 -#: ../../enterprise/meta/general/login_page.php:75 -msgid "Go to " -msgstr "Go to " - -#: ../../enterprise/meta/general/login_page.php:72 -#: ../../enterprise/meta/include/process_reset_pass.php:46 -#: ../../enterprise/meta/include/reset_pass.php:46 -msgid "Go to Pandora FMS Wiki" -msgstr "Go to Pandora FMS Wiki" - -#: ../../enterprise/meta/general/logon_ok.php:32 -msgid "Network traffic" -msgstr "Network traffic" - -#: ../../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 "" -"The Metaconsole needs previous activation from regular console, please " -"contact the system administrator if you need assistance.
" - -#: ../../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 " -"the 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 FMS 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 loading the tag." - -#: ../../enterprise/meta/include/functions_agents_meta.php:1204 -#: ../../enterprise/meta/include/functions_agents_meta.php:1218 -msgid "Agents movement" -msgstr "Agent movement" - -#: ../../enterprise/meta/include/functions_agents_meta.php:1209 -#: ../../enterprise/meta/include/functions_agents_meta.php:1226 -msgid "Provisioning management" -msgstr "Provisioning management" - -#: ../../enterprise/meta/include/functions_agents_meta.php:1214 -#: ../../enterprise/meta/include/functions_agents_meta.php:1222 -msgid "Group management" -msgstr "Group management" - -#: ../../enterprise/meta/include/functions_agents_meta.php:1230 -msgid "Provisioning rules management" -msgstr "Provisioning rules 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:120 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(Error Duplicate ID (%d) ) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:143 -msgid "Different parent" -msgstr "Different parent" - -#: ../../enterprise/meta/include/functions_groups_meta.php:148 -msgid "Different name" -msgstr "Different name" - -#: ../../enterprise/meta/include/functions_meta.php:311 -msgid "No admin user" -msgstr "No admin user" - -#: ../../enterprise/meta/include/functions_meta.php:407 -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:913 -msgid "Pandora FMS host" -msgstr "Pandora FMS host" - -#: ../../enterprise/meta/include/functions_meta.php:966 -msgid "Babel Enterprise host" -msgstr "Babel Enterprise host" - -#: ../../enterprise/meta/include/functions_meta.php:1215 -msgid "Type of charts" -msgstr "Type of charts" - -#: ../../enterprise/meta/include/functions_meta.php:1315 -msgid "Custom background login" -msgstr "Custom background login" - -#: ../../enterprise/meta/include/functions_meta.php:1476 -msgid "Default block size migration agents" -msgstr "Default block size of agents migration" - -#: ../../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: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: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 -#, php-format -msgid "Error adding module %s" -msgstr "Error adding module %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1876 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1973 -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." - -#: ../../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 msgid "" -"There was an error creating the alerts, the operation has been cancelled ." +"%s help system has been called with a help reference that currently don't " +"exist. There is no help content to show." msgstr "" -"There was an error creating the alerts, the operation has been cancelled." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2480 -msgid "Module successfully added." -msgstr "Module successfully added" - -#: ../../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 "Error updating module %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 "" -"There was an error 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/include/process_reset_pass.php:41 -#: ../../enterprise/meta/include/reset_pass.php:41 -msgid "Go to pandorafms.com" -msgstr "Go to pandorafms.com" - -#: ../../enterprise/meta/include/functions_autoprovision.php:304 -msgid "Round Robin" -msgstr "Round Robin" - -#: ../../enterprise/meta/include/functions_autoprovision.php:309 -msgid "Less loaded" -msgstr "Less loaded" - -#: ../../enterprise/meta/include/functions_autoprovision.php:435 -msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add " -"the first." -msgstr "" -"There is no custom entries defined. Click on 'Create custom entry' to add " -"the first entry." - -#: ../../enterprise/meta/include/functions_autoprovision.php:440 -msgid "Create custom entry" -msgstr "Create custom entry" - -#: ../../enterprise/meta/include/functions_autoprovision.php:465 -msgid "Provisioning configuration" -msgstr "Provisioning configuration" - -#: ../../enterprise/meta/include/functions_autoprovision.php:476 -msgid "Configuration:" -msgstr "Configuration:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:511 -msgid "" -"There is no rules configured for this custom entry. Click on Add button to " -"create the first." -msgstr "" -"There are no rules configured for this custom entry. Click on the Add button " -"to create the first." - -#: ../../enterprise/meta/include/functions_autoprovision.php:540 -msgid "Method" -msgstr "Method" - -#: ../../enterprise/meta/include/functions_autoprovision.php:617 -msgid "There was an error when editing the rule." -msgstr "There was an error editing the rule." - -#: ../../enterprise/meta/include/functions_autoprovision.php:631 -msgid "Operation:" -msgstr "Operation:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:642 -msgid "Method:" -msgstr "Method:" - -#: ../../enterprise/meta/index.php:228 ../../index.php:284 -msgid "The code shouldn't be empty" -msgstr "The code should not be empty" - -#: ../../enterprise/meta/index.php:240 ../../index.php:296 -msgid "Expired login" -msgstr "Expired login" - -#: ../../enterprise/meta/index.php:248 ../../enterprise/meta/index.php:254 -#: ../../index.php:304 ../../index.php:310 -msgid "Login error" -msgstr "Login error" - -#: ../../enterprise/meta/index.php:489 ../../index.php:607 -msgid "Password changed successfully" -msgstr "Password changed successfully" - -#: ../../enterprise/meta/index.php:496 ../../index.php:614 -msgid "Failed to change password" -msgstr "Error changing the password" - -#: ../../enterprise/meta/index.php:516 ../../index.php:636 -msgid "Too much time since password change request" -msgstr "Too much time since password change request" - -#: ../../enterprise/meta/index.php:527 ../../index.php:647 -msgid "This user has not requested a password change" -msgstr "This user has not requested a password change" - -#: ../../enterprise/meta/index.php:545 ../../index.php:665 -msgid "Id user cannot be empty" -msgstr "ID user cannot be empty" - -#: ../../enterprise/meta/index.php:554 ../../index.php:674 -msgid "Error in reset password request" -msgstr "Error in reset password request" - -#: ../../enterprise/meta/index.php:563 ../../index.php:683 -msgid "This user doesn't have a valid email address" -msgstr "This user does not have a valid email address" - -#: ../../enterprise/meta/index.php:582 ../../index.php:703 -msgid "This is an automatically sent message for user " -msgstr "This is an automatically sent message for user " - -#: ../../enterprise/meta/index.php:585 ../../index.php:706 -msgid "Please click the link below to reset your password" -msgstr "Please click on the link below to reset your password" - -#: ../../enterprise/meta/index.php:587 ../../index.php:708 -msgid "Reset your password" -msgstr "Reset your password" - -#: ../../enterprise/meta/index.php:591 ../../index.php:712 -msgid "Please do not reply to this email." -msgstr "Please do not reply to this email." - -#: ../../enterprise/meta/index.php:597 ../../index.php:718 -msgid "Error at sending the email" -msgstr "Error sending the email" - -#: ../../enterprise/meta/index.php:725 ../../enterprise/meta/index.php:796 -#: ../../index.php:1021 -msgid "Sorry! I can't find the page!" -msgstr "Sorry! I cannot 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 is not displayed in real-time" - -#: ../../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 status" - -#: ../../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 status in events" - -#: ../../enterprise/meta/monitoring/tactical.php:342 -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 the 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 on 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 "Visual console is not shown due to screen size limitations" - -#: ../../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 does not have inventory modules." - -#: ../../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 "List of transactions" - -#: ../../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 "Edit main data" - -#: ../../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 "Edit transaction" - -#: ../../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 "View transaction" - -#: ../../enterprise/operation/agentes/manage_transmap.php:98 -msgid "Return to windowed mode" -msgstr "Return to windowed mode" - -#: ../../enterprise/operation/agentes/manage_transmap.php:102 -msgid "Transactional Map - " -msgstr "Transactional Map - " - -#: ../../enterprise/operation/agentes/manage_transmap.php:106 -msgid "Transaction not found" -msgstr "Transaction not found" - -#: ../../enterprise/operation/agentes/manage_transmap.php:110 -msgid "Master lock file not found (No data to show)" -msgstr "Master lock file not found (No data to show)" - -#: ../../enterprise/operation/agentes/manage_transmap.php:114 -msgid "Transaction is stopped" -msgstr "Transaction is stopped" - -#: ../../enterprise/operation/agentes/manage_transmap.php:118 -msgid "Error, please check the transaction phases" -msgstr "Error, please check the transaction phases" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:36 -msgid "Please, reset the transaction" -msgstr "Please, reset the transaction" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:71 -msgid "Successfully data updated" -msgstr "Data updated successfully" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:72 -msgid "Could not be data updated" -msgstr "Could not update data" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:107 -msgid "Transactional Map - Create Phase - " -msgstr "Transactional Map - Create Phase - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:117 -msgid "Index" -msgstr "Index" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:120 -msgid "Dependencies" -msgstr "Dependencies" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:121 -msgid "Enables" -msgstr "Enabled" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:181 -msgid "Not valid dependencies field" -msgstr "Dependencies field not valid" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 -msgid "Not valid enables field" -msgstr "Enabling field not valid" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:345 -msgid "Transactional Map - Create Transaction" -msgstr "Transactional Map - Create Transaction" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:272 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:361 -msgid "Loop interval" -msgstr "Loop interval" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:45 -msgid "Go back to phases list" -msgstr "Go back to phases list" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:49 -msgid "Transactional Map - Phase - " -msgstr "Transactional Map - Phase - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:62 -msgid "Launch script" -msgstr "Launch script" - -#: ../../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 expired" - -#: ../../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 "(Not adopted)" - -#: ../../enterprise/operation/agentes/policy_view.php:337 -msgid "(Adopted)" -msgstr "(Adopted)" - -#: ../../enterprise/operation/agentes/policy_view.php:343 -msgid "(Un-adopted) (Unlinked)" -msgstr "(Not adopted) (Unlinked)" - -#: ../../enterprise/operation/agentes/policy_view.php:347 -msgid "(Adopted) (Unlinked)" -msgstr "(Adopted) (Unlinked)" - -#: ../../enterprise/operation/agentes/tag_view.php:22 -#: ../../enterprise/operation/menu.php:152 -msgid "Tag view" -msgstr "Tag view" - -#: ../../enterprise/operation/agentes/transactional_map.php:31 -msgid "Transactions list" -msgstr "List of transactions" - -#: ../../enterprise/operation/agentes/transactional_map.php:100 -msgid "Name can't be empty" -msgstr "Name cannot be empty" - -#: ../../enterprise/operation/agentes/transactional_map.php:148 -msgid "Transaction name" -msgstr "Transaction name" - -#: ../../enterprise/operation/agentes/transactional_map.php:151 -msgid "Running status" -msgstr "Running status" - -#: ../../enterprise/operation/agentes/transactional_map.php:153 -msgid "Time spent" -msgstr "Time spent" - -#: ../../enterprise/operation/agentes/transactional_map.php:183 -msgid "Stopped" -msgstr "Stopped" - -#: ../../enterprise/operation/agentes/transactional_map.php:189 -msgid "Starting" -msgstr "Starting" - -#: ../../enterprise/operation/agentes/transactional_map.php:192 -msgid "Stopping" -msgstr "Stopping" - -#: ../../enterprise/operation/agentes/transactional_map.php:314 -msgid "Edit phases" -msgstr "Edit phases" - -#: ../../enterprise/operation/agentes/transactional_map.php:323 -msgid "Error in phases section" -msgstr "Error in phases section" - -#: ../../enterprise/operation/agentes/transactional_map.php:342 -msgid "Create Transaction" -msgstr "Create transaction" - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:38 -msgid "No agent selected" -msgstr "No agent selected" - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 -msgid "Route not found" -msgstr "Route not found" - -#: ../../enterprise/operation/agentes/ux_console_view.php:59 -msgid "No ux transaction selected." -msgstr "No UX transaction selected" - -#: ../../enterprise/operation/agentes/ux_console_view.php:138 -msgid "No ux transactions found." -msgstr "No UX transactions found" - -#: ../../enterprise/operation/agentes/ux_console_view.php:148 -#: ../../enterprise/operation/agentes/wux_console_view.php:178 -msgid "Transaction" -msgstr "Transaction" - -#: ../../enterprise/operation/agentes/ux_console_view.php:157 -#: ../../enterprise/operation/agentes/wux_console_view.php:187 -msgid "Show transaction" -msgstr "Show transaction" - -#: ../../enterprise/operation/agentes/ux_console_view.php:183 -#: ../../enterprise/operation/agentes/wux_console_view.php:313 -msgid "Execution results for transaction " -msgstr "Execution results for transaction " - -#: ../../enterprise/operation/agentes/ux_console_view.php:257 -#: ../../enterprise/operation/agentes/wux_console_view.php:235 -msgid "Global results" -msgstr "Global results" - -#: ../../enterprise/operation/agentes/ux_console_view.php:318 -#: ../../enterprise/operation/agentes/wux_console_view.php:418 -msgid "Transaction history" -msgstr "Transaction history" - -#: ../../enterprise/operation/agentes/ver_agente.php:225 -msgid "URL Route Analyzer" -msgstr "URL Route Analyzer" - -#: ../../enterprise/operation/agentes/ver_agente.php:242 -msgid "UX Console" -msgstr "UX Console" - -#: ../../enterprise/operation/agentes/ver_agente.php:259 -msgid "WUX Console" -msgstr "WUX Console" - -#: ../../enterprise/operation/agentes/wux_console_view.php:64 -msgid "No wux transaction selected." -msgstr "No WUX transaction selected" - -#: ../../enterprise/operation/agentes/wux_console_view.php:120 -msgid "Phase modules not found" -msgstr "Phase modules not found" - -#: ../../enterprise/operation/agentes/wux_console_view.php:160 -msgid "Selected transaction has no stats" -msgstr "Selected transaction has no statistics" - -#: ../../enterprise/operation/agentes/wux_console_view.php:168 -msgid "No WUX transactions found." -msgstr "No WUX transactions found" - -#: ../../enterprise/operation/agentes/wux_console_view.php:251 -msgid "Failed: " -msgstr "Failed: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:286 -msgid "Success: " -msgstr "Success: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:296 -msgid "Total transaction time: " -msgstr "Total transaction time: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:455 -msgid "Invalid transaction." -msgstr "Invalid transaction" - -#: ../../enterprise/operation/inventory/inventory.php:231 -msgid "Order by agent" -msgstr "Order by agent" - -#: ../../enterprise/operation/inventory/inventory.php:272 -msgid "Export this list to CSV" -msgstr "Export this list to CSV" - -#: ../../enterprise/operation/log/log_viewer.php:162 -#: ../../enterprise/operation/menu.php:144 -msgid "Log viewer" -msgstr "Log viewer" - -#: ../../enterprise/operation/log/log_viewer.php:181 -msgid "All words" -msgstr "All words" - -#: ../../enterprise/operation/log/log_viewer.php:181 -msgid "Any word" -msgstr "Any word" - -#: ../../enterprise/operation/log/log_viewer.php:183 -msgid "Search mode" -msgstr "Search mode" - -#: ../../enterprise/operation/log/log_viewer.php:191 -msgid "Full context" -msgstr "Full context" - -#: ../../enterprise/operation/log/log_viewer.php:369 -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 "List of networkmaps" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:42 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:80 -msgid "Edit networkmap" -msgstr "Edit networkmap" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:48 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:86 -msgid "Deleted list" -msgstr "Deleted list" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:54 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:92 -msgid "View networkmap" -msgstr "View networkmap" - -#: ../../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 "List of deleted items" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:108 -msgid "Successfully restore the item" -msgstr "Item restored successfully" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:109 -msgid "Could not be restore the item" -msgstr "Item could not be restored" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:130 -msgid "Successfully restore the items" -msgstr "Items restored successfully" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:132 -msgid "Could not be restore the " -msgstr "Could not restore the " - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:136 -msgid "Not found networkmap" -msgstr "No networkmap found" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:140 -msgid "The items restored will be appear in the holding area." -msgstr "The items restored will appear in the holding area." - -#: ../../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 "Restore" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:170 -msgid "There are not nodes in the networkmap." -msgstr "There are no nodes in the networkmap." - -#: ../../enterprise/operation/menu.php:30 -msgid "Cluster View" -msgstr "Cluster view" - -#: ../../enterprise/operation/menu.php:113 -msgid "Transactional map" -msgstr "Transactional map" - -#: ../../enterprise/operation/menu.php:127 -msgid "Custom SQL" -msgstr "Custom SQL" - -#: ../../enterprise/operation/reporting/custom_reporting.php:22 -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." - -#: ../../enterprise/operation/reporting/custom_reporting.php:62 -#: ../../enterprise/operation/reporting/custom_reporting.php:85 -msgid "Send by email" -msgstr "Send by email" - -#: ../../enterprise/operation/reporting/custom_reporting.php:70 -msgid "ID Report" -msgstr "Report ID" - -#: ../../enterprise/operation/reporting/custom_reporting.php:109 -msgid "Send by email " -msgstr "Send by email " - -#: ../../enterprise/operation/services/services.list.php:44 -#: ../../enterprise/operation/services/services.list.php:52 -msgid "Service table view" -msgstr "Service table view" - -#: ../../enterprise/operation/services/services.list.php:73 -msgid "Service deleted successfully" -msgstr "Service deleted successfully" - -#: ../../enterprise/operation/services/services.list.php:74 -msgid "Error deleting service" -msgstr "Error deleting service" - -#: ../../enterprise/operation/services/services.list.php:79 -msgid "Service forced successfully" -msgstr "Service forced successfully" - -#: ../../enterprise/operation/services/services.list.php:80 -msgid "Error service forced" -msgstr "Error forcing the service" - -#: ../../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" - -#: ../../enterprise/operation/services/services.list.php:436 -#: ../../enterprise/operation/services/services.service.php:206 -msgid "SLA graph" -msgstr "SLA graph" - -#: ../../enterprise/operation/services/services.service.php:102 -msgid "No Services" -msgstr "No services" - -#: ../../enterprise/operation/services/services.service.php:216 -msgid "List of elements" -msgstr "List of elements" - -#: ../../index.php:769 -msgid "User doesn\\'t exist." -msgstr "User does not exist" - -#: ../../index.php:785 -msgid "User only can use the API." -msgstr "The user can only use the API" #~ msgid "Welcome to Pandora FMS Web Console" #~ msgstr "Welcome to Pandora FMS Web Console" +#~ msgid "Pandora FMS Overview" +#~ msgstr "Pandora FMS Overview" + +#~ msgid "Welcome to Pandora FMS" +#~ msgstr "Welcome to Pandora FMS" + +#~ msgid "Message overview" +#~ msgstr "Message overview" + +#, php-format +#~ msgid "You have %d unread message(s)" +#~ msgstr "You have %d unread message(s)" + +#~ msgid "System alerts detected - Please fix as soon as possible" +#~ msgstr "System alerts detected - Please fix them as soon as possible" + +#, php-format +#~ msgid "You have %d warning(s)" +#~ msgstr "You have %d warning(s)" + +#~ msgid "Pandora FMS Diagnostic tool" +#~ msgstr "Pandora FMS Diagnostic tool" + #~ msgid "Item" #~ msgstr "Item" #~ msgid "Data value" #~ msgstr "Data value" +#~ msgid "Global health" +#~ msgstr "Global health" + +#~ msgid "Layout" +#~ msgstr "Layout" + +#~ msgid "Remote modules" +#~ msgstr "Remote modules" + +#~ msgid "Could not be validated" +#~ msgstr "Could not be validated" + +#~ msgid "Map could not be generated" +#~ msgstr "Map could not be generated" + +#~ msgid "Create networkmap" +#~ msgstr "Create networkmap" + +#~ msgid "times" +#~ msgstr "times" + #~ msgid "Criticity" #~ msgstr "Criticity" -#~ msgid "Zoom" -#~ msgstr "Zoom" +#~ msgid "MTTR" +#~ msgstr "MTTR" + +#~ msgid "MTBF" +#~ msgstr "MTBF" + +#~ msgid "TTO" +#~ msgstr "TTO" + +#~ msgid "TTRT" +#~ msgstr "TTRT" + +#~ msgid "Alert report agent" +#~ msgstr "Alert report agent" + +#~ msgid "Alert report module" +#~ msgstr "Alert report module" + +#, php-format +#~ msgid "Error updating passwords: %s" +#~ msgstr "Error updating passwords: %s" #~ msgid "This user doesn't have any assigned profile/group" #~ msgstr "This user doesn't have any assigned profile/group" @@ -38624,6 +47069,12 @@ msgstr "The user can only use the API" #~ msgid "Main event view" #~ msgstr "Main event view" +#~ msgid "No events selected" +#~ msgstr "No events selected" + +#~ msgid "Successfully validated" +#~ msgstr "Successfully validated" + #~ msgid "Autorefresh time" #~ msgstr "Autorefresh time" @@ -38636,6 +47087,9 @@ msgstr "The user can only use the API" #~ msgid "There are no messages" #~ msgstr "There are no messages" +#~ msgid "at" +#~ msgstr "at" + #~ msgid "Network map deleted successfully" #~ msgstr "Network map deleted successfully" @@ -38678,6 +47132,18 @@ msgstr "The user can only use the API" #~ msgid "Map options" #~ msgstr "Map options" +#~ msgid "Full list of monitors" +#~ msgstr "Full list of monitors" + +#~ msgid "Load" +#~ msgstr "Load" + +#~ msgid "Last position in " +#~ msgstr "Last position in " + +#~ msgid "positional data" +#~ msgstr "positional data" + #~ msgid "Assigned user" #~ msgstr "Assigned user" @@ -38708,9 +47174,6 @@ msgstr "The user can only use the API" #~ msgid "Search string" #~ msgstr "Search string" -#~ msgid "Started" -#~ msgstr "Started" - #~ msgid "Workunits" #~ msgstr "Workunits" @@ -38726,15 +47189,88 @@ msgstr "The user can only use the API" #~ msgid "Generic upload error" #~ msgstr "Generic upload error" +#~ msgid "CSV File" +#~ msgstr "CSV File" + +#~ msgid "Refresh: " +#~ msgstr "Refresh: " + +#~ msgid "Error deleting recon task" +#~ msgstr "Error deleting recon task" + +#~ msgid "Error updating recon task" +#~ msgstr "Error updating recon task" + #~ msgid "Network provided is not correct" #~ msgstr "Network provided is not correct" +#~ msgid "Error creating recon task" +#~ msgstr "Error creating recon task" + +#~ msgid "Ports" +#~ msgstr "Ports" + +#~ msgid "Recon server" +#~ msgstr "Recon server" + +#~ msgid "Recon script creation" +#~ msgstr "Recon script creation" + +#~ msgid "Recon script update" +#~ msgstr "Recon script update" + +#~ msgid "Network sweep" +#~ msgstr "Network sweep" + +#~ msgid "Module template" +#~ msgstr "Module template" + +#~ msgid "Network component management" +#~ msgstr "Network component management" + +#~ msgid "Local Pandora FMS" +#~ msgstr "Local Pandora FMS" + +#~ msgid "Descriptive name for the connection" +#~ msgstr "Descriptive name for the connection" + +#~ msgid "Group that owns the connection" +#~ msgstr "Group that owns the connection" + +#~ msgid "Zoom level used when the map is opened" +#~ msgstr "Zoom level used when the map is opened" + +#~ msgid "Position to center the map when the map is opened" +#~ msgstr "Position to centre the map when the map is opened" + +#~ msgid "Graphic resolution (1-low, 5-high)" +#~ msgstr "Graphic resolution (1-low, 5-high)" + +#~ 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?" + #~ msgid "There are no SNMP filters" #~ msgstr "There are no SNMP filters" +#~ msgid "Show in two columns" +#~ msgstr "Show in two columns" + +#~ msgid "Show in landscape" +#~ msgstr "Show in landscape" + #~ msgid "Items filter" #~ msgstr "Items filter" +#~ msgid "Width proportional" +#~ msgstr "Proportional width" + +#~ msgid "Label color" +#~ msgstr "Label colour" + #~ msgid "G.F." #~ msgstr "G.F." @@ -38775,6 +47311,9 @@ msgstr "The user can only use the API" #~ msgid "Deleted data above %d" #~ msgstr "Deleted data above %d" +#~ msgid "No tags selected" +#~ msgstr "No tags selected" + #~ msgid "DB maintenance" #~ msgstr "DB maintenance" @@ -38896,11 +47435,23 @@ msgstr "The user can only use the API" #~ msgid "Purge all audit data" #~ msgstr "Purge all audit data" +#~ msgid "Group that owns the map" +#~ msgstr "Group that owns the map" + +#~ msgid "Default zoom level when opening the map" +#~ msgstr "Default zoom level when opening the map" + +#~ msgid "It is possible to edit, delete and reorder the layers." +#~ msgstr "It is possible to edit, delete and reorder the layers." + +#~ msgid "Update Layer" +#~ msgstr "Update Layer" + #~ msgid "Cannot read file" #~ msgstr "Cannot read file" -#~ msgid "System Info" -#~ msgstr "System Info" +#~ msgid "System info" +#~ msgstr "System info" #~ msgid "Log Info" #~ msgstr "Log info" @@ -38925,36 +47476,93 @@ msgstr "The user can only use the API" #~ msgid "Ping to " #~ msgstr "Ping to " +#~ msgid "SNMPget executable does not exist." +#~ msgstr "SNMPget executable does not exist." + #~ msgid "File is too large (> 500KB)" #~ msgstr "File is too large (> 500KB)" +#~ msgid "Units" +#~ msgstr "Units" + +#~ msgid "Today" +#~ msgstr "Today" + +#~ msgid "Week" +#~ msgstr "Week" + +#~ msgid "files" +#~ msgstr "files" + +#~ msgid "Monitors down on period" +#~ msgstr "Monitors down on period" + +#~ msgid "Monitors BAD" +#~ msgstr "Monitors BAD" + #~ msgid "Inside limits" #~ msgstr "Inside limits" #~ msgid "On the edge" #~ msgstr "On the edge" +#~ msgid "Actual" +#~ msgstr "Actual" + +#~ msgid "Recon server detected a new host" +#~ msgstr "Recon server detected a new host" + #~ msgid "Empty graph" #~ msgstr "Empty graph" #~ msgid "Map summary" #~ msgstr "Map summary" -#~ msgid "Connect" -#~ msgstr "Connect" +#, php-format +#~ msgid "User %s login at %s" +#~ msgstr "User %s login at %s" + +#, php-format +#~ msgid "User %s logout at %s" +#~ msgstr "User %s logout at %s" + +#~ msgid "ITIL" +#~ msgstr "ITIL" + +#~ msgid "WebChat" +#~ msgstr "WebChat" + +#~ msgid "Recon view" +#~ msgstr "Recon view" #~ msgid "Connect mode" #~ msgstr "Connect mode" +#~ msgid "Go to agent detail" +#~ msgstr "Go to agent detail" + +#~ msgid "Webchat" +#~ msgstr "Webchat" + +#, php-format +#~ msgid "User %s was deleted in the DB at %s" +#~ msgstr "User %s was deleted in the DB at %s" + #~ msgid "Error deleting data" #~ msgstr "Error deleting data" #~ msgid "Success data deleted" #~ msgstr "Data deleted sucessfully" +#~ msgid "Error deleting event" +#~ msgstr "Error deleting event" + #~ msgid "Time compare" #~ msgstr "Time compare" +#~ msgid "Current data at" +#~ msgstr "Current data at" + #~ msgid "Separated" #~ msgstr "Separated" @@ -38973,24 +47581,81 @@ msgstr "The user can only use the API" #~ msgid "Workunit added" #~ msgstr "Workunit added" +#~ msgid "Copy dashboard" +#~ msgstr "Copy dashboard" + #~ msgid "Events by criticity" #~ msgstr "Events by criticity" +#~ msgid "PandoraFMS: Agents" +#~ msgstr "PandoraFMS: Agents" + +#, php-format +#~ msgid "PandoraFMS: %s" +#~ msgstr "PandoraFMS: %s" + +#~ msgid "Error connecting to DB pandora." +#~ msgstr "Error connecting to Pandora FMS DB" + #~ msgid "License Info" #~ msgstr "Licence Info" #~ msgid "License info" #~ msgstr "Licence info" -#~ msgid "Send" -#~ msgstr "Send" +#~ 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." + +#~ msgid "Data will be compacted in intervals of the specified length." +#~ msgstr "Data will be compacted in intervals of the specified length." + +#~ 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" + +#~ msgid "Protocol" +#~ msgstr "Protocol" + +#~ msgid "Output format" +#~ msgstr "Output format" + +#~ msgid "Megabytes" +#~ msgstr "Megabytes" + +#~ msgid "Kilobytes per second" +#~ msgstr "Kilobytes per second" + +#~ msgid "Megabytes per second" +#~ msgstr "Megabytes per second" + +#~ msgid "Export to CSV " +#~ msgstr "Export to CSV " #~ msgid "Quiet: Disable modules that we indicate below." #~ msgstr "Quiet: Disable the modules indicated below." +#, php-format +#~ msgid "DEBUG: Invalid module type specified in %s:%s" +#~ msgstr "DEBUG: Invalid module type specified in %s:%s" + +#~ msgid "Module macros" +#~ msgstr "Module macros" + #~ msgid "Cron" #~ msgstr "Cron" +#~ msgid "Activate this to prevent the relation from being updated or deleted" +#~ msgstr "Activate this to prevent the relation from being updated or deleted" + #, php-format #~ msgid "Purge task launched for agent %s :: Data older than %s" #~ msgstr "Purge task launched for agent %s :: Data older than %s" @@ -39008,12 +47673,24 @@ msgstr "The user can only use the API" #~ msgid "No special days configured" #~ msgstr "No special days configured" +#~ msgid "Interactive charts" +#~ msgstr "Interactive charts" + #~ msgid "Massive alert actions addition" #~ msgstr "Massive alert actions addition" #~ msgid "Paginate module view" #~ msgstr "Paginated module view" +#~ msgid "Fixed menu" +#~ msgstr "Fixed menu" + +#~ msgid "Directory where netflow data will be stored." +#~ msgstr "Directory where netflow data will be stored." + +#~ msgid "Specifies the time interval in seconds to rotate netflow data files." +#~ msgstr "Specifies the time interval in seconds to rotate netflow data files." + #, php-format #~ msgid "The last version of package installed is: %d" #~ msgstr "The last version of package installed is: %d" @@ -39035,6 +47712,9 @@ msgstr "The user can only use the API" #~ msgid "Package not updated." #~ msgstr "Package not updated." +#~ msgid "Successfully deleted export target" +#~ msgstr "Successfully deleted export target" + #~ msgid "" #~ "Maybe delete the extended data or the audit data is previous to table " #~ "tsession_extended." @@ -39042,6 +47722,12 @@ msgstr "The user can only use the API" #~ "Maybe delete the extended data or the audit data is previous to table " #~ "tsession_extended." +#~ msgid "7 days" +#~ msgstr "7 days" + +#~ msgid "Update all" +#~ msgstr "Update all" + #~ msgid "Group filter" #~ msgstr "Group filter" @@ -39060,6 +47746,12 @@ msgstr "The user can only use the API" #~ msgid "Variable" #~ msgstr "Variable" +#~ msgid "Delete all" +#~ msgstr "Delete all" + +#~ msgid "Val." +#~ msgstr "Val." + #~ msgid "Massive alerts policy addition" #~ msgstr "Massive alerts policy addition" @@ -39091,27 +47783,83 @@ msgstr "The user can only use the API" #~ msgid "Sets the maximum lifetime for log data in days." #~ msgstr "Sets the maximum lifetime for log data in days." +#~ 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 "" +#~ "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 "" +#~ "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 "Remote Pandora FMS" +#~ msgstr "Remote Pandora FMS" + #~ msgid "Remote Babel Enterprise" #~ msgstr "Remote Babel Enterprise" +#~ msgid "Pandora FMS host" +#~ msgstr "Pandora FMS host" + #~ 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 "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 "5 hours" +#~ msgstr "5 hours" + +#~ 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 "Regex for to filter modules" +#~ msgstr "Regex for to 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 "No overlap" #~ msgstr "No overlap" @@ -39130,6 +47878,18 @@ msgstr "The user can only use the API" #~ msgid "12" #~ msgstr "12" +#~ msgid "General and quick visual maps report" +#~ msgstr "General and quick visual maps report" + +#~ msgid "Show a defined custom graph" +#~ msgstr "Show a defined custom graph" + +#~ 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 "Dashboard replicate" #~ msgstr "Dashboard replicate" @@ -39190,15 +47950,24 @@ msgstr "The user can only 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 "Please, set a valid IP address" #~ msgstr "Please set a valid IP address." #~ msgid "Check this to copy user original profiles" #~ msgstr "Check this to copy the user's original profiles" +#~ msgid "Visual" +#~ msgstr "Visual" + #~ msgid "" #~ "Complete path to Pandora console without last \"/\" character. Example " #~ msgstr "" @@ -39290,6 +48059,27 @@ msgstr "The user can only use the API" #~ msgid "Cannot connect to %s Pandora to generate networkmap." #~ msgstr "Cannot connect to %s Pandora to generate network map." +#~ msgid "Create new module" +#~ msgstr "Create new module" + +#~ 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 "Copy Dashboard" #~ msgstr "Copy dashboard" @@ -39345,6 +48135,16 @@ msgstr "The user can only use the API" #~ msgid "Cron extension is not running" #~ msgstr "Cron extension is not running" +#~ 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 "Cron extension is running" +#~ msgstr "Cron extension is running" + #~ msgid "First_execution" #~ msgstr "First_execution" @@ -39358,21 +48158,31 @@ msgstr "The user can only use the API" #~ msgid "First execution" #~ msgstr "First execution" +#~ msgid "CSV import" +#~ msgstr "CSV import" + +#, php-format +#~ msgid "Created agent %s" +#~ msgstr "Created agent %s" + #~ msgid "Summary of SLA Fails" #~ msgstr "Summary of SLA Failures" #~ msgid "Radius" #~ msgstr "Radius" -#~ msgid "Color" -#~ msgstr "Colour" - #~ msgid "Network map linked" #~ msgstr "Network map linked" #~ msgid "Show modules:" #~ msgstr "Show modules:" +#~ msgid "Trial" +#~ msgstr "Trial" + +#~ msgid "Automated Pandora FMS report for user defined report" +#~ msgstr "Automated Pandora FMS report for user defined report" + #~ msgid "Generated: " #~ msgstr "Generated: " @@ -39385,6 +48195,12 @@ msgstr "The user can only use the API" #~ msgid "CONTENTS" #~ msgstr "CONTENTS" +#~ msgid "SO" +#~ msgstr "SO" + +#~ msgid "Into your destination database." +#~ msgstr "Into your destination database." + #~ msgid "Module store the service does not exist." #~ msgstr "Module for storing the service does not exist." @@ -39421,21 +48237,39 @@ msgstr "The user can only use the API" #~ msgid "Error updating user pass (no change?)" #~ msgstr "Error updating user pass (no change ?)" +#~ msgid "Networkmaps" +#~ msgstr "Network maps" + +#~ msgid "No networkmaps" +#~ msgstr "No network maps" + #~ msgid "Continue despite this warning" #~ msgstr "Continue despite this warning" +#~ msgid "There are not warnings" +#~ msgstr "There are no warnings" + +#~ msgid "New chat message" +#~ msgstr "New chat message" + #~ msgid "Incidents opened" #~ msgstr "Incidents opened" #~ msgid "Create new message" #~ msgstr "Create new message" +#~ msgid "Bytes per second" +#~ msgstr "Bytes per second" + #~ msgid "Only run with it is filter for any group" #~ msgstr "Only run with it is filter for any group" #~ msgid "L2 network interfaces" #~ msgstr "L2 network interfaces" +#~ msgid "Show event graph" +#~ msgstr "Show event graph" + #~ msgid "Alerts found" #~ msgstr "Alerts found" @@ -39465,6 +48299,9 @@ msgstr "The user can only use the API" #~ msgid "For security reasons the following characters are not allowed: %s" #~ msgstr "For security reasons, the following characters are not allowed : %s" +#~ msgid "Netflow pie chart" +#~ msgstr "Netflow pie chart" + #~ msgid "Agent address" #~ msgstr "Agent address" @@ -39474,12 +48311,23 @@ msgstr "The user can only use the API" #~ msgid "Minimal" #~ msgstr "Minimum" -#~ msgid "Maximun" -#~ msgstr "Maximum" - #~ msgid "Error updating network module. Id_module doesn't exists." #~ msgstr "Error updating the network module. 'Id_module' doesn't exist." +#~ msgid "Problem with Pandora FMS database" +#~ msgstr "Problem with Pandora FMS database" + +#~ 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." + #~ msgid "Auto Save" #~ msgstr "Auto Save" @@ -39487,12 +48335,66 @@ msgstr "The user can only use the API" #~ msgid "projection for %s" #~ msgstr "Projection for %s" +#~ msgid "Pie graph and Summary table" +#~ msgstr "Pie graph and summary table" + +#~ msgid "Statistics table" +#~ msgstr "Statistics table" + +#~ msgid "10 mins" +#~ msgstr "10 mins" + +#~ msgid "15 mins" +#~ msgstr "15 mins" + +#~ msgid "30 mins" +#~ msgstr "30 mins" + +#~ msgid "5 days" +#~ msgstr "5 days" + +#~ msgid "Last year" +#~ msgstr "Last year" + +#~ msgid "1 min" +#~ msgstr "1 min" + +#~ msgid "2 mins" +#~ msgstr "2 mins" + +#~ msgid "5 mins" +#~ msgstr "5 mins" + +#~ msgid "Aggregate" +#~ msgstr "Aggregate" + +#~ msgid "MB" +#~ msgstr "MB" + +#~ msgid "MB/s" +#~ msgstr "MB/s" + +#~ msgid "kB" +#~ msgstr "kB" + +#~ msgid "kB/s" +#~ msgstr "kB/s" + +#~ msgid "B/s" +#~ msgstr "B/s" + +#~ msgid "Error first setup Open update" +#~ msgstr "Error on first setup open update" + #~ msgid "Unsuccessfull multiple delete." #~ msgstr "Unsuccessfull multiple delete." #~ msgid "Module data received" #~ msgstr "Module data received" +#~ msgid "Pandora FMS assistant" +#~ msgstr "Pandora FMS assistant" + #~ msgid "Dynamic view" #~ msgstr "Dynamic view" @@ -39523,6 +48425,9 @@ msgstr "The user can only use the API" #~ 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 "Only average" +#~ msgstr "Only average" + #~ msgid "" #~ "In manual mode you should set the weights manually. In auto mode the weights " #~ "have default values.\n" @@ -39586,6 +48491,9 @@ msgstr "The user can only use the API" #~ msgid "Filter by tag" #~ msgstr "Filter by tag" +#~ msgid "Show the tree view" +#~ msgstr "Show the tree view" + #~ msgid "Group does not exist. Agent " #~ msgstr "Group does not exist. Agent " @@ -39607,15 +48515,25 @@ msgstr "The user can only use the API" #~ msgid "Time unavailable" #~ msgstr "Time unavailable" +#, php-format +#~ msgid "Last %s" +#~ msgstr "Last %s" + #~ msgid "This element should be deleted" #~ msgstr "This element should be deleted" #~ msgid "OLD PASS: " #~ msgstr "OLD PASS: " +#~ msgid "Create Recon Task" +#~ msgstr "Create Recon Task" + #~ msgid "Strict ACL" #~ msgstr "Strict ACL" +#~ msgid "No tag selected" +#~ msgstr "No tag selected" + #~ msgid "Display proc modules in binary format (OK/FAIL)." #~ msgstr "Display proc modules in binary format (OK/FAIL)." @@ -39654,6 +48572,12 @@ msgstr "The user can only use the API" #~ "href=\"index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=on" #~ "line\">go to Update Manager for more details." +#~ msgid "This license has expired." +#~ msgstr "This license has expired." + +#~ msgid "Source ID" +#~ msgstr "Source ID" + #, php-format #~ msgid "Agent '%s'" #~ msgstr "Agent '%s'" @@ -39661,11 +48585,20 @@ msgstr "The user can only use the API" #~ msgid "Events info (1hr)" #~ msgstr "Events info (1hr)" +#~ 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." + #~ msgid "Display proc modules in binary format (OK/FAIL)" #~ msgstr "Display proc modules in binary format (OK/FAIL)" -#~ msgid "DB Status" -#~ msgstr "DB Status" +#~ msgid "Netflow Statistics" +#~ msgstr "Netflow Statistics" #~ msgid "Advance Config AD" #~ msgstr "Advance Config AD" @@ -39673,6 +48606,10 @@ msgstr "The user can only use the API" #~ msgid "Show percentil 95º" #~ msgstr "Show percentil 95º" +#, php-format +#~ msgid "Percentile %dº" +#~ msgstr "Percentile %dº" + #~ msgid "Updated at realtime" #~ msgstr "Updated in real time" @@ -39766,6 +48703,23 @@ msgstr "The user can only use the API" #~ msgid "VNC Display (:0 by default)" #~ msgstr "VNC Display (:0 as default value)" +#~ 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" + +#~ 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) " + +#~ msgid "There are no recon task defined yet." +#~ msgstr "There are no recon tasks defined yet." + #~ msgid "" #~ "A service is a way to group your IT resources based on their " #~ "functionalities. \n" @@ -39793,9 +48747,25 @@ msgstr "The user can only use the API" #~ "\t\t\t\t\t\tHis company consists of three big departments: Management, an on-" #~ "line shop and support." +#~ msgid "Pandora FMS help system" +#~ msgstr "Pandora FMS help wizard" + #~ msgid "Press here to activate shortcut bar" #~ msgstr "Press here to activate the shortcut bar" +#~ msgid "QR Code of the page" +#~ msgstr "Page QR Code" + +#~ msgid "Go to Pandora FMS Website" +#~ msgstr "Go to the Pandora FMS Website" + +#~ 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." + #~ 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." @@ -39822,6 +48792,21 @@ msgstr "The user can only use the API" #~ "browsing speed, improving privacy settings, and so on. They also solve " #~ "security and functional issues." +#~ msgid "Language code for Pandora" +#~ msgstr "Pandora FMS Language settings" + +#~ msgid "Get more modules in Pandora FMS Library" +#~ msgstr "Get more modules on the Pandora FMS Library" + +#~ msgid "Any value below this number is discarted." +#~ msgstr "Any value below this number is discarded" + +#~ msgid "Any value over this number is discarted." +#~ msgstr "Any value larger than this number is discarded" + +#~ 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." + #~ msgid "" #~ "If cron is set the module interval is ignored and the module runs on the " #~ "specified date and time" @@ -39829,6 +48814,12 @@ msgstr "The user can only use the API" #~ "If cron is set, the module's interval is ignored and the module runs on the " #~ "specified date and time" +#~ 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" + +#~ msgid "Only it is show when
the agent is saved." +#~ msgstr "Only shown when
the agent is saved." + #~ msgid "" #~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace " #~ "the corresponding fields of this associated \"Default action\"." @@ -39950,6 +48941,16 @@ msgstr "The user can only use the API" #~ msgid "Default event fields will be loaded. Do you want to continue?" #~ msgstr "Default event fields will be loaded. Continue?" +#~ msgid "Descriptive name for the map" +#~ msgstr "Name for descriptive map" + +#~ 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." + #~ msgid "Select modules first" #~ msgstr "Select the modules first" @@ -39959,15 +48960,77 @@ msgstr "The user can only use the API" #~ msgid "No Validated" #~ msgstr "Not validated" +#~ msgid "Successfully created recon task" +#~ msgstr "Recon task successfully created" + +#~ msgid "Wrong format in Subnet field" +#~ msgstr "Wrong format in the Subnet field" + +#~ msgid "Successfully updated recon task" +#~ msgstr "Recon task successfully updated" + +#~ msgid "SNMP Default community" +#~ msgstr "Default SNMP community" + +#~ msgid "Recon scripts registered in Pandora FMS" +#~ msgstr "Recon scripts registered on Pandora FMS" + #~ msgid "URL and/or Integria password are incorrect" #~ msgstr "Incorrect Integria URL and/or password." +#~ 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." + #~ msgid "Limit parameters massive" #~ msgstr "Massive parameter limits" +#~ 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?" + +#~ 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." + +#~ 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." + +#~ 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." + #~ 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." +#~ msgid "Custom directory where the graphviz binaries are stored." +#~ msgstr "Custom directory in which graphviz binaries are stored." + +#~ msgid "" +#~ "Update Manager is one of the most advanced features of Pandora FMS " +#~ "Enterprise version, for more information visit http://pandorafms.com." +#~ msgstr "" +#~ "The Update Manager is one of the most advanced features on the Pandora FMS " +#~ "Enterprise Edition. For more information visit http://pandorafms.com." + #~ 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" @@ -39976,21 +49039,73 @@ msgstr "The user can only use the API" #~ "information. Not recommended for admin users because it can affect " #~ "performance." +#~ msgid "Visual console management" +#~ msgstr "Manage visual console" + +#~ msgid "Visual console writing" +#~ msgstr "Write visual console" + +#~ msgid "Visual console reading" +#~ msgstr "Read visual console" + +#~ msgid "Network maps management" +#~ msgstr "Manage network maps" + +#~ msgid "Network maps writing" +#~ msgstr "Write network maps" + +#~ msgid "Network maps reading" +#~ msgstr "Read network maps" + #~ msgid "Database event" #~ msgstr "Database events" +#~ msgid "Update to the last version" +#~ msgstr "Update to the latest version" + #~ msgid "Log max lifetime" #~ msgstr "Max. log lifespan" +#~ msgid "You can not get updates until you renew the license." +#~ msgstr "You cannot obtain updates until you renew the license." + +#~ msgid "Too much files in your tempora/attachment directory" +#~ msgstr "Too many files in your temporary/attachment directory" + +#~ 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" + +#~ msgid "PHP safe mode is enabled. Some features may not properly work." +#~ msgstr "PHP safe mode is enabled. Some features may not work properly." + #~ msgid "Module Agent address" #~ msgstr "Module's agent address" +#~ msgid "Error generating report" +#~ msgstr "Error when generating report" + #~ msgid "# Checks" #~ msgstr "# of checks" #~ msgid "% Fail" #~ msgstr "Fail %" +#~ msgid "Agent min" +#~ msgstr "Min amount of agents" + +#~ msgid "Monitors OK" +#~ msgstr "Monitors in OK status" + +#~ msgid "Alerts not fired" +#~ msgstr "Non-triggered alerts" + +#~ msgid "Last activity in Pandora FMS console" +#~ msgstr "Latest activity in the Pandora FMS console" + #~ msgid "" #~ "Cannot connect to the database, please check your database setup in the " #~ "include/config.php file.

\n" @@ -40004,6 +49119,40 @@ msgstr "The user can only use the API" #~ "incorrect, or \n" #~ "\t\t\tthe database's server is not running." +#~ 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." + +#~ 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.
" + #~ msgid "" #~ "For security reasons, config.php must have restrictive permissions, " #~ "and \"other\" users \n" @@ -40180,6 +49329,15 @@ msgstr "The user can only use the API" #~ msgid "Error updating special day. Id doesn't exists." #~ msgstr "Error updating the special day. The ID doesn't exist." +#~ msgid "Months" +#~ msgstr "Month" + +#~ msgid "Target IP cannot be blank." +#~ msgstr "The target IP cannot be left blank." + +#~ msgid "Index of images" +#~ msgstr "Image index" + #~ msgid "" #~ "This item is affected by a malformed planned downtime. Go to the planned " #~ "downtimes section to solve this." @@ -40196,6 +49354,9 @@ msgstr "The user can only use the API" #~ "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " #~ "update." +#~ msgid "Netflow statistics table" +#~ msgstr "Netflow statistics chart" + #~ msgid "Could not delete network map" #~ msgstr "Couldn't delete the network map" @@ -40214,6 +49375,9 @@ msgstr "The user can only use the API" #~ msgid "Show events graph" #~ msgstr "Show the events graph" +#~ msgid "Show agents by state: " +#~ msgstr "Show agents according to status: " + #~ msgid "Resolution epilog" #~ msgstr "Resolution epilogue" @@ -40252,6 +49416,24 @@ msgstr "The user can only use the API" #~ msgid "There was a problem deteling incident" #~ msgstr "There was a problem deleting the incident" +#~ msgid "Helps" +#~ msgstr "Help" + +#~ msgid "Helps found" +#~ msgstr "Help found" + +#~ msgid "Save the actual layout design" +#~ msgstr "Save actual layout design" + +#~ msgid "Different parent" +#~ msgstr "Different parent" + +#~ msgid "Different name" +#~ msgstr "Different name" + +#~ msgid "Go to pandorafms.com" +#~ msgstr "Go to pandorafms.com" + #~ msgid "Pandora Help" #~ msgstr "Pandora Help" @@ -40274,6 +49456,12 @@ msgstr "The user can only use the API" #~ msgid "Refresh network map state" #~ msgstr "Refresh network map state" +#~ 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 "" #~ "Enable this option will be synchronice the groups and tags each new user " #~ "when he/she will login." @@ -40281,6 +49469,9 @@ msgstr "The user can only use the API" #~ "Enable this option will be synchronice the groups and tags each new user " #~ "when he/she will login." +#~ msgid "This widget only working in desktop version." +#~ msgstr "This widget will only work on desktop version." + #~ 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 " @@ -40290,9 +49481,105 @@ msgstr "The user can only use the API" #~ "data. We recommend that events days purge is longer than events days passed " #~ "to history DB" +#~ msgid "No slides selected" +#~ msgstr "No slides selected" + +#~ msgid "Show a service map" +#~ msgstr "Show a service map" + +#~ msgid "Tab" +#~ msgstr "Tab" + +#~ msgid "Open all nodes" +#~ msgstr "Open all nodes" + +#~ 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 "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 "Module with icon" +#~ msgstr "Module with icon" + +#~ msgid "Dashboards list" +#~ msgstr "Dashboards list" + +#~ msgid "Show link to public dashboard" +#~ msgstr "Show link to public dashboard" + +#~ msgid "Dashboard name" +#~ msgstr "Dashboard name" + +#, php-format +#~ msgid "Error creating/updating %s/%s module groups" +#~ msgstr "Error creating/updating %s/%s module groups" + +#~ msgid "critical" +#~ msgstr "critical" + +#~ msgid "Ignore time" +#~ msgstr "Ignore time" + +#~ 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 "Percentil 95" #~ msgstr "Percentil 95" +#~ msgid "Apply all" +#~ msgstr "Apply all" + +#~ 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 "Main help" +#~ msgstr "Main help" + +#~ msgid "Pandora FMS instance identification wizard" +#~ msgstr "Pandora FMS instance identification wizard" + +#~ msgid "The Pandora FMS community wizard" +#~ msgstr "The Pandora FMS community wizard" + +#~ msgid "Return" +#~ msgstr "Return" + +#~ msgid "Join the Pandora FMS community" +#~ msgstr "Join the Pandora FMS community" + +#~ msgid "Stay up to date with the Pandora FMS community" +#~ msgstr "Stay up to date with the Pandora FMS community" + #~ msgid "" #~ "This is the online help for Pandora FMS console. This help is -in best cases-" #~ " just a brief contextual help, not intented to teach you how to use Pandora " @@ -40310,15 +49597,118 @@ msgstr "The user can only use the API" #~ "\tDownload the official documentation" +#~ msgid "" +#~ "Update Manager sends anonymous information about Pandora FMS usage (number " +#~ "of agents and modules running). To disable it, please remove the remote " +#~ "server address from the Update Manager plugin setup." +#~ msgstr "" +#~ "Update Manager sends anonymous information about Pandora FMS usage (number " +#~ "of agents and modules running). To disable it, please remove the remote " +#~ "server address from the Update Manager plugin setup." + +#~ msgid "Required" +#~ msgstr "Required" + +#~ msgid "Do you want to continue without any registration" +#~ msgstr "Do you want to continue without any registration?" + +#~ msgid "" +#~ "Report generating on the Enterprise version is also more powerful: it has " +#~ "wizards, you can schedule emails in PDF to be sent according to the schedule " +#~ "you decide, and it has a template system to create personalized reports " +#~ "quickly for each of your customers. It will even allow your customers to " +#~ "generate their own reports from templates created by you. If reports are key " +#~ "to your business, Pandora FMS Enterprise version is for you." +#~ msgstr "" +#~ "Report generating on the Enterprise version is also more powerful: it has " +#~ "wizards, you can schedule emails in PDF to be sent according to the schedule " +#~ "you decide, and it has a template system to create personalized reports " +#~ "quickly for each of your customers. It will even allow your customers to " +#~ "generate their own reports from templates created by you. If reports are key " +#~ "to your business, Pandora FMS Enterprise version is for you." + +#~ msgid "Already subscribed to Pandora FMS newsletter" +#~ msgstr "Already subscribed to Pandora FMS newsletter" + +#, php-format +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid " of module " +#~ msgstr " of module " + +#~ msgid "" +#~ "Cannot connect to the database, please check your database setup in the " +#~ "include/config.php file.

\n" +#~ "\t\t\tProbably your database, hostname, user or password values are " +#~ "incorrect or\n" +#~ "\t\t\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." + +#~ msgid "" +#~ "Click here to start the " +#~ "newsletter subscription process" +#~ msgstr "" +#~ "Click here to start the " +#~ "newsletter subscription process" + +#~ msgid "Not subscribed to the newsletter" +#~ msgstr "Not subscribed to the newsletter" + +#~ msgid "This instance is not registered in the Update manager" +#~ msgstr "This instance is not registered in the Update manager" + +#~ msgid "Time Uknown" +#~ msgstr "Time Uknown" + #~ msgid "Unsuccessfull action

" #~ msgstr "Unsuccessfull action

" +#~ msgid "The format is: [url='url to navigate']'text to show'[/url]" +#~ msgstr "The format is: [url='url to navigate']'text to show'[/url]" + +#~ msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" +#~ msgstr "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" + #~ msgid "The last version of package installed is:" #~ msgstr "The last version of package installed is:" +#~ msgid "Mark as read" +#~ msgstr "Mark as read" + +#~ msgid "Update manager » Messages" +#~ msgstr "Update manager » Messages" + +#~ msgid "Update manager messages" +#~ msgstr "Update manager messages" + +#~ msgid "Without protocol and port" +#~ msgstr "Without protocol and port" + +#~ msgid "Hostname of the eHorus API" +#~ msgstr "Hostname of the eHorus API" + +#~ 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" + +#~ msgid "0 to disable" +#~ msgstr "0 to disable" + #~ msgid "e.g., switch.ehorus.com" #~ msgstr "e.g., switch.eHorus.com" +#~ msgid "audit log directory" +#~ msgstr "audit log directory" + #~ msgid "" #~ "If you check this option, the lateral menus display with left click. " #~ "Otherwise it will show by placing the mouse over" @@ -40338,12 +49728,21 @@ msgstr "The user can only use the API" #~ msgid "Create group if doesn’t exist in destination" #~ msgstr "Create group if it doesn't exist in destination" +#~ msgid "® Ártica ST" +#~ msgstr "® Ártica ST" + #~ msgid "Top 5 VMs Disk Usage" #~ msgstr "Top 5 VMs Disk Usage" #~ msgid "VMware map" #~ msgstr "VMware map" +#~ msgid "WMware Plugin Settings" +#~ msgstr "WMware Plugin Settings" + +#~ msgid "Datacenter Name" +#~ msgstr "Datacenter Name" + #~ msgid "Plugin execution" #~ msgstr "Plugin execution" @@ -40374,6 +49773,33 @@ msgstr "The user can only use the API" #~ "\t5 minutes, for example, the Cron jobs script should be configured in the " #~ "cron to run every 5 minutes or less" +#~ msgid "The file is not readable by HTTP Server" +#~ msgstr "The file is not readable by HTTP Server" + +#~ msgid "The file is not writable by HTTP Server" +#~ msgstr "The file is not writable by HTTP Server" + +#~ msgid "Show SLA percent" +#~ msgstr "Show SLA percent" + +#~ msgid "Show Agent/Module View" +#~ msgstr "Show Agent/Module View" + +#~ msgid "Show branch children" +#~ msgstr "Show branch children" + +#~ 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 myself: 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." + +#~ msgid "Problems with disable functions in PHP.INI" +#~ msgstr "Problems with disabling functions in PHP.INI" + #, php-format #~ msgid "" #~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not " @@ -40382,5 +49808,1229 @@ msgstr "The user can only use the API" #~ "Your PHP environment is set with %d max_input_vars. Maybe you must not set " #~ "this value with upper values." +#~ msgid "Pandora Console URL" +#~ msgstr "Pandora FMS Console URL" + +#~ msgid "Number fired of alerts" +#~ msgstr "Number of alerts triggered" + +#~ msgid "If it is empty, Pandora searchs the ping system." +#~ msgstr "If empty, Pandora FMS will search the ping system" + +#~ msgid "If it is empty, Pandora searchs the traceroute system." +#~ msgstr "If empty, Pandora FMS will search the traceroute system" + +#~ msgid "If it is empty, Pandora searchs the dig system." +#~ msgstr "If empty, Pandora FMS will search the dig system" + +#~ msgid "If it is empty, Pandora searchs the nmap system." +#~ msgstr "If empty, Pandora FMS will search the Nmap system." + +#~ msgid "If it is empty, Pandora searchs the snmpget system." +#~ msgstr "If empty, Pandora FMS will search the snmpget system" + +#~ msgid "" +#~ "This extension makes registration of server plugins more easy. \n" +#~ "\t\t\t\t\t\tHere you can upload a server plugin in Pandora FMS 3.x zipped " +#~ "format (.pspz). \n" +#~ "\t\t\t\t\t\tPlease refer to documentation on how to obtain and use Pandora " +#~ "FMS Server Plugins.\n" +#~ "\t\t\t\t\t\t

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

You can get more plugins from our Public Resource Library. " + +#~ msgid "Pandora Server load" +#~ msgstr "Pandora FMS Server load" + +#~ msgid "Pandora Server Apache load" +#~ msgstr "Pandora FMS Server Apache load" + +#~ msgid "Pandora Server MySQL load" +#~ msgstr "Pandora FMS Server MySQL load" + +#~ msgid "Pandora Server Disk IO Wait" +#~ msgstr "Pandora FMS Server Disk IO Wait" + +#~ msgid "Pandora Server Pending packets" +#~ msgstr "Pending packages from Pandora FMS Server" + +#~ msgid "Pandora Server CPU" +#~ msgstr "Pandora FMS Server CPU" + +#~ msgid "" +#~ "The new Update Manager " +#~ "client is shipped with Pandora FMS It helps system administrators to update " +#~ "their Pandora FMS automatically, since the Update Manager does the task of " +#~ "getting new modules, new plugins and new features (even full migrations " +#~ "tools for future versions) automatically." +#~ msgstr "" +#~ "The new Update Manager " +#~ "client is included on Pandora FMS. It helps system administrators to update " +#~ "their Pandora FMS automatically, since the Update Manager retrieves new " +#~ "modules, new plugins and new features automatically (even full migrations " +#~ "tools for future versions)." + +#~ msgid "" +#~ "Do you want to consolidate all your system monitoring? Do you have many " +#~ "systems, making it difficult to manage them in a comprehensive manner? Would " +#~ "you like to deploy monitoring, alerts and even local plugins with a single " +#~ "click? Pandora FMS Enterprise Policies are exactly what you need; you'll " +#~ "save time, effort and annoyances. More information pandorafms.com" +#~ msgstr "" +#~ "Do you want to consolidate all your system monitoring? Do you have many " +#~ "systems, making it difficult to manage them in a comprehensive manner? Would " +#~ "you like to deploy monitoring, alerts and even local plugins with a single " +#~ "click? Pandora FMS Enterprise Policies are exactly what you need. You will " +#~ "save time and effort, and avoid problems. More information at pandorafms.com." + +#~ msgid "" +#~ "The Enterprise version comes with a different update system, with fully " +#~ "tested, professionally-supported packages, and our support team is there to " +#~ "help you in case of problems or queries. Update Manager is another feature " +#~ "present in the Enterprise version and not included in the OpenSource " +#~ "version. There are lots of advanced business-oriented features contained in " +#~ "Pandora FMS Enterprise Edition. For more information visit pandorafms.com" +#~ msgstr "" +#~ "The Enterprise version comes with a different update system, with fully " +#~ "tested, professionally-supported packages, and our support team is there to " +#~ "help you in case of problems or queries. Update Manager is another feature " +#~ "included in the Enterprise version and not included in the OpenSource " +#~ "version. There are lots of advanced business-oriented features contained in " +#~ "Pandora FMS Enterprise Edition. For more information visit pandorafms.com" + +#~ msgid "" +#~ "The Update Manager client is included on Pandora FMS. It helps system " +#~ "administrators update their Pandora FMS automatically, since the Update " +#~ "Manager retrieves new modules, new plugins and new features (even full " +#~ "migrations tools for future versions) automatically." +#~ msgstr "" +#~ "The Update Manager client is included on Pandora FMS. It helps system " +#~ "administrators to update Pandora FMS automatically, since the Update Manager " +#~ "retrieves new modules, new plugins and new features (even full migrations " +#~ "tools for future versions) automatically." + +#~ msgid "" +#~ "Access to this page is restricted to authorized users only, please contact " +#~ "system administrator if you need assistance.

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

\n" +#~ "\tPlease know that all attempts to access this page are recorded in security " +#~ "logs of Pandora FMS System Database." + +#~ msgid "" +#~ "Pandora FMS Enterprise also features event correlation. Through correlation " +#~ "you can generate realtime alerts and / or new events based on logical rules. " +#~ "This allows you to automate troubleshooting. If you know the value of " +#~ "working with events, event correlation will take you to a new level." +#~ msgstr "" +#~ "Pandora FMS Enterprise also features event correlation. Through correlation " +#~ "you can generate real-time alerts and/or new events based on logical rules. " +#~ "This allows you to automate troubleshooting. If you know how important it is " +#~ "to work with events, event correlation will take you to a new level." + +#~ 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 automated graphs and the " +#~ "graphs the user customizes by using one or more modules to do so." + +#~ 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 a personal monitoring map.\n" +#~ "\t\t\tThe new visual console editor is much more practical, although the " +#~ "previous visual console editor had its advantages. \n" +#~ "\t\t\tOn the new visual console, we have successfully imitated the sensation " +#~ "and touch of a drawing application like GIMP. \n" +#~ "\t\t\tWe have 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'. " + +#~ 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 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 customized \n" +#~ "\t\tdetection. You can define your own customized recon script." + +#~ msgid "" +#~ "Pandora FMS contains a scheduled downtime management system. \n" +#~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " +#~ "intervals whenever there is down time by deactivating the agent.\n" +#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a " +#~ "down time, the down-time intervals aren't taken into \n" +#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " +#~ "agents don't contain any data within those intervals. " +#~ msgstr "" +#~ "Pandora FMS contains a scheduled downtime management system. \n" +#~ "\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " +#~ "intervals whenever there is a downtime by deactivating the agent.\n" +#~ "\t\t\t\t\t\tIf an agent is deactivated, it does not gather information. " +#~ "During a downtime, down-time intervals are not taken into \n" +#~ "\t\t\t\t\t\taccount for most metrics or report types, because agents do not " +#~ "contain any data within those intervals. " + +#~ msgid "" +#~ "From Pandora FMS versions 5 and above, the access to modules can be " +#~ "configured by a tags system.\n" +#~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " +#~ "chosen modules. \n" +#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " +#~ "tags in this way. " +#~ msgstr "" +#~ "On Pandora FMS version 5 and newer, access to modules can be configured with " +#~ "a tagging system.\n" +#~ "\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +#~ "chosen modules. \n" +#~ "\t\t\t\t\t\t\t\tUser access can therefore be restricted to modules with " +#~ "certain tags. " + +#~ msgid "Blank characters are used as AND conditions" +#~ msgstr "Blank characters are used as AND conditions." + +#~ 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 " +#~ "will 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!" + +#~ 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 authentication system, the problem could be that " +#~ "Pandora FMS cannot override the authorization variables from the " +#~ "configuration database. Remove them from your database by " +#~ "executing:
DELETE FROM tconfig WHERE token = \"auth\";
" + +#~ 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." + +#~ msgid "This is your last activity in Pandora FMS console" +#~ msgstr "This is the last activity you performed on the Pandora FMS console." + +#~ 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 "" +#~ "The Pandora FMS help wizard has been asked for a reference that currently " +#~ "does not exist. There is no help content available for this topic." + +#~ msgid "Pandora audit" +#~ msgstr "Pandora FMS audit" + +#~ msgid "You can remotely edit this agent configuration" +#~ msgstr "Agent settings can be remotely edited." + +#~ msgid "This field allows url insertion using the BBCode's url tag" +#~ msgstr "This field allows URL insertion using the BBCode URL tag." + +#~ msgid "Agent icon for GIS Maps." +#~ msgstr "Agent icon for GIS Maps" + +#~ msgid "Insert by Pandora Console" +#~ msgstr "Insert from Pandora FMS Console" + +#~ msgid "Update by Pandora Console" +#~ msgstr "Update from Pandora FMS Console" + +#~ msgid "Save by Pandora Console" +#~ msgstr "Save from Pandora FMS Console" + +#~ msgid "Agents defined in Pandora" +#~ msgstr "Agents defined in Pandora FMS" + +#~ 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 "" +#~ "You have probably upgraded recently from an earlier version of Pandora FMS " +#~ "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" + +#~ msgid "" +#~ "In case you use an Export server you can link this module and export data to " +#~ "one these." +#~ msgstr "" +#~ "If you are using an Export server you can link this module and export data " +#~ "to one of these." + +#~ 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 FMS Server settings are correct and that the " +#~ "database maintenance daemon is running. It is very important to keep your " +#~ "database up to date in order to get the best performance and results from " +#~ "Pandora FMS." + +#~ 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 is possible to change " +#~ "between connections on the map." + +#~ msgid "Groups defined in Pandora" +#~ msgstr "Groups defined in Pandora FMS" + +#~ msgid "Module groups defined in Pandora" +#~ msgstr "Module groups defined in Pandora FMS" + +#~ msgid "Show address instead module name." +#~ msgstr "Show address instead of module name" + +#~ msgid "Hide not init agents" +#~ msgstr "Hide not initialized agents" + +#~ msgid "Please select Agent" +#~ msgstr "Please select an agent" + +#~ 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 want to sort the items into the report?\\nThis action " +#~ "changes the way items are sorted into the database." + +#~ msgid "The parent relationships in Pandora will be drawn in the map." +#~ msgstr "" +#~ "The parent-child relations in Pandora FMS will be represented on the map." + +#~ msgid "Recon-task name already exists" +#~ msgstr "The recon task name already exists." + +#~ msgid "Recon-task name already exists and incorrect format in Subnet field" +#~ msgstr "" +#~ "The recon task name already exists and the format is incorrect for the " +#~ "Subnet field." + +#~ msgid "Successfully deleted recon task" +#~ msgstr "Recon task deleted successfully" + +#~ 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." + +#~ msgid "There are no recon task configured" +#~ msgstr "There are no recon tasks configured." + +#~ 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 will " +#~ "not run." + +#~ 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 do not want to perform a sweep using " +#~ "portscan." + +#~ msgid "Pandora servers" +#~ msgstr "Pandora FMS servers" + +#~ msgid "Plugin creation" +#~ msgstr "Plugin creation" + +#~ msgid "Plugins registered in Pandora FMS" +#~ msgstr "Plugins registered on Pandora FMS" + +#~ msgid "Problem deleting reconscript" +#~ msgstr "Error deleting recon script" + +#~ msgid "reconscript deleted successfully" +#~ msgstr "Recon script deleted successfully" + +#~ msgid "There are no recon scripts in the system" +#~ msgstr "There are no recon scripts in the system." + +#~ msgid "This selects what to change by clicking on the map" +#~ msgstr "Select what changes when you click on the map" + +#~ 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 " +#~ "is illogical." + +#~ msgid "" +#~ "Set a value too high cause a slowdown on console and a performance penalty " +#~ "in the system." +#~ msgstr "" +#~ "Setting excessively high values will cause a slowdown on the console and a " +#~ "performance problem in the system." + +#~ msgid "" +#~ "If realtime statistics are disabled, statistics interval resfresh will be " +#~ "set here." +#~ msgstr "" +#~ "If real-time statistics are disabled, the refresh interval for statistics " +#~ "will be set here." + +#~ 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 " +#~ "notification space." + +#~ 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, if remote authentication (LDAP, etc.) fails." + +#~ msgid "e.g., 18080" +#~ msgstr "e.g. 18080" + +#~ msgid "Directory where agent remote configuration is stored." +#~ msgstr "Directory in which the remote configuration of the agent is stored." + +#~ msgid "" +#~ "Path where you put your cert and name of this cert. Remember your cert only " +#~ "in .pem extension." +#~ msgstr "" +#~ "Path where you insert your certificate and name of this certificate. " +#~ "Remember that your certificate should only be in .pem extension." + +#~ msgid "Enable GIS features in Pandora Console" +#~ msgstr "Enable GIS features for the Pandora FMS Console" + +#~ 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 Pandora FMS to be accessible via a public URL " +#~ "(for example using Apache mod_proxy settings)" + +#~ msgid "" +#~ "When it is set as \"yes\" in some important sections check if the user have " +#~ "gone from url Pandora." +#~ msgstr "" +#~ "If enabled, it actively checks if the user comes from a Pandora FMS URL." + +#~ msgid "The planned downtimes created in the past will affect the SLA reports" +#~ msgstr "Planned downtimes created in the past will affect the SLA reports." + +#~ 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 "" +#~ "Settings of the assistant. When 'Full mode' is enabled the icon in the " +#~ "header and help texts will all be active and will automatically be " +#~ "displayed. 'On demand' mode is the same as 'Full mode' but users will choose " +#~ "when the helper is activated. In 'Expert' mode, the icons in the header and " +#~ "help texts are all disabled." + +#~ msgid "Directory where the server logs are stored." +#~ msgstr "The directory where server logs are stored." + +#~ 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." + +#~ msgid "Sets the maximum lifetime for netflow data in days." +#~ msgstr "Sets the max. lifespan for Netflow data in days." + +#~ 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." + +#~ 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, you need to truncate it into N " +#~ "characters in some sections in the Pandora FMS Console." + +#~ 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 name has a lot of characters, you need to truncate it into N " +#~ "characters in some sections of the Pandora FMS Console." + +#~ msgid "This enabling this, max, min and avg values will be shown with units." +#~ msgstr "" +#~ "When enabled, maximum, minimum and average values are displayed with units." + +#~ 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, you need to truncate it into N " +#~ "characters in some sections of the Pandora FMS Console." + +#~ msgid "" +#~ "When the description name have a lot of characters, in some places in " +#~ "Pandora Console it is necesary truncate to N characters." +#~ msgstr "" +#~ "When the description name has a lot of characters, you need to truncate it " +#~ "into N characters in some sections of the Pandora FMS Console." + +#~ msgid "Graph resolution (1-low, 5-high)" +#~ msgstr "Graph resolution (1 = low / 5 = high)" + +#~ msgid "Whether to use Javascript or static PNG graphs" +#~ msgstr "Javascript or static PNG graphs" + +#~ msgid "" +#~ "This interval will affect to the lines between elements on the Visual Console" +#~ msgstr "" +#~ "This interval will affect the lines between elements on the Visual Console" + +#~ msgid "Show QR Code icon in the header" +#~ msgstr "Display the QR Code icon on the header" + +#~ msgid "Mark as not read" +#~ msgstr "Mark as unread" + +#~ msgid "There is not any update manager messages." +#~ msgstr "There are no update manager messages" + +#~ 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 is recommended to make a backup before " +#~ "continuing the updating process." + +#~ msgid "Profiles defined in Pandora" +#~ msgstr "Profiles defined on Pandora FMS" + +#~ msgid "Pandora management" +#~ msgstr "Pandora FMS management" + +#~ msgid "" +#~ "The current authentication scheme doesn't support creating users from " +#~ "Pandora FMS" +#~ msgstr "" +#~ "The current authentication scheme does not support the creation of users on " +#~ "Pandora FMS." + +#~ msgid "" +#~ "Unsucessful delete profile. Because the profile is used by some admin users." +#~ msgstr "Error deleting profile: it is being used by some admin users." + +#~ msgid "Users defined in Pandora" +#~ msgstr "Users defined on Pandora FMS" + +#~ msgid "Netflow Pie" +#~ msgstr "Netflow Pie Chart" + +#~ msgid "Correct validating of all alerts." +#~ msgstr "All alerts successfully validated" + +#~ msgid "Default show only average or min and max" +#~ msgstr "Only avg, min and max are displayed by default" + +#~ msgid "" +#~ "Please change the default password because is a common vulnerability " +#~ "reported." +#~ msgstr "" +#~ "Please change the default password. It is a commonly reported security issue " +#~ "not to do so." + +#~ msgid "Remote configuration directory is not writtable for the console" +#~ msgstr "Remote configuration directory is not writable by the console" + +#~ 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." + +#~ msgid "Default password for \"Admin\" user has not been changed." +#~ msgstr "The default password for the \"Admin\" user has not been changed." + +#~ msgid "Remote configuration directory is not readble for the console" +#~ msgstr "Remote configuration directory is unreadable for the console" + +#~ 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 into the main index.php file." + +#~ msgid "Database maintance problem" +#~ msgstr "Database maintenance issue" + +#~ 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 48 hours " +#~ "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." + +#~ msgid "Default font doesnt exist" +#~ msgstr "The default font does not exist." + +#~ msgid "" +#~ "Your defined font doesnt exist or is not defined. Please check font " +#~ "parameters in your config" +#~ msgstr "" +#~ "Your selected font does not exist or is not defined. Please check the font " +#~ "parameters in your configuration." + +#~ msgid "" +#~ "Event storm protection is activated. No events will be generated during this " +#~ "mode." +#~ msgstr "" +#~ "Event Storm protection is enabled. No events will be generated as long as " +#~ "this mode is active." + +#~ msgid "You need to restart server after altering this configuration setting." +#~ msgstr "" +#~ "You will need to restart the server after modifying this configuration " +#~ "setting." + +#~ 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 do not forget to restart the " +#~ "Apache process after the changes are completed." + +#~ msgid "New update of Pandora Console" +#~ msgstr "New Pandora FMS Console update" + +#~ 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)." + +#~ 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 by the " +#~ "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." + +#~ msgid "Going down to critical state" +#~ msgstr "Changing down to critical status" + +#~ msgid "Could not be save" +#~ msgstr "Could not be saved" + +#~ msgid "Units. Value" +#~ msgstr "Unit value" + +#~ msgid "History db" +#~ msgstr "History DB" + +#~ 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 FMS. A common installation must " +#~ "have at least one group." + +#~ msgid "Total monitors" +#~ msgstr "Total number of monitors" + +#~ msgid "Total alerts monitored" +#~ msgstr "Total number of monitored alerts" + +#~ 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 set up the email configuration on the " +#~ "Pandora FMS server." + +#~ 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" + +#~ msgid "Pandora FMS mobile" +#~ msgstr "Pandora FMS Mobile" + +#~ 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 need help.

Please remember that " +#~ "any attempts to access this page will be recorded on the Pandora FMS System " +#~ "Database." + +#~ msgid "Avg Only" +#~ msgstr "Avg only" + +#, php-format +#~ msgid "Filter Networkmaps by %s" +#~ msgstr "Filter network maps by %s" + +#~ 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 are not shown in real time." + +#~ msgid "Please, make your changes and apply with the Reload button" +#~ msgstr "" +#~ "Please establish your changes and apply them with the Reload button." + +#~ msgid "Pandora FMS Graph configuration menu" +#~ msgstr "Pandora FMS graph configuration menu" + +#~ msgid "Avg. Only" +#~ msgstr "Avg. only" + +#~ msgid "" +#~ "Show events is disabled because this Pandora node is set the event " +#~ "replication." +#~ msgstr "" +#~ "Display of events is disabled because this Pandora FMS node has the event " +#~ "replication configured." + +#~ msgid "Successfully set in process" +#~ msgstr "Successfully set as 'in process'" + +#~ msgid "Could not be set in process" +#~ msgstr "Could not be set as 'in process'" + +#~ msgid "" +#~ "You can not change your password from Pandora FMS under the current " +#~ "authentication scheme" +#~ msgstr "" +#~ "You cannot change your password from Pandora FMS under the current " +#~ "authentication scheme." + +#~ msgid "" +#~ "You can not change your user info from Pandora FMS under the current " +#~ "authentication scheme" +#~ msgstr "" +#~ "You cannot change your user info from Pandora FMS under the current " +#~ "authentication scheme." + +#~ msgid "Error login." +#~ msgstr "Login error" + +#~ msgid "Users Online" +#~ msgstr "Users online" + +#~ msgid "Connection established...get last 24h messages..." +#~ msgstr "Connection established - retrieving messages from the past 24h" + +#~ msgid "Error in connection." +#~ msgstr "Connection error" + +#~ msgid "Error sendding message." +#~ msgstr "Error sending message" + +#~ msgid "Error: there are cells not empty." +#~ msgstr "Error: cells cannot be 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 an empty cell. Please save the " +#~ "layout before adding any widget in this cell." + +#~ msgid "There are unsaved changes" +#~ msgstr "There are unsaved changes." + +#~ msgid "Config widget" +#~ msgstr "Configure widget" + +#~ 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 "Empty for a transparent background color or CSS compatible value" +#~ msgstr "Empty for a transparent background colour or CSS compatible value" + +#~ msgid "Alerts Fired report" +#~ msgstr "Triggered alerts report" + +#~ msgid "Latest events list" +#~ msgstr "List of latest events" + +#~ msgid "12 Hours" +#~ msgstr "12 hours" + +#~ msgid "24 Hours" +#~ msgstr "24 hours" + +#~ msgid "2 Hours" +#~ msgstr "2 hours" + +#~ msgid "48 Hours" +#~ msgstr "48 hours" + +#~ msgid "Maps status" +#~ msgstr "Map status" + +#~ msgid "Separator of data" +#~ msgstr "Data separator" + +#~ msgid "Show a map of the monitored network" +#~ msgstr "Show a map of the monitored network" + +#~ msgid "My Post" +#~ msgstr "My post" + +#~ msgid "Missing id" +#~ msgstr "Missing ID" + +#~ msgid "Show a top n of agents modules." +#~ msgstr "Show top N of agents modules" + +#~ msgid "Selection several modules" +#~ msgstr "Select several modules" + +#~ msgid "Selection module one by one" +#~ msgstr "Selection modules one by one" + +#~ 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 "Top N Events by module." +#~ msgstr "Top N events by module" + +#~ msgid "Top N events by module." +#~ msgstr "Top N events by module" + +#~ msgid "" +#~ "The user doesn't have permission to read agents. Please contact with your " +#~ "pandora administrator." +#~ msgstr "" +#~ "The user does not have permission to read agents. Please contact with your " +#~ "Pandora FMS administrator." + +#~ msgid "Pandora database backup utility" +#~ msgstr "Pandora FMS database backup utility" + +#~ msgid "Cron extension has never run or it's not configured well" +#~ msgstr "Cron extension has never run or is not well configured." + +#~ msgid "Please, add the following line to your crontab file" +#~ msgstr "Please add the following line to your crontab file." + +#~ msgid "Please check that the web server has write rights on the file" +#~ msgstr "Please check that the web server has write access on the file." + +#~ msgid "The file does not exists" +#~ msgstr "The file does not exist." + +#~ msgid "Plugin Path" +#~ msgstr "Plugin path" + +#~ msgid "Delete remote conf agent files in Pandora" +#~ msgstr "Delete remote conf agent files in Pandora FMS" + +#~ msgid "Plug-in cannot be disabled" +#~ msgstr "Plugin cannot be disabled" + +#~ msgid "Plug-in enabled succesfully" +#~ msgstr "Plugin enabled successfully" + +#~ msgid "Plug-in cannot be enabled" +#~ msgstr "Plugin cannot be enabled" + +#~ msgid "Plug-in disabled succesfully" +#~ msgstr "Plugin disabled successfully" + +#~ 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 FMS Console under " +#~ "'images/custom_logo'. You can upload more files (ONLY IN JPEG) using the " +#~ "console upload tool." + +#~ msgid "Generate a dynamic report\"" +#~ msgstr "Generate a dynamic report" + +#~ msgid "Delete remote conf server files in Pandora" +#~ msgstr "Delete remote configuration server files in Pandora FMS" + +#~ msgid "" +#~ "Delete this conf file implies that Pandora will send back local config to " +#~ "console" +#~ msgstr "" +#~ "Deleting this configuration file implies that Pandora FMS will send local " +#~ "configuration back to console" + +#~ 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 "Remote Integria" +#~ msgstr "Remote Integria IMS" + +#~ 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, it is not used in graphs or " +#~ "event viewer." + +#~ msgid "Number of days before events is transfered to history database." +#~ msgstr "Number of days before events are transferred to history database" + +#~ msgid "Time interval between data transfer." +#~ msgstr "Time interval between data transfer" + +#~ 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 "Number of days before data is transfered to history database." +#~ msgstr "Number of days before the data is transferred to history database." + +#~ msgid "Only one service map widget is supported at this moment" +#~ msgstr "Only one service map widget is supported at this moment." + +#~ msgid "" +#~ "Server name doesnt match. Check the node server name and configure the same " +#~ "one on metasetup" +#~ msgstr "" +#~ "Server name does not match. Check the node server name and configure the " +#~ "same one on metasetup." + +#~ msgid "Restoring a Pandora database backup must be done manually" +#~ msgstr "Restoration the Pandora FMS database backup must be done manually." + +#~ msgid "Ignore Time" +#~ msgstr "Ignore time" + +#~ msgid "There are no modules." +#~ msgstr "There are no modules" + +#, php-format +#~ msgid "" +#~ "License out of limits

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

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

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

This " +#~ "license allows %d modules and you have %d modules configured." + +#~ msgid "Could not be create, duplicated server name." +#~ msgstr "Could not be created, duplicated server name." + +#~ msgid "Succesful updated" +#~ msgstr "Updated successfully" + +#~ msgid "Unsucessful updated" +#~ msgstr "Error updating" + +#~ 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 " +#~ "the 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 FMS System Database." + +#~ msgid "There was a problem loading tag" +#~ msgstr "There was a problem loading the tag." + +#~ msgid "Can't connect to Pandora FMS instance" +#~ msgstr "Cannot connect to the Pandora FMS instance" + +#~ msgid "No Dashboards" +#~ msgstr "No dashboards" + +#~ msgid "Visual console are not shown due screen size limitations" +#~ msgstr "Visual console is not shown due to screen size limitations" + #~ msgid "For to view the list modules paginated, set in setup visuals." #~ msgstr "To view the list modules paginated, set in setup visuals." + +#~ 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." + +#~ msgid "Alerts Fired" +#~ msgstr "Triggered alerts" + +#~ msgid "Successful the DB Pandora has all tables" +#~ msgstr "Success! Pandora FMS DB contains all tables" + +#, 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. You can upload a " +#~ "resource template in Pandora FMS 3.x format (.ptr files) here. Please refer " +#~ "to our documentation for more information on how to obtain and use Pandora " +#~ "FMS resources.

You can get more resources in our Public " +#~ "Resource Library." + +#, php-format +#~ msgid "" +#~ "You can find more help in the Pandora's wiki" +#~ msgstr "" +#~ "You can find more help on the Pandora FMS wiki" + +#~ msgid "Thanks for using Pandora FMS" +#~ msgstr "Thank you for using Pandora FMS." + +#~ msgid "Or disable Pandora FMS enterprise" +#~ msgstr "Or disable Pandora FMS Enterprise" + +#~ msgid "Run import command using the following command" +#~ msgstr "Please execute the import command using the following command" + +#, 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. To " +#~ "avoid problems with large updates please set it to 100M." + +#, php-format +#~ msgid "" +#~ "Your PHP has set post parameter max size limit in %s. For avoid problems " +#~ "with big updates please set to 100M" +#~ msgstr "" +#~ "Your PHP has set post parameter max size limit in %s. To avoid problems with " +#~ "large updates please set it to 100M." + +#, 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. To avoid problems with large updates " +#~ "please set it to 500M." + +#~ msgid "To get your Pandora FMS Enterprise License:" +#~ msgstr "To get your Pandora FMS Enterprise License:" + +#~ msgid "Alert report group" +#~ msgstr "Group alert report" + +#~ 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 Ártica ST at " +#~ "info@artica.es for a valid license:" + +#~ msgid "When connecting to Artica server." +#~ msgstr "When connecting to Ártica ST server" + +#~ msgid "" +#~ "In the same fashion, when subscribed to the newsletter you accept that your " +#~ "email will pass on to a database property of Artica TS. This data will " +#~ "solely be used to provide you with information about Pandora FMS and will " +#~ "not be conceded to third parties. You'll be able to unregister from said " +#~ "database at any time from the newsletter subscription options" +#~ msgstr "" +#~ "Similarly, when subscribing to the newsletter you accept that your email " +#~ "will be forwarded to a database owned by Ártica ST. This data will solely be " +#~ "used to provide you with information about Pandora FMS and will not be " +#~ "conceded to third parties. You can unregister from this database at any time " +#~ "from the newsletter subscription options." + +#~ msgid "" +#~ "When you subscribe to the Pandora FMS Update Manager service, you accept " +#~ "that we register your Pandora instance as an identifier on the database " +#~ "owned by Artica TS. This data will solely be used to provide you with " +#~ "information about Pandora FMS and will not be conceded to third parties. " +#~ "You'll be able to unregister from said database at any time from the Update " +#~ "Manager options" +#~ msgstr "" +#~ "When you subscribe to the Pandora FMS Update Manager service, you accept " +#~ "that we register your Pandora FMS instance as an identifier on the database " +#~ "owned by Ártica ST. This data will solely be used to provide you with " +#~ "information about Pandora FMS and will not be conceded to third parties. You " +#~ "can unregister from this database at any time from the Update Manager " +#~ "options." + +#~ msgid "Please contact Artica at info@artica.es for a valid licence." +#~ msgstr "Please contact Ártica ST at info@artica.es for a valid license." + +#~ msgid "Please contact Artica at info@artica.es to renew the license." +#~ msgstr "Please contact Ártica ST at info@artica.es to renew the license." + +#~ 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 also need to monitor possible issues which might take place on " +#~ "these subsystems within the system monitoring process.\n" +#~ "\t\t\tTo do so, the Pandora FMS team has designed an issue manager from " +#~ "which any user is able to open issues, \n" +#~ "\t\t\tthat explain what has happened on the network, and update them with " +#~ "comments and files, at any time, if necessary.\n" +#~ "\t\t\tThis system allows users to work as a team, along with different roles " +#~ "and work-flow systems which allow an issue to be \n" +#~ "\t\t\tmoved from one group to another, and members from different groups and " +#~ "different people to work on the same issue, sharing information and files.\n" +#~ "\t\t" + +#~ 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 issue or not." + +#~ msgid "Enable Integria incidents in Pandora Console" +#~ msgstr "Enable Integria IMS issues in the Pandora FMS Console" + +#~ msgid "" +#~ "Limit the number of events that are replicated metaconsole each specified " +#~ "range." +#~ msgstr "" +#~ "Limit the number of events that are replicated in the Metaconsole during " +#~ "each specified range." + +#~ 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 must " +#~ "be configured on the Metaconsole." diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index 12b02c4c3d..87d12a8a8d 100644 Binary files a/pandora_console/include/languages/es.mo and b/pandora_console/include/languages/es.mo differ diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 4ee78c61fe..0f65189eb5 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -8,1279 +8,1555 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-20 11:12+0100\n" -"PO-Revision-Date: 2020-01-28 11:52+0000\n" +"POT-Creation-Date: 2020-06-05 14:43+0200\n" +"PO-Revision-Date: 2020-06-09 07:38+0000\n" "Last-Translator: Laura Cano \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: 2020-01-29 12:08+0000\n" -"X-Generator: Launchpad (build b8d1327fd820d6bf500589d6da587d5037c7d88e)\n" +"X-Launchpad-Export-Date: 2020-06-11 08:52+0000\n" +"X-Generator: Launchpad (build b190cebbf563f89e480a8b57f641753c8196bda0)\n" -#: ../../extensions/agents_alerts.php:55 -#: ../../extensions/agents_modules.php:316 -#: ../../operation/agentes/group_view.php:61 -#: ../../operation/agentes/tactical.php:45 -#: ../../enterprise/extensions/ipam/ipam_list.php:142 -#: ../../enterprise/godmode/reporting/cluster_view.php:284 -#: ../../enterprise/operation/services/services.list.php:416 -#: ../../enterprise/operation/services/services.service.php:180 -msgid "Last update" -msgstr "Última actualización" +#: ../../views/dashboard/header.php:40 +#: ../../enterprise/meta/screens/screens.visualmap.php:176 +#: ../../enterprise/operation/agentes/manage_transmap.php:108 +#: ../../extensions/disabled/matrix_events.php:28 +#: ../../extensions/agents_alerts.php:125 +#: ../../extensions/agents_modules.php:374 +#: ../../extensions/agents_modules.php:381 +#: ../../extensions/agents_modules.php:384 +#: ../../operation/visual_console/pure_ajax.php:169 +#: ../../operation/visual_console/view.php:184 +#: ../../operation/visual_console/legacy_view.php:172 +#: ../../operation/gis_maps/render_view.php:123 +#: ../../operation/reporting/reporting_viewer.php:114 +#: ../../operation/reporting/graph_viewer.php:173 +msgid "Full screen mode" +msgstr "Modo pantalla completa" -#: ../../extensions/agents_alerts.php:94 -#: ../../extensions/agents_modules.php:389 ../../general/ui/agents_list.php:76 -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/agentes/configurar_agente.php:449 -#: ../../godmode/agentes/modificar_agente.php:164 -#: ../../godmode/agentes/modificar_agente.php:491 -#: ../../godmode/agentes/planned_downtime.editor.php:647 -#: ../../godmode/agentes/planned_downtime.editor.php:1036 -#: ../../godmode/agentes/planned_downtime.list.php:400 -#: ../../godmode/alerts/alert_actions.php:184 -#: ../../godmode/alerts/alert_commands.php:402 -#: ../../godmode/alerts/alert_special_days.php:274 -#: ../../godmode/alerts/alert_templates.php:366 -#: ../../godmode/alerts/configure_alert_action.php:140 -#: ../../godmode/alerts/configure_alert_command.php:180 -#: ../../godmode/alerts/configure_alert_special_days.php:69 -#: ../../godmode/alerts/configure_alert_template.php:917 -#: ../../godmode/events/custom_events.php:99 -#: ../../godmode/events/event_edit_filter.php:265 -#: ../../godmode/events/event_filter.php:122 -#: ../../godmode/events/event_responses.editor.php:87 -#: ../../godmode/events/event_responses.list.php:52 -#: ../../godmode/gis_maps/configure_gis_map.php:462 -#: ../../godmode/gis_maps/configure_gis_map.php:566 -#: ../../godmode/massive/massive_add_action_alerts.php:156 -#: ../../godmode/massive/massive_add_alerts.php:183 -#: ../../godmode/massive/massive_add_profiles.php:102 -#: ../../godmode/massive/massive_copy_modules.php:84 -#: ../../godmode/massive/massive_copy_modules.php:237 -#: ../../godmode/massive/massive_delete_action_alerts.php:163 -#: ../../godmode/massive/massive_delete_agents.php:114 -#: ../../godmode/massive/massive_delete_alerts.php:247 -#: ../../godmode/massive/massive_delete_profiles.php:109 -#: ../../godmode/massive/massive_edit_agents.php:400 -#: ../../godmode/massive/massive_edit_agents.php:550 -#: ../../godmode/massive/massive_enable_disable_alerts.php:146 -#: ../../godmode/massive/massive_standby_alerts.php:146 -#: ../../godmode/modules/manage_network_components.php:537 -#: ../../godmode/modules/manage_network_components.php:673 -#: ../../godmode/modules/manage_network_components_form_common.php:142 -#: ../../godmode/modules/manage_network_templates_form.php:223 -#: ../../godmode/modules/manage_network_templates_form.php:291 -#: ../../godmode/modules/manage_network_templates_form.php:327 -#: ../../godmode/netflow/nf_edit.php:147 -#: ../../godmode/netflow/nf_edit_form.php:202 -#: ../../godmode/reporting/create_container.php:217 -#: ../../godmode/reporting/create_container.php:495 -#: ../../godmode/reporting/create_container.php:584 -#: ../../godmode/reporting/graph_builder.main.php:116 -#: ../../godmode/reporting/graphs.php:168 -#: ../../godmode/reporting/graphs.php:266 -#: ../../godmode/reporting/map_builder.php:308 -#: ../../godmode/reporting/map_builder.php:336 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1218 -#: ../../godmode/reporting/reporting_builder.main.php:91 -#: ../../godmode/reporting/reporting_builder.php:643 -#: ../../godmode/reporting/reporting_builder.php:829 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:270 -#: ../../godmode/reporting/visual_console_favorite.php:111 -#: ../../godmode/setup/gis.php:75 ../../godmode/setup/gis_step_2.php:200 -#: ../../godmode/setup/news.php:178 ../../godmode/setup/setup_integria.php:289 -#: ../../godmode/setup/setup_integria.php:412 -#: ../../godmode/snmpconsole/snmp_alert.php:772 -#: ../../godmode/users/user_list.php:260 -#: ../../godmode/wizards/HostDevices.class.php:779 -#: ../../include/ajax/custom_fields.php:618 -#: ../../include/ajax/custom_fields.php:667 -#: ../../include/class/CredentialStore.class.php:729 -#: ../../include/class/CredentialStore.class.php:760 -#: ../../include/class/CredentialStore.class.php:845 -#: ../../include/class/CustomNetScan.class.php:499 -#: ../../include/class/NetworkMap.class.php:2863 -#: ../../include/class/NetworkMap.class.php:2916 -#: ../../include/class/NetworkMap.class.php:3203 -#: ../../include/functions_container.php:150 -#: ../../include/functions_cron.php:459 ../../include/functions_events.php:193 -#: ../../include/functions_events.php:244 -#: ../../include/functions_events.php:4593 -#: ../../include/functions_events.php:6038 -#: ../../include/functions_events.php.orig:191 -#: ../../include/functions_events.php.orig:242 -#: ../../include/functions_events.php.orig:4487 -#: ../../include/functions_events.php.orig:5942 -#: ../../include/functions_gis.php:228 ../../include/functions_graph.php:4974 -#: ../../include/functions_visual_map.php:4298 -#: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:526 -#: ../../include/functions_visual_map_editor.php:1307 -#: ../../include/functions_reporting_html.php:2610 -#: ../../include/functions_reporting_html.php:2663 -#: ../../include/functions_profile.php:212 ../../mobile/operation/agents.php:79 -#: ../../mobile/operation/agents.php:143 ../../mobile/operation/agents.php:219 -#: ../../mobile/operation/agents.php:220 ../../mobile/operation/agents.php:393 -#: ../../mobile/operation/alerts.php:95 ../../mobile/operation/alerts.php:100 -#: ../../mobile/operation/alerts.php:212 ../../mobile/operation/alerts.php:213 -#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 -#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:662 -#: ../../mobile/operation/events.php:663 ../../mobile/operation/modules.php:147 -#: ../../mobile/operation/modules.php:152 -#: ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/modules.php:242 -#: ../../mobile/operation/visualmaps.php:55 -#: ../../mobile/operation/visualmaps.php:60 -#: ../../mobile/operation/visualmaps.php:164 -#: ../../operation/agentes/alerts_status.functions.php:73 -#: ../../operation/agentes/estado_agente.php:211 -#: ../../operation/agentes/estado_agente.php:710 -#: ../../operation/agentes/estado_generalagente.php:339 -#: ../../operation/agentes/exportdata.php:226 -#: ../../operation/agentes/group_view.php:193 -#: ../../operation/agentes/pandora_networkmap.editor.php:268 -#: ../../operation/agentes/pandora_networkmap.editor.php:307 -#: ../../operation/agentes/status_monitor.php:357 -#: ../../operation/agentes/ver_agente.php:848 -#: ../../operation/events/events.build_table.php:222 -#: ../../operation/events/events.php:877 -#: ../../operation/events/events_list.php:903 -#: ../../operation/events/sound_events.php:71 -#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 -#: ../../operation/gis_maps/gis_map.php:103 -#: ../../operation/incidents/configure_integriaims_incident.php:242 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:375 -#: ../../operation/incidents/incident.php:423 -#: ../../operation/incidents/incident_detail.php:338 -#: ../../operation/incidents/list_integriaims_incidents.php:120 -#: ../../operation/netflow/nf_live_view.php:372 -#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:49 -#: ../../operation/search_maps.php:28 ../../operation/users/user_edit.php:754 -#: ../../enterprise/dashboard/dashboards.php:114 -#: ../../enterprise/dashboard/main_dashboard.php:337 -#: ../../enterprise/dashboard/main_dashboard.php:396 -#: ../../enterprise/dashboard/widgets/agent_module.php:57 -#: ../../enterprise/dashboard/widgets/alerts_fired.php:31 -#: ../../enterprise/dashboard/widgets/tree_view.php:55 -#: ../../enterprise/dashboard/widgets/top_n.php:338 -#: ../../enterprise/extensions/ipam/ipam_editor.php:173 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:189 -#: ../../enterprise/godmode/agentes/collections.php:323 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:93 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:111 -#: ../../enterprise/godmode/alerts/alert_events.php:589 -#: ../../enterprise/godmode/alerts/alert_events_list.php:411 -#: ../../enterprise/godmode/alerts/alert_events_list.php:502 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:403 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:85 -#: ../../enterprise/godmode/modules/configure_local_component.php:268 -#: ../../enterprise/godmode/modules/local_components.php:436 -#: ../../enterprise/godmode/modules/local_components.php:560 -#: ../../enterprise/godmode/policies/configure_policy.php:77 -#: ../../enterprise/godmode/policies/policies.php:329 -#: ../../enterprise/godmode/policies/policies.php:428 -#: ../../enterprise/godmode/policies/policy_agents.php:671 -#: ../../enterprise/godmode/policies/policy_agents.php:714 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:309 -#: ../../enterprise/godmode/reporting/cluster_list.php:92 -#: ../../enterprise/godmode/reporting/cluster_list.php:189 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:164 -#: ../../enterprise/godmode/reporting/graph_template_list.php:148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:375 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:147 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1805 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:323 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:94 -#: ../../enterprise/godmode/reporting/visual_console_template.php:169 -#: ../../enterprise/godmode/reporting/visual_console_template.php:197 -#: ../../enterprise/godmode/services/services.service.php:392 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:632 -#: ../../enterprise/include/ajax/clustermap.php:46 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:674 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:821 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2520 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2624 -#: ../../enterprise/include/class/Aws.cloud.php:451 -#: ../../enterprise/include/class/Aws.cloud.php:1118 -#: ../../enterprise/include/class/Azure.cloud.php:760 -#: ../../enterprise/include/class/MySQL.app.php:473 -#: ../../enterprise/include/class/Omnishell.class.php:399 -#: ../../enterprise/include/class/Omnishell.class.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:678 -#: ../../enterprise/include/class/Oracle.app.php:471 -#: ../../enterprise/include/class/SAP.app.php:620 -#: ../../enterprise/include/class/VMware.app.php:656 -#: ../../enterprise/include/functions_alert_event.php:1134 -#: ../../enterprise/include/functions_events.php:97 -#: ../../enterprise/include/functions_tasklist.php:172 -#: ../../enterprise/meta/advanced/collections.php:321 -#: ../../enterprise/meta/advanced/cron_main.php:390 +#: ../../views/dashboard/header.php:51 ../../extensions/agents_alerts.php:127 +#: ../../extensions/agents_modules.php:483 +#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/legacy_view.php:217 +#: ../../operation/gis_maps/render_view.php:125 +#: ../../operation/reporting/reporting_viewer.php:116 +#: ../../operation/reporting/graph_viewer.php:175 +#: ../../operation/events/events.php:669 +msgid "Back to normal mode" +msgstr "Volver a modo normal" + +#: ../../views/dashboard/header.php:59 ../../views/dashboard/list.php:209 +msgid "Update Dashboard" +msgstr "Actualizar el panel de control" + +#: ../../views/dashboard/header.php:60 ../../views/dashboard/header.php:88 +#: ../../views/dashboard/list.php:210 ../../enterprise/load_enterprise.php:428 +#: ../../enterprise/load_enterprise.php:911 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:415 +#: ../../enterprise/include/class/Omnishell.class.php:1446 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/functions_update_manager.php:245 +#: ../../enterprise/operation/agentes/transactional_map.php:312 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:47 +#: ../../enterprise/operation/services/services.service.php:212 +#: ../../enterprise/operation/services/services.service_map.php:172 +#: ../../enterprise/operation/services/services.list.php:196 +#: ../../enterprise/operation/services/services.list.php:486 +#: ../../enterprise/operation/services/services.table_services.php:175 +#: ../../godmode/update_manager/update_manager.offline.php:104 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../include/functions_config.php:1168 +#: ../../include/functions_config.php:2839 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../include/lib/Dashboard/Widgets/service_map.php:334 +#: ../../include/functions_update_manager.php:1399 +#: ../../operation/gis_maps/render_view.php:153 +msgid "Ok" +msgstr "Bien" + +#: ../../views/dashboard/header.php:61 ../../views/dashboard/header.php:89 +#: ../../views/dashboard/list.php:211 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1099 +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:469 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:355 +#: ../../enterprise/godmode/services/services.service.php:643 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:268 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:344 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:241 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1527 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1629 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1681 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1713 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1748 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/AgentRepository.class.php:882 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../enterprise/include/functions_update_manager.php:244 +#: ../../godmode/update_manager/update_manager.offline.php:103 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/events/custom_events.php:202 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../include/class/ConfigPEN.class.php:663 +#: ../../include/class/ConfigPEN.class.php:687 +#: ../../include/class/TreeGroupEdition.class.php:93 +#: ../../include/class/NetworkMap.class.php:2822 +#: ../../include/class/CredentialStore.class.php:1115 +#: ../../include/class/CredentialStore.class.php:1167 +#: ../../include/class/ModuleTemplates.class.php:1277 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:643 +#: ../../include/functions_update_manager.php:204 +#: ../../include/functions_update_manager.php:468 +#: ../../include/functions_update_manager.php:762 +#: ../../include/functions_update_manager.php:1398 +#: ../../operation/agentes/pandora_networkmap.editor.php:573 +#: ../../operation/snmpconsole/snmp_browser.php:157 +#: ../../operation/snmpconsole/snmp_browser.php:486 +#: ../../operation/snmpconsole/snmp_browser.php:566 +#: ../../operation/snmpconsole/snmp_browser.php:581 +#: ../../general/header.php:785 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../views/dashboard/header.php:71 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 +#: ../../enterprise/extensions/vmware/vmware_view.php:1292 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316 +#: ../../enterprise/include/class/DeploymentCenter.class.php:724 +#: ../../enterprise/include/class/AgentRepository.class.php:618 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2855 +#: ../../extensions/net_tools.php:493 +#: ../../godmode/update_manager/update_manager.php:35 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../include/class/ConfigPEN.class.php:595 +#: ../../include/class/CredentialStore.class.php:737 +#: ../../include/functions_events.php:295 +msgid "Options" +msgstr "Opciones" + +#: ../../views/dashboard/header.php:80 +msgid "Back to dashboards list" +msgstr "Volver a la lista de dashboards" + +#: ../../views/dashboard/header.php:87 +msgid "Slides" +msgstr "Diapositivas" + +#: ../../views/dashboard/header.php:100 +msgid "Slides mode" +msgstr "Modo diapositivas" + +#: ../../views/dashboard/header.php:112 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1243 +#: ../../enterprise/godmode/policies/policy_queue.php:566 +#: ../../enterprise/include/class/Omnishell.class.php:544 +#: ../../enterprise/include/class/Omnishell.class.php:1276 +#: ../../extensions/agents_alerts.php:101 +#: ../../extensions/agents_modules.php:492 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:175 +#: ../../include/ajax/module.php:919 +#: ../../include/class/NetworkMap.class.php:2816 +#: ../../operation/visual_console/view.php:339 +#: ../../operation/visual_console/legacy_public_view.php:120 +#: ../../operation/visual_console/legacy_view.php:231 +#: ../../operation/visual_console/public_view.php:104 +#: ../../operation/gis_maps/render_view.php:147 +#: ../../operation/reporting/graph_viewer.php:294 +#: ../../operation/events/events.php:679 +#: ../../operation/servers/recon_view.php:50 ../../general/login_page.php:70 +#: ../../general/login_page.php:294 +msgid "Refresh" +msgstr "Actualizar" + +#: ../../views/dashboard/header.php:164 +msgid "Add Cell" +msgstr "Añadir celda" + +#: ../../views/dashboard/list.php:38 +msgid "Dashboards" +msgstr "Dashboards" + +#: ../../views/dashboard/list.php:48 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:243 +#: ../../enterprise/meta/advanced/metasetup.relations.php:86 +#: ../../enterprise/meta/advanced/links.php:81 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:148 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:222 +#: ../../enterprise/extensions/ipam/ipam_action.php:84 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:112 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:184 +#: ../../enterprise/godmode/modules/local_components.php:362 +#: ../../enterprise/godmode/policies/policies.php:172 +#: ../../enterprise/godmode/alerts/alert_events_list.php:180 +#: ../../enterprise/godmode/alerts/alert_events_list.php:232 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:135 +#: ../../enterprise/godmode/reporting/graph_template_list.php:99 +#: ../../enterprise/godmode/reporting/graph_template_list.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:301 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:97 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:235 +#: ../../enterprise/include/class/DatabaseHA.class.php:1034 +#: ../../enterprise/operation/agentes/transactional_map.php:156 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:65 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_nc_groups.php:141 +#: ../../godmode/modules/manage_network_components.php:414 +#: ../../godmode/users/profile_list.php:86 +#: ../../godmode/users/user_list.php:171 ../../godmode/users/user_list.php:218 +#: ../../godmode/users/configure_user.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:112 +#: ../../godmode/netflow/nf_item_list.php:122 +#: ../../godmode/netflow/nf_item_list.php:150 +#: ../../godmode/netflow/nf_edit.php:91 ../../godmode/netflow/nf_edit.php:124 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_filters.php:159 +#: ../../godmode/massive/massive_delete_action_alerts.php:124 +#: ../../godmode/massive/massive_delete_modules.php:143 +#: ../../godmode/massive/massive_delete_alerts.php:186 +#: ../../godmode/alerts/alert_actions.php:169 +#: ../../godmode/alerts/alert_commands.php:380 +#: ../../godmode/alerts/alert_templates.php:251 +#: ../../godmode/alerts/alert_special_days.php:250 +#: ../../godmode/alerts/alert_list.php:228 +#: ../../godmode/alerts/alert_list.php:316 ../../godmode/setup/news.php:112 +#: ../../godmode/setup/gis.php:58 ../../godmode/setup/links.php:73 +#: ../../godmode/reporting/map_builder.php:158 +#: ../../godmode/reporting/graphs.php:97 ../../godmode/reporting/graphs.php:107 +#: ../../godmode/reporting/graphs.php:150 +#: ../../godmode/reporting/reporting_builder.php:623 +#: ../../godmode/events/event_filter.php:54 +#: ../../godmode/events/event_filter.php:81 +#: ../../include/functions_api.php:13929 +#: ../../include/class/ConfigPEN.class.php:480 +#: ../../operation/messages/message_list.php:85 +#: ../../operation/messages/message_list.php:103 +#: ../../operation/snmpconsole/snmp_view.php:112 +#: ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/incident_detail.php:96 +#: ../../operation/incidents/incident_detail.php:134 +#: ../../operation/incidents/incident.php:98 +#: ../../operation/incidents/list_integriaims_incidents.php:85 +#: ../../operation/reporting/graph_viewer.php:39 +#: ../../operation/reporting/graph_viewer.php:47 +msgid "Successfully deleted" +msgstr "Eliminado correctamente" + +#: ../../views/dashboard/list.php:49 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:146 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:220 +#: ../../enterprise/extensions/ipam/ipam_action.php:82 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:110 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:182 +#: ../../enterprise/godmode/modules/local_components.php:363 +#: ../../enterprise/godmode/policies/policy_alerts.php:199 +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_modules.php:1291 +#: ../../enterprise/godmode/policies/policies.php:175 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:108 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:135 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:135 +#: ../../enterprise/godmode/policies/policy_collections.php:77 +#: ../../enterprise/godmode/policies/policy_agents.php:115 +#: ../../enterprise/godmode/policies/policy_agents.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:181 +#: ../../enterprise/godmode/alerts/alert_events_list.php:233 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:270 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:136 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 +#: ../../enterprise/operation/agentes/transactional_map.php:157 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:66 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_network_components.php:415 +#: ../../godmode/users/configure_user.php:651 +#: ../../godmode/massive/massive_delete_action_alerts.php:125 +#: ../../godmode/massive/massive_delete_alerts.php:187 +#: ../../godmode/alerts/alert_actions.php:170 +#: ../../godmode/alerts/alert_commands.php:381 +#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/alerts/alert_special_days.php:251 +#: ../../godmode/alerts/alert_list.php:229 +#: ../../godmode/alerts/alert_list.php:317 ../../godmode/setup/news.php:113 +#: ../../godmode/setup/gis.php:56 +#: ../../godmode/reporting/reporting_builder.php:624 +#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/messages/message_list.php:86 +#: ../../operation/snmpconsole/snmp_view.php:113 +#: ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/incident_detail.php:97 +#: ../../operation/incidents/incident_detail.php:135 +#: ../../operation/incidents/incident.php:99 +#: ../../operation/incidents/list_integriaims_incidents.php:86 +msgid "Could not be deleted" +msgstr "No se pudo eliminar" + +#: ../../views/dashboard/list.php:56 +msgid "Successfully duplicate" +msgstr "Duplicado correctamente" + +#: ../../views/dashboard/list.php:57 +msgid "Could not be duplicate" +msgstr "No se pudo duplicar" + +#: ../../views/dashboard/list.php:65 +msgid "There are no dashboards defined." +msgstr "No hay dashboards definidos" + +#: ../../views/dashboard/list.php:90 ../../views/dashboard/formDashboard.php:71 +#: ../../enterprise/views/cluster/list.php:58 +#: ../../enterprise/meta/advanced/servers.build_table.php:58 +#: ../../enterprise/meta/include/functions_autoprovision.php:448 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:580 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1132 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1458 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1681 +#: ../../enterprise/meta/agentsearch.php:301 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:369 +#: ../../enterprise/extensions/ipam/ipam_list.php:135 +#: ../../enterprise/extensions/ipam/ipam_excel.php:105 +#: ../../enterprise/extensions/ipam/ipam_excel.php:175 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1198 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1677 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:270 +#: ../../enterprise/extensions/ipam/ipam_editor.php:99 +#: ../../enterprise/godmode/modules/configure_local_component.php:152 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:369 +#: ../../enterprise/godmode/modules/local_components.php:561 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:331 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:612 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:81 +#: ../../enterprise/godmode/agentes/collection_manager.php:115 +#: ../../enterprise/godmode/agentes/collection_manager.php:201 +#: ../../enterprise/godmode/agentes/inventory_manager.php:217 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:519 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/policies/configure_policy.php:76 +#: ../../enterprise/godmode/policies/policy_modules.php:1446 +#: ../../enterprise/godmode/policies/policies.php:432 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:253 +#: ../../enterprise/godmode/policies/policy_collections.php:149 +#: ../../enterprise/godmode/policies/policy_collections.php:244 +#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:1074 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 +#: ../../enterprise/godmode/alerts/alert_events.php:591 +#: ../../enterprise/godmode/alerts/alert_events_list.php:501 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 +#: ../../enterprise/godmode/services/services.service.php:385 +#: ../../enterprise/godmode/setup/setup_skins.php:84 +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/godmode/setup/edit_skin.php:230 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:135 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:139 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:105 +#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +#: ../../enterprise/godmode/reporting/mysql_builder.php:160 +#: ../../enterprise/godmode/reporting/mysql_builder.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1521 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:246 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:36 +#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:680 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2850 +#: ../../enterprise/include/functions_services.php:2475 +#: ../../enterprise/operation/agentes/policy_view.php:139 +#: ../../enterprise/operation/agentes/policy_view.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:654 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:68 +#: ../../enterprise/operation/agentes/collection_view.php:62 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:146 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:307 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:410 +#: ../../enterprise/operation/services/services.service.php:163 +#: ../../enterprise/operation/services/services.list.php:423 +#: ../../extensions/files_repo/files_repo_list.php:53 +#: ../../godmode/modules/manage_nc_groups_form.php:68 +#: ../../godmode/modules/manage_network_templates_form.php:156 +#: ../../godmode/modules/manage_nc_groups.php:231 +#: ../../godmode/modules/manage_network_components_form_common.php:59 +#: ../../godmode/modules/module_list.php:59 +#: ../../godmode/modules/manage_network_templates.php:234 +#: ../../godmode/groups/configure_group.php:118 +#: ../../godmode/groups/group_list.php:681 +#: ../../godmode/groups/configure_modu_group.php:64 +#: ../../godmode/groups/modu_group_list.php:235 +#: ../../godmode/users/user_list.php:329 +#: ../../godmode/agentes/planned_downtime.editor.php:637 +#: ../../godmode/agentes/planned_downtime.editor.php:1035 +#: ../../godmode/agentes/configure_field.php:71 +#: ../../godmode/agentes/module_manager_editor_common.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:1128 +#: ../../godmode/agentes/module_manager.php:639 +#: ../../godmode/netflow/nf_edit.php:146 +#: ../../godmode/netflow/nf_edit_form.php:198 +#: ../../godmode/alerts/configure_alert_command.php:172 +#: ../../godmode/alerts/alert_actions.php:225 +#: ../../godmode/alerts/alert_commands.php:412 +#: ../../godmode/alerts/alert_templates.php:365 +#: ../../godmode/alerts/configure_alert_action.php:128 +#: ../../godmode/alerts/configure_alert_template.php:918 +#: ../../godmode/setup/os.builder.php:33 ../../godmode/setup/os.list.php:32 +#: ../../godmode/setup/setup_integria.php:260 +#: ../../godmode/setup/setup_integria.php:383 +#: ../../godmode/reporting/create_container.php:205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:826 +#: ../../godmode/reporting/reporting_builder.main.php:79 +#: ../../godmode/reporting/reporting_builder.main.php:83 +#: ../../godmode/reporting/graph_builder.main.php:106 +#: ../../godmode/events/event_filter.php:121 +#: ../../godmode/events/event_responses.editor.php:76 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:65 +#: ../../godmode/servers/modificar_server.php:56 +#: ../../godmode/servers/plugin.php:328 ../../godmode/servers/plugin.php:969 +#: ../../godmode/tag/tag.php:175 ../../godmode/tag/edit_tag.php:168 +#: ../../godmode/category/edit_category.php:151 +#: ../../mobile/operation/visualmaps.php:162 +#: ../../include/functions_reporting_html.php:963 +#: ../../include/functions_reporting_html.php:971 +#: ../../include/functions_reporting_html.php:1958 +#: ../../include/functions_reporting_html.php:2655 +#: ../../include/functions_reporting_html.php:5172 +#: ../../include/functions_treeview.php:78 +#: ../../include/class/NetworkMap.class.php:2931 +#: ../../include/class/NetworkMap.class.php:2972 +#: ../../include/class/NetworkMap.class.php:2990 +#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/ManageNetScanScripts.class.php:408 +#: ../../include/class/ManageNetScanScripts.class.php:549 +#: ../../include/class/ModuleTemplates.class.php:815 +#: ../../include/class/ModuleTemplates.class.php:965 +#: ../../include/functions_filemanager.php:619 +#: ../../include/functions_snmp_browser.php:1334 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4131 ../../operation/search_users.php:35 +#: ../../operation/search_helps.php:32 +#: ../../operation/agentes/pandora_networkmap.editor.php:258 +#: ../../operation/agentes/pandora_networkmap.php:693 +#: ../../operation/netflow/nf_live_view.php:362 +#: ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:198 +#: ../../operation/search_policies.php:34 ../../operation/search_maps.php:27 +msgid "Name" +msgstr "Nombre" + +#: ../../views/dashboard/list.php:91 +msgid "Cells" +msgstr "Celdas" + +#: ../../views/dashboard/list.php:92 +#: ../../views/dashboard/formDashboard.php:101 +#: ../../enterprise/views/cluster/list.php:60 #: ../../enterprise/meta/advanced/synchronizing.user.php:633 -#: ../../enterprise/meta/agentsearch.php:116 -#: ../../enterprise/meta/agentsearch.php:299 -#: ../../enterprise/meta/include/functions_events_meta.php:74 -#: ../../enterprise/meta/include/functions_wizard_meta.php:193 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1803 +#: ../../enterprise/meta/advanced/cron_main.php:413 +#: ../../enterprise/meta/advanced/collections.php:321 #: ../../enterprise/meta/monitoring/custom_fields_view.php:138 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:255 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:352 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:417 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:606 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:310 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:413 +#: ../../enterprise/meta/include/functions_wizard_meta.php:193 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1803 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/agentsearch.php:117 +#: ../../enterprise/meta/agentsearch.php:303 +#: ../../enterprise/extensions/ipam/ipam_editor.php:173 +#: ../../enterprise/godmode/modules/configure_local_component.php:268 +#: ../../enterprise/godmode/modules/local_components.php:439 +#: ../../enterprise/godmode/modules/local_components.php:563 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:189 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:111 +#: ../../enterprise/godmode/agentes/collections.php:323 +#: ../../enterprise/godmode/policies/configure_policy.php:79 +#: ../../enterprise/godmode/policies/policies.php:333 +#: ../../enterprise/godmode/policies/policies.php:434 +#: ../../enterprise/godmode/policies/policy_agents.php:671 +#: ../../enterprise/godmode/policies/policy_agents.php:714 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:85 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 +#: ../../enterprise/godmode/alerts/alert_events.php:594 +#: ../../enterprise/godmode/alerts/alert_events_list.php:411 +#: ../../enterprise/godmode/alerts/alert_events_list.php:502 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:403 +#: ../../enterprise/godmode/services/services.service.php:391 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:147 +#: ../../enterprise/godmode/reporting/graph_template_list.php:148 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:164 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:375 +#: ../../enterprise/godmode/reporting/visual_console_template.php:171 +#: ../../enterprise/godmode/reporting/visual_console_template.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1807 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:94 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:642 +#: ../../enterprise/include/functions_tasklist.php:172 +#: ../../enterprise/include/functions_alert_event.php:1134 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../enterprise/include/class/Azure.cloud.php:760 +#: ../../enterprise/include/class/VMware.app.php:656 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/Aws.cloud.php:451 +#: ../../enterprise/include/class/Aws.cloud.php:1118 +#: ../../enterprise/include/class/MySQL.app.php:473 +#: ../../enterprise/include/class/Oracle.app.php:471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:692 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:842 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2747 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2851 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:817 +#: ../../enterprise/include/functions_events.php:97 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/tag_view.php:87 +#: ../../enterprise/operation/agentes/tag_view.php:582 #: ../../enterprise/operation/agentes/pandora_networkmap.view.php:71 #: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 -#: ../../enterprise/operation/agentes/tag_view.php:82 -#: ../../enterprise/operation/agentes/tag_view.php:577 -#: ../../enterprise/operation/agentes/transactional_map.php:182 #: ../../enterprise/operation/agentes/ver_agente.php:49 #: ../../enterprise/operation/agentes/ver_agente.php:70 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:310 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:413 +#: ../../enterprise/operation/log/log_viewer.php:477 #: ../../enterprise/operation/inventory/inventory.php:180 -#: ../../enterprise/operation/log/log_viewer.php:450 -#: ../../enterprise/operation/services/services.list.php:212 -#: ../../enterprise/operation/services/services.list.php:408 #: ../../enterprise/operation/services/services.service.php:166 -#: ../../enterprise/operation/services/services.table_services.php:191 +#: ../../enterprise/operation/services/services.list.php:219 +#: ../../enterprise/operation/services/services.list.php:428 +#: ../../enterprise/operation/services/services.table_services.php:198 +#: ../../extensions/agents_alerts.php:94 +#: ../../extensions/agents_modules.php:389 +#: ../../godmode/modules/manage_network_templates_form.php:223 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_templates_form.php:327 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/modules/manage_network_components.php:534 +#: ../../godmode/modules/manage_network_components.php:670 +#: ../../godmode/users/user_list.php:258 +#: ../../godmode/agentes/configurar_agente.php:449 +#: ../../godmode/agentes/modificar_agente.php:168 +#: ../../godmode/agentes/modificar_agente.php:495 +#: ../../godmode/agentes/planned_downtime.list.php:400 +#: ../../godmode/agentes/planned_downtime.editor.php:647 +#: ../../godmode/agentes/planned_downtime.editor.php:1036 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/netflow/nf_edit.php:147 +#: ../../godmode/netflow/nf_edit_form.php:202 +#: ../../godmode/snmpconsole/snmp_alert.php:778 +#: ../../godmode/gis_maps/configure_gis_map.php:462 +#: ../../godmode/gis_maps/configure_gis_map.php:566 +#: ../../godmode/massive/massive_copy_modules.php:84 +#: ../../godmode/massive/massive_copy_modules.php:237 +#: ../../godmode/massive/massive_standby_alerts.php:146 +#: ../../godmode/massive/massive_delete_action_alerts.php:163 +#: ../../godmode/massive/massive_add_alerts.php:183 +#: ../../godmode/massive/massive_delete_agents.php:114 +#: ../../godmode/massive/massive_enable_disable_alerts.php:146 +#: ../../godmode/massive/massive_edit_agents.php:400 +#: ../../godmode/massive/massive_edit_agents.php:550 +#: ../../godmode/massive/massive_delete_profiles.php:109 +#: ../../godmode/massive/massive_delete_alerts.php:254 +#: ../../godmode/massive/massive_add_action_alerts.php:156 +#: ../../godmode/massive/massive_add_profiles.php:102 +#: ../../godmode/alerts/configure_alert_command.php:180 +#: ../../godmode/alerts/alert_actions.php:197 +#: ../../godmode/alerts/alert_actions.php:226 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../godmode/alerts/alert_commands.php:414 +#: ../../godmode/alerts/configure_alert_special_days.php:69 +#: ../../godmode/alerts/alert_templates.php:366 +#: ../../godmode/alerts/configure_alert_action.php:140 +#: ../../godmode/alerts/configure_alert_template.php:922 +#: ../../godmode/alerts/alert_special_days.php:274 +#: ../../godmode/setup/news.php:178 ../../godmode/setup/gis.php:66 +#: ../../godmode/setup/gis_step_2.php:206 +#: ../../godmode/setup/setup_integria.php:286 +#: ../../godmode/setup/setup_integria.php:409 +#: ../../godmode/reporting/create_container.php:224 +#: ../../godmode/reporting/create_container.php:502 +#: ../../godmode/reporting/create_container.php:591 +#: ../../godmode/reporting/map_builder.php:308 +#: ../../godmode/reporting/map_builder.php:336 +#: ../../godmode/reporting/graphs.php:168 +#: ../../godmode/reporting/graphs.php:266 +#: ../../godmode/reporting/visual_console_favorite.php:111 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1210 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:270 +#: ../../godmode/reporting/reporting_builder.main.php:91 +#: ../../godmode/reporting/reporting_builder.php:643 +#: ../../godmode/reporting/reporting_builder.php:829 +#: ../../godmode/reporting/graph_builder.main.php:116 +#: ../../godmode/events/event_filter.php:122 +#: ../../godmode/events/event_responses.editor.php:87 +#: ../../godmode/events/event_edit_filter.php:265 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/events/custom_events.php:99 +#: ../../godmode/wizards/HostDevices.class.php:928 +#: ../../mobile/operation/agents.php:79 ../../mobile/operation/agents.php:143 +#: ../../mobile/operation/agents.php:219 ../../mobile/operation/agents.php:220 +#: ../../mobile/operation/agents.php:393 ../../mobile/operation/modules.php:147 +#: ../../mobile/operation/modules.php:152 +#: ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/modules.php:242 ../../mobile/operation/alerts.php:95 +#: ../../mobile/operation/alerts.php:100 ../../mobile/operation/alerts.php:212 +#: ../../mobile/operation/alerts.php:213 +#: ../../mobile/operation/visualmaps.php:55 +#: ../../mobile/operation/visualmaps.php:60 +#: ../../mobile/operation/visualmaps.php:164 +#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 +#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:662 +#: ../../mobile/operation/events.php:663 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:526 +#: ../../include/functions_visual_map_editor.php:1307 +#: ../../include/functions_reporting_html.php:2606 +#: ../../include/functions_reporting_html.php:2659 +#: ../../include/functions_cron.php:459 +#: ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:667 +#: ../../include/functions_graph.php:5050 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:213 +#: ../../include/functions_visual_map.php:4215 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:545 +#: ../../include/rest-api/models/VisualConsole/Item.php:2021 +#: ../../include/class/NetworkMap.class.php:2862 +#: ../../include/class/NetworkMap.class.php:2915 +#: ../../include/class/NetworkMap.class.php:3202 +#: ../../include/class/CredentialStore.class.php:732 +#: ../../include/class/CredentialStore.class.php:763 +#: ../../include/class/CredentialStore.class.php:848 +#: ../../include/class/CustomNetScan.class.php:499 +#: ../../include/class/ModuleTemplates.class.php:706 +#: ../../include/functions_container.php:150 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:220 +#: ../../include/functions_snmp_browser.php:1337 +#: ../../include/functions_events.php:193 +#: ../../include/functions_events.php:244 +#: ../../include/functions_events.php:4606 +#: ../../include/functions_events.php:6051 ../../operation/search_agents.php:45 +#: ../../operation/search_agents.php:51 ../../operation/users/user_edit.php:749 +#: ../../operation/visual_console/view.php:265 +#: ../../operation/agentes/estado_agente.php:218 +#: ../../operation/agentes/estado_agente.php:719 +#: ../../operation/agentes/pandora_networkmap.editor.php:268 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +#: ../../operation/agentes/exportdata.php:226 +#: ../../operation/agentes/status_monitor.php:357 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/ver_agente.php:848 +#: ../../operation/agentes/estado_generalagente.php:339 +#: ../../operation/agentes/alerts_status.functions.php:73 +#: ../../operation/netflow/nf_live_view.php:372 +#: ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/incident_detail.php:338 +#: ../../operation/incidents/configure_integriaims_incident.php:242 +#: ../../operation/incidents/incident.php:423 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:375 +#: ../../operation/incidents/list_integriaims_incidents.php:127 +#: ../../operation/events/events_list.php:903 +#: ../../operation/events/sound_events.php:71 +#: ../../operation/events/events.php:885 +#: ../../operation/events/events.build_table.php:222 +#: ../../operation/search_maps.php:28 ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Grupo" -#: ../../extensions/agents_alerts.php:97 -msgid "Show modules without alerts" -msgstr "Mostrar módulos sin alertas" +#: ../../views/dashboard/list.php:93 +msgid "Favorite" +msgstr "Favorito" -#: ../../extensions/agents_alerts.php:101 -#: ../../extensions/agents_modules.php:492 ../../general/login_page.php:70 -#: ../../general/login_page.php:294 ../../include/ajax/module.php:912 -#: ../../include/class/NetworkMap.class.php:2817 -#: ../../operation/events/events.php:671 -#: ../../operation/gis_maps/render_view.php:147 -#: ../../operation/reporting/graph_viewer.php:291 -#: ../../operation/servers/recon_view.php:50 -#: ../../operation/visual_console/legacy_public_view.php:120 -#: ../../operation/visual_console/legacy_view.php:214 -#: ../../operation/visual_console/public_view.php:102 -#: ../../operation/visual_console/view.php:191 -#: ../../enterprise/dashboard/main_dashboard.php:183 -#: ../../enterprise/dashboard/widgets/top_n.php:312 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1243 -#: ../../enterprise/godmode/policies/policy_queue.php:566 -#: ../../enterprise/include/class/Omnishell.class.php:544 -#: ../../enterprise/include/class/Omnishell.class.php:1276 -#: ../../enterprise/meta/advanced/policymanager.queue.php:238 -msgid "Refresh" -msgstr "Actualizar" - -#: ../../extensions/agents_alerts.php:104 -#: ../../extensions/agents_alerts.php:301 -#: ../../godmode/setup/setup_visuals.php:940 -#: ../../godmode/setup/setup_visuals.php:941 -#: ../../godmode/setup/setup_visuals.php:1297 -#: ../../godmode/snmpconsole/snmp_alert.php:1033 -#: ../../include/functions.php:488 ../../include/functions.php:628 -#: ../../include/functions_html.php:1065 -#: ../../include/functions_visual_map_editor.php:1133 -#: ../../include/functions_visual_map_editor.php:1134 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:897 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1379 -#: ../../enterprise/meta/advanced/metasetup.visual.php:224 -#: ../../enterprise/meta/advanced/metasetup.visual.php:416 -#: ../../enterprise/meta/advanced/metasetup.visual.php:417 -msgid "seconds" -msgstr "segundos" - -#: ../../extensions/agents_alerts.php:105 ../../include/functions.php:3193 -#: ../../operation/gis_maps/render_view.php:139 -msgid "1 minute" -msgstr "1 minuto" - -#: ../../extensions/agents_alerts.php:106 ../../include/functions.php:3194 -#: ../../operation/gis_maps/render_view.php:140 -msgid "2 minutes" -msgstr "2 minutos" - -#: ../../extensions/agents_alerts.php:107 ../../include/ajax/module.php:163 -#: ../../include/functions.php:3195 -#: ../../include/functions_notifications.php:721 -#: ../../operation/gis_maps/render_view.php:141 -msgid "5 minutes" -msgstr "5 minutos" - -#: ../../extensions/agents_alerts.php:108 -#: ../../operation/gis_maps/render_view.php:142 -msgid "10 minutes" -msgstr "10 minutos" - -#: ../../extensions/agents_alerts.php:125 -#: ../../extensions/agents_modules.php:374 -#: ../../extensions/agents_modules.php:381 -#: ../../extensions/agents_modules.php:384 -#: ../../extensions/disabled/matrix_events.php:28 -#: ../../operation/gis_maps/render_view.php:123 -#: ../../operation/reporting/graph_viewer.php:173 -#: ../../operation/reporting/reporting_viewer.php:114 -#: ../../operation/visual_console/legacy_view.php:172 -#: ../../operation/visual_console/pure_ajax.php:169 -#: ../../operation/visual_console/view.php:141 -#: ../../enterprise/dashboard/main_dashboard.php:146 -#: ../../enterprise/operation/agentes/manage_transmap.php:108 -msgid "Full screen mode" -msgstr "Modo pantalla completa" - -#: ../../extensions/agents_alerts.php:127 -#: ../../extensions/agents_modules.php:483 -#: ../../operation/events/events.php:661 -#: ../../operation/gis_maps/render_view.php:125 -#: ../../operation/reporting/graph_viewer.php:175 -#: ../../operation/reporting/reporting_viewer.php:116 -#: ../../operation/visual_console/legacy_view.php:205 -#: ../../operation/visual_console/view.php:183 -#: ../../enterprise/dashboard/main_dashboard.php:156 -msgid "Back to normal mode" -msgstr "Volver a modo normal" - -#: ../../extensions/agents_alerts.php:143 -msgid "Agents/Alerts" -msgstr "Agentes/Alertas" - -#: ../../extensions/agents_alerts.php:161 -#: ../../operation/agentes/networkmap.dinamic.php:112 -#: ../../operation/agentes/pandora_networkmap.view.php:837 -#: ../../operation/events/events.php:710 -#: ../../operation/snmpconsole/snmp_browser.php:186 +#: ../../views/dashboard/list.php:94 ../../extensions/agents_alerts.php:161 +#: ../../operation/agentes/networkmap.dinamic.php:111 +#: ../../operation/agentes/pandora_networkmap.view.php:813 #: ../../operation/snmpconsole/snmp_statistics.php:43 +#: ../../operation/snmpconsole/snmp_browser.php:63 #: ../../operation/snmpconsole/snmp_view.php:88 -#: ../../enterprise/dashboard/dashboards.php:115 -#: ../../enterprise/dashboard/dashboards.php:164 +#: ../../operation/events/events.php:718 msgid "Full screen" msgstr "Pantalla completa" -#: ../../extensions/agents_alerts.php:205 -#: ../../extensions/agents_alerts.php:390 -#: ../../extensions/agents_modules.php:416 -#: ../../extensions/agents_modules.php:690 -#: ../../godmode/alerts/alert_list.list.php:68 -#: ../../godmode/massive/massive_add_alerts.php:203 -#: ../../godmode/massive/massive_delete_agents.php:172 -#: ../../godmode/massive/massive_delete_alerts.php:271 -#: ../../godmode/massive/massive_delete_modules.php:511 -#: ../../godmode/massive/massive_edit_agents.php:457 -#: ../../godmode/massive/massive_edit_modules.php:483 -#: ../../godmode/massive/massive_edit_plugins.php:345 -#: ../../godmode/massive/massive_enable_disable_alerts.php:151 -#: ../../godmode/massive/massive_standby_alerts.php:164 -#: ../../godmode/reporting/graph_builder.graph_editor.php:334 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1490 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1610 -#: ../../godmode/reporting/reporting_builder.list_items.php:208 -#: ../../godmode/reporting/reporting_builder.list_items.php:229 -#: ../../godmode/reporting/visual_console_builder.wizard.php:428 -#: ../../include/class/Diagnostics.class.php:1152 -#: ../../include/class/Diagnostics.class.php:1156 -#: ../../include/class/Diagnostics.class.php:1160 -#: ../../include/class/Diagnostics.class.php:1164 -#: ../../include/class/NetworkMap.class.php:3215 -#: ../../include/functions_cron.php:557 ../../include/functions_groups.php:53 -#: ../../include/functions_reporting_html.php:1548 -#: ../../include/functions_reporting_html.php:1890 -#: ../../include/functions_reporting_html.php:2348 -#: ../../mobile/include/functions_web.php:21 -#: ../../mobile/operation/agent.php:160 ../../mobile/operation/agents.php:190 -#: ../../mobile/operation/home.php:72 -#: ../../operation/agentes/group_view.php:154 -#: ../../operation/agentes/group_view.php:187 -#: ../../operation/search_results.php:79 -#: ../../enterprise/dashboard/widgets/agent_module.php:339 -#: ../../enterprise/dashboard/widgets/groups_status.php:95 -#: ../../enterprise/dashboard/widgets/service_map.php:109 -#: ../../enterprise/godmode/agentes/collections.agents.php:55 -#: ../../enterprise/godmode/agentes/collections.data.php:113 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:217 -#: ../../enterprise/godmode/policies/policies.php:427 -#: ../../enterprise/godmode/policies/policies.php:547 -#: ../../enterprise/godmode/policies/policy.php:60 -#: ../../enterprise/godmode/policies/policy_agents.php:532 -#: ../../enterprise/godmode/policies/policy_agents.php:651 -#: ../../enterprise/godmode/policies/policy_queue.php:459 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:366 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 -#: ../../enterprise/include/functions_cron.php:210 -#: ../../enterprise/include/functions_policies.php:3800 -#: ../../enterprise/include/functions_reporting.php:7176 -#: ../../enterprise/include/functions_reporting_pdf.php:759 -#: ../../enterprise/include/functions_tasklist.php:278 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:313 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/meta/include/functions_autoprovision.php:450 -#: ../../enterprise/meta/monitoring/group_view.php:137 -#: ../../enterprise/meta/monitoring/group_view.php:178 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:237 -#: ../../enterprise/operation/services/services.service_map.php:179 -msgid "Agents" -msgstr "Agentes" +#: ../../views/dashboard/list.php:97 +#: ../../enterprise/godmode/policies/policy_modules.php:1640 +#: ../../enterprise/godmode/policies/policies.php:591 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:213 +#: ../../godmode/massive/massive_copy_modules.php:300 +#: ../../godmode/alerts/alert_actions.php:227 +#: ../../godmode/reporting/map_builder.php:338 +#: ../../operation/agentes/pandora_networkmap.php:700 +#: ../../operation/agentes/pandora_networkmap.php:794 +msgid "Copy" +msgstr "Copiar" -#: ../../extensions/agents_alerts.php:206 -#: ../../extensions/agents_modules.php:690 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:884 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:608 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:575 -#: ../../godmode/agentes/configurar_agente.php:388 -#: ../../godmode/agentes/configurar_agente.php:623 -#: ../../godmode/agentes/modificar_agente.php:608 -#: ../../godmode/agentes/planned_downtime.editor.php:1039 -#: ../../godmode/agentes/planned_downtime.editor.php:1117 -#: ../../godmode/massive/massive_copy_modules.php:183 -#: ../../godmode/massive/massive_delete_modules.php:439 -#: ../../godmode/massive/massive_edit_modules.php:398 -#: ../../godmode/massive/massive_edit_plugins.php:363 -#: ../../godmode/reporting/graph_builder.graph_editor.php:336 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1559 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1651 -#: ../../godmode/reporting/reporting_builder.list_items.php:210 -#: ../../godmode/reporting/reporting_builder.list_items.php:239 -#: ../../godmode/reporting/visual_console_builder.wizard.php:452 -#: ../../godmode/servers/servers.build_table.php:69 -#: ../../include/functions_reports.php:718 -#: ../../include/functions_reports.php:722 -#: ../../include/functions_reports.php:726 -#: ../../include/functions_reports.php:730 -#: ../../include/functions_reports.php:734 -#: ../../include/functions_reports.php:738 -#: ../../include/functions_reports.php:742 -#: ../../include/functions_reports.php:746 -#: ../../include/functions_reporting_html.php:1548 -#: ../../include/functions_reporting_html.php:4309 -#: ../../mobile/operation/agent.php:304 ../../mobile/operation/agents.php:82 -#: ../../mobile/operation/agents.php:399 ../../mobile/operation/home.php:78 -#: ../../mobile/operation/modules.php:212 -#: ../../operation/agentes/estado_agente.php:716 -#: ../../operation/agentes/exportdata.php:281 -#: ../../operation/agentes/graphs.php:188 -#: ../../operation/agentes/group_view.php:155 -#: ../../operation/agentes/group_view.php:188 -#: ../../operation/search_agents.php:52 ../../operation/search_results.php:157 -#: ../../operation/tree.php:83 -#: ../../enterprise/dashboard/widgets/agent_module.php:339 -#: ../../enterprise/dashboard/widgets/groups_status.php:155 -#: ../../enterprise/dashboard/widgets/tree_view.php:42 -#: ../../enterprise/dashboard/widgets/service_map.php:114 -#: ../../enterprise/dashboard/widgets/top_n.php:378 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:109 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:159 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:359 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:110 -#: ../../enterprise/godmode/policies/policies.php:525 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:861 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:559 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:638 -#: ../../enterprise/godmode/policies/policy_modules.php:449 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:946 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:197 -#: ../../enterprise/include/ajax/clustermap.php:267 -#: ../../enterprise/include/ajax/clustermap.php:487 -#: ../../enterprise/include/functions_policies.php:3719 -#: ../../enterprise/include/functions_reporting_csv.php:2125 -#: ../../enterprise/include/functions_reporting_pdf.php:759 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 -#: ../../enterprise/meta/agentsearch.php:117 -#: ../../enterprise/meta/include/functions_wizard_meta.php:407 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1819 -#: ../../enterprise/meta/monitoring/group_view.php:138 -#: ../../enterprise/meta/monitoring/group_view.php:179 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:426 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:536 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:615 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:226 -#: ../../enterprise/operation/agentes/tag_view.php:579 -#: ../../enterprise/operation/services/services.service_map.php:184 -msgid "Modules" -msgstr "Módulos" - -#: ../../extensions/agents_alerts.php:207 -#: ../../extensions/agents_alerts.php:225 -#: ../../godmode/agentes/fields_manager.php:121 -#: ../../godmode/agentes/modificar_agente.php:493 -#: ../../godmode/agentes/planned_downtime.editor.php:1042 -#: ../../godmode/alerts/alert_commands.php:404 -#: ../../godmode/alerts/alert_list.builder.php:95 -#: ../../godmode/alerts/alert_list.list.php:114 -#: ../../godmode/alerts/alert_list.list.php:447 -#: ../../godmode/alerts/alert_view.php:347 -#: ../../godmode/category/category.php:112 -#: ../../godmode/events/event_responses.list.php:53 -#: ../../godmode/groups/group_list.php:588 ../../godmode/menu.php:201 -#: ../../godmode/tag/tag.php:230 ../../include/functions_cron.php:460 -#: ../../include/functions_treeview.php:403 -#: ../../include/functions_filemanager.php:622 -#: ../../include/functions_reporting_html.php:2406 -#: ../../enterprise/extensions/backup/main.php:130 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:321 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:374 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:273 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:83 -#: ../../enterprise/godmode/agentes/collections.php:326 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 -#: ../../enterprise/godmode/alerts/alert_events_list.php:500 -#: ../../enterprise/godmode/policies/policy_alerts.php:287 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:256 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:555 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:821 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1038 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1303 -#: ../../enterprise/godmode/reporting/cluster_list.php:194 -#: ../../enterprise/godmode/setup/setup_skins.php:122 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:343 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2021 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2166 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3128 -#: ../../enterprise/include/functions_reporting_csv.php:2210 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:416 -#: ../../enterprise/meta/advanced/collections.php:324 -#: ../../enterprise/meta/include/functions_alerts_meta.php:125 -#: ../../enterprise/meta/include/functions_alerts_meta.php:144 -#: ../../enterprise/meta/include/functions_autoprovision.php:451 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:150 -#: ../../enterprise/operation/agentes/transactional_map.php:187 -#: ../../enterprise/operation/services/services.list.php:419 -msgid "Actions" -msgstr "Acciones" - -#: ../../extensions/agents_alerts.php:217 -#: ../../godmode/snmpconsole/snmp_alert.php:84 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:473 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:553 -msgid "Create alert" -msgstr "Crear alerta" - -#: ../../extensions/agents_alerts.php:239 -#: ../../godmode/alerts/alert_list.builder.php:109 -#: ../../godmode/alerts/configure_alert_template.php:656 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:835 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1317 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:417 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 -msgid "Default action" -msgstr "Acción predeterminada" - -#: ../../extensions/agents_alerts.php:249 -#: ../../godmode/alerts/alert_list.builder.php:119 -#: ../../godmode/alerts/alert_list.list.php:710 -#: ../../godmode/massive/massive_add_action_alerts.php:214 -#: ../../include/ajax/alert_list.ajax.php:240 -#: ../../enterprise/godmode/alerts/alert_events_list.php:690 -#: ../../enterprise/godmode/policies/policy_alerts.php:531 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:322 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:845 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1327 -msgid "Number of alerts match from" -msgstr "Número de alertas coincidentes con" - -#: ../../extensions/agents_alerts.php:251 -#: ../../godmode/alerts/alert_list.builder.php:121 -#: ../../godmode/alerts/alert_list.list.php:600 -#: ../../godmode/alerts/alert_list.list.php:721 -#: ../../godmode/alerts/alert_templates.php:98 -#: ../../godmode/massive/massive_add_action_alerts.php:216 -#: ../../include/ajax/alert_list.ajax.php:251 -#: ../../include/functions_reporting_html.php:126 -#: ../../include/functions_reporting.php:11645 -#: ../../operation/reporting/reporting_viewer.php:216 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 -#: ../../enterprise/godmode/alerts/alert_events_list.php:645 -#: ../../enterprise/godmode/alerts/alert_events_list.php:692 -#: ../../enterprise/godmode/policies/policy_alerts.php:370 -#: ../../enterprise/godmode/policies/policy_alerts.php:535 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:324 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:847 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1329 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:920 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:950 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2197 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3036 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3162 -#: ../../enterprise/include/functions_reporting_pdf.php:1522 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 -msgid "to" -msgstr "a" - -#: ../../extensions/agents_alerts.php:262 -#: ../../godmode/alerts/alert_list.builder.php:128 -#: ../../godmode/alerts/configure_alert_action.php:116 -#: ../../enterprise/godmode/alerts/alert_events.php:640 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:858 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1340 -msgid "Create Action" -msgstr "Crear acción" - -#: ../../extensions/agents_alerts.php:266 -#: ../../extensions/agents_alerts.php:586 -#: ../../godmode/alerts/alert_list.builder.php:132 -#: ../../godmode/alerts/alert_list.list.php:446 -#: ../../godmode/alerts/alert_view.php:72 ../../include/functions_cron.php:554 -#: ../../include/functions_treeview.php:402 -#: ../../include/functions_treeview.php:443 -#: ../../include/functions_reporting_html.php:2405 -#: ../../include/functions_reporting_html.php:2408 -#: ../../mobile/operation/alerts.php:323 -#: ../../operation/agentes/alerts_status.php:514 -#: ../../operation/agentes/alerts_status.php:549 -#: ../../operation/agentes/alerts_status.php:584 -#: ../../operation/agentes/alerts_status.php:616 -#: ../../operation/search_alerts.php:35 -#: ../../operation/servers/recon_view.php:106 -#: ../../enterprise/godmode/policies/policy_alerts.php:285 -#: ../../enterprise/godmode/policies/policy_alerts.php:492 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:749 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:862 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1231 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1344 -#: ../../enterprise/godmode/reporting/visual_console_template.php:87 -#: ../../enterprise/include/functions_reporting_csv.php:2210 -#: ../../enterprise/include/functions_tasklist.php:275 -#: ../../enterprise/operation/agentes/policy_view.php:208 -msgid "Template" -msgstr "Plantilla" - -#: ../../extensions/agents_alerts.php:282 ../../extensions/insert_data.php:183 -#: ../../general/header.php:263 ../../godmode/alerts/alert_list.builder.php:81 -#: ../../godmode/alerts/alert_list.builder.php:148 -#: ../../godmode/massive/massive_add_alerts.php:255 -#: ../../godmode/massive/massive_copy_modules.php:122 -#: ../../godmode/massive/massive_delete_alerts.php:240 -#: ../../godmode/massive/massive_delete_modules.php:310 -#: ../../godmode/massive/massive_delete_modules.php:445 -#: ../../godmode/massive/massive_edit_modules.php:291 -#: ../../godmode/massive/massive_edit_modules.php:404 -#: ../../godmode/setup/setup_integria.php:295 -#: ../../godmode/setup/setup_integria.php:313 -#: ../../godmode/setup/setup_integria.php:342 -#: ../../godmode/setup/setup_integria.php:360 -#: ../../godmode/setup/setup_integria.php:418 -#: ../../godmode/setup/setup_integria.php:436 -#: ../../godmode/setup/setup_integria.php:465 -#: ../../godmode/setup/setup_integria.php:483 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:146 -#: ../../operation/incidents/configure_integriaims_incident.php:216 -#: ../../operation/incidents/configure_integriaims_incident.php:232 -#: ../../operation/incidents/configure_integriaims_incident.php:278 -#: ../../enterprise/godmode/alerts/alert_events.php:631 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:198 -#: ../../enterprise/godmode/policies/policy_alerts.php:582 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:387 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:735 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:765 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:807 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:878 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1217 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1247 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1289 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1360 -#: ../../enterprise/godmode/services/services.service.php:521 -#: ../../enterprise/godmode/services/services.service.php:532 -#: ../../enterprise/godmode/services/services.service.php:551 -#: ../../enterprise/meta/advanced/synchronizing.user.php:608 -#: ../../enterprise/meta/general/main_header.php:493 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:336 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:574 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 -msgid "Select" -msgstr "Seleccionar" - -#: ../../extensions/agents_alerts.php:295 -#: ../../godmode/alerts/alert_list.builder.php:161 -#: ../../godmode/alerts/configure_alert_template.php:561 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:778 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:891 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1260 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1373 -msgid "Create Template" -msgstr "Crear plantilla" - -#: ../../extensions/agents_alerts.php:299 -#: ../../godmode/alerts/alert_list.builder.php:165 -#: ../../godmode/alerts/alert_list.list.php:607 -#: ../../godmode/alerts/alert_list.list.php:734 -#: ../../godmode/alerts/alert_view.php:389 -#: ../../godmode/alerts/configure_alert_action.php:179 -#: ../../include/ajax/alert_list.ajax.php:264 -#: ../../include/functions_reporting_html.php:2662 -#: ../../include/functions_reporting_html.php:4140 -#: ../../enterprise/godmode/alerts/alert_events_list.php:650 -#: ../../enterprise/godmode/alerts/alert_events_list.php:695 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:895 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1377 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3042 -msgid "Threshold" -msgstr "Umbral" - -#: ../../extensions/agents_alerts.php:307 -#: ../../godmode/alerts/alert_list.builder.php:196 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:911 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1393 -msgid "Add alert" -msgstr "Añadir alerta" - -#: ../../extensions/agents_alerts.php:312 -#: ../../extensions/agents_alerts.php:586 ../../extensions/insert_data.php:155 -#: ../../godmode/agentes/module_manager_editor_common.php:1169 -#: ../../godmode/agentes/module_manager_editor_common.php:1222 -#: ../../godmode/agentes/module_manager_editor_prediction.php:112 -#: ../../godmode/agentes/planned_downtime.list.php:177 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 -#: ../../godmode/alerts/alert_list.builder.php:55 -#: ../../godmode/alerts/alert_list.list.php:440 -#: ../../godmode/alerts/alert_list.list.php:684 -#: ../../godmode/alerts/alert_view.php:64 -#: ../../godmode/gis_maps/configure_gis_map.php:517 -#: ../../godmode/massive/massive_copy_modules.php:115 -#: ../../godmode/massive/massive_copy_modules.php:279 -#: ../../godmode/massive/massive_enable_disable_alerts.php:172 -#: ../../godmode/massive/massive_enable_disable_alerts.php:207 -#: ../../godmode/massive/massive_standby_alerts.php:184 -#: ../../godmode/massive/massive_standby_alerts.php:219 -#: ../../godmode/reporting/create_container.php:348 -#: ../../godmode/reporting/create_container.php:515 -#: ../../godmode/reporting/create_container.php:586 -#: ../../godmode/reporting/graph_builder.graph_editor.php:198 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1309 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2860 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3294 -#: ../../godmode/reporting/reporting_builder.list_items.php:377 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.wizard.php:470 -#: ../../godmode/reporting/visual_console_builder.wizard.php:758 -#: ../../godmode/reporting/visual_console_builder.wizard.php:781 -#: ../../godmode/servers/plugin.php:70 -#: ../../include/ajax/alert_list.ajax.php:183 -#: ../../include/class/NetworkMap.class.php:2857 -#: ../../include/class/NetworkMap.class.php:2910 -#: ../../include/class/NetworkMap.class.php:3159 -#: ../../include/functions_gis.php:229 ../../include/functions_graph.php:5099 -#: ../../include/functions_visual_map_editor.php:388 -#: ../../include/functions_visual_map_editor.php:421 -#: ../../include/functions_reporting_html.php:492 -#: ../../include/functions_reporting_html.php:854 -#: ../../include/functions_reporting_html.php:965 -#: ../../include/functions_reporting_html.php:973 -#: ../../include/functions_reporting_html.php:1782 -#: ../../include/functions_reporting_html.php:2311 -#: ../../include/functions_reporting_html.php:2403 -#: ../../include/functions_reporting_html.php:2706 -#: ../../include/functions_reporting_html.php:2764 -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:2780 -#: ../../include/functions_reporting_html.php:2792 -#: ../../include/functions_reporting_html.php:2912 -#: ../../include/functions_reporting_html.php:3031 -#: ../../include/functions_reporting_html.php:3104 -#: ../../include/functions_reporting_html.php:3615 -#: ../../include/functions_reporting_html.php:3671 -#: ../../include/functions_reporting_html.php:3709 -#: ../../include/functions_reporting_html.php:4018 -#: ../../include/functions_reporting_html.php:4058 -#: ../../include/functions_reporting_html.php:4308 -#: ../../include/functions_reporting_html.php:5069 -#: ../../include/functions_reporting.php:4953 -#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:388 -#: ../../mobile/operation/alerts.php:316 ../../mobile/operation/events.php:553 -#: ../../mobile/operation/home.php:92 ../../mobile/operation/modules.php:570 -#: ../../operation/agentes/alerts_status.php:512 -#: ../../operation/agentes/alerts_status.php:582 -#: ../../operation/agentes/estado_agente.php:695 -#: ../../operation/agentes/estado_monitores.php:116 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1112 -#: ../../operation/agentes/ver_agente.php:991 -#: ../../operation/events/events.build_table.php:80 -#: ../../operation/events/events.php:1629 -#: ../../operation/events/sound_events.php:77 -#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 -#: ../../operation/incidents/incident_detail.php:376 -#: ../../operation/search_agents.php:41 ../../operation/search_agents.php:46 -#: ../../operation/search_alerts.php:33 ../../operation/search_modules.php:32 -#: ../../enterprise/dashboard/widgets/agent_module.php:119 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:59 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:48 -#: ../../enterprise/dashboard/widgets/module_icon.php:61 -#: ../../enterprise/dashboard/widgets/module_status.php:48 -#: ../../enterprise/dashboard/widgets/module_table_value.php:54 -#: ../../enterprise/dashboard/widgets/module_value.php:61 -#: ../../enterprise/dashboard/widgets/single_graph.php:43 -#: ../../enterprise/dashboard/widgets/sla_percent.php:47 -#: ../../enterprise/dashboard/widgets/top_n.php:151 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:66 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:212 -#: ../../enterprise/extensions/ipam/ipam_network.php:325 -#: ../../enterprise/godmode/agentes/collections.agents.php:106 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:82 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:396 -#: ../../enterprise/godmode/policies/policy_linking.php:122 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:693 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1177 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1877 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3146 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3355 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3373 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:287 -#: ../../enterprise/godmode/services/services.elements.php:616 -#: ../../enterprise/godmode/services/services.elements.php:641 -#: ../../enterprise/godmode/services/services.elements.php:656 -#: ../../enterprise/godmode/services/services.elements.php:663 -#: ../../enterprise/include/ajax/clustermap.php:37 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:818 -#: ../../enterprise/include/functions_alert_event.php:1131 -#: ../../enterprise/include/functions_services.php:2499 -#: ../../enterprise/include/functions_events.php:147 -#: ../../enterprise/include/functions_inventory.php:253 -#: ../../enterprise/include/functions_inventory.php:710 -#: ../../enterprise/include/functions_inventory.php:766 -#: ../../enterprise/include/functions_log.php:381 -#: ../../enterprise/include/functions_reporting.php:1675 -#: ../../enterprise/include/functions_reporting.php:2010 -#: ../../enterprise/include/functions_reporting.php:2041 -#: ../../enterprise/include/functions_reporting.php:2059 -#: ../../enterprise/include/functions_reporting.php:2595 -#: ../../enterprise/include/functions_reporting.php:3587 -#: ../../enterprise/include/functions_reporting_csv.php:462 -#: ../../enterprise/include/functions_reporting_csv.php:683 -#: ../../enterprise/include/functions_reporting_csv.php:709 -#: ../../enterprise/include/functions_reporting_csv.php:770 -#: ../../enterprise/include/functions_reporting_csv.php:809 -#: ../../enterprise/include/functions_reporting_csv.php:865 -#: ../../enterprise/include/functions_reporting_csv.php:881 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1008 -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_reporting_csv.php:1251 -#: ../../enterprise/include/functions_reporting_csv.php:1295 -#: ../../enterprise/include/functions_reporting_csv.php:1341 -#: ../../enterprise/include/functions_reporting_csv.php:1414 -#: ../../enterprise/include/functions_reporting_csv.php:1533 -#: ../../enterprise/include/functions_reporting_csv.php:1728 -#: ../../enterprise/include/functions_reporting_csv.php:1801 -#: ../../enterprise/include/functions_reporting_csv.php:2058 -#: ../../enterprise/include/functions_reporting_csv.php:2094 -#: ../../enterprise/include/functions_reporting_csv.php:2125 -#: ../../enterprise/include/functions_reporting_csv.php:2210 -#: ../../enterprise/include/functions_reporting_csv.php:2239 -#: ../../enterprise/include/functions_reporting_pdf.php:465 -#: ../../enterprise/include/functions_reporting_pdf.php:473 -#: ../../enterprise/include/functions_reporting_pdf.php:481 -#: ../../enterprise/include/functions_reporting_pdf.php:497 -#: ../../enterprise/include/functions_reporting_pdf.php:654 -#: ../../enterprise/meta/agentsearch.php:113 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3474 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:95 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:689 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:356 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:612 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:147 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:412 -#: ../../enterprise/operation/agentes/tag_view.php:572 -#: ../../enterprise/operation/inventory/inventory.php:224 -#: ../../enterprise/operation/log/log_viewer.php:436 -msgid "Agent" -msgstr "Agente" - -#: ../../extensions/agents_alerts.php:312 -msgid "module" -msgstr "módulo" - -#: ../../extensions/agents_alerts.php:353 -msgid "There are no agents with alerts" -msgstr "No existen agentes con alertas" - -#: ../../extensions/agents_alerts.php:390 -#: ../../godmode/alerts/alert_templates.php:136 -#: ../../godmode/alerts/alert_templates.php:187 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 -#: ../../godmode/massive/massive_add_action_alerts.php:177 -#: ../../godmode/massive/massive_delete_action_alerts.php:193 -msgid "Alert templates" -msgstr "Plantillas de alertas" - -#: ../../extensions/agents_alerts.php:395 -msgid "Previous templates" -msgstr "Plantillas anteriores" - -#: ../../extensions/agents_alerts.php:439 -msgid "More templates" -msgstr "Más plantillas" - -#: ../../extensions/agents_alerts.php:472 -#: ../../godmode/agentes/configurar_agente.php:397 -#: ../../godmode/agentes/modificar_agente.php:614 -#: ../../godmode/alerts/alert_actions.php:61 -#: ../../godmode/alerts/alert_commands.php:272 -#: ../../godmode/alerts/alert_list.php:506 -#: ../../godmode/alerts/alert_list.php:508 -#: ../../godmode/alerts/alert_special_days.php:45 -#: ../../godmode/alerts/alert_templates.php:136 -#: ../../godmode/alerts/alert_templates.php:187 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 -#: ../../godmode/alerts/configure_alert_action.php:60 -#: ../../godmode/alerts/configure_alert_action.php:73 -#: ../../godmode/alerts/configure_alert_command.php:43 -#: ../../godmode/alerts/configure_alert_special_days.php:55 -#: ../../godmode/alerts/configure_alert_template.php:69 -#: ../../godmode/alerts/configure_alert_template.php:93 -#: ../../godmode/alerts/configure_alert_template.php:126 -#: ../../godmode/groups/configure_group.php:184 -#: ../../godmode/groups/group_list.php:582 -#: ../../godmode/massive/massive_copy_modules.php:200 -#: ../../godmode/menu.php:187 ../../include/functions_reports.php:812 -#: ../../include/functions_reports.php:816 -#: ../../include/functions_reports.php:821 -#: ../../include/functions_treeview.php:395 -#: ../../include/functions_reporting_html.php:1918 -#: ../../include/functions_reporting_html.php:4318 -#: ../../mobile/include/functions_web.php:24 -#: ../../mobile/operation/agent.php:328 ../../mobile/operation/agents.php:84 -#: ../../mobile/operation/agents.php:397 ../../mobile/operation/alerts.php:176 -#: ../../mobile/operation/home.php:65 -#: ../../operation/agentes/estado_agente.php:722 -#: ../../operation/agentes/ver_agente.php:1173 -#: ../../operation/search_agents.php:54 ../../operation/search_results.php:105 -#: ../../enterprise/godmode/alerts/alert_events.php:84 -#: ../../enterprise/godmode/alerts/alert_events_list.php:71 -#: ../../enterprise/godmode/alerts/alert_events_list.php:121 -#: ../../enterprise/godmode/alerts/alert_events_list.php:137 -#: ../../enterprise/godmode/alerts/alert_events_list.php:156 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 -#: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_alerts.php:35 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:171 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:176 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:180 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:251 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:256 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:260 -#: ../../enterprise/godmode/services/services.service.php:494 -#: ../../enterprise/include/functions_policies.php:3760 -#: ../../enterprise/meta/agentsearch.php:119 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1535 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1751 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:618 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:231 -#: ../../enterprise/operation/agentes/tag_view.php:581 -msgid "Alerts" -msgstr "Alertas" - -#: ../../extensions/agents_alerts.php:519 -#: ../../extensions/agents_modules.php:429 ../../extensions/insert_data.php:172 -#: ../../godmode/agentes/agent_manager.php:542 -#: ../../godmode/agentes/agent_manager.php:616 -#: ../../godmode/agentes/module_manager_editor_common.php:1179 +#: ../../views/dashboard/list.php:98 +#: ../../enterprise/meta/advanced/servers.build_table.php:135 +#: ../../enterprise/meta/advanced/metasetup.visual.php:406 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:501 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:711 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:712 +#: ../../enterprise/meta/advanced/links.php:152 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:280 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:446 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:638 +#: ../../enterprise/meta/include/functions_autoprovision.php:491 +#: ../../enterprise/meta/include/functions_autoprovision.php:492 +#: ../../enterprise/meta/include/functions_autoprovision.php:657 +#: ../../enterprise/meta/include/functions_autoprovision.php:658 +#: ../../enterprise/meta/include/functions_wizard_meta.php:396 +#: ../../enterprise/extensions/backup/main.php:234 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:428 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:443 +#: ../../enterprise/godmode/modules/local_components.php:613 +#: ../../enterprise/godmode/modules/local_components.php:626 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:668 +#: ../../enterprise/godmode/agentes/inventory_manager.php:246 +#: ../../enterprise/godmode/agentes/plugins_manager.php:124 +#: ../../enterprise/godmode/agentes/plugins_manager.php:168 +#: ../../enterprise/godmode/policies/policy_plugins.php:121 +#: ../../enterprise/godmode/policies/policy_alerts.php:474 +#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/policies/policy_modules.php:1585 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:515 +#: ../../enterprise/godmode/policies/policies.php:609 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:298 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:285 +#: ../../enterprise/godmode/policies/policy_agents.php:874 +#: ../../enterprise/godmode/policies/policy_agents.php:1225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:369 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:221 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:132 +#: ../../enterprise/godmode/alerts/alert_events_list.php:656 +#: ../../enterprise/godmode/alerts/alert_events_list.php:731 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:486 +#: ../../enterprise/godmode/setup/setup_acl.php:462 +#: ../../enterprise/godmode/reporting/graph_template_list.php:189 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:469 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:495 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:182 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:201 +#: ../../enterprise/godmode/reporting/mysql_builder.php:67 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:431 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/include/functions_tasklist.php:468 +#: ../../enterprise/include/functions_tasklist.php:495 +#: ../../enterprise/include/ajax/transactional.ajax.php:119 +#: ../../enterprise/include/ajax/transactional.ajax.php:208 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:74 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1497 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1536 +#: ../../enterprise/include/class/AgentRepository.class.php:758 +#: ../../enterprise/include/class/AgentRepository.class.php:793 +#: ../../enterprise/include/class/Omnishell.class.php:1111 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2987 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3297 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:624 +#: ../../enterprise/operation/agentes/transactional_map.php:376 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:229 +#: ../../enterprise/operation/services/services.list.php:567 +#: ../../extensions/files_repo/files_repo_list.php:109 +#: ../../godmode/modules/manage_network_templates_form.php:242 +#: ../../godmode/modules/manage_nc_groups.php:262 +#: ../../godmode/modules/manage_nc_groups.php:272 +#: ../../godmode/modules/manage_network_components.php:738 +#: ../../godmode/modules/manage_network_components.php:759 +#: ../../godmode/modules/manage_network_templates.php:269 +#: ../../godmode/modules/manage_network_templates.php:282 +#: ../../godmode/groups/group_list.php:756 +#: ../../godmode/groups/group_list.php:757 +#: ../../godmode/groups/modu_group_list.php:236 +#: ../../godmode/extensions.php:260 ../../godmode/extensions.php:262 +#: ../../godmode/users/user_list.php:542 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/planned_downtime.list.php:409 +#: ../../godmode/agentes/planned_downtime.list.php:489 +#: ../../godmode/agentes/planned_downtime.editor.php:1085 +#: ../../godmode/agentes/planned_downtime.editor.php:1088 +#: ../../godmode/agentes/planned_downtime.editor.php:1139 +#: ../../godmode/agentes/fields_manager.php:151 #: ../../godmode/agentes/module_manager_editor_common.php:1223 -#: ../../godmode/agentes/module_manager_editor_prediction.php:138 -#: ../../godmode/agentes/planned_downtime.editor.php:1125 -#: ../../godmode/agentes/planned_downtime.list.php:181 -#: ../../godmode/alerts/alert_list.builder.php:69 -#: ../../godmode/alerts/alert_list.list.php:442 -#: ../../godmode/alerts/alert_list.list.php:694 -#: ../../godmode/alerts/alert_view.php:68 -#: ../../godmode/massive/massive_edit_agents.php:548 -#: ../../godmode/massive/massive_edit_agents.php:727 -#: ../../godmode/massive/massive_enable_disable_alerts.php:172 -#: ../../godmode/massive/massive_enable_disable_alerts.php:207 -#: ../../godmode/massive/massive_standby_alerts.php:184 -#: ../../godmode/massive/massive_standby_alerts.php:219 -#: ../../godmode/reporting/create_container.php:371 -#: ../../godmode/reporting/create_container.php:521 -#: ../../godmode/reporting/create_container.php:587 -#: ../../godmode/reporting/graph_builder.graph_editor.php:199 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1367 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2865 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3297 -#: ../../godmode/reporting/reporting_builder.list_items.php:382 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.wizard.php:469 -#: ../../godmode/reporting/visual_console_builder.wizard.php:790 -#: ../../godmode/servers/plugin.php:71 -#: ../../include/ajax/alert_list.ajax.php:204 -#: ../../include/functions_treeview.php:64 -#: ../../include/functions_graph.php:5206 -#: ../../include/functions_visual_map_editor.php:463 -#: ../../include/functions_reporting_html.php:493 -#: ../../include/functions_reporting_html.php:855 -#: ../../include/functions_reporting_html.php:1783 -#: ../../include/functions_reporting_html.php:2404 -#: ../../include/functions_reporting_html.php:2765 -#: ../../include/functions_reporting_html.php:2773 -#: ../../include/functions_reporting_html.php:2781 -#: ../../include/functions_reporting_html.php:2793 -#: ../../include/functions_reporting_html.php:2913 -#: ../../include/functions_reporting_html.php:3037 -#: ../../include/functions_reporting_html.php:3110 -#: ../../include/functions_reporting_html.php:3616 -#: ../../include/functions_reporting_html.php:3672 -#: ../../include/functions_reporting.php:4954 -#: ../../mobile/operation/alerts.php:319 -#: ../../operation/agentes/alerts_status.php:513 -#: ../../operation/agentes/alerts_status.php:548 -#: ../../operation/agentes/alerts_status.php:583 -#: ../../operation/agentes/alerts_status.php:615 -#: ../../operation/agentes/estado_monitores.php:118 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:31 -#: ../../enterprise/dashboard/widgets/agent_module.php:138 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:64 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:73 -#: ../../enterprise/dashboard/widgets/module_icon.php:77 -#: ../../enterprise/dashboard/widgets/module_icon.php:86 -#: ../../enterprise/dashboard/widgets/module_status.php:64 -#: ../../enterprise/dashboard/widgets/module_status.php:73 -#: ../../enterprise/dashboard/widgets/module_table_value.php:70 -#: ../../enterprise/dashboard/widgets/module_table_value.php:79 -#: ../../enterprise/dashboard/widgets/module_value.php:78 -#: ../../enterprise/dashboard/widgets/module_value.php:87 -#: ../../enterprise/dashboard/widgets/single_graph.php:63 -#: ../../enterprise/dashboard/widgets/single_graph.php:72 -#: ../../enterprise/dashboard/widgets/sla_percent.php:63 -#: ../../enterprise/dashboard/widgets/sla_percent.php:72 -#: ../../enterprise/dashboard/widgets/top_n.php:152 -#: ../../enterprise/dashboard/widgets/top_n.php:350 -#: ../../enterprise/extensions/disabled/check_acls.php:139 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:21 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 -#: ../../enterprise/godmode/policies/policy_alerts.php:286 -#: ../../enterprise/godmode/policies/policy_alerts.php:502 -#: ../../enterprise/godmode/policies/policy_linking.php:123 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:724 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:796 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1206 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1278 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:152 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1901 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3360 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3378 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 -#: ../../enterprise/godmode/services/services.elements.php:613 -#: ../../enterprise/godmode/services/services.elements.php:645 -#: ../../enterprise/godmode/services/services.elements.php:655 -#: ../../enterprise/godmode/services/services.elements.php:712 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:819 -#: ../../enterprise/include/functions_alert_event.php:1132 -#: ../../enterprise/include/functions_services.php:2561 -#: ../../enterprise/include/functions_events.php:157 -#: ../../enterprise/include/functions_inventory.php:711 -#: ../../enterprise/include/functions_inventory.php:767 -#: ../../enterprise/include/functions_reporting.php:1676 -#: ../../enterprise/include/functions_reporting.php:2596 -#: ../../enterprise/include/functions_reporting.php:3588 -#: ../../enterprise/include/functions_reporting_csv.php:463 -#: ../../enterprise/include/functions_reporting_csv.php:683 -#: ../../enterprise/include/functions_reporting_csv.php:709 -#: ../../enterprise/include/functions_reporting_csv.php:770 -#: ../../enterprise/include/functions_reporting_csv.php:809 -#: ../../enterprise/include/functions_reporting_csv.php:865 -#: ../../enterprise/include/functions_reporting_csv.php:881 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1008 -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_reporting_csv.php:1251 -#: ../../enterprise/include/functions_reporting_csv.php:1296 -#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../godmode/agentes/module_manager.php:655 +#: ../../godmode/agentes/module_manager.php:936 +#: ../../godmode/agentes/module_manager.php:962 +#: ../../godmode/netflow/nf_item_list.php:265 +#: ../../godmode/netflow/nf_item_list.php:275 +#: ../../godmode/netflow/nf_edit.php:172 ../../godmode/netflow/nf_edit.php:183 +#: ../../godmode/snmpconsole/snmp_alert.php:1310 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_delete_action_alerts.php:256 +#: ../../godmode/massive/massive_delete_modules.php:563 +#: ../../godmode/massive/massive_delete_agents.php:192 +#: ../../godmode/massive/massive_delete_profiles.php:178 +#: ../../godmode/massive/massive_delete_alerts.php:326 +#: ../../godmode/alerts/alert_actions.php:228 +#: ../../godmode/alerts/alert_list.list.php:837 +#: ../../godmode/alerts/alert_templates.php:408 +#: ../../godmode/setup/news.php:241 ../../godmode/setup/gis.php:67 +#: ../../godmode/setup/links.php:143 ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1278 +#: ../../godmode/setup/setup_visuals.php:1298 +#: ../../godmode/reporting/reporting_builder.list_items.php:536 +#: ../../godmode/reporting/reporting_builder.list_items.php:566 +#: ../../godmode/reporting/reporting_builder.list_items.php:589 +#: ../../godmode/reporting/reporting_builder.list_items.php:690 +#: ../../godmode/reporting/create_container.php:596 +#: ../../godmode/reporting/create_container.php:649 +#: ../../godmode/reporting/map_builder.php:339 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/graphs.php:308 +#: ../../godmode/reporting/graphs.php:325 +#: ../../godmode/reporting/graph_builder.graph_editor.php:202 +#: ../../godmode/reporting/graph_builder.graph_editor.php:242 +#: ../../godmode/reporting/visual_console_builder.elements.php:666 +#: ../../godmode/reporting/reporting_builder.php:1060 +#: ../../godmode/reporting/reporting_builder.php:1151 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/events/event_filter.php:175 +#: ../../godmode/events/event_responses.list.php:63 +#: ../../godmode/servers/servers.build_table.php:213 +#: ../../include/functions_cron.php:708 ../../include/functions_cron.php:730 +#: ../../include/class/ConfigPEN.class.php:260 +#: ../../include/class/NetworkMap.class.php:2813 +#: ../../include/class/ManageNetScanScripts.class.php:410 +#: ../../include/class/CredentialStore.class.php:1010 +#: ../../include/class/CredentialStore.class.php:1163 +#: ../../include/class/ModuleTemplates.class.php:850 +#: ../../include/class/ModuleTemplates.class.php:1116 +#: ../../include/functions_container.php:188 +#: ../../include/functions_container.php:322 +#: ../../operation/visual_console/view.php:561 +#: ../../operation/agentes/pandora_networkmap.php:702 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/messages/message_list.php:169 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/messages/message_list.php:261 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/snmpconsole/snmp_view.php:1188 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/incident_detail.php:478 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:129 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:301 +#: ../../operation/incidents/list_integriaims_incidents.php:306 +msgid "Delete" +msgstr "Eliminar" + +#: ../../views/dashboard/list.php:131 +#, php-format +msgid "Private for (%s)" +msgstr "Privado por (%s)" + +#: ../../views/dashboard/list.php:174 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:498 +#: ../../enterprise/meta/advanced/metasetup.relations.php:584 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:698 +#: ../../enterprise/meta/advanced/links.php:166 +#: ../../enterprise/meta/advanced/policymanager.queue.php:333 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1097 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 +#: ../../enterprise/extensions/backup/main.php:295 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:419 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:492 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:379 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:427 +#: ../../enterprise/godmode/modules/local_components.php:613 +#: ../../enterprise/godmode/agentes/inventory_manager.php:245 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 +#: ../../enterprise/godmode/policies/policy_alerts.php:453 +#: ../../enterprise/godmode/policies/policy_modules.php:1521 +#: ../../enterprise/godmode/policies/policy_modules.php:1534 +#: ../../enterprise/godmode/policies/policy_modules.php:1579 +#: ../../enterprise/godmode/policies/policy_queue.php:535 +#: ../../enterprise/godmode/policies/policy_queue.php:572 +#: ../../enterprise/godmode/policies/policy_queue.php:590 +#: ../../enterprise/godmode/policies/policies.php:582 +#: ../../enterprise/godmode/policies/policies.php:600 +#: ../../enterprise/godmode/policies/policies.php:625 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:277 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:279 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:284 +#: ../../enterprise/godmode/policies/policy_agents.php:413 +#: ../../enterprise/godmode/policies/policy_agents.php:635 +#: ../../enterprise/godmode/policies/policy_agents.php:867 +#: ../../enterprise/godmode/policies/policy_agents.php:933 +#: ../../enterprise/godmode/policies/policy_agents.php:1030 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:368 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:634 +#: ../../enterprise/godmode/alerts/alert_events_list.php:728 +#: ../../enterprise/godmode/alerts/alert_events_list.php:839 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:485 +#: ../../enterprise/godmode/setup/setup_skins.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:801 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:608 +#: ../../enterprise/godmode/reporting/graph_template_list.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:399 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:462 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +#: ../../enterprise/include/functions_tasklist.php:464 +#: ../../enterprise/include/functions_tasklist.php:491 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1518 +#: ../../enterprise/include/class/AgentRepository.class.php:775 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1103 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3282 +#: ../../enterprise/include/functions_services.php:2753 +#: ../../enterprise/operation/agentes/transactional_map.php:360 +#: ../../enterprise/operation/agentes/transactional_map.php:364 +#: ../../enterprise/operation/agentes/transactional_map.php:375 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:228 +#: ../../enterprise/operation/services/services.list.php:566 +#: ../../extensions/files_repo/files_repo_list.php:108 +#: ../../godmode/modules/manage_nc_groups.php:261 +#: ../../godmode/modules/manage_network_components.php:738 +#: ../../godmode/modules/manage_network_templates.php:259 +#: ../../godmode/modules/manage_network_templates.php:269 +#: ../../godmode/groups/group_list.php:745 +#: ../../godmode/groups/modu_group_list.php:249 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/users/profile_list.php:366 +#: ../../godmode/users/user_list.php:542 ../../godmode/users/user_list.php:544 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/modificar_agente.php:734 +#: ../../godmode/agentes/planned_downtime.editor.php:1133 +#: ../../godmode/agentes/fields_manager.php:151 +#: ../../godmode/agentes/agent_manager.php:231 +#: ../../godmode/agentes/module_manager_editor_common.php:209 +#: ../../godmode/agentes/module_manager.php:879 +#: ../../godmode/agentes/module_manager.php:890 +#: ../../godmode/agentes/module_manager.php:912 +#: ../../godmode/agentes/module_manager.php:932 +#: ../../godmode/agentes/module_manager.php:954 +#: ../../godmode/netflow/nf_item_list.php:264 +#: ../../godmode/netflow/nf_edit.php:171 +#: ../../godmode/snmpconsole/snmp_alert.php:1310 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_alert.php:1570 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_operations.php:312 +#: ../../godmode/massive/massive_operations.php:321 +#: ../../godmode/massive/massive_standby_alerts.php:215 +#: ../../godmode/massive/massive_delete_action_alerts.php:254 +#: ../../godmode/massive/massive_delete_modules.php:561 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_delete_agents.php:190 +#: ../../godmode/massive/massive_edit_plugins.php:588 +#: ../../godmode/massive/massive_enable_disable_alerts.php:203 +#: ../../godmode/massive/massive_delete_profiles.php:176 +#: ../../godmode/massive/massive_add_action_alerts.php:234 +#: ../../godmode/massive/massive_add_profiles.php:169 +#: ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/alerts/alert_list.list.php:969 +#: ../../godmode/alerts/alert_commands.php:463 +#: ../../godmode/alerts/alert_commands.php:465 +#: ../../godmode/alerts/alert_templates.php:405 +#: ../../godmode/alerts/alert_special_days.php:506 +#: ../../godmode/setup/news.php:280 ../../godmode/setup/links.php:157 +#: ../../godmode/reporting/create_container.php:648 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/graphs.php:307 +#: ../../godmode/reporting/visual_console_builder.elements.php:405 +#: ../../godmode/reporting/reporting_builder.php:1053 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:495 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:757 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:777 +#: ../../godmode/servers/plugin.php:1031 ../../godmode/tag/tag.php:294 +#: ../../godmode/category/category.php:129 +#: ../../godmode/category/category.php:134 +#: ../../include/functions_profile.php:257 +#: ../../include/class/ConfigPEN.class.php:660 +#: ../../include/class/TreeGroupEdition.class.php:94 +#: ../../include/class/CredentialStore.class.php:1161 +#: ../../include/class/ModuleTemplates.class.php:840 +#: ../../include/class/ModuleTemplates.class.php:850 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:727 +#: ../../include/functions_container.php:187 +#: ../../include/functions_container.php:321 +#: ../../include/functions_events.php:3528 +#: ../../operation/users/user_edit.php:1079 +#: ../../operation/agentes/pandora_networkmap.editor.php:570 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/snmpconsole/snmp_browser.php:578 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/incidents/incident_detail.php:446 +#: ../../operation/incidents/incident_detail.php:494 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:245 +#: ../../operation/incidents/list_integriaims_incidents.php:305 +#: ../../operation/events/events.build_table.php:966 +msgid "Are you sure?" +msgstr "¿Estás seguro?" + +#: ../../views/dashboard/list.php:219 +msgid "New dashboard" +msgstr "Nuevo dashboard" + +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85 +msgid "Add widget" +msgstr "Agregar widget" + +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "Seleccione un widget" + +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:74 +#: ../../operation/snmpconsole/snmp_view.php:1259 +#: ../../operation/events/events.php:2431 +msgid "Until next" +msgstr "Hasta el próximo" + +#: ../../views/dashboard/formDashboard.php:84 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 +#: ../../godmode/reporting/reporting_builder.php:819 +msgid "Private" +msgstr "Privado" + +#: ../../views/dashboard/formDashboard.php:113 +#: ../../enterprise/godmode/services/services.service.php:440 +#: ../../enterprise/godmode/reporting/visual_console_template.php:200 +msgid "Favourite" +msgstr "Favorito" + +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "Nuevo widget" + +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "Configurar widget" + +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "Eliminar widget" + +#: ../../views/dashboard/slides.php:40 +#: ../../operation/snmpconsole/snmp_view.php:705 +msgid "Exit fullscreen" +msgstr "Salir de pantalla completa" + +#: ../../views/dashboard/slides.php:178 +msgid "Change every" +msgstr "Cambiar cada" + +#: ../../views/dashboard/slides.php:200 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 +#: ../../include/functions.php:3665 +msgid "Previous" +msgstr "Anterior" + +#: ../../views/dashboard/slides.php:215 +#: ../../enterprise/operation/agentes/transactional_map.php:365 +msgid "Stop" +msgstr "Parar" + +#: ../../views/dashboard/slides.php:226 +msgid "Pause" +msgstr "Pausar" + +#: ../../views/dashboard/slides.php:237 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:90 +#: ../../enterprise/godmode/alerts/alert_events.php:675 +#: ../../enterprise/godmode/wizards/Cloud.class.php:535 +#: ../../enterprise/include/class/VMware.app.php:489 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/SAP.app.php:432 +#: ../../enterprise/include/class/Aws.cloud.php:1310 +#: ../../enterprise/include/class/MySQL.app.php:587 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:752 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1766 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1869 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1173 +#: ../../godmode/alerts/configure_alert_template.php:1010 +#: ../../godmode/alerts/configure_alert_template.php:1017 +#: ../../godmode/wizards/HostDevices.class.php:765 +#: ../../include/class/CustomNetScan.class.php:548 +msgid "Next" +msgstr "Siguiente" + +#: ../../views/dashboard/slides.php:249 +msgid "Mode Cell" +msgstr "Modo celdas" + +#: ../../views/dashboard/slides.php:255 +msgid "Mode Layout" +msgstr "Modo esquema" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/extensions/ipam/ipam_editor.php:141 +#: ../../enterprise/operation/services/services.treeview_services.php:61 +#: ../../enterprise/operation/services/services.treeview_services.php:67 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../operation/agentes/ver_agente.php:1549 ../../operation/menu.php:33 +#: ../../operation/menu.php:166 +msgid "Monitoring" +msgstr "Monitorización" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:35 +msgid "Clusters" +msgstr "Clústers" + +#: ../../enterprise/views/cluster/list.php:59 +#: ../../enterprise/views/cluster/view.php:270 +#: ../../enterprise/meta/advanced/collections.php:322 +#: ../../enterprise/meta/include/functions_autoprovision.php:449 +#: ../../enterprise/meta/include/functions_wizard_meta.php:198 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:585 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1142 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1462 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1807 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:302 +#: ../../enterprise/extensions/backup/main.php:131 +#: ../../enterprise/extensions/backup/main.php:261 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:319 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:371 +#: ../../enterprise/extensions/ipam/ipam_list.php:136 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:410 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_excel.php:106 +#: ../../enterprise/extensions/ipam/ipam_excel.php:176 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:161 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1222 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1678 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:223 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:271 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_editor.php:133 +#: ../../enterprise/godmode/modules/configure_local_component.php:449 +#: ../../enterprise/godmode/modules/configure_local_component.php:610 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:370 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:334 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:82 +#: ../../enterprise/godmode/agentes/collection_manager.php:117 +#: ../../enterprise/godmode/agentes/collection_manager.php:203 +#: ../../enterprise/godmode/agentes/inventory_manager.php:218 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:134 +#: ../../enterprise/godmode/agentes/collections.php:324 +#: ../../enterprise/godmode/policies/configure_policy.php:95 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:254 +#: ../../enterprise/godmode/policies/policy_collections.php:151 +#: ../../enterprise/godmode/policies/policy_collections.php:246 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:522 +#: ../../enterprise/godmode/alerts/alert_events.php:606 +#: ../../enterprise/godmode/services/services.service.php:388 +#: ../../enterprise/godmode/services/services.elements.php:731 +#: ../../enterprise/godmode/setup/setup_skins.php:121 +#: ../../enterprise/godmode/setup/edit_skin.php:256 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:157 +#: ../../enterprise/godmode/reporting/graph_template_list.php:147 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:167 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:508 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:314 +#: ../../enterprise/mobile/include/enterprise.class.php:88 +#: ../../enterprise/include/functions_cron.php:261 +#: ../../enterprise/include/functions_reporting_pdf.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:454 +#: ../../enterprise/include/functions_reporting_csv.php:457 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:706 +#: ../../enterprise/include/functions_reporting_csv.php:733 +#: ../../enterprise/include/functions_reporting_csv.php:735 +#: ../../enterprise/include/functions_reporting_csv.php:764 +#: ../../enterprise/include/functions_reporting_csv.php:766 +#: ../../enterprise/include/functions_reporting_csv.php:796 +#: ../../enterprise/include/functions_reporting_csv.php:798 +#: ../../enterprise/include/functions_reporting_csv.php:833 +#: ../../enterprise/include/functions_reporting_csv.php:835 +#: ../../enterprise/include/functions_reporting_csv.php:856 +#: ../../enterprise/include/functions_reporting_csv.php:858 +#: ../../enterprise/include/functions_reporting_csv.php:907 +#: ../../enterprise/include/functions_reporting_csv.php:909 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:956 +#: ../../enterprise/include/functions_reporting_csv.php:980 +#: ../../enterprise/include/functions_reporting_csv.php:982 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1011 +#: ../../enterprise/include/functions_reporting_csv.php:1013 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1066 +#: ../../enterprise/include/functions_reporting_csv.php:1068 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1121 +#: ../../enterprise/include/functions_reporting_csv.php:1123 +#: ../../enterprise/include/functions_reporting_csv.php:1170 +#: ../../enterprise/include/functions_reporting_csv.php:1172 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1225 +#: ../../enterprise/include/functions_reporting_csv.php:1227 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1254 +#: ../../enterprise/include/functions_reporting_csv.php:1256 +#: ../../enterprise/include/functions_reporting_csv.php:1291 +#: ../../enterprise/include/functions_reporting_csv.php:1293 #: ../../enterprise/include/functions_reporting_csv.php:1415 -#: ../../enterprise/include/functions_reporting_csv.php:1534 -#: ../../enterprise/include/functions_reporting_csv.php:1729 -#: ../../enterprise/include/functions_reporting_csv.php:1802 -#: ../../enterprise/include/functions_reporting_csv.php:2058 +#: ../../enterprise/include/functions_reporting_csv.php:1531 +#: ../../enterprise/include/functions_reporting_csv.php:1677 +#: ../../enterprise/include/functions_reporting_csv.php:1679 +#: ../../enterprise/include/functions_reporting_csv.php:1731 +#: ../../enterprise/include/functions_reporting_csv.php:1799 +#: ../../enterprise/include/functions_reporting_csv.php:1968 +#: ../../enterprise/include/functions_reporting_csv.php:2005 +#: ../../enterprise/include/functions_reporting_csv.php:2009 +#: ../../enterprise/include/functions_reporting_csv.php:2061 +#: ../../enterprise/include/functions_reporting_csv.php:2063 +#: ../../enterprise/include/functions_reporting_csv.php:2092 #: ../../enterprise/include/functions_reporting_csv.php:2094 -#: ../../enterprise/include/functions_reporting_csv.php:2210 -#: ../../enterprise/include/functions_reporting_pdf.php:466 -#: ../../enterprise/include/functions_reporting_pdf.php:474 -#: ../../enterprise/include/functions_reporting_pdf.php:482 -#: ../../enterprise/include/functions_reporting_pdf.php:498 -#: ../../enterprise/include/functions_ui.php:47 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3481 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/operation/agentes/agent_inventory.php:69 -#: ../../enterprise/operation/agentes/policy_view.php:207 -#: ../../enterprise/operation/inventory/inventory.php:185 -msgid "Module" -msgstr "Módulo" +#: ../../enterprise/include/functions_reporting_csv.php:2128 +#: ../../enterprise/include/functions_reporting_csv.php:2130 +#: ../../enterprise/include/functions_reporting_csv.php:2160 +#: ../../enterprise/include/functions_reporting_csv.php:2162 +#: ../../enterprise/include/functions_reporting_csv.php:2182 +#: ../../enterprise/include/functions_reporting_csv.php:2184 +#: ../../enterprise/include/functions_reporting_csv.php:2223 +#: ../../enterprise/include/functions_reporting_csv.php:2225 +#: ../../enterprise/include/functions_reporting_csv.php:2277 +#: ../../enterprise/include/functions_reporting_csv.php:2279 +#: ../../enterprise/include/functions_reporting_csv.php:2310 +#: ../../enterprise/include/functions_reporting_csv.php:2312 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:716 +#: ../../enterprise/include/functions_services.php:2476 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../enterprise/include/functions_update_manager.php:209 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../enterprise/operation/agentes/transactional_map.php:181 +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:77 +#: ../../enterprise/operation/agentes/ver_agente.php:57 +#: ../../enterprise/operation/agentes/collection_view.php:64 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:411 +#: ../../enterprise/operation/services/services.service.php:164 +#: ../../enterprise/operation/services/services.list.php:426 +#: ../../extensions/files_repo/files_repo_form.php:62 +#: ../../extensions/files_repo/files_repo_list.php:54 +#: ../../godmode/modules/manage_network_templates_form.php:160 +#: ../../godmode/modules/manage_network_templates_form.php:222 +#: ../../godmode/modules/manage_network_components_form.php:296 +#: ../../godmode/modules/manage_network_components.php:669 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/modules/manage_network_templates.php:235 +#: ../../godmode/groups/configure_group.php:196 +#: ../../godmode/groups/group_list.php:689 +#: ../../godmode/users/user_list.php:334 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/modificar_agente.php:496 +#: ../../godmode/agentes/planned_downtime.list.php:399 +#: ../../godmode/agentes/planned_downtime.editor.php:663 +#: ../../godmode/agentes/agent_manager.php:400 +#: ../../godmode/agentes/module_manager_editor_common.php:997 +#: ../../godmode/agentes/module_manager.php:649 +#: ../../godmode/netflow/nf_item_list.php:177 +#: ../../godmode/snmpconsole/snmp_alert.php:754 +#: ../../godmode/snmpconsole/snmp_alert.php:1278 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/snmpconsole/snmp_filters.php:258 +#: ../../godmode/massive/massive_edit_plugins.php:506 +#: ../../godmode/massive/massive_edit_agents.php:598 +#: ../../godmode/massive/massive_edit_modules.php:671 +#: ../../godmode/alerts/configure_alert_command.php:194 +#: ../../godmode/alerts/alert_commands.php:415 +#: ../../godmode/alerts/configure_alert_special_days.php:92 +#: ../../godmode/alerts/alert_templates.php:46 +#: ../../godmode/alerts/configure_alert_template.php:935 +#: ../../godmode/setup/os.builder.php:34 ../../godmode/setup/os.list.php:33 +#: ../../godmode/setup/setup_integria.php:271 +#: ../../godmode/setup/setup_integria.php:394 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:234 +#: ../../godmode/reporting/graphs.php:264 +#: ../../godmode/reporting/reporting_builder.item_editor.php:898 +#: ../../godmode/reporting/reporting_builder.main.php:188 +#: ../../godmode/reporting/reporting_builder.php:792 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_responses.editor.php:93 +#: ../../godmode/events/event_responses.list.php:51 +#: ../../godmode/servers/modificar_server.php:64 +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:478 +#: ../../godmode/tag/tag.php:175 ../../godmode/tag/tag.php:225 +#: ../../godmode/tag/edit_tag.php:176 ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:133 +#: ../../include/functions_reporting_html.php:2609 +#: ../../include/functions_reporting_html.php:2660 +#: ../../include/functions_reporting_html.php:4182 +#: ../../include/functions_reporting_html.php:5173 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/module.php:844 +#: ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:631 +#: ../../include/class/ConfigPEN.class.php:442 +#: ../../include/class/ConfigPEN.class.php:593 +#: ../../include/class/ManageNetScanScripts.class.php:409 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 +#: ../../include/class/ModuleTemplates.class.php:816 +#: ../../include/class/ModuleTemplates.class.php:977 +#: ../../include/class/ModuleTemplates.class.php:1115 +#: ../../include/functions_container.php:148 +#: ../../include/functions_snmp_browser.php:536 +#: ../../include/functions_snmp_browser.php:1353 +#: ../../include/functions_events.php:3599 ../../operation/search_users.php:39 +#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 +#: ../../operation/agentes/gis_view.php:219 +#: ../../operation/agentes/estado_agente.php:707 +#: ../../operation/agentes/pandora_networkmap.editor.php:291 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/estado_generalagente.php:216 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/incident_detail.php:476 +#: ../../operation/incidents/incident_detail.php:526 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:256 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:298 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:311 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:443 +#: ../../operation/search_reports.php:35 ../../operation/search_graphs.php:30 +#: ../../operation/reporting/custom_reporting.php:35 +#: ../../operation/reporting/graph_viewer.php:377 +#: ../../operation/search_policies.php:35 +msgid "Description" +msgstr "Descripción" -#: ../../extensions/agents_alerts.php:520 ../../general/logon_ok.php:246 -#: ../../godmode/admin_access_logs.php:82 -#: ../../godmode/admin_access_logs.php:197 -#: ../../godmode/agentes/agent_template.php:236 -#: ../../godmode/agentes/module_manager.php:654 -#: ../../godmode/agentes/planned_downtime.editor.php:1126 -#: ../../godmode/alerts/alert_list.list.php:702 -#: ../../godmode/alerts/alert_view.php:415 -#: ../../godmode/events/event_filter.php:126 -#: ../../godmode/massive/massive_add_action_alerts.php:210 -#: ../../godmode/massive/massive_delete_action_alerts.php:224 -#: ../../godmode/massive/massive_enable_disable_alerts.php:199 -#: ../../godmode/massive/massive_operations.php:311 -#: ../../godmode/massive/massive_standby_alerts.php:211 -#: ../../godmode/modules/manage_nc_groups.php:232 -#: ../../godmode/modules/manage_network_components.php:675 -#: ../../godmode/modules/manage_network_templates.php:229 -#: ../../godmode/netflow/nf_edit.php:148 -#: ../../godmode/netflow/nf_item_list.php:180 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2905 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3288 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../godmode/snmpconsole/snmp_alert.php:1277 -#: ../../godmode/snmpconsole/snmp_alert.php:1354 -#: ../../godmode/snmpconsole/snmp_filters.php:260 -#: ../../include/ajax/alert_list.ajax.php:219 ../../include/functions.php:2884 -#: ../../include/functions_events.php:6117 -#: ../../include/functions_events.php.orig:6021 -#: ../../include/functions_ui_renders.php:117 -#: ../../include/functions_reporting_html.php:2407 -#: ../../include/functions_reporting_html.php:4645 -#: ../../include/functions_profile.php:215 -#: ../../mobile/operation/tactical.php:348 -#: ../../operation/agentes/alerts_status.functions.php:110 -#: ../../operation/agentes/alerts_status.php:515 -#: ../../operation/agentes/alerts_status.php:550 -#: ../../operation/agentes/alerts_status.php:585 -#: ../../operation/agentes/alerts_status.php:617 -#: ../../operation/events/events.build_table.php:362 -#: ../../operation/search_alerts.php:36 -#: ../../operation/snmpconsole/snmp_view.php:836 -#: ../../operation/snmpconsole/snmp_view.php:1185 -#: ../../enterprise/dashboard/widgets/top_n.php:154 -#: ../../enterprise/extensions/ipam/ipam_list.php:145 -#: ../../enterprise/godmode/admin_access_logs.php:28 -#: ../../enterprise/godmode/alerts/alert_events.php:625 -#: ../../enterprise/godmode/alerts/alert_events.php:644 -#: ../../enterprise/godmode/alerts/alert_events_list.php:503 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:375 -#: ../../enterprise/godmode/policies/policy_alerts.php:510 -#: ../../enterprise/godmode/policies/policy_modules.php:1493 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3169 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3365 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3388 -#: ../../enterprise/godmode/servers/manage_export.php:142 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:389 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:447 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2290 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2627 -#: ../../enterprise/include/functions_services.php:2486 -#: ../../enterprise/operation/agentes/policy_view.php:209 -msgid "Action" -msgstr "Acción" +#: ../../enterprise/views/cluster/list.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:206 +#: ../../enterprise/godmode/policies/policy_modules.php:1447 +#: ../../enterprise/godmode/services/services.elements.php:637 +#: ../../enterprise/godmode/services/services.elements.php:660 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:274 +#: ../../enterprise/include/functions_reporting_csv.php:1406 +#: ../../enterprise/include/functions_reporting_csv.php:1522 +#: ../../enterprise/include/functions_reporting_csv.php:1722 +#: ../../enterprise/include/functions_reporting_csv.php:1790 +#: ../../enterprise/include/functions_services.php:2474 +#: ../../enterprise/operation/agentes/policy_view.php:325 +#: ../../enterprise/operation/agentes/tag_view.php:583 +#: ../../enterprise/operation/agentes/ver_agente.php:29 +#: ../../godmode/modules/manage_network_templates_form.php:220 +#: ../../godmode/modules/manage_network_components_form_common.php:75 +#: ../../godmode/modules/manage_network_components.php:668 +#: ../../godmode/agentes/agent_template.php:234 +#: ../../godmode/agentes/modificar_agente.php:494 +#: ../../godmode/agentes/planned_downtime.list.php:401 +#: ../../godmode/agentes/planned_downtime.editor.php:673 +#: ../../godmode/agentes/module_manager_editor_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:373 +#: ../../godmode/agentes/module_manager_editor_common.php:1221 +#: ../../godmode/agentes/module_manager.php:647 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:285 +#: ../../godmode/alerts/alert_templates.php:368 +#: ../../godmode/setup/news.php:237 ../../godmode/setup/gis_step_2.php:225 +#: ../../godmode/setup/setup_integria.php:333 +#: ../../godmode/setup/setup_integria.php:456 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:796 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:303 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../godmode/servers/servers.build_table.php:67 +#: ../../godmode/servers/modificar_server.php:70 +#: ../../godmode/servers/plugin.php:970 +#: ../../mobile/operation/visualmaps.php:67 +#: ../../mobile/operation/visualmaps.php:68 +#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 +#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:680 +#: ../../mobile/operation/events.php:681 +#: ../../include/functions_visual_map_editor.php:634 +#: ../../include/functions_visual_map_editor.php:652 +#: ../../include/functions_visual_map_editor.php:780 +#: ../../include/functions_reporting_html.php:964 +#: ../../include/functions_reporting_html.php:972 +#: ../../include/functions_reporting_html.php:1184 +#: ../../include/functions_reporting_html.php:1192 +#: ../../include/functions_reporting_html.php:1959 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:4181 +#: ../../include/ajax/module.php:842 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:461 +#: ../../include/class/ModuleTemplates.class.php:1114 +#: ../../include/class/AgentWizard.class.php:440 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:273 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:530 +#: ../../include/functions_events.php:2397 +#: ../../include/functions_events.php:4537 +#: ../../operation/agentes/estado_agente.php:722 +#: ../../operation/agentes/ver_agente.php:979 +#: ../../operation/netflow/nf_live_view.php:311 +#: ../../operation/incidents/configure_integriaims_incident.php:210 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:377 +#: ../../operation/search_modules.php:33 +#: ../../operation/events/sound_events.php:74 +msgid "Type" +msgstr "Tipo" -#: ../../extensions/agents_alerts.php:521 -#: ../../godmode/alerts/alert_view.php:76 -#: ../../godmode/snmpconsole/snmp_alert.php:1274 -#: ../../include/functions_treeview.php:445 -#: ../../include/functions_reporting_html.php:4141 -#: ../../operation/agentes/alerts_status.php:516 -#: ../../operation/agentes/alerts_status.php:551 -#: ../../operation/agentes/alerts_status.php:586 -#: ../../operation/agentes/alerts_status.php:618 -#: ../../enterprise/operation/agentes/policy_view.php:210 -msgid "Last fired" -msgstr "Disparada por última vez" +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:4602 +#: ../../operation/agentes/pandora_networkmap.php:695 +msgid "Nodes" +msgstr "Nodos" +#: ../../enterprise/views/cluster/list.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:59 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:414 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:692 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:119 +#: ../../enterprise/meta/agentsearch.php:304 +#: ../../enterprise/extensions/backup/main.php:134 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/extensions/vmware/vmware_view.php:1092 +#: ../../enterprise/godmode/agentes/collection_manager.php:118 +#: ../../enterprise/godmode/agentes/collection_manager.php:204 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_modules.php:1448 +#: ../../enterprise/godmode/policies/policy_queue.php:427 +#: ../../enterprise/godmode/policies/policies.php:431 +#: ../../enterprise/godmode/policies/policy_collections.php:152 +#: ../../enterprise/godmode/policies/policy_collections.php:247 +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:108 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/alerts/alert_events_list.php:504 +#: ../../enterprise/godmode/servers/HA_cluster.php:131 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/include/functions_reporting_csv.php:1754 +#: ../../enterprise/include/functions_reporting.php:1680 +#: ../../enterprise/include/functions_reporting.php:2580 +#: ../../enterprise/include/functions_reporting.php:3572 +#: ../../enterprise/include/functions_reporting.php:5361 +#: ../../enterprise/include/functions_services.php:2490 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:211 +#: ../../enterprise/operation/agentes/policy_view.php:326 +#: ../../enterprise/operation/agentes/tag_view.php:585 +#: ../../enterprise/operation/agentes/tag_view.php:662 +#: ../../enterprise/operation/agentes/collection_view.php:65 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/services.list.php:202 +#: ../../enterprise/operation/services/services.list.php:433 +#: ../../enterprise/operation/services/services.table_services.php:181 #: ../../extensions/agents_alerts.php:522 ../../extensions/net_tools.php:241 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/module_manager.php:650 #: ../../godmode/agentes/status_monitor_custom_fields.php:97 #: ../../godmode/agentes/status_monitor_custom_fields.php:148 -#: ../../godmode/alerts/alert_list.list.php:445 -#: ../../godmode/alerts/alert_view.php:91 -#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/module_manager.php:650 #: ../../godmode/massive/massive_copy_modules.php:105 #: ../../godmode/massive/massive_copy_modules.php:265 -#: ../../godmode/massive/massive_delete_agents.php:142 #: ../../godmode/massive/massive_delete_modules.php:391 +#: ../../godmode/massive/massive_delete_agents.php:142 #: ../../godmode/massive/massive_edit_agents.php:429 #: ../../godmode/massive/massive_edit_agents.php:640 +#: ../../godmode/alerts/alert_list.list.php:457 +#: ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/setup/setup_integria.php:351 +#: ../../godmode/setup/setup_integria.php:474 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:435 #: ../../godmode/servers/servers.build_table.php:66 -#: ../../godmode/setup/setup_integria.php:354 -#: ../../godmode/setup/setup_integria.php:477 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:403 -#: ../../include/ajax/custom_fields.php:406 ../../include/ajax/module.php:838 -#: ../../include/class/NetworkMap.class.php:2933 -#: ../../include/functions_snmp.php:369 -#: ../../include/functions_snmp_browser.php:539 -#: ../../include/functions_events.php:194 -#: ../../include/functions_events.php:247 -#: ../../include/functions_events.php:2402 -#: ../../include/functions_events.php:4567 -#: ../../include/functions_events.php:5994 -#: ../../include/functions_events.php.orig:192 -#: ../../include/functions_events.php.orig:245 -#: ../../include/functions_events.php.orig:2308 -#: ../../include/functions_events.php.orig:4461 -#: ../../include/functions_events.php.orig:5898 -#: ../../include/functions_reporting_html.php:497 -#: ../../include/functions_reporting_html.php:961 -#: ../../include/functions_reporting_html.php:970 -#: ../../include/functions_reporting_html.php:1182 -#: ../../include/functions_reporting_html.php:1190 -#: ../../include/functions_reporting_html.php:1957 -#: ../../include/functions_reporting_html.php:2614 -#: ../../include/functions_reporting_html.php:2667 -#: ../../include/functions_reporting_html.php:3950 #: ../../mobile/operation/agents.php:83 ../../mobile/operation/agents.php:130 #: ../../mobile/operation/agents.php:228 ../../mobile/operation/agents.php:229 -#: ../../mobile/operation/agents.php:396 ../../mobile/operation/alerts.php:87 -#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:228 -#: ../../mobile/operation/alerts.php:229 ../../mobile/operation/alerts.php:331 -#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369 -#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:672 ../../mobile/operation/modules.php:139 +#: ../../mobile/operation/agents.php:396 ../../mobile/operation/modules.php:139 #: ../../mobile/operation/modules.php:140 #: ../../mobile/operation/modules.php:250 #: ../../mobile/operation/modules.php:251 @@ -1293,901 +1569,26206 @@ msgstr "Disparada por última vez" #: ../../mobile/operation/modules.php:621 #: ../../mobile/operation/modules.php:692 #: ../../mobile/operation/modules.php:700 -#: ../../mobile/operation/modules.php:820 +#: ../../mobile/operation/modules.php:820 ../../mobile/operation/alerts.php:87 +#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:228 +#: ../../mobile/operation/alerts.php:229 ../../mobile/operation/alerts.php:331 +#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369 +#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:672 +#: ../../include/functions_reporting_html.php:497 +#: ../../include/functions_reporting_html.php:961 +#: ../../include/functions_reporting_html.php:970 +#: ../../include/functions_reporting_html.php:1182 +#: ../../include/functions_reporting_html.php:1190 +#: ../../include/functions_reporting_html.php:1953 +#: ../../include/functions_reporting_html.php:2610 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/ajax/alert_list.ajax.php:282 +#: ../../include/ajax/alert_list.ajax.php:307 ../../include/ajax/module.php:845 +#: ../../include/ajax/custom_fields.php:406 +#: ../../include/functions_snmp.php:369 +#: ../../include/class/NetworkMap.class.php:2932 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:291 +#: ../../include/functions_snmp_browser.php:560 +#: ../../include/functions_events.php:194 +#: ../../include/functions_events.php:247 +#: ../../include/functions_events.php:2415 +#: ../../include/functions_events.php:4580 +#: ../../include/functions_events.php:6007 ../../operation/search_agents.php:55 +#: ../../operation/agentes/alerts_status.php:526 +#: ../../operation/agentes/alerts_status.php:561 +#: ../../operation/agentes/alerts_status.php:596 +#: ../../operation/agentes/alerts_status.php:628 +#: ../../operation/agentes/estado_agente.php:244 +#: ../../operation/agentes/estado_agente.php:728 +#: ../../operation/agentes/status_monitor.php:1166 #: ../../operation/agentes/alerts_status.functions.php:88 -#: ../../operation/agentes/alerts_status.php:517 -#: ../../operation/agentes/alerts_status.php:552 -#: ../../operation/agentes/alerts_status.php:587 -#: ../../operation/agentes/alerts_status.php:619 -#: ../../operation/agentes/estado_agente.php:237 -#: ../../operation/agentes/estado_agente.php:719 -#: ../../operation/agentes/status_monitor.php:1139 -#: ../../operation/events/events.build_table.php:351 -#: ../../operation/incidents/configure_integriaims_incident.php:226 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:373 -#: ../../operation/incidents/incident.php:303 -#: ../../operation/incidents/incident.php:420 -#: ../../operation/incidents/incident_detail.php:304 -#: ../../operation/incidents/integriaims_export_csv.php:91 -#: ../../operation/incidents/list_integriaims_incidents.php:109 #: ../../operation/messages/message_list.php:160 -#: ../../operation/search_agents.php:53 ../../operation/search_modules.php:35 -#: ../../operation/search_policies.php:37 -#: ../../operation/servers/recon_view.php:103 #: ../../operation/snmpconsole/snmp_view.php:560 #: ../../operation/snmpconsole/snmp_view.php:794 #: ../../operation/snmpconsole/snmp_view.php:1145 -#: ../../enterprise/dashboard/widgets/system_group_status.php:44 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/extensions/backup/main.php:128 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:411 -#: ../../enterprise/extensions/vmware/vmware_view.php:1092 -#: ../../enterprise/godmode/admin_access_logs.php:24 -#: ../../enterprise/godmode/agentes/collection_manager.php:118 -#: ../../enterprise/godmode/agentes/collection_manager.php:204 -#: ../../enterprise/godmode/alerts/alert_events_list.php:504 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:108 -#: ../../enterprise/godmode/policies/policies.php:425 -#: ../../enterprise/godmode/policies/policy_agents.php:711 -#: ../../enterprise/godmode/policies/policy_agents.php:1075 -#: ../../enterprise/godmode/policies/policy_alerts.php:288 -#: ../../enterprise/godmode/policies/policy_collections.php:152 -#: ../../enterprise/godmode/policies/policy_collections.php:247 -#: ../../enterprise/godmode/policies/policy_modules.php:1493 -#: ../../enterprise/godmode/policies/policy_queue.php:427 -#: ../../enterprise/godmode/reporting/cluster_list.php:137 -#: ../../enterprise/godmode/reporting/cluster_list.php:192 -#: ../../enterprise/godmode/servers/HA_cluster.php:130 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/include/ajax/clustermap.php:71 -#: ../../enterprise/include/ajax/clustermap.php:290 -#: ../../enterprise/include/functions_services.php:2482 -#: ../../enterprise/include/functions_reporting.php:1680 -#: ../../enterprise/include/functions_reporting.php:2600 -#: ../../enterprise/include/functions_reporting.php:3592 -#: ../../enterprise/include/functions_reporting.php:5707 -#: ../../enterprise/include/functions_reporting_csv.php:1746 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:414 -#: ../../enterprise/meta/advanced/policymanager.queue.php:225 -#: ../../enterprise/meta/advanced/servers.build_table.php:59 -#: ../../enterprise/meta/agentsearch.php:118 -#: ../../enterprise/meta/agentsearch.php:300 -#: ../../enterprise/meta/include/functions_events_meta.php:78 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:692 -#: ../../enterprise/operation/agentes/collection_view.php:65 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/policy_view.php:142 -#: ../../enterprise/operation/agentes/policy_view.php:211 -#: ../../enterprise/operation/agentes/policy_view.php:326 -#: ../../enterprise/operation/agentes/tag_view.php:580 -#: ../../enterprise/operation/agentes/tag_view.php:657 -#: ../../enterprise/operation/services/services.list.php:195 -#: ../../enterprise/operation/services/services.list.php:413 -#: ../../enterprise/operation/services/services.service.php:174 -#: ../../enterprise/operation/services/services.table_services.php:174 +#: ../../operation/incidents/incident_detail.php:304 +#: ../../operation/incidents/integriaims_export_csv.php:91 +#: ../../operation/incidents/configure_integriaims_incident.php:226 +#: ../../operation/incidents/incident.php:303 +#: ../../operation/incidents/incident.php:420 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:373 +#: ../../operation/incidents/list_integriaims_incidents.php:116 +#: ../../operation/search_modules.php:35 +#: ../../operation/events/events.build_table.php:351 +#: ../../operation/search_policies.php:37 +#: ../../operation/servers/recon_view.php:103 msgid "Status" msgstr "Estado" -#: ../../extensions/agents_alerts.php:556 -#: ../../godmode/agentes/module_manager_editor_common.php:762 -#: ../../godmode/alerts/alert_list.list.php:572 -#: ../../godmode/alerts/alert_special_days.php:306 -#: ../../godmode/alerts/alert_special_days.php:318 -#: ../../godmode/alerts/alert_view.php:43 -#: ../../godmode/events/event_edit_filter.php:365 -#: ../../godmode/massive/massive_edit_agents.php:682 -#: ../../godmode/setup/gis_step_2.php:397 -#: ../../godmode/setup/gis_step_2.php:483 -#: ../../godmode/setup/setup_visuals.php:193 -#: ../../godmode/setup/setup_visuals.php:215 -#: ../../godmode/setup/setup_visuals.php:438 -#: ../../godmode/setup/setup_visuals.php:458 -#: ../../godmode/setup/setup_visuals.php:1057 -#: ../../godmode/setup/setup_visuals.php:1105 -#: ../../godmode/users/configure_user.php:694 -#: ../../godmode/users/configure_user.php:839 -#: ../../include/functions_ui.php:1210 -#: ../../operation/events/events_list.php:849 -#: ../../operation/gis_maps/gis_map.php:106 -#: ../../operation/snmpconsole/snmp_view.php:542 -#: ../../operation/users/user_edit.php:299 -#: ../../operation/users/user_edit.php:302 -#: ../../operation/users/user_edit.php:313 -#: ../../operation/users/user_edit.php:338 -#: ../../enterprise/dashboard/main_dashboard.php:117 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:383 -#: ../../enterprise/godmode/policies/policy_alerts.php:340 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:89 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/meta/advanced/metasetup.visual.php:302 -#: ../../enterprise/meta/advanced/metasetup.visual.php:518 -#: ../../enterprise/meta/advanced/metasetup.visual.php:549 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 -#: ../../enterprise/operation/agentes/policy_view.php:268 -msgid "Default" -msgstr "Por defecto" +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:448 +#: ../../enterprise/godmode/policies/policy_agents.php:482 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:353 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:179 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:117 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:544 +#: ../../godmode/reporting/graph_builder.graph_editor.php:320 +#: ../../include/ajax/events.php:561 ../../include/functions_html.php:825 +#: ../../include/functions_html.php:968 +#: ../../include/functions_snmp_browser.php:1154 +#: ../../operation/events/events_list.php:426 +msgid "Filter group" +msgstr "Filtrar grupo" -#: ../../extensions/agents_alerts.php:567 -#: ../../godmode/alerts/alert_list.list.php:522 -#: ../../godmode/alerts/alert_view.php:82 ../../include/functions.php:1226 -#: ../../include/functions_agents.php:2582 -#: ../../include/functions_agents.php:2593 -#: ../../include/functions_events.php:2669 -#: ../../include/functions_events.php:3019 -#: ../../include/functions_events.php.orig:2575 -#: ../../include/functions_events.php.orig:2925 -#: ../../include/functions_ui.php:1223 -#: ../../include/functions_reporting.php:9915 -#: ../../mobile/operation/alerts.php:305 -#: ../../operation/agentes/group_view.php:205 -#: ../../operation/events/sound_events.php:75 -#: ../../operation/snmpconsole/snmp_view.php:963 -#: ../../enterprise/godmode/alerts/alert_events_list.php:708 -#: ../../enterprise/meta/monitoring/group_view.php:200 -#: ../../enterprise/operation/agentes/policy_view.php:281 -msgid "Alert fired" -msgstr "Alerta disparada" +#: ../../enterprise/views/cluster/list.php:95 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1446 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:180 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:722 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2947 +#: ../../enterprise/include/functions_events.php:117 +#: ../../godmode/snmpconsole/snmp_alert.php:1119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2642 +#: ../../godmode/events/event_edit_filter.php:327 +#: ../../mobile/operation/agents.php:238 ../../mobile/operation/modules.php:293 +#: ../../mobile/operation/alerts.php:222 ../../mobile/operation/events.php:700 +#: ../../include/ajax/module.php:247 +#: ../../include/class/ConfigPEN.class.php:621 +#: ../../include/class/CredentialStore.class.php:776 +#: ../../operation/snmpconsole/snmp_view.php:576 +#: ../../operation/events/events_list.php:753 +#: ../../operation/events/events.php:952 +msgid "Free search" +msgstr "Búsqueda libre" -#: ../../extensions/agents_alerts.php:567 -#: ../../godmode/alerts/alert_list.list.php:522 -#: ../../godmode/alerts/alert_view.php:82 ../../include/functions_ui.php:1223 -#: ../../mobile/operation/alerts.php:305 -#: ../../enterprise/godmode/alerts/alert_events_list.php:708 -#: ../../enterprise/operation/agentes/policy_view.php:281 -msgid "time(s)" -msgstr "Veces" +#: ../../enterprise/views/cluster/list.php:121 +msgid "New cluster" +msgstr "Nuevo clúster" -#: ../../extensions/agents_alerts.php:570 -#: ../../godmode/alerts/alert_list.list.php:525 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions_ui.php:1226 -#: ../../include/functions_reporting.php:9924 -#: ../../mobile/operation/alerts.php:308 -#: ../../enterprise/godmode/alerts/alert_events_list.php:711 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2889 -#: ../../enterprise/operation/agentes/policy_view.php:284 -msgid "Alert disabled" -msgstr "Alerta desactivada" +#: ../../enterprise/views/cluster/view.php:44 +#: ../../enterprise/views/cluster/view.php:62 +#: ../../enterprise/views/cluster/edit.php:41 +#: ../../enterprise/views/cluster/edit.php:67 +msgid "Cluster list" +msgstr "Lista de clústers" -#: ../../extensions/agents_alerts.php:573 -#: ../../godmode/alerts/alert_list.list.php:528 -#: ../../godmode/alerts/alert_view.php:88 -#: ../../include/functions_agents.php:2584 -#: ../../include/functions_agents.php:2595 ../../include/functions_ui.php:1229 -#: ../../include/functions_reporting.php:9838 -#: ../../mobile/operation/alerts.php:311 -#: ../../operation/snmpconsole/snmp_view.php:965 -#: ../../enterprise/godmode/alerts/alert_events_list.php:714 -#: ../../enterprise/operation/agentes/policy_view.php:287 -msgid "Alert not fired" -msgstr "Alerta no disparada" +#: ../../enterprise/views/cluster/view.php:50 +#: ../../enterprise/views/cluster/view.php:75 +msgid "Cluster details" +msgstr "Detalles del clúster" -#: ../../extensions/agents_alerts.php:590 -msgid "Agents/Alerts view" -msgstr "Vista de Agentes/Alertas" +#: ../../enterprise/views/cluster/view.php:70 +msgid "Edit this cluster" +msgstr "Editar el clúster" -#: ../../extensions/agents_modules.php:74 -#: ../../operation/events/events.php:2420 -#: ../../operation/snmpconsole/snmp_view.php:1259 -#: ../../enterprise/include/functions_dashboard.php:1197 -msgid "Until next" -msgstr "Hasta el próximo" +#: ../../enterprise/views/cluster/view.php:156 +#: ../../enterprise/views/cluster/view.php:158 +#: ../../enterprise/meta/include/functions_wizard_meta.php:242 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1146 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1531 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1815 +#: ../../enterprise/meta/agentsearch.php:225 +#: ../../enterprise/meta/agentsearch.php:232 +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:115 +#: ../../enterprise/godmode/policies/policy_agents.php:1399 +#: ../../enterprise/godmode/policies/policy_agents.php:1416 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:544 +#: ../../enterprise/godmode/setup/edit_skin.php:273 +#: ../../enterprise/include/class/VMware.app.php:777 +#: ../../enterprise/include/class/DatabaseHA.class.php:210 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3142 +#: ../../enterprise/include/functions_policies.php:4912 +#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/agentes/modificar_agente.php:586 +#: ../../godmode/agentes/module_manager_editor_common.php:230 +#: ../../godmode/agentes/module_manager_editor_common.php:827 +#: ../../godmode/agentes/module_manager_editor_common.php:975 +#: ../../godmode/massive/massive_edit_agents.php:642 +#: ../../godmode/massive/massive_edit_agents.php:718 +#: ../../godmode/massive/massive_edit_modules.php:693 +#: ../../godmode/alerts/alert_list.list.php:129 +#: ../../godmode/alerts/configure_alert_template.php:824 +#: ../../godmode/alerts/alert_view.php:512 ../../mobile/operation/agent.php:172 +#: ../../mobile/operation/alerts.php:50 +#: ../../include/functions_visual_map_editor.php:758 +#: ../../include/functions_reporting_html.php:2622 +#: ../../include/functions_treeview.php:72 +#: ../../include/functions_treeview.php:595 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:342 +#: ../../include/functions_reporting.php:4751 +#: ../../operation/search_agents.php:80 +#: ../../operation/agentes/estado_generalagente.php:109 +#: ../../operation/agentes/estado_generalagente.php:111 +#: ../../operation/agentes/alerts_status.functions.php:81 +msgid "Disabled" +msgstr "Deshabilitado" -#: ../../extensions/agents_modules.php:392 -#: ../../godmode/agentes/modificar_agente.php:200 -#: ../../godmode/agentes/planned_downtime.editor.php:936 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1241 -#: ../../operation/agentes/estado_agente.php:219 -#: ../../enterprise/dashboard/widgets/agent_module.php:113 -#: ../../enterprise/godmode/policies/policies.php:346 -#: ../../enterprise/godmode/reporting/cluster_list.php:120 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:566 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:160 -msgid "Recursion" -msgstr "Recurrencia" +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:871 +#: ../../enterprise/godmode/services/services.service.php:434 +#: ../../godmode/agentes/modificar_agente.php:595 +#: ../../godmode/agentes/planned_downtime.list.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:679 +#: ../../godmode/agentes/agent_manager.php:692 +#: ../../godmode/agentes/module_manager_editor_common.php:972 +#: ../../godmode/agentes/module_manager.php:746 +#: ../../godmode/massive/massive_edit_agents.php:691 +#: ../../godmode/massive/massive_edit_modules.php:1032 +#: ../../mobile/operation/agent.php:179 ../../include/ajax/module.php:993 +#: ../../include/class/Tree.class.php:808 ../../operation/search_agents.php:87 +#: ../../operation/agentes/estado_agente.php:791 +#: ../../operation/agentes/estado_generalagente.php:115 +#: ../../operation/agentes/estado_generalagente.php:117 +msgid "Quiet" +msgstr "Modo silencioso" -#: ../../extensions/agents_modules.php:395 -#: ../../godmode/agentes/module_manager_editor_common.php:246 -#: ../../godmode/massive/massive_edit_modules.php:817 -#: ../../godmode/modules/manage_network_components_form_common.php:122 -#: ../../godmode/reporting/create_container.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1294 -#: ../../include/functions_events.php:4124 -#: ../../include/functions_events.php.orig:4030 -#: ../../include/functions_treeview.php:122 -#: ../../include/functions_graph.php:5122 -#: ../../mobile/operation/modules.php:159 -#: ../../mobile/operation/modules.php:160 -#: ../../mobile/operation/modules.php:268 -#: ../../mobile/operation/modules.php:269 -#: ../../operation/agentes/estado_monitores.php:543 -#: ../../operation/agentes/status_monitor.php:405 -#: ../../operation/agentes/ver_agente.php:983 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:675 -#: ../../enterprise/godmode/modules/configure_local_component.php:253 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1860 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 -#: ../../enterprise/operation/agentes/tag_view.php:130 -#: ../../enterprise/operation/agentes/ver_agente.php:32 -msgid "Module group" -msgstr "Grupo del módulo" +#: ../../enterprise/views/cluster/view.php:172 +#: ../../enterprise/views/cluster/view.php:180 +#: ../../godmode/agentes/modificar_agente.php:599 +#: ../../operation/search_agents.php:98 +#: ../../operation/agentes/estado_agente.php:795 +#: ../../operation/agentes/estado_generalagente.php:125 +#: ../../operation/agentes/estado_generalagente.php:133 +msgid "Agent in planned downtime" +msgstr "Agente en parada programada" +#: ../../enterprise/views/cluster/view.php:217 +msgid "Force cluster status calculation" +msgstr "Forzar cálculo del estado del clúster" + +#: ../../enterprise/views/cluster/view.php:245 +#: ../../enterprise/meta/agentsearch.php:115 +#: ../../enterprise/extensions/ipam/ipam_network.php:326 +#: ../../enterprise/godmode/modules/configure_local_component.php:171 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:371 +#: ../../enterprise/godmode/modules/local_components.php:502 +#: ../../enterprise/godmode/modules/local_components.php:527 +#: ../../enterprise/godmode/modules/local_components.php:562 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:209 +#: ../../enterprise/include/class/DeploymentCenter.class.php:716 +#: ../../enterprise/include/class/DeploymentCenter.class.php:777 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1249 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../enterprise/include/class/AgentRepository.class.php:336 +#: ../../enterprise/include/class/AgentRepository.class.php:613 +#: ../../enterprise/include/class/AgentRepository.class.php:656 +#: ../../enterprise/operation/agentes/tag_view.php:580 +#: ../../godmode/agentes/modificar_agente.php:493 +#: ../../godmode/agentes/planned_downtime.editor.php:1037 +#: ../../godmode/agentes/agent_manager.php:358 +#: ../../godmode/massive/massive_edit_agents.php:557 +#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:392 +#: ../../include/functions_reporting_html.php:2607 +#: ../../include/class/Diagnostics.class.php:739 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 +#: ../../include/functions_events.php:4080 ../../operation/search_agents.php:43 +#: ../../operation/search_agents.php:49 ../../operation/tree.php:56 +#: ../../operation/tree.php:110 ../../operation/agentes/estado_agente.php:713 +#: ../../operation/agentes/estado_generalagente.php:188 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "SO" + +#: ../../enterprise/views/cluster/view.php:261 +#: ../../extensions/net_tools.php:364 +#: ../../operation/agentes/estado_generalagente.php:202 +msgid "IP address" +msgstr "Dirección IP" + +#: ../../enterprise/views/cluster/view.php:263 +#: ../../enterprise/views/cluster/view.php:273 +#: ../../enterprise/meta/advanced/servers.build_table.php:98 +#: ../../enterprise/meta/advanced/servers.build_table.php:99 +#: ../../enterprise/meta/advanced/servers.build_table.php:105 +#: ../../enterprise/meta/advanced/metasetup.visual.php:802 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/extensions/ipam/ipam_network.php:363 +#: ../../enterprise/extensions/ipam/ipam_network.php:439 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:199 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:220 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:55 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:389 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_reporting.php:5379 +#: ../../enterprise/include/functions_services.php:2051 +#: ../../enterprise/include/functions_services.php:2259 +#: ../../enterprise/include/functions_services.php:2808 +#: ../../godmode/modules/manage_network_components.php:684 +#: ../../godmode/modules/manage_network_components.php:685 +#: ../../godmode/extensions.php:189 ../../godmode/extensions.php:204 +#: ../../godmode/agentes/planned_downtime.list.php:494 +#: ../../godmode/alerts/alert_view.php:108 +#: ../../godmode/servers/servers.build_table.php:115 +#: ../../godmode/servers/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:122 +#: ../../mobile/operation/agent.php:205 ../../mobile/operation/agent.php:215 +#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 +#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 +#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 +#: ../../include/functions_servers.php:1235 +#: ../../include/functions_reporting_html.php:591 +#: ../../include/functions_reporting_html.php:594 +#: ../../include/functions_reporting_html.php:4255 +#: ../../include/functions_reporting_html.php:4308 +#: ../../include/functions.php:1127 ../../include/functions.php:1133 +#: ../../include/functions.php:1137 ../../include/ajax/module.php:1033 +#: ../../include/functions_treeview.php:162 +#: ../../include/functions_treeview.php:331 +#: ../../include/functions_treeview.php:427 ../../include/functions_ui.php:2573 +#: ../../include/functions_ui.php:2581 ../../include/functions_db.php:208 +#: ../../include/functions_events.php:3554 +#: ../../include/functions_events.php:3664 +#: ../../include/functions_events.php:3685 +#: ../../include/functions_events.php:3690 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3704 +#: ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3767 +#: ../../include/functions_events.php:3794 +#: ../../include/functions_events.php:3814 +#: ../../include/functions_events.php:3908 +#: ../../include/functions_events.php:4045 +#: ../../include/functions_events.php:4076 +#: ../../include/functions_events.php:4090 +#: ../../include/functions_events.php:4095 +#: ../../include/functions_events.php:4125 +#: ../../include/functions_events.php:4218 +#: ../../include/functions_events.php:4285 +#: ../../include/functions_events.php:4295 +#: ../../include/functions_events.php:4454 +#: ../../include/functions_events.php:4522 +#: ../../include/functions_events.php:4598 +#: ../../include/functions_events.php:4627 +#: ../../include/functions_events.php:4642 +#: ../../include/functions_events.php:4652 +#: ../../include/functions_events.php:6786 +#: ../../include/functions_events.php:6805 +#: ../../include/functions_events.php:6810 +#: ../../include/functions_events.php:6817 +#: ../../include/functions_events.php:6830 +#: ../../include/functions_events.php:6843 +#: ../../include/functions_events.php:6855 +#: ../../include/functions_events.php:6906 +#: ../../include/functions_events.php:6933 +#: ../../include/functions_events.php:6953 +#: ../../operation/agentes/status_monitor.php:1511 +#: ../../operation/agentes/estado_generalagente.php:204 +#: ../../operation/agentes/estado_generalagente.php:210 +#: ../../operation/agentes/estado_generalagente.php:219 +#: ../../operation/agentes/estado_generalagente.php:347 +#: ../../operation/agentes/estado_generalagente.php:363 +#: ../../operation/agentes/estado_generalagente.php:374 +#: ../../operation/snmpconsole/snmp_view.php:919 +#: ../../operation/snmpconsole/snmp_view.php:939 +msgid "N/A" +msgstr "N/A" + +#: ../../enterprise/views/cluster/view.php:285 +#: ../../include/functions_treeview.php:708 +#: ../../operation/agentes/estado_generalagente.php:208 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "Versión del agente" + +#: ../../enterprise/views/cluster/view.php:287 +msgid "Cluster agent" +msgstr "Agente del clúster" + +#: ../../enterprise/views/cluster/view.php:342 +#: ../../operation/agentes/estado_generalagente.php:816 +msgid "Events (Last 24h)" +msgstr "Eventos (últimas 24h)" + +#: ../../enterprise/views/cluster/view.php:414 +#: ../../operation/agentes/stat_win.php:380 +#: ../../operation/agentes/interface_traffic_graph_win.php:247 +msgid "Reload" +msgstr "Actualizar" + +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "clúster " + +#: ../../enterprise/views/cluster/edit.php:84 +msgid "View this cluster" +msgstr "Ver clúster" + +#: ../../enterprise/meta/screens/screens.visualmap.php:65 +msgid "Create visualmap" +msgstr "Crear mapa visual" + +#: ../../enterprise/meta/screens/screens.visualmap.php:67 +#: ../../enterprise/meta/advanced/collections.editor.php:175 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:277 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:443 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:635 +#: ../../enterprise/meta/include/functions_autoprovision.php:480 +#: ../../enterprise/meta/include/functions_autoprovision.php:481 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/meta/include/functions_autoprovision.php:645 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2692 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:316 +#: ../../enterprise/godmode/agentes/collections.editor.php:210 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:184 +#: ../../enterprise/godmode/alerts/alert_events_list.php:720 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 +#: ../../enterprise/godmode/reporting/mysql_builder.php:112 +#: ../../enterprise/godmode/reporting/mysql_builder.php:124 +#: ../../enterprise/godmode/reporting/mysql_builder.php:133 +#: ../../enterprise/godmode/reporting/mysql_builder.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:425 +#: ../../enterprise/include/functions_tasklist.php:460 +#: ../../enterprise/include/functions_tasklist.php:485 +#: ../../enterprise/include/ajax/transactional.ajax.php:117 +#: ../../enterprise/include/ajax/transactional.ajax.php:205 +#: ../../enterprise/include/class/Omnishell.class.php:1086 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2975 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:611 +#: ../../enterprise/operation/agentes/tag_view.php:719 +#: ../../extensions/files_repo/files_repo_list.php:103 +#: ../../godmode/groups/group_list.php:736 +#: ../../godmode/groups/group_list.php:737 +#: ../../godmode/users/profile_list.php:364 +#: ../../godmode/users/user_list.php:540 +#: ../../godmode/agentes/modificar_agente.php:616 +#: ../../godmode/agentes/modificar_agente.php:622 +#: ../../godmode/agentes/planned_downtime.list.php:408 +#: ../../godmode/agentes/fields_manager.php:150 +#: ../../godmode/alerts/alert_special_days.php:504 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1797 +#: ../../godmode/reporting/reporting_builder.php:1042 +#: ../../godmode/events/event_responses.list.php:64 +#: ../../godmode/servers/servers.build_table.php:193 +#: ../../godmode/servers/plugin.php:163 ../../godmode/servers/plugin.php:1030 +#: ../../include/functions_cron.php:697 ../../include/functions_cron.php:719 +#: ../../include/ajax/module.php:975 +#: ../../include/class/NetworkMap.class.php:3038 +#: ../../operation/agentes/estado_agente.php:830 +#: ../../operation/agentes/estado_agente.php:833 +#: ../../operation/agentes/pandora_networkmap.php:701 +#: ../../operation/agentes/status_monitor.php:1341 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/list_integriaims_incidents.php:299 +#: ../../operation/search_reports.php:48 +#: ../../operation/servers/recon_view.php:115 +msgid "Edit" +msgstr "Editar" + +#: ../../enterprise/meta/screens/screens.visualmap.php:106 +#: ../../enterprise/meta/screens/screens.visualmap.php:125 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:90 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:597 +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../godmode/agentes/configurar_agente.php:369 +#: ../../godmode/agentes/modificar_agente.php:54 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/modificar_agente.php:654 ../../godmode/menu.php:531 +#: ../../godmode/setup/setup_visuals.php:159 +#: ../../godmode/setup/setup_visuals.php:223 +#: ../../godmode/setup/setup_visuals.php:277 +#: ../../godmode/setup/setup_visuals.php:282 +#: ../../godmode/setup/setup_visuals.php:321 +#: ../../godmode/setup/setup_visuals.php:358 +#: ../../godmode/setup/setup_visuals.php:380 +#: ../../godmode/setup/setup_visuals.php:405 +#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:443 +#: ../../godmode/setup/setup_visuals.php:462 +#: ../../godmode/setup/setup_visuals.php:612 +#: ../../godmode/reporting/visual_console_builder.php:795 +#: ../../godmode/module_library/module_library_view.php:56 +#: ../../godmode/module_library/module_library_view.php:65 +#: ../../operation/visual_console/pure_ajax.php:164 +#: ../../operation/visual_console/view.php:175 +#: ../../operation/visual_console/legacy_view.php:167 +#: ../../operation/agentes/estado_agente.php:811 +#: ../../operation/agentes/estado_agente.php:814 +#: ../../operation/agentes/status_monitor.php:50 +#: ../../operation/agentes/ver_agente.php:1550 +msgid "View" +msgstr "Vista" + +#: ../../enterprise/meta/screens/screens.visualmap.php:134 +#: ../../godmode/reporting/visual_console_builder.php:789 +#: ../../operation/visual_console/pure_ajax.php:160 +#: ../../operation/visual_console/legacy_view.php:163 +msgid "Builder" +msgstr "Creador" + +#: ../../enterprise/meta/screens/screens.visualmap.php:144 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:81 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:88 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:92 +#: ../../enterprise/include/functions_reporting.php:34 +#: ../../enterprise/include/functions_reporting.php:6973 +#: ../../enterprise/include/functions_reporting.php:6999 +#: ../../godmode/reporting/visual_console_builder.php:784 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../operation/visual_console/pure_ajax.php:155 +#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/legacy_view.php:158 +msgid "Wizard" +msgstr "Asistente" + +#: ../../enterprise/meta/screens/screens.visualmap.php:152 +#: ../../godmode/reporting/visual_console_builder.php:772 +#: ../../operation/visual_console/pure_ajax.php:141 +#: ../../operation/visual_console/view.php:154 +#: ../../operation/visual_console/legacy_view.php:144 +msgid "List elements" +msgstr "Lista de elementos" + +#: ../../enterprise/meta/screens/screens.visualmap.php:160 +#: ../../godmode/reporting/visual_console_builder.php:768 +#: ../../godmode/reporting/graph_builder.php:253 +#: ../../godmode/reporting/reporting_builder.main.php:63 +#: ../../godmode/reporting/reporting_builder.php:3076 +#: ../../operation/visual_console/pure_ajax.php:136 +#: ../../operation/visual_console/view.php:149 +#: ../../operation/visual_console/legacy_view.php:139 +#: ../../operation/reporting/reporting_viewer.php:87 +#: ../../operation/reporting/graph_viewer.php:156 +msgid "Main data" +msgstr "Datos principales" + +#: ../../enterprise/meta/screens/screens.visualmap.php:168 +#: ../../godmode/reporting/visual_console_builder.php:764 +#: ../../operation/visual_console/pure_ajax.php:129 +#: ../../operation/visual_console/view.php:142 +#: ../../operation/visual_console/legacy_view.php:132 +#: ../../operation/gis_maps/render_view.php:132 +msgid "Show link to public Visual Console" +msgstr "Mostrar enlace a la Consola Visual pública" + +#: ../../enterprise/meta/screens/screens.visualmap.php:187 +#: ../../godmode/reporting/visual_console_builder.php:760 +#: ../../operation/visual_console/pure_ajax.php:118 +#: ../../operation/visual_console/view.php:117 +#: ../../operation/visual_console/legacy_view.php:119 +msgid "Visual consoles list" +msgstr "Lista de consolas visuales" + +#: ../../enterprise/meta/screens/screens.visualmap.php:197 +#: ../../godmode/reporting/visual_console_builder.php:803 +msgid "New visual console" +msgstr "Nueva consola visual" + +#: ../../enterprise/meta/screens/screens.visualmap.php:205 +#: ../../enterprise/meta/screens/screens.visualmap.php:210 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:177 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:97 +#: ../../enterprise/godmode/reporting/visual_console_template.php:98 +#: ../../extensions/resource_exportation.php:426 +#: ../../godmode/users/configure_user.php:890 +#: ../../godmode/reporting/map_builder.php:93 +#: ../../godmode/reporting/visual_console_favorite.php:87 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:236 +#: ../../operation/users/user_edit.php:338 ../../operation/menu.php:189 +#: ../../operation/menu.php:193 +msgid "Visual console" +msgstr "Consola visual" + +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:211 +#: ../../enterprise/meta/general/logon_ok.php:84 +msgid "Screens" +msgstr "Pantallas" + +#: ../../enterprise/meta/advanced/servers.build_table.php:32 +#: ../../godmode/servers/servers.build_table.php:37 +msgid "There are no servers configured into the database" +msgstr "No hay ningún servidor configurado en la base de datos" + +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:623 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:40 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/class/AgentRepository.class.php:360 +#: ../../enterprise/include/class/AgentRepository.class.php:615 +#: ../../extensions/realtime_graphs.php:175 ../../godmode/extensions.php:137 +#: ../../godmode/servers/servers.build_table.php:68 +#: ../../include/functions_snmp_browser.php:679 +msgid "Version" +msgstr "Versión" + +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:426 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:536 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:615 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:227 +#: ../../enterprise/meta/monitoring/group_view.php:138 +#: ../../enterprise/meta/monitoring/group_view.php:179 +#: ../../enterprise/meta/include/functions_wizard_meta.php:407 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1819 +#: ../../enterprise/meta/agentsearch.php:118 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:109 +#: ../../enterprise/godmode/policies/policy_modules.php:449 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:559 +#: ../../enterprise/godmode/policies/policies.php:531 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:638 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:861 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:159 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:359 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:197 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/include/functions_reporting_csv.php:2133 +#: ../../enterprise/include/functions_policies.php:3719 +#: ../../enterprise/operation/agentes/tag_view.php:584 +#: ../../enterprise/operation/services/services.service_map.php:184 +#: ../../extensions/agents_alerts.php:206 +#: ../../extensions/agents_modules.php:693 +#: ../../godmode/agentes/configurar_agente.php:388 +#: ../../godmode/agentes/configurar_agente.php:623 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:573 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:613 +#: ../../godmode/agentes/modificar_agente.php:630 +#: ../../godmode/agentes/planned_downtime.editor.php:1039 +#: ../../godmode/agentes/planned_downtime.editor.php:1117 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:884 +#: ../../godmode/massive/massive_copy_modules.php:183 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_edit_plugins.php:363 +#: ../../godmode/massive/massive_edit_modules.php:398 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/graph_builder.graph_editor.php:336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1551 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:452 +#: ../../godmode/servers/servers.build_table.php:69 +#: ../../mobile/operation/agents.php:82 ../../mobile/operation/agents.php:399 +#: ../../mobile/operation/modules.php:212 ../../mobile/operation/home.php:78 +#: ../../mobile/operation/agent.php:304 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:4353 +#: ../../include/functions_reports.php:718 +#: ../../include/functions_reports.php:722 +#: ../../include/functions_reports.php:726 +#: ../../include/functions_reports.php:730 +#: ../../include/functions_reports.php:734 +#: ../../include/functions_reports.php:738 +#: ../../include/functions_reports.php:742 +#: ../../include/functions_reports.php:746 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:404 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:408 +#: ../../include/lib/Dashboard/Widgets/service_map.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 +#: ../../operation/search_agents.php:54 ../../operation/tree.php:83 +#: ../../operation/search_results.php:157 +#: ../../operation/agentes/estado_agente.php:725 +#: ../../operation/agentes/graphs.php:188 +#: ../../operation/agentes/exportdata.php:281 +#: ../../operation/agentes/group_view.php:155 +#: ../../operation/agentes/group_view.php:188 +msgid "Modules" +msgstr "Módulos" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Lag" +msgstr "Retraso" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "Media de retraso (seg.)/Módulos retrasados" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:71 +msgid "T/Q" +msgstr "H/C" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:71 +msgid "Threads / Queued modules currently" +msgstr "Hilos/Cola actual de módulos" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:283 +#: ../../enterprise/include/class/DatabaseHA.class.php:799 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:73 +#: ../../operation/incidents/integriaims_export_csv.php:94 +#: ../../operation/incidents/incident.php:424 +msgid "Updated" +msgstr "Actualizado" + +#: ../../enterprise/meta/advanced/servers.build_table.php:70 +#: ../../enterprise/meta/include/functions_autoprovision.php:616 +#: ../../enterprise/godmode/modules/local_components.php:564 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policies.php:435 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316 +#: ../../godmode/users/profile_list.php:301 +#: ../../godmode/users/user_list.php:335 +#: ../../godmode/alerts/alert_list.list.php:460 +#: ../../godmode/alerts/alert_templates.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/graphs.php:276 +#: ../../godmode/reporting/reporting_builder.php:838 +#: ../../godmode/reporting/reporting_builder.php:1029 +#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/plugin.php:973 +#: ../../include/functions_container.php:158 +#: ../../operation/gis_maps/gis_map.php:109 +msgid "Op." +msgstr "Op." + +#: ../../enterprise/meta/advanced/servers.build_table.php:89 +#: ../../godmode/servers/servers.build_table.php:101 +msgid "This is a master server" +msgstr "Este es un servidor maestro" + +#: ../../enterprise/meta/advanced/servers.build_table.php:104 +#: ../../enterprise/meta/advanced/servers.build_table.php:110 +#: ../../godmode/servers/servers.build_table.php:121 +#: ../../godmode/servers/servers.build_table.php:127 +msgid "of" +msgstr "de" + +#: ../../enterprise/meta/advanced/servers.build_table.php:136 +#: ../../godmode/servers/servers.build_table.php:214 +msgid "" +"Modules run by this server will stop working. Do you want to continue?" +msgstr "" +"Los módulos ejecutados por este servidor podrían dejar de funcionar. " +"¿Quieres continuar?" + +#: ../../enterprise/meta/advanced/servers.build_table.php:162 +#: ../../godmode/servers/servers.build_table.php:240 +msgid "Tactical server information" +msgstr "Vista táctica del servidor" + +#: ../../enterprise/meta/advanced/component_management.php:49 +#: ../../include/functions_menu.php:500 +msgid "Tags management" +msgstr "Gestión de etiquetas" + +#: ../../enterprise/meta/advanced/component_management.php:53 +msgid "Module groups Management" +msgstr "Gestor de grupos de módulo" + +#: ../../enterprise/meta/advanced/component_management.php:57 +msgid "OS Management" +msgstr "Administración de SO" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:48 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:43 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.auth.php:44 +#: ../../enterprise/meta/advanced/metasetup.performance.php:44 +#, php-format +msgid "Could not be update: Error in %s" +msgstr "No se puede actualizar: error en %s" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:55 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:50 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:153 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.auth.php:51 +#: ../../enterprise/meta/advanced/metasetup.performance.php:51 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:82 +msgid "Successfully update" +msgstr "Actualizado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:95 +#: ../../godmode/menu.php:320 ../../godmode/setup/setup.php:108 +#: ../../godmode/setup/setup.php:180 +msgid "Visual styles" +msgstr "Estilos visuales" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:101 +#: ../../enterprise/meta/include/functions_meta.php:1293 +#: ../../godmode/setup/setup_visuals.php:1175 +#: ../../include/functions_config.php:848 +msgid "Date format string" +msgstr "Formato de fecha a mostrar" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:104 +#: ../../godmode/setup/setup_visuals.php:1176 +msgid "Example" +msgstr "Ejemplo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:130 +#: ../../godmode/setup/setup_visuals.php:1194 +msgid "Timestamp, time comparison, or compact mode" +msgstr "Marca horaria, comparación horaria o modo compacto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:132 +#: ../../godmode/setup/setup_visuals.php:1196 +msgid "Comparation in rollover" +msgstr "Fecha en comparación" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:141 +#: ../../godmode/setup/setup_visuals.php:1197 +msgid "Timestamp in rollover" +msgstr "Fecha literal" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:150 +#: ../../godmode/setup/setup_visuals.php:1198 +msgid "Compact mode" +msgstr "Modo compacto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:159 +#: ../../godmode/setup/setup_visuals.php:740 +#: ../../include/functions_config.php:856 +msgid "Graph color #1" +msgstr "Color de la gráfica #1" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:169 +#: ../../godmode/setup/setup_visuals.php:744 +#: ../../include/functions_config.php:860 +msgid "Graph color #2" +msgstr "Color de la gráfica #2" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:179 +#: ../../godmode/setup/setup_visuals.php:748 +#: ../../include/functions_config.php:864 +msgid "Graph color #3" +msgstr "Color de la gráfica #3" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:190 +msgid "Data precision for reports and visual consoles" +msgstr "Precisión de datos para informes y consolas visuales" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:193 +msgid "Precision must be a integer number between 0 and 5" +msgstr "La precisión debe ser un número entero entre 0 y 5" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:209 +#: ../../enterprise/meta/include/functions_meta.php:1338 +#: ../../godmode/setup/setup_visuals.php:855 +#: ../../godmode/reporting/visual_console_builder.wizard.php:305 +#: ../../include/functions_visual_map_editor.php:618 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:452 +msgid "Percentile" +msgstr "Percentil" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:212 +msgid "Show percentile 95 in graphs" +msgstr "Mostrar el percentil 95 en los gráficos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:225 +#: ../../enterprise/meta/include/functions_meta.php:1392 +#: ../../godmode/setup/setup_visuals.php:780 +#: ../../include/functions_config.php:896 +msgid "Value to interface graphics" +msgstr "Valor para la interfaz gráfica" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:235 +#: ../../enterprise/meta/include/functions_meta.php:1404 +#: ../../godmode/users/configure_user.php:932 +#: ../../godmode/setup/setup_visuals.php:60 +#: ../../godmode/events/event_edit_filter.php:359 +#: ../../include/functions_config.php:913 +#: ../../operation/users/user_edit.php:289 +#: ../../operation/snmpconsole/snmp_view.php:531 +#: ../../operation/events/events_list.php:838 +msgid "Block size for pagination" +msgstr "Tamaño de bloque para la paginación" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:245 +#: ../../enterprise/meta/include/functions_meta.php:1413 +#: ../../godmode/setup/setup_visuals.php:812 +#: ../../include/functions_config.php:917 +msgid "Use round corners" +msgstr "Usar bordes redondeados" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:253 +#: ../../enterprise/meta/include/functions_meta.php:1422 +#: ../../include/functions_config.php:1121 +msgid "Disable help" +msgstr "Deshabilitar ayuda" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:261 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:699 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:332 +#: ../../enterprise/meta/advanced/metasetup.setup.php:338 +#: ../../enterprise/meta/advanced/metasetup.setup.php:348 +#: ../../enterprise/meta/advanced/metasetup.setup.php:354 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:176 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:248 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:345 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:583 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 +#: ../../enterprise/meta/event/custom_events.php:225 +#: ../../enterprise/meta/event/custom_events.php:271 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:373 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:395 +#: ../../enterprise/extensions/ipam/ipam_network.php:518 +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/modules/configure_local_component.php:672 +#: ../../enterprise/godmode/modules/configure_local_component.php:678 +#: ../../enterprise/godmode/modules/configure_local_component.php:686 +#: ../../enterprise/godmode/modules/configure_local_component.php:692 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:838 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:433 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:564 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:660 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:164 +#: ../../enterprise/godmode/policies/policy_alerts.php:518 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:425 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:531 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:115 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:173 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:231 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:467 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:580 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:847 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:863 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:879 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:895 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:910 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:916 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:714 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:820 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1050 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1066 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1082 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1098 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1114 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1129 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1135 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_agents.php:406 +#: ../../enterprise/godmode/policies/policy_agents.php:1362 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:107 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:191 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:93 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:367 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:519 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:520 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:521 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:522 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:571 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:188 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:227 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:250 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:103 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:181 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:105 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:820 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:934 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:969 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../enterprise/godmode/alerts/alert_events.php:567 +#: ../../enterprise/godmode/alerts/alert_events_list.php:686 +#: ../../enterprise/godmode/setup/setup.php:678 +#: ../../enterprise/godmode/setup/setup.php:695 +#: ../../enterprise/godmode/setup/setup.php:704 +#: ../../enterprise/godmode/setup/setup.php:721 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:255 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:738 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:784 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:164 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:548 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:567 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:581 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:591 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:601 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:605 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:530 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:562 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:586 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:602 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:644 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:677 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:686 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:705 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:350 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:369 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:380 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:78 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:484 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:894 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:910 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:931 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:940 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1253 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1281 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1300 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1327 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:337 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:483 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:515 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:568 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:601 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:631 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:652 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:672 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:697 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:720 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:741 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:949 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1043 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1058 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1068 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1083 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1105 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:187 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:219 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:225 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:237 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:283 +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../enterprise/include/class/Omnishell.class.php:836 +#: ../../enterprise/include/class/SAP.app.php:591 +#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:830 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:838 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:986 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1107 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1116 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1810 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2399 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2444 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3402 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:142 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../enterprise/operation/log/log_viewer.php:600 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:330 +#: ../../godmode/modules/manage_network_components_form_network.php:235 +#: ../../godmode/modules/manage_network_components_form.php:572 +#: ../../godmode/modules/manage_network_components_form.php:578 +#: ../../godmode/modules/manage_network_components_form.php:587 +#: ../../godmode/modules/manage_network_components_form.php:593 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:856 +#: ../../godmode/users/configure_user.php:870 +#: ../../godmode/users/configure_user.php:977 +#: ../../godmode/users/configure_user.php:983 +#: ../../godmode/agentes/status_monitor_custom_fields.php:216 +#: ../../godmode/agentes/status_monitor_custom_fields.php:264 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:103 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:152 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:197 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:430 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:533 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:788 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:804 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:820 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:836 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:851 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:857 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:461 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:584 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:719 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1075 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1091 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1107 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1123 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1139 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1154 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1160 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:458 +#: ../../godmode/agentes/agent_manager.php:394 +#: ../../godmode/agentes/agent_manager.php:727 +#: ../../godmode/agentes/agent_manager.php:896 +#: ../../godmode/agentes/agent_manager.php:1171 +#: ../../godmode/agentes/module_manager_editor_common.php:667 +#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1297 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 +#: ../../godmode/agentes/module_manager_editor_common.php:1312 +#: ../../godmode/agentes/module_manager_editor_common.php:1318 +#: ../../godmode/snmpconsole/snmp_alert.php:25 +#: ../../godmode/snmpconsole/snmp_alert.php:1127 +#: ../../godmode/gis_maps/configure_gis_map.php:511 +#: ../../godmode/massive/massive_copy_modules.php:363 +#: ../../godmode/massive/massive_copy_modules.php:496 +#: ../../godmode/massive/massive_delete_modules.php:478 +#: ../../godmode/massive/massive_delete_modules.php:571 +#: ../../godmode/massive/massive_delete_modules.php:618 +#: ../../godmode/massive/massive_delete_modules.php:665 +#: ../../godmode/massive/massive_delete_modules.php:673 +#: ../../godmode/massive/massive_delete_modules.php:674 +#: ../../godmode/massive/massive_delete_modules.php:675 +#: ../../godmode/massive/massive_delete_modules.php:676 +#: ../../godmode/massive/massive_delete_modules.php:742 +#: ../../godmode/massive/massive_delete_modules.php:772 +#: ../../godmode/massive/massive_add_alerts.php:275 +#: ../../godmode/massive/massive_edit_plugins.php:316 +#: ../../godmode/massive/massive_edit_agents.php:578 +#: ../../godmode/massive/massive_delete_alerts.php:331 +#: ../../godmode/massive/massive_add_action_alerts.php:319 +#: ../../godmode/massive/massive_edit_modules.php:430 +#: ../../godmode/massive/massive_edit_modules.php:847 +#: ../../godmode/massive/massive_edit_modules.php:981 +#: ../../godmode/massive/massive_edit_modules.php:1097 +#: ../../godmode/massive/massive_edit_modules.php:1132 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/massive/massive_edit_modules.php:1243 +#: ../../godmode/massive/massive_edit_modules.php:1314 +#: ../../godmode/massive/massive_edit_modules.php:1423 +#: ../../godmode/massive/massive_edit_modules.php:1424 +#: ../../godmode/massive/massive_edit_modules.php:1425 +#: ../../godmode/massive/massive_edit_modules.php:1426 +#: ../../godmode/massive/massive_edit_modules.php:1659 +#: ../../godmode/massive/massive_edit_modules.php:1719 +#: ../../godmode/alerts/alert_list.list.php:717 +#: ../../godmode/alerts/configure_alert_action.php:164 +#: ../../godmode/alerts/configure_alert_template.php:694 +#: ../../godmode/alerts/configure_alert_template.php:714 +#: ../../godmode/setup/os.builder.php:38 +#: ../../godmode/setup/setup_visuals.php:396 +#: ../../godmode/setup/setup_visuals.php:415 +#: ../../godmode/setup/setup_visuals.php:862 +#: ../../godmode/reporting/create_container.php:457 +#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:408 +#: ../../godmode/reporting/graph_builder.graph_editor.php:428 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1588 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1724 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1777 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2548 +#: ../../godmode/reporting/visual_console_builder.elements.php:390 +#: ../../godmode/reporting/visual_console_builder.elements.php:537 +#: ../../godmode/reporting/visual_console_builder.elements.php:547 +#: ../../godmode/reporting/visual_console_builder.wizard.php:286 +#: ../../godmode/reporting/visual_console_builder.wizard.php:458 +#: ../../godmode/reporting/visual_console_builder.wizard.php:471 +#: ../../godmode/reporting/visual_console_builder.wizard.php:505 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../godmode/reporting/visual_console_builder.wizard.php:557 +#: ../../godmode/reporting/visual_console_builder.wizard.php:752 +#: ../../godmode/reporting/visual_console_builder.wizard.php:762 +#: ../../godmode/reporting/visual_console_builder.wizard.php:794 +#: ../../godmode/events/event_edit_filter.php:643 +#: ../../godmode/events/custom_events.php:178 +#: ../../godmode/events/custom_events.php:226 +#: ../../godmode/wizards/HostDevices.class.php:1095 +#: ../../mobile/operation/events.php:638 +#: ../../include/functions_visual_map_editor.php:370 +#: ../../include/functions_visual_map_editor.php:372 +#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:867 +#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:982 +#: ../../include/functions.php:1076 ../../include/functions_networkmap.php:1483 +#: ../../include/ajax/planned_downtime.ajax.php:82 +#: ../../include/ajax/alert_list.ajax.php:480 +#: ../../include/ajax/custom_fields.php:658 ../../include/ajax/events.php:393 +#: ../../include/functions_integriaims.php:146 +#: ../../include/functions_profile.php:276 +#: ../../include/functions_profile.php:293 +#: ../../include/functions_profile.php:308 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:363 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:398 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:616 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:628 +#: ../../include/rest-api/models/VisualConsole/Item.php:1969 +#: ../../include/rest-api/models/VisualConsole/Item.php:2080 +#: ../../include/rest-api/models/VisualConsole/Item.php:2193 +#: ../../include/rest-api/models/VisualConsole/Item.php:2311 +#: ../../include/functions_html.php:366 ../../include/functions_html.php:611 +#: ../../include/functions_html.php:821 ../../include/functions_html.php:866 +#: ../../include/functions_html.php:913 ../../include/functions_html.php:914 +#: ../../include/functions_html.php:964 ../../include/functions_html.php:1009 +#: ../../include/functions_html.php:3623 +#: ../../include/class/NetworkMap.class.php:2804 +#: ../../include/class/NetworkMap.class.php:3048 +#: ../../include/class/NetworkMap.class.php:3057 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3125 +#: ../../include/class/NetworkMap.class.php:3210 +#: ../../include/class/NetworkMap.class.php:3216 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:325 +#: ../../include/lib/Dashboard/Widgets/service_map.php:227 +#: ../../include/lib/Dashboard/Widgets/service_map.php:247 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:301 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:311 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3384 +#: ../../include/functions_events.php:3400 +#: ../../operation/users/user_edit.php:382 +#: ../../operation/users/user_edit.php:418 +#: ../../operation/users/user_edit.php:475 +#: ../../operation/users/user_edit.php:489 +#: ../../operation/users/user_edit.php:833 +#: ../../operation/users/user_edit.php:840 +#: ../../operation/users/user_edit.php:849 +#: ../../operation/users/user_edit.php:856 +#: ../../operation/agentes/pandora_networkmap.editor.php:319 +#: ../../operation/agentes/ver_agente.php:986 +#: ../../operation/agentes/ver_agente.php:1029 +#: ../../operation/agentes/ver_agente.php:1039 +#: ../../operation/snmpconsole/snmp_browser.php:324 +#: ../../operation/snmpconsole/snmp_browser.php:339 +#: ../../operation/snmpconsole/snmp_browser.php:349 +#: ../../operation/snmpconsole/snmp_browser.php:468 +#: ../../operation/snmpconsole/snmp_view.php:605 +#: ../../operation/snmpconsole/snmp_view.php:1030 +#: ../../operation/snmpconsole/snmp_view.php:1041 +#: ../../operation/gis_maps/render_view.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:278 +#: ../../operation/incidents/list_integriaims_incidents.php:282 +#: ../../operation/events/events_list.php:518 +#: ../../operation/events/events_list.php:1269 +#: ../../operation/events/events.php:1596 +msgid "None" +msgstr "Ninguno" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:262 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:381 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:300 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:208 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:235 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:253 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:320 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:278 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:325 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/extensions/backup/main.php:112 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1454 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1478 +#: ../../enterprise/godmode/modules/local_components.php:482 +#: ../../enterprise/godmode/modules/local_components.php:508 +#: ../../enterprise/godmode/modules/local_components.php:533 +#: ../../enterprise/godmode/agentes/collections.data.php:432 +#: ../../enterprise/godmode/policies/policy_queue.php:414 +#: ../../enterprise/godmode/policies/policy_queue.php:419 +#: ../../enterprise/godmode/policies/policy_queue.php:430 +#: ../../enterprise/godmode/policies/policy_queue.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:699 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:114 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:191 +#: ../../enterprise/godmode/setup/setup_acl.php:362 +#: ../../enterprise/godmode/setup/setup_acl.php:379 +#: ../../enterprise/godmode/setup/setup_acl.php:396 +#: ../../enterprise/godmode/setup/setup_acl.php:620 +#: ../../enterprise/godmode/setup/setup_acl.php:628 +#: ../../enterprise/godmode/setup/setup_acl.php:639 +#: ../../enterprise/godmode/setup/setup_acl.php:680 +#: ../../enterprise/godmode/setup/setup_acl.php:711 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:185 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:608 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:634 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1838 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1845 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1870 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2549 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576 +#: ../../enterprise/include/functions_metaconsole.php:839 +#: ../../enterprise/include/functions_metaconsole.php:840 +#: ../../enterprise/include/functions_metaconsole.php:1188 +#: ../../enterprise/operation/agentes/tag_view.php:124 +#: ../../enterprise/operation/agentes/tag_view.php:150 +#: ../../enterprise/operation/agentes/tag_view.php:188 +#: ../../enterprise/operation/agentes/tag_view.php:216 +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../enterprise/operation/agentes/tag_view.php:283 +#: ../../enterprise/operation/agentes/tag_view.php:369 +#: ../../enterprise/operation/agentes/agent_inventory.php:74 +#: ../../enterprise/operation/log/log_viewer.php:469 +#: ../../enterprise/operation/log/log_viewer.php:512 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 +#: ../../enterprise/operation/inventory/inventory.php:57 +#: ../../enterprise/operation/inventory/inventory.php:58 +#: ../../enterprise/operation/inventory/inventory.php:134 +#: ../../enterprise/operation/inventory/inventory.php:135 +#: ../../enterprise/operation/inventory/inventory.php:193 #: ../../extensions/agents_modules.php:401 #: ../../extensions/files_repo/files_repo_form.php:46 -#: ../../general/subselect_data_module.php:62 -#: ../../godmode/admin_access_logs.php:83 -#: ../../godmode/admin_access_logs.php:87 -#: ../../godmode/alerts/alert_list.list.php:115 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:130 -#: ../../godmode/alerts/alert_list.list.php:135 -#: ../../godmode/alerts/alert_list.php:472 -#: ../../godmode/alerts/alert_list.php:521 -#: ../../godmode/alerts/alert_list.php:535 -#: ../../godmode/alerts/alert_templates.php:291 -#: ../../godmode/events/event_edit_filter.php:289 -#: ../../godmode/events/event_edit_filter.php:304 -#: ../../godmode/events/event_edit_filter.php:567 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_components.php:574 #: ../../godmode/massive/massive_copy_modules.php:111 #: ../../godmode/massive/massive_copy_modules.php:271 -#: ../../godmode/massive/massive_delete_agents.php:148 -#: ../../godmode/massive/massive_delete_agents.php:162 #: ../../godmode/massive/massive_delete_modules.php:303 #: ../../godmode/massive/massive_delete_modules.php:350 #: ../../godmode/massive/massive_delete_modules.php:405 #: ../../godmode/massive/massive_delete_modules.php:426 +#: ../../godmode/massive/massive_delete_agents.php:148 +#: ../../godmode/massive/massive_delete_agents.php:162 #: ../../godmode/massive/massive_edit_agents.php:435 #: ../../godmode/massive/massive_edit_agents.php:448 #: ../../godmode/massive/massive_edit_modules.php:284 #: ../../godmode/massive/massive_edit_modules.php:331 #: ../../godmode/massive/massive_edit_modules.php:369 #: ../../godmode/massive/massive_edit_modules.php:454 -#: ../../godmode/modules/manage_network_components.php:577 -#: ../../godmode/modules/manage_network_templates_form.php:291 -#: ../../godmode/reporting/create_container.php:507 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1284 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1302 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1637 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2348 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2375 +#: ../../godmode/admin_access_logs.php:83 +#: ../../godmode/admin_access_logs.php:87 +#: ../../godmode/alerts/alert_list.list.php:115 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:135 +#: ../../godmode/alerts/alert_templates.php:291 +#: ../../godmode/alerts/alert_list.php:413 +#: ../../godmode/alerts/alert_list.php:462 +#: ../../godmode/alerts/alert_list.php:476 +#: ../../godmode/setup/gis_step_2.php:207 +#: ../../godmode/setup/setup_visuals.php:863 #: ../../godmode/reporting/reporting_builder.list_items.php:209 #: ../../godmode/reporting/reporting_builder.list_items.php:211 #: ../../godmode/reporting/reporting_builder.list_items.php:213 #: ../../godmode/reporting/reporting_builder.list_items.php:235 #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/create_container.php:514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1294 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2340 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2367 #: ../../godmode/reporting/visual_console_builder.wizard.php:360 #: ../../godmode/reporting/visual_console_builder.wizard.php:374 -#: ../../godmode/setup/gis_step_2.php:201 -#: ../../godmode/setup/setup_visuals.php:872 -#: ../../include/class/CredentialStore.class.php:491 -#: ../../include/functions.php:1069 ../../include/functions.php:1328 -#: ../../include/functions_notifications.php:108 -#: ../../include/functions_events.php:5774 -#: ../../include/functions_events.php:6372 -#: ../../include/functions_events.php.orig:5678 -#: ../../include/functions_events.php.orig:6276 -#: ../../include/functions_graph.php:3029 -#: ../../include/functions_groups.php:685 -#: ../../include/functions_groups.php:1964 -#: ../../include/functions_groupview.php:95 -#: ../../include/functions_users.php:369 ../../include/functions_users.php:1206 -#: ../../include/functions_modules.php:3127 -#: ../../include/functions_modules.php:3129 -#: ../../include/functions_reporting.php:2299 -#: ../../mobile/operation/agents.php:38 ../../mobile/operation/alerts.php:47 +#: ../../godmode/events/event_edit_filter.php:289 +#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:567 +#: ../../mobile/operation/agents.php:38 ../../mobile/operation/modules.php:48 +#: ../../mobile/operation/modules.php:264 +#: ../../mobile/operation/modules.php:279 ../../mobile/operation/alerts.php:47 #: ../../mobile/operation/alerts.php:54 ../../mobile/operation/events.php:682 #: ../../mobile/operation/events.php:692 ../../mobile/operation/events.php:1158 -#: ../../mobile/operation/events.php:1187 ../../mobile/operation/modules.php:48 -#: ../../mobile/operation/modules.php:264 -#: ../../mobile/operation/modules.php:279 -#: ../../operation/agentes/alerts_status.functions.php:78 -#: ../../operation/agentes/alerts_status.functions.php:84 -#: ../../operation/agentes/alerts_status.functions.php:98 -#: ../../operation/agentes/alerts_status.functions.php:115 -#: ../../operation/agentes/alerts_status.functions.php:118 -#: ../../operation/agentes/estado_agente.php:238 -#: ../../operation/agentes/estado_monitores.php:511 -#: ../../operation/agentes/estado_monitores.php:556 +#: ../../mobile/operation/events.php:1187 ../../include/functions.php:1074 +#: ../../include/functions.php:1333 ../../include/functions_groupview.php:95 +#: ../../include/functions_modules.php:3258 +#: ../../include/functions_modules.php:3260 +#: ../../include/functions_graph.php:3032 ../../include/functions_users.php:369 +#: ../../include/functions_users.php:612 +#: ../../include/functions_notifications.php:108 +#: ../../include/class/CredentialStore.class.php:494 +#: ../../include/functions_reporting.php:2306 +#: ../../include/lib/Dashboard/Widgets/events_list.php:350 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:371 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/functions_groups.php:685 +#: ../../include/functions_groups.php:1964 +#: ../../include/functions_events.php:5787 +#: ../../include/functions_events.php:6385 ../../operation/tree.php:157 +#: ../../operation/tree.php:201 ../../operation/agentes/estado_agente.php:245 #: ../../operation/agentes/status_monitor.php:394 #: ../../operation/agentes/status_monitor.php:422 #: ../../operation/agentes/status_monitor.php:459 #: ../../operation/agentes/status_monitor.php:538 #: ../../operation/agentes/status_monitor.php:541 -#: ../../operation/agentes/status_monitor.php:636 -#: ../../operation/events/events.build_table.php:616 -#: ../../operation/events/events.php:889 ../../operation/events/events.php:958 -#: ../../operation/events/events.php:1050 -#: ../../operation/events/events.php:1102 -#: ../../operation/events/events.php:1990 +#: ../../operation/agentes/status_monitor.php:641 +#: ../../operation/agentes/estado_monitores.php:513 +#: ../../operation/agentes/estado_monitores.php:558 +#: ../../operation/agentes/alerts_status.functions.php:78 +#: ../../operation/agentes/alerts_status.functions.php:84 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:118 +#: ../../operation/snmpconsole/snmp_view.php:525 +#: ../../operation/snmpconsole/snmp_view.php:554 +#: ../../operation/snmpconsole/snmp_view.php:562 +#: ../../operation/snmpconsole/snmp_view.php:847 +#: ../../operation/incidents/list_integriaims_incidents.php:122 +#: ../../operation/incidents/list_integriaims_incidents.php:133 +#: ../../operation/incidents/list_integriaims_incidents.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:161 #: ../../operation/events/events_list.php:813 #: ../../operation/events/events_list.php:825 #: ../../operation/events/events_list.php:934 #: ../../operation/events/events_list.php:946 -#: ../../operation/incidents/list_integriaims_incidents.php:115 -#: ../../operation/incidents/list_integriaims_incidents.php:126 -#: ../../operation/incidents/list_integriaims_incidents.php:143 -#: ../../operation/incidents/list_integriaims_incidents.php:154 -#: ../../operation/snmpconsole/snmp_view.php:525 -#: ../../operation/snmpconsole/snmp_view.php:554 -#: ../../operation/snmpconsole/snmp_view.php:562 -#: ../../operation/snmpconsole/snmp_view.php:847 ../../operation/tree.php:157 -#: ../../operation/tree.php:201 -#: ../../enterprise/dashboard/widgets/events_list.php:72 -#: ../../enterprise/dashboard/widgets/tree_view.php:67 -#: ../../enterprise/dashboard/widgets/tree_view.php:85 -#: ../../enterprise/extensions/backup/main.php:106 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1454 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1478 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:114 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:191 -#: ../../enterprise/godmode/modules/local_components.php:479 -#: ../../enterprise/godmode/modules/local_components.php:505 -#: ../../enterprise/godmode/modules/local_components.php:530 -#: ../../enterprise/godmode/policies/policy_agents.php:699 -#: ../../enterprise/godmode/policies/policy_queue.php:414 -#: ../../enterprise/godmode/policies/policy_queue.php:419 -#: ../../enterprise/godmode/policies/policy_queue.php:430 -#: ../../enterprise/godmode/policies/policy_queue.php:499 -#: ../../enterprise/godmode/reporting/cluster_list.php:138 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:160 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1836 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1843 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1868 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2547 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2574 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:185 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:604 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:630 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:143 -#: ../../enterprise/godmode/setup/setup_acl.php:397 -#: ../../enterprise/godmode/setup/setup_acl.php:414 -#: ../../enterprise/godmode/setup/setup_acl.php:431 -#: ../../enterprise/godmode/setup/setup_acl.php:655 -#: ../../enterprise/godmode/setup/setup_acl.php:663 -#: ../../enterprise/godmode/setup/setup_acl.php:674 -#: ../../enterprise/godmode/setup/setup_acl.php:715 -#: ../../enterprise/godmode/setup/setup_acl.php:746 -#: ../../enterprise/include/functions_metaconsole.php:839 -#: ../../enterprise/include/functions_metaconsole.php:840 -#: ../../enterprise/include/functions_metaconsole.php:1188 -#: ../../enterprise/meta/advanced/metasetup.visual.php:150 -#: ../../enterprise/meta/advanced/policymanager.queue.php:212 -#: ../../enterprise/meta/advanced/policymanager.queue.php:217 -#: ../../enterprise/meta/advanced/policymanager.queue.php:228 -#: ../../enterprise/meta/advanced/policymanager.queue.php:300 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:267 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:314 -#: ../../enterprise/meta/include/functions_html_meta.php:75 -#: ../../enterprise/meta/include/functions_users_meta.php:87 -#: ../../enterprise/meta/include/functions_users_meta.php:98 -#: ../../enterprise/meta/include/functions_wizard_meta.php:320 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:208 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:235 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:253 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 -#: ../../enterprise/operation/agentes/agent_inventory.php:74 -#: ../../enterprise/operation/agentes/tag_view.php:119 -#: ../../enterprise/operation/agentes/tag_view.php:145 -#: ../../enterprise/operation/agentes/tag_view.php:183 -#: ../../enterprise/operation/agentes/tag_view.php:211 -#: ../../enterprise/operation/agentes/tag_view.php:275 -#: ../../enterprise/operation/agentes/tag_view.php:278 -#: ../../enterprise/operation/agentes/tag_view.php:364 -#: ../../enterprise/operation/inventory/inventory.php:57 -#: ../../enterprise/operation/inventory/inventory.php:58 -#: ../../enterprise/operation/inventory/inventory.php:134 -#: ../../enterprise/operation/inventory/inventory.php:135 -#: ../../enterprise/operation/inventory/inventory.php:193 -#: ../../enterprise/operation/log/log_viewer.php:442 -#: ../../enterprise/operation/log/log_viewer.php:485 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 +#: ../../operation/events/events.php:897 ../../operation/events/events.php:966 +#: ../../operation/events/events.php:1058 +#: ../../operation/events/events.php:1110 +#: ../../operation/events/events.php:2001 +#: ../../operation/events/events.build_table.php:616 +#: ../../general/subselect_data_module.php:62 msgid "All" msgstr "Todo" -#: ../../extensions/agents_modules.php:421 -#: ../../extensions/agents_modules.php:424 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:616 -#: ../../godmode/agentes/planned_downtime.editor.php:954 -#: ../../godmode/massive/massive_add_action_alerts.php:186 -#: ../../godmode/massive/massive_add_alerts.php:236 -#: ../../godmode/massive/massive_delete_action_alerts.php:199 -#: ../../godmode/massive/massive_delete_alerts.php:302 -#: ../../godmode/massive/massive_delete_modules.php:530 -#: ../../godmode/massive/massive_edit_modules.php:500 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1536 -#: ../../enterprise/dashboard/widgets/agent_module.php:126 -#: ../../enterprise/dashboard/widgets/agent_module.php:130 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:234 -msgid "Show common modules" -msgstr "Mostrar módulos comunes" +#: ../../enterprise/meta/advanced/metasetup.visual.php:263 +#: ../../godmode/setup/setup_visuals.php:864 +msgid "On Boolean graphs" +msgstr "En gráficos booleanos" -#: ../../extensions/agents_modules.php:422 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:617 -#: ../../godmode/agentes/planned_downtime.editor.php:955 -#: ../../godmode/massive/massive_add_action_alerts.php:187 -#: ../../godmode/massive/massive_add_alerts.php:237 -#: ../../godmode/massive/massive_delete_action_alerts.php:200 -#: ../../godmode/massive/massive_delete_alerts.php:303 -#: ../../godmode/massive/massive_delete_modules.php:531 -#: ../../godmode/massive/massive_edit_modules.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1537 -#: ../../enterprise/dashboard/widgets/agent_module.php:131 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:235 -msgid "Show all modules" -msgstr "Mostrar todos los módulos" +#: ../../enterprise/meta/advanced/metasetup.visual.php:266 +msgid "Graph TIP view" +msgstr "Visor de gráfico TIP" -#: ../../extensions/agents_modules.php:433 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2803 -#: ../../include/functions_visual_map_editor.php:1324 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3105 -msgid "Update item" -msgstr "Actualizar elemento" +#: ../../enterprise/meta/advanced/metasetup.visual.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 +#: ../../operation/agentes/interface_traffic_graph_win.php:223 +msgid "This option may cause performance issues" +msgstr "Esta opción puede generar problemas de rendimiento" -#: ../../extensions/agents_modules.php:450 -#: ../../include/functions_reports.php:776 -msgid "Agents/Modules" -msgstr "Agentes/Módulos" +#: ../../enterprise/meta/advanced/metasetup.visual.php:281 +#: ../../godmode/setup/setup_visuals.php:873 +msgid "Standard mode" +msgstr "Modo estándar" -#: ../../extensions/agents_modules.php:513 -msgid "Agent/module view" -msgstr "Vista de agente/módulo" +#: ../../enterprise/meta/advanced/metasetup.visual.php:282 +#: ../../godmode/setup/setup_visuals.php:874 +msgid "Classic mode" +msgstr "Modo clásico" -#: ../../extensions/agents_modules.php:548 ../../godmode/events/events.php:62 -#: ../../godmode/events/events.php:82 -#: ../../godmode/reporting/reporting_builder.list_items.php:222 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2571 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:88 -#: ../../enterprise/meta/general/main_header.php:280 -msgid "Filters" -msgstr "Filtros" +#: ../../enterprise/meta/advanced/metasetup.visual.php:284 +msgid "Soft graphs:" +msgstr "Soft graphs:" -#: ../../extensions/agents_modules.php:682 -#: ../../include/functions_reporting.php:2326 -msgid "There are no agents with modules" -msgstr "No hay agentes con módulos" +#: ../../enterprise/meta/advanced/metasetup.visual.php:304 +#: ../../godmode/setup/setup_visuals.php:879 +msgid "Zoom graphs:" +msgstr "Gráficas ampliadas:" -#: ../../extensions/agents_modules.php:697 -msgid "Previous modules" -msgstr "Módulos anteriores" +#: ../../enterprise/meta/advanced/metasetup.visual.php:318 +#: ../../godmode/setup/setup_visuals.php:821 +msgid "Type of module charts" +msgstr "Tipo de gráficos de módulos" -#: ../../extensions/agents_modules.php:723 -msgid "More modules" -msgstr "Más módulos" +#: ../../enterprise/meta/advanced/metasetup.visual.php:320 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:213 +#: ../../godmode/setup/setup_visuals.php:822 +#: ../../godmode/setup/setup_visuals.php:839 +#: ../../godmode/reporting/create_container.php:326 +#: ../../godmode/reporting/graph_builder.main.php:151 +#: ../../include/functions_visual_map_editor.php:502 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:636 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:261 +#: ../../operation/agentes/graphs.php:229 +#: ../../operation/agentes/graphs.php:236 +#: ../../operation/agentes/graphs.php:402 +#: ../../operation/agentes/graphs.php:421 +#: ../../operation/reporting/graph_viewer.php:265 +msgid "Area" +msgstr "Área" -#: ../../extensions/agents_modules.php:850 -#: ../../include/functions_reporting_html.php:1729 -msgid "Orange cell when the module has fired alerts" -msgstr "Cuadro naranja cuando el módulo ha disparado alertas" +#: ../../enterprise/meta/advanced/metasetup.visual.php:329 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:215 +#: ../../godmode/setup/setup_visuals.php:829 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../godmode/reporting/create_container.php:327 +#: ../../godmode/reporting/visual_console_builder.elements.php:278 +#: ../../godmode/reporting/graph_builder.main.php:153 +#: ../../include/functions_visual_map_editor.php:72 +#: ../../include/functions_visual_map_editor.php:501 +#: ../../include/functions_visual_map_editor.php:1309 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:635 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:263 +#: ../../operation/visual_console/view.php:275 +#: ../../operation/agentes/graphs.php:231 +#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/graphs.php:410 +#: ../../operation/agentes/graphs.php:425 +#: ../../operation/reporting/graph_viewer.php:267 +msgid "Line" +msgstr "Línea" -#: ../../extensions/agents_modules.php:852 -#: ../../include/functions_reporting_html.php:1730 -msgid "Red cell when the module has a critical status" -msgstr "Celda roja cuando el módulo está en estado crítico" +#: ../../enterprise/meta/advanced/metasetup.visual.php:339 +#: ../../enterprise/meta/include/functions_meta.php:1485 +msgid "Metaconsole elements" +msgstr "Elementos de la Metaconsola" -#: ../../extensions/agents_modules.php:855 -#: ../../include/functions_reporting_html.php:1731 -msgid "Yellow cell when the module has a warning status" -msgstr "Cuadro amarillo cuando el módulo está en estado advertencia" +#: ../../enterprise/meta/advanced/metasetup.visual.php:341 +msgid "The number of elements retrieved for each instance in some views." +msgstr "" +"Número de elementos recuperados para cada instancia en algunas vistas" -#: ../../extensions/agents_modules.php:857 -#: ../../include/functions_reporting_html.php:1732 -msgid "Green cell when the module has a normal status" -msgstr "Cuadro verde cuando el módulo está en estado normal" +#: ../../enterprise/meta/advanced/metasetup.visual.php:354 +#: ../../enterprise/meta/advanced/metasetup.visual.php:756 +#: ../../enterprise/meta/advanced/metasetup.visual.php:757 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 +#: ../../extensions/agents_alerts.php:104 +#: ../../extensions/agents_alerts.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:1039 +#: ../../godmode/setup/setup_visuals.php:926 +#: ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/setup/setup_visuals.php:1261 +#: ../../include/functions_visual_map_editor.php:1133 +#: ../../include/functions_visual_map_editor.php:1134 +#: ../../include/functions.php:493 ../../include/functions.php:633 +#: ../../include/functions_html.php:1431 +msgid "seconds" +msgstr "segundos" -#: ../../extensions/agents_modules.php:859 -#: ../../include/functions_reporting_html.php:1733 -msgid "Grey cell when the module has an unknown status" -msgstr "Cuadro gris cuando el módulo está en estado desconocido" +#: ../../enterprise/meta/advanced/metasetup.visual.php:355 +#: ../../enterprise/meta/advanced/metasetup.visual.php:758 +#: ../../enterprise/meta/advanced/metasetup.visual.php:759 +#: ../../enterprise/meta/advanced/metasetup.visual.php:760 +#: ../../enterprise/meta/advanced/metasetup.visual.php:761 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/setup/setup_visuals.php:929 +#: ../../godmode/setup/setup_visuals.php:930 +#: ../../godmode/setup/setup_visuals.php:931 +#: ../../godmode/setup/setup_visuals.php:1262 +#: ../../include/functions_visual_map_editor.php:1135 +#: ../../include/functions_visual_map_editor.php:1136 +#: ../../include/functions_visual_map_editor.php:1137 +#: ../../include/functions_visual_map_editor.php:1138 +#: ../../include/functions.php:497 ../../include/functions.php:637 +#: ../../include/functions_html.php:1432 +msgid "minutes" +msgstr "minutos" -#: ../../extensions/agents_modules.php:861 -msgid "Cell turns blue when the module is in 'not initialize' status" -msgstr "Celda azul cuando el módulo está en estado \"no iniciado\"" +#: ../../enterprise/meta/advanced/metasetup.visual.php:356 +#: ../../godmode/setup/setup_visuals.php:1263 ../../include/functions.php:498 +#: ../../include/functions.php:638 ../../include/functions_html.php:1433 +msgid "hours" +msgstr "horas" -#: ../../extensions/agents_modules.php:863 -#: ../../extensions/module_groups.php:375 -#: ../../godmode/snmpconsole/snmp_alert.php:1450 -#: ../../include/functions_reporting_html.php:1728 -#: ../../operation/snmpconsole/snmp_view.php:1191 -#: ../../enterprise/dashboard/widgets/service_map.php:61 -#: ../../enterprise/dashboard/widgets/service_map.php:90 -#: ../../enterprise/operation/services/services.service_map.php:160 -msgid "Legend" -msgstr "Leyenda" +#: ../../enterprise/meta/advanced/metasetup.visual.php:357 +#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 +#: ../../godmode/setup/setup_visuals.php:1264 ../../include/functions.php:494 +#: ../../include/functions.php:634 ../../include/functions_html.php:1434 +msgid "days" +msgstr "días" -#: ../../extensions/agents_modules.php:874 -msgid "Agents/Modules view" -msgstr "Vista de Agentes/Módulos" +#: ../../enterprise/meta/advanced/metasetup.visual.php:358 +#: ../../godmode/setup/setup_visuals.php:1265 ../../include/functions.php:495 +#: ../../include/functions.php:635 ../../include/functions_html.php:1436 +msgid "months" +msgstr "meses" -#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:252 -msgid "API checker" -msgstr "Comprobación API" +#: ../../enterprise/meta/advanced/metasetup.visual.php:359 +#: ../../godmode/setup/setup_visuals.php:1266 ../../include/functions.php:496 +#: ../../include/functions.php:636 ../../include/functions_html.php:1437 +msgid "years" +msgstr "años" +#: ../../enterprise/meta/advanced/metasetup.visual.php:362 +msgid "Add new custom value to intervals" +msgstr "Añadir nuevo valor personalizado para intervalos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:585 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:737 +#: ../../enterprise/meta/advanced/links.php:175 +#: ../../enterprise/meta/include/functions_autoprovision.php:675 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1367 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:468 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:354 +#: ../../enterprise/godmode/agentes/collection_manager.php:119 +#: ../../enterprise/godmode/agentes/collection_manager.php:139 +#: ../../enterprise/godmode/agentes/inventory_manager.php:182 +#: ../../enterprise/godmode/agentes/plugins_manager.php:104 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:223 +#: ../../enterprise/godmode/policies/policy_plugins.php:96 +#: ../../enterprise/godmode/policies/policy_alerts.php:540 +#: ../../enterprise/godmode/policies/policy_alerts.php:604 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:397 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:215 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:150 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:138 +#: ../../enterprise/godmode/alerts/alert_events_list.php:699 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:345 +#: ../../enterprise/godmode/setup/setup_acl.php:407 +#: ../../enterprise/godmode/setup/setup_acl.php:426 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:829 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:217 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:295 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:71 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2183 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:266 +#: ../../extensions/files_repo/files_repo_form.php:84 +#: ../../godmode/modules/manage_network_templates_form.php:335 +#: ../../godmode/users/configure_profile.php:355 +#: ../../godmode/agentes/planned_downtime.editor.php:854 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/agentes/planned_downtime.editor.php:1158 +#: ../../godmode/snmpconsole/snmp_alert.php:1436 +#: ../../godmode/gis_maps/configure_gis_map.php:562 +#: ../../godmode/massive/massive_add_alerts.php:267 +#: ../../godmode/massive/massive_add_action_alerts.php:236 +#: ../../godmode/alerts/alert_list.list.php:769 +#: ../../godmode/setup/news.php:289 ../../godmode/setup/links.php:166 +#: ../../godmode/setup/setup_visuals.php:1216 +#: ../../godmode/setup/setup_visuals.php:1271 +#: ../../godmode/setup/setup_visuals.php:1291 +#: ../../godmode/reporting/graph_builder.graph_editor.php:377 +#: ../../godmode/reporting/visual_console_builder.wizard.php:551 +#: ../../godmode/events/event_edit_filter.php:475 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../godmode/servers/plugin.php:1052 +#: ../../include/functions_notifications.php:853 +#: ../../include/class/ManageNetScanScripts.class.php:475 +#: ../../include/functions_snmp_browser.php:1234 +#: ../../operation/incidents/incident_detail.php:425 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:321 +#: ../../operation/events/events_list.php:601 +#: ../../operation/events/events_list.php:675 +#: ../../operation/events/events.php:528 ../../operation/events/events.php:602 +msgid "Add" +msgstr "Añadir" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:392 +#: ../../enterprise/meta/include/functions_meta.php:1641 +#: ../../godmode/setup/setup_visuals.php:1276 +#: ../../include/functions_config.php:1280 +msgid "Delete interval" +msgstr "Borrar intervalo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:426 +#: ../../enterprise/meta/include/functions_meta.php:1494 +#: ../../godmode/setup/setup_visuals.php:1166 +msgid "Show only the group name" +msgstr "Mostrar solo el nombre del grupo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:428 +#: ../../include/functions_config.php:1149 +msgid "Show the group name instead the group icon." +msgstr "Mostrar el nombre del grupo en lugar de icono del grupo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:438 +#: ../../enterprise/meta/include/functions_meta.php:1693 +#: ../../godmode/setup/setup_visuals.php:82 +#: ../../include/functions_config.php:1165 +msgid "Display data of proc modules in other format" +msgstr "Mostrar los datos de los módulos proc en otro formato" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:446 +#: ../../enterprise/meta/include/functions_meta.php:1698 +#: ../../godmode/setup/setup_visuals.php:91 +#: ../../include/functions_config.php:1169 +msgid "Display text proc modules have state is ok" +msgstr "Texto mostrado cuando el estado del módulo proc es OK" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:456 +#: ../../enterprise/meta/include/functions_meta.php:1703 +#: ../../godmode/setup/setup_visuals.php:95 +#: ../../include/functions_config.php:1173 +msgid "Display text when proc modules have state critical" +msgstr "Texto mostrado cuando el estado del módulo proc es Crítico" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:477 +#: ../../godmode/setup/setup_visuals.php:172 +#: ../../include/functions_config.php:993 +msgid "Login background" +msgstr "Imagen de fondo de la pantalla de inicio de sesión" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:479 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "" +"Puedes poner tus propias imágenes en el directorio images/backgrounds/" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:493 +#: ../../enterprise/meta/advanced/metasetup.visual.php:527 +#: ../../enterprise/meta/advanced/metasetup.visual.php:882 +#: ../../enterprise/meta/advanced/metasetup.visual.php:973 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:427 +#: ../../enterprise/godmode/policies/policy_alerts.php:340 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:229 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:107 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:89 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/operation/agentes/policy_view.php:268 +#: ../../extensions/agents_alerts.php:556 +#: ../../godmode/users/configure_user.php:718 +#: ../../godmode/users/configure_user.php:889 +#: ../../godmode/agentes/module_manager_editor_common.php:576 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/alerts/alert_list.list.php:584 +#: ../../godmode/alerts/alert_special_days.php:306 +#: ../../godmode/alerts/alert_special_days.php:318 +#: ../../godmode/alerts/alert_view.php:43 +#: ../../godmode/setup/gis_step_2.php:403 +#: ../../godmode/setup/gis_step_2.php:489 +#: ../../godmode/setup/setup_visuals.php:192 +#: ../../godmode/setup/setup_visuals.php:214 +#: ../../godmode/setup/setup_visuals.php:434 +#: ../../godmode/setup/setup_visuals.php:453 +#: ../../godmode/setup/setup_visuals.php:1038 +#: ../../godmode/setup/setup_visuals.php:1075 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../include/functions_ui.php:1210 ../../operation/users/user_edit.php:298 +#: ../../operation/users/user_edit.php:301 +#: ../../operation/users/user_edit.php:312 +#: ../../operation/users/user_edit.php:337 +#: ../../operation/snmpconsole/snmp_view.php:542 +#: ../../operation/gis_maps/gis_map.php:106 +#: ../../operation/events/events_list.php:849 +msgid "Default" +msgstr "Por defecto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:517 +#: ../../enterprise/meta/include/functions_meta.php:1521 +#: ../../godmode/setup/setup_visuals.php:186 +#: ../../include/functions_config.php:937 +msgid "Custom favicon" +msgstr "Personalizar favicon" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:519 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." +msgstr "" +"Puede poner su favicon en la carpeta images/custom_favicon/. Este archivo " +"debe estar en formato .ico y tener un tamaño de 16x16." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:544 +msgid "Custom logo (header)" +msgstr "Logo personalizado (cabecera)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:573 +#: ../../godmode/setup/setup_visuals.php:285 +msgid "Custom logo (header white background)" +msgstr "Logo personalizado (fondo blanco de cabecera)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:601 +#: ../../godmode/setup/setup_visuals.php:324 +msgid "Custom logo (login)" +msgstr "Logo personalizado (inicio de sesión)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:629 +#: ../../godmode/setup/setup_visuals.php:363 +msgid "Custom Splash (login)" +msgstr "Splash personalizado (inicio de sesión)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:657 +#: ../../enterprise/meta/include/functions_meta.php:1548 +#: ../../godmode/setup/setup_visuals.php:507 +#: ../../include/functions_config.php:1005 +msgid "Product name" +msgstr "Nombre del producto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:668 +#: ../../enterprise/meta/include/functions_meta.php:1557 +#: ../../godmode/setup/setup_visuals.php:513 +#: ../../include/functions_config.php:1009 +msgid "Copyright notice" +msgstr "Aviso de copyright" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:679 +#: ../../godmode/setup/setup_visuals.php:482 +msgid "Title 1 (login)" +msgstr "Título 1 (inicio de sesión)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:690 +#: ../../godmode/setup/setup_visuals.php:489 +msgid "Title 2 (login)" +msgstr "Título 2 (inicio de sesión)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:700 +#: ../../enterprise/meta/include/functions_meta.php:1584 +#: ../../godmode/setup/setup_visuals.php:495 +msgid "Docs URL (login)" +msgstr "URL de documentos (inicio de sesión)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:710 +#: ../../enterprise/meta/include/functions_meta.php:1593 +#: ../../godmode/setup/setup_visuals.php:501 +msgid "Support URL (login)" +msgstr "URL soporte (inicio de sesión)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:720 +#: ../../godmode/setup/setup_visuals.php:630 +msgid "Graphs font family" +msgstr "Familia tipográfica de las gráficas" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:733 +#: ../../enterprise/meta/include/functions_meta.php:1467 +#: ../../godmode/setup/setup_visuals.php:563 +msgid "Visual effects and animation" +msgstr "Efectos visuales y animación" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:743 +#: ../../godmode/setup/setup_visuals.php:916 +msgid "Legacy Visual Console View" +msgstr "Vista de la consola visual heredada" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:745 +msgid "To use the old view when using the Visual Console visor" +msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:762 +#: ../../godmode/setup/setup_visuals.php:932 +#: ../../include/functions_visual_map_editor.php:1139 +msgid "hour" +msgstr "hora" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:764 +#: ../../godmode/setup/setup_visuals.php:934 +msgid "Default cache expiration" +msgstr "Caducidad del caché por defecto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:769 +#: ../../godmode/setup/setup_visuals.php:939 +#: ../../include/functions_visual_map_editor.php:1165 +msgid "No cache" +msgstr "No hay chaché" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:781 +#: ../../enterprise/meta/include/functions_meta.php:1718 +#: ../../godmode/setup/setup_visuals.php:951 +#: ../../include/functions_config.php:1057 +msgid "Default interval for refresh on Visual Console" +msgstr "Intervalo de actualización por defecto en la consola visual" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:784 +msgid "This interval will affect to Visual Console pages" +msgstr "Este intervalo afectará todas las páginas de la consola visual." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:810 +#: ../../godmode/setup/setup_visuals.php:1330 +msgid "Data multiplier to use in graphs/data" +msgstr "Multiplicador de datos para usar en gráficas/datos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:814 +#: ../../godmode/setup/setup_visuals.php:1332 +msgid "Use 1024 when module unit are bytes" +msgstr "Utilizar 1024 cuando la unidad del módulo sea bytes" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +#: ../../godmode/setup/setup_visuals.php:1333 +msgid "Use always 1000" +msgstr "Utilizar siempre 1000" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:816 +#: ../../godmode/setup/setup_visuals.php:1334 +msgid "Use always 1024" +msgstr "Utilizar siempre 1024" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:840 +msgid "Reports configuration" +msgstr "Configuración de informes" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:846 +#: ../../godmode/setup/setup_visuals.php:1003 +msgid "Show report info with description" +msgstr "Mostrar la información del informe con la descripción" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:847 +msgid "" +"Custom report description info. It will be applied to all reports and " +"templates by default." +msgstr "" +"Descripción del informe personalizado. Será aplicado a todas las plantillas " +"e informes por defecto." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:858 +#: ../../godmode/setup/setup_visuals.php:1012 +msgid "Custom report front page" +msgstr "Portada de informe personalizado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:859 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" +"Portada de informe personalizado. Se aplicará por defecto a todos los " +"informes y plantillas." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:870 +#: ../../enterprise/meta/include/functions_meta.php:1365 +#: ../../godmode/setup/setup_visuals.php:1022 +#: ../../include/functions_config.php:1316 +msgid "PDF font size (px)" +msgstr "Tamaño de fuente de PDF (px)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:873 +#: ../../enterprise/meta/include/functions_meta.php:1356 +#: ../../godmode/setup/setup_visuals.php:1027 +#: ../../include/functions_config.php:1312 +msgid "HTML font size for SLA (em)" +msgstr "Tamaño de fuente en SLA (em)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:876 +#: ../../godmode/setup/setup_visuals.php:1032 +msgid "PDF font family" +msgstr "Familia tipográfica PDF" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:887 +#: ../../enterprise/meta/include/functions_meta.php:1449 +#: ../../godmode/setup/setup_visuals.php:1046 +msgid "Graph image height for HTML reports" +msgstr "Altura de la imagen de la gráfica en informes HTML" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:889 +msgid "" +"This is the height in pixels of the module graph or custom graph in the " +"reports (only: HTML)" +msgstr "" +"Esta es la altura en pixeles de la gráfica de módulos o la gráfica " +"personalizada en los informes (solo HTML)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:906 +#: ../../godmode/setup/setup_visuals.php:1319 +#: ../../include/functions_config.php:1344 +msgid "CSV divider" +msgstr "Separador CSV" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:947 +#: ../../enterprise/meta/include/functions_meta.php:1374 +#: ../../enterprise/meta/include/functions_meta.php:1383 +#: ../../godmode/setup/setup_visuals.php:1055 +msgid "Interval description" +msgstr "Descripción del intervalo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:949 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 " +"seconds”, a short one is 10h 20m 33s" +msgstr "" +"Una descripción larga del intervalo dura por ejemplo 10 horas, 20 minutos 33 " +"segundos”, una corta es 10h 20m 33s" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:964 +#: ../../enterprise/meta/advanced/metasetup.visual.php:977 +#: ../../enterprise/meta/advanced/metasetup.visual.php:987 +#: ../../enterprise/meta/advanced/metasetup.visual.php:997 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1012 +#: ../../enterprise/meta/include/functions_meta.php:1657 +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../enterprise/meta/include/functions_meta.php:1673 +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../enterprise/meta/include/functions_meta.php:1683 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../godmode/setup/setup_visuals.php:1069 +#: ../../godmode/setup/setup_visuals.php:1080 +#: ../../godmode/setup/setup_visuals.php:1088 +#: ../../godmode/setup/setup_visuals.php:1099 +#: ../../godmode/setup/setup_visuals.php:1115 +#: ../../include/functions_config.php:1320 +#: ../../include/functions_config.php:1324 +#: ../../include/functions_config.php:1328 +#: ../../include/functions_config.php:1332 +#: ../../include/functions_config.php:1336 +#: ../../include/functions_config.php:1340 +msgid "Custom report front" +msgstr "Portada de informe personalizado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:964 +#: ../../enterprise/meta/include/functions_meta.php:1503 +#: ../../enterprise/meta/include/functions_meta.php:1673 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:103 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1069 +#: ../../include/functions_config.php:941 +#: ../../include/functions_config.php:1328 +msgid "Custom logo" +msgstr "Logo personalizado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:965 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console " +"installation. You can upload more files (ONLY JPEG AND PNG) with the upload " +"tool." +msgstr "" +"La ruta de los logos personalizados es \"images/custom_logo\" en la " +"instalación de la consola. Puede añadir más archivos (SOLO JPEG Y PNG) con " +"la herramienta de añadir." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:987 +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1088 +#: ../../include/functions_config.php:1332 +msgid "Header" +msgstr "Encabezado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:997 +#: ../../enterprise/meta/include/functions_meta.php:1683 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:119 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1099 +#: ../../include/functions_config.php:1336 +msgid "First page" +msgstr "Primera página" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1012 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1115 +#: ../../include/functions_config.php:1340 +msgid "Footer" +msgstr "Pie de página" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1028 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:228 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:154 +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:578 +#: ../../enterprise/meta/advanced/links.php:135 +#: ../../enterprise/meta/advanced/collections.data.php:150 +#: ../../enterprise/meta/advanced/collections.data.php:219 +#: ../../enterprise/meta/advanced/collections.data.php:260 +#: ../../enterprise/meta/advanced/collections.data.php:331 +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:123 +#: ../../enterprise/meta/advanced/collections.editor.php:196 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:156 +#: ../../enterprise/meta/advanced/cron_main.php:454 +#: ../../enterprise/meta/advanced/metasetup.setup.php:313 +#: ../../enterprise/meta/advanced/metasetup.performance.php:121 +#: ../../enterprise/meta/event/custom_events.php:211 +#: ../../enterprise/meta/include/functions_autoprovision.php:564 +#: ../../enterprise/meta/include/functions_autoprovision.php:763 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:327 +#: ../../enterprise/extensions/translate_string.php:364 +#: ../../enterprise/extensions/ipam/ipam_network.php:619 +#: ../../enterprise/extensions/ipam/ipam_massive.php:112 +#: ../../enterprise/extensions/ipam/ipam_editor.php:227 +#: ../../enterprise/extensions/vmware/vmware_view.php:1243 +#: ../../enterprise/extensions/vmware/vmware_view.php:1679 +#: ../../enterprise/godmode/modules/configure_local_component.php:651 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:410 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:342 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:654 +#: ../../enterprise/godmode/agentes/collection_manager.php:148 +#: ../../enterprise/godmode/agentes/collection_manager.php:149 +#: ../../enterprise/godmode/agentes/collection_manager.php:260 +#: ../../enterprise/godmode/agentes/collection_manager.php:261 +#: ../../enterprise/godmode/agentes/inventory_manager.php:180 +#: ../../enterprise/godmode/agentes/inventory_manager.php:250 +#: ../../enterprise/godmode/agentes/collections.data.php:98 +#: ../../enterprise/godmode/agentes/collections.data.php:225 +#: ../../enterprise/godmode/agentes/collections.data.php:294 +#: ../../enterprise/godmode/agentes/collections.data.php:381 +#: ../../enterprise/godmode/agentes/collections.data.php:382 +#: ../../enterprise/godmode/agentes/collections.editor.php:159 +#: ../../enterprise/godmode/agentes/collections.editor.php:230 +#: ../../enterprise/godmode/agentes/plugins_manager.php:122 +#: ../../enterprise/godmode/agentes/plugins_manager.php:147 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:250 +#: ../../enterprise/godmode/policies/configure_policy.php:112 +#: ../../enterprise/godmode/policies/policy_modules.php:419 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:213 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:289 +#: ../../enterprise/godmode/policies/policy_collections.php:202 +#: ../../enterprise/godmode/policies/policy_collections.php:275 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:364 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:361 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:174 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1012 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:271 +#: ../../enterprise/godmode/services/services.service.php:559 +#: ../../enterprise/godmode/services/services.elements.php:764 +#: ../../enterprise/godmode/setup/setup_history.php:79 +#: ../../enterprise/godmode/setup/setup.php:451 +#: ../../enterprise/godmode/setup/setup.php:630 +#: ../../enterprise/godmode/setup/setup_module_library.php:58 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:242 +#: ../../enterprise/godmode/setup/setup_log_collector.php:65 +#: ../../enterprise/godmode/setup/edit_skin.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:107 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:175 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:77 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1632 +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +#: ../../enterprise/include/class/AgentRepository.class.php:885 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/SAPView.class.php:308 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2183 +#: ../../enterprise/include/functions_update_manager.php:252 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:170 +#: ../../enterprise/operation/agentes/collection_view.php:100 +#: ../../enterprise/operation/agentes/collection_view.php:101 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:224 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:452 +#: ../../extensions/files_repo/files_repo_form.php:78 +#: ../../extensions/net_tools.php:499 +#: ../../godmode/modules/manage_nc_groups_form.php:90 +#: ../../godmode/modules/manage_network_templates_form.php:166 +#: ../../godmode/modules/manage_network_components_form.php:307 +#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_modu_group.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:271 +#: ../../godmode/users/configure_profile.php:360 +#: ../../godmode/users/configure_user.php:1087 +#: ../../godmode/agentes/agent_template.php:258 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 +#: ../../godmode/agentes/module_manager_editor.php:743 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:487 +#: ../../godmode/agentes/planned_downtime.list.php:492 +#: ../../godmode/agentes/planned_downtime.editor.php:846 +#: ../../godmode/agentes/agent_manager.php:981 +#: ../../godmode/agentes/configure_field.php:135 +#: ../../godmode/netflow/nf_edit_form.php:258 +#: ../../godmode/snmpconsole/snmp_alert.php:1098 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_filters.php:230 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_edit_plugins.php:376 +#: ../../godmode/massive/massive_edit_agents.php:818 +#: ../../godmode/massive/massive_edit_modules.php:1175 +#: ../../godmode/alerts/configure_alert_command.php:237 +#: ../../godmode/alerts/alert_list.list.php:150 +#: ../../godmode/alerts/alert_list.list.php:157 +#: ../../godmode/alerts/alert_list.list.php:845 +#: ../../godmode/alerts/configure_alert_special_days.php:104 +#: ../../godmode/alerts/configure_alert_action.php:282 +#: ../../godmode/alerts/configure_alert_action.php:286 +#: ../../godmode/setup/news.php:223 ../../godmode/setup/setup_ehorus.php:162 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/os.php:55 ../../godmode/setup/os.php:113 +#: ../../godmode/setup/setup_auth.php:306 +#: ../../godmode/setup/setup_integria.php:554 ../../godmode/setup/links.php:126 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/setup/setup_visuals.php:1346 +#: ../../godmode/setup/setup_general.php:397 +#: ../../godmode/setup/performance.php:672 +#: ../../godmode/reporting/visual_console_builder.data.php:220 +#: ../../godmode/reporting/create_container.php:298 +#: ../../godmode/reporting/visual_console_builder.elements.php:664 +#: ../../godmode/reporting/reporting_builder.main.php:46 +#: ../../godmode/reporting/graph_builder.main.php:182 +#: ../../godmode/events/event_responses.editor.php:205 +#: ../../godmode/events/event_edit_filter.php:622 +#: ../../godmode/events/custom_events.php:166 +#: ../../godmode/servers/modificar_server.php:98 +#: ../../godmode/servers/plugin.php:182 ../../godmode/servers/plugin.php:564 +#: ../../godmode/tag/edit_tag.php:229 +#: ../../godmode/category/edit_category.php:166 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../include/ajax/alert_list.ajax.php:541 +#: ../../include/class/ConfigPEN.class.php:691 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/ManageNetScanScripts.class.php:768 +#: ../../include/class/CredentialStore.class.php:1119 +#: ../../include/class/ModuleTemplates.class.php:927 +#: ../../include/functions_events.php:3405 +#: ../../include/functions_events.php:3485 +#: ../../include/functions_update_manager.php:1406 +#: ../../operation/users/user_edit.php:714 +#: ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/incidents/configure_integriaims_incident.php:320 +#: ../../operation/reporting/reporting_viewer.php:219 +#: ../../operation/events/events_list.php:1059 +msgid "Update" +msgstr "Actualizar" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1210 +#: ../../godmode/setup/setup_visuals.php:1594 +msgid "Logo preview" +msgstr "Logo de vista previa" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1232 +#: ../../godmode/setup/setup_visuals.php:1624 +msgid "Splash Preview" +msgstr "Vista previa de Splash" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1237 +#: ../../godmode/setup/setup_visuals.php:1648 +msgid "Background preview" +msgstr "Vista previa del fondo" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:272 +#: ../../enterprise/meta/advanced/synchronizing.user.php:564 +#: ../../enterprise/meta/advanced/synchronizing.user.php:651 +#: ../../enterprise/meta/advanced/synchronizing.component.php:279 +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../enterprise/meta/include/functions_meta.php:111 +#: ../../enterprise/meta/include/functions_meta.php:208 +#: ../../godmode/groups/group_list.php:530 +#, php-format +msgid "Error connecting to %s" +msgstr "Error al conectar con %s" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:280 +#, php-format +msgid "Error creating/updating %s/%s comamnds" +msgstr "Error al crear/actualizar %s/%s comandos" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:284 +#, php-format +msgid "Created/Updated %s/%s commands" +msgstr "Creados/actualizados %s/%s comandos" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:289 +#, php-format +msgid "Error creating/updating %s/%s actions" +msgstr "Error al crear/actualizar %s/%s acciones" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:293 +#, php-format +msgid "Created/Updated %s/%s actions" +msgstr "Creadas/actualizadas %s/%s acciones" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:298 +#, php-format +msgid "Error creating/updating %s/%s templates" +msgstr "Error al crear/actualizar %s/%s plantillas" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 +#, php-format +msgid "Created/Updated %s/%s templates" +msgstr "Creadas/actualizadas %s/%s plantillas" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 +msgid "Synchronizing Alerts" +msgstr "Sincronizar alertas" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:320 +#: ../../enterprise/meta/advanced/synchronizing.group.php:177 +#: ../../enterprise/meta/advanced/synchronizing.user.php:583 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:75 +#: ../../enterprise/meta/advanced/synchronizing.component.php:300 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:88 +#: ../../enterprise/meta/advanced/synchronizing.os.php:71 +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:130 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:104 +#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../godmode/agentes/agent_incidents.php:94 +#: ../../godmode/massive/massive_copy_modules.php:128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1243 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/events/custom_events.php:108 +#: ../../include/functions_events.php:202 +#: ../../include/functions_events.php:271 +#: ../../include/functions_events.php:4223 +#: ../../include/functions_events.php:4291 +#: ../../include/functions_events.php:6094 +#: ../../operation/agentes/pandora_networkmap.editor.php:306 +#: ../../operation/incidents/incident_detail.php:317 +#: ../../operation/incidents/incident.php:425 +#: ../../operation/events/events_list.php:985 +#: ../../operation/events/events.php:1005 +#: ../../operation/events/events.build_table.php:293 +msgid "Source" +msgstr "Origen" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:321 +#: ../../enterprise/meta/advanced/synchronizing.group.php:178 +#: ../../enterprise/meta/advanced/synchronizing.user.php:584 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:76 +#: ../../enterprise/meta/advanced/synchronizing.component.php:301 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:89 +#: ../../enterprise/meta/advanced/synchronizing.os.php:72 +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +msgid "This metaconsole" +msgstr "Esta Metaconsola" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:333 +#: ../../enterprise/meta/advanced/synchronizing.group.php:216 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:86 +#: ../../enterprise/meta/advanced/synchronizing.component.php:311 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:99 +#: ../../enterprise/meta/advanced/synchronizing.os.php:82 +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:182 +#: ../../godmode/massive/massive_copy_modules.php:223 +msgid "Targets" +msgstr "Destinos" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:340 +#: ../../enterprise/meta/advanced/synchronizing.group.php:223 +#: ../../enterprise/meta/advanced/synchronizing.user.php:660 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:621 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:93 +#: ../../enterprise/meta/advanced/synchronizing.component.php:318 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:106 +#: ../../enterprise/meta/advanced/synchronizing.os.php:89 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:127 +#: ../../enterprise/include/functions_setup.php:172 +msgid "Sync" +msgstr "Sincronizar" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 +msgid "Agent: " +msgstr "Agente: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 +msgid " already exists in target node" +msgstr " ya existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +msgid " group does not exist in target node" +msgstr " grupo no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 +msgid "" +" policies definitions does not match with defined ones in target node" +msgstr "" +" definiciones de políticas no concuerdan con aquellas definidas en el nodo " +"de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 +msgid " plugins does not exist in target node" +msgstr " plugins no existen en el nodo de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +msgid " collections does not exist in target node" +msgstr " colecciones no existen en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 +msgid " inventory does not exist in target node" +msgstr " inventario no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 +msgid " alerts template does not exist in target node" +msgstr " modelo de alertas no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 +msgid " alerts action does not exist in target node" +msgstr " acción de alertas no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 +msgid "Exists agent conf for agent: " +msgstr "Existe una configuración para el agente: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 +msgid " please remove configuration file from target node." +msgstr " por favor, borra el archivo de configuración del nodo de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:129 +#: ../../enterprise/include/functions_metaconsole.php:2755 +msgid "There are differences between MR versions" +msgstr "Hay diferencias entre las versiones de las actualizaciones menores" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:133 +#: ../../enterprise/include/functions_metaconsole.php:2748 +msgid "Target server ip address is set" +msgstr "Dirección IP del servidor de destino configurada" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 +msgid "The agent: " +msgstr "El agente: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 +msgid " has been successfully added to the migration queue " +msgstr " se añadió correctamente a la cola de migración " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 +msgid " has not been added due to problems in the insertion" +msgstr " no se añadió por problemas de inserción" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:227 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "El agente: %d ya se ha añadido a la cola de migración" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:244 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:100 +#: ../../enterprise/godmode/reporting/graph_template_list.php:127 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:126 +#: ../../godmode/modules/manage_nc_groups.php:142 +#: ../../godmode/agentes/planned_downtime.list.php:113 +#: ../../godmode/netflow/nf_item_list.php:123 +#: ../../godmode/netflow/nf_item_list.php:151 +#: ../../godmode/netflow/nf_edit.php:92 ../../godmode/netflow/nf_edit.php:125 +#: ../../godmode/reporting/map_builder.php:166 +#: ../../godmode/reporting/graphs.php:99 ../../godmode/reporting/graphs.php:110 +#: ../../godmode/reporting/graphs.php:151 +#: ../../godmode/events/event_filter.php:55 +#: ../../godmode/events/event_filter.php:82 +#: ../../operation/reporting/graph_viewer.php:41 +#: ../../operation/reporting/graph_viewer.php:49 +msgid "Not deleted. Error deleting data" +msgstr "No se pudo borrar. Error al borrar los datos." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:247 +msgid "Problems delete queue" +msgstr "Error al borrar la cola" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:263 +msgid "Move Agents" +msgstr "Mover agentes" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:279 +msgid "Source Server" +msgstr "Servidor de origen" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:281 +msgid "Destination Server" +msgstr "Servidor de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:313 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:137 +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/include/functions_autoprovision.php:450 +#: ../../enterprise/godmode/agentes/collections.agents.php:55 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:110 +#: ../../enterprise/godmode/policies/policy_queue.php:459 +#: ../../enterprise/godmode/policies/policies.php:433 +#: ../../enterprise/godmode/policies/policies.php:553 +#: ../../enterprise/godmode/policies/policy_agents.php:532 +#: ../../enterprise/godmode/policies/policy_agents.php:651 +#: ../../enterprise/godmode/policies/policy.php:61 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../enterprise/include/functions_cron.php:210 +#: ../../enterprise/include/functions_tasklist.php:278 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/include/functions_reporting.php:6835 +#: ../../enterprise/include/functions_policies.php:3800 +#: ../../enterprise/operation/services/services.service_map.php:179 +#: ../../extensions/agents_alerts.php:205 +#: ../../extensions/agents_alerts.php:390 +#: ../../extensions/agents_modules.php:416 +#: ../../extensions/agents_modules.php:693 +#: ../../godmode/massive/massive_standby_alerts.php:164 +#: ../../godmode/massive/massive_delete_modules.php:511 +#: ../../godmode/massive/massive_add_alerts.php:203 +#: ../../godmode/massive/massive_delete_agents.php:172 +#: ../../godmode/massive/massive_edit_plugins.php:345 +#: ../../godmode/massive/massive_enable_disable_alerts.php:151 +#: ../../godmode/massive/massive_edit_agents.php:457 +#: ../../godmode/massive/massive_delete_alerts.php:278 +#: ../../godmode/massive/massive_edit_modules.php:483 +#: ../../godmode/alerts/alert_list.list.php:68 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1420 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1482 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1602 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +#: ../../mobile/include/functions_web.php:21 +#: ../../mobile/operation/agents.php:190 ../../mobile/operation/home.php:72 +#: ../../mobile/operation/agent.php:160 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:1890 +#: ../../include/functions_reporting_html.php:2344 +#: ../../include/functions_cron.php:557 +#: ../../include/class/Diagnostics.class.php:1152 +#: ../../include/class/Diagnostics.class.php:1156 +#: ../../include/class/Diagnostics.class.php:1160 +#: ../../include/class/Diagnostics.class.php:1164 +#: ../../include/class/NetworkMap.class.php:3214 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:333 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:336 +#: ../../include/lib/Dashboard/Widgets/service_map.php:341 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:79 +#: ../../operation/agentes/group_view.php:154 +#: ../../operation/agentes/group_view.php:187 +msgid "Agents" +msgstr "Agentes" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:315 +msgid "Agents to move" +msgstr "Agentes para desplazar" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:336 +msgid "Add agents to destination server" +msgstr "Añadir agentes al servidor de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:344 +msgid "Remove agents to doesn't move to destination server" +msgstr "Si eliminas los agentes, no se desplazarán al servidor de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +msgid "Discard history data" +msgstr "Descartar datos de histórico" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:375 +msgid "Agents do not exist in target server." +msgstr "Los agentes no existen en el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:376 +msgid "Check group is synchronized with target server." +msgstr "Comprueba que el grupo está sincronizado con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:377 +msgid "All policies needed are synchronized with target server." +msgstr "" +"Todas las políticas necesarias se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:378 +msgid "All remote plugins needed are synchronized with target server." +msgstr "" +"Todos los plugins necesarios se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:379 +msgid "All collections needed are syncronized with target server." +msgstr "" +"Todas las colecciones necesarias se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:380 +msgid "" +"All remote inventory definitions needed are syncronized with target server." +msgstr "" +"Todos los inventarios necesarios se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:381 +msgid "" +"All alert templates definitions needed are syncronized with target server." +msgstr "" +"Todas las definiciones de modelos de alertas necesarias se sincronizaron con " +"el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:382 +msgid "All alert actions needed are syncronized with target server." +msgstr "" +"Todas las acciones de alertas necesarias se sincronizaron con el servidor de " +"destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:383 +msgid "Agents conf does not exists in target server." +msgstr "La configuración del agente no existe en el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:384 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "Ambos servidores %s deben estar en la misma versión" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 +msgid "Check target server ip address is set" +msgstr "Comprueba que la IP del servidor de destino está configurada." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:395 +msgid "Move" +msgstr "Mover" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:409 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:105 +#: ../../enterprise/include/functions_inventory.php:76 +#: ../../include/functions_events.php:238 +msgid "Agent alias" +msgstr "Alias del agente" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:410 +msgid "Source node" +msgstr "Nodo de origen" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:411 +msgid "Target node" +msgstr "Nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:187 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/alerts/alert_events.php:616 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:399 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:507 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:736 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1042 +#: ../../godmode/snmpconsole/snmp_alert.php:1126 +#: ../../godmode/alerts/alert_list.list.php:120 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:945 +#: ../../godmode/alerts/alert_view.php:97 +#: ../../godmode/setup/setup_integria.php:304 +#: ../../godmode/setup/setup_integria.php:427 +#: ../../include/functions_reporting_html.php:4065 +#: ../../include/functions_events.php:4255 +#: ../../operation/agentes/estado_generalagente.php:586 +#: ../../operation/incidents/incident_detail.php:347 +#: ../../operation/incidents/integriaims_export_csv.php:93 +#: ../../operation/incidents/configure_integriaims_incident.php:272 +#: ../../operation/incidents/incident.php:309 +#: ../../operation/incidents/incident.php:422 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:376 +#: ../../operation/incidents/list_integriaims_incidents.php:144 +msgid "Priority" +msgstr "Prioridad" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +#: ../../enterprise/godmode/alerts/alert_events.php:120 +#: ../../enterprise/godmode/alerts/alert_events.php:124 +#: ../../enterprise/godmode/alerts/alert_events.php:141 +#: ../../enterprise/godmode/alerts/alert_events.php:145 +#: ../../enterprise/godmode/alerts/alert_events.php:162 +#: ../../enterprise/godmode/alerts/alert_events.php:166 +#: ../../enterprise/godmode/setup/setup_history.php:66 +#: ../../godmode/alerts/configure_alert_template.php:178 +#: ../../godmode/alerts/configure_alert_template.php:182 +#: ../../godmode/alerts/configure_alert_template.php:199 +#: ../../godmode/alerts/configure_alert_template.php:203 +#: ../../godmode/alerts/configure_alert_template.php:220 +#: ../../godmode/alerts/configure_alert_template.php:224 +#: ../../include/functions_config.php:1458 +msgid "Step" +msgstr "Paso" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 +msgid "Active db only" +msgstr "BD activa solamente" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:416 +#: ../../enterprise/meta/advanced/collections.php:324 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 +#: ../../enterprise/meta/include/functions_autoprovision.php:451 +#: ../../enterprise/meta/include/functions_alerts_meta.php:125 +#: ../../enterprise/meta/include/functions_alerts_meta.php:144 +#: ../../enterprise/extensions/backup/main.php:136 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:374 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:321 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:273 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:366 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:83 +#: ../../enterprise/godmode/agentes/inventory_manager.php:221 +#: ../../enterprise/godmode/agentes/collections.php:326 +#: ../../enterprise/godmode/policies/policy_alerts.php:287 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:256 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:343 +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 +#: ../../enterprise/godmode/setup/setup_skins.php:122 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2234 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2393 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3355 +#: ../../enterprise/operation/agentes/transactional_map.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:150 +#: ../../enterprise/operation/services/services.list.php:439 +#: ../../extensions/agents_alerts.php:207 +#: ../../extensions/agents_alerts.php:225 +#: ../../godmode/groups/group_list.php:691 +#: ../../godmode/agentes/modificar_agente.php:497 +#: ../../godmode/agentes/planned_downtime.editor.php:1042 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:221 +#: ../../godmode/alerts/alert_list.list.php:114 +#: ../../godmode/alerts/alert_list.list.php:459 +#: ../../godmode/alerts/alert_commands.php:416 +#: ../../godmode/alerts/alert_view.php:347 +#: ../../godmode/alerts/alert_list.builder.php:95 +#: ../../godmode/events/event_responses.list.php:53 +#: ../../godmode/tag/tag.php:230 ../../godmode/category/category.php:112 +#: ../../include/functions_reporting_html.php:2402 +#: ../../include/functions_cron.php:460 +#: ../../include/functions_treeview.php:417 +#: ../../include/functions_filemanager.php:622 +msgid "Actions" +msgstr "Acciones" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:452 +msgid "Creating modules in target node" +msgstr "Creando módulos en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:456 +msgid "Disabling agent in source node and enabling in target one" +msgstr "" +"Deshabilitando el agente en el nodo de origen y habilitándolo en el nodo de " +"destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:460 +msgid "Transferring data" +msgstr "Transfiriendo datos" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 +msgid "Creating agent in target node" +msgstr "Creando agente en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:471 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1578 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1583 +#: ../../enterprise/include/class/DatabaseHA.class.php:207 +#: ../../enterprise/include/class/AgentRepository.class.php:832 +#: ../../enterprise/include/class/AgentRepository.class.php:837 +#: ../../enterprise/include/class/Omnishell.class.php:1029 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/transactional_map.php:318 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:450 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 +#: ../../include/ajax/snmp_browser.ajax.php:219 +#: ../../include/class/ConfigPEN.class.php:738 +#: ../../include/class/ConfigPEN.class.php:743 +#: ../../include/class/HelpFeedBack.class.php:353 +#: ../../include/class/Diagnostics.class.php:2077 +#: ../../include/class/CredentialStore.class.php:1065 +#: ../../include/class/CredentialStore.class.php:1070 +#: ../../include/class/ModuleTemplates.class.php:1319 +#: ../../include/class/ModuleTemplates.class.php:1324 +#: ../../include/class/AgentWizard.class.php:687 +#: ../../include/class/AgentWizard.class.php:692 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:597 +#: ../../operation/visual_console/view.php:602 +msgid "Failed" +msgstr "Fallo" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:481 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:414 +#: ../../enterprise/include/class/Omnishell.class.php:362 +msgid "Finished" +msgstr "Terminado" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:476 +msgid "Completed" +msgstr "Completado" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:481 +msgid "Queued" +msgstr "En espera" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:486 +#: ../../enterprise/extensions/backup/main.php:170 +#: ../../enterprise/operation/agentes/transactional_map.php:241 +#: ../../godmode/agentes/planned_downtime.list.php:404 +#: ../../godmode/agentes/planned_downtime.list.php:470 +msgid "Running" +msgstr "Ejecutándose" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 +msgid "checking migration requirements" +msgstr "Comprobando requisitos de migración" + +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:138 +msgid "Server deleted successfully" +msgstr "Servidor eliminado correctamente" + +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:140 +msgid "There was a problem deleting the server" +msgstr "Hubo un problema al eliminar el servidor" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:126 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "Traducción añadida correctamente" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:128 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "No se ha podido crear la cadena de traducción" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:141 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "Traducción actualizada correctamente" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:143 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +msgstr "No se ha podido actualizar la cadena de traducción" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:171 +#: ../../enterprise/extensions/translate_string.php:302 +#: ../../godmode/users/configure_user.php:712 +#: ../../operation/users/user_edit.php:306 +msgid "Language" +msgstr "Idioma" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:183 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:244 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:341 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:508 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:579 +#: ../../enterprise/meta/agentsearch.php:89 +#: ../../enterprise/meta/general/main_header.php:687 +#: ../../enterprise/meta/general/main_header.php:689 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:514 +#: ../../enterprise/godmode/modules/local_components.php:539 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:307 +#: ../../enterprise/godmode/policies/policy_collections.php:234 +#: ../../enterprise/godmode/policies/policy_agents.php:695 +#: ../../enterprise/godmode/policies/policy_agents.php:700 +#: ../../enterprise/godmode/alerts/alert_events_list.php:423 +#: ../../enterprise/godmode/alerts/alert_events_list.php:434 +#: ../../enterprise/operation/agentes/tag_view.php:198 +#: ../../enterprise/operation/agentes/agent_inventory.php:109 +#: ../../enterprise/operation/agentes/agent_inventory.php:114 +#: ../../enterprise/operation/log/log_viewer.php:382 +#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../enterprise/operation/inventory/inventory.php:196 +#: ../../enterprise/operation/inventory/inventory.php:237 +#: ../../enterprise/operation/services/services.treeview_services.php:118 +#: ../../enterprise/operation/services/services.list.php:184 +#: ../../enterprise/operation/services/services.list.php:262 +#: ../../enterprise/operation/services/services.table_services.php:163 +#: ../../enterprise/operation/services/services.table_services.php:241 +#: ../../extensions/module_groups.php:270 +#: ../../godmode/modules/manage_network_components.php:599 +#: ../../godmode/groups/group_list.php:631 +#: ../../godmode/groups/group_list.php:634 +#: ../../godmode/users/user_list.php:270 ../../godmode/users/user_list.php:280 +#: ../../godmode/agentes/modificar_agente.php:208 +#: ../../godmode/agentes/modificar_agente.php:214 +#: ../../godmode/agentes/planned_downtime.list.php:144 +#: ../../godmode/agentes/planned_downtime.list.php:183 +#: ../../godmode/agentes/module_manager.php:44 +#: ../../godmode/admin_access_logs.php:69 +#: ../../godmode/alerts/alert_actions.php:188 +#: ../../godmode/alerts/alert_actions.php:201 +#: ../../godmode/alerts/alert_templates.php:297 +#: ../../godmode/alerts/alert_templates.php:308 +#: ../../godmode/reporting/map_builder.php:302 +#: ../../godmode/reporting/map_builder.php:323 +#: ../../godmode/reporting/graphs.php:178 +#: ../../godmode/reporting/visual_console_favorite.php:108 +#: ../../godmode/reporting/visual_console_favorite.php:138 +#: ../../godmode/reporting/reporting_builder.item_editor.php:954 +#: ../../godmode/reporting/reporting_builder.php:681 +#: ../../godmode/module_library/module_library_view.php:84 +#: ../../godmode/module_library/module_library_view.php:94 +#: ../../include/functions_snmp.php:358 +#: ../../include/functions_snmp_browser.php:766 +#: ../../include/functions_snmp_browser.php:1177 +#: ../../operation/search_results.php:191 +#: ../../operation/agentes/estado_agente.php:231 +#: ../../operation/agentes/estado_agente.php:255 +#: ../../operation/agentes/status_monitor.php:444 +#: ../../operation/agentes/alerts_status.functions.php:178 +#: ../../operation/agentes/alerts_status.functions.php:187 +#: ../../operation/incidents/incident.php:368 +#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "Buscar" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:184 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:303 +#: ../../enterprise/godmode/policies/policies.php:352 +#: ../../enterprise/godmode/policies/policy_collections.php:228 +#: ../../godmode/admin_access_logs.php:70 +msgid "Free text for search (*)" +msgstr "Texto libre para buscar (*)" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:203 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "Cadena original" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:204 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "Traducción en el idioma seleccionado" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:205 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "Personalizar traducción" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:598 +#: ../../enterprise/godmode/setup/setup_acl.php:338 +#: ../../enterprise/godmode/setup/setup_acl.php:632 +#: ../../enterprise/include/functions_cron.php:546 +#: ../../enterprise/include/functions_backup.php:523 +#: ../../enterprise/include/functions_backup.php:524 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:747 +#: ../../include/functions_html.php:1208 ../../include/functions_html.php:1209 +#: ../../include/functions_html.php:1313 ../../include/functions_html.php:1314 +#: ../../include/functions_html.php:1474 ../../include/functions_html.php:1475 +#: ../../include/class/CredentialStore.class.php:869 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Custom" +msgstr "Personalizado" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "Dirección del nodo por defecto" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "Este será el valor devuelto por la API" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "Importar archivo" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "Puerta de enlace de la IP" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "IMEI" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3082 +#: ../../include/class/NetworkMap.class.php:3083 +msgid "Relations" +msgstr "Relaciones" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "Relación" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "Dirección del nodo" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "Insertar relación" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "Mostrar lista de relaciones" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:615 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:363 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:532 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:670 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2268 +#: ../../enterprise/include/functions_reporting_csv.php:959 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/operation/services/services.service.php:171 +#: ../../enterprise/operation/services/services.list.php:432 +#: ../../godmode/agentes/module_manager_editor_common.php:1130 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:102 +#: ../../godmode/massive/massive_edit_modules.php:812 +#: ../../godmode/alerts/configure_alert_template.php:730 +#: ../../godmode/setup/setup_visuals.php:1207 +#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1288 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2078 +#: ../../godmode/reporting/visual_console_builder.wizard.php:339 +#: ../../include/functions_visual_map_editor.php:625 +#: ../../include/functions_reporting_html.php:856 +#: ../../include/functions_reporting_html.php:1785 +#: ../../include/functions_reporting_html.php:3665 +#: ../../include/functions_reporting_html.php:4183 +#: ../../include/ajax/events.php:1690 ../../include/functions_graph.php:5285 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:499 +#: ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:526 +msgid "Value" +msgstr "Valor" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "Mostrar filtros" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +msgstr "Dirección del nodo" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:550 +#: ../../enterprise/extensions/ipam/ipam_list.php:145 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:375 +#: ../../enterprise/godmode/policies/policy_alerts.php:510 +#: ../../enterprise/godmode/policies/policy_modules.php:1448 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../enterprise/godmode/alerts/alert_events.php:630 +#: ../../enterprise/godmode/alerts/alert_events.php:649 +#: ../../enterprise/godmode/alerts/alert_events_list.php:503 +#: ../../enterprise/godmode/reporting/graph_template_list.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3367 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3390 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:389 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2517 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 +#: ../../enterprise/include/functions_services.php:2494 +#: ../../enterprise/operation/agentes/policy_view.php:209 +#: ../../extensions/agents_alerts.php:520 +#: ../../godmode/modules/manage_nc_groups.php:232 +#: ../../godmode/modules/manage_network_components.php:672 +#: ../../godmode/modules/manage_network_templates.php:236 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/planned_downtime.editor.php:1126 +#: ../../godmode/agentes/module_manager.php:654 +#: ../../godmode/netflow/nf_item_list.php:180 +#: ../../godmode/netflow/nf_edit.php:148 +#: ../../godmode/snmpconsole/snmp_alert.php:1287 +#: ../../godmode/snmpconsole/snmp_alert.php:1364 +#: ../../godmode/snmpconsole/snmp_filters.php:260 +#: ../../godmode/massive/massive_operations.php:340 +#: ../../godmode/massive/massive_standby_alerts.php:211 +#: ../../godmode/massive/massive_delete_action_alerts.php:224 +#: ../../godmode/massive/massive_enable_disable_alerts.php:199 +#: ../../godmode/massive/massive_add_action_alerts.php:210 +#: ../../godmode/admin_access_logs.php:82 +#: ../../godmode/admin_access_logs.php:197 +#: ../../godmode/alerts/alert_list.list.php:714 +#: ../../godmode/alerts/alert_view.php:415 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2897 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3299 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3320 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:126 +#: ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:2403 +#: ../../include/functions_reporting_html.php:4689 +#: ../../include/functions.php:2889 ../../include/ajax/alert_list.ajax.php:280 +#: ../../include/ajax/alert_list.ajax.php:305 +#: ../../include/ajax/alert_list.ajax.php:472 +#: ../../include/functions_profile.php:216 +#: ../../include/class/ModuleTemplates.class.php:817 +#: ../../include/functions_events.php:6130 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.php:524 +#: ../../operation/agentes/alerts_status.php:559 +#: ../../operation/agentes/alerts_status.php:594 +#: ../../operation/agentes/alerts_status.php:626 +#: ../../operation/agentes/alerts_status.functions.php:110 +#: ../../operation/snmpconsole/snmp_view.php:836 +#: ../../operation/snmpconsole/snmp_view.php:1185 +#: ../../operation/search_alerts.php:36 +#: ../../operation/events/events.build_table.php:362 +#: ../../general/logon_ok.php:246 +msgid "Action" +msgstr "Acción" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "Puerta de enlace" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "Aún no hay relaciones" + +#: ../../enterprise/meta/advanced/metasetup.password.php:70 +msgid "Passwords" +msgstr "Contraseñas" + +#: ../../enterprise/meta/advanced/metasetup.password.php:76 +#: ../../enterprise/meta/include/functions_meta.php:567 +#: ../../enterprise/godmode/setup/setup.php:480 +#: ../../include/functions_config.php:473 +msgid "Enable password policy" +msgstr "Habilitar política de contraseñas" + +#: ../../enterprise/meta/advanced/metasetup.password.php:77 +#: ../../enterprise/meta/advanced/metasetup.password.php:119 +#: ../../enterprise/meta/advanced/metasetup.password.php:124 +#: ../../enterprise/meta/advanced/metasetup.password.php:130 +#: ../../enterprise/meta/advanced/metasetup.password.php:136 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/advanced/metasetup.setup.php:146 +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:217 +#: ../../enterprise/meta/advanced/metasetup.setup.php:275 +#: ../../enterprise/meta/advanced/metasetup.setup.php:286 +#: ../../enterprise/meta/advanced/metasetup.performance.php:80 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:439 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:508 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:848 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:876 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:330 +#: ../../enterprise/godmode/setup/setup_auth.php:372 +#: ../../enterprise/godmode/setup/setup_auth.php:1102 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:176 +#: ../../enterprise/godmode/reporting/visual_console_template.php:214 +#: ../../enterprise/include/functions_cron.php:718 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2141 +#: ../../godmode/update_manager/update_manager.setup.php:261 +#: ../../godmode/users/configure_user.php:882 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:687 +#: ../../godmode/massive/massive_edit_agents.php:696 +#: ../../godmode/massive/massive_edit_modules.php:588 +#: ../../godmode/massive/massive_edit_modules.php:657 +#: ../../godmode/massive/massive_edit_modules.php:697 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1009 +#: ../../godmode/massive/massive_edit_modules.php:1037 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/reporting/reporting_builder.main.php:172 +#: ../../godmode/reporting/reporting_builder.php:965 +#: ../../godmode/reporting/visual_console_builder.wizard.php:400 +#: ../../godmode/reporting/visual_console_builder.wizard.php:487 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_profile.php:255 ../../include/functions_snmp.php:390 +#: ../../operation/users/user_edit.php:302 +#: ../../operation/netflow/nf_live_view.php:452 +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Yes" +msgstr "Sí" + +#: ../../enterprise/meta/advanced/metasetup.password.php:78 +#: ../../enterprise/meta/advanced/metasetup.password.php:120 +#: ../../enterprise/meta/advanced/metasetup.password.php:125 +#: ../../enterprise/meta/advanced/metasetup.password.php:131 +#: ../../enterprise/meta/advanced/metasetup.password.php:137 +#: ../../enterprise/meta/advanced/metasetup.password.php:141 +#: ../../enterprise/meta/advanced/metasetup.password.php:145 +#: ../../enterprise/meta/advanced/metasetup.setup.php:143 +#: ../../enterprise/meta/advanced/metasetup.setup.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:207 +#: ../../enterprise/meta/advanced/metasetup.setup.php:214 +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +#: ../../enterprise/meta/advanced/metasetup.setup.php:276 +#: ../../enterprise/meta/advanced/metasetup.setup.php:296 +#: ../../enterprise/meta/advanced/metasetup.performance.php:81 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:509 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:549 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:877 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:333 +#: ../../enterprise/godmode/setup/setup_auth.php:375 +#: ../../enterprise/godmode/setup/setup_auth.php:1105 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:427 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:178 +#: ../../enterprise/godmode/reporting/visual_console_template.php:214 +#: ../../enterprise/include/functions_cron.php:717 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2141 +#: ../../godmode/update_manager/update_manager.setup.php:262 +#: ../../godmode/users/configure_user.php:883 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:538 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:697 +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/massive/massive_edit_modules.php:658 +#: ../../godmode/massive/massive_edit_modules.php:698 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1010 +#: ../../godmode/massive/massive_edit_modules.php:1038 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/alerts/alert_view.php:384 ../../godmode/setup/news.php:277 +#: ../../godmode/reporting/reporting_builder.main.php:179 +#: ../../godmode/reporting/reporting_builder.php:967 +#: ../../godmode/reporting/visual_console_builder.wizard.php:410 +#: ../../godmode/reporting/visual_console_builder.wizard.php:488 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 +#: ../../include/functions_profile.php:255 ../../include/functions_snmp.php:382 +#: ../../include/functions_events.php:4550 +#: ../../include/functions_events.php:4555 +#: ../../operation/users/user_edit.php:303 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/snmpconsole/snmp_view.php:629 +msgid "No" +msgstr "No" + +#: ../../enterprise/meta/advanced/metasetup.password.php:98 +#: ../../enterprise/meta/include/functions_meta.php:576 +#: ../../enterprise/godmode/setup/setup.php:489 +#: ../../include/functions_config.php:477 +msgid "Min. size password" +msgstr "Contraseña con tamaño mínimo" + +#: ../../enterprise/meta/advanced/metasetup.password.php:99 +#: ../../enterprise/godmode/setup/setup.php:497 +msgid " Caracters" +msgstr " Caracteres" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/meta/include/functions_meta.php:603 +#: ../../enterprise/godmode/setup/setup.php:518 +#: ../../include/functions_config.php:481 +msgid "Password expiration" +msgstr "Expiración de contraseña" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +msgid "Set 0 if never expire." +msgstr "Introduce 0 para que nunca expire" + +#: ../../enterprise/meta/advanced/metasetup.password.php:103 +#: ../../enterprise/godmode/setup/setup.php:526 +msgid " Days" +msgstr " Días" + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/meta/include/functions_meta.php:621 +#: ../../enterprise/godmode/setup/setup.php:538 +#: ../../include/functions_config.php:489 +msgid "User blocked if login fails" +msgstr "Usuario bloqueado si la identificación falla" + +#: ../../enterprise/meta/advanced/metasetup.password.php:107 +#: ../../enterprise/godmode/setup/setup.php:546 +msgid " Minutes" +msgstr " Minutos" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/meta/include/functions_meta.php:630 +#: ../../enterprise/godmode/setup/setup.php:549 +#: ../../include/functions_config.php:493 +msgid "Number of failed login attempts" +msgstr "Número de intentos de identificación fallidos" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +msgid "Two attempts minimum" +msgstr "2 intentos mínimo" + +#: ../../enterprise/meta/advanced/metasetup.password.php:111 +#: ../../enterprise/godmode/setup/setup.php:557 +msgid " Attempts" +msgstr " Intentos" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/meta/include/functions_meta.php:650 +#: ../../enterprise/godmode/setup/setup.php:578 +#: ../../include/functions_config.php:513 +msgid "Compare previous password" +msgstr "Comparar la contraseña anterior" + +#: ../../enterprise/meta/advanced/metasetup.password.php:118 +#: ../../enterprise/meta/include/functions_meta.php:639 +#: ../../enterprise/godmode/setup/setup.php:569 +#: ../../include/functions_config.php:509 +msgid "Enable password history" +msgstr "Activar histórico de contraseñas" + +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/include/functions_meta.php:660 +#: ../../enterprise/godmode/setup/setup.php:560 +#: ../../include/functions_config.php:505 +msgid "Apply password policy to admin users" +msgstr "Aplicar la política de contraseñas a los usuarios administradores" + +#: ../../enterprise/meta/advanced/metasetup.password.php:129 +#: ../../enterprise/meta/include/functions_meta.php:612 +#: ../../enterprise/godmode/setup/setup.php:529 +#: ../../include/functions_config.php:485 +msgid "Force change password on first login" +msgstr "Forzar cambio de contraseña en el primer inicio de sesión" + +#: ../../enterprise/meta/advanced/metasetup.password.php:135 +#: ../../enterprise/meta/include/functions_meta.php:585 +#: ../../enterprise/godmode/setup/setup.php:500 +#: ../../include/functions_config.php:497 +msgid "Password must have numbers" +msgstr "La contraseña debe contener números." + +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/include/functions_meta.php:594 +#: ../../enterprise/godmode/setup/setup.php:509 +#: ../../include/functions_config.php:501 +msgid "Password must have symbols" +msgstr "La contraseña debe contener símbolos." + +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/include/functions_meta.php:670 +#: ../../enterprise/godmode/setup/setup.php:590 +#: ../../include/functions_config.php:517 +msgid "Activate reset password" +msgstr "Activar reseteo de contraseña" + +#: ../../enterprise/meta/advanced/agents_setup.php:34 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/advanced/synchronizing.php:32 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:38 +#: ../../enterprise/meta/monitoring/group_view.php:34 +#: ../../enterprise/meta/monitoring/tactical.php:36 +#: ../../enterprise/meta/index.php:784 ../../enterprise/meta/agentsearch.php:29 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../godmode/netflow/nf_item_list.php:51 +#: ../../godmode/netflow/nf_edit.php:53 +#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../operation/agentes/ver_agente.php:1162 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Main" +msgstr "Principal" + +#: ../../enterprise/meta/advanced/agents_setup.php:38 +msgid "Propagation" +msgstr "Propagación" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "No se pudo crear una regla sin nombre." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "Error al crear la regla de aprovisionamiento" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "Error al actualizar la regla de aprovisionamiento" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "Error al borrar la regla de aprovisionamiento" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "Error al mover la regla de aprovisionamiento" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:170 +msgid "Create rule" +msgstr "Crear regla" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "Editar regla" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 +#: ../../godmode/update_manager/update_manager.setup.php:127 +#: ../../godmode/update_manager/update_manager.setup.php:178 +msgid "Succesful Update the url config vars." +msgstr "Variables de configuración de la URL actualizadas correctamente" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:89 +#: ../../godmode/update_manager/update_manager.setup.php:128 +#: ../../godmode/update_manager/update_manager.setup.php:179 +msgid "Unsuccesful Update the url config vars." +msgstr "Error al actualizar las variables de configuración de la URL" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:96 +#: ../../godmode/setup/setup_general.php:359 +msgid "Mail configuration" +msgstr "Configuración de email" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:101 +#: ../../include/functions_config.php:335 +msgid "From dir" +msgstr "Desde dir" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:364 +#: ../../include/functions_config.php:339 +msgid "From name" +msgstr "Desde nombre" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:107 +#: ../../include/functions_config.php:331 +msgid "Server SMTP" +msgstr "Servidor SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:110 +#: ../../include/functions_config.php:343 +msgid "Port SMTP" +msgstr "Puerto SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:113 +#: ../../godmode/setup/setup_general.php:376 +#: ../../include/functions_config.php:351 +msgid "Email user" +msgstr "Usuario de email" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:116 +#: ../../godmode/setup/setup_general.php:379 +#: ../../include/functions_config.php:355 +msgid "Email password" +msgstr "Contraseña de email" + +#: ../../enterprise/meta/advanced/metasetup.php:49 +msgid "Consoles Setup" +msgstr "Configuración de consolas" + +#: ../../enterprise/meta/advanced/metasetup.php:57 +#: ../../enterprise/meta/advanced/metasetup.php:179 +msgid "General setup" +msgstr "Configuración general" + +#: ../../enterprise/meta/advanced/metasetup.php:65 +#: ../../enterprise/meta/advanced/metasetup.php:182 +msgid "Passwords setup" +msgstr "Configuración de contraseñas" + +#: ../../enterprise/meta/advanced/metasetup.php:74 +#: ../../enterprise/meta/advanced/metasetup.php:186 ../../godmode/menu.php:314 +#: ../../godmode/setup/setup.php:98 ../../godmode/setup/setup.php:169 +msgid "Authentication" +msgstr "Autentificación" + +#: ../../enterprise/meta/advanced/metasetup.php:84 +#: ../../enterprise/meta/advanced/metasetup.php:190 +msgid "Visual setup" +msgstr "Configuración visual" + +#: ../../enterprise/meta/advanced/metasetup.php:92 +#: ../../enterprise/meta/advanced/metasetup.php:194 +msgid "Performance setup" +msgstr "Configuración del rendimiento" + +#: ../../enterprise/meta/advanced/metasetup.php:100 +#: ../../enterprise/meta/advanced/metasetup.php:198 ../../godmode/menu.php:378 +#: ../../godmode/setup/file_manager.php:28 +msgid "File manager" +msgstr "Gestor de archivos" + +#: ../../enterprise/meta/advanced/metasetup.php:108 +#: ../../enterprise/meta/advanced/metasetup.php:202 +msgid "Strings translation" +msgstr "Traducción de cadenas" + +#: ../../enterprise/meta/advanced/metasetup.php:116 +#: ../../enterprise/meta/advanced/metasetup.php:206 +msgid "Mail" +msgstr "Correo electrónico" + +#: ../../enterprise/meta/advanced/metasetup.php:128 +msgid "Relations rules" +msgstr "Normas de relación" + +#: ../../enterprise/meta/advanced/metasetup.php:141 +msgid "Options Update Manager" +msgstr "Opciones del Administrador de actualizaciones" + +#: ../../enterprise/meta/advanced/metasetup.php:149 +#: ../../enterprise/meta/advanced/metasetup.php:218 +msgid "Offline Update Manager" +msgstr "Administrador de actualizaciones offline" + +#: ../../enterprise/meta/advanced/metasetup.php:157 +#: ../../enterprise/meta/advanced/metasetup.php:222 +msgid "Online Update Manager" +msgstr "Administrador de actualizaciones online" + +#: ../../enterprise/meta/advanced/metasetup.php:174 +msgid "Consoles setup" +msgstr "Configuración de las consolas" + +#: ../../enterprise/meta/advanced/metasetup.php:210 +msgid "Relations Rules" +msgstr "Normas de relación" + +#: ../../enterprise/meta/advanced/metasetup.php:214 +msgid "Online Update Options" +msgstr "Opciones de actualización online" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:41 +#: ../../enterprise/meta/advanced/metasetup.auth.php:24 +msgid "" +"Be aware that group synchronization can change the group configuration of " +"the node" +msgstr "" +"Tenga en cuenta que la sincronización de grupos puede cambiar la " +"configuración de grupo del nodo" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:77 +#: ../../enterprise/meta/advanced/synchronizing.group.php:78 +#: ../../enterprise/meta/advanced/synchronizing.group.php:97 +#: ../../enterprise/meta/advanced/synchronizing.group.php:98 +msgid "Open for more details" +msgstr "Abrir para obtener más detalles" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:86 +#, php-format +msgid "Error creating %s groups" +msgstr "Error al crear %s grupos" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:106 +#, php-format +msgid "Error updating %s groups" +msgstr "Error al actualizar %s grupos" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:117 +#: ../../enterprise/meta/advanced/synchronizing.group.php:118 +msgid "Open for more details in creation" +msgstr "Abrir para obtener más detalles sobre la creación" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:128 +#: ../../enterprise/meta/advanced/synchronizing.group.php:129 +msgid "Open for more details in update" +msgstr "Abrir para obtener más detalles sobre la actualización" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:137 +#, php-format +msgid "Error creating/updating %s/%s groups" +msgstr "Error al crear/actualizar grupos %s/%s" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:149 +#, php-format +msgid "Created %s / Updated %s groups (" +msgstr "%s grupos creados / %s grupos actualizados" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:158 +msgid "None update or create group" +msgstr "Ninguna actualización o creación de grupo" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:170 +msgid "Synchronizing Groups" +msgstr "Sincronizar grupos" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:188 +#: ../../enterprise/godmode/policies/policy_agents.php:554 +#: ../../enterprise/godmode/setup/setup_auth.php:225 +#: ../../enterprise/godmode/setup/setup_auth.php:492 +#: ../../enterprise/godmode/setup/setup_auth.php:1224 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:298 +#: ../../godmode/reporting/visual_console_builder.wizard.php:382 +#: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 +#: ../../include/functions_networkmap.php:1283 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:216 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:270 +#: ../../include/lib/Dashboard/Widgets/events_list.php:357 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:282 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:326 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:282 +#: ../../operation/tree.php:65 +#: ../../operation/agentes/pandora_networkmap.php:698 +msgid "Groups" +msgstr "Grupos" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:311 +#, php-format +msgid "Error updating user %s" +msgstr "Error al actualizar usuario %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:315 +#, php-format +msgid "Updated user %s" +msgstr "Usuario actualizado %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:327 +#, php-format +msgid "Error creating user %s" +msgstr "Error al crear usuario %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:331 +#, php-format +msgid "Created user %s" +msgstr "Usuario creado %s" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:533 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements " +"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d)" +msgstr "" +"Hay grupos que no existen en el nodo. Los siguientes grupos de " +"elementos/perfiles/perfiles de usuario se crearon/actualizaron correctamente " +"(%d/%d/%d)." + +#: ../../enterprise/meta/advanced/synchronizing.user.php:542 +#, 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)" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:554 +#, 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)." + +#: ../../enterprise/meta/advanced/synchronizing.user.php:576 +msgid "Synchronizing Users" +msgstr "Sincronizar usuarios" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:586 +#: ../../godmode/massive/massive_delete_profiles.php:110 +#: ../../godmode/massive/massive_add_profiles.php:103 +#: ../../include/functions_reporting.php:9290 +#: ../../operation/search_results.php:92 +msgid "Users" +msgstr "Usuarios" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:598 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/include/functions_ui.php:92 +msgid "Target" +msgstr "Destino" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:608 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:336 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:574 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 +#: ../../enterprise/meta/general/main_header.php:556 +#: ../../enterprise/godmode/policies/policy_alerts.php:582 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:387 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:198 +#: ../../enterprise/godmode/alerts/alert_events.php:636 +#: ../../enterprise/godmode/services/services.service.php:514 +#: ../../enterprise/godmode/services/services.service.php:525 +#: ../../enterprise/godmode/services/services.service.php:544 +#: ../../extensions/agents_alerts.php:282 ../../extensions/insert_data.php:183 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:146 +#: ../../godmode/massive/massive_copy_modules.php:122 +#: ../../godmode/massive/massive_delete_modules.php:310 +#: ../../godmode/massive/massive_delete_modules.php:445 +#: ../../godmode/massive/massive_add_alerts.php:255 +#: ../../godmode/massive/massive_delete_alerts.php:247 +#: ../../godmode/massive/massive_edit_modules.php:291 +#: ../../godmode/massive/massive_edit_modules.php:404 +#: ../../godmode/alerts/alert_list.builder.php:81 +#: ../../godmode/alerts/alert_list.builder.php:148 +#: ../../godmode/setup/setup_integria.php:292 +#: ../../godmode/setup/setup_integria.php:310 +#: ../../godmode/setup/setup_integria.php:339 +#: ../../godmode/setup/setup_integria.php:357 +#: ../../godmode/setup/setup_integria.php:415 +#: ../../godmode/setup/setup_integria.php:433 +#: ../../godmode/setup/setup_integria.php:462 +#: ../../godmode/setup/setup_integria.php:480 +#: ../../operation/incidents/configure_integriaims_incident.php:216 +#: ../../operation/incidents/configure_integriaims_incident.php:232 +#: ../../operation/incidents/configure_integriaims_incident.php:278 +#: ../../general/header.php:261 +msgid "Select" +msgstr "Seleccionar" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 +msgid "Profile mode" +msgstr "Modo de perfil" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 +msgid "Profile synchronization mode." +msgstr "Modo de perfil de sincronización" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "New profile" +msgstr "Nuevo perfil" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +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" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "Copy profile" +msgstr "Copiar perfil" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +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." + +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 +msgid "Create groups if not exist" +msgstr "Crear grupos si no existen" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 +msgid "Create groups assigned to user profile if not exist in node" +msgstr "Crear grupos asignados al perfil de usuario si no existen en el nodo" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:224 +#: ../../enterprise/godmode/setup/setup_auth.php:491 +#: ../../enterprise/godmode/setup/setup_auth.php:1223 +#: ../../godmode/users/profile_list.php:276 ../../godmode/menu.php:133 +msgid "Profiles" +msgstr "Perfiles" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:178 +#: ../../enterprise/godmode/policies/policy.php:220 +#: ../../enterprise/include/functions_enterprise_api.php:3341 +msgid "Duplicated or incompatible operation in the queue" +msgstr "Operación duplicada o incompatible en la cola" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:170 +#: ../../enterprise/godmode/policies/policy.php:216 +msgid "Operation successfully added to the queue" +msgstr "Operación añadida correctamente a la cola" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +msgid "Only database" +msgstr "Bases de datos solamente" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:174 +#: ../../enterprise/godmode/policies/policy.php:217 +#: ../../enterprise/include/functions_enterprise_api.php:3338 +msgid "Operation cannot be added to the queue" +msgstr "La operación no se puede añadir a la cola." + +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "Aplicar políticas" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:218 +#: ../../include/functions_networkmap.php:1287 +#: ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/tree.php:93 ../../operation/search_results.php:170 +#: ../../operation/search_main.php:73 +msgid "Policies" +msgstr "Políticas" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../godmode/menu.php:264 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../mobile/include/functions_web.php:26 +msgid "Servers" +msgstr "Servidores" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:213 +#: ../../enterprise/meta/advanced/policymanager.queue.php:307 +#: ../../enterprise/godmode/policies/policy_queue.php:507 +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/include/functions_update_manager.php:247 +#: ../../godmode/update_manager/update_manager.offline.php:106 +#: ../../include/functions_visual_map_editor.php:573 +#: ../../include/functions_update_manager.php:1401 +msgid "Apply" +msgstr "Aplicar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 +msgid "Node synchronization process failed" +msgstr "Error al sincronizar con el nodo" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 +msgid "" +"If you are trying to migrate this node to a new metaconsole, please use the " +"form available at Settings > Enterprise at node console." +msgstr "" +"Si intenta migrar este nodo a una Metaconsola nueva, use el formulario " +"disponible en Configuración > Enterprise en la consola de nodos." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:154 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:83 +msgid "Could not be update" +msgstr "No se pudo actualizar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:194 +msgid "Could not be create, duplicated register found." +msgstr "No se ha podido crear, el registro ya existe." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:254 +#: ../../enterprise/meta/advanced/links.php:46 +#: ../../enterprise/meta/advanced/cron_main.php:156 +#: ../../enterprise/meta/advanced/cron_main.php:202 +#: ../../enterprise/meta/advanced/cron_main.php:290 +#: ../../enterprise/extensions/ipam/ipam_action.php:135 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:37 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:217 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:230 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:278 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:291 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:388 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:77 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:108 +#: ../../enterprise/operation/agentes/transactional_map.php:108 +#: ../../godmode/modules/manage_nc_groups.php:82 +#: ../../godmode/users/profile_list.php:222 +#: ../../godmode/users/configure_user.php:359 +#: ../../godmode/agentes/configurar_agente.php:780 +#: ../../godmode/agentes/planned_downtime.editor.php:517 +#: ../../godmode/snmpconsole/snmp_alert.php:260 +#: ../../godmode/snmpconsole/snmp_filters.php:143 +#: ../../godmode/alerts/alert_commands.php:351 +#: ../../godmode/alerts/configure_alert_template.php:488 +#: ../../godmode/alerts/alert_special_days.php:164 +#: ../../godmode/alerts/alert_list.php:177 ../../godmode/setup/news.php:62 +#: ../../godmode/setup/gis.php:44 ../../godmode/setup/links.php:41 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:834 +msgid "Successfully created" +msgstr "Creado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:255 +#: ../../enterprise/extensions/ipam/ipam_action.php:129 +#: ../../enterprise/godmode/modules/local_components.php:108 +#: ../../enterprise/godmode/modules/local_components.php:273 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:385 +#: ../../enterprise/godmode/policies/policies.php:211 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:38 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:78 +#: ../../enterprise/operation/agentes/transactional_map.php:109 +#: ../../godmode/modules/manage_nc_groups.php:83 +#: ../../godmode/modules/manage_network_components.php:172 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/users/configure_user.php:360 +#: ../../godmode/agentes/configurar_agente.php:351 +#: ../../godmode/agentes/configurar_agente.php:775 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:421 +#: ../../godmode/agentes/planned_downtime.editor.php:510 +#: ../../godmode/alerts/alert_commands.php:338 +#: ../../godmode/alerts/configure_alert_template.php:150 +#: ../../godmode/alerts/configure_alert_template.php:479 +#: ../../godmode/alerts/alert_special_days.php:159 +#: ../../godmode/alerts/alert_list.php:164 ../../godmode/setup/news.php:63 +#: ../../godmode/setup/gis.php:46 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4578 +#: ../../include/functions_alerts.php:2825 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:829 +#: ../../operation/agentes/pandora_networkmap.php:126 +#: ../../operation/agentes/pandora_networkmap.php:367 +msgid "Could not be created" +msgstr "No se ha podido crear" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:271 +msgid "Successfully delete" +msgstr "Borrado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:272 +msgid "Could not be delete" +msgstr "No se puede eliminar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:288 +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:491 +#: ../../enterprise/godmode/alerts/alert_events_list.php:252 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:144 +#: ../../godmode/users/user_list.php:240 +#: ../../godmode/agentes/configurar_agente.php:2177 +#: ../../godmode/agentes/modificar_agente.php:133 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:337 +#: ../../include/ajax/alert_list.ajax.php:344 +msgid "Successfully enabled" +msgstr "Activado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:289 +#: ../../enterprise/godmode/policies/policy_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_modules.php:492 +#: ../../enterprise/godmode/alerts/alert_events_list.php:253 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:145 +#: ../../godmode/agentes/configurar_agente.php:2178 +#: ../../godmode/agentes/modificar_agente.php:134 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:338 +#: ../../include/ajax/alert_list.ajax.php:346 +msgid "Could not be enabled" +msgstr "No se pudo activar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:305 +#: ../../enterprise/godmode/policies/policy_alerts.php:115 +#: ../../enterprise/godmode/policies/policy_modules.php:507 +#: ../../enterprise/godmode/alerts/alert_events_list.php:272 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:153 +#: ../../godmode/users/user_list.php:234 +#: ../../godmode/agentes/configurar_agente.php:2196 +#: ../../godmode/agentes/modificar_agente.php:156 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:358 +#: ../../include/ajax/alert_list.ajax.php:365 +msgid "Successfully disabled" +msgstr "Desactivado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:306 +#: ../../enterprise/godmode/policies/policy_alerts.php:116 +#: ../../enterprise/godmode/policies/policy_modules.php:508 +#: ../../enterprise/godmode/alerts/alert_events_list.php:273 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:154 +#: ../../godmode/agentes/configurar_agente.php:2197 +#: ../../godmode/agentes/modificar_agente.php:157 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:359 +#: ../../include/ajax/alert_list.ajax.php:367 +msgid "Could not be disabled" +msgstr "No se pudo desactivar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:373 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "Edición de elemento de Metaconsola %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:622 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:523 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1549 +#: ../../enterprise/include/functions_reporting_csv.php:959 +#: ../../godmode/reporting/graph_builder.graph_editor.php:200 +#: ../../godmode/reporting/reporting_builder.item_editor.php:931 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:246 +#: ../../godmode/reporting/visual_console_builder.wizard.php:466 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../include/functions_visual_map_editor.php:194 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:1823 +#: ../../include/rest-api/models/VisualConsole/Item.php:2017 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 +#: ../../include/lib/Dashboard/Widgets/module_value.php:278 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 +#: ../../include/lib/Dashboard/Widgets/module_status.php:294 +#: ../../operation/visual_console/view.php:250 +msgid "Label" +msgstr "Etiqueta" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +msgid "Custom label to identify this setup." +msgstr "Etiqueta personalizada para identificar esta configuración." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:624 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:203 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +msgid "Console URL" +msgstr "URL de la consola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "Ruta completa de la consola %s (sin index.php). Ejemplo %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "Auth token" +msgstr "Hash de autentificación" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:386 +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use " +"delegated authentification." +msgstr "" +"Token previamente configurado en la consola %s de destino para usar la " +"autenticación delegada." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:398 +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 +#: ../../enterprise/meta/include/functions_meta.php:487 +#: ../../enterprise/meta/include/functions_meta.php:496 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:207 +#: ../../godmode/setup/setup_general.php:164 +#: ../../include/functions_config.php:205 +msgid "API password" +msgstr "Contraseña de la API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:408 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:230 +msgid "Console User" +msgstr "Usuario de la consola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:417 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:234 +msgid "Console Password" +msgstr "Contraseña de la consola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:427 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:625 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:212 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "DB Host" +msgstr "Host de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:436 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:216 +msgid "DB Name" +msgstr "Nombre de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:445 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 +msgid "DB User" +msgstr "Usuario de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:454 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:225 +msgid "DB Password" +msgstr "Contraseña de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:463 +#: ../../enterprise/include/class/DatabaseHA.class.php:936 +msgid "DB port" +msgstr "Puerto de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:559 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 +#: ../../enterprise/godmode/alerts/alert_events_list.php:688 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:169 +#: ../../extensions/quick_shell.php:477 +#: ../../godmode/agentes/module_manager_editor.php:719 +#: ../../godmode/agentes/agent_manager.php:800 +#: ../../godmode/agentes/agent_manager.php:939 +#: ../../godmode/massive/massive_edit_agents.php:728 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +#: ../../include/functions_visual_map_editor.php:805 +#: ../../operation/events/events_list.php:1016 +#: ../../operation/events/events.php:1254 +msgid "Advanced options" +msgstr "Opciones avanzadas" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "" +"Definir conexión con la base de datos desde el nodo de Pandora FMs a esta " +"Metaconsola." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:496 +msgid "Metaconsole DB Host" +msgstr "Host de la base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:505 +msgid "Metaconsole DB Name" +msgstr "Nombre de base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:514 +msgid "Metaconsole DB User" +msgstr "Usuario de la base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:523 +msgid "Metaconsole DB Password" +msgstr "Contraseña de la base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:532 +#: ../../enterprise/godmode/setup/setup.php:249 +msgid "Metaconsole DB port" +msgstr "Puerto BD Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:616 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:267 +msgid "DB" +msgstr "BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:617 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:268 +msgid "API" +msgstr "API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:618 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:269 +msgid "Compatibility" +msgstr "Compatibilidad" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:619 +#: ../../enterprise/godmode/setup/setup.php:104 +#: ../../include/functions_config.php:390 +msgid "Events replication" +msgstr "Replicación de eventos" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:620 +#: ../../enterprise/include/functions_setup.php:163 +msgid "Agent cache" +msgstr "Caché de agente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:626 +#: ../../enterprise/extensions/disabled/check_acls.php:66 +#: ../../enterprise/extensions/disabled/check_acls.php:159 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 +#: ../../enterprise/godmode/servers/HA_cluster.php:138 +#: ../../godmode/users/user_list.php:332 ../../godmode/users/user_list.php:483 +#: ../../operation/search_users.php:51 +msgid "Admin" +msgstr "Administrador" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:701 +msgid "The rules for this module may stop working. Are you sure?" +msgstr "Las normas de este módulo podrían dejar de funcionar, ¿está seguro?" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 +msgid "There aren't server added to metaconsole" +msgstr "No hay servidores añadidos a la Metaconsola" + +#: ../../enterprise/meta/advanced/links.php:44 ../../godmode/setup/links.php:39 +msgid "There was a problem creating link" +msgstr "Error al crear el enlace" + +#: ../../enterprise/meta/advanced/links.php:57 +msgid "The link was not updated, the data is identical" +msgstr "No se ha actualizado el link, los datos son idénticos" + +#: ../../enterprise/meta/advanced/links.php:65 ../../godmode/setup/links.php:58 +msgid "There was a problem modifying link" +msgstr "Error al modificar el enlace" + +#: ../../enterprise/meta/advanced/links.php:67 +#: ../../enterprise/extensions/ipam/ipam_action.php:193 +#: ../../enterprise/extensions/ipam/ipam_massive.php:47 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:104 +#: ../../enterprise/godmode/policies/policy_modules.php:1219 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:105 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:288 +#: ../../enterprise/godmode/alerts/alert_events.php:428 +#: ../../enterprise/godmode/alerts/alert_events_list.php:99 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:126 +#: ../../enterprise/operation/agentes/transactional_map.php:140 +#: ../../godmode/modules/manage_nc_groups.php:111 +#: ../../godmode/users/profile_list.php:205 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/configurar_agente.php:1115 +#: ../../godmode/agentes/planned_downtime.editor.php:519 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:383 +#: ../../godmode/snmpconsole/snmp_filters.php:89 +#: ../../godmode/massive/massive_edit_modules.php:166 +#: ../../godmode/alerts/configure_alert_command.php:112 +#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/configure_alert_template.php:506 +#: ../../godmode/alerts/alert_special_days.php:232 +#: ../../godmode/alerts/alert_list.php:93 +#: ../../godmode/alerts/alert_list.php:295 ../../godmode/setup/news.php:99 +#: ../../godmode/setup/gis.php:36 ../../godmode/setup/links.php:60 +#: ../../godmode/events/event_edit_filter.php:191 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:137 +#: ../../operation/incidents/incident.php:157 +msgid "Successfully updated" +msgstr "Actualizado correctamente" + +#: ../../enterprise/meta/advanced/links.php:79 ../../godmode/setup/links.php:71 +msgid "There was a problem deleting link" +msgstr "Error al borrar el enlace" + +#: ../../enterprise/meta/advanced/links.php:97 +msgid "Link Name error" +msgstr "Error en el nombre de link" + +#: ../../enterprise/meta/advanced/links.php:124 +#: ../../enterprise/meta/advanced/links.php:151 +#: ../../godmode/setup/links.php:113 ../../godmode/setup/links.php:142 +msgid "Link name" +msgstr "Nombre del enlace" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/godmode/policies/policy_linking.php:170 +#: ../../godmode/setup/links.php:116 +msgid "Link" +msgstr "Enlace" + +#: ../../enterprise/meta/advanced/links.php:133 +#: ../../enterprise/meta/advanced/collections.data.php:44 +#: ../../enterprise/meta/advanced/collections.data.php:73 +#: ../../enterprise/meta/advanced/collections.data.php:95 +#: ../../enterprise/meta/advanced/collections.data.php:112 +#: ../../enterprise/meta/advanced/collections.data.php:134 +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.editor.php:110 +#: ../../enterprise/meta/advanced/cron_main.php:462 +#: ../../enterprise/meta/advanced/collections.php:391 +#: ../../enterprise/meta/advanced/collections.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:277 +#: ../../enterprise/meta/include/functions_autoprovision.php:562 +#: ../../enterprise/meta/include/functions_autoprovision.php:761 +#: ../../enterprise/extensions/backup/main.php:284 +#: ../../enterprise/extensions/ipam/ipam_list.php:210 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/extensions/ipam/ipam_editor.php:229 +#: ../../enterprise/godmode/modules/configure_local_component.php:654 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:454 +#: ../../enterprise/godmode/modules/local_components.php:634 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:652 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:701 +#: ../../enterprise/godmode/agentes/collections.agents.php:40 +#: ../../enterprise/godmode/agentes/collections.data.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:139 +#: ../../enterprise/godmode/agentes/collections.data.php:163 +#: ../../enterprise/godmode/agentes/collections.data.php:180 +#: ../../enterprise/godmode/agentes/collections.data.php:204 +#: ../../enterprise/godmode/agentes/collections.data.php:251 +#: ../../enterprise/godmode/agentes/collections.editor.php:146 +#: ../../enterprise/godmode/agentes/collections.php:391 +#: ../../enterprise/godmode/policies/configure_policy.php:115 +#: ../../enterprise/godmode/policies/policy_modules.php:423 +#: ../../enterprise/godmode/policies/policies.php:654 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:267 +#: ../../enterprise/godmode/alerts/alert_events_list.php:753 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:517 +#: ../../enterprise/godmode/services/services.service.php:555 +#: ../../enterprise/godmode/services/services.elements.php:768 +#: ../../enterprise/godmode/setup/edit_skin.php:296 +#: ../../enterprise/godmode/reporting/aws_view.php:167 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:237 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:575 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3027 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:348 +#: ../../godmode/modules/manage_nc_groups_form.php:93 +#: ../../godmode/modules/manage_network_templates_form.php:168 +#: ../../godmode/modules/manage_nc_groups.php:283 +#: ../../godmode/modules/manage_network_components_form.php:311 +#: ../../godmode/modules/manage_network_components.php:792 +#: ../../godmode/modules/manage_network_templates.php:291 +#: ../../godmode/groups/configure_group.php:237 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/users/profile_list.php:381 +#: ../../godmode/users/configure_user.php:1084 +#: ../../godmode/agentes/module_manager_editor.php:761 +#: ../../godmode/agentes/planned_downtime.list.php:373 +#: ../../godmode/agentes/planned_downtime.list.php:536 +#: ../../godmode/agentes/agent_manager.php:990 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/agentes/module_manager.php:164 +#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/snmpconsole/snmp_alert.php:1100 +#: ../../godmode/snmpconsole/snmp_alert.php:1456 +#: ../../godmode/snmpconsole/snmp_filters.php:232 +#: ../../godmode/snmpconsole/snmp_filters.php:305 +#: ../../godmode/massive/massive_add_profiles.php:171 +#: ../../godmode/alerts/configure_alert_command.php:240 +#: ../../godmode/alerts/alert_actions.php:323 +#: ../../godmode/alerts/alert_list.list.php:886 +#: ../../godmode/alerts/alert_commands.php:480 +#: ../../godmode/alerts/configure_alert_special_days.php:107 +#: ../../godmode/alerts/alert_templates.php:427 +#: ../../godmode/alerts/configure_alert_action.php:290 +#: ../../godmode/alerts/alert_special_days.php:521 +#: ../../godmode/alerts/alert_special_days.php:539 +#: ../../godmode/alerts/alert_list.php:449 ../../godmode/setup/news.php:221 +#: ../../godmode/setup/gis.php:94 ../../godmode/setup/os.php:50 +#: ../../godmode/setup/os.php:77 ../../godmode/setup/links.php:124 +#: ../../godmode/reporting/create_container.php:301 +#: ../../godmode/reporting/map_builder.php:492 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1789 +#: ../../godmode/reporting/graph_builder.main.php:184 +#: ../../godmode/events/event_responses.editor.php:193 +#: ../../godmode/events/event_edit_filter.php:625 +#: ../../godmode/servers/plugin.php:562 ../../godmode/tag/edit_tag.php:238 +#: ../../godmode/category/edit_category.php:176 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../include/class/ManageNetScanScripts.class.php:766 +#: ../../include/class/ModuleTemplates.class.php:877 +#: ../../include/class/ModuleTemplates.class.php:922 +#: ../../include/functions_filemanager.php:797 +#: ../../include/functions_filemanager.php:803 +#: ../../operation/gis_maps/gis_map.php:202 +#: ../../operation/incidents/incident_detail.php:402 +#: ../../operation/incidents/configure_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +msgid "Create" +msgstr "Crear" + +#: ../../enterprise/meta/advanced/links.php:147 +#: ../../godmode/setup/links.php:138 +msgid "There isn't links" +msgstr "No hay enlaces" + +#: ../../enterprise/meta/advanced/policymanager.php:58 +msgid "Policy Manager" +msgstr "Gestor de políticas" + +#: ../../enterprise/meta/advanced/policymanager.php:80 +msgid "Apply policies" +msgstr "Aplicar políticas" + +#: ../../enterprise/meta/advanced/policymanager.php:84 +#: ../../enterprise/meta/advanced/policymanager.php:102 +msgid "Policies queue" +msgstr "Cola de políticas" + +#: ../../enterprise/meta/advanced/policymanager.php:98 +msgid "Policies apply" +msgstr "Aplicar políticas" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:49 +#, php-format +msgid "Error connecting to %s." +msgstr "Error de conexión con %s." + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 +#, php-format +msgid "Error creating/updating %s/%s module groups." +msgstr "Error al crear/actualizar grupos de módulos %s/%s." + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:57 +#, php-format +msgid "Created/Updated %s/%s module groups." +msgstr "Grupos de módulos %s/%s creados/actualizados" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 +msgid "Synchronizing Module Groups" +msgstr "Sincronizando grupos de módulos" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:254 +#, php-format +msgid "Error creating %s components groups " +msgstr "Error al crear %s grupos de componentes " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:258 +#, php-format +msgid "Created %s component groups" +msgstr "Creados %s componentes de grupos" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:263 +#, php-format +msgid "Error creating/updating %s/%s local components " +msgstr "Error al crear/actualizar %s/%s componentes locales " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:267 +#, php-format +msgid "Created/Updated %s/%s local components" +msgstr "Creados/actualizados %s/%s componentes locales" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:272 +#, php-format +msgid "Error creating/updating %s/%s network components " +msgstr "Error al crear/actualizar %s/%s componentes de red " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:276 +#, php-format +msgid "Created/Updated %s/%s network components" +msgstr "Creados/actualizados %s/%s componentes de red" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:293 +msgid "Synchronizing Components" +msgstr "Sincronizar componentes" + +#: ../../enterprise/meta/advanced/collections.data.php:35 +#: ../../enterprise/meta/advanced/collections.editor.php:39 +#: ../../enterprise/meta/include/functions_agents_meta.php:514 +#: ../../enterprise/godmode/agentes/collections.agents.php:46 +#: ../../enterprise/godmode/agentes/collections.data.php:45 +#: ../../enterprise/godmode/agentes/collections.editor.php:61 +#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:58 +#: ../../enterprise/include/functions_policies.php:3784 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "Colecciones" + +#: ../../enterprise/meta/advanced/collections.data.php:48 +#: ../../enterprise/meta/advanced/collections.data.php:88 +#: ../../enterprise/meta/advanced/collections.data.php:103 +#: ../../enterprise/meta/advanced/collections.data.php:120 +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:162 +#: ../../enterprise/meta/advanced/collections.data.php:184 +#: ../../enterprise/meta/advanced/collections.data.php:225 +#: ../../enterprise/meta/advanced/collections.data.php:250 +#: ../../enterprise/meta/advanced/collections.editor.php:33 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:49 +#: ../../enterprise/godmode/agentes/collections.agents.php:58 +#: ../../enterprise/godmode/agentes/collections.data.php:65 +#: ../../enterprise/godmode/agentes/collections.data.php:104 +#: ../../enterprise/godmode/agentes/collections.data.php:154 +#: ../../enterprise/godmode/agentes/collections.data.php:171 +#: ../../enterprise/godmode/agentes/collections.data.php:188 +#: ../../enterprise/godmode/agentes/collections.data.php:212 +#: ../../enterprise/godmode/agentes/collections.data.php:237 +#: ../../enterprise/godmode/agentes/collections.data.php:261 +#: ../../enterprise/godmode/agentes/collections.data.php:284 +#: ../../enterprise/godmode/agentes/collections.editor.php:51 +#: ../../enterprise/include/functions_reporting_pdf.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:739 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2187 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/functions_reporting_csv.php:2315 +#: ../../enterprise/include/functions_reporting.php:2008 +#: ../../enterprise/include/functions_reporting.php:2041 +#: ../../enterprise/include/functions_reporting.php:2045 +#: ../../enterprise/include/functions_services.php:2489 +#: ../../enterprise/operation/agentes/policy_view.php:327 +#: ../../enterprise/operation/agentes/tag_view.php:661 +#: ../../extensions/insert_data.php:191 ../../extensions/insert_data.php:192 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:114 +#: ../../mobile/operation/modules.php:690 +#: ../../mobile/operation/modules.php:691 +#: ../../mobile/operation/modules.php:692 +#: ../../mobile/operation/modules.php:693 +#: ../../mobile/operation/modules.php:694 +#: ../../mobile/operation/modules.php:695 +#: ../../mobile/operation/modules.php:696 +#: ../../mobile/operation/modules.php:697 +#: ../../mobile/operation/modules.php:698 +#: ../../mobile/operation/modules.php:700 +#: ../../mobile/operation/modules.php:823 +#: ../../include/functions_reporting_html.php:2140 +#: ../../include/functions_reporting_html.php:2144 +#: ../../include/functions_reporting_html.php:2147 +#: ../../include/functions_reporting_html.php:2152 +#: ../../include/functions_reporting_html.php:2198 +#: ../../include/ajax/module.php:847 ../../include/ajax/custom_fields.php:402 +#: ../../include/functions_graph.php:3673 +#: ../../include/functions_netflow.php:297 +#: ../../include/functions_reporting.php:3206 +#: ../../include/functions_reporting.php:3247 +#: ../../include/functions_events.php:208 +#: ../../include/functions_events.php:289 +#: ../../include/functions_events.php:6118 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1188 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_modules.php:37 +#: ../../operation/events/events.build_table.php:330 +msgid "Data" +msgstr "Datos" + +#: ../../enterprise/meta/advanced/collections.data.php:78 +#: ../../enterprise/godmode/agentes/collections.data.php:144 +msgid "" +"Unable to create the collection. Another collection with the same short name." +msgstr "" +"No se ha podido crear la colección. Hay otra colección con el mismo nombre " +"corto." + +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +msgid "Unable to create the collection" +msgstr "Error al crear la colección" + +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +msgid "Invalid characters in short name" +msgstr "Caracteres no válidos en el nombre" + +#: ../../enterprise/meta/advanced/collections.data.php:110 +#: ../../enterprise/godmode/agentes/collections.data.php:50 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:161 +#: ../../enterprise/godmode/agentes/collections.data.php:178 +#: ../../enterprise/godmode/agentes/collections.data.php:202 +#: ../../enterprise/godmode/agentes/collections.data.php:249 +msgid "Manager configuration > New" +msgstr "Gestionar la configuración > Nuevo" + +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +#: ../../enterprise/include/functions_local_components.php:170 +msgid "Empty name" +msgstr "Nombre vacío" + +#: ../../enterprise/meta/advanced/collections.data.php:138 +#: ../../enterprise/meta/advanced/collections.data.php:180 +#: ../../enterprise/godmode/agentes/collections.data.php:208 +#: ../../enterprise/godmode/agentes/collections.data.php:257 +msgid "Unable to create the collection." +msgstr "Error al crear la colección" + +#: ../../enterprise/meta/advanced/collections.data.php:156 +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:327 +msgid "Correct create collection" +msgstr "Colección de ficheros creada correctamente" + +#: ../../enterprise/meta/advanced/collections.data.php:164 +#: ../../enterprise/meta/advanced/collections.data.php:228 +#: ../../enterprise/meta/advanced/collections.data.php:252 +#: ../../enterprise/meta/advanced/collections.editor.php:36 +#: ../../enterprise/meta/advanced/collections.editor.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:350 +#: ../../enterprise/godmode/agentes/collections.agents.php:52 +#: ../../enterprise/godmode/agentes/collections.data.php:107 +#: ../../enterprise/godmode/agentes/collections.data.php:239 +#: ../../enterprise/godmode/agentes/collections.data.php:286 +#: ../../enterprise/godmode/agentes/collections.editor.php:57 +#: ../../enterprise/godmode/agentes/collections.editor.php:378 +#: ../../enterprise/godmode/agentes/collections.editor.php:401 +#: ../../enterprise/include/functions_collection.php:136 +#: ../../operation/agentes/ver_agente.php:1322 +msgid "Files" +msgstr "Archivos" + +#: ../../enterprise/meta/advanced/collections.data.php:218 +#: ../../enterprise/godmode/agentes/collections.data.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:223 +#: ../../enterprise/godmode/agentes/collections.data.php:303 +#: ../../enterprise/godmode/agentes/collections.data.php:316 +#: ../../enterprise/godmode/agentes/collections.data.php:321 +#: ../../enterprise/godmode/agentes/collections.editor.php:70 +msgid "Manager configuration > Edit " +msgstr "Gestionar la configuración > Editar " + +#: ../../enterprise/meta/advanced/collections.data.php:271 +#: ../../enterprise/godmode/agentes/collections.data.php:307 +msgid "Unable to edit the collection, empty name." +msgstr "Error al crear colección: nombre vacío" + +#: ../../enterprise/meta/advanced/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:319 +msgid "Unable to edit the collection." +msgstr "Error al editar la colección" + +#: ../../enterprise/meta/advanced/collections.data.php:303 +#: ../../enterprise/meta/include/functions_autoprovision.php:540 +#: ../../enterprise/godmode/agentes/collections.data.php:352 +#: ../../godmode/setup/os.builder.php:32 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "Nombre:" + +#: ../../enterprise/meta/advanced/collections.data.php:315 +#: ../../enterprise/godmode/agentes/collections.data.php:365 +msgid "Recreate file" +msgstr "Volver a crear el archivo" + +#: ../../enterprise/meta/advanced/collections.data.php:343 +#: ../../enterprise/meta/advanced/collections.data.php:344 +#: ../../enterprise/godmode/agentes/collection_manager.php:161 +#: ../../enterprise/godmode/agentes/collection_manager.php:162 +#: ../../enterprise/godmode/agentes/collection_manager.php:273 +#: ../../enterprise/godmode/agentes/collection_manager.php:274 +#: ../../enterprise/godmode/agentes/collections.data.php:393 +#: ../../enterprise/godmode/agentes/collections.data.php:394 +msgid "Need to regenerate" +msgstr "Necesita volver a regenerarse" + +#: ../../enterprise/meta/advanced/collections.data.php:353 +#: ../../enterprise/meta/advanced/collections.data.php:354 +#: ../../enterprise/meta/advanced/collections.php:370 +#: ../../enterprise/meta/advanced/collections.php:371 +#: ../../enterprise/godmode/agentes/collection_manager.php:170 +#: ../../enterprise/godmode/agentes/collection_manager.php:171 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collection_manager.php:283 +#: ../../enterprise/godmode/agentes/collections.data.php:403 +#: ../../enterprise/godmode/agentes/collections.data.php:404 +#: ../../enterprise/godmode/agentes/collections.php:372 +#: ../../enterprise/godmode/agentes/collections.php:373 +#: ../../enterprise/operation/agentes/collection_view.php:122 +#: ../../enterprise/operation/agentes/collection_view.php:123 +msgid "The collection directory does not exist." +msgstr "El directorio donde se guardan las colecciones no existe." + +#: ../../enterprise/meta/advanced/collections.data.php:367 +#: ../../enterprise/godmode/agentes/collections.data.php:418 +#: ../../godmode/reporting/visual_console_builder.data.php:136 +msgid "Group:" +msgstr "Grupo:" + +#: ../../enterprise/meta/advanced/collections.data.php:389 +#: ../../enterprise/godmode/agentes/collections.data.php:440 +msgid "Short name:" +msgstr "Nombre corto:" + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "" +"The collection's short name is the name of dir in attachment dir and the " +"package collection." +msgstr "" +"El nombre corto de la colección es el nombre del directorio en el directorio " +"de adjuntos y la colección de paquetes." + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "" +"Los nombres cortos deben contener solo caracteres alfanuméricos, - o _." + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "Empty for default short name fc_X where X is the collection id." +msgstr "" +"Déjalo vacío para el nombre corto por defecto (fc_X) donde X es el ID de la " +"colección." + +#: ../../enterprise/meta/advanced/collections.data.php:401 +#: ../../enterprise/meta/include/functions_autoprovision.php:543 +#: ../../enterprise/godmode/agentes/collections.data.php:449 +#: ../../operation/snmpconsole/snmp_view.php:1023 +msgid "Description:" +msgstr "Descripción:" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:63 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "" +"Datos personalizados de aprovisionamiento %s borrados correctamente" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:70 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "Error al borrar los datos personalizados %s" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:83 +msgid "There was an error when moving the custom provisioning data." +msgstr "Error al mover los datos de aprovisionamiento personalizado" + +#: ../../enterprise/meta/advanced/collections.editor.php:99 +#: ../../enterprise/meta/advanced/collections.editor.php:165 +#: ../../enterprise/godmode/agentes/collections.editor.php:135 +#: ../../enterprise/godmode/agentes/collections.editor.php:200 +#: ../../godmode/servers/plugin.php:157 +#: ../../include/functions_filemanager.php:749 +msgid "Edit file" +msgstr "Editar archivo" + +#: ../../enterprise/meta/advanced/collections.editor.php:102 +#: ../../enterprise/meta/advanced/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:138 +#: ../../enterprise/godmode/agentes/collections.editor.php:202 +msgid "Back to file explorer" +msgstr "Volver al explorador de archivos" + +#: ../../enterprise/meta/advanced/collections.editor.php:139 +#: ../../enterprise/meta/advanced/collections.editor.php:304 +#: ../../enterprise/godmode/agentes/collections.editor.php:174 +#: ../../enterprise/godmode/agentes/collections.editor.php:350 +#: ../../include/functions_filemanager.php:334 +msgid "Security error." +msgstr "Error de seguridad" + +#: ../../enterprise/meta/advanced/collections.editor.php:190 +#: ../../enterprise/godmode/agentes/collections.editor.php:224 +#: ../../godmode/servers/plugin.php:176 +msgid "Compatibility mode" +msgstr "Modo de compatibilidad" + +#: ../../enterprise/meta/advanced/collections.editor.php:235 +#: ../../enterprise/godmode/agentes/collections.editor.php:269 +msgid "Correct update file." +msgstr "Actualización correcta del archivo" + +#: ../../enterprise/meta/advanced/collections.editor.php:236 +#: ../../enterprise/godmode/agentes/collections.editor.php:270 +msgid "Incorrect update file." +msgstr "Error al actualizar el archivo" + +#: ../../enterprise/meta/advanced/collections.editor.php:351 +#: ../../enterprise/godmode/agentes/collections.editor.php:402 +msgid "Please, first save a new collection before to upload files." +msgstr "Por favor, antes de subir archivos, guarda una nueva colección." + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:101 +#: ../../godmode/update_manager/update_manager.setup.php:193 +msgid "URL update manager:" +msgstr "URL Administrador de actualizaciones:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:105 +#: ../../godmode/update_manager/update_manager.setup.php:197 +msgid "URL update manager" +msgstr "URL Administrador de actualizaciones" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:111 +#: ../../godmode/update_manager/update_manager.setup.php:203 +msgid "Proxy server:" +msgstr "Servidor Proxy:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:115 +#: ../../godmode/update_manager/update_manager.setup.php:207 +msgid "Proxy server" +msgstr "Servidor proxy" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:121 +#: ../../godmode/update_manager/update_manager.setup.php:213 +msgid "Proxy port:" +msgstr "Puerto Proxy:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:125 +#: ../../godmode/update_manager/update_manager.setup.php:217 +msgid "Proxy port" +msgstr "Puerto del Proxy" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:131 +#: ../../godmode/update_manager/update_manager.setup.php:223 +msgid "Proxy user:" +msgstr "Usuario del Proxy:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:135 +#: ../../godmode/update_manager/update_manager.setup.php:227 +msgid "Proxy user" +msgstr "Usuario del Proxy" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:141 +#: ../../godmode/update_manager/update_manager.setup.php:233 +msgid "Proxy password:" +msgstr "Contraseña del Proxy:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:145 +#: ../../godmode/update_manager/update_manager.setup.php:237 +msgid "Proxy password" +msgstr "Contraseña del Proxy" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:66 +#, php-format +msgid "Error creating/updating %s/%s tags" +msgstr "Error al crear/actualizar %s/%s etiquetas" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:70 +#, php-format +msgid "Created/Updated %s/%s tags" +msgstr "Creadas/actualizadas %s/%s etiquetas" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:81 +msgid "Synchronizing Tags" +msgstr "Sincronizar etiquetas" + +#: ../../enterprise/meta/advanced/cron_main.php:72 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "Tareas cron" + +#: ../../enterprise/meta/advanced/cron_main.php:84 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:527 +msgid "Add new job" +msgstr "Añadir nueva tarea" + +#: ../../enterprise/meta/advanced/cron_main.php:157 +#: ../../enterprise/meta/advanced/cron_main.php:203 +#: ../../enterprise/meta/advanced/cron_main.php:291 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:209 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:271 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:360 +msgid "Path doesn't exists or is not writable" +msgstr "La ruta no existe o no se puede escribir en ella." + +#: ../../enterprise/meta/advanced/cron_main.php:171 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:240 +msgid "Only administrator users can create this type of functions" +msgstr "" +"Solo los usuarios administradores pueden crear este tipo de funciones." + +#: ../../enterprise/meta/advanced/cron_main.php:239 +#: ../../enterprise/meta/advanced/cron_main.php:273 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:345 +msgid "Edit job" +msgstr "Editar tarea" + +#: ../../enterprise/meta/advanced/cron_main.php:324 +msgid "" +"In order to make backups it is necessary to have mysqldump on your console." +msgstr "" +"Para hacer una copia de seguridad, debe tener mysquldump en la consola." + +#: ../../enterprise/meta/advanced/cron_main.php:345 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:603 +#: ../../enterprise/include/functions_tasklist.php:168 +#: ../../include/functions_cron.php:455 +msgid "Task" +msgstr "Tarea" + +#: ../../enterprise/meta/advanced/cron_main.php:376 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:613 +#: ../../enterprise/include/functions_tasklist.php:169 +#: ../../include/functions_cron.php:456 +msgid "Scheduled" +msgstr "Programado" + +#: ../../enterprise/meta/advanced/cron_main.php:389 +#: ../../enterprise/include/functions_tasklist.php:170 +#: ../../include/functions_cron.php:457 +msgid "Next execution" +msgstr "Siguiente ejecución" + +#: ../../enterprise/meta/advanced/cron_main.php:398 +msgid "Date format in Pandora is year/month/day" +msgstr "El formato de fecha de Pandora FMS es año/mes/día" + +#: ../../enterprise/meta/advanced/cron_main.php:409 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "El formato de hora en Pandora FMS es horas(24h):minutos:segundos" + +#: ../../enterprise/meta/advanced/cron_main.php:435 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:542 +#: ../../godmode/events/event_responses.editor.php:128 +#: ../../include/ajax/events.php:1685 +#: ../../include/lib/Dashboard/Widgets/events_list.php:590 +#: ../../include/functions_events.php:3606 +#: ../../operation/events/events.php:1577 +msgid "Parameters" +msgstr "Parámetros" + +#: ../../enterprise/meta/advanced/cron_main.php:521 +#: ../../enterprise/godmode/alerts/alert_events.php:700 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:967 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3593 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/operation/log/log_viewer.php:754 +#: ../../enterprise/operation/log/log_viewer.php:766 +#: ../../extensions/insert_data.php:221 +#: ../../godmode/agentes/planned_downtime.editor.php:1463 +#: ../../godmode/alerts/configure_alert_template.php:1277 +#: ../../godmode/setup/news.php:311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3779 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:642 +#: ../../operation/tree.php:475 ../../operation/agentes/stat_win.php:447 +#: ../../operation/agentes/interface_traffic_graph_win.php:312 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:448 +#: ../../operation/network/network_report.php:356 +#: ../../operation/network/network_usage_map.php:208 +#: ../../operation/netflow/nf_live_view.php:739 +#: ../../operation/snmpconsole/snmp_view.php:1227 +#: ../../operation/snmpconsole/snmp_view.php:1239 +#: ../../operation/reporting/reporting_viewer.php:275 +#: ../../operation/reporting/reporting_viewer.php:295 +#: ../../operation/reporting/graph_viewer.php:315 +#: ../../operation/events/events_list.php:2007 +#: ../../operation/events/events.php:2474 +msgid "Choose time" +msgstr "Seleccionar hora" + +#: ../../enterprise/meta/advanced/cron_main.php:522 +#: ../../enterprise/godmode/alerts/alert_events.php:701 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:968 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:928 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3843 +#: ../../enterprise/operation/log/log_viewer.php:755 +#: ../../enterprise/operation/log/log_viewer.php:767 +#: ../../extensions/insert_data.php:222 +#: ../../godmode/agentes/planned_downtime.editor.php:1464 +#: ../../godmode/alerts/configure_alert_template.php:1278 +#: ../../godmode/setup/news.php:312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3780 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:476 ../../operation/agentes/stat_win.php:448 +#: ../../operation/agentes/interface_traffic_graph_win.php:313 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:449 +#: ../../operation/network/network_report.php:357 +#: ../../operation/network/network_usage_map.php:209 +#: ../../operation/netflow/nf_live_view.php:740 +#: ../../operation/snmpconsole/snmp_view.php:1228 +#: ../../operation/snmpconsole/snmp_view.php:1240 +#: ../../operation/reporting/reporting_viewer.php:276 +#: ../../operation/reporting/reporting_viewer.php:296 +#: ../../operation/reporting/graph_viewer.php:316 +#: ../../operation/events/events_list.php:2008 +#: ../../operation/events/events.php:2475 +msgid "Time" +msgstr "Hora" + +#: ../../enterprise/meta/advanced/cron_main.php:523 +#: ../../enterprise/godmode/alerts/alert_events.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:969 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3595 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3844 +#: ../../enterprise/operation/log/log_viewer.php:756 +#: ../../enterprise/operation/log/log_viewer.php:768 +#: ../../extensions/insert_data.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:1465 +#: ../../godmode/alerts/configure_alert_template.php:1279 +#: ../../godmode/setup/news.php:313 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3781 +#: ../../include/functions_html.php:1594 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:644 +#: ../../operation/tree.php:477 ../../operation/agentes/stat_win.php:449 +#: ../../operation/agentes/interface_traffic_graph_win.php:314 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:450 +#: ../../operation/network/network_report.php:358 +#: ../../operation/network/network_usage_map.php:210 +#: ../../operation/netflow/nf_live_view.php:741 +#: ../../operation/snmpconsole/snmp_view.php:1229 +#: ../../operation/snmpconsole/snmp_view.php:1241 +#: ../../operation/reporting/reporting_viewer.php:277 +#: ../../operation/reporting/reporting_viewer.php:297 +#: ../../operation/reporting/graph_viewer.php:317 +#: ../../operation/events/events_list.php:2009 +#: ../../operation/events/events.php:2476 +msgid "Hour" +msgstr "Hora" + +#: ../../enterprise/meta/advanced/cron_main.php:524 +#: ../../enterprise/godmode/alerts/alert_events.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:970 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3596 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3845 +#: ../../enterprise/operation/log/log_viewer.php:757 +#: ../../enterprise/operation/log/log_viewer.php:769 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1466 +#: ../../godmode/alerts/configure_alert_template.php:1280 +#: ../../godmode/setup/news.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3782 +#: ../../include/functions_html.php:1595 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 +#: ../../operation/tree.php:478 ../../operation/agentes/stat_win.php:450 +#: ../../operation/agentes/interface_traffic_graph_win.php:315 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:451 +#: ../../operation/network/network_report.php:359 +#: ../../operation/network/network_usage_map.php:211 +#: ../../operation/netflow/nf_live_view.php:742 +#: ../../operation/snmpconsole/snmp_view.php:1230 +#: ../../operation/snmpconsole/snmp_view.php:1242 +#: ../../operation/reporting/reporting_viewer.php:278 +#: ../../operation/reporting/reporting_viewer.php:298 +#: ../../operation/reporting/graph_viewer.php:318 +#: ../../operation/events/events_list.php:2010 +#: ../../operation/events/events.php:2477 +msgid "Minute" +msgstr "Minuto" + +#: ../../enterprise/meta/advanced/cron_main.php:525 +#: ../../enterprise/godmode/alerts/alert_events.php:704 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:971 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3597 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3846 +#: ../../enterprise/operation/log/log_viewer.php:758 +#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1467 +#: ../../godmode/alerts/configure_alert_template.php:1281 +#: ../../godmode/setup/news.php:315 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3783 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:646 +#: ../../operation/tree.php:479 ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:316 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:452 +#: ../../operation/network/network_report.php:360 +#: ../../operation/network/network_usage_map.php:212 +#: ../../operation/netflow/nf_live_view.php:743 +#: ../../operation/snmpconsole/snmp_view.php:1231 +#: ../../operation/snmpconsole/snmp_view.php:1243 +#: ../../operation/reporting/reporting_viewer.php:279 +#: ../../operation/reporting/reporting_viewer.php:299 +#: ../../operation/reporting/graph_viewer.php:319 +#: ../../operation/events/events_list.php:2011 +#: ../../operation/events/events.php:2478 +msgid "Second" +msgstr "Segundo" + +#: ../../enterprise/meta/advanced/cron_main.php:526 +#: ../../enterprise/godmode/alerts/alert_events.php:705 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:972 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3598 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3847 +#: ../../enterprise/operation/agentes/agent_inventory.php:108 +#: ../../enterprise/operation/log/log_viewer.php:759 +#: ../../enterprise/operation/log/log_viewer.php:771 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1468 +#: ../../godmode/alerts/configure_alert_template.php:1282 +#: ../../godmode/setup/news.php:316 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3784 +#: ../../include/functions.php:499 ../../include/functions.php:639 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:480 ../../operation/agentes/stat_win.php:452 +#: ../../operation/agentes/interface_traffic_graph_win.php:317 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:453 +#: ../../operation/network/network_report.php:361 +#: ../../operation/network/network_usage_map.php:213 +#: ../../operation/netflow/nf_live_view.php:744 +#: ../../operation/snmpconsole/snmp_view.php:1232 +#: ../../operation/snmpconsole/snmp_view.php:1244 +#: ../../operation/reporting/reporting_viewer.php:280 +#: ../../operation/reporting/reporting_viewer.php:300 +#: ../../operation/reporting/graph_viewer.php:320 +#: ../../operation/events/events_list.php:2012 +#: ../../operation/events/events.php:2479 +msgid "Now" +msgstr "Ahora" + +#: ../../enterprise/meta/advanced/cron_main.php:527 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:413 +#: ../../enterprise/godmode/alerts/alert_events.php:706 +#: ../../enterprise/godmode/setup/setup.php:739 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:973 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3599 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3848 +#: ../../enterprise/operation/log/log_viewer.php:760 +#: ../../enterprise/operation/log/log_viewer.php:772 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1469 +#: ../../godmode/alerts/configure_alert_template.php:1283 +#: ../../godmode/setup/news.php:317 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3785 +#: ../../godmode/wizards/HostDevices.class.php:792 +#: ../../mobile/include/ui.class.php:670 ../../mobile/include/ui.class.php:728 +#: ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../include/functions_snmp_browser.php:566 ../../operation/tree.php:481 +#: ../../operation/agentes/stat_win.php:453 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:454 +#: ../../operation/network/network_report.php:362 +#: ../../operation/network/network_usage_map.php:214 +#: ../../operation/netflow/nf_live_view.php:745 +#: ../../operation/snmpconsole/snmp_view.php:1233 +#: ../../operation/snmpconsole/snmp_view.php:1245 +#: ../../operation/reporting/reporting_viewer.php:281 +#: ../../operation/reporting/reporting_viewer.php:301 +#: ../../operation/reporting/graph_viewer.php:321 +#: ../../operation/events/events_list.php:2013 +#: ../../operation/events/events.php:2480 +msgid "Close" +msgstr "Cerrar" + +#: ../../enterprise/meta/advanced/synchronizing.php:36 +#: ../../enterprise/meta/general/main_header.php:304 +msgid "Synchronizing" +msgstr "Sincronizando" + +#: ../../enterprise/meta/advanced/synchronizing.php:60 +#: ../../enterprise/meta/advanced/synchronizing.php:92 +msgid "Users synchronization" +msgstr "Sincronización de usuarios" + +#: ../../enterprise/meta/advanced/synchronizing.php:64 +#: ../../enterprise/meta/advanced/synchronizing.php:96 +msgid "Groups synchronization" +msgstr "Sincronización de grupos" + +#: ../../enterprise/meta/advanced/synchronizing.php:68 +#: ../../enterprise/meta/advanced/synchronizing.php:100 +msgid "Alerts synchronization" +msgstr "Sincronización de alertas" + +#: ../../enterprise/meta/advanced/synchronizing.php:72 +#: ../../enterprise/meta/advanced/synchronizing.php:104 +msgid "Components synchronization" +msgstr "Sincronización de componentes" + +#: ../../enterprise/meta/advanced/synchronizing.php:76 +#: ../../enterprise/meta/advanced/synchronizing.php:108 +msgid "Tags synchronization" +msgstr "Sincronización de etiquetas" + +#: ../../enterprise/meta/advanced/synchronizing.php:80 +#: ../../enterprise/meta/advanced/synchronizing.php:112 +msgid "OS synchronization" +msgstr "Sincronización de SO" + +#: ../../enterprise/meta/advanced/synchronizing.php:84 +#: ../../enterprise/meta/advanced/synchronizing.php:116 +msgid "Module Groups synchronization" +msgstr "Sincronización de grupos de módulo" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:160 +#: ../../godmode/modules/manage_network_components_form_common.php:65 +#: ../../godmode/users/configure_user.php:947 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/alert_commands.php:137 +#: ../../godmode/alerts/configure_alert_template.php:857 +#: ../../godmode/alerts/configure_alert_template.php:871 +#: ../../godmode/alerts/configure_alert_template.php:962 +msgid "Basic" +msgstr "Básico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:370 +#: ../../include/functions_config.php:161 +msgid "Language settings" +msgstr "Configuración de idioma" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:379 +#: ../../godmode/setup/setup_general.php:126 +#: ../../include/functions_config.php:173 +msgid "Auto login (hash) password" +msgstr "Contraseña («hash») de inicio de sesión automático" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:136 +#: ../../enterprise/meta/include/functions_meta.php:388 +#: ../../godmode/setup/setup_general.php:129 +#: ../../include/functions_config.php:177 +msgid "Time source" +msgstr "Hora de referencia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:137 +#: ../../godmode/setup/setup_general.php:130 +#: ../../mobile/operation/events.php:127 +#: ../../include/functions_reporting_html.php:1039 +#: ../../include/functions_reporting_html.php:2016 +#: ../../include/functions.php:1238 ../../include/functions_graph.php:2683 +#: ../../include/functions_graph.php:3101 +#: ../../include/functions_graph.php:3562 +#: ../../include/functions_graph.php:3564 +#: ../../include/functions_reporting.php:8474 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:412 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:408 +#: ../../include/functions_events.php:2482 +#: ../../include/functions_events.php:3052 +#: ../../operation/events/events.php:1993 +msgid "System" +msgstr "Sistema" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:138 +#: ../../godmode/setup/setup_general.php:131 +msgid "Database" +msgstr "Base de datos" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:141 +#: ../../enterprise/meta/include/functions_meta.php:397 +#: ../../godmode/setup/setup_general.php:141 +#: ../../include/functions_config.php:189 +msgid "Enforce https" +msgstr "Forzar https" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. " +"Do you want to continue?" +msgstr "" +"Si el SSL no esta correctamente configurado, perderá el acceso a la consola " +"%s. ¿Desea continuar?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../enterprise/meta/include/functions_meta.php:406 +msgid "Centralized management" +msgstr "Gestión centralizada" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/include/functions_meta.php:415 +#: ../../godmode/setup/setup_general.php:152 +#: ../../include/functions_config.php:197 +msgid "Attachment store" +msgstr "Almacenamiento de adjuntos" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +msgid "Directory where temporary data is stored." +msgstr "Directorio donde se almacenan los datos temporales" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:424 +#: ../../godmode/setup/setup_general.php:123 +msgid "Phantomjs bin directory" +msgstr "Directorio Phantomjs bin" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "" +"Directory where phantomjs binary file exists and has execution grants." +msgstr "" +"Directorio que contiene en archivo binario phantomjs con permisos de " +"ejecución." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:156 +#: ../../godmode/setup/setup_general.php:188 +#: ../../include/functions_visual_map_editor.php:268 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_update_manager.php:159 +msgid "Africa" +msgstr "África" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:157 +#: ../../godmode/setup/setup_general.php:189 +#: ../../include/functions_visual_map_editor.php:269 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_update_manager.php:160 +msgid "America" +msgstr "América" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../godmode/setup/setup_general.php:190 +#: ../../include/functions_visual_map_editor.php:270 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_update_manager.php:161 +msgid "Antarctica" +msgstr "Antártida" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:159 +#: ../../godmode/setup/setup_general.php:191 +#: ../../include/functions_visual_map_editor.php:271 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_update_manager.php:162 +msgid "Arctic" +msgstr "Ártico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:160 +#: ../../godmode/setup/setup_general.php:192 +#: ../../include/functions_visual_map_editor.php:272 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_update_manager.php:163 +msgid "Asia" +msgstr "Asia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:161 +#: ../../godmode/setup/setup_general.php:193 +#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_update_manager.php:164 +msgid "Atlantic" +msgstr "Atlántico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../godmode/setup/setup_general.php:194 +#: ../../include/functions_visual_map_editor.php:274 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_update_manager.php:165 +msgid "Australia" +msgstr "Australia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +#: ../../godmode/setup/setup_general.php:195 +#: ../../include/functions_visual_map_editor.php:275 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_update_manager.php:166 +msgid "Europe" +msgstr "Europa" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../godmode/setup/setup_general.php:196 +#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_update_manager.php:167 +msgid "Indian" +msgstr "Índico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +#: ../../godmode/setup/setup_general.php:197 +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_update_manager.php:168 +msgid "Pacific" +msgstr "Pacífico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:198 +#: ../../include/functions_visual_map_editor.php:278 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_update_manager.php:169 +msgid "UTC" +msgstr "UTC" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:185 +#: ../../enterprise/meta/include/functions_meta.php:433 +#: ../../godmode/setup/setup_general.php:218 +#: ../../include/functions_config.php:235 +#: ../../include/functions_update_manager.php:189 +msgid "Timezone setup" +msgstr "Configuración de zona horaria" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:187 +#: ../../godmode/setup/setup_general.php:231 +msgid "Change timezone" +msgstr "Cambiar zona horaria" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:442 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_config.php:267 +msgid "Public URL" +msgstr "URL pública" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:192 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." +msgstr "" +"Ajuste este valor cuando necesite que %s esté accesible a través de una URL " +"pública (por ejemplo usando los ajustes mod_proxy de Apache)." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:195 +#: ../../enterprise/meta/include/functions_meta.php:451 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_config.php:271 +msgid "Force use Public URL" +msgstr "Forzar el uso de la URL pública" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:196 +msgid "Force using defined public URL)." +msgstr "Forzar usando la URL pública definida." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s " +"Console. Do you want to continue?" +msgstr "" +"Si la URL no está correctamente configurada, no tendrá acceso a la consola " +"%s. ¿Desea continuar?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#: ../../enterprise/meta/include/functions_meta.php:460 +#: ../../godmode/setup/setup_general.php:266 +#: ../../include/functions_config.php:275 +msgid "Public URL host exclusions" +msgstr "Exclusiones del host de URL pública" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../include/functions_config.php:1378 +msgid "Disable custom live view filters" +msgstr "Desactiva los filtros de vista activa personalizados" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 +msgid "" +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." +msgstr "" +"Desactiva la definición de filtros personalizados en la vista activa. Solo " +"pueden usarse los filtros existentes." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 +#: ../../enterprise/meta/include/functions_meta.php:478 +#: ../../godmode/setup/setup_general.php:276 +#: ../../include/functions_config.php:287 +msgid "Command Snapshot" +msgstr "Salida de comandos como capturas" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 +msgid "The string modules with several lines show as command output" +msgstr "" +"Los módulos de tipo cadena de texto con varias líneas se mostrarán como una " +"salida de comando." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:221 +msgid "Customize sections" +msgstr "Personalizar secciones" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:242 +msgid "Disabled sections" +msgstr "Secciones desactivadas" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:244 +msgid "Enabled sections" +msgstr "Activar secciones" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:249 +msgid "Push selected sections to enable it" +msgstr "Selecciona las secciones elegidas para activarlo" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:251 +msgid "Pop selected sections to disable it" +msgstr "Deshacer selección de las secciones para desactivarlo" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 +msgid "Please be careful if you put a password put https access." +msgstr "" +"Por favor, ten cuidado. Si tienes que introducir una contraseña pon acceso " +"https." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:263 +#: ../../enterprise/meta/include/functions_meta.php:505 +#: ../../godmode/setup/setup_general.php:155 +#: ../../include/functions_config.php:201 +msgid "IP list with API access" +msgstr "Lista de IPs con acceso a la API" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:273 +#: ../../enterprise/meta/include/functions_meta.php:514 +#: ../../enterprise/godmode/setup/setup.php:377 +msgid "Enable update manager" +msgstr "Habilitar gestor de actualizaciones" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +#: ../../enterprise/meta/include/functions_meta.php:538 +#: ../../godmode/setup/setup_general.php:332 +#: ../../include/functions_config.php:323 +msgid "Audit log directory" +msgstr "Directorio de log de auditoría" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +msgid "Directory where audit log is stored." +msgstr "Directorio donde se guarda el log" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:281 +#: ../../enterprise/meta/include/functions_meta.php:547 +#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../include/functions_config.php:386 +msgid "Size of collection" +msgstr "Tamaño de la colección" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:282 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr " Bytes" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:285 +msgid "Enable Agent API" +msgstr "Habilitar API del agente" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:49 +#, php-format +msgid "Error creating/updating %s/%s OS" +msgstr "Error al crear/actualizar %s/%s SO" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:53 +#, php-format +msgid "Created/Updated %s/%s OS" +msgstr "Creado/Actualizado %s/%s SO" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:64 +msgid "Synchronizing OS" +msgstr "Sincronizando SO" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "Error al crear las políticas %s" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "%s políticas creadas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "Error al crear/actualizar %s/%s módulos de políticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "Creados/actualizados %s/%s módulos de políticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "Error al eliminar %s módulos de políticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "Eliminados %s módulos de políticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "Error al crear %s alertas de políticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "Alertas de políticas %s creadas correctamente" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "Error al eliminar %s alertas de políticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "%s alertas de políticas eliminadas correctamente" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../enterprise/meta/advanced/policymanager.queue.php:257 +#: ../../enterprise/extensions/resource_exportation/functions.php:18 +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/godmode/agentes/plugins_manager.php:121 +#: ../../enterprise/godmode/policies/policy_queue.php:404 +#: ../../enterprise/godmode/policies/policy_queue.php:458 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:98 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:84 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:191 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:94 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:96 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:348 +#: ../../enterprise/include/functions_policies.php:4046 +#: ../../enterprise/operation/agentes/policy_view.php:50 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/status_monitor_custom_fields.php:73 +#: ../../godmode/agentes/status_monitor_custom_fields.php:142 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/alerts/alert_view.php:115 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:839 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:547 +#: ../../operation/agentes/status_monitor.php:1134 +msgid "Policy" +msgstr "Política" + +#: ../../enterprise/meta/advanced/license_meta.php:50 +#: ../../include/functions_api.php:13610 +msgid "Metaconsole and all nodes license updated" +msgstr "" +"Licencia de la Metaconsola y todos sus módulos actualizada correctamente" + +#: ../../enterprise/meta/advanced/license_meta.php:52 +#: ../../include/functions_api.php:13612 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "" +"Licencia de la Metaconsola actualizada pero %d de %d de los nodos no se " +"sincronizaron correctamente" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:71 +#: ../../godmode/menu.php:317 ../../godmode/setup/setup.php:103 +#: ../../godmode/setup/setup.php:174 +msgid "Performance" +msgstr "Rendimiento" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:76 +#: ../../enterprise/meta/include/functions_meta.php:1730 +#: ../../godmode/setup/performance.php:251 +#: ../../godmode/setup/performance.php:470 +#: ../../include/functions_config.php:738 +msgid "Max. days before delete events" +msgstr "Nº max. de días antes de borrar eventos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1739 +msgid "Active events history" +msgstr "Histórico de eventos activos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1748 +#: ../../godmode/setup/performance.php:272 +#: ../../include/functions_config.php:751 +msgid "Max. days before delete audit events" +msgstr "Nº max. de días antes de borrar eventos de auditoría interna" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/include/functions_meta.php:1757 +#: ../../godmode/setup/performance.php:561 +#: ../../include/functions_config.php:783 +msgid "Default hours for event view" +msgstr "Nº de horas predeterminado para la visualización de eventos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +msgid "Migration block size" +msgstr "Tamaño del bloque de migración" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:99 +#: ../../godmode/setup/performance.php:635 +msgid "Events response max. execution" +msgstr "Máx. tiempo de ejecución de respuesta de eventos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:101 +msgid "" +"Number of events that will perform the desired action at the same time" +msgstr "Número de eventos que llevarán a cabo la acción deseada a la vez." + +#: ../../enterprise/meta/advanced/collections.php:28 +msgid "" +"The previous configuration of collections has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" +"La configuración previa de las colecciones se ha importado desde los nodos. " +"Compruebe que las definiciones son correctas." + +#: ../../enterprise/meta/advanced/collections.php:28 +#: ../../godmode/servers/plugin.php:589 +msgid "Note:" +msgstr "Nota:" + +#: ../../enterprise/meta/advanced/collections.php:29 +msgid "" +"These definitions will not be operational until you manually \n" +" copy the files from the nodes to the atachment/collection/ directory of " +"the meta console." +msgstr "" +"Estas definiciones no estarán operativas hasta que \n" +" copie manualmente los archivos desde los nodos al directorio " +"atachment/collection/ de la Metaconsola." + +#: ../../enterprise/meta/advanced/collections.php:31 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:466 +#: ../../godmode/servers/plugin.php:592 +msgid "You can find more information at:" +msgstr "Encontrará más información en:" + +#: ../../enterprise/meta/advanced/collections.php:51 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:123 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:220 +#: ../../enterprise/meta/monitoring/group_view.php:192 +#: ../../enterprise/meta/monitoring/group_view.php:198 +#: ../../enterprise/meta/monitoring/tactical.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:974 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1061 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1706 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1726 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:48 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103 +#: ../../enterprise/godmode/services/services.service.php:411 +#: ../../enterprise/godmode/services/services.service.php:566 +#: ../../enterprise/include/functions_reporting.php:4466 +#: ../../enterprise/include/functions_services.php:2324 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:111 +#: ../../enterprise/operation/services/services.service.php:170 +#: ../../enterprise/operation/services/services.service.php:225 +#: ../../enterprise/operation/services/services.service_map.php:171 +#: ../../enterprise/operation/services/services.treeview_services.php:248 +#: ../../enterprise/operation/services/services.list.php:197 +#: ../../enterprise/operation/services/services.list.php:431 +#: ../../enterprise/operation/services/services.list.php:498 +#: ../../enterprise/operation/services/services.table_services.php:176 +#: ../../godmode/groups/group_list.php:870 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:260 +#: ../../godmode/massive/massive_delete_modules.php:395 +#: ../../godmode/massive/massive_delete_modules.php:416 +#: ../../godmode/massive/massive_delete_agents.php:137 +#: ../../godmode/massive/massive_edit_agents.php:424 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/massive/massive_edit_modules.php:359 +#: ../../godmode/massive/massive_edit_modules.php:444 +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../godmode/servers/plugin.php:602 ../../mobile/operation/agents.php:41 +#: ../../mobile/operation/modules.php:50 +#: ../../include/functions_reporting_html.php:1899 +#: ../../include/functions.php:1038 ../../include/functions.php:1275 +#: ../../include/functions.php:1278 ../../include/functions.php:1317 +#: ../../include/functions_graph.php:3485 +#: ../../include/functions_graph.php:3486 +#: ../../include/functions_graph.php:4959 ../../include/functions_ui.php:291 +#: ../../include/functions_ui.php:2568 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/class/Diagnostics.class.php:1800 +#: ../../include/class/AgentWizard.class.php:442 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:285 +#: ../../include/lib/Dashboard/Widgets/service_map.php:333 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:624 +#: ../../include/functions_events.php:3108 ../../operation/tree.php:160 +#: ../../operation/tree.php:204 ../../operation/tree.php:372 +#: ../../operation/agentes/estado_agente.php:238 +#: ../../operation/agentes/status_monitor.php:381 +#: ../../operation/agentes/group_view.php:198 +#: ../../operation/agentes/group_view.php:203 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/tactical.php:148 +#: ../../operation/netflow/nf_live_view.php:451 +#: ../../operation/gis_maps/render_view.php:152 +msgid "Warning" +msgstr "Advertencia" + +#: ../../enterprise/meta/advanced/collections.php:122 +msgid "Deleted collection to the nodes" +msgstr "Colección eliminada de los nodos" + +#: ../../enterprise/meta/advanced/collections.php:123 +msgid "The collection could not be deleted to the nodes" +msgstr "La colección no se ha podido eliminar de los nodos" + +#: ../../enterprise/meta/advanced/collections.php:134 +#: ../../enterprise/meta/advanced/collections.php:156 +#: ../../enterprise/godmode/agentes/collection_manager.php:100 +#: ../../enterprise/godmode/agentes/collections.php:182 +#: ../../enterprise/godmode/agentes/collections.php:204 +msgid "Successful create collection package." +msgstr "Paquete de la colección creado correctamente" + +#: ../../enterprise/meta/advanced/collections.php:157 +#: ../../enterprise/godmode/agentes/collection_manager.php:101 +#: ../../enterprise/godmode/agentes/collections.php:205 +msgid "Can not create collection package." +msgstr "No se puede crear el paquete de la colección" + +#: ../../enterprise/meta/advanced/collections.php:171 +msgid "Added collection to the nodes" +msgstr "Colección añadida a los nodos" + +#: ../../enterprise/meta/advanced/collections.php:172 +msgid "The collection could not be added to the nodes" +msgstr "No se ha podido añadir la colección a los nodos" + +#: ../../enterprise/meta/advanced/collections.php:255 +msgid "To manage collections you must activate centralized management" +msgstr "Para administrar colecciones, active la gestión centralizada" + +#: ../../enterprise/meta/advanced/collections.php:260 +#: ../../enterprise/godmode/agentes/collections.php:239 +msgid "Error: The main directory of collections does not exist." +msgstr "Error: el directorio principal de las colecciones no existe" + +#: ../../enterprise/meta/advanced/collections.php:319 +#: ../../enterprise/godmode/agentes/collections.php:321 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:201 +#: ../../godmode/agentes/configurar_agente.php:606 +msgid "Collection" +msgstr "Colección" + +#: ../../enterprise/meta/advanced/collections.php:320 +#: ../../enterprise/godmode/agentes/collection_manager.php:116 +#: ../../enterprise/godmode/agentes/collections.php:322 +#: ../../enterprise/godmode/policies/policy_collections.php:150 +#: ../../enterprise/godmode/policies/policy_collections.php:245 +msgid "Short Name" +msgstr "Nombre corto" + +#: ../../enterprise/meta/advanced/collections.php:346 +#: ../../enterprise/godmode/agentes/collections.php:347 +msgid "Are you sure to delete?" +msgstr "¿Estás seguro de que quieres eliminarlo?" + +#: ../../enterprise/meta/advanced/collections.php:347 +#: ../../enterprise/godmode/agentes/collections.php:348 +msgid "Delete collection" +msgstr "Eliminar colección" + +#: ../../enterprise/meta/advanced/collections.php:353 +#: ../../enterprise/godmode/agentes/collections.php:355 +msgid "Are you sure to re-apply?" +msgstr "¿Estás seguro de que quieres volver a aplicarlo?" + +#: ../../enterprise/meta/advanced/collections.php:354 +#: ../../enterprise/godmode/agentes/collections.php:356 +msgid "Re-Apply changes" +msgstr "Volver a aplicar los cambios" + +#: ../../enterprise/meta/advanced/collections.php:361 +#: ../../enterprise/godmode/agentes/collections.php:363 +msgid "Are you sure to apply?" +msgstr "¿Estás seguro de que quieres aplicarlo?" + +#: ../../enterprise/meta/advanced/collections.php:362 +#: ../../enterprise/godmode/agentes/collections.php:364 +msgid "Apply changes" +msgstr "Aplicar cambios" + +#: ../../enterprise/meta/advanced/collections.php:398 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "No hay colecciones definidas todavía" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:62 +msgid "Operation successfully deleted from the queue" +msgstr "Operación eliminada correctamente de la cola" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "Operation cannot be deleted from the queue" +msgstr "La operación no puede ser eliminada de la cola." + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:613 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:361 +#: ../../enterprise/godmode/policies/policy_queue.php:416 +#: ../../enterprise/godmode/policies/policy_queue.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:140 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../extensions/api_checker.php:156 ../../extensions/net_tools.php:345 +#: ../../godmode/extensions.php:146 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../include/functions_reporting_html.php:1784 +#: ../../include/functions_reporting_html.php:3662 +#: ../../include/functions_menu.php:604 +msgid "Operation" +msgstr "Operación" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:420 +msgid "Apply (database and files)" +msgstr "Aplicar (base de datos y archivos)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:311 +#: ../../enterprise/godmode/policies/policy_queue.php:421 +#: ../../enterprise/godmode/policies/policy_queue.php:511 +msgid "Apply (only database)" +msgstr "Aplicar (solo en la base de datos)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:431 +msgid "Complete" +msgstr "Completo" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:432 +msgid "Incomplete" +msgstr "Incompleto" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/extensions/backup/main.php:120 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1516 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:141 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policies.php:363 +#: ../../enterprise/godmode/policies/policy_linking.php:101 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:192 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:254 +#: ../../enterprise/godmode/setup/setup_skins.php:93 +#: ../../enterprise/godmode/setup/setup_acl.php:442 +#: ../../enterprise/include/class/SAPView.class.php:400 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2779 +#: ../../enterprise/operation/services/services.treeview_services.php:139 +#: ../../enterprise/operation/services/services.treeview_services.php:144 +#: ../../enterprise/operation/services/services.list.php:380 +#: ../../enterprise/operation/services/services.list.php:385 +#: ../../enterprise/operation/services/services.table_services.php:356 +#: ../../enterprise/operation/services/services.table_services.php:361 +#: ../../godmode/modules/manage_network_templates_form.php:265 +#: ../../godmode/modules/manage_network_templates_form.php:325 +#: ../../godmode/agentes/module_manager.php:48 +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/snmpconsole/snmp_alert.php:1134 +#: ../../godmode/snmpconsole/snmp_filters.php:182 +#: ../../godmode/snmpconsole/snmp_filters.php:259 +#: ../../godmode/admin_access_logs.php:90 +#: ../../godmode/admin_access_logs.php:97 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:861 +#: ../../godmode/tag/tag.php:180 ../../include/functions_ui.php:3318 +#: ../../include/functions_ui.php:3337 ../../include/functions_ui.php:3348 +#: ../../include/class/ModuleTemplates.class.php:691 +#: ../../operation/tree.php:193 ../../operation/agentes/graphs.php:258 +#: ../../operation/agentes/estado_monitores.php:587 +#: ../../operation/agentes/alerts_status.functions.php:121 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/netflow/nf_live_view.php:383 +#: ../../operation/incidents/incident.php:293 +#: ../../operation/incidents/list_integriaims_incidents.php:227 +#: ../../operation/incidents/list_integriaims_incidents.php:231 +msgid "Filter" +msgstr "Filtro" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:324 +#: ../../enterprise/meta/agentsearch.php:92 +#: ../../enterprise/godmode/modules/local_components.php:525 +#: ../../enterprise/godmode/alerts/alert_events_list.php:451 +#: ../../godmode/modules/manage_network_components.php:611 +#: ../../godmode/users/user_list.php:293 +#: ../../godmode/alerts/alert_actions.php:214 +#: ../../godmode/alerts/alert_templates.php:320 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:193 ../../godmode/tag/tag.php:302 +#: ../../operation/tree.php:238 ../../operation/agentes/alerts_status.php:458 +#: ../../operation/agentes/status_monitor.php:720 +#: ../../operation/events/events_list.php:1088 +msgid "Show Options" +msgstr "Mostrar opciones" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:97 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:691 +#: ../../enterprise/meta/include/functions_wizard_meta.php:173 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1794 +#: ../../enterprise/meta/agentsearch.php:112 +#: ../../enterprise/meta/agentsearch.php:300 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1772 +#: ../../enterprise/include/class/CSVImportAgents.class.php:152 +#: ../../enterprise/include/class/SAPView.class.php:207 +#: ../../enterprise/include/functions_events.php:283 +#: ../../godmode/agentes/agent_manager.php:380 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../godmode/massive/massive_edit_agents.php:581 +#: ../../godmode/reporting/reporting_builder.item_editor.php:910 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +#: ../../include/functions_events.php:6001 +#: ../../operation/events/events_list.php:807 +#: ../../operation/events/events.php:1052 +#: ../../operation/events/events.build_table.php:156 +#: ../../operation/servers/recon_view.php:174 +msgid "Server" +msgstr "Servidor" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1254 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1259 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1264 +#: ../../enterprise/godmode/policies/policy_queue.php:461 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:673 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:441 +#: ../../operation/servers/recon_view.php:109 +#: ../../operation/servers/recon_view.php:158 +msgid "Progress" +msgstr "Progreso" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:337 +#: ../../enterprise/godmode/policies/policy_queue.php:541 +msgid "Delete from queue" +msgstr "Eliminar de la cola" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +msgid "Empty queue." +msgstr "Cola vacía" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:95 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:689 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:356 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:612 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3468 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/extensions/ipam/ipam_network.php:325 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:212 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:396 +#: ../../enterprise/godmode/agentes/collections.agents.php:106 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:82 +#: ../../enterprise/godmode/policies/policy_linking.php:122 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/services/services.elements.php:616 +#: ../../enterprise/godmode/services/services.elements.php:641 +#: ../../enterprise/godmode/services/services.elements.php:656 +#: ../../enterprise/godmode/services/services.elements.php:663 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1879 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3148 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3357 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:287 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/include/functions_inventory.php:253 +#: ../../enterprise/include/functions_inventory.php:710 +#: ../../enterprise/include/functions_inventory.php:766 +#: ../../enterprise/include/functions_reporting_pdf.php:465 +#: ../../enterprise/include/functions_reporting_pdf.php:473 +#: ../../enterprise/include/functions_reporting_pdf.php:481 +#: ../../enterprise/include/functions_reporting_pdf.php:497 +#: ../../enterprise/include/functions_reporting_pdf.php:654 +#: ../../enterprise/include/functions_alert_event.php:1131 +#: ../../enterprise/include/functions_reporting_csv.php:462 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:1303 +#: ../../enterprise/include/functions_reporting_csv.php:1349 +#: ../../enterprise/include/functions_reporting_csv.php:1422 +#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1736 +#: ../../enterprise/include/functions_reporting_csv.php:1809 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2133 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:839 +#: ../../enterprise/include/functions_reporting.php:1675 +#: ../../enterprise/include/functions_reporting.php:2009 +#: ../../enterprise/include/functions_reporting.php:2040 +#: ../../enterprise/include/functions_reporting.php:2058 +#: ../../enterprise/include/functions_reporting.php:2575 +#: ../../enterprise/include/functions_reporting.php:3567 +#: ../../enterprise/include/functions_services.php:2507 +#: ../../enterprise/include/functions_events.php:147 +#: ../../enterprise/operation/agentes/tag_view.php:577 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:147 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:412 +#: ../../enterprise/operation/log/log_viewer.php:463 +#: ../../enterprise/operation/inventory/inventory.php:224 +#: ../../extensions/agents_alerts.php:312 +#: ../../extensions/agents_alerts.php:586 ../../extensions/insert_data.php:155 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:112 +#: ../../godmode/agentes/planned_downtime.list.php:177 +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +#: ../../godmode/agentes/module_manager_editor_common.php:1219 +#: ../../godmode/gis_maps/configure_gis_map.php:517 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/alerts/alert_list.list.php:452 +#: ../../godmode/alerts/alert_list.list.php:696 +#: ../../godmode/alerts/alert_view.php:64 +#: ../../godmode/alerts/alert_list.builder.php:55 +#: ../../godmode/reporting/reporting_builder.list_items.php:377 +#: ../../godmode/reporting/create_container.php:355 +#: ../../godmode/reporting/create_container.php:522 +#: ../../godmode/reporting/create_container.php:593 +#: ../../godmode/reporting/graph_builder.graph_editor.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1301 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2852 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3281 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3305 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:470 +#: ../../godmode/reporting/visual_console_builder.wizard.php:758 +#: ../../godmode/reporting/visual_console_builder.wizard.php:781 +#: ../../godmode/servers/plugin.php:70 ../../mobile/operation/agents.php:75 +#: ../../mobile/operation/agents.php:388 ../../mobile/operation/modules.php:570 +#: ../../mobile/operation/home.php:92 ../../mobile/operation/alerts.php:316 +#: ../../mobile/operation/events.php:553 +#: ../../include/functions_visual_map_editor.php:388 +#: ../../include/functions_visual_map_editor.php:421 +#: ../../include/functions_reporting_html.php:492 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:965 +#: ../../include/functions_reporting_html.php:973 +#: ../../include/functions_reporting_html.php:1782 +#: ../../include/functions_reporting_html.php:2307 +#: ../../include/functions_reporting_html.php:2399 +#: ../../include/functions_reporting_html.php:2702 +#: ../../include/functions_reporting_html.php:2760 +#: ../../include/functions_reporting_html.php:2768 +#: ../../include/functions_reporting_html.php:2776 +#: ../../include/functions_reporting_html.php:2788 +#: ../../include/functions_reporting_html.php:2908 +#: ../../include/functions_reporting_html.php:3031 +#: ../../include/functions_reporting_html.php:3116 +#: ../../include/functions_reporting_html.php:3659 +#: ../../include/functions_reporting_html.php:3715 +#: ../../include/functions_reporting_html.php:3753 +#: ../../include/functions_reporting_html.php:4062 +#: ../../include/functions_reporting_html.php:4102 +#: ../../include/functions_reporting_html.php:4352 +#: ../../include/functions_reporting_html.php:5113 +#: ../../include/ajax/alert_list.ajax.php:436 +#: ../../include/functions_graph.php:5175 ../../include/functions_gis.php:229 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:540 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:307 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:331 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:492 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:196 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:572 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:213 +#: ../../include/class/NetworkMap.class.php:2856 +#: ../../include/class/NetworkMap.class.php:2909 +#: ../../include/class/NetworkMap.class.php:3158 +#: ../../include/functions_reporting.php:4982 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:248 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 +#: ../../include/lib/Dashboard/Widgets/module_value.php:290 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 +#: ../../include/lib/Dashboard/Widgets/module_status.php:306 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1299 +#: ../../operation/search_agents.php:41 ../../operation/search_agents.php:47 +#: ../../operation/agentes/alerts_status.php:521 +#: ../../operation/agentes/alerts_status.php:591 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:704 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1139 +#: ../../operation/agentes/estado_monitores.php:116 +#: ../../operation/agentes/ver_agente.php:991 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 +#: ../../operation/search_alerts.php:33 +#: ../../operation/incidents/incident_detail.php:376 +#: ../../operation/search_modules.php:32 +#: ../../operation/events/sound_events.php:77 +#: ../../operation/events/events.php:1637 +#: ../../operation/events/events.build_table.php:80 +msgid "Agent" +msgstr "Agente" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:96 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +#: ../../enterprise/godmode/servers/HA_cluster.php:122 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../enterprise/include/class/DeploymentCenter.class.php:715 +#: ../../enterprise/include/class/DeploymentCenter.class.php:765 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1240 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 #: ../../extensions/api_checker.php:123 ../../extensions/users_connected.php:78 #: ../../godmode/admin_access_logs.php:75 #: ../../godmode/admin_access_logs.php:76 #: ../../godmode/reporting/visual_console_builder.elements.php:693 #: ../../include/functions_visual_map_editor.php:1363 -#: ../../include/functions_reporting_html.php:2328 -#: ../../include/functions_reporting_html.php:2612 +#: ../../include/functions_reporting_html.php:2324 +#: ../../include/functions_reporting_html.php:2608 #: ../../operation/network/network_report.php:195 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 -#: ../../enterprise/godmode/servers/HA_cluster.php:122 -#: ../../enterprise/include/class/DeploymentCenter.class.php:714 -#: ../../enterprise/include/class/DeploymentCenter.class.php:761 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1235 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:96 msgid "IP" msgstr "IP" -#: ../../extensions/api_checker.php:128 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:98 +#: ../../godmode/massive/massive_edit_modules.php:440 +msgid "Agent Status" +msgstr "Estado de agente" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:113 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:219 +#: ../../enterprise/meta/monitoring/group_view.php:191 +#: ../../enterprise/meta/monitoring/group_view.php:197 +#: ../../enterprise/meta/monitoring/tactical.php:241 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/include/functions_services.php:2312 +#: ../../enterprise/operation/agentes/tag_view.php:110 +#: ../../enterprise/operation/services/services.treeview_services.php:263 +#: ../../godmode/groups/group_list.php:885 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../godmode/massive/massive_copy_modules.php:99 +#: ../../godmode/massive/massive_copy_modules.php:259 +#: ../../godmode/massive/massive_delete_modules.php:394 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_delete_agents.php:136 +#: ../../godmode/massive/massive_edit_agents.php:423 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../godmode/massive/massive_edit_modules.php:443 +#: ../../mobile/operation/agents.php:40 ../../mobile/operation/modules.php:49 +#: ../../include/functions_reporting_html.php:1897 +#: ../../include/functions.php:1034 ../../include/functions.php:1273 +#: ../../include/functions.php:1280 ../../include/functions.php:1313 +#: ../../include/functions_graph.php:3475 +#: ../../include/functions_graph.php:3476 +#: ../../include/functions_graph.php:4955 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:284 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:639 +#: ../../include/functions_events.php:3104 ../../operation/tree.php:159 +#: ../../operation/tree.php:203 ../../operation/tree.php:387 +#: ../../operation/agentes/estado_agente.php:237 +#: ../../operation/agentes/status_monitor.php:380 +#: ../../operation/agentes/group_view.php:197 +#: ../../operation/agentes/group_view.php:202 +#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/tactical.php:149 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Normal" +msgstr "Normal" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:118 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:221 +#: ../../enterprise/meta/monitoring/group_view.php:193 +#: ../../enterprise/meta/monitoring/group_view.php:199 +#: ../../enterprise/meta/monitoring/tactical.php:239 +#: ../../enterprise/meta/include/functions_wizard_meta.php:983 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1070 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1715 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1733 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:104 +#: ../../enterprise/godmode/services/services.service.php:407 +#: ../../enterprise/godmode/services/services.elements.php:751 +#: ../../enterprise/include/functions_reporting.php:2882 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4471 +#: ../../enterprise/include/functions_reporting.php:5420 +#: ../../enterprise/include/functions_services.php:2320 +#: ../../enterprise/include/functions_services.php:2484 +#: ../../enterprise/operation/agentes/tag_view.php:112 +#: ../../enterprise/operation/services/services.service.php:169 +#: ../../enterprise/operation/services/services.service.php:219 +#: ../../enterprise/operation/services/services.service_map.php:170 +#: ../../enterprise/operation/services/services.treeview_services.php:243 +#: ../../enterprise/operation/services/services.list.php:198 +#: ../../enterprise/operation/services/services.list.php:430 +#: ../../enterprise/operation/services/services.list.php:492 +#: ../../enterprise/operation/services/services.table_services.php:177 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/groups/group_list.php:865 +#: ../../godmode/massive/massive_copy_modules.php:101 +#: ../../godmode/massive/massive_copy_modules.php:261 +#: ../../godmode/massive/massive_delete_modules.php:396 +#: ../../godmode/massive/massive_delete_modules.php:417 +#: ../../godmode/massive/massive_delete_agents.php:138 +#: ../../godmode/massive/massive_edit_agents.php:425 +#: ../../godmode/massive/massive_edit_modules.php:360 +#: ../../godmode/massive/massive_edit_modules.php:445 +#: ../../mobile/operation/agents.php:39 ../../mobile/operation/modules.php:51 +#: ../../include/functions_reporting_html.php:775 +#: ../../include/functions_reporting_html.php:1898 +#: ../../include/functions_reporting_html.php:3575 +#: ../../include/functions.php:1042 ../../include/functions.php:1277 +#: ../../include/functions.php:1278 ../../include/functions.php:1280 +#: ../../include/functions.php:1321 ../../include/functions_graph.php:3495 +#: ../../include/functions_graph.php:3496 +#: ../../include/functions_graph.php:4963 ../../include/functions_ui.php:2568 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/class/AgentWizard.class.php:443 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:286 +#: ../../include/lib/Dashboard/Widgets/service_map.php:332 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:619 +#: ../../include/functions_events.php:3112 ../../operation/tree.php:161 +#: ../../operation/tree.php:205 ../../operation/tree.php:367 +#: ../../operation/agentes/estado_agente.php:239 +#: ../../operation/agentes/status_monitor.php:382 +#: ../../operation/agentes/group_view.php:199 +#: ../../operation/agentes/group_view.php:204 +#: ../../operation/agentes/estado_monitores.php:514 +#: ../../operation/agentes/tactical.php:147 +#: ../../operation/gis_maps/render_view.php:151 +msgid "Critical" +msgstr "Crítico" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 +#: ../../enterprise/meta/monitoring/group_view.php:189 +#: ../../enterprise/meta/monitoring/group_view.php:195 +#: ../../enterprise/meta/monitoring/tactical.php:242 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:105 +#: ../../enterprise/include/functions_cron.php:549 +#: ../../enterprise/include/functions_reporting_pdf.php:578 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:222 +#: ../../enterprise/include/functions_reporting.php:1712 +#: ../../enterprise/include/functions_reporting.php:2623 +#: ../../enterprise/include/functions_reporting.php:3616 +#: ../../enterprise/include/functions_reporting.php:4476 +#: ../../enterprise/include/functions_reporting.php:5380 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:579 +#: ../../enterprise/operation/agentes/transactional_map.php:330 +#: ../../enterprise/operation/agentes/transactional_map.php:348 +#: ../../enterprise/operation/agentes/tag_view.php:113 +#: ../../enterprise/operation/services/services.service.php:231 +#: ../../enterprise/operation/services/services.service_map.php:173 +#: ../../enterprise/operation/services/services.treeview_services.php:253 +#: ../../enterprise/operation/services/services.list.php:199 +#: ../../enterprise/operation/services/services.list.php:505 +#: ../../enterprise/operation/services/services.table_services.php:178 +#: ../../extensions/module_groups.php:52 +#: ../../godmode/groups/group_list.php:875 +#: ../../godmode/massive/massive_copy_modules.php:102 +#: ../../godmode/massive/massive_copy_modules.php:262 +#: ../../godmode/massive/massive_delete_modules.php:397 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_agents.php:139 +#: ../../godmode/massive/massive_edit_agents.php:426 +#: ../../godmode/massive/massive_edit_modules.php:361 +#: ../../godmode/massive/massive_edit_modules.php:446 +#: ../../godmode/alerts/alert_list.builder.php:282 +#: ../../mobile/operation/agents.php:42 ../../mobile/operation/modules.php:52 +#: ../../include/functions_reporting_html.php:1887 +#: ../../include/functions_reporting_html.php:1900 +#: ../../include/functions_reporting_html.php:2514 +#: ../../include/functions_reporting_html.php:2867 +#: ../../include/functions.php:1228 ../../include/functions.php:3798 +#: ../../include/ajax/module.php:936 ../../include/functions_ui.php:538 +#: ../../include/functions_ui.php:539 +#: ../../include/functions_visual_map.php:2455 +#: ../../include/functions_visual_map.php:2483 +#: ../../include/functions_visual_map.php:2501 +#: ../../include/functions_visual_map.php:2519 +#: ../../include/functions_alerts.php:685 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:550 ../../include/functions_maps.php:54 +#: ../../include/functions_netflow.php:1608 +#: ../../include/functions_reporting.php:4592 +#: ../../include/functions_filemanager.php:681 +#: ../../include/lib/Dashboard/Widgets/events_list.php:549 +#: ../../include/lib/Dashboard/Widgets/service_map.php:335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:408 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:629 +#: ../../include/functions_events.php:3016 +#: ../../include/functions_events.php:5179 ../../operation/tree.php:162 +#: ../../operation/tree.php:206 ../../operation/tree.php:377 +#: ../../operation/agentes/estado_agente.php:240 +#: ../../operation/agentes/status_monitor.php:383 +#: ../../operation/agentes/group_view.php:195 +#: ../../operation/agentes/group_view.php:200 +#: ../../operation/agentes/estado_monitores.php:519 +#: ../../operation/agentes/pandora_networkmap.view.php:266 +#: ../../operation/agentes/tactical.php:150 +#: ../../operation/events/events.php:1929 +msgid "Unknown" +msgstr "Desconocido" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:132 +msgid "No init" +msgstr "No iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:48 +msgid "Custom fields View" +msgstr "Vista de campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:60 +msgid "Custom Fields View" +msgstr "Vista de campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:160 +#: ../../enterprise/godmode/policies/policies.php:350 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:567 +#: ../../extensions/agents_modules.php:392 +#: ../../godmode/agentes/modificar_agente.php:204 +#: ../../godmode/agentes/planned_downtime.editor.php:936 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +#: ../../operation/agentes/estado_agente.php:226 +msgid "Recursion" +msgstr "Recurrencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:170 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../godmode/events/event_edit_filter.php:580 +#: ../../operation/events/events_list.php:795 +#: ../../operation/events/events.php:1063 +msgid "Module search" +msgstr "Búsqueda por módulo" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:197 +msgid "Custom Fields Data" +msgstr "Datos de campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:223 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:106 +#: ../../enterprise/operation/agentes/tag_view.php:114 +#: ../../godmode/massive/massive_copy_modules.php:103 +#: ../../godmode/massive/massive_copy_modules.php:263 +#: ../../godmode/massive/massive_delete_modules.php:398 +#: ../../godmode/massive/massive_delete_modules.php:419 +#: ../../godmode/massive/massive_delete_agents.php:140 +#: ../../godmode/massive/massive_edit_agents.php:427 +#: ../../godmode/massive/massive_edit_modules.php:362 +#: ../../godmode/massive/massive_edit_modules.php:447 +#: ../../godmode/events/event_edit_filter.php:281 +#: ../../mobile/operation/modules.php:53 ../../include/functions.php:1279 +#: ../../include/lib/Dashboard/Widgets/events_list.php:262 +#: ../../include/functions_events.php:3064 +#: ../../operation/agentes/estado_agente.php:241 +#: ../../operation/agentes/status_monitor.php:384 +#: ../../operation/events/events_list.php:928 +#: ../../operation/events/events.php:891 +msgid "Not normal" +msgstr "No normal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:225 +#: ../../enterprise/meta/monitoring/group_view.php:190 +#: ../../enterprise/meta/monitoring/group_view.php:196 +#: ../../enterprise/meta/monitoring/tactical.php:243 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:107 +#: ../../enterprise/operation/agentes/transactional_map.php:336 +#: ../../enterprise/operation/agentes/tag_view.php:116 +#: ../../enterprise/operation/services/services.treeview_services.php:258 +#: ../../godmode/groups/group_list.php:880 +#: ../../godmode/massive/massive_copy_modules.php:104 +#: ../../godmode/massive/massive_copy_modules.php:264 +#: ../../godmode/massive/massive_delete_modules.php:399 +#: ../../godmode/massive/massive_delete_modules.php:420 +#: ../../godmode/massive/massive_delete_agents.php:141 +#: ../../godmode/massive/massive_edit_agents.php:428 +#: ../../godmode/massive/massive_edit_modules.php:363 +#: ../../godmode/massive/massive_edit_modules.php:448 +#: ../../mobile/operation/modules.php:55 +#: ../../include/functions_reporting_html.php:592 +#: ../../include/functions_reporting_html.php:1901 +#: ../../include/functions_reporting_html.php:3445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:376 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:409 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:634 +#: ../../operation/tree.php:163 ../../operation/tree.php:207 +#: ../../operation/tree.php:382 ../../operation/agentes/estado_agente.php:242 +#: ../../operation/agentes/status_monitor.php:386 +#: ../../operation/agentes/group_view.php:196 +#: ../../operation/agentes/group_view.php:201 +#: ../../operation/agentes/tactical.php:151 +msgid "Not init" +msgstr "No iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 +msgid "Status agents" +msgstr "Agentes de estado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:247 +msgid "Status module" +msgstr "Módulo de estado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:267 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:273 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:274 +#: ../../include/ajax/events.php:622 ../../operation/events/events_list.php:364 +#: ../../operation/events/events_list.php:481 +#: ../../operation/events/events_list.php:1036 +#: ../../operation/events/events.php:991 +msgid "Save filter" +msgstr "Guardar filtro" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:281 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:287 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:288 +#: ../../include/ajax/custom_fields.php:577 ../../include/ajax/events.php:387 +#: ../../include/ajax/events.php:403 +#: ../../operation/netflow/nf_live_view.php:389 +#: ../../operation/events/events_list.php:372 +#: ../../operation/events/events_list.php:512 +#: ../../operation/events/events_list.php:523 +#: ../../operation/events/events_list.php:1039 +#: ../../operation/events/events.php:983 +msgid "Load filter" +msgstr "Cargar filtro" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:296 +#: ../../enterprise/extensions/vmware/vmware_view.php:1450 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1493 +#: ../../enterprise/include/class/AgentRepository.class.php:754 +#: ../../enterprise/include/class/Omnishell.class.php:1074 +#: ../../enterprise/operation/agentes/tag_view.php:154 +#: ../../include/class/ConfigPEN.class.php:251 +#: ../../include/class/CredentialStore.class.php:1006 +#: ../../operation/agentes/status_monitor.php:426 +#: ../../operation/incidents/incident.php:301 +msgid "Show" +msgstr "Mostrar" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:310 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:437 +#: ../../enterprise/operation/log/log_viewer.php:662 +#: ../../enterprise/operation/reporting/custom_reporting.php:62 +#: ../../godmode/modules/manage_network_templates.php:270 +#: ../../godmode/agentes/planned_downtime.list.php:524 +#: ../../godmode/admin_access_logs.php:39 +#: ../../include/graphs/functions_flot.php:359 +#: ../../include/class/ModuleTemplates.class.php:851 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:220 +msgid "Export to CSV" +msgstr "Exportar a CSV" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:337 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:339 +#: ../../enterprise/include/class/DatabaseHA.class.php:216 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:574 +#: ../../include/functions_ui.php:3359 +msgid "Processing" +msgstr "Procesando" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:364 +#: ../../mobile/operation/groups.php:143 +#: ../../include/functions_reporting_html.php:4534 +#: ../../include/functions_agents.php:3485 +msgid "Agents critical" +msgstr "Agentes críticos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:377 +#: ../../include/functions_reporting_html.php:4537 +#: ../../include/functions_agents.php:3495 +msgid "Agents warning" +msgstr "Agentes en estado de advertencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:390 +#: ../../include/functions_reporting_html.php:4543 +#: ../../include/functions_agents.php:3475 +#: ../../include/functions_agents.php:3529 +msgid "Agents ok" +msgstr "Agentes OK" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:403 +#: ../../mobile/operation/groups.php:146 +#: ../../include/functions_reporting_html.php:4546 +#: ../../include/functions_agents.php:3505 +msgid "Agents unknown" +msgstr "Agentes desconocidos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:416 +#: ../../mobile/operation/groups.php:140 +#: ../../include/functions_reporting_html.php:4552 +#: ../../include/functions_agents.php:3519 +msgid "Agents not init" +msgstr "Agentes no iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:442 +#: ../../include/functions_reporting.php:9145 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor critical" +msgstr "Monitor crítico" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:453 +#: ../../include/functions_reporting.php:9149 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor warning" +msgstr "Monitor en estado de advertencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:464 +#: ../../include/functions_reporting.php:9156 +msgid "Monitor normal" +msgstr "Monitor normal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:475 +#: ../../include/functions_reporting.php:9160 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor unknown" +msgstr "Monitor en estado desconocido" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:486 +#: ../../include/functions_reporting.php:9167 +msgid "Monitor not init" +msgstr "Monitor en estado no iniciado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:501 +#: ../../include/functions_reporting_html.php:4561 +#: ../../include/functions_reporting_html.php:4566 +msgid "Agents by status" +msgstr "Agentes por estado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:509 +#: ../../include/functions_reporting.php:9187 +#: ../../include/functions_reporting.php:9193 +msgid "Monitors by status" +msgstr "Monitores por estado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:523 +#: ../../enterprise/operation/services/services.treeview_services.php:241 +#: ../../godmode/groups/group_list.php:863 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 +#: ../../operation/tree.php:365 +msgid "Critical agents" +msgstr "Agentes críticos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 +#: ../../enterprise/operation/services/services.treeview_services.php:246 +#: ../../godmode/groups/group_list.php:868 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 +#: ../../operation/tree.php:370 +msgid "Warning agents" +msgstr "Agentes en estado de advertencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 +#: ../../enterprise/operation/services/services.treeview_services.php:261 +#: ../../godmode/groups/group_list.php:883 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:637 +#: ../../operation/tree.php:385 +msgid "Normal agents" +msgstr "Agentes en normal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 +#: ../../enterprise/operation/services/services.treeview_services.php:251 +#: ../../godmode/groups/group_list.php:873 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:627 +#: ../../operation/tree.php:375 +msgid "Unknown agents" +msgstr "Agentes en desconocido" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 +#: ../../enterprise/operation/services/services.treeview_services.php:256 +#: ../../godmode/groups/group_list.php:878 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:632 +#: ../../operation/tree.php:380 +msgid "Not init agents" +msgstr "Agentes no iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:592 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:242 +#: ../../godmode/groups/group_list.php:864 +#: ../../mobile/operation/groups.php:161 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:618 +#: ../../operation/tree.php:366 +msgid "Critical modules" +msgstr "Módulos críticos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:247 +#: ../../godmode/groups/group_list.php:869 +#: ../../mobile/operation/groups.php:158 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:623 +#: ../../operation/tree.php:371 +msgid "Warning modules" +msgstr "Módulos de advertencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:612 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:262 +#: ../../godmode/groups/group_list.php:884 +#: ../../mobile/operation/groups.php:155 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:638 +#: ../../operation/tree.php:386 +msgid "Normal modules" +msgstr "Módulos normales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:622 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:252 +#: ../../godmode/groups/group_list.php:874 +#: ../../mobile/operation/groups.php:149 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:628 +#: ../../operation/tree.php:376 +msgid "Unknown modules" +msgstr "Módulos desconocidos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:632 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:257 +#: ../../godmode/groups/group_list.php:879 +#: ../../mobile/operation/groups.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:633 +#: ../../operation/tree.php:381 +msgid "Not init modules" +msgstr "Módulos no iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:657 +msgid "Total counters" +msgstr "Contadores totales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:660 +msgid "Total Agents" +msgstr "Agentes totales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:669 +msgid "Total Modules" +msgstr "Módulos totales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:690 +msgid "I.P" +msgstr "IP" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +#: ../../include/functions_api.php:143 +msgid "No data to show." +msgstr "No hay datos." + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:712 +msgid "There are no custom search defined." +msgstr "No hay búsquedas personalizadas definidas." + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1098 +#: ../../enterprise/meta/event/custom_events.php:247 +#: ../../godmode/agentes/status_monitor_custom_fields.php:239 +#: ../../godmode/events/custom_events.php:201 +#: ../../include/class/TreeGroupEdition.class.php:92 +msgid "Confirm" +msgstr "Confirmar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:455 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:668 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:244 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:169 +#: ../../godmode/agentes/planned_downtime.list.php:403 +#: ../../godmode/menu.php:197 ../../godmode/setup/setup.php:236 +#: ../../include/functions_reports.php:854 +#: ../../include/functions_reports.php:858 +#: ../../include/class/ConfigPEN.class.php:321 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "Configuración" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1540 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1756 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1830 +msgid "Preview" +msgstr "Vista previa" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:211 +#: ../../godmode/agentes/configurar_agente.php:741 +#: ../../godmode/agentes/modificar_agente.php:758 +#: ../../operation/agentes/estado_agente.php:906 +#: ../../operation/agentes/estado_agente.php:917 +#: ../../operation/snmpconsole/snmp_statistics.php:155 +#: ../../operation/snmpconsole/snmp_view.php:901 +msgid "Create agent" +msgstr "Crear agente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "Editar agente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "Por favor, introduce una IP/Nombre de dirección válido." + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 +msgid "Advanced configuration" +msgstr "Configuración avanzada" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:618 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:232 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1535 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1751 +#: ../../enterprise/meta/agentsearch.php:120 +#: ../../enterprise/godmode/policies/policy_alerts.php:35 +#: ../../enterprise/godmode/policies/policies.php:541 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +#: ../../enterprise/godmode/alerts/alert_events.php:84 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +#: ../../enterprise/godmode/services/services.service.php:487 +#: ../../enterprise/include/functions_policies.php:3760 +#: ../../enterprise/operation/agentes/tag_view.php:586 +#: ../../extensions/agents_alerts.php:472 +#: ../../godmode/groups/configure_group.php:184 +#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/agentes/configurar_agente.php:397 +#: ../../godmode/agentes/modificar_agente.php:636 ../../godmode/menu.php:207 +#: ../../godmode/massive/massive_copy_modules.php:200 +#: ../../godmode/alerts/configure_alert_command.php:43 +#: ../../godmode/alerts/alert_actions.php:52 +#: ../../godmode/alerts/alert_commands.php:284 +#: ../../godmode/alerts/configure_alert_special_days.php:55 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/configure_alert_action.php:60 +#: ../../godmode/alerts/configure_alert_action.php:73 +#: ../../godmode/alerts/configure_alert_template.php:69 +#: ../../godmode/alerts/configure_alert_template.php:93 +#: ../../godmode/alerts/configure_alert_template.php:126 +#: ../../godmode/alerts/alert_special_days.php:45 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/alerts/alert_list.php:449 +#: ../../mobile/include/functions_web.php:24 +#: ../../mobile/operation/agents.php:84 ../../mobile/operation/agents.php:397 +#: ../../mobile/operation/home.php:65 ../../mobile/operation/agent.php:328 +#: ../../mobile/operation/alerts.php:176 +#: ../../include/functions_reporting_html.php:1918 +#: ../../include/functions_reporting_html.php:4362 +#: ../../include/functions_treeview.php:409 +#: ../../include/functions_reports.php:812 +#: ../../include/functions_reports.php:816 +#: ../../include/functions_reports.php:821 ../../operation/search_agents.php:56 +#: ../../operation/search_results.php:105 +#: ../../operation/agentes/estado_agente.php:731 +#: ../../operation/agentes/ver_agente.php:1173 +msgid "Alerts" +msgstr "Alertas" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:309 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 +#: ../../operation/snmpconsole/snmp_browser.php:574 +msgid "Create module" +msgstr "Crear módulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:376 +msgid "Edit module" +msgstr "Editar módulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:173 #, php-format -msgid "%s Console URL" -msgstr "%s URL de la consola" +msgid "Cannot connect to %s instance." +msgstr "No se ha podido conectar con la instancia de %s." -#: ../../extensions/api_checker.php:133 -msgid "API Pass" -msgstr "Contraseña de la API" +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +msgid "Invalid characters founded in module name" +msgstr "Se han encontrado caracteres no válidos en el nombre del módulo." -#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:77 -#: ../../general/login_page.php:206 ../../general/login_page.php:248 -#: ../../general/logon_ok.php:245 ../../godmode/admin_access_logs.php:86 -#: ../../godmode/admin_access_logs.php:196 -#: ../../godmode/events/custom_events.php:98 -#: ../../godmode/setup/setup_ehorus.php:77 -#: ../../godmode/setup/setup_integria.php:216 -#: ../../include/class/CredentialStore.class.php:732 -#: ../../include/class/CredentialStore.class.php:1027 -#: ../../include/functions.php:2884 ../../include/functions_config.php:652 -#: ../../include/functions_config.php:672 ../../include/functions_cron.php:454 -#: ../../include/functions_events.php:192 -#: ../../include/functions_events.php:241 -#: ../../include/functions_events.php:6026 -#: ../../include/functions_events.php:6453 -#: ../../include/functions_events.php.orig:190 -#: ../../include/functions_events.php.orig:239 -#: ../../include/functions_events.php.orig:5930 -#: ../../include/functions_events.php.orig:6357 -#: ../../include/functions_reporting_html.php:4643 -#: ../../mobile/include/user.class.php:272 -#: ../../mobile/operation/tactical.php:349 -#: ../../operation/events/events.build_table.php:202 -#: ../../operation/events/events.build_table.php:697 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:125 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:299 -#: ../../operation/search_users.php:60 ../../operation/users/user_edit.php:684 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:216 +#: ../../godmode/agentes/configurar_agente.php:718 +#: ../../godmode/agentes/configurar_agente.php:740 ../../godmode/menu.php:71 +msgid "Manage agents" +msgstr "Gestionar agentes" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:609 +#: ../../enterprise/meta/agentsearch.php:33 +#: ../../enterprise/meta/agentsearch.php:39 +#: ../../godmode/events/event_edit_filter.php:337 +#: ../../operation/events/events_list.php:755 +#: ../../operation/events/events.php:1046 +msgid "Agent search" +msgstr "Búsqueda de agente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 +msgid "Select the agent to be edited or deleted" +msgstr "Selecciona el agente que quieras editar o eliminar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:274 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:440 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:632 +#: ../../mobile/operation/agents.php:195 ../../mobile/operation/modules.php:217 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:154 +#: ../../mobile/operation/alerts.php:181 +#: ../../mobile/operation/visualmap.php:125 +#: ../../mobile/operation/visualmaps.php:114 +#: ../../mobile/operation/module_graph.php:367 +#: ../../mobile/operation/module_graph.php:379 +#: ../../mobile/operation/events.php:614 +#: ../../mobile/operation/tactical.php:104 +msgid "Back" +msgstr "Atrás" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:314 +msgid "Manage modules" +msgstr "Gestionar módulos" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:360 +msgid "Select the agent where the module will be created" +msgstr "Selecciona el agente donde quieres crear el módulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 +msgid "Create Module" +msgstr "Crear módulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:430 +msgid "Select the module to be edited or deleted" +msgstr "Selecciona el módulo para editarlo o borrarlo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:473 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:553 +#: ../../extensions/agents_alerts.php:217 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +msgid "Create alert" +msgstr "Crear alerta" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:478 +#: ../../godmode/users/configure_profile.php:243 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/alerts/alert_list.php:449 +msgid "Manage alerts" +msgstr "Gestionar alertas" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:540 +msgid "Select the module where the alert will be created" +msgstr "Selecciona el módulo donde se creará la alerta" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 +msgid "Select the alert to be edited or deleted" +msgstr "Selecciona la alerta que quieres editar o eliminar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "Por favor, introduce un nombre." + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "Por favor, introduce un intervalo." + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/massive/massive_delete_modules.php:299 +#: ../../godmode/massive/massive_edit_modules.php:279 +msgid "Module type" +msgstr "Tipo módulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/functions_reporting_html.php:4103 +#: ../../include/functions_reporting_html.php:4257 +msgid "Monitor" +msgstr "Monitor" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "Comprobación web" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:253 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:675 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1862 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../extensions/agents_modules.php:395 +#: ../../godmode/modules/manage_network_components_form_common.php:122 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +#: ../../godmode/massive/massive_edit_modules.php:817 +#: ../../godmode/reporting/create_container.php:508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1286 +#: ../../mobile/operation/modules.php:159 +#: ../../mobile/operation/modules.php:160 +#: ../../mobile/operation/modules.php:268 +#: ../../mobile/operation/modules.php:269 +#: ../../include/functions_graph.php:5198 +#: ../../include/functions_treeview.php:122 +#: ../../include/functions_events.php:4137 +#: ../../operation/agentes/status_monitor.php:405 +#: ../../operation/agentes/estado_monitores.php:545 +#: ../../operation/agentes/ver_agente.php:983 +msgid "Module group" +msgstr "Grupo del módulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3475 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:21 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 +#: ../../enterprise/godmode/policies/policy_alerts.php:286 +#: ../../enterprise/godmode/policies/policy_alerts.php:502 +#: ../../enterprise/godmode/policies/policy_linking.php:123 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +#: ../../enterprise/godmode/services/services.elements.php:613 +#: ../../enterprise/godmode/services/services.elements.php:645 +#: ../../enterprise/godmode/services/services.elements.php:655 +#: ../../enterprise/godmode/services/services.elements.php:712 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1903 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3380 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 +#: ../../enterprise/include/functions_inventory.php:711 +#: ../../enterprise/include/functions_inventory.php:767 +#: ../../enterprise/include/functions_ui.php:47 +#: ../../enterprise/include/functions_reporting_pdf.php:466 +#: ../../enterprise/include/functions_reporting_pdf.php:474 +#: ../../enterprise/include/functions_reporting_pdf.php:482 +#: ../../enterprise/include/functions_reporting_pdf.php:498 +#: ../../enterprise/include/functions_alert_event.php:1132 +#: ../../enterprise/include/functions_reporting_csv.php:463 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:1304 +#: ../../enterprise/include/functions_reporting_csv.php:1350 +#: ../../enterprise/include/functions_reporting_csv.php:1423 +#: ../../enterprise/include/functions_reporting_csv.php:1542 +#: ../../enterprise/include/functions_reporting_csv.php:1737 +#: ../../enterprise/include/functions_reporting_csv.php:1810 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:840 +#: ../../enterprise/include/functions_reporting.php:1676 +#: ../../enterprise/include/functions_reporting.php:2576 +#: ../../enterprise/include/functions_reporting.php:3568 +#: ../../enterprise/include/functions_services.php:2569 +#: ../../enterprise/include/functions_events.php:157 +#: ../../enterprise/operation/agentes/policy_view.php:207 +#: ../../enterprise/operation/agentes/agent_inventory.php:69 +#: ../../enterprise/operation/inventory/inventory.php:185 +#: ../../extensions/agents_alerts.php:519 +#: ../../extensions/agents_modules.php:429 ../../extensions/insert_data.php:172 +#: ../../godmode/agentes/module_manager_editor_prediction.php:138 +#: ../../godmode/agentes/planned_downtime.list.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:1125 +#: ../../godmode/agentes/agent_manager.php:534 +#: ../../godmode/agentes/agent_manager.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:1176 +#: ../../godmode/agentes/module_manager_editor_common.php:1220 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/massive/massive_edit_agents.php:548 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/alerts/alert_list.list.php:454 +#: ../../godmode/alerts/alert_list.list.php:706 +#: ../../godmode/alerts/alert_view.php:68 +#: ../../godmode/alerts/alert_list.builder.php:69 +#: ../../godmode/reporting/reporting_builder.list_items.php:382 +#: ../../godmode/reporting/create_container.php:378 +#: ../../godmode/reporting/create_container.php:528 +#: ../../godmode/reporting/create_container.php:594 +#: ../../godmode/reporting/graph_builder.graph_editor.php:199 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1359 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3308 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:469 +#: ../../godmode/reporting/visual_console_builder.wizard.php:790 +#: ../../godmode/servers/plugin.php:71 ../../mobile/operation/alerts.php:319 +#: ../../include/functions_visual_map_editor.php:463 +#: ../../include/functions_reporting_html.php:493 +#: ../../include/functions_reporting_html.php:855 +#: ../../include/functions_reporting_html.php:1783 +#: ../../include/functions_reporting_html.php:2400 +#: ../../include/functions_reporting_html.php:2761 +#: ../../include/functions_reporting_html.php:2769 +#: ../../include/functions_reporting_html.php:2777 +#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2909 +#: ../../include/functions_reporting_html.php:3037 +#: ../../include/functions_reporting_html.php:3122 +#: ../../include/functions_reporting_html.php:3660 +#: ../../include/functions_reporting_html.php:3716 +#: ../../include/ajax/alert_list.ajax.php:278 +#: ../../include/ajax/alert_list.ajax.php:303 +#: ../../include/ajax/alert_list.ajax.php:457 +#: ../../include/functions_graph.php:5282 +#: ../../include/functions_treeview.php:64 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:557 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:410 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:324 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:348 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:510 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:213 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:591 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:231 +#: ../../include/functions_reporting.php:4983 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 +#: ../../include/lib/Dashboard/Widgets/module_value.php:308 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 +#: ../../include/lib/Dashboard/Widgets/module_status.php:324 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:641 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/alerts_status.php:522 +#: ../../operation/agentes/alerts_status.php:557 +#: ../../operation/agentes/alerts_status.php:592 +#: ../../operation/agentes/alerts_status.php:624 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:118 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:31 +msgid "Module" +msgstr "Módulo" + +#: ../../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:245 +#: ../../enterprise/meta/general/main_header.php:298 +#: ../../enterprise/meta/general/main_header.php:386 +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/godmode/modules/configure_local_component.php:161 +#: ../../godmode/modules/manage_network_components_form_common.php:66 +#: ../../godmode/users/configure_user.php:948 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/alerts/alert_commands.php:130 +#: ../../godmode/alerts/alert_commands.php:140 +#: ../../godmode/alerts/configure_alert_template.php:861 +#: ../../godmode/alerts/configure_alert_template.php:875 +#: ../../godmode/alerts/configure_alert_template.php:963 +#: ../../operation/netflow/nf_live_view.php:482 +msgid "Advanced" +msgstr "Avanzado" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:257 +msgid "Click Create to continue" +msgstr "Haz clic en Crear para continuar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:359 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 +#: ../../godmode/reporting/graph_builder.graph_editor.php:399 +msgid "Please, select a module" +msgstr "Por favor, selecciona un módulo." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 +#: ../../enterprise/godmode/alerts/alert_events.php:672 +#: ../../enterprise/godmode/wizards/Cloud.class.php:535 +#: ../../enterprise/include/class/VMware.app.php:752 +#: ../../enterprise/include/class/Omnishell.class.php:829 +#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/Aws.cloud.php:1310 +#: ../../enterprise/include/class/MySQL.app.php:906 +#: ../../enterprise/include/class/Oracle.app.php:943 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1945 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1179 +#: ../../godmode/alerts/configure_alert_template.php:1004 +#: ../../godmode/wizards/HostDevices.class.php:1192 +#: ../../include/class/CustomNetScan.class.php:723 +msgid "Finish" +msgstr "Finalizar" + +#: ../../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ás intentando añadir ya se encuentra en la lista de alertas." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:93 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:545 +#: ../../operation/incidents/incident_detail.php:141 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:136 +msgid "No description available" +msgstr "Sin descripción disponible" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:96 +#: ../../enterprise/operation/agentes/policy_view.php:157 +#: ../../enterprise/operation/agentes/policy_view.php:223 +#: ../../enterprise/operation/agentes/policy_view.php:465 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/modules/manage_network_components_form_wmi.php:60 +#: ../../godmode/alerts/configure_alert_template.php:1111 +#: ../../godmode/alerts/alert_list.builder.php:285 +#: ../../include/functions.php:2553 +msgid "Empty" +msgstr "Vacío" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 +#: ../../include/functions_events.php:3154 +#: ../../include/functions_events.php:3433 +msgid "New" +msgstr "Nuevo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 +msgid "" +"Are you sure? If the agent is on a policy, it will be removed from the " +"policy." +msgstr "" +"¿Está seguro? Si el agente esta incluido en una política, se eliminará de " +"dicha política." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 +msgid "Please, select an alert" +msgstr "Por favor, selecciona una alerta." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 +msgid "Please, select an agent" +msgstr "Por favor, selecciona un agente." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 +#: ../../enterprise/godmode/policies/policy_modules.php:1603 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:178 +#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:684 +#: ../../godmode/massive/massive_copy_modules.php:219 +#: ../../include/functions_events.php:3980 +#: ../../operation/reporting/reporting_viewer.php:255 +#: ../../general/ui/agents_list.php:146 +msgid "Loading" +msgstr "Cargando" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:109 +#: ../../enterprise/meta/include/functions_wizard_meta.php:641 +#: ../../godmode/tag/edit_tag.php:184 +#: ../../include/functions_reporting.php:5072 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "URL" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:110 +msgid "String" +msgstr "Cadena" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:111 +msgid "No agent name specified" +msgstr "No se especificó el nombre del agente." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 +msgid "Another agent already exists with the same name" +msgstr "Ya hay otro agente con ese nombre." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:114 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:414 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:417 +#: ../../godmode/agentes/module_manager_editor_common.php:568 +#: ../../godmode/agentes/module_manager_editor_common.php:570 +#, php-format +msgid "Agent interval x %s" +msgstr "Intervalo del agente x %s" + +#: ../../enterprise/meta/monitoring/group_view.php:38 +msgid "Group View" +msgstr "Vista de grupo" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +#: ../../godmode/groups/group_list.php:270 +#: ../../godmode/users/configure_user.php:892 +#: ../../operation/users/user_edit.php:340 +#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:50 +msgid "Group view" +msgstr "Vista de grupo" + +#: ../../enterprise/meta/monitoring/group_view.php:134 +msgid "Summary by status" +msgstr "Resumen por estados" + +#: ../../enterprise/meta/monitoring/group_view.php:142 +#: ../../enterprise/meta/monitoring/group_view.php:146 +msgid "% Agents not init" +msgstr "% agentes no iniciados" + +#: ../../enterprise/meta/monitoring/group_view.php:143 +msgid "% Agents Warning" +msgstr "% Agentes en advertencia" + +#: ../../enterprise/meta/monitoring/group_view.php:144 +msgid "% Agents OK" +msgstr "% Agentes OK" + +#: ../../enterprise/meta/monitoring/group_view.php:145 +msgid "% Agents Unknown" +msgstr "% monitores en estado desconocido" + +#: ../../enterprise/meta/monitoring/group_view.php:149 +msgid "% Monitors Critical" +msgstr "% monitores en estado crítico" + +#: ../../enterprise/meta/monitoring/group_view.php:150 +msgid "% Monitors Warning" +msgstr "% monitores en estado de advertencia" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "% Monitors OK" +msgstr "% monitores en estado OK" + +#: ../../enterprise/meta/monitoring/group_view.php:152 +msgid "% Monitors Unknown" +msgstr "% módulos en estado desconocido" + +#: ../../enterprise/meta/monitoring/group_view.php:153 +msgid "% Monitors Not init" +msgstr "% módulos no iniciados" + +#: ../../enterprise/meta/monitoring/group_view.php:168 +#: ../../godmode/agentes/modificar_agente.php:749 +#: ../../operation/agentes/estado_agente.php:913 +#: ../../operation/agentes/group_view.php:533 +msgid "There are no defined agents" +msgstr "No hay ningún agente definido" + +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/monitoring/group_view.php:179 +msgid "This data doesn't show in realtime" +msgstr "Estos datos no se muestran en tiempo real" + +#: ../../enterprise/meta/monitoring/group_view.php:187 +msgid "Group or Tag" +msgstr "Grupo o etiqueta" + +#: ../../enterprise/meta/monitoring/group_view.php:188 +#: ../../enterprise/include/functions_inventory.php:350 +#: ../../enterprise/include/functions_inventory.php:489 +#: ../../enterprise/operation/agentes/agent_inventory.php:240 +#: ../../enterprise/operation/services/services.treeview_services.php:233 +#: ../../godmode/groups/group_list.php:855 +#: ../../include/functions_reporting_html.php:1886 +#: ../../include/functions_reporting_html.php:1896 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 +#: ../../operation/tree.php:357 ../../operation/agentes/group_view.php:194 +msgid "Total" +msgstr "Total" + +#: ../../enterprise/meta/monitoring/group_view.php:200 +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/operation/agentes/policy_view.php:281 +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:534 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions.php:1231 ../../include/functions_agents.php:2609 +#: ../../include/functions_agents.php:2620 ../../include/functions_ui.php:1223 +#: ../../include/functions_reporting.php:10036 +#: ../../include/functions_events.php:2682 +#: ../../include/functions_events.php:3032 +#: ../../operation/agentes/group_view.php:205 +#: ../../operation/snmpconsole/snmp_view.php:963 +#: ../../operation/events/sound_events.php:75 +msgid "Alert fired" +msgstr "Alerta disparada" + +#: ../../enterprise/meta/monitoring/group_view.php:305 +#: ../../operation/agentes/group_view.php:276 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this " +"reason, an agent can be counted several times." +msgstr "" +"Esta instalación de %s está usando la funcionalidad de grupos secundarios. " +"Por ello, los agentes se pueden contar varias veces." + +#: ../../enterprise/meta/monitoring/tactical.php:40 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "Vista táctica" + +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../godmode/users/configure_user.php:893 +#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:99 +#: ../../include/lib/Dashboard/Widgets/tactical.php:176 +#: ../../include/lib/Dashboard/Widgets/tactical.php:481 +#: ../../operation/users/user_edit.php:341 +#: ../../operation/agentes/tactical.php:54 ../../operation/menu.php:47 +msgid "Tactical view" +msgstr "Vista táctica" + +#: ../../enterprise/meta/monitoring/tactical.php:251 +msgid "Report of state" +msgstr "Informe de estado" + +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:145 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/extensions/ipam/ipam_network.php:327 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../godmode/menu.php:255 ../../mobile/include/functions_web.php:23 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609 +#: ../../include/functions.php:3784 ../../include/functions_reports.php:827 +#: ../../include/functions_reports.php:831 +#: ../../include/functions_reports.php:835 ../../operation/menu.php:389 +#: ../../operation/events/events.php:799 ../../operation/events/events.php:814 +msgid "Events" +msgstr "Eventos" + +#: ../../enterprise/meta/monitoring/tactical.php:279 +msgid "Report of events" +msgstr "Informe de eventos" + +#: ../../enterprise/meta/monitoring/tactical.php:284 +msgid "Info of state in events" +msgstr "Información de estado en eventos" + +#: ../../enterprise/meta/monitoring/tactical.php:302 +msgid "More events" +msgstr "Más eventos" + +#: ../../enterprise/meta/event/custom_events.php:38 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/users/configure_profile.php:250 ../../operation/menu.php:395 +msgid "View events" +msgstr "Ver eventos" + +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:192 +#: ../../godmode/netflow/nf_edit_form.php:189 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:189 +#: ../../include/ajax/custom_fields.php:642 +msgid "Create filter" +msgstr "Crear filtro" + +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:250 +#: ../../godmode/events/events.php:50 +msgid "Event responses" +msgstr "Respuestas de evento" + +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:925 +#: ../../godmode/agentes/agent_manager.php:950 ../../godmode/menu.php:77 +#: ../../godmode/massive/massive_edit_agents.php:810 +#: ../../godmode/events/events.php:55 ../../godmode/events/events.php:67 +#: ../../include/functions_events.php:4099 +#: ../../operation/agentes/status_monitor.php:44 +#: ../../operation/agentes/status_monitor.php:57 +#: ../../operation/agentes/ver_agente.php:1257 +msgid "Custom fields" +msgstr "Campos personalizados" + +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:280 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2798 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:62 ../../godmode/events/events.php:82 +msgid "Filters" +msgstr "Filtros" + +#: ../../enterprise/meta/event/custom_events.php:79 +#: ../../godmode/events/events.php:72 ../../include/ajax/events.php:1253 +msgid "Responses" +msgstr "Respuestas" + +#: ../../enterprise/meta/event/custom_events.php:98 +msgid "The user is not in neither group with EW profile" +msgstr "" +"El usuario no se encuentra en ninguno de los grupos con el perfil EW." + +#: ../../enterprise/meta/event/custom_events.php:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:53 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1172 +msgid "Fields" +msgstr "Campos" + +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:126 +msgid "Fields available" +msgstr "Campos disponibles" + +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/events/custom_events.php:146 +msgid "Fields selected" +msgstr "Campos seleccionados" + +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:133 +msgid "Add fields to select" +msgstr "Añadir campos para seleccionar" + +#: ../../enterprise/meta/event/custom_events.php:196 +#: ../../godmode/agentes/status_monitor_custom_fields.php:179 +#: ../../godmode/events/custom_events.php:141 +msgid "Delete fields to select" +msgstr "Eliminar campos para seleccionar" + +#: ../../enterprise/meta/event/custom_events.php:205 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "Mostrar campos de eventos" + +#: ../../enterprise/meta/event/custom_events.php:246 +#: ../../godmode/agentes/status_monitor_custom_fields.php:238 +#: ../../godmode/events/custom_events.php:200 +msgid "" +"There must be at least one custom field. Timestamp will be set by default" +msgstr "" +"Debe haber al menos un campo personalizado. La marca horaria está " +"establecida por defecto." + +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "Round Robin" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "Menos cargado" + +#: ../../enterprise/meta/include/functions_autoprovision.php:447 +#: ../../enterprise/meta/include/functions_autoprovision.php:612 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1434 +#: ../../enterprise/godmode/alerts/alert_events_list.php:499 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2849 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:639 +#: ../../godmode/reporting/graph_builder.graph_editor.php:203 +#: ../../godmode/reporting/graph_builder.graph_editor.php:304 +msgid "Sort" +msgstr "Ordenar" + +#: ../../enterprise/meta/include/functions_autoprovision.php:503 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add " +"the first." +msgstr "" +"Ninguna entrada personalizada definida. Haz clic en \"Crear entrada " +"personalizada\" para añadir la primera." + +#: ../../enterprise/meta/include/functions_autoprovision.php:508 +msgid "Create custom entry" +msgstr "Crear entrada personalizada" + +#: ../../enterprise/meta/include/functions_autoprovision.php:535 +msgid "Provisioning configuration" +msgstr "Configuración de aprovisionamiento" + +#: ../../enterprise/meta/include/functions_autoprovision.php:546 +msgid "Configuration:" +msgstr "Configuración:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:584 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to " +"create the first." +msgstr "" +"No hay reglas configuradas en esta entrada personalizada. Haz clic en el " +"botón Añadir para crear la primera." + +#: ../../enterprise/meta/include/functions_autoprovision.php:614 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:227 +#: ../../extensions/quick_shell.php:154 +msgid "Method" +msgstr "Método" + +#: ../../enterprise/meta/include/functions_autoprovision.php:695 +msgid "There was an error when editing the rule." +msgstr "Error al editar la regla" + +#: ../../enterprise/meta/include/functions_autoprovision.php:709 +msgid "Operation:" +msgstr "Operación:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:723 +msgid "Method:" +msgstr "Método:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "Valor:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:788 +#: ../../enterprise/godmode/alerts/alert_events_list.php:568 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:434 +msgid "Move up" +msgstr "Subir" + +#: ../../enterprise/meta/include/functions_autoprovision.php:796 +#: ../../enterprise/godmode/alerts/alert_events_list.php:580 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 +msgid "Move down" +msgstr "Bajar" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "Error al duplicar nombre (%s) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "(Error ID Duplicado (%d) ) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "Error al duplicar nombre" + +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 +#: ../../enterprise/meta/general/main_header.php:310 +#: ../../enterprise/meta/general/main_header.php:392 +#: ../../enterprise/meta/general/main_header.php:408 +#: ../../enterprise/meta/general/main_header.php:415 +#: ../../godmode/users/profile_list.php:44 +#: ../../godmode/users/profile_list.php:55 +#: ../../godmode/users/configure_profile.php:40 +#: ../../godmode/users/configure_profile.php:51 +#: ../../godmode/users/user_list.php:135 ../../godmode/users/user_list.php:145 +#: ../../godmode/users/configure_user.php:140 +#: ../../operation/users/user_edit_header.php:90 +msgid "User management" +msgstr "Gestión de usuarios" + +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 +#: ../../godmode/users/profile_list.php:48 +#: ../../godmode/users/configure_profile.php:44 +#: ../../godmode/users/user_list.php:139 +#: ../../godmode/users/configure_user.php:144 ../../godmode/menu.php:127 +msgid "Profile management" +msgstr "Gestionar perfiles" + +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +#: ../../enterprise/meta/general/main_header.php:622 +#: ../../enterprise/meta/general/main_header.php:628 +#: ../../operation/menu.php:476 ../../general/header.php:379 +#: ../../general/header.php:389 +msgid "Edit my user" +msgstr "Editar mi usuario" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "Sincronización de usuarios" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "Sincronización de grupos" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:188 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:210 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../godmode/agentes/agent_manager.php:275 +msgid "Alias" +msgstr "Alias" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:209 +#: ../../enterprise/meta/include/functions_wizard_meta.php:213 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1466 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1811 +#: ../../godmode/agentes/agent_manager.php:284 +#: ../../godmode/servers/modificar_server.php:60 +#: ../../include/functions_reporting_html.php:3035 +#: ../../include/functions_reporting_html.php:3120 +#: ../../include/functions_treeview.php:619 +#: ../../include/functions_events.php:4075 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "Dirección IP" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:238 +#: ../../enterprise/meta/include/functions_wizard_meta.php:681 +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:47 +#: ../../enterprise/include/functions_metaconsole.php:1287 +#: ../../enterprise/include/functions_metaconsole.php:1320 +#: ../../enterprise/include/functions_metaconsole.php:1353 +#: ../../enterprise/include/functions_metaconsole.php:1386 +#: ../../enterprise/include/functions_metaconsole.php:1419 +#: ../../enterprise/include/functions_metaconsole.php:1452 +#: ../../enterprise/include/functions_metaconsole.php:1485 +msgid "Check" +msgstr "Comprobar" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:247 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1151 +#: ../../enterprise/godmode/alerts/alert_events.php:121 +#: ../../enterprise/godmode/alerts/alert_events.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:847 +#: ../../enterprise/include/class/Aws.cloud.php:282 +#: ../../godmode/alerts/configure_alert_template.php:179 +#: ../../godmode/alerts/configure_alert_template.php:183 +#: ../../godmode/setup/setup.php:89 ../../godmode/setup/setup.php:163 +#: ../../godmode/servers/plugin.php:360 ../../godmode/servers/plugin.php:365 +#: ../../include/ajax/events.php:1229 ../../include/functions_reports.php:752 +#: ../../include/functions_reporting.php:7319 +msgid "General" +msgstr "General" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:307 +#: ../../godmode/modules/manage_network_templates_form.php:329 +#: ../../include/class/ModuleTemplates.class.php:730 +msgid "Components" +msgstr "Componentes" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:309 +#: ../../enterprise/include/functions_reporting_csv.php:2119 +msgid "Agent modules" +msgstr "Módulos de agentes" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:362 +msgid "Add selected modules to agent" +msgstr "Añadir los módulos seleccionados al agente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:400 +msgid "Undo changes" +msgstr "Deshacer los cambios" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:596 +#: ../../enterprise/godmode/services/services.service.php:398 +#: ../../enterprise/operation/services/services.list.php:235 +#: ../../enterprise/operation/services/services.table_services.php:214 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:745 +#: ../../include/ajax/events.php:1515 +msgid "Auto" +msgstr "Automático" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:597 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:746 +msgid "Force primary key" +msgstr "Forzar clave primaria" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1471 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1172 +#: ../../enterprise/meta/include/functions_meta.php:1221 +#: ../../enterprise/meta/include/functions_meta.php:1270 +#: ../../enterprise/meta/general/login_page.php:109 +#: ../../enterprise/meta/general/login_page.php:151 #: ../../enterprise/extensions/disabled/check_acls.php:47 #: ../../enterprise/extensions/disabled/check_acls.php:138 #: ../../enterprise/godmode/alerts/configure_alert_rule.php:189 -#: ../../enterprise/godmode/servers/manage_export_form.php:107 -#: ../../enterprise/godmode/setup/setup_auth.php:730 -#: ../../enterprise/godmode/setup/setup_auth.php:762 +#: ../../enterprise/godmode/setup/setup_auth.php:974 +#: ../../enterprise/godmode/setup/setup_auth.php:1006 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:167 #: ../../enterprise/include/class/MySQL.app.php:521 #: ../../enterprise/include/class/Oracle.app.php:502 -#: ../../enterprise/include/functions_tasklist.php:167 -#: ../../enterprise/meta/general/login_page.php:112 -#: ../../enterprise/meta/general/login_page.php:157 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/meta/include/functions_meta.php:1165 -#: ../../enterprise/meta/include/functions_meta.php:1214 -#: ../../enterprise/meta/include/functions_meta.php:1263 -#: ../../enterprise/meta/include/functions_wizard_meta.php:516 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1471 +#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:77 +#: ../../godmode/admin_access_logs.php:86 +#: ../../godmode/admin_access_logs.php:196 +#: ../../godmode/setup/setup_ehorus.php:77 +#: ../../godmode/setup/setup_integria.php:216 +#: ../../godmode/events/custom_events.php:98 +#: ../../mobile/include/user.class.php:272 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:4687 +#: ../../include/functions.php:2889 ../../include/functions_cron.php:454 +#: ../../include/functions_config.php:653 +#: ../../include/functions_config.php:673 +#: ../../include/functions_config.php:1593 +#: ../../include/class/CredentialStore.class.php:735 +#: ../../include/class/CredentialStore.class.php:1030 +#: ../../include/functions_events.php:192 +#: ../../include/functions_events.php:241 +#: ../../include/functions_events.php:6039 +#: ../../include/functions_events.php:6466 ../../operation/search_users.php:60 +#: ../../operation/users/user_edit.php:679 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:125 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:299 +#: ../../operation/events/events.build_table.php:202 +#: ../../operation/events/events.build_table.php:697 +#: ../../general/logon_ok.php:245 ../../general/login_page.php:206 +#: ../../general/login_page.php:248 msgid "User" msgstr "Usuario" -#: ../../extensions/api_checker.php:143 ../../general/login_page.php:220 -#: ../../general/login_page.php:261 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:470 -#: ../../godmode/agentes/module_manager_editor_wmi.php:76 -#: ../../godmode/massive/massive_edit_modules.php:836 -#: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/setup/setup_ehorus.php:83 -#: ../../godmode/setup/setup_integria.php:222 -#: ../../godmode/users/configure_user.php:703 -#: ../../include/class/CredentialStore.class.php:879 -#: ../../include/class/CredentialStore.class.php:906 -#: ../../include/class/CredentialStore.class.php:1028 -#: ../../include/class/CredentialStore.class.php:1045 -#: ../../include/functions_config.php:656 -#: ../../include/functions_config.php:676 -#: ../../mobile/include/user.class.php:279 -#: ../../operation/users/user_edit.php:690 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:694 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:505 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:247 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 -#: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../enterprise/godmode/setup/setup_auth.php:736 -#: ../../enterprise/godmode/setup/setup_auth.php:768 -#: ../../enterprise/include/class/MySQL.app.php:533 -#: ../../enterprise/include/class/Oracle.app.php:514 -#: ../../enterprise/include/class/VMware.app.php:625 -#: ../../enterprise/include/functions_setup.php:44 -#: ../../enterprise/include/functions_setup.php:84 -#: ../../enterprise/include/functions_ui.php:104 -#: ../../enterprise/meta/general/login_page.php:129 -#: ../../enterprise/meta/general/login_page.php:171 -#: ../../enterprise/meta/include/functions_meta.php:1176 -#: ../../enterprise/meta/include/functions_meta.php:1225 -#: ../../enterprise/meta/include/functions_meta.php:1274 #: ../../enterprise/meta/include/functions_wizard_meta.php:520 #: ../../enterprise/meta/include/functions_wizard_meta.php:1475 +#: ../../enterprise/meta/include/functions_meta.php:1183 +#: ../../enterprise/meta/include/functions_meta.php:1232 +#: ../../enterprise/meta/include/functions_meta.php:1281 +#: ../../enterprise/meta/general/login_page.php:123 +#: ../../enterprise/meta/general/login_page.php:165 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:694 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/godmode/setup/setup_auth.php:980 +#: ../../enterprise/godmode/setup/setup_auth.php:1012 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:247 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:44 +#: ../../enterprise/include/functions_setup.php:84 +#: ../../enterprise/include/class/VMware.app.php:625 +#: ../../enterprise/include/class/MySQL.app.php:533 +#: ../../enterprise/include/class/Oracle.app.php:514 +#: ../../extensions/api_checker.php:143 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:739 +#: ../../godmode/agentes/module_manager_editor_wmi.php:76 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:469 +#: ../../godmode/massive/massive_edit_modules.php:836 +#: ../../godmode/setup/setup_ehorus.php:83 +#: ../../godmode/setup/setup_integria.php:222 +#: ../../mobile/include/user.class.php:279 +#: ../../include/functions_config.php:657 +#: ../../include/functions_config.php:677 +#: ../../include/functions_config.php:1598 +#: ../../include/class/CredentialStore.class.php:882 +#: ../../include/class/CredentialStore.class.php:909 +#: ../../include/class/CredentialStore.class.php:1031 +#: ../../include/class/CredentialStore.class.php:1048 +#: ../../include/class/AgentWizard.class.php:282 +#: ../../operation/users/user_edit.php:685 ../../general/login_page.php:220 +#: ../../general/login_page.php:261 msgid "Password" msgstr "Contraseña" -#: ../../extensions/api_checker.php:151 -msgid "Action (get or set)" -msgstr "Acción (obtener o establecer)" +#: ../../enterprise/meta/include/functions_wizard_meta.php:589 +msgid "Latency" +msgstr "Latencia" -#: ../../extensions/api_checker.php:156 ../../extensions/net_tools.php:345 -#: ../../godmode/extensions.php:146 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3301 -#: ../../include/functions_menu.php:605 -#: ../../include/functions_reporting_html.php:1784 -#: ../../include/functions_reporting_html.php:3618 -#: ../../enterprise/dashboard/widgets/top_n.php:153 -#: ../../enterprise/dashboard/widgets/top_n.php:393 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:357 -#: ../../enterprise/godmode/policies/policy_queue.php:416 -#: ../../enterprise/godmode/policies/policy_queue.php:460 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3383 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:140 -#: ../../enterprise/include/functions_reporting_csv.php:865 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -#: ../../enterprise/meta/include/functions_autoprovision.php:613 -msgid "Operation" -msgstr "Operación" +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Response" +msgstr "Respuesta" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:592 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:144 +msgid "Check type" +msgstr "Comprueba el tipo" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:609 +#: ../../enterprise/meta/include/functions_wizard_meta.php:666 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:63 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:909 +#: ../../enterprise/include/functions_enterprise.php:321 +#: ../../godmode/massive/massive_edit_modules.php:1069 +msgid "Web checks" +msgstr "Comprobaciones web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:645 +msgid "String to check" +msgstr "Cadena para comprobar" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:651 +msgid "Add check" +msgstr "Añadir comprobación" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:660 +msgid "Delete check" +msgstr "Eliminar comprobación" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:673 +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:118 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load basic" +msgstr "cargar básicos" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:679 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 +msgid "Load a basic structure on Web Checks" +msgstr "Cargar una estructura básica en las comprobaciones web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:687 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:132 +msgid "Check the correct structure of the WebCheck" +msgstr "Cargar la estructura correcta de las comprobaciones web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:694 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:198 +msgid "First line must be \"task_begin\"" +msgstr "La primera línea tiene que ser \"task_begin\"." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:199 +msgid "Webchecks configuration is empty" +msgstr "La configuración de comprobaciones web está vacía." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:200 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:201 +msgid "Last line must be \"task_end\"" +msgstr "La última línea tiene que ser \"task_end\"." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:485 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:202 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "Hay una línea con un token desconocido \"token_fail\"." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:204 +msgid "Web checks are built correctly" +msgstr "Las comprobaciones web se han efectuado correctamente." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:915 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1034 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1521 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1741 +#: ../../enterprise/meta/agentsearch.php:116 +#: ../../enterprise/extensions/ipam/ipam_list.php:138 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1204 +#: ../../enterprise/godmode/modules/configure_local_component.php:283 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:405 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:447 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:255 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:533 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:560 +#: ../../enterprise/include/class/SAP.app.php:493 +#: ../../enterprise/include/class/Aws.cloud.php:464 +#: ../../enterprise/include/class/Aws.cloud.php:1203 +#: ../../enterprise/include/class/MySQL.app.php:556 +#: ../../enterprise/include/class/Oracle.app.php:537 +#: ../../enterprise/operation/agentes/tag_view.php:581 +#: ../../enterprise/operation/agentes/tag_view.php:658 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/agent_manager.php:335 +#: ../../godmode/agentes/module_manager_editor_common.php:562 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +#: ../../godmode/agentes/module_manager.php:648 +#: ../../godmode/massive/massive_edit_agents.php:553 +#: ../../godmode/massive/massive_edit_modules.php:682 +#: ../../godmode/wizards/HostDevices.class.php:794 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:429 +#: ../../mobile/operation/modules.php:630 +#: ../../mobile/operation/modules.php:632 +#: ../../mobile/operation/modules.php:821 +#: ../../include/functions_reporting_html.php:2661 +#: ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:625 +#: ../../include/class/CustomNetScan.class.php:518 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:320 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:296 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:306 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50 +#: ../../operation/agentes/estado_agente.php:716 +#: ../../operation/agentes/status_monitor.php:1160 +#: ../../operation/agentes/estado_generalagente.php:293 +#: ../../operation/netflow/nf_live_view.php:262 +#: ../../operation/search_modules.php:34 +#: ../../operation/servers/recon_view.php:97 +msgid "Interval" +msgstr "Intervalo" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:921 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1040 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1526 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1746 +#: ../../enterprise/godmode/modules/configure_local_component.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:711 +#: ../../godmode/modules/manage_network_components_form_common.php:303 +#: ../../godmode/agentes/module_manager_editor_common.php:537 +#: ../../godmode/massive/massive_edit_modules.php:853 +#: ../../include/functions_reporting_html.php:2662 +msgid "Unit" +msgstr "Unidad" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:953 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1046 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "Varios" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:961 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1482 +#: ../../extensions/net_tools.php:392 +msgid "SNMP Community" +msgstr "Comunidad SNMP" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:968 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1054 +#: ../../enterprise/include/functions_hostdevices.php:291 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1149 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1276 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1286 +#: ../../extensions/api_checker.php:195 +msgid "Credentials" +msgstr "Credenciales" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:975 +#: ../../enterprise/meta/include/functions_wizard_meta.php:984 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1504 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1513 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:380 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1088 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2025 +#: ../../include/functions_reporting_html.php:3719 +#: ../../include/functions_ui.php:2568 +#: ../../include/functions_reporting.php:1391 +msgid "Min" +msgstr "Mín." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:977 +#: ../../enterprise/meta/include/functions_wizard_meta.php:986 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1073 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1506 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1709 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1718 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:373 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:741 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2212 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1090 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2018 +#: ../../include/functions_reporting_html.php:3718 +#: ../../include/functions_ui.php:2568 +#: ../../include/functions_reporting.php:1387 +msgid "Max" +msgstr "Máx." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:979 +#: ../../enterprise/meta/include/functions_wizard_meta.php:988 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1736 +#: ../../enterprise/godmode/modules/configure_local_component.php:325 +#: ../../enterprise/godmode/modules/configure_local_component.php:360 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:433 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:231 +#: ../../godmode/agentes/module_manager_editor_common.php:431 +#: ../../godmode/agentes/module_manager_editor_common.php:484 +#: ../../godmode/massive/massive_edit_modules.php:582 +#: ../../godmode/massive/massive_edit_modules.php:651 +msgid "Inverse interval" +msgstr "Intervalo inverso" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:993 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1080 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 +#: ../../include/ajax/module.php:846 +msgid "Thresholds" +msgstr "Umbrales" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1086 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:169 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1091 +msgid "Web configuration" +msgstr "Configuración web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +msgid "Str: " +msgstr "Cadena: " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 +msgid " Inverse interval " +msgstr " Intervalo inverso " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 +msgid "Alerts in module" +msgstr "Alertas en el módulo" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1378 +#: ../../include/functions_reporting_html.php:4063 +msgid "Alert description" +msgstr "Descripción de la alerta" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "Comprobaciones" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 +msgid "Deleted modules" +msgstr "Módulos eliminados" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2055 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2155 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2638 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2757 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2848 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3043 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:391 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:427 +msgid "Another module already exists with the same name" +msgstr "Ya existe otro módulo con el mismo nombre." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2650 +#, php-format +msgid "Error adding module %s" +msgstr "Error al añadir el módulo %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2171 +msgid "" +"There was an error creating the alerts, the operation has been cancelled" +msgstr "Error al crear las alertas; operación cancelada" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 +#: ../../enterprise/godmode/policies/policy_modules.php:863 +msgid "Successfully added module." +msgstr "Módulo añadido correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2240 +#, php-format +msgid "Could not create agent %s" +msgstr "No se pudieron crear agentes %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2244 +msgid "Agent successfully added" +msgstr "Agentes añadidos correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2260 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2340 +#, php-format +msgid "%s Modules created" +msgstr "%s módulos creados" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2303 +#, php-format +msgid "Could not update agent %s" +msgstr "No se pudo actualizar el agente %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2307 +#: ../../enterprise/include/class/AgentRepository.class.php:495 +msgid "Agent successfully updated" +msgstr "Agente actualizado correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2346 +#, php-format +msgid "%s Modules deleted" +msgstr "%s módulos eliminados" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2662 +msgid "" +"There was an error creating the alerts, the operation has been cancelled ." +msgstr "Error al crear las alertas; operación cancelada" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2692 +msgid "Module successfully added." +msgstr "Módulo añadido correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2764 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2855 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3050 +#, php-format +msgid "Error updating module %s" +msgstr "Error al actualizar el módulo %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2786 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2877 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3072 +msgid "" +"There was an error updating the alerts, the operation has been cancelled" +msgstr "Error al actualizar las alertas, operación cancelada" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2807 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2898 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3093 +msgid "Successfully updated module." +msgstr "Módulo actualizado correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3470 +msgid "Manage agent modules" +msgstr "Gestionar módulos de agentes" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "Cada día" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1687 +#: ../../enterprise/include/functions_reporting.php:1571 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2462 +#: ../../enterprise/include/functions_reporting.php:3092 +#: ../../enterprise/include/functions_reporting.php:4066 +#: ../../godmode/alerts/configure_alert_special_days.php:83 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/alerts/alert_special_days.php:265 +#: ../../godmode/alerts/alert_special_days.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1128 +#: ../../include/functions_html.php:1581 +msgid "Monday" +msgstr "Lunes" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1693 +#: ../../enterprise/include/functions_reporting.php:1572 +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../enterprise/include/functions_reporting.php:2463 +#: ../../enterprise/include/functions_reporting.php:3093 +#: ../../enterprise/include/functions_reporting.php:4067 +#: ../../godmode/alerts/configure_alert_special_days.php:84 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/alerts/alert_special_days.php:266 +#: ../../godmode/alerts/alert_special_days.php:477 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1134 +#: ../../include/functions_html.php:1582 +msgid "Tuesday" +msgstr "Martes" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1699 +#: ../../enterprise/include/functions_reporting.php:1573 +#: ../../enterprise/include/functions_reporting.php:2146 +#: ../../enterprise/include/functions_reporting.php:2464 +#: ../../enterprise/include/functions_reporting.php:3094 +#: ../../enterprise/include/functions_reporting.php:4068 +#: ../../godmode/alerts/configure_alert_special_days.php:85 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/alerts/alert_special_days.php:267 +#: ../../godmode/alerts/alert_special_days.php:481 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1140 +#: ../../include/functions_html.php:1583 +msgid "Wednesday" +msgstr "Miércoles" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/include/functions_reporting.php:1574 +#: ../../enterprise/include/functions_reporting.php:2147 +#: ../../enterprise/include/functions_reporting.php:2465 +#: ../../enterprise/include/functions_reporting.php:3095 +#: ../../enterprise/include/functions_reporting.php:4069 +#: ../../godmode/alerts/configure_alert_special_days.php:86 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/alerts/alert_special_days.php:268 +#: ../../godmode/alerts/alert_special_days.php:485 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1146 +#: ../../include/functions_html.php:1584 +msgid "Thursday" +msgstr "Jueves" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1711 +#: ../../enterprise/include/functions_reporting.php:1575 +#: ../../enterprise/include/functions_reporting.php:2148 +#: ../../enterprise/include/functions_reporting.php:2466 +#: ../../enterprise/include/functions_reporting.php:3096 +#: ../../enterprise/include/functions_reporting.php:4070 +#: ../../godmode/alerts/configure_alert_special_days.php:87 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/alerts/alert_special_days.php:269 +#: ../../godmode/alerts/alert_special_days.php:489 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1152 +#: ../../include/functions_html.php:1585 +msgid "Friday" +msgstr "Viernes" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1717 +#: ../../enterprise/include/functions_reporting.php:1576 +#: ../../enterprise/include/functions_reporting.php:2149 +#: ../../enterprise/include/functions_reporting.php:2467 +#: ../../enterprise/include/functions_reporting.php:3097 +#: ../../enterprise/include/functions_reporting.php:4071 +#: ../../godmode/alerts/configure_alert_special_days.php:88 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/alerts/alert_special_days.php:270 +#: ../../godmode/alerts/alert_special_days.php:493 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1158 +#: ../../include/functions_html.php:1586 +msgid "Saturday" +msgstr "Sábado" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1723 +#: ../../enterprise/include/functions_reporting.php:1577 +#: ../../enterprise/include/functions_reporting.php:2150 +#: ../../enterprise/include/functions_reporting.php:2468 +#: ../../enterprise/include/functions_reporting.php:3098 +#: ../../enterprise/include/functions_reporting.php:4072 +#: ../../godmode/alerts/configure_alert_special_days.php:89 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/alerts/alert_special_days.php:271 +#: ../../godmode/alerts/alert_special_days.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1164 +#: ../../include/functions_html.php:1580 +msgid "Sunday" +msgstr "Domingo" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/extensions/ipam/ipam_editor.php:197 +#: ../../enterprise/godmode/setup/setup_history.php:63 +#: ../../godmode/alerts/alert_templates.php:73 +#: ../../include/functions_config.php:1442 +msgid "Days" +msgstr "Días" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "Cada" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "y" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:298 +#: ../../enterprise/godmode/alerts/alert_events.php:522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2144 +#: ../../godmode/snmpconsole/snmp_alert.php:1020 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:624 +#: ../../godmode/alerts/alert_view.php:310 +msgid "Time threshold" +msgstr "Umbral de tiempo" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/include/functions_reporting_pdf.php:1516 +#: ../../enterprise/include/functions_reporting_pdf.php:1589 +#: ../../enterprise/include/functions_reporting_pdf.php:1702 +#: ../../enterprise/include/functions_reporting_csv.php:806 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2273 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2277 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3261 +#: ../../godmode/agentes/planned_downtime.list.php:146 +#: ../../godmode/alerts/alert_list.list.php:612 +#: ../../godmode/alerts/alert_list.list.php:615 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:125 +#: ../../include/functions_reporting_html.php:2910 +#: ../../include/functions_snmp.php:402 ../../include/functions_snmp.php:410 +#: ../../include/rest-api/index.php:318 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:448 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:509 +#: ../../operation/agentes/gis_view.php:217 +#: ../../operation/reporting/reporting_viewer.php:212 +msgid "From" +msgstr "De" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_alerts.php:535 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:324 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/godmode/alerts/alert_events_list.php:692 +#: ../../enterprise/include/functions_reporting_pdf.php:1522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:941 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:971 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2273 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2277 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2424 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3389 +#: ../../extensions/agents_alerts.php:251 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../godmode/alerts/alert_list.list.php:612 +#: ../../godmode/alerts/alert_list.list.php:733 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:121 +#: ../../include/functions_reporting_html.php:126 +#: ../../include/ajax/alert_list.ajax.php:504 +#: ../../include/functions_reporting.php:11766 +#: ../../operation/reporting/reporting_viewer.php:216 +msgid "to" +msgstr "a" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:189 +msgid "Event id" +msgstr "Identificación del evento" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:395 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503 +#: ../../include/functions_reporting_html.php:1183 +#: ../../include/functions_reporting_html.php:1191 +#: ../../include/functions_reporting_html.php:3995 +#: ../../include/functions_events.php:190 +#: ../../include/functions_events.php:2401 +#: ../../include/functions_events.php:4503 +msgid "Event name" +msgstr "Nombre del evento" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1735 +#: ../../godmode/agentes/modificar_agente.php:491 +#: ../../godmode/agentes/agent_manager.php:208 +#: ../../mobile/operation/modules.php:570 +#: ../../mobile/operation/modules.php:819 +#: ../../include/functions_reporting_html.php:2605 +#: ../../include/functions_treeview.php:599 +#: ../../include/functions_events.php:191 +#: ../../include/functions_events.php:235 +#: ../../include/functions_events.php:2406 +#: ../../include/functions_events.php:6026 +#: ../../operation/events/events.php:1618 +#: ../../operation/events/events.build_table.php:182 +msgid "Agent name" +msgstr "Nombre del agente" + +#: ../../enterprise/meta/include/functions_events_meta.php:82 +#: ../../enterprise/include/functions_inventory.php:77 +#: ../../enterprise/include/functions_inventory.php:239 +#: ../../enterprise/include/functions_inventory.php:259 +#: ../../enterprise/include/functions_inventory.php:420 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/operation/agentes/tag_view.php:663 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:239 ../../godmode/events/custom_events.php:101 +#: ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:822 ../../mobile/operation/events.php:516 +#: ../../include/functions_reporting_html.php:968 +#: ../../include/functions_reporting_html.php:976 +#: ../../include/functions_reporting_html.php:1187 +#: ../../include/functions_reporting_html.php:1194 +#: ../../include/functions_reporting_html.php:1962 +#: ../../include/functions_reporting_html.php:3997 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/ajax/custom_fields.php:405 ../../include/ajax/events.php:1500 +#: ../../include/functions_netflow.php:274 +#: ../../include/functions_events.php:195 +#: ../../include/functions_events.php:250 +#: ../../include/functions_events.php:2411 +#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:6033 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1196 +#: ../../operation/agentes/estado_generalagente.php:579 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:168 +#: ../../operation/snmpconsole/snmp_view.php:826 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:123 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:297 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/events.build_table.php:192 +msgid "Timestamp" +msgstr "Marca temporal" + +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:248 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:625 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2567 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1302 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1011 +#: ../../enterprise/include/functions_events.php:127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 +#: ../../godmode/events/event_filter.php:123 +#: ../../godmode/events/event_edit_filter.php:283 +#: ../../include/lib/Dashboard/Widgets/events_list.php:275 +#: ../../include/functions_events.php:196 +#: ../../include/functions_events.php:6057 +#: ../../operation/events/events_list.php:923 +#: ../../operation/events/events.php:901 +msgid "Event type" +msgstr "Tipo de evento" + +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/operation/agentes/tag_view.php:182 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../godmode/modules/manage_network_components.php:667 +#: ../../godmode/agentes/agent_template.php:233 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:83 +#: ../../mobile/operation/modules.php:567 +#: ../../mobile/operation/modules.php:818 ../../include/ajax/module.php:843 +#: ../../include/ajax/custom_fields.php:401 +#: ../../operation/agentes/status_monitor.php:433 +#: ../../operation/agentes/status_monitor.php:1150 +msgid "Module name" +msgstr "Nombre del módulo" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../godmode/agentes/configurar_agente.php:633 +#: ../../godmode/events/custom_events.php:104 ../../include/functions.php:3791 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:198 +#: ../../include/functions_events.php:259 +#: ../../include/functions_events.php:2484 +#: ../../include/functions_events.php:6070 +#: ../../operation/agentes/estado_monitores.php:515 +#: ../../operation/snmpconsole/snmp_view.php:519 +#: ../../operation/snmpconsole/snmp_view.php:831 +#: ../../operation/snmpconsole/snmp_view.php:1165 +#: ../../operation/events/events.build_table.php:253 +msgid "Alert" +msgstr "Alerta" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:340 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:172 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:599 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2540 +#: ../../enterprise/include/functions_reporting.php:1849 +#: ../../enterprise/include/functions_events.php:137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2331 +#: ../../godmode/events/event_filter.php:125 +#: ../../godmode/events/event_edit_filter.php:298 +#: ../../godmode/events/custom_events.php:105 +#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398 +#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:690 +#: ../../mobile/operation/events.php:691 +#: ../../include/functions_reporting_html.php:966 +#: ../../include/functions_reporting_html.php:974 +#: ../../include/functions_reporting_html.php:1185 +#: ../../include/functions_reporting_html.php:1193 +#: ../../include/functions_reporting_html.php:1960 +#: ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:343 +#: ../../include/functions_events.php:199 +#: ../../include/functions_events.php:262 +#: ../../include/functions_events.php:2393 +#: ../../include/functions_events.php:4561 +#: ../../include/functions_events.php:6076 +#: ../../operation/snmpconsole/snmp_view.php:548 +#: ../../operation/events/events_list.php:939 +#: ../../operation/events/events.php:974 +#: ../../operation/events/events.build_table.php:263 +msgid "Severity" +msgstr "Gravedad" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:599 +#: ../../godmode/events/custom_events.php:106 +#: ../../godmode/wizards/HostDevices.class.php:955 +#: ../../include/class/CustomNetScan.class.php:467 +#: ../../include/functions_events.php:200 +#: ../../include/functions_events.php:265 +#: ../../include/functions_events.php:3498 +#: ../../include/functions_events.php:6082 +#: ../../include/functions_events.php:6468 +#: ../../operation/events/events_list.php:989 +#: ../../operation/events/events.php:1025 +#: ../../operation/events/events.build_table.php:273 +#: ../../operation/events/events.build_table.php:699 +msgid "Comment" +msgstr "Comentar" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:522 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:146 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:106 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:814 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:105 +#: ../../enterprise/godmode/setup/setup_auth.php:226 +#: ../../enterprise/godmode/setup/setup_auth.php:493 +#: ../../enterprise/godmode/setup/setup_auth.php:1225 +#: ../../enterprise/operation/agentes/tag_view.php:202 +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../enterprise/operation/agentes/tag_view.php:655 +#: ../../godmode/modules/manage_network_components_form_common.php:338 +#: ../../godmode/massive/massive_copy_modules.php:156 +#: ../../godmode/massive/massive_delete_modules.php:377 +#: ../../godmode/massive/massive_delete_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:378 +#: ../../godmode/massive/massive_edit_modules.php:463 +#: ../../godmode/massive/massive_edit_modules.php:975 +#: ../../godmode/events/custom_events.php:107 ../../godmode/tag/edit_tag.php:57 +#: ../../mobile/operation/events.php:557 +#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_treeview.php:168 +#: ../../include/functions_profile.php:214 +#: ../../include/lib/Dashboard/Widgets/events_list.php:373 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:327 +#: ../../include/functions_events.php:201 +#: ../../include/functions_events.php:268 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:6088 ../../operation/tree.php:47 +#: ../../operation/users/user_edit.php:750 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/events/events.build_table.php:283 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "Etiquetas" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:203 +#: ../../include/functions_events.php:4281 +msgid "Extra id" +msgstr "ID extra" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/agentes/agent_incidents.php:95 +#: ../../godmode/setup/setup_integria.php:322 +#: ../../godmode/setup/setup_integria.php:445 +#: ../../godmode/events/custom_events.php:110 +#: ../../mobile/operation/events.php:520 ../../include/functions_events.php:204 +#: ../../include/functions_events.php:277 +#: ../../include/functions_events.php:4520 +#: ../../include/functions_events.php:6045 +#: ../../operation/incidents/incident_detail.php:294 +#: ../../operation/incidents/integriaims_export_csv.php:97 +#: ../../operation/incidents/configure_integriaims_incident.php:288 +#: ../../operation/incidents/incident.php:426 +#: ../../operation/incidents/list_integriaims_incidents.php:138 +#: ../../operation/incidents/list_integriaims_incidents.php:268 +#: ../../operation/events/events.build_table.php:212 +msgid "Owner" +msgstr "Propietario" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:111 +#: ../../include/functions_events.php:205 +#: ../../include/functions_events.php:280 +#: ../../include/functions_events.php:6106 +#: ../../operation/events/events.build_table.php:313 +msgid "ACK Timestamp" +msgstr "ACK Marca temporal" + +#: ../../enterprise/meta/include/functions_events_meta.php:126 +#: ../../godmode/events/custom_events.php:112 +#: ../../include/functions_events.php:206 +#: ../../include/functions_events.php:283 +#: ../../include/functions_events.php:4276 +#: ../../include/functions_events.php:6112 +#: ../../operation/events/events.php:2490 +#: ../../operation/events/events.build_table.php:323 +msgid "Instructions" +msgstr "Instrucciones" + +#: ../../enterprise/meta/include/functions_events_meta.php:130 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:50 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:207 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:426 +#: ../../include/functions_events.php:207 +msgid "Server name" +msgstr "Nombre del servidor" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:3926 +#: ../../include/lib/Dashboard/Widgets/module_status.php:173 +#: ../../include/lib/Dashboard/Widgets/module_status.php:556 +#: ../../include/functions_events.php:209 +#: ../../include/functions_events.php:6124 ../../operation/tree.php:219 +msgid "Module status" +msgstr "Estado del módulo" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 +#: ../../general/login_page.php:74 +msgid "Splash login" +msgstr "Splash login" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "Ir a soporte de Pandora FMS" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "Ir a " + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:52 +#: ../../enterprise/include/reset_pass.php:53 +#: ../../general/login_help_dialog.php:81 +#: ../../general/login_help_dialog.php:86 ../../general/login_page.php:142 +#: ../../general/login_page.php:145 +msgid "Support" +msgstr "Soporte" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "Ir a la Wiki de Pandora FMS" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:619 +#: ../../godmode/servers/plugin.php:507 ../../include/functions_ui.php:1422 +#: ../../include/class/ManageNetScanScripts.class.php:694 +msgid "Help" +msgstr "Ayuda" + +#: ../../enterprise/meta/include/process_reset_pass.php:94 +#: ../../enterprise/include/process_reset_pass.php:95 +#: ../../operation/users/user_edit.php:281 +msgid "New Password" +msgstr "Contraseña nueva" + +#: ../../enterprise/meta/include/process_reset_pass.php:112 +#: ../../enterprise/include/process_reset_pass.php:110 +msgid "Repeat password" +msgstr "Repetir contraseña" + +#: ../../enterprise/meta/include/process_reset_pass.php:118 +#: ../../enterprise/include/process_reset_pass.php:116 +msgid "Change password" +msgstr "Cambiar contraseña" + +#: ../../enterprise/meta/include/process_reset_pass.php:121 +#: ../../enterprise/meta/index.php:576 +#: ../../enterprise/include/process_reset_pass.php:119 ../../index.php:769 +msgid "Passwords must be the same" +msgstr "Las contraseñas deben coincidir." + +#: ../../enterprise/meta/include/process_reset_pass.php:129 +#: ../../enterprise/meta/include/reset_pass.php:105 +#: ../../enterprise/meta/general/noaccess.php:17 +#: ../../enterprise/include/process_reset_pass.php:127 +#: ../../enterprise/include/reset_pass.php:107 +msgid "Back to login" +msgstr "Volver a identificarse" + +#: ../../enterprise/meta/include/process_reset_pass.php:139 +#: ../../enterprise/meta/include/reset_pass.php:115 +#, php-format +msgid "%s NEXT GENERATION" +msgstr "%s SIGUIENTE GENERACIÓN" + +#: ../../enterprise/meta/include/process_reset_pass.php:147 +#: ../../enterprise/meta/include/reset_pass.php:123 +#: ../../enterprise/meta/general/login_page.php:201 +#: ../../include/functions_config.php:2171 +msgid "METACONSOLE" +msgstr "METACONSOLA" + +#: ../../enterprise/meta/include/process_reset_pass.php:161 +#: ../../enterprise/meta/include/reset_pass.php:137 +#: ../../enterprise/meta/general/login_page.php:216 +#: ../../enterprise/include/process_reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:154 ../../general/login_page.php:357 +msgid "Build" +msgstr "Crear" + +#: ../../enterprise/meta/include/functions_agents_meta.php:474 +#: ../../enterprise/meta/include/functions_agents_meta.php:521 +#: ../../enterprise/meta/include/functions_agents_meta.php:556 +msgid "Agents movement" +msgstr "Movimiento de agentes" + +#: ../../enterprise/meta/include/functions_agents_meta.php:482 +#: ../../enterprise/meta/include/functions_agents_meta.php:536 +msgid "Provisioning management" +msgstr "Gestión de aprovisionamiento" + +#: ../../enterprise/meta/include/functions_agents_meta.php:490 +#: ../../enterprise/meta/include/functions_agents_meta.php:546 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:409 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:661 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 +msgid "Agent autoconfiguration" +msgstr "Autoconfiguración de agente" + +#: ../../enterprise/meta/include/functions_agents_meta.php:498 +#: ../../enterprise/meta/include/functions_agents_meta.php:526 +#: ../../enterprise/meta/include/functions_agents_meta.php:531 +msgid "Group management" +msgstr "Gestionar grupos" + +#: ../../enterprise/meta/include/functions_agents_meta.php:506 +msgid "Tree group" +msgstr "Árbol de grupos" + +#: ../../enterprise/meta/include/functions_agents_meta.php:541 +msgid "Provisioning rules management" +msgstr "Gestión de reglas de aprovisionamiento" + +#: ../../enterprise/meta/include/functions_agents_meta.php:551 +msgid "Colecctions" +msgstr "Colecciones" + +#: ../../enterprise/meta/include/functions_meta.php:342 +msgid "No admin user" +msgstr "No hay usuario administrador" + +#: ../../enterprise/meta/include/functions_meta.php:361 +#: ../../include/functions_config.php:382 +msgid "Activate Metaconsole" +msgstr "Activar la Metaconsola" + +#: ../../enterprise/meta/include/functions_meta.php:469 +msgid "Netflow disable custom live view filters" +msgstr "Desactivar filtros personalizados en la vista en vivo de Netflow" + +#: ../../enterprise/meta/include/functions_meta.php:528 +msgid "Customizable section" +msgstr "Sección personalizable" + +#: ../../enterprise/meta/include/functions_meta.php:556 +msgid "Agent API" +msgstr "API del agente" + +#: ../../enterprise/meta/include/functions_meta.php:681 +#: ../../godmode/setup/setup_auth.php:279 +#: ../../include/functions_config.php:525 +msgid "Authentication method" +msgstr "Método de autentificación" + +#: ../../enterprise/meta/include/functions_meta.php:690 +#: ../../godmode/setup/setup_auth.php:53 ../../include/functions_config.php:617 +msgid "Fallback to local authentication" +msgstr "Alternativa si falla la autentificación" + +#: ../../enterprise/meta/include/functions_meta.php:699 +#: ../../enterprise/meta/include/functions_meta.php:871 +#: ../../godmode/setup/setup_auth.php:65 ../../include/functions_config.php:529 +msgid "Autocreate remote users" +msgstr "Crear usuarios remotos automáticamente" + +#: ../../enterprise/meta/include/functions_meta.php:708 +#: ../../enterprise/godmode/setup/setup_auth.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:297 +#: ../../enterprise/godmode/setup/setup_auth.php:352 +#: ../../enterprise/godmode/setup/setup_auth.php:1082 +#: ../../include/functions_config.php:533 +msgid "Autocreate profile" +msgstr "Crear el perfil automáticamente" + +#: ../../enterprise/meta/include/functions_meta.php:717 +#: ../../enterprise/godmode/setup/setup_auth.php:58 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:358 +#: ../../enterprise/godmode/setup/setup_auth.php:1088 +#: ../../include/functions_config.php:537 +msgid "Autocreate profile group" +msgstr "Crear perfil de grupo automáticamente" + +#: ../../enterprise/meta/include/functions_meta.php:726 +#: ../../enterprise/godmode/setup/setup_auth.php:65 +#: ../../enterprise/godmode/setup/setup_auth.php:310 +#: ../../enterprise/godmode/setup/setup_auth.php:365 +#: ../../enterprise/godmode/setup/setup_auth.php:1095 +#: ../../include/functions_config.php:541 +msgid "Autocreate profile tags" +msgstr "Crear etiquetas de perfil automáticamente" + +#: ../../enterprise/meta/include/functions_meta.php:735 +#: ../../enterprise/godmode/setup/setup_auth.php:316 +#: ../../include/functions_config.php:545 +msgid "Automatically assigned no hierarchy" +msgstr "Jerarquía no asignada automáticamente" + +#: ../../enterprise/meta/include/functions_meta.php:744 +#: ../../enterprise/godmode/setup/setup_auth.php:551 +#: ../../enterprise/godmode/setup/setup_auth.php:1288 +#: ../../include/functions_config.php:549 +msgid "Autocreate blacklist" +msgstr "Crear una lista negra automáticamente" + +#: ../../enterprise/meta/include/functions_meta.php:753 +#: ../../enterprise/meta/include/functions_meta.php:1003 +#: ../../godmode/setup/setup_auth.php:215 +#: ../../include/functions_config.php:721 +#: ../../operation/users/user_edit.php:397 +msgid "Double authentication" +msgstr "Doble autentificación" + +#: ../../enterprise/meta/include/functions_meta.php:764 +#: ../../enterprise/meta/include/functions_meta.php:1015 +#: ../../include/functions_config.php:725 +msgid "Session timeout" +msgstr "Sesión expirada" + +#: ../../enterprise/meta/include/functions_meta.php:775 +#: ../../enterprise/godmode/setup/setup_auth.php:559 +#: ../../enterprise/godmode/setup/setup_auth.php:1296 +#: ../../include/functions_config.php:553 +msgid "Active directory server" +msgstr "Servidor de directorio activo" + +#: ../../enterprise/meta/include/functions_meta.php:784 +#: ../../enterprise/godmode/setup/setup_auth.php:565 +#: ../../enterprise/godmode/setup/setup_auth.php:1302 +#: ../../include/functions_config.php:557 +msgid "Active directory port" +msgstr "Puerto del directorio activo" + +#: ../../enterprise/meta/include/functions_meta.php:793 +#: ../../enterprise/meta/include/functions_meta.php:1053 +#: ../../enterprise/godmode/setup/setup_auth.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1308 +#: ../../godmode/setup/setup_auth.php:133 +#: ../../include/functions_config.php:561 +#: ../../include/functions_config.php:597 +msgid "Start TLS" +msgstr "Start TLS" + +#: ../../enterprise/meta/include/functions_meta.php:802 +#: ../../enterprise/godmode/setup/setup_auth.php:341 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../include/functions_config.php:565 +msgid "Advanced Config AD" +msgstr "Configuración avanzada AD" + +#: ../../enterprise/meta/include/functions_meta.php:811 +#: ../../enterprise/godmode/setup/setup_auth.php:577 +#: ../../enterprise/godmode/setup/setup_auth.php:1314 +#: ../../include/functions_config.php:573 +msgid "Domain" +msgstr "Dominio" + +#: ../../enterprise/meta/include/functions_meta.php:820 +#: ../../enterprise/godmode/setup/setup_auth.php:399 +#: ../../enterprise/godmode/setup/setup_auth.php:1129 +#: ../../include/functions_config.php:577 +msgid "Advanced Permisions AD" +msgstr "Permisos avanzados de AD" + +#: ../../enterprise/meta/include/functions_meta.php:829 +#: ../../enterprise/godmode/setup/setup_auth.php:126 +#: ../../include/functions_config.php:581 +msgid "Advanced Permissions LDAP" +msgstr "Permisos LDAP avanzados" + +#: ../../enterprise/meta/include/functions_meta.php:838 +#: ../../enterprise/godmode/setup/setup_auth.php:103 +#: ../../include/functions_config.php:569 +msgid "Advanced Config LDAP" +msgstr "Configuración LDAP avanzada" + +#: ../../enterprise/meta/include/functions_meta.php:847 +#: ../../enterprise/meta/include/functions_meta.php:858 +#: ../../enterprise/godmode/setup/setup_auth.php:329 +#: ../../enterprise/godmode/setup/setup_auth.php:371 +#: ../../enterprise/godmode/setup/setup_auth.php:1101 +msgid "Auto enable node access" +msgstr "Auto-habilitar acceso al nodo" + +#: ../../enterprise/meta/include/functions_meta.php:883 +#: ../../include/functions_config.php:681 +msgid "Saml path" +msgstr "Ruta de SAML" + +#: ../../enterprise/meta/include/functions_meta.php:895 +#: ../../include/functions_config.php:685 +msgid "Saml source" +msgstr "Saml origen" + +#: ../../enterprise/meta/include/functions_meta.php:907 +#: ../../include/functions_config.php:689 +msgid "Saml user id parameter" +msgstr "Parámetro de ID de usuario saml" + +#: ../../enterprise/meta/include/functions_meta.php:919 +#: ../../include/functions_config.php:693 +msgid "Saml mail parameter" +msgstr "Parámetro de correo de saml" + +#: ../../enterprise/meta/include/functions_meta.php:931 +#: ../../include/functions_config.php:697 +msgid "Saml group name parameter" +msgstr "Parámetro de nombre de grupo saml" + +#: ../../enterprise/meta/include/functions_meta.php:943 +#: ../../include/functions_config.php:701 +msgid "Saml attr type parameter" +msgstr "Parámetro de tipo de attr saml" + +#: ../../enterprise/meta/include/functions_meta.php:955 +#: ../../include/functions_config.php:705 +msgid "Saml profiles and tags parameter" +msgstr "Parámetro de perfiles y etiquetas saml" + +#: ../../enterprise/meta/include/functions_meta.php:967 +#: ../../include/functions_config.php:717 +msgid "Saml profile and tag separator" +msgstr "Separador de perfil y etiqueta saml" + +#: ../../enterprise/meta/include/functions_meta.php:979 +msgid "SAML profile parameters" +msgstr "Parámetros de perfil SAML" + +#: ../../enterprise/meta/include/functions_meta.php:991 +#: ../../include/functions_config.php:713 +msgid "Saml tag parameter" +msgstr "Parámetro de etiqueta saml" + +#: ../../enterprise/meta/include/functions_meta.php:1026 +#: ../../godmode/setup/setup_auth.php:88 ../../include/functions_config.php:585 +msgid "LDAP server" +msgstr "Servidor LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1035 +#: ../../godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:589 +msgid "LDAP port" +msgstr "Puerto LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1044 +#: ../../godmode/setup/setup_auth.php:119 +#: ../../include/functions_config.php:593 +msgid "LDAP version" +msgstr "Versión LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1062 +#: ../../godmode/setup/setup_auth.php:144 +#: ../../include/functions_config.php:601 +msgid "Base DN" +msgstr "DN base" + +#: ../../enterprise/meta/include/functions_meta.php:1071 +#: ../../godmode/setup/setup_auth.php:157 +#: ../../include/functions_config.php:605 +msgid "Login attribute" +msgstr "Atributo de acceso" + +#: ../../enterprise/meta/include/functions_meta.php:1080 +#: ../../godmode/setup/setup_auth.php:170 +#: ../../include/functions_config.php:609 +msgid "Admin LDAP login" +msgstr "Inicio de sesión de administrador LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1089 +#: ../../godmode/setup/setup_auth.php:183 +#: ../../include/functions_config.php:613 +msgid "Admin LDAP password" +msgstr "Contraseña de administrador LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1101 +#: ../../enterprise/godmode/setup/setup_auth.php:79 +#: ../../include/functions_config.php:630 +msgid "Save Password" +msgstr "Guardar contraseña" + +#: ../../enterprise/meta/include/functions_meta.php:1114 +#: ../../enterprise/godmode/setup/setup_auth.php:98 +#: ../../include/functions_config.php:621 +msgid "Login user attribute" +msgstr "Identificar atributo de usuario" + +#: ../../enterprise/meta/include/functions_meta.php:1123 +#: ../../include/functions_config.php:637 +msgid "Save profile" +msgstr "Guardar perfil" + +#: ../../enterprise/meta/include/functions_meta.php:1134 +#: ../../enterprise/godmode/setup/setup_auth.php:91 +#: ../../include/functions_config.php:625 +msgid "LDAP function" +msgstr "Función LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1145 +#, php-format +msgid "%s host" +msgstr "Host %s" + +#: ../../enterprise/meta/include/functions_meta.php:1154 +#: ../../enterprise/meta/include/functions_meta.php:1203 +#: ../../enterprise/meta/include/functions_meta.php:1252 +#: ../../enterprise/godmode/setup/setup_auth.php:962 +#: ../../enterprise/godmode/setup/setup_auth.php:994 +#: ../../include/functions_config.php:645 +#: ../../include/functions_config.php:665 +msgid "MySQL port" +msgstr "Puerto de MySQL" + +#: ../../enterprise/meta/include/functions_meta.php:1163 +#: ../../enterprise/meta/include/functions_meta.php:1212 +#: ../../enterprise/meta/include/functions_meta.php:1261 +#: ../../enterprise/godmode/setup/setup_history.php:54 +#: ../../enterprise/godmode/setup/setup_auth.php:968 +#: ../../enterprise/godmode/setup/setup_auth.php:1000 +#: ../../include/functions_config.php:649 +#: ../../include/functions_config.php:669 +#: ../../include/functions_config.php:1426 +msgid "Database name" +msgstr "Nombre de la base de datos" + +#: ../../enterprise/meta/include/functions_meta.php:1194 +msgid "Babel Enterprise host" +msgstr "Servidor de Babel Enterprise" + +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/godmode/setup/setup_auth.php:988 +#: ../../include/functions_config.php:661 +msgid "Integria host" +msgstr "Servidor de Integria IMS" + +#: ../../enterprise/meta/include/functions_meta.php:1302 +#: ../../include/functions_config.php:852 +msgid "Timestamp or time comparation" +msgstr "Marca o comparación temporal" + +#: ../../enterprise/meta/include/functions_meta.php:1311 +msgid "Graph color (min)" +msgstr "Color del gráfico (mín.)" + +#: ../../enterprise/meta/include/functions_meta.php:1320 +msgid "Graph color (avg)" +msgstr "Color del gráfico (med.)" + +#: ../../enterprise/meta/include/functions_meta.php:1329 +msgid "Graph color (max)" +msgstr "Color del gráfico (máx.)" + +#: ../../enterprise/meta/include/functions_meta.php:1347 +#: ../../include/functions_config.php:900 +msgid "Data precision for reports" +msgstr "Precisión de los datos en los informes" + +#: ../../enterprise/meta/include/functions_meta.php:1431 +msgid "full scale charts" +msgstr "Gráficas a escala completa" + +#: ../../enterprise/meta/include/functions_meta.php:1440 +msgid "type mode type charts" +msgstr "tipo de gráfica" + +#: ../../enterprise/meta/include/functions_meta.php:1458 +msgid "type mode zoom charts" +msgstr "zoom de gráfica" + +#: ../../enterprise/meta/include/functions_meta.php:1476 +msgid "Type of charts" +msgstr "Tipo de gráficos" + +#: ../../enterprise/meta/include/functions_meta.php:1512 +msgid "Custom logo (white background)" +msgstr "Logo personalizado (fondo blanco)" + +#: ../../enterprise/meta/include/functions_meta.php:1530 +#: ../../include/functions_config.php:953 +msgid "Custom logo login" +msgstr "Logo personalizado en la pantalla de bienvenida" + +#: ../../enterprise/meta/include/functions_meta.php:1539 +#: ../../include/functions_config.php:957 +msgid "Custom splash login" +msgstr "Login de Splash personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1566 +#: ../../include/functions_config.php:985 +msgid "Custom title1 login" +msgstr "Título1 conexión personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1575 +#: ../../include/functions_config.php:989 +msgid "Custom title2 login" +msgstr "Título2 conexión personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1602 +msgid "Custom background login" +msgstr "Fondo personalizado del inicio de sesión" + +#: ../../enterprise/meta/include/functions_meta.php:1646 +#: ../../include/functions_config.php:929 +msgid "Font path" +msgstr "Ruta de la tipografía" + +#: ../../enterprise/meta/include/functions_meta.php:1651 +#: ../../include/functions_config.php:1348 +msgid "Use data multiplier" +msgstr "Usar multiplicador de datos" + +#: ../../enterprise/meta/include/functions_meta.php:1663 +#: ../../include/functions_config.php:1307 +msgid "Custom report info" +msgstr "Información del informe personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1324 +msgid "Font family" +msgstr "Tipo de letra" + +#: ../../enterprise/meta/include/functions_meta.php:1708 +#: ../../include/functions_config.php:1049 +msgid "Use the legacy Visual Console" +msgstr "Usar la consola visual heredada" + +#: ../../enterprise/meta/include/functions_meta.php:1713 +#: ../../include/functions_config.php:1053 +msgid "Default expiration of the Visual Console item's cache" +msgstr "" +"Caducidad del caché de los elementos de la consola visual por defecto" + +#: ../../enterprise/meta/include/functions_meta.php:1766 +#: ../../godmode/setup/performance.php:589 +#: ../../include/functions_config.php:795 +msgid "Use agent access graph" +msgstr "Usar la gráfica de acceso del agente" + +#: ../../enterprise/meta/include/functions_meta.php:1775 +msgid "Default block size migration agents" +msgstr "Tamaño del bloque de migración de agentes por defecto" + +#: ../../enterprise/meta/include/functions_meta.php:1786 +msgid "Default block size execution event" +msgstr "Evento de ejecución en bloque por defecto" + +#: ../../enterprise/meta/include/functions_meta.php:1804 +msgid "Node address default" +msgstr "Dirección del nodo por defecto" + +#: ../../enterprise/meta/include/functions_components_meta.php:56 +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../godmode/menu.php:80 +msgid "Component groups" +msgstr "Grupos de componentes" + +#: ../../enterprise/meta/include/functions_components_meta.php:60 +#: ../../enterprise/meta/include/functions_components_meta.php:84 +#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:150 +msgid "Local components" +msgstr "Componentes locales" + +#: ../../enterprise/meta/include/functions_components_meta.php:64 +#: ../../enterprise/meta/include/functions_components_meta.php:88 +msgid "Network components" +msgstr "Componentes de red" + +#: ../../enterprise/meta/include/functions_components_meta.php:68 +#: ../../enterprise/meta/include/functions_components_meta.php:92 +msgid "Plugin management" +msgstr "Gestión de plugins" + +#: ../../enterprise/meta/include/functions_components_meta.php:72 +#: ../../enterprise/meta/include/functions_components_meta.php:105 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:68 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:234 +#: ../../enterprise/godmode/menu.php:69 +#: ../../enterprise/include/functions_policies.php:3752 +msgid "Inventory modules" +msgstr "Módulos de inventario" + +#: ../../enterprise/meta/include/functions_components_meta.php:98 +msgid "Create plugin" +msgstr "Crear plugin" + +#: ../../enterprise/meta/include/functions_components_meta.php:100 +msgid "Edit plugin" +msgstr "Editar plugin" + +#: ../../enterprise/meta/include/functions_ui_meta.php:52 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "%s - Flexible Monitoring System" + +#: ../../enterprise/meta/include/functions_ui_meta.php:875 +#: ../../enterprise/include/functions_login.php:104 +#: ../../godmode/massive/massive_edit_plugins.php:867 +#: ../../godmode/massive/massive_edit_plugins.php:868 +#: ../../include/functions.php:1239 ../../include/ajax/double_auth.ajax.php:246 +#: ../../include/ajax/double_auth.ajax.php:343 +#: ../../include/ajax/double_auth.ajax.php:388 +#: ../../include/ajax/double_auth.ajax.php:503 +#: ../../include/functions_ui.php:283 +#: ../../include/class/Diagnostics.class.php:1818 +#: ../../include/functions_events.php:2706 +#: ../../include/functions_events.php:3056 +#: ../../operation/users/user_edit.php:975 +#: ../../operation/users/user_edit.php:1041 +msgid "Error" +msgstr "Error" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:121 +#: ../../enterprise/meta/include/functions_alerts_meta.php:140 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:254 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:161 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/include/functions_reporting.php:96 +#: ../../enterprise/include/functions_reporting.php:6966 +#: ../../enterprise/include/functions_reporting.php:6994 +#: ../../enterprise/include/functions_reporting.php:7055 +#: ../../godmode/agentes/configurar_agente.php:639 ../../godmode/menu.php:141 +#: ../../godmode/menu.php:217 ../../include/class/ConfigPEN.class.php:326 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "Plantillas" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:148 +#: ../../godmode/menu.php:224 +msgid "Commands" +msgstr "Comandos" + +#: ../../enterprise/meta/include/reset_pass.php:94 +#: ../../enterprise/include/reset_pass.php:96 +msgid "User to reset password" +msgstr "Usuario de la contraseña a resetear" + +#: ../../enterprise/meta/include/reset_pass.php:98 +#: ../../enterprise/meta/index.php:649 +#: ../../enterprise/include/reset_pass.php:100 ../../index.php:835 +msgid "Reset password" +msgstr "Restablecer la contraseña" + +#: ../../enterprise/meta/include/reset_pass.php:141 +#: ../../enterprise/meta/include/reset_pass.php:144 +#: ../../enterprise/include/reset_pass.php:158 +#: ../../enterprise/include/reset_pass.php:161 +msgid "Reset password failed" +msgstr "Error al restablecer la contraseña" + +#: ../../enterprise/meta/include/reset_pass.php:148 +#: ../../enterprise/meta/general/login_page.php:243 +#: ../../enterprise/meta/general/login_page.php:285 +#: ../../enterprise/include/reset_pass.php:165 ../../general/login_page.php:385 +#: ../../general/login_page.php:427 +msgid "ERROR" +msgstr "ERROR" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "Contenido del archivo no válido" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "No se han encontrado relaciones" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "El tipo de relación: %s a %s -> %s no se ha guardado" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "La relación %s -> %s no se ha guardado" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "El archivo se ha importado con éxito" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "Error al insertar relaciones" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "Cadena vacía" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "Dirección del nodo personalizada vacía" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already " +"exists in the database" +msgstr "" +"El tipo de relación: %s a %s -> %s no se ha guardado. Esta relación ya " +"existe en la base de datos" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "Error al insertar la relación %s -> %s" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "Relación creada con éxito" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "Error al eliminar la relación" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "Relación eliminada con éxito" + +#: ../../enterprise/meta/index.php:262 ../../mobile/include/user.class.php:189 +#: ../../include/ajax/double_auth.ajax.php:487 ../../index.php:320 +msgid "Invalid code" +msgstr "Código no válido" + +#: ../../enterprise/meta/index.php:274 ../../index.php:332 +msgid "The code shouldn't be empty" +msgstr "El código no debería estar vacío." + +#: ../../enterprise/meta/index.php:287 ../../index.php:345 +msgid "Expired login" +msgstr "Inicio de sesión caducado" + +#: ../../enterprise/meta/index.php:294 ../../enterprise/meta/index.php:300 +#: ../../index.php:352 ../../index.php:358 +msgid "Login error" +msgstr "Error de conexión" + +#: ../../enterprise/meta/index.php:567 ../../index.php:758 +msgid "Password changed successfully" +msgstr "Contraseña modificada correctamente" + +#: ../../enterprise/meta/index.php:573 ../../index.php:764 +msgid "Failed to change password" +msgstr "No se pudo modificar la contraseña." + +#: ../../enterprise/meta/index.php:592 ../../index.php:785 +msgid "Too much time since password change request" +msgstr "" +"Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña." + +#: ../../enterprise/meta/index.php:601 ../../index.php:794 +msgid "This user has not requested a password change" +msgstr "Este usuario no ha solicitado un cambio de contraseña." + +#: ../../enterprise/meta/index.php:617 ../../index.php:809 +msgid "Id user cannot be empty" +msgstr "El ID de usuario no puede estar vacío." + +#: ../../enterprise/meta/index.php:625 ../../index.php:817 +msgid "Error in reset password request" +msgstr "Error en la solicitud para restablecer la contraseña" + +#: ../../enterprise/meta/index.php:633 ../../index.php:825 +msgid "This user doesn't have a valid email address" +msgstr "Este usuario no tiene una dirección válida de email." + +#: ../../enterprise/meta/index.php:650 ../../index.php:836 +msgid "This is an automatically sent message for user " +msgstr "Este es un mensaje enviado automáticamente para el usuario " + +#: ../../enterprise/meta/index.php:653 ../../index.php:839 +msgid "Please click the link below to reset your password" +msgstr "Haz clic en el enlace de abajo para restablecer la contraseña." + +#: ../../enterprise/meta/index.php:655 ../../index.php:841 +msgid "Reset your password" +msgstr "Restablecer la contraseña" + +#: ../../enterprise/meta/index.php:659 ../../index.php:845 +msgid "Please do not reply to this email." +msgstr "No respondas a este email." + +#: ../../enterprise/meta/index.php:665 ../../index.php:850 +msgid "Error at sending the email" +msgstr "Error al enviar el email" + +#: ../../enterprise/meta/index.php:811 ../../enterprise/meta/index.php:890 +#: ../../index.php:1112 +msgid "Sorry! I can't find the page!" +msgstr "No se puede encontrar la página." + +#: ../../enterprise/meta/agentsearch.php:100 +msgid "Search results for" +msgstr "Buscar resultados para" + +#: ../../enterprise/meta/agentsearch.php:101 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "Agentes encontrados" + +#: ../../enterprise/meta/agentsearch.php:114 +msgid "Descrtiption" +msgstr "Descripción" + +#: ../../enterprise/meta/agentsearch.php:121 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:328 +#: ../../enterprise/operation/agentes/tag_view.php:587 +#: ../../enterprise/operation/agentes/ver_agente.php:74 +#: ../../godmode/users/user_list.php:330 +#: ../../godmode/agentes/planned_downtime.editor.php:1038 +#: ../../mobile/operation/agents.php:85 ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:409 ../../mobile/operation/agents.php:412 +#: ../../mobile/operation/agent.php:211 ../../include/ajax/module.php:849 +#: ../../include/functions_treeview.php:645 +#: ../../include/functions_events.php:4089 ../../operation/search_users.php:37 +#: ../../operation/search_agents.php:57 +#: ../../operation/agentes/estado_agente.php:734 +#: ../../operation/agentes/ver_agente.php:858 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "Último contacto" + +#: ../../enterprise/meta/agentsearch.php:275 +msgid "There are no agents included in this group" +msgstr "No hay ningún agente en este grupo" + +#: ../../enterprise/meta/agentsearch.php:289 +msgid "Policies found" +msgstr "Políticas encontradas" + +#: ../../enterprise/meta/agentsearch.php:383 +#: ../../enterprise/godmode/policies/policies.php:493 +#: ../../operation/search_policies.php:49 +msgid "Policy updated" +msgstr "Política actualizada" + +#: ../../enterprise/meta/agentsearch.php:391 +#: ../../enterprise/godmode/policies/policies.php:501 +#: ../../operation/search_policies.php:57 +msgid "Pending update policy only database" +msgstr "" +"Pendiente de actualizar la política, solo para cambios en base de datos." + +#: ../../enterprise/meta/agentsearch.php:399 +#: ../../enterprise/godmode/policies/policies.php:509 +#: ../../operation/search_policies.php:65 +msgid "Pending update policy" +msgstr "Pendiente actualizar política" + +#: ../../enterprise/meta/agentsearch.php:420 +msgid "There are no policies included in this group" +msgstr "No hay políticas incluidas en este grupo" + +#: ../../enterprise/meta/general/footer.php:28 ../../general/footer.php:47 +#, php-format +msgid "%s %s - Build %s - MR %s" +msgstr "%s %s - Desarrollo %s - MR %s" + +#: ../../enterprise/meta/general/footer.php:28 +msgid "Page generated at" +msgstr "Página generada en" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccesssaml.php:133 +#: ../../enterprise/meta/general/noaccess.php:25 ../../mobile/index.php:257 +#: ../../mobile/operation/agents.php:172 ../../mobile/operation/modules.php:194 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:99 +#: ../../mobile/operation/alerts.php:158 +#: ../../mobile/operation/visualmap.php:79 +#: ../../mobile/operation/visualmaps.php:91 +#: ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/events.php:468 ../../mobile/operation/tactical.php:81 +#: ../../general/noaccesssaml.php:133 ../../general/noaccess.php:133 +#: ../../general/noaccess2.php:15 ../../general/noaccess2.php:17 +msgid "You don't have access to this page" +msgstr "No tienes permiso para acceder a esta página" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../enterprise/meta/general/noaccess.php:29 ../../general/noaccess2.php:27 +msgid "No access" +msgstr "Acceso denegado" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 +msgid "" +"Metaconsole needs previous activation from regular console, please contact " +"system administrator if you need assistance.
" +msgstr "" +"La Metaconsola necesita una activación previa desde una consola regular. " +"Contacta con el administrador del sistema si necesitas asistencia.
" + +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../operation/tree.php:102 ../../operation/menu.php:53 +msgid "Tree view" +msgstr "Vista de árbol" + +#: ../../enterprise/meta/general/main_header.php:109 +msgid "Groups view" +msgstr "Visor de grupos" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../operation/agentes/alerts_status.php:184 +msgid "Alerts view" +msgstr "Vista de alertas" + +#: ../../enterprise/meta/general/main_header.php:121 +msgid "Monitors view" +msgstr "Visor de monitores" + +#: ../../enterprise/meta/general/main_header.php:127 +msgid "Custom fields view" +msgstr "Vista de campos personalizados" + +#: ../../enterprise/meta/general/main_header.php:158 +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../enterprise/include/functions_cron.php:1346 +#: ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:131 +msgid "Reports" +msgstr "Informes" + +#: ../../enterprise/meta/general/main_header.php:165 +msgid "Create new report" +msgstr "Crear un nuevo informe" + +#: ../../enterprise/meta/general/main_header.php:181 +msgid "Report templates" +msgstr "Plantillas de informes" + +#: ../../enterprise/meta/general/main_header.php:191 +#: ../../enterprise/include/functions_reporting.php:74 +msgid "Templates wizard" +msgstr "Asistente de plantillas" + +#: ../../enterprise/meta/general/main_header.php:201 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:618 +#: ../../enterprise/godmode/menu.php:116 +#: ../../enterprise/godmode/services/services.service.php:349 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:200 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:120 +#: ../../enterprise/include/functions_groups.php:65 +#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/services/services.service_map.php:165 +#: ../../enterprise/operation/services/services.treeview_services.php:61 +#: ../../enterprise/operation/services/services.treeview_services.php:67 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:553 +#: ../../include/lib/Dashboard/Widgets/service_map.php:327 +#: ../../operation/agentes/ver_agente.php:1318 +#: ../../general/first_task/service_list.php:25 +msgid "Services" +msgstr "Servicios" + +#: ../../enterprise/meta/general/main_header.php:219 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:88 +#: ../../enterprise/godmode/reporting/visual_console_template.php:89 +#: ../../enterprise/include/functions_enterprise.php:317 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:436 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" +msgstr "Consola visual" + +#: ../../enterprise/meta/general/main_header.php:226 +msgid "Favourite Visual Console" +msgstr "Consola visual favorita" + +#: ../../enterprise/meta/general/main_header.php:234 +msgid "Template Visual Console" +msgstr "Consola visual de plantillas" + +#: ../../enterprise/meta/general/main_header.php:241 +msgid "Wizard Visual Console" +msgstr "Consola visual de asistente" + +#: ../../enterprise/meta/general/main_header.php:264 +#: ../../enterprise/include/functions_enterprise.php:313 +#: ../../godmode/menu.php:325 ../../godmode/setup/setup.php:115 +#: ../../godmode/setup/setup.php:185 ../../include/functions_reports.php:862 +#: ../../include/functions_reports.php:866 +#: ../../include/functions_reports.php:870 +msgid "Netflow" +msgstr "Netflow" + +#: ../../enterprise/meta/general/main_header.php:270 +msgid "Live view" +msgstr "Vista en vivo" + +#: ../../enterprise/meta/general/main_header.php:316 +msgid "Agent management" +msgstr "Gestión de agentes" + +#: ../../enterprise/meta/general/main_header.php:322 +#: ../../enterprise/meta/general/main_header.php:424 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/local_components.php:123 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_network_components.php:201 +#: ../../godmode/modules/module_list.php:26 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "Gestión de módulos" + +#: ../../enterprise/meta/general/main_header.php:328 +#: ../../enterprise/meta/general/main_header.php:440 +msgid "Alert management" +msgstr "Gestión de alertas" + +#: ../../enterprise/meta/general/main_header.php:334 +#: ../../enterprise/meta/general/main_header.php:449 +#: ../../enterprise/godmode/menu.php:237 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +msgid "Event alerts" +msgstr "Alertas de eventos" + +#: ../../enterprise/meta/general/main_header.php:340 +msgid "Component management" +msgstr "Gestión de componentes" + +#: ../../enterprise/meta/general/main_header.php:346 +msgid "Policy management" +msgstr "Gestión de políticas" + +#: ../../enterprise/meta/general/main_header.php:352 +msgid "Category management" +msgstr "Gestión de categorías" + +#: ../../enterprise/meta/general/main_header.php:358 +#: ../../enterprise/meta/general/main_header.php:431 +msgid "Server management" +msgstr "Gestión de servidores" + +#: ../../enterprise/meta/general/main_header.php:364 ../../godmode/menu.php:351 +msgid "License" +msgstr "Licencia" + +#: ../../enterprise/meta/general/main_header.php:370 +msgid "Metasetup" +msgstr "Metasetup" + +#: ../../enterprise/meta/general/main_header.php:376 +#: ../../enterprise/meta/general/main_header.php:398 +#: ../../enterprise/meta/general/main_header.php:457 ../../godmode/menu.php:370 +#: ../../godmode/menu.php:488 ../../general/links_menu.php:17 +msgid "Links" +msgstr "Enlaces" + +#: ../../enterprise/meta/general/main_header.php:467 +#: ../../godmode/extensions.php:26 +msgid "Extensions" +msgstr "Extensiones" + +#: ../../enterprise/meta/general/main_header.php:516 +#: ../../enterprise/meta/general/main_header.php:522 +#: ../../general/header.php:48 ../../general/header.php:54 +msgid "All systems" +msgstr "Todos los sistemas" + +#: ../../enterprise/meta/general/main_header.php:516 +#: ../../general/header.php:48 +msgid "Down" +msgstr "Caído(s)" + +#: ../../enterprise/meta/general/main_header.php:519 +#: ../../general/header.php:51 +msgid "servers down" +msgstr "servidor(es) caído(s)" + +#: ../../enterprise/meta/general/main_header.php:522 +#: ../../general/header.php:54 +msgid "Ready" +msgstr "Preparado" + +#: ../../enterprise/meta/general/main_header.php:533 +#: ../../mobile/include/functions_web.php:32 +#: ../../mobile/include/ui.class.php:210 +#: ../../mobile/include/user.class.php:317 ../../mobile/operation/home.php:150 +#: ../../general/header.php:404 ../../general/header.php:406 +msgid "Logout" +msgstr "Salir" + +#: ../../enterprise/meta/general/main_header.php:550 +#: ../../general/header.php:231 +msgid "Configure autorefresh" +msgstr "Configurar actualización automática" + +#: ../../enterprise/meta/general/main_header.php:567 +#: ../../enterprise/meta/general/main_header.php:579 +#: ../../general/header.php:291 ../../general/header.php:308 +msgid "Disabled autorefresh" +msgstr "Actualización automática desactivada" + +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../include/functions_reports.php:884 +msgid "Network traffic" +msgstr "Tráfico de la red" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:232 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:251 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:276 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../godmode/reporting/graphs.php:87 +#: ../../godmode/reporting/visual_console_favorite.php:78 +#: ../../godmode/reporting/reporting_builder.php:529 +#: ../../godmode/reporting/reporting_builder.php:536 +#: ../../godmode/reporting/reporting_builder.php:3033 +#: ../../godmode/reporting/reporting_builder.php:3040 +#: ../../godmode/reporting/reporting_builder.php:3122 +#: ../../godmode/reporting/reporting_builder.php:3129 +#: ../../operation/menu.php:327 +#: ../../operation/reporting/reporting_viewer.php:129 +#: ../../operation/reporting/reporting_viewer.php:134 +#: ../../operation/reporting/custom_reporting.php:23 +#: ../../operation/reporting/graph_viewer.php:365 +msgid "Reporting" +msgstr "Informes" + +#: ../../enterprise/meta/general/noaccesssaml.php:138 +#: ../../general/noaccesssaml.php:138 +msgid "" +"Access to this page is restricted to authorized users SAML only, please " +"contact system administrator if you need assistance." +msgstr "" +"El acceso a esta página está restringido solo a los los usuarios SAML, " +"póngase en contacto con el administrador del sistema si necesita ayuda." + +#: ../../enterprise/meta/general/noaccesssaml.php:140 +#: ../../general/noaccesssaml.php:140 +#, php-format +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of " +"%s System Database" +msgstr "" +"Asegúrese de que la autenticación SAML esta configurada correctamente. Para " +"más información, el error de acceso a esta página está grabado en los logs " +"de seguridad de la base de datos del sistema de %s." + +#: ../../enterprise/meta/general/noaccess.php:34 ../../general/noaccess.php:138 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance." +msgstr "" +"El acceso a esta página está restringido a usuarios autorizados, póngase en " +"contacto con el administrador del sistema si necesita ayuda." + +#: ../../enterprise/meta/general/noaccess.php:36 ../../general/noaccess.php:140 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security " +"logs of %s System Database" +msgstr "" +"Todos los intentos de acceso a está página se grabarán en los logs de " +"seguridad de la base de datos del sistema de %s" + +#: ../../enterprise/meta/general/login_page.php:130 +#: ../../enterprise/meta/general/login_page.php:171 +#: ../../mobile/include/user.class.php:283 ../../general/login_page.php:267 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../enterprise/meta/general/login_page.php:138 +#: ../../general/login_page.php:235 +msgid "Login with SAML" +msgstr "Entrar con SAML" + +#: ../../enterprise/meta/general/login_page.php:179 +#: ../../general/login_page.php:309 +msgid "Forgot your password?" +msgstr "¿Has olvidado tu contraseña?" + +#: ../../enterprise/meta/general/login_page.php:193 +#: ../../include/functions_config.php:2167 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS NEXT GENERATION" + +#: ../../enterprise/meta/general/login_page.php:219 +#: ../../enterprise/meta/general/login_page.php:222 +#: ../../enterprise/meta/general/login_page.php:236 +#: ../../enterprise/meta/general/login_page.php:239 +#: ../../enterprise/meta/general/login_page.php:256 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../general/login_page.php:361 ../../general/login_page.php:364 +#: ../../general/login_page.php:378 ../../general/login_page.php:381 +#: ../../general/login_page.php:398 ../../general/login_page.php:401 +msgid "Password reset" +msgstr "Restablecer contraseña" + +#: ../../enterprise/meta/general/login_page.php:226 +#: ../../general/login_page.php:368 +msgid "INFO" +msgstr "INFO" + +#: ../../enterprise/meta/general/login_page.php:227 +#: ../../general/login_page.php:369 +msgid "An email has been sent to your email address" +msgstr "Se ha enviado un email a su dirección de correo electrónico" + +#: ../../enterprise/meta/general/login_page.php:263 +#: ../../general/login_page.php:405 +msgid "SUCCESS" +msgstr "CORRECTO" + +#: ../../enterprise/meta/general/login_page.php:278 +#: ../../enterprise/meta/general/login_page.php:281 +#: ../../enterprise/include/functions_login.php:141 +#: ../../general/login_page.php:420 ../../general/login_page.php:423 +#: ../../general/login_page.php:552 ../../general/login_page.php:555 +msgid "Login failed" +msgstr "Error de inicio de sesión" + +#: ../../enterprise/meta/general/login_page.php:303 +#: ../../enterprise/meta/general/login_page.php:306 +#: ../../enterprise/meta/general/login_page.php:310 +#: ../../general/login_page.php:445 ../../general/login_page.php:448 +#: ../../general/login_page.php:452 +msgid "Logged out" +msgstr "Desconectado" + +#: ../../enterprise/meta/general/login_page.php:311 +#: ../../mobile/include/user.class.php:241 ../../general/login_page.php:453 +#, php-format +msgid "" +"Your session has ended. Please close your browser window to close this %s " +"session." +msgstr "" +"La sesión ha terminado. Cierre el navegador para cerrar la sesión de %s." + +#: ../../enterprise/load_enterprise.php:375 +#: ../../enterprise/load_enterprise.php:440 +msgid "Invalid licence." +msgstr "Licencia no válida" + +#: ../../enterprise/load_enterprise.php:375 +msgid "Please contact your system administrator." +msgstr "Por favor, contacta con el administrador del sistema." + +#: ../../enterprise/load_enterprise.php:440 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "Póngase en contacto con %s para obtener una licencia válida." + +#: ../../enterprise/load_enterprise.php:441 +#, php-format +msgid "Or disable %s enterprise" +msgstr "O desabilite %s enterprise" + +#: ../../enterprise/load_enterprise.php:538 +#: ../../enterprise/godmode/alerts/alert_events_list.php:758 +#: ../../enterprise/godmode/reporting/aws_view.php:154 +#: ../../enterprise/godmode/wizards/Cloud.class.php:305 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3062 +#: ../../godmode/setup/license.php:143 ../../mobile/operation/events.php:570 +#: ../../include/ajax/alert_list.ajax.php:266 +#: ../../include/ajax/alert_list.ajax.php:292 +#: ../../operation/agentes/alerts_status.php:541 +#: ../../operation/agentes/alerts_status.php:578 +#: ../../operation/agentes/alerts_status.php:611 +#: ../../operation/agentes/alerts_status.php:697 +#: ../../operation/snmpconsole/snmp_view.php:972 +#: ../../operation/snmpconsole/snmp_view.php:1133 +#: ../../operation/snmpconsole/snmp_view.php:1186 +msgid "Validate" +msgstr "Validar" + +#: ../../enterprise/load_enterprise.php:542 +#: ../../enterprise/load_enterprise.php:836 +msgid "Request new licence" +msgstr "Solicitar una nueva licencia" + +#: ../../enterprise/load_enterprise.php:622 +msgid "" +"Metaconsole unreached

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

Este nodo tiene una licencia de Metaconsola " +"pero no pudo establecer contacto." + +#: ../../enterprise/load_enterprise.php:639 +#: ../../enterprise/load_enterprise.php:646 +#: ../../enterprise/load_enterprise.php:656 +#: ../../enterprise/load_enterprise.php:662 +#, php-format +msgid "" +"License exceeded

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

Esta licencia permite %d agentes y tiene %d " +"agentes configurados." + +#: ../../enterprise/load_enterprise.php:640 +#: ../../enterprise/load_enterprise.php:648 +#: ../../enterprise/load_enterprise.php:657 +#: ../../enterprise/load_enterprise.php:664 +#: ../../enterprise/load_enterprise.php:677 +#, php-format +msgid "Please contact %s to extend the license." +msgstr "Póngase en contacto con %s para ampliar la licencia." + +#: ../../enterprise/load_enterprise.php:647 +#: ../../enterprise/load_enterprise.php:649 +#: ../../enterprise/load_enterprise.php:663 +#: ../../enterprise/load_enterprise.php:665 +#: ../../enterprise/load_enterprise.php:693 +#: ../../enterprise/load_enterprise.php:695 +msgid "" +"This console will work in limited mode. Enterprise features will not " +"function." +msgstr "" +"Esta consola funcionará en modo limitado. Las funcionalidades Enterprise no " +"funcionarán." + +#: ../../enterprise/load_enterprise.php:676 +#, php-format +msgid "" +"License exceeded

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

Esta licencia permite %d módulos y tiene %d " +"módulos configurados." + +#: ../../enterprise/load_enterprise.php:686 +#: ../../enterprise/load_enterprise.php:692 +msgid "" +"This license has expired. " +"

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

No " +"podrás actualizar Pandora FMS hasta que no renueves la licencia." + +#: ../../enterprise/load_enterprise.php:687 +#: ../../enterprise/load_enterprise.php:694 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "Póngase en contacto con %s para renovar la licencia." + +#: ../../enterprise/load_enterprise.php:702 +#, php-format +msgid "" +"This license is outside of " +"support.

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

La instalación de %s continuará funcionando con normalidad y sin " +"límites, pero sin soporte ni actualizaciones." + +#: ../../enterprise/load_enterprise.php:832 +msgid "Renew" +msgstr "Renovar" + +#: ../../enterprise/extensions/disabled/check_acls.php:16 +msgid "ACL users for this agent" +msgstr "Usuarios ACL para este agente" + +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:142 +msgid "System incidents reading" +msgstr "Lectura de incidentes del sistema" + +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:143 +msgid "System incidents writing" +msgstr "Escritura de incidentes del sistema" + +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:144 +msgid "System incidents management" +msgstr "Gestión de incidentes del sistema" + +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:145 +msgid "Agents reading" +msgstr "Lectura de agentes" + +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +#: ../../include/functions_menu.php:502 +msgid "Agents management" +msgstr "Gestión de agentes" + +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:147 +msgid "Agents disable" +msgstr "Deshabilitar agentes" + +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:148 +msgid "Alerts editing" +msgstr "Edición de alertas" + +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +#: ../../godmode/menu.php:125 +msgid "Users management" +msgstr "Gestión de usuarios" + +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:150 +msgid "Database management" +msgstr "Gestión de la BD" + +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:151 +msgid "Alerts management" +msgstr "Gestión de alertas" + +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:152 +msgid "Reports reading" +msgstr "Lectura de informes" + +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:153 +msgid "Reports writing" +msgstr "Escritura de informes" + +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:154 +msgid "Reports management" +msgstr "Gestión de informes" + +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:155 +msgid "Events reading" +msgstr "Lectura de eventos" + +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:156 +msgid "Events writing" +msgstr "Escritura de eventos" + +#: ../../enterprise/extensions/disabled/check_acls.php:64 +#: ../../enterprise/extensions/disabled/check_acls.php:157 +msgid "Events management" +msgstr "Gestión de eventos" + +#: ../../enterprise/extensions/disabled/check_acls.php:65 +#: ../../enterprise/extensions/disabled/check_acls.php:158 +msgid "Systems management" +msgstr "Gestión de sistemas" + +#: ../../enterprise/extensions/disabled/check_acls.php:118 +msgid "There are no defined users" +msgstr "No hay usuarios definidos" + +#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/menu.php:117 +msgid "Module tags" +msgstr "Etiquetas de módulos" + +#: ../../enterprise/extensions/disabled/check_acls.php:206 +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:217 +msgid "Only admin users can see this section." +msgstr "Solo los usuarios administradores pueden ver esta sección." + +#: ../../enterprise/extensions/disabled/check_acls.php:224 +msgid "Check ACL" +msgstr "Comprobar ACL" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +msgid "Element Id" +msgstr "ID del elemento" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/godmode/policies/policy_queue.php:479 +#: ../../enterprise/godmode/policies/policy_linking.php:125 +msgid "Node" +msgstr "Nodo" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:150 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:57 +#: ../../enterprise/godmode/reporting/visual_console_template.php:58 +#: ../../godmode/reporting/map_builder.php:56 +#: ../../godmode/reporting/visual_console_favorite.php:49 +msgid "Visual Console List" +msgstr "Lista de la consola visual" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:155 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:61 +#: ../../godmode/reporting/visual_console_favorite.php:54 +#: ../../godmode/reporting/visual_console_favorite.php:78 +msgid "Visual Favourite Console" +msgstr "Consola visual favorita" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:161 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:68 +#: ../../enterprise/godmode/reporting/visual_console_template.php:69 +#: ../../godmode/reporting/map_builder.php:67 +#: ../../godmode/reporting/visual_console_favorite.php:60 +msgid "Visual Console Template" +msgstr "Plantilla de la consola visual" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:166 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:73 +#: ../../enterprise/godmode/reporting/visual_console_template.php:74 +#: ../../godmode/reporting/map_builder.php:72 +#: ../../godmode/reporting/visual_console_favorite.php:65 +msgid "Visual Console Template Wizard" +msgstr "Asistente de plantilla de consola visual" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:171 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:183 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:427 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:430 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:80 +#: ../../enterprise/godmode/reporting/visual_console_template.php:81 +#: ../../godmode/reporting/map_builder.php:77 +#: ../../godmode/reporting/visual_console_favorite.php:71 +msgid "Visual Console Manager" +msgstr "Gestor de consola visual" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:212 +#, php-format +msgid "%d elements updated" +msgstr "%d elementos actualizados" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:213 +msgid "There was an error updating the elements" +msgstr "Error al actualizar elementos" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:248 +#: ../../include/functions_visual_map_editor.php:991 +#: ../../include/rest-api/models/VisualConsole/Item.php:2354 +msgid "By status weight" +msgstr "Por peso de estadp" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:249 +#: ../../include/functions_visual_map_editor.php:992 +#: ../../include/rest-api/models/VisualConsole/Item.php:2355 +msgid "By critical elements" +msgstr "Por elementos críticos" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:251 +msgid "Type of the status calculation" +msgstr "Tipo de cálculo de estado" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:257 +#: ../../include/functions_visual_map_editor.php:1012 +#: ../../include/rest-api/models/VisualConsole/Item.php:2353 +msgid "By default" +msgstr "Por defecto" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:264 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:154 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:208 +#: ../../godmode/reporting/graph_builder.graph_editor.php:201 +#: ../../godmode/reporting/graph_builder.graph_editor.php:370 +msgid "Weight" +msgstr "Peso" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:279 +#: ../../enterprise/godmode/services/services.elements.php:735 +#: ../../include/functions_visual_map_editor.php:1058 +#: ../../include/rest-api/models/VisualConsole/Item.php:2392 +msgid "Critical weight" +msgstr "Peso crítico" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:294 +#: ../../enterprise/godmode/services/services.elements.php:739 +#: ../../include/functions_visual_map_editor.php:1084 +#: ../../include/rest-api/models/VisualConsole/Item.php:2406 +msgid "Warning weight" +msgstr "Peso de advertencia" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:309 +msgid "Visual Consoles" +msgstr "Consolas visuales" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:313 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../operation/search_maps.php:29 +msgid "Elements" +msgstr "Elementos" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:319 +msgid "Visual Console Information" +msgstr "Información de consola visual" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:320 +msgid "There are no items selected." +msgstr "No hay elementos seleccionados." + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:323 +msgid "" +"Massive editing of the procedure for calculating the status of elements " +"linked to a visual console" +msgstr "" +"Edición masiva del procedimiento de cálculo del estado de los elementos " +"vinculados a la consola visual" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "Traducir cadena" + +#: ../../enterprise/extensions/ipam.php:170 +#: ../../enterprise/extensions/ipam.php:423 ../../extensions/files_repo.php:119 +#: ../../extensions/files_repo.php:207 +msgid "Operation view" +msgstr "Vista de operación" + +#: ../../enterprise/extensions/ipam.php:185 +#: ../../enterprise/extensions/ipam.php:407 +msgid "Subnetworks calculator" +msgstr "Calculadora de subredes" + +#: ../../enterprise/extensions/ipam.php:194 +#: ../../enterprise/extensions/ipam.php:431 +msgid "Vlan config" +msgstr "Configuración de vlan" + +#: ../../enterprise/extensions/ipam.php:204 +#: ../../enterprise/extensions/ipam.php:441 +msgid "Vlan wizard" +msgstr "Asistente de vlan" + +#: ../../enterprise/extensions/ipam.php:219 +msgid "Vlan statistics" +msgstr "Estadísticas de vlan" + +#: ../../enterprise/extensions/ipam.php:231 +#: ../../enterprise/extensions/ipam.php:451 +msgid "Supernet config" +msgstr "Configuración de superred" + +#: ../../enterprise/extensions/ipam.php:242 +msgid "Supernet statistics" +msgstr "Estadísticas de superred" + +#: ../../enterprise/extensions/ipam.php:254 +#: ../../enterprise/extensions/ipam.php:461 +msgid "Supernet map" +msgstr "Mapa de superred" + +#: ../../enterprise/extensions/ipam.php:271 +#: ../../enterprise/extensions/ipam/ipam_list.php:178 +msgid "Manage addresses" +msgstr "Administrar direcciones" + +#: ../../enterprise/extensions/ipam.php:279 +msgid "Massive operations" +msgstr "Operaciones masivas" + +#: ../../enterprise/extensions/ipam.php:287 +#: ../../enterprise/extensions/ipam/ipam_list.php:184 +msgid "Addresses view" +msgstr "Vista de direcciones" + +#: ../../enterprise/extensions/ipam.php:296 +#: ../../enterprise/extensions/ipam.php:308 +#: ../../enterprise/extensions/ipam.php:415 ../../extensions/files_repo.php:115 +#: ../../extensions/files_repo.php:204 +msgid "Administration view" +msgstr "Vista de administración" + +#: ../../enterprise/extensions/ipam.php:331 +#: ../../enterprise/extensions/ipam.php:478 +#: ../../enterprise/extensions/ipam.php:518 +#: ../../enterprise/extensions/ipam.php:519 +msgid "IPAM" +msgstr "IPAM" + +#: ../../enterprise/extensions/vmware.php:43 +msgid "Failed to initialize VMware extension." +msgstr "Error al inicializar la extensión VMware" + +#: ../../enterprise/extensions/vmware.php:86 +#: ../../enterprise/extensions/vmware/vmware_view.php:1336 +msgid "VMware View" +msgstr "Vista VMware" + +#: ../../enterprise/extensions/backup/main.php:79 +#, php-format +msgid "%s database backup utility" +msgstr "Herramienta de copia de seguridad de %s" + +#: ../../enterprise/extensions/backup/main.php:91 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:82 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 +#: ../../enterprise/operation/log/log_viewer.php:329 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:133 +msgid "Not supported in Windows systems" +msgstr "No compatible con sistemas Windows" + +#: ../../enterprise/extensions/backup/main.php:94 +msgid "Filter backups" +msgstr "Filtrar copias de seguridad" + +#: ../../enterprise/extensions/backup/main.php:106 +msgid "Path backups" +msgstr "Ruta de la copia de seguridad" + +#: ../../enterprise/extensions/backup/main.php:132 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/include/functions_inventory.php:712 +#: ../../enterprise/include/functions_reporting_pdf.php:652 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:739 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/functions_reporting.php:1967 +#: ../../enterprise/include/functions_reporting.php:2004 +#: ../../enterprise/include/functions_reporting.php:2039 +#: ../../enterprise/include/functions_reporting.php:2057 +#: ../../enterprise/operation/agentes/agent_inventory.php:75 +#: ../../enterprise/operation/inventory/inventory.php:241 +#: ../../extensions/insert_data.php:193 ../../extensions/users_connected.php:79 +#: ../../godmode/admin_access_logs.php:198 +#: ../../godmode/alerts/configure_alert_special_days.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1676 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:2139 +#: ../../include/functions_reporting_html.php:2146 +#: ../../include/functions_reporting_html.php:2151 +#: ../../include/functions_reporting_html.php:2197 +#: ../../include/functions_reporting_html.php:4690 +#: ../../include/functions.php:2889 ../../include/functions_reporting.php:3205 +#: ../../include/functions_reporting.php:3246 +#: ../../include/functions_events.php:6464 +#: ../../operation/incidents/list_integriaims_incidents.php:167 +#: ../../operation/reporting/graph_viewer.php:243 +#: ../../operation/events/events.build_table.php:695 +#: ../../general/logon_ok.php:247 +msgid "Date" +msgstr "Fecha" + +#: ../../enterprise/extensions/backup/main.php:133 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../godmode/events/event_responses.editor.php:112 +#: ../../include/functions_visual_map_editor.php:126 +#: ../../include/functions_visual_map_editor.php:179 +#: ../../include/functions_visual_map_editor.php:770 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 +#: ../../include/rest-api/models/VisualConsole/Item.php:1873 +#: ../../include/functions_filemanager.php:621 +#: ../../operation/incidents/incident_detail.php:477 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:126 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:300 +msgid "Size" +msgstr "Tamaño" + +#: ../../enterprise/extensions/backup/main.php:135 +#: ../../enterprise/include/functions_tasklist.php:345 +#: ../../enterprise/include/functions_tasklist.php:376 +#: ../../include/functions_cron.php:622 ../../include/functions_cron.php:652 +#: ../../include/class/Diagnostics.class.php:2166 +msgid "Path" +msgstr "Ruta" + +#: ../../enterprise/extensions/backup/main.php:195 +#: ../../enterprise/godmode/services/services.service.php:644 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:423 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2306 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../enterprise/include/functions_reporting_csv.php:1386 +#: ../../enterprise/include/functions_reporting_csv.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1628 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1680 +#: ../../enterprise/include/class/DatabaseHA.class.php:389 +#: ../../enterprise/include/class/DatabaseHA.class.php:626 +#: ../../enterprise/include/class/DatabaseHA.class.php:728 +#: ../../enterprise/include/class/AgentRepository.class.php:881 +#: ../../enterprise/include/functions_reporting.php:1705 +#: ../../enterprise/include/functions_reporting.php:2613 +#: ../../enterprise/include/functions_reporting.php:2877 +#: ../../enterprise/include/functions_reporting.php:3606 +#: ../../enterprise/include/functions_reporting.php:3875 +#: ../../enterprise/include/functions_reporting.php:4461 +#: ../../enterprise/include/functions_reporting.php:5377 +#: ../../enterprise/include/functions_reporting.php:5415 +#: ../../enterprise/include/functions_services.php:2811 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:422 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/setup/setup_general.php:521 +#: ../../godmode/setup/setup_general.php:539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2104 +#: ../../include/functions_reporting_html.php:599 +#: ../../include/functions_reporting_html.php:770 +#: ../../include/functions_reporting_html.php:2520 +#: ../../include/functions_reporting_html.php:3570 +#: ../../include/functions_db.php:1781 +#: ../../include/class/ConfigPEN.class.php:662 +#: ../../include/class/ConfigPEN.class.php:686 +#: ../../include/class/HelpFeedBack.class.php:368 +#: ../../include/class/CredentialStore.class.php:1114 +#: ../../include/class/ModuleTemplates.class.php:1276 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:642 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:312 +#: ../../operation/agentes/pandora_networkmap.editor.php:572 +#: ../../operation/snmpconsole/snmp_browser.php:580 +msgid "OK" +msgstr "Bien" + +#: ../../enterprise/extensions/backup/main.php:199 +msgid "Lost" +msgstr "Perdido" + +#: ../../enterprise/extensions/backup/main.php:211 +#: ../../extensions/files_repo/files_repo_list.php:96 +msgid "Download" +msgstr "Descargar" + +#: ../../enterprise/extensions/backup/main.php:243 +msgid "Backups list" +msgstr "Lista de copias de seguridad" + +#: ../../enterprise/extensions/backup/main.php:248 +msgid "Create backup" +msgstr "Crear copia de seguridad" + +#: ../../enterprise/extensions/backup/main.php:265 +msgid "Path to save backup" +msgstr "Ruta para guardar la copia de seguridad" + +#: ../../enterprise/extensions/backup/main.php:265 +msgid "It is important that Apache can read and write on the selected path" +msgstr "" +"Es importante que Apache pueda leer y escribir en la ruta seleccionada" + +#: ../../enterprise/extensions/csv_import_group/main.php:37 +#, php-format +msgid "Created group %s" +msgstr "Grupo creado %s" + +#: ../../enterprise/extensions/csv_import_group/main.php:38 +#, php-format +msgid "Could not create group %s" +msgstr "No se pudo crear el grupo %s" + +#: ../../enterprise/extensions/csv_import_group/main.php:45 +msgid "File processed" +msgstr "Archivo procesado" + +#: ../../enterprise/extensions/csv_import_group/main.php:53 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1356 +msgid "CSV format" +msgstr "Formato CVS" + +#: ../../enterprise/extensions/csv_import_group/main.php:54 +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_group/main.php:70 +#: ../../enterprise/include/class/CSVImportAgents.class.php:144 +msgid "Upload file" +msgstr "Subir archivo" + +#: ../../enterprise/extensions/csv_import_group/main.php:73 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1360 +#: ../../enterprise/include/class/CSVImportAgents.class.php:161 +msgid "Separator" +msgstr "Separador" + +#: ../../enterprise/extensions/csv_import_group/main.php:86 +msgid "Upload CSV file" +msgstr "Subir archivo CSV" + +#: ../../enterprise/extensions/csv_import_group/main.php:91 +#: ../../enterprise/include/class/CSVImportAgents.class.php:196 +#: ../../include/functions_filemanager.php:800 +msgid "Go" +msgstr "Ir" + +#: ../../enterprise/extensions/ipam/ipam_network.php:119 +msgid "No addresses found on this network" +msgstr "No se han encontrado direcciones en esta red" + +#: ../../enterprise/extensions/ipam/ipam_network.php:256 +msgid "Edit address" +msgstr "Modificar dirección" + +#: ../../enterprise/extensions/ipam/ipam_network.php:261 +msgid "Disabled address" +msgstr "Deshabilitar direción" + +#: ../../enterprise/extensions/ipam/ipam_network.php:261 +msgid "This address will not be updated by the server" +msgstr "Esta dirección no será actualizada por el servidor." + +#: ../../enterprise/extensions/ipam/ipam_network.php:323 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:276 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:253 +#: ../../enterprise/extensions/ipam/ipam_excel.php:107 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1732 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:192 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:42 +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export_form.php:99 +#: ../../godmode/setup/setup_general.php:412 +#: ../../operation/agentes/ver_agente.php:995 +msgid "Address" +msgstr "Dirección" + +#: ../../enterprise/extensions/ipam/ipam_network.php:324 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1733 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:197 +#: ../../include/class/Diagnostics.class.php:725 +#: ../../include/class/Diagnostics.class.php:743 +msgid "Hostname" +msgstr "Nombre de host" + +#: ../../enterprise/extensions/ipam/ipam_network.php:328 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1395 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1738 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:231 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "Gestionado" + +#: ../../enterprise/extensions/ipam/ipam_network.php:329 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1401 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1479 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1739 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:241 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "Reservado" + +#: ../../enterprise/extensions/ipam/ipam_network.php:330 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../enterprise/include/class/DatabaseHA.class.php:204 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3148 +#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/agentes/module_manager_editor_common.php:977 +#: ../../godmode/agentes/module_manager_editor_common.php:987 +#: ../../godmode/massive/massive_edit_agents.php:717 +#: ../../godmode/alerts/alert_list.list.php:128 +#: ../../godmode/alerts/configure_alert_template.php:825 +#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_reporting_html.php:2620 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:343 +msgid "Enabled" +msgstr "Habilitado" + +#: ../../enterprise/extensions/ipam/ipam_network.php:331 +#: ../../enterprise/extensions/ipam/ipam_network.php:596 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1736 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:144 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:268 +#: ../../enterprise/extensions/ipam/ipam_massive.php:83 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/admin_access_logs.php:200 +#: ../../mobile/operation/events.php:561 +#: ../../include/functions_reporting_html.php:4692 +#: ../../include/functions.php:2889 ../../include/ajax/events.php:1236 +#: ../../operation/users/user_edit.php:590 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:461 +#: ../../general/logon_ok.php:249 +msgid "Comments" +msgstr "Comentarios" + +#: ../../enterprise/extensions/ipam/ipam_network.php:342 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1734 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1132 +msgid "Alive" +msgstr "Activo" + +#: ../../enterprise/extensions/ipam/ipam_network.php:351 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1137 +msgid "Not alive" +msgstr "Inactivo" + +#: ../../enterprise/extensions/ipam/ipam_network.php:382 +#: ../../enterprise/extensions/ipam/ipam_network.php:457 +#: ../../enterprise/extensions/ipam/ipam_network.php:499 +msgid "Change to automatic mode" +msgstr "Cambiar a modo automático" + +#: ../../enterprise/extensions/ipam/ipam_network.php:391 +#: ../../enterprise/extensions/ipam/ipam_network.php:466 +#: ../../enterprise/extensions/ipam/ipam_network.php:508 +msgid "Change to manual mode" +msgstr "Cambiar a modo manual" + +#: ../../enterprise/extensions/ipam/ipam_network.php:587 +msgid "Add comments" +msgstr "Añadir comentarios" + +#: ../../enterprise/extensions/ipam/ipam_network.php:615 +msgid "Update agent address" +msgstr "Actualizar dirección de agente" + +#: ../../enterprise/extensions/ipam/ipam_network.php:781 +msgid "Please, uncheck auto option to set manual agent." +msgstr "Desmarcar la opción automática para establecer agente manual" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:50 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:97 +msgid "There is no supernet name. Please introduce a name" +msgstr "No hay nombre de superred. Añada un nombre." + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:54 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:101 +msgid "There is no supernet address. Please introduce a address" +msgstr "No hay dirección de superred. Añada una dirección." + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:58 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:105 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "No hay máscara de superred. Añada una máscara" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:62 +msgid "There is no valid address. Please introduce a address" +msgstr "No hay dirección válida. Añada una dirección." + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:66 +msgid "There is no valid mask. Please introduce a mask" +msgstr "No hay máscara válida. Añada una máscara" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:80 +msgid "Supernet created" +msgstr "Superred creada." + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:82 +msgid "Supernet not created" +msgstr "Superred no creada" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:86 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:131 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "" +"El nombre de la superred existe en la base de datos, seleccione otro nombre." + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:125 +msgid "Supernet updated" +msgstr "Superred actualizada" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:127 +msgid "Supernet not updated" +msgstr "Superred no actualizada" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:152 +msgid "Could not be deleted, please select supernet" +msgstr "No se ha podido borrar, seleccione una superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:181 +msgid "Network name cannot be repeated in this supernet" +msgstr "El nombre de la red no puede repetirse en la superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:188 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:150 +msgid "Successfully added networks" +msgstr "Redes añadidas correctamente" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:192 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:154 +msgid "Network could not be added" +msgstr "No se ha podido añadir la red" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:197 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:159 +msgid "Network name could not be added, please select network" +msgstr "No se ha podido añadir el nombre de la red, seleccione una red" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:202 +msgid "supernet name could not be added, please select supernet" +msgstr "No se ha podido añadir el nombre de la superred, seleccione superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:226 +msgid "Could not be deleted, please select supernet and network" +msgstr "No se ha podido eliminar, seleccione una red y una superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:266 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:159 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:40 +msgid "Supernet" +msgstr "Superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:290 +#: ../../enterprise/extensions/ipam/ipam_excel.php:108 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 +msgid "Mask" +msgstr "Máscara" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:372 +#: ../../enterprise/extensions/ipam/ipam_excel.php:109 +msgid "Subneting Mask" +msgstr "Máscara de subnetting" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:340 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:460 +msgid "Update Supernet" +msgstr "Actualizar superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:347 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:541 +msgid "New Supernet" +msgstr "Nueva superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:370 +msgid "Address / Masks" +msgstr "Dirección / Máscaras" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:373 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:272 +msgid "Networks" +msgstr "Redes" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:390 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:453 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:284 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:340 +msgid "Not assigned networks" +msgstr "Redes no asignadas" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:447 +msgid "Delete network to supernet" +msgstr "Eliminar red de superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:467 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:487 +msgid "Add network to supernet" +msgstr "Añadir red a superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:470 +msgid "Next network" +msgstr "Siguiente red" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:500 +msgid "Delete Supernet" +msgstr "Borrar superred" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:521 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:393 +#: ../../include/functions_visual_map_editor.php:725 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:558 +msgid "Show statistics" +msgstr "Mostrar estadísticas" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:534 +msgid "No Supernet found" +msgstr "Superred no encontrada" + +#: ../../enterprise/extensions/ipam/ipam_list.php:108 +msgid "No networks found" +msgstr "No se ha encontrado ninguna red" + +#: ../../enterprise/extensions/ipam/ipam_list.php:134 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:65 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:160 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:180 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1676 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:146 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:65 +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +#: ../../godmode/wizards/HostDevices.class.php:912 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:432 +#: ../../include/functions_ui.php:853 ../../operation/menu.php:74 +#: ../../operation/servers/recon_view.php:100 +msgid "Network" +msgstr "Red" + +#: ../../enterprise/extensions/ipam/ipam_list.php:137 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1217 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1679 +#: ../../enterprise/extensions/ipam/ipam_editor.php:137 +#: ../../godmode/events/event_responses.editor.php:105 +msgid "Location" +msgstr "Ubicación" + +#: ../../enterprise/extensions/ipam/ipam_list.php:141 +msgid "IPs" +msgstr "IPs" + +#: ../../enterprise/extensions/ipam/ipam_list.php:142 +#: ../../enterprise/operation/services/services.service.php:180 +#: ../../enterprise/operation/services/services.list.php:436 +#: ../../extensions/agents_alerts.php:55 +#: ../../extensions/agents_modules.php:316 +#: ../../operation/agentes/group_view.php:61 +#: ../../operation/agentes/tactical.php:45 +msgid "Last update" +msgstr "Última actualización" + +#: ../../enterprise/extensions/ipam/ipam_list.php:164 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1206 +#: ../../enterprise/godmode/services/services.service.php:396 +#: ../../enterprise/include/class/VMware.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:502 +#: ../../enterprise/include/class/Aws.cloud.php:1212 +#: ../../enterprise/include/class/MySQL.app.php:565 +#: ../../enterprise/include/class/Oracle.app.php:546 +#: ../../enterprise/operation/services/services.list.php:234 +#: ../../enterprise/operation/services/services.table_services.php:213 +#: ../../godmode/wizards/HostDevices.class.php:803 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:531 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "Manual" +msgstr "Manual" + +#: ../../enterprise/extensions/ipam/ipam_list.php:169 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1772 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1773 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1774 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:291 +#: ../../enterprise/include/functions_tasklist.php:439 +#: ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1326 +#: ../../include/functions_cron.php:686 +#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:538 +#: ../../operation/agentes/estado_generalagente.php:303 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "Nunca" + +#: ../../enterprise/extensions/ipam/ipam_list.php:192 +msgid "Edit network" +msgstr "Modificar red" + +#: ../../enterprise/extensions/ipam/ipam_list.php:196 +msgid "Delete network" +msgstr "Eliminar red" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:409 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:557 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:611 +msgid "Interfaces" +msgstr "Interfaces" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:220 +msgid "Vlan" +msgstr "Vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +msgid "succesfully created" +msgstr "creado correctamente" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +msgid "not created" +msgstr "no creado" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +msgid "exists in bbdd, please select other name" +msgstr "existe en la base de datos, seleccione otro nombre" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:71 +msgid "please, select VLAN to be created" +msgstr "seleccione una VLAN para crear" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:230 +msgid "Please enter adress, for search vlans" +msgstr "Añada una dirección para buscar vlans" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:262 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:444 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:733 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:517 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:774 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:309 +msgid "SNMP community" +msgstr "Comunidad SNMP" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:271 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:447 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:736 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../enterprise/include/functions_hostdevices.php:64 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:520 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:777 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:767 +#: ../../include/class/AgentWizard.class.php:322 +msgid "SNMP version" +msgstr "Versión SNMP" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:298 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:480 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:769 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../enterprise/include/functions_hostdevices.php:124 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:533 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:791 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../include/functions_snmp_browser.php:730 +msgid "Auth user" +msgstr "Autentificación de usuario" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:307 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:482 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:771 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/include/functions_hostdevices.php:135 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:535 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../include/functions_snmp_browser.php:732 +msgid "Auth password" +msgstr "Autentificación de contraseña" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:323 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:486 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:775 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:649 +#: ../../enterprise/include/functions_hostdevices.php:151 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:539 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:797 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:791 +#: ../../include/functions_snmp_browser.php:736 +msgid "Privacy method" +msgstr "Método de privacidad" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:326 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/include/functions_hostdevices.php:156 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../include/functions_snmp_browser.php:737 +msgid "DES" +msgstr "DES" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:327 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/include/functions_hostdevices.php:157 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../include/functions_snmp_browser.php:737 +msgid "AES" +msgstr "AES" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:336 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:488 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:777 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:541 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:799 +msgid "privacy pass" +msgstr "pase privado" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:346 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:491 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:780 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:653 +#: ../../enterprise/include/functions_hostdevices.php:182 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:544 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:802 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:795 +#: ../../include/functions_snmp_browser.php:741 +msgid "Auth method" +msgstr "Método de autentificación" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:349 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/include/functions_hostdevices.php:187 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../include/class/Diagnostics.class.php:2166 +#: ../../include/functions_snmp_browser.php:742 +msgid "MD5" +msgstr "MD5" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:350 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/include/functions_hostdevices.php:188 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../include/functions_snmp_browser.php:742 +msgid "SHA" +msgstr "SHA" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:359 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:493 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:782 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:655 +#: ../../enterprise/include/functions_hostdevices.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:546 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:797 +#: ../../include/functions_snmp_browser.php:743 +msgid "Security level" +msgstr "Nivel de seguridad" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:362 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:496 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:785 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../enterprise/include/functions_hostdevices.php:202 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:549 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:807 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:800 +#: ../../include/functions_snmp_browser.php:746 +msgid "Not auth and not privacy method" +msgstr "Método sin autentificación ni privacidad" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:363 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:497 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:786 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +#: ../../enterprise/include/functions_hostdevices.php:203 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:550 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:808 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:801 +#: ../../include/functions_snmp_browser.php:747 +msgid "Auth and not privacy method" +msgstr "Método con autentificación y sin privacidad" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:364 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:498 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:787 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:660 +#: ../../enterprise/include/functions_hostdevices.php:204 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:551 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:809 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:802 +#: ../../include/functions_snmp_browser.php:748 +msgid "Auth and privacy method" +msgstr "Método con autentificación y privacidad" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:373 +#: ../../enterprise/include/functions_hostdevices.php:113 +msgid "Context" +msgstr "Contexto" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:396 +msgid "Run" +msgstr "Ejecutar" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:408 +msgid "Vlan name" +msgstr "Nombre de vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:423 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:278 +msgid "Created" +msgstr "Creado" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:419 +msgid "No vlans found" +msgstr "No se han encontrado vlans" + +#: ../../enterprise/extensions/ipam/ipam_action.php:109 +#: ../../enterprise/extensions/ipam/ipam_action.php:172 +msgid "Incorrect format in Subnet field" +msgstr "Formato incorrecto en el campo Subred" + +#: ../../enterprise/extensions/ipam/ipam_action.php:115 +#: ../../enterprise/extensions/ipam/ipam_action.php:178 +msgid "The location is not filled, please add a location." +msgstr "La ubicación no está indicada. Por favor, añade una ubicación." + +#: ../../enterprise/extensions/ipam/ipam_action.php:140 +#, php-format +msgid "Could not be created: %s" +msgstr "No se ha podido crear: %s" + +#: ../../enterprise/extensions/ipam/ipam_action.php:191 +#: ../../enterprise/extensions/ipam/ipam_massive.php:48 +#: ../../enterprise/godmode/modules/local_components.php:341 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:105 +#: ../../enterprise/godmode/policies/policy_modules.php:1220 +#: ../../enterprise/godmode/policies/policies.php:250 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 +#: ../../enterprise/godmode/alerts/alert_events.php:429 +#: ../../enterprise/godmode/alerts/alert_events_list.php:100 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:176 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:109 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:127 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../godmode/modules/manage_network_components.php:384 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/planned_downtime.editor.php:512 +#: ../../godmode/alerts/configure_alert_command.php:113 +#: ../../godmode/alerts/alert_templates.php:163 +#: ../../godmode/alerts/configure_alert_template.php:507 +#: ../../godmode/alerts/alert_special_days.php:227 +#: ../../godmode/alerts/alert_list.php:94 +#: ../../godmode/alerts/alert_list.php:296 ../../godmode/setup/gis.php:38 +#: ../../include/functions_alerts.php:2825 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:202 +#: ../../operation/agentes/pandora_networkmap.php:500 +#: ../../operation/snmpconsole/snmp_view.php:138 +#: ../../operation/incidents/incident.php:158 +msgid "Could not be updated" +msgstr "No se pudo actualizar" + +#: ../../enterprise/extensions/ipam/ipam_action.php:297 +#: ../../operation/agentes/pandora_networkmap.view.php:151 +msgid "Could not be updated." +msgstr "No se pudo actualizar" + +#: ../../enterprise/extensions/ipam/ipam_action.php:303 +msgid "Successfully updated." +msgstr "Actualizado correctamente" + +#: ../../enterprise/extensions/ipam/ipam_action.php:308 +#: ../../include/functions_reporting.php:2198 +msgid "No changes found." +msgstr "No se han encontrado cambios" -#: ../../extensions/api_checker.php:161 -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/agentes/agent_manager.php:214 -#: ../../godmode/agentes/fields_manager.php:118 -#: ../../godmode/agentes/module_manager_editor_common.php:214 -#: ../../godmode/alerts/alert_commands.php:401 -#: ../../godmode/groups/group_list.php:576 -#: ../../godmode/groups/modu_group_list.php:234 -#: ../../godmode/modules/module_list.php:58 ../../godmode/setup/os.list.php:31 -#: ../../include/functions_events.php:5984 -#: ../../include/functions_events.php.orig:5888 -#: ../../operation/events/events.build_table.php:146 -#: ../../operation/incidents/incident.php:419 -#: ../../operation/incidents/list_integriaims_incidents.php:254 #: ../../enterprise/extensions/ipam/ipam_excel.php:104 #: ../../enterprise/extensions/ipam/ipam_excel.php:174 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:90 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../extensions/api_checker.php:161 +#: ../../godmode/modules/module_list.php:58 +#: ../../godmode/groups/group_list.php:679 +#: ../../godmode/groups/modu_group_list.php:234 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../godmode/agentes/agent_manager.php:214 +#: ../../godmode/agentes/agent_incidents.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:206 +#: ../../godmode/alerts/alert_commands.php:413 +#: ../../godmode/setup/os.list.php:31 ../../include/functions_events.php:5997 +#: ../../operation/incidents/incident.php:419 +#: ../../operation/incidents/list_integriaims_incidents.php:261 +#: ../../operation/events/events.build_table.php:146 msgid "ID" msgstr "ID" -#: ../../extensions/api_checker.php:166 -msgid "ID 2" -msgstr "ID 2" +#: ../../enterprise/extensions/ipam/ipam_excel.php:110 +#: ../../enterprise/extensions/ipam/ipam_excel.php:177 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1383 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1685 +msgid "Total IPs" +msgstr "IPs totales" -#: ../../extensions/api_checker.php:171 -msgid "Return Type" -msgstr "Tipo de retorno" +#: ../../enterprise/extensions/ipam/ipam_excel.php:111 +#: ../../enterprise/extensions/ipam/ipam_excel.php:178 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1686 +msgid "Alive IPs" +msgstr "IPs activas" +#: ../../enterprise/extensions/ipam/ipam_excel.php:112 +#: ../../enterprise/extensions/ipam/ipam_excel.php:179 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1687 +msgid "Occupied %" +msgstr "Ocupado %" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:113 +#: ../../enterprise/extensions/ipam/ipam_excel.php:180 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1688 +msgid "Available %" +msgstr "Disponible %" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:114 +#: ../../enterprise/extensions/ipam/ipam_excel.php:181 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1689 +msgid "Managed IPs" +msgstr "IPs gestionadas" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:115 +#: ../../enterprise/extensions/ipam/ipam_excel.php:182 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1690 +msgid "Managed %" +msgstr "Gestionadas %" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:116 +#: ../../enterprise/extensions/ipam/ipam_excel.php:183 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1691 +msgid "Unmanaged %" +msgstr "No gestionadas %" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:117 +#: ../../enterprise/extensions/ipam/ipam_excel.php:184 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1692 +msgid "Reserved IPs" +msgstr "IPs reservadas" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:118 +#: ../../enterprise/extensions/ipam/ipam_excel.php:185 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1693 +msgid "Reserved %" +msgstr "Reservado %" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:119 +#: ../../enterprise/extensions/ipam/ipam_excel.php:186 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1694 +msgid "Not reserved %" +msgstr "No reservadas %" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:81 +msgid "Current Networks" +msgstr "Redes actuales" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "Please, create networks to assign to " +msgstr "Cree redes que asgignar a " + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "all networks selected" +msgstr "Todas las redes seleccionadas" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:130 +msgid "Please, create networks to assign to" +msgstr "Creer redes que asignar a" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:288 +msgid "Export to Excel" +msgstr "Exportar a Excel" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:341 +msgid "Assign next free IP" +msgstr "Asignar la siguiente IP libre" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:360 +msgid "Next available IP" +msgstr "Siguiente IP disponible" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1191 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:272 +#: ../../include/ajax/events.php:1234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:66 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:429 +msgid "Details" +msgstr "Detalles" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1193 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:245 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +msgid "Subnet" +msgstr "Subred" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1232 +#: ../../enterprise/godmode/agentes/inventory_manager.php:254 +#: ../../enterprise/operation/services/services.list.php:558 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:419 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:501 +#: ../../include/ajax/module.php:917 ../../include/functions_ui.php:1138 +#: ../../operation/agentes/group_view.php:192 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/servers/recon_view.php:91 +#: ../../operation/servers/recon_view.php:123 +msgid "Force" +msgstr "Forzar" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1381 +#: ../../operation/snmpconsole/snmp_statistics.php:53 +#: ../../operation/snmpconsole/snmp_view.php:80 ../../operation/menu.php:398 +#: ../../operation/menu.php:506 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../operation/events/event_statistics.php:46 +msgid "Statistics" +msgstr "Estadísticas" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1389 +msgid "Occupied" +msgstr "Ocupado" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1391 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 +msgid "Available" +msgstr "Disponible" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1397 +msgid "Not managed" +msgstr "No gestionado" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1403 +msgid "Not Reserved" +msgstr "No reservado" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +msgid "DESC" +msgstr "Descendiente" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +msgid "ASC" +msgstr "Ascendente" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +msgid "A -> Z" +msgstr "A -> Z" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +msgid "Z -> A" +msgstr "Z -> A" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Last check" +msgstr "Ultima comprobación" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +msgid "Newer -> Older" +msgstr "Más reciente -> Más antiguo" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Older -> Newer" +msgstr "Más antiguo -> Más reciente" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1449 +msgid "Exact address match" +msgstr "Coincide la dirección exacta" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1453 +msgid "S.O" +msgstr "S.O" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1458 +msgid "Big" +msgstr "Grande" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1459 +msgid "Tiny" +msgstr "Pequeño" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1460 +msgid "Icons style" +msgstr "Estilo de iconos" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1469 +msgid "Show not alive hosts" +msgstr "Mostrar máquinas inactivas" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1472 +msgid "Show only managed addresses" +msgstr "Mostrar solo direcciones administradas" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1475 +msgid "Reserved addresses" +msgstr "Direcciones reservadas" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1480 +msgid "Unreserved" +msgstr "No reservado" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1490 +msgid "Last Contact" +msgstr "Último contacto" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1520 +msgid "Filter options" +msgstr "Opciones de filtro" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1675 +msgid "id Network" +msgstr "ID de red" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1680 +msgid "ID recon task" +msgstr "Tarea de reconocimiento de ID" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1681 +msgid "Scan Interval" +msgstr "Intervalo de escaneo" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1682 +msgid "Users Operator" +msgstr "Operador de usuarios" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1683 +msgid "Total Ips" +msgstr "IPs totales" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1684 +msgid "Last Update" +msgstr "Última actualización" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1737 +msgid "OS Name" +msgstr "Nombre del OS" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1740 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:417 +msgid "Created at" +msgstr "Creado en" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1741 +msgid "Last updated" +msgstr "Última actualización" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1742 +msgid "Last modified" +msgstr "Última modificación" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1743 +msgid "Dhcp Leased" +msgstr "Dhcp prestado" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1744 +msgid "Dhcp Leased Mode" +msgstr "Modo Dhcp prestado" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1745 +msgid "Dhcp Leased Expiration" +msgstr "Caducidad de Dhcp prestado" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1746 +msgid "Mac address" +msgstr "Dirección Mac" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:136 +msgid "There is not an available IP." +msgstr "No hay una IP disponible" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:138 +msgid "Next available IP Address is:" +msgstr "La siguiente IP disponible es:" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:155 +msgid "Reserve this IP now" +msgstr "Reservar esta IP ahora" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:162 +msgid "Manage this IP now" +msgstr "Gestionar esta IP ahora" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:207 +msgid "Operating system" +msgstr "Sistema operativo" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:217 +msgid "This agent has other IPs" +msgstr "Este agente tiene otras IPs." + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 +msgid "Generate events" +msgstr "Generar eventos" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:246 +msgid "Leases Dhcp" +msgstr "Periodo de concesión Dhcp" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 +msgid "leased mode" +msgstr "Modo de concesión" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:257 +msgid "leased expiration" +msgstr "Concesión caducada" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:262 +#: ../../include/class/NetworkMap.class.php:2935 +msgid "MAC" +msgstr "MAC" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:288 +msgid "Edited" +msgstr "Modificado" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:298 +msgid "Tracking" +msgstr "Seguimiento" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:313 +msgid "Ping" +msgstr "Ping" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:329 +#: ../../include/ajax/events.php:1033 ../../include/ajax/events.php:1066 +#, php-format +msgid "Executing command: %s" +msgstr "Ejecutar comando: %s" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:336 +#: ../../include/ajax/events.php:1050 ../../include/ajax/events.php:1073 +msgid "Execute again" +msgstr "Ejecutar de nuevo" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:350 +msgid "Ping to host" +msgstr "Ping a un host" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:44 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:72 +msgid "There is no vlan name. Please introduce a name" +msgstr "No hay nombre de vlan. Añada un nombre" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:55 +msgid "Vlan created" +msgstr "Vlan creada" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:57 +msgid "Vlan not created" +msgstr "Vlan no creada" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:95 +msgid "Vlan name exists in bbdd, please select other name" +msgstr "" +"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:89 +msgid "Vlan updated" +msgstr "Vlan actualizada" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:91 +msgid "Vlan not updated" +msgstr "Vlan no actualizada" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:115 +msgid "Could not be deleted, please select vlan" +msgstr "No se ha podido borrar, seleccione vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:143 +msgid "Network name cannot be repeated in this Vlan" +msgstr "El nombre de la red no se puede repetir en esta vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:164 +msgid "Vlan name could not be added, please select vlan" +msgstr "No se ha podido añadir el nombre de la vlan, seleccione vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:188 +msgid "Could not be deleted, please select vlan and network" +msgstr "No se ha podido eliminar, seleccione una vlan y una red" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:240 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:346 +msgid "Update Vlan" +msgstr "Actualizar vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:247 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:431 +msgid "New Vlan" +msgstr "Nueva vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:314 +msgid "Delete network to vlan" +msgstr "Borrar una red de vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:353 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:372 +msgid "Add network to Vlan" +msgstr "Añadir red a vlan" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:356 +msgid "Create network" +msgstr "Crear red" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:388 +msgid "Delete Vlan" +msgstr "Eliminar vlan" + +#: ../../enterprise/extensions/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "Direcciones" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:44 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:45 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:56 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:57 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:58 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:59 +msgid "Example:" +msgstr "Ejemplo:" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 +msgid "Bit mask" +msgstr "Máscara de bit" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:49 +msgid "Net mask" +msgstr "Máscara de red" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 +msgid "Mask format" +msgstr "Formato de máscara" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:67 +msgid "Calculate" +msgstr "Calcular" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:74 +msgid "Address field is empty" +msgstr "El campo Dirección está vacío." + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:82 +msgid "Mask field is empty" +msgstr "El campo Máscara está vacío." + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:100 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:118 +msgid "Incorrect address format" +msgstr "Formato de dirección incorrecto" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:105 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:110 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:123 +msgid "Incorrect mask format" +msgstr "Formato de máscara incorrecto" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:151 +msgid "Network mask" +msgstr "Máscara de red" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:167 +msgid "Network wildcard" +msgstr "Red wildcard" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:172 +msgid "Network address" +msgstr "Dirección de red" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:177 +msgid "Broadcast address" +msgstr "Dirección de difusión" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:182 +msgid "First valid IP" +msgstr "Primera IP válida" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:187 +msgid "Last valid IP" +msgstr "Última IP válida" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:193 +msgid "Hosts/Net" +msgstr "Hosts/Red" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:46 +msgid "Network not found" +msgstr "Red no encontrada" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:83 +#: ../../operation/incidents/incident.php:325 +msgid "All users" +msgstr "Todos los usuarios" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +msgid "Format: IP/Mask" +msgstr "Formato: IP/Máscara" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:96 +msgid "Examples" +msgstr "Ejemplos" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:119 +#: ../../enterprise/include/class/Azure.cloud.php:744 +#: ../../enterprise/include/class/VMware.app.php:528 +#: ../../enterprise/include/class/SAP.app.php:471 +#: ../../enterprise/include/class/Aws.cloud.php:433 +#: ../../enterprise/include/class/Aws.cloud.php:1097 +#: ../../enterprise/include/class/MySQL.app.php:452 +#: ../../enterprise/include/class/Oracle.app.php:450 +#: ../../godmode/wizards/HostDevices.class.php:844 +#: ../../include/functions_servers.php:590 +#: ../../include/functions_servers.php:1223 +#: ../../include/class/CustomNetScan.class.php:478 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "Servidor Discovery" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:137 +msgid "For example: Central Data Center" +msgstr "Por ejemplo: Central General de Datos" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:142 +msgid "Include statistical monitors" +msgstr "Incluir monitores estadísticos" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:157 +msgid "Lightweight mode" +msgstr "Modo ligero" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:158 +msgid "Use quicker network scan" +msgstr "Usar escaneado de red rápido" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:174 +msgid "Target group for monitoring agent" +msgstr "Grupo de destino para agente de monitorización" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 +msgid "Scan interval" +msgstr "Comprobar intervalo" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 +msgid "0 for manually scan" +msgstr "0 para comprobación manual" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 +msgid "Operator users" +msgstr "Usuarios del operador" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 +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/resource_registration/functions.php:38 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." +msgstr "" +"Error al crear la política '%s', el nombre ya existe. Ese nombre no está " +"disponible." + +#: ../../enterprise/extensions/resource_registration/functions.php:46 +#, php-format +msgid "" +"Warning create '%s' policy, the name exist, the policy have a name %s." +msgstr "" +"Política de advertencia '%s' creada, el nombre existe, la política tiene el " +"nombre %s." + +#: ../../enterprise/extensions/resource_registration/functions.php:55 +msgid "Error the policy haven't name." +msgstr "Error: la política no tiene nombre." + +#: ../../enterprise/extensions/resource_registration/functions.php:76 +#, php-format +msgid "Success create '%s' policy." +msgstr "Política '%s' creada correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:77 +#, php-format +msgid "Error create '%s' policy." +msgstr "Error al crear la política '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:114 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "Error al añadir el agente '%s'. El agente no existe" + +#: ../../enterprise/extensions/resource_registration/functions.php:118 +#, php-format +msgid "Success add '%s' agent." +msgstr "Agente '%s' añadido correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:119 +#, php-format +msgid "Error add '%s' agent." +msgstr "Error al añadir el agente '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:138 +msgid "The collection does not exist" +msgstr "La colección no existe" + +#: ../../enterprise/extensions/resource_registration/functions.php:143 +#, php-format +msgid "Success add '%s' collection." +msgstr "Colección '%s' añadida correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:144 +#, php-format +msgid "Error add '%s' collection." +msgstr "Error al añadir colección '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:162 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "Plugin de agente '%s' añadido correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:163 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "Error al añadir el plugin de agente '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:176 +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:377 +#: ../../enterprise/extensions/resource_registration/functions.php:438 +#: ../../enterprise/extensions/resource_registration/functions.php:539 +#: ../../enterprise/extensions/resource_registration/functions.php:595 +msgid "Error add the module, error in tag component." +msgstr "Error al añadir el módulo, error en el componente etiqueta." + +#: ../../enterprise/extensions/resource_registration/functions.php:647 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "" +"Error al importar el plugin del módulo; el plugin no está registrado." + +#: ../../enterprise/extensions/resource_registration/functions.php:657 +#, php-format +msgid "Success add '%s' module." +msgstr "Módulo '%s' añadido correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:658 +#, php-format +msgid "Error add '%s' module." +msgstr "Error al añadir el módulo '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:670 +#, 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:681 +#, 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:697 +#, php-format +msgid "Success add '%s' alert." +msgstr "Alerta '%s' añadida correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:698 +#, php-format +msgid "Error add '%s' alert." +msgstr "Error al añadir alerta '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:719 +#, 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:738 +#, php-format +msgid "Success add '%s' action." +msgstr "Acción '%s' añadida correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:739 +#: ../../extensions/resource_registration.php:385 +#: ../../extensions/resource_registration.php:407 +#: ../../extensions/resource_registration.php:418 +#, php-format +msgid "Error add '%s' action." +msgstr "Error al añadir la acción '%s'" + +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "Top 5 VMs del uso de CPU" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "Top 5 VMs del uso de memoria" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "Top 5 VMs en uso de aprovisionamiento" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "Top 5 VMs del uso de la red" + +#: ../../enterprise/extensions/vmware/vmware_view.php:691 +msgid "Host ESX" +msgstr "Host ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1016 +#: ../../enterprise/include/functions_services.php:2682 +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/operation/agentes/policy_view.php:387 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/tag_view.php:930 +#: ../../enterprise/operation/agentes/tag_view.php:936 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../mobile/operation/modules.php:521 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:584 +#: ../../mobile/operation/modules.php:607 +#: ../../include/functions_modules.php:2566 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:3508 +#: ../../include/functions_modules.php:3540 ../../include/functions_ui.php:3610 +#: ../../include/functions_ui.php:3676 ../../include/class/Tree.class.php:610 +#: ../../include/functions_events.php:54 ../../include/functions_events.php:106 +#: ../../include/functions_events.php:169 +#: ../../operation/agentes/status_monitor.php:1388 +#: ../../operation/agentes/status_monitor.php:1394 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/pandora_networkmap.view.php:310 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/search_modules.php:102 +#: ../../operation/search_modules.php:129 +#: ../../operation/events/events.php:1744 +#: ../../operation/events/events.php:1811 +#: ../../operation/events/events.php:1838 +msgid "NORMAL" +msgstr "NORMAL" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1021 +#: ../../enterprise/include/functions_services.php:2688 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/operation/agentes/policy_view.php:381 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:944 +#: ../../enterprise/operation/agentes/tag_view.php:950 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../mobile/operation/modules.php:527 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:590 +#: ../../mobile/operation/modules.php:615 +#: ../../include/functions_modules.php:2560 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:3512 +#: ../../include/functions_modules.php:3532 ../../include/functions_ui.php:3616 +#: ../../include/functions_ui.php:3686 ../../include/class/Tree.class.php:580 +#: ../../include/functions_events.php:57 ../../include/functions_events.php:110 +#: ../../include/functions_events.php:154 +#: ../../operation/agentes/status_monitor.php:1402 +#: ../../operation/agentes/status_monitor.php:1408 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/pandora_networkmap.view.php:304 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:137 +#: ../../operation/events/events.php:1719 +#: ../../operation/events/events.php:1817 +#: ../../operation/events/events.php:1843 +msgid "CRITICAL" +msgstr "CRÍTICO" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1026 +#: ../../enterprise/include/functions_services.php:2694 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:384 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:958 +#: ../../enterprise/operation/agentes/tag_view.php:964 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../godmode/update_manager/update_manager.offline.php:100 +#: ../../mobile/operation/modules.php:533 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:596 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2563 +#: ../../include/functions_modules.php:2580 +#: ../../include/functions_modules.php:3516 +#: ../../include/functions_modules.php:3548 ../../include/functions_ui.php:3604 +#: ../../include/functions_ui.php:3681 ../../include/class/Tree.class.php:588 +#: ../../include/class/NetworkMap.class.php:2820 +#: ../../include/functions_events.php:68 ../../include/functions_events.php:102 +#: ../../include/functions_events.php:172 +#: ../../operation/agentes/status_monitor.php:1416 +#: ../../operation/agentes/status_monitor.php:1422 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:307 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:114 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1749 +#: ../../operation/events/events.php:1805 +#: ../../operation/events/events.php:1860 +msgid "WARNING" +msgstr "ADVERTENCIA" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1031 +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/include/functions_services.php:2727 +#: ../../enterprise/include/functions_services.php:2734 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:2580 +#: ../../include/functions_modules.php:3520 ../../include/functions_ui.php:3623 +#: ../../include/functions_ui.php:3701 ../../include/class/Tree.class.php:594 +#: ../../include/functions_events.php:71 ../../include/functions_events.php:115 +#: ../../include/functions_events.php:175 +#: ../../operation/agentes/status_monitor.php:1430 +#: ../../operation/agentes/status_monitor.php:1436 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:120 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1716 +#: ../../operation/events/events.php:1824 +#: ../../operation/events/events.php:1835 +msgid "UNKNOWN" +msgstr "DESCONOCIDO" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1043 +msgid "CPU Usage" +msgstr "Uso de CPU" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1053 +msgid "Memory Usage" +msgstr "Uso de memoria" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1063 +msgid "Disk I/O Rate" +msgstr "Ratio lectura/escritura de disco" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1073 +msgid "Network Usage" +msgstr "Uso de red" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1172 +msgid "Settings updated " +msgstr "Ajustes actualizados " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1174 +msgid "No changes in settings " +msgstr "No hay cambios en los ajustes " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +msgid "CPU usage graphs" +msgstr "Gráficas de uso de CPU" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1183 +#: ../../enterprise/extensions/vmware/vmware_view.php:1189 +#: ../../enterprise/extensions/vmware/vmware_view.php:1195 +#: ../../enterprise/extensions/vmware/vmware_view.php:1201 +msgid "Force minimum value" +msgstr "Forzar valor mínimo" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +#: ../../enterprise/extensions/vmware/vmware_view.php:1203 +msgid "Force maximum value" +msgstr "Forzar valor máximo" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +msgid "Memory usage graphs" +msgstr "Gráficos de uso de memoria" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +msgid "Provisioning Usage graphs" +msgstr "Gráficos de uso de aprovisionamiento" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +msgid "Network usage graphs" +msgstr "Gráficos de uso de red" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1211 +msgid "Map items" +msgstr "Elementos del mapa" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1212 +msgid "Show datastores" +msgstr "Mostrar datastores" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1214 +msgid "Show ESXis" +msgstr "Mostrar ESXis" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +msgid "Show VMs" +msgstr "Mostrar VMs" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1218 +msgid "Font size (px)" +msgstr "Tamaño de fuente (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1220 +msgid "Node radius (px)" +msgstr "Radio del nodo (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1225 +msgid "" +"Looking for VMware configuration? You can configure several tasks using " +"Discovery Applications." +msgstr "" +"¿Está buscando la configuración VMware? Puede configurar varias tareas " +"usando las aplicaciones de Discovery." + +#: ../../enterprise/extensions/vmware/vmware_view.php:1226 +#: ../../enterprise/extensions/vmware/vmware_view.php:1457 +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "this link" +msgstr "este enlace" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1233 +msgid "Graph settings" +msgstr "Ajustes de gráfico" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1238 +msgid "Map settings" +msgstr "Ajustes del mapa" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1278 +msgid "Welcome" +msgstr "Bienvenid@" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1281 +#: ../../enterprise/extensions/vmware/vmware_view.php:1299 +#: ../../include/lib/Dashboard/Widgets/network_map.php:267 +#: ../../operation/gis_maps/render_view.php:165 +msgid "Map" +msgstr "Mapa" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1284 +#: ../../enterprise/extensions/vmware/vmware_view.php:1304 +#: ../../godmode/users/configure_user.php:899 +#: ../../mobile/include/functions_web.php:20 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:344 ../../operation/menu.php:355 +msgid "Dashboard" +msgstr "Dashboard" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1288 +msgid "ESX Detail" +msgstr "Detalle de ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1309 +msgid "ESX details" +msgstr "Detalles de ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1314 +msgid "VMware view options" +msgstr "Opciones de la vista de VMware" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1435 +msgid "" +"Some ESX Hosts are not up to date, please check VMware plugin configuration." +msgstr "" +"Algunos hosts ESX no están actualizados. Compruebe la configuración del " +"plugin VMware." + +#: ../../enterprise/extensions/vmware/vmware_view.php:1437 +msgid "VMware plugin is working." +msgstr "El plugin de VMware está en funcionamiento." + +#: ../../enterprise/extensions/vmware/vmware_view.php:1446 +msgid "View VMware map" +msgstr "Vista del mapa VMware" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1447 +msgid "View VMware dashboard" +msgstr "Vista del panel VMware" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1448 +msgid "View ESX Host statistics from" +msgstr "Ver estadísticas del host ESX desde" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1455 +msgid "There are no VMware information detected in this environment." +msgstr "No se ha detectado información VMware en este entorno." + +#: ../../enterprise/extensions/vmware/vmware_view.php:1456 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "" +"Puede configurar diversas tareas usando las aplicaciones Discovery en " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1659 +msgid "Show Datastores" +msgstr "Mostrar datastores" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1662 +msgid "Show ESX" +msgstr "Mostrar ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1665 +msgid "Show VM" +msgstr "Mostrar VM" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1669 +#: ../../godmode/reporting/visual_console_builder.wizard.php:235 +msgid "Font" +msgstr "Fuente" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1673 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:124 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:74 +#: ../../operation/agentes/pandora_networkmap.editor.php:281 +msgid "Node radius" +msgstr "Radio de los nodos" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1683 +msgid "View options" +msgstr "Ver opciones" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "Estado: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:343 +msgid "Status: " +msgstr "Estado: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "Cambiar estado:" + +#: ../../enterprise/extensions/backup.php:69 +msgid "Backup" +msgstr "Copia de seguridad" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "Exportar agentes" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../extensions/resource_exportation.php:425 +#: ../../extensions/resource_exportation.php:428 +#: ../../operation/agentes/exportdata.php:372 +msgid "Export" +msgstr "Exportar" + +#: ../../enterprise/extensions/csv_import_group.php:26 +msgid "CSV import group" +msgstr "Importar grupos de CSV" + +#: ../../enterprise/load_html_extra.php:194 +msgid "Activate license" +msgstr "Activar la licencia" + +#: ../../enterprise/load_html_extra.php:195 +msgid "Your request key is:" +msgstr "Tu clave es:" + +#: ../../enterprise/load_html_extra.php:197 +#, php-format +msgid "" +"You can activate it manually here or " +"automatically filling the form below:" +msgstr "" +"Lo puedes activar manualmente aquí o " +"automáticamente rellenando el siguiente formulario:" + +#: ../../enterprise/load_html_extra.php:202 +msgid "Auth Key:" +msgstr "Clave de autentificación:" + +#: ../../enterprise/load_html_extra.php:210 +#: ../../enterprise/load_html_extra.php:229 +msgid "Online validation" +msgstr "Validación en línea" + +#: ../../enterprise/load_html_extra.php:222 +msgid "ERROR:" +msgstr "ERROR:" + +#: ../../enterprise/load_html_extra.php:222 +msgid "When connecting to licence server." +msgstr "Al conectar con el servidor de licencias." + +#: ../../enterprise/godmode/modules/configure_local_component.php:137 +msgid "Update Local Component" +msgstr "Actualizar el componente local" + +#: ../../enterprise/godmode/modules/configure_local_component.php:139 +msgid "Create Local Component" +msgstr "Crear componente local" + +#: ../../enterprise/godmode/modules/configure_local_component.php:158 +#: ../../godmode/modules/manage_network_components_form_common.php:63 +#: ../../godmode/alerts/configure_alert_template.php:959 +msgid "Wizard level" +msgstr "Nivel del asistente" + +#: ../../enterprise/godmode/modules/configure_local_component.php:186 +msgid "Throw unknown events" +msgstr "Generar eventos desconocidos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:286 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:375 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +#: ../../godmode/massive/massive_edit_modules.php:524 +msgid "Dynamic Interval" +msgstr "Intervalo dinámico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:288 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../godmode/agentes/module_manager_editor_common.php:628 +msgid "Advanced options Dynamic Threshold" +msgstr "Opciones avanzadas rango dinámico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:290 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +msgid "Dynamic Min. " +msgstr "Dinámico mínimo " + +#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:379 +#: ../../godmode/modules/manage_network_components_form_common.php:163 +#: ../../godmode/massive/massive_edit_modules.php:528 +msgid "Dynamic Max." +msgstr "Dinámico máximo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:294 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:381 +#: ../../godmode/modules/manage_network_components_form_common.php:165 +#: ../../godmode/massive/massive_edit_modules.php:530 +msgid "Dynamic Two Tailed: " +msgstr "El segundo rango dínámico falla: " + +#: ../../enterprise/godmode/modules/configure_local_component.php:297 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:384 +#: ../../godmode/modules/manage_network_components_form_common.php:168 +#: ../../godmode/agentes/module_manager_editor_common.php:385 +#: ../../godmode/massive/massive_edit_modules.php:533 +#: ../../include/functions_treeview.php:96 +#: ../../include/functions_alerts.php:662 +msgid "Warning status" +msgstr "Estado advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../enterprise/godmode/modules/configure_local_component.php:333 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:262 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:311 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:388 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:457 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:671 +#: ../../godmode/modules/manage_network_components_form_common.php:169 +#: ../../godmode/modules/manage_network_components_form_common.php:204 +#: ../../godmode/massive/massive_edit_modules.php:537 +#: ../../godmode/massive/massive_edit_modules.php:606 +#: ../../godmode/massive/massive_edit_modules.php:813 +#: ../../godmode/alerts/configure_alert_template.php:764 +#: ../../include/functions_reporting_html.php:4219 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:659 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Min." +msgstr "Mín." + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/configure_local_component.php:342 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:277 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:326 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:403 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:472 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:673 +#: ../../godmode/modules/manage_network_components_form_common.php:178 +#: ../../godmode/modules/manage_network_components_form_common.php:213 +#: ../../godmode/agentes/module_manager_editor_common.php:400 +#: ../../godmode/agentes/module_manager_editor_common.php:453 +#: ../../godmode/massive/massive_edit_modules.php:552 +#: ../../godmode/massive/massive_edit_modules.php:621 +#: ../../godmode/massive/massive_edit_modules.php:815 +#: ../../godmode/alerts/configure_alert_template.php:775 +#: ../../include/functions_reporting_html.php:4220 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:658 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Max." +msgstr "Máx." + +#: ../../enterprise/godmode/modules/configure_local_component.php:316 +#: ../../enterprise/godmode/modules/configure_local_component.php:351 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:292 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:341 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:418 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:487 +#: ../../godmode/modules/manage_network_components_form_common.php:187 +#: ../../godmode/modules/manage_network_components_form_common.php:222 +#: ../../godmode/agentes/module_manager_editor_common.php:416 +#: ../../godmode/agentes/module_manager_editor_common.php:469 +#: ../../godmode/massive/massive_edit_modules.php:567 +#: ../../godmode/massive/massive_edit_modules.php:636 +#: ../../include/functions_treeview.php:90 +#: ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "Str." + +#: ../../enterprise/godmode/modules/configure_local_component.php:332 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:453 +#: ../../godmode/modules/manage_network_components_form_common.php:203 +#: ../../godmode/agentes/module_manager_editor_common.php:438 +#: ../../godmode/massive/massive_edit_modules.php:602 +#: ../../include/functions_treeview.php:108 +#: ../../include/functions_alerts.php:663 +msgid "Critical status" +msgstr "Estado crítico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:217 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../godmode/modules/manage_network_components_form_common.php:234 +#: ../../godmode/agentes/module_manager_editor_common.php:710 +#: ../../godmode/massive/massive_edit_modules.php:858 +msgid "FF threshold" +msgstr "Umbral FF" + +#: ../../enterprise/godmode/modules/configure_local_component.php:366 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:220 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:784 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:712 +#: ../../godmode/massive/massive_edit_modules.php:922 +msgid "Keep counters" +msgstr "Mantener los contadores" + +#: ../../enterprise/godmode/modules/configure_local_component.php:374 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:237 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:728 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:743 +#: ../../godmode/modules/manage_network_components_form_common.php:251 +#: ../../godmode/agentes/module_manager_editor_common.php:729 +#: ../../godmode/massive/massive_edit_modules.php:866 +#: ../../godmode/massive/massive_edit_modules.php:881 +msgid "All state changing" +msgstr "Todos los cambios de estado" + +#: ../../enterprise/godmode/modules/configure_local_component.php:389 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:727 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../godmode/modules/manage_network_components_form_common.php:267 +#: ../../godmode/agentes/module_manager_editor_common.php:751 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/massive/massive_edit_modules.php:891 +msgid "Each state changing" +msgstr "Cada cambio de estado" + +#: ../../enterprise/godmode/modules/configure_local_component.php:390 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:260 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../godmode/modules/manage_network_components_form_common.php:268 +#: ../../godmode/agentes/module_manager_editor_common.php:752 +#: ../../godmode/massive/massive_edit_modules.php:892 +msgid "To normal" +msgstr "A normal" + +#: ../../enterprise/godmode/modules/configure_local_component.php:399 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:764 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:766 +#: ../../godmode/massive/massive_edit_modules.php:902 +msgid "To warning" +msgstr "A advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:408 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:288 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:774 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/massive/massive_edit_modules.php:912 +msgid "To critical" +msgstr "A crítico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:419 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:1966 +#: ../../godmode/modules/manage_network_components_form_common.php:296 +#: ../../godmode/agentes/module_manager_editor_common.php:487 +#: ../../godmode/massive/massive_edit_modules.php:970 +#: ../../include/functions_reporting.php:3150 +msgid "Historical data" +msgstr "Histórico de datos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:422 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../godmode/agentes/module_manager_editor_common.php:810 +#: ../../godmode/massive/massive_edit_modules.php:956 +msgid "FF timeout" +msgstr "FF tiempo de espera" + +#: ../../enterprise/godmode/modules/configure_local_component.php:430 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../godmode/massive/massive_edit_modules.php:966 +msgid "" +"Timeout in secs from start of flip flop counting. If this value is exceeded, " +"FF counter is reset. Set to 0 for no timeout." +msgstr "" +"Tiempo de espera en segundos desde el comiendo del contador flip flop. Si se " +"excede este valor, el contador FF será reiniciado. Poner 0 para no tener " +"tiempo de espera" + +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +msgid "This value can be set only in the async modules." +msgstr "Solo debe establecerse este valor en los módulos asíncronos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:433 +#: ../../enterprise/include/functions_reporting_csv.php:1002 +#: ../../godmode/modules/manage_network_components_form_common.php:299 +#: ../../godmode/agentes/module_manager_editor_common.php:605 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:474 +#: ../../include/functions_reports.php:727 +#: ../../include/functions_reporting.php:4850 +msgid "Min. Value" +msgstr "Valor mínimo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:433 +#: ../../godmode/modules/manage_network_components_form_common.php:300 +msgid "Any value below this number is discarted" +msgstr "Cualquier valor por debajo de este número será descartado." + +#: ../../enterprise/godmode/modules/configure_local_component.php:438 +#: ../../enterprise/include/functions_reporting_csv.php:1057 +#: ../../godmode/modules/manage_network_components_form_common.php:301 +#: ../../godmode/agentes/module_manager_editor_common.php:609 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:486 +#: ../../include/functions_reports.php:723 +#: ../../include/functions_reporting.php:4846 +msgid "Max. Value" +msgstr "Valor máximo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:438 +#: ../../godmode/modules/manage_network_components_form_common.php:302 +msgid "Any value over this number is discarted" +msgstr "Cualquier valor por encima de este número será descartado." + +#: ../../enterprise/godmode/modules/configure_local_component.php:445 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:559 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:590 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "Posprocesado" + +#: ../../enterprise/godmode/modules/configure_local_component.php:472 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load a basic structure on data configuration" +msgstr "Cargar una estructura básica en la configuración de datos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +msgid "Check the correct structure of the data configuration" +msgstr "Comprobar la estructura correcta de la configuración de datos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:478 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +msgid "First line must be \"module_begin\"" +msgstr "La primera línea tiene que ser \"module_begin\"." + +#: ../../enterprise/godmode/modules/configure_local_component.php:479 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +msgid "Data configuration is empty" +msgstr "La configuración de datos está vacía." + +#: ../../enterprise/godmode/modules/configure_local_component.php:480 +#: ../../enterprise/godmode/modules/configure_local_component.php:484 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +msgid "Last line must be \"module_end\"" +msgstr "La última línea tiene que ser \"module_end\"." + +#: ../../enterprise/godmode/modules/configure_local_component.php:481 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +msgid "" +"Name is missed. Please add a line with \"module_name yourmodulename\" to " +"data configuration" +msgstr "" +"Falta el nombre. Por favor, introduce una línea con \"module_name " +"yourmodulename\" a la configuración de datos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:482 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to " +"data configuration" +msgstr "" +"Falta el tipo. Por favor, introduce una línea con \"module_type " +"yourmoduletype\" a la configuración de datos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:483 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +msgid "Type is wrong. Please set a correct type" +msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto." + +#: ../../enterprise/godmode/modules/configure_local_component.php:486 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 +msgid "Error in the syntax, please check the data configuration." +msgstr "Error en la sintaxis; comprueba la configuración de datos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:487 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +msgid "Data configuration are built correctly" +msgstr "La configuración de datos se ha efectuado correctamente." + +#: ../../enterprise/godmode/modules/configure_local_component.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/agentes/module_manager_editor_common.php:1009 +#: ../../godmode/massive/massive_edit_modules.php:1020 +msgid "Critical instructions" +msgstr "Instrucciones de crítico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/massive/massive_edit_modules.php:1020 +msgid "Instructions when the status is critical" +msgstr "Instrucciones en caso de que se encuentre en estado crítico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../godmode/agentes/module_manager_editor_common.php:1014 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Warning instructions" +msgstr "Instrucciones de advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Instructions when the status is warning" +msgstr "Instrucciones en caso de que se encuentre en estado de advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../godmode/agentes/module_manager_editor_common.php:1018 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "Unknown instructions" +msgstr "Instrucciones de desconocido" + +#: ../../enterprise/godmode/modules/configure_local_component.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "Instructions when the status is unknown" +msgstr "Instrucciones en caso de que se encuentre en estado desconocido" + +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../godmode/modules/manage_network_components_form_common.php:329 +#: ../../godmode/agentes/module_manager_editor_common.php:1059 +#: ../../godmode/massive/massive_edit_modules.php:988 +#: ../../godmode/module_library/module_library_view.php:105 +msgid "Category" +msgstr "Categoría" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../godmode/modules/manage_network_components_form_common.php:349 +#: ../../godmode/agentes/module_manager_editor_common.php:836 +msgid "Tags available" +msgstr "Etiquetas disponibles" + +#: ../../enterprise/godmode/modules/configure_local_component.php:551 +#: ../../godmode/modules/manage_network_components_form_common.php:367 +#: ../../godmode/agentes/module_manager_editor_common.php:926 +msgid "Add tags to module" +msgstr "Añadir etiquetas al módulo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:553 +#: ../../godmode/modules/manage_network_components_form_common.php:369 +#: ../../godmode/agentes/module_manager_editor_common.php:928 +msgid "Delete tags to module" +msgstr "Eliminar etiquetas del módulo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:555 +#: ../../enterprise/godmode/setup/setup_auth.php:169 +#: ../../enterprise/godmode/setup/setup_auth.php:441 +#: ../../enterprise/godmode/setup/setup_auth.php:1171 +#: ../../godmode/modules/manage_network_components_form_common.php:371 +#: ../../godmode/agentes/module_manager_editor_common.php:930 +msgid "Tags selected" +msgstr "Etiquetas seleccionadas" + +#: ../../enterprise/godmode/modules/configure_local_component.php:577 +msgid "Macros" +msgstr "Macros" + +#: ../../enterprise/godmode/modules/configure_local_component.php:613 +#: ../../godmode/servers/plugin.php:485 +#: ../../include/class/ManageNetScanScripts.class.php:640 +msgid "Default value" +msgstr "Valor por defecto" + +#: ../../enterprise/godmode/modules/configure_local_component.php:629 +#: ../../godmode/servers/plugin.php:524 +#: ../../include/class/ManageNetScanScripts.class.php:728 +msgid "Add macro" +msgstr "Añadir macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:637 +#: ../../godmode/servers/plugin.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:746 +msgid "Delete macro" +msgstr "Eliminar macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:882 +#: ../../godmode/modules/manage_network_components_form_common.php:634 +#: ../../godmode/agentes/module_manager_editor_common.php:1826 +msgid "Normal Status" +msgstr "Estado normal" + +#: ../../enterprise/godmode/modules/configure_local_component.php:883 +#: ../../godmode/modules/manage_network_components_form_common.php:635 +#: ../../godmode/agentes/module_manager_editor_common.php:1827 +msgid "Warning Status" +msgstr "Estado de advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:884 +#: ../../godmode/modules/manage_network_components_form_common.php:636 +#: ../../godmode/agentes/module_manager_editor_common.php:1828 +msgid "Critical Status" +msgstr "Estado crítico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:886 +#: ../../godmode/modules/manage_network_components_form_common.php:638 +#: ../../godmode/agentes/module_manager_editor_common.php:1830 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "" +"Por favor, introduce un máximo de advertencia mayor que el mínimo de " +"advertencia." + +#: ../../enterprise/godmode/modules/configure_local_component.php:887 +#: ../../godmode/modules/manage_network_components_form_common.php:639 +#: ../../godmode/agentes/module_manager_editor_common.php:1831 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "" +"Por favor introduce un máximo de crítico mayor que el mínimo de crítico." + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:35 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "" +"Para administrar el plugin de inventario active la gestión centralizada" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:73 +msgid "" +"This console is not manager of this environment,\n" +" please manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "Esta consola no gestiona este entorno." + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:120 +msgid "Successfully created inventory module" +msgstr "Inventario de módulo creado correctamente" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:123 +#: ../../enterprise/include/functions_enterprise_api.php:4583 +msgid "Error creating inventory module" +msgstr "Error al crear módulo del inventario" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:140 +#: ../../enterprise/godmode/agentes/inventory_manager.php:125 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 +msgid "Successfully updated inventory module" +msgstr "Módulo del inventario actualizado correctamente" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../enterprise/godmode/agentes/inventory_manager.php:127 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/include/functions_enterprise_api.php:4630 +msgid "Error updating inventory module" +msgstr "Error al actualizar el módulo del inventario" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:171 +#: ../../enterprise/godmode/agentes/inventory_manager.php:97 +msgid "Successfully deleted inventory module" +msgstr "Módulo del inventario eliminado correctamente" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:174 +#: ../../enterprise/godmode/agentes/inventory_manager.php:99 +#: ../../enterprise/include/functions_enterprise_api.php:4672 +msgid "Error deleting inventory module" +msgstr "Error al eliminar el módulo del inventario" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:207 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:240 +#: ../../enterprise/godmode/modules/local_components.php:388 +#: ../../godmode/modules/manage_nc_groups.php:184 +#: ../../godmode/modules/manage_network_components.php:446 +#: ../../godmode/modules/manage_network_templates.php:102 +msgid "Successfully multiple deleted" +msgstr "Supresión múltiple correcta" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:208 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:241 +#: ../../enterprise/godmode/modules/local_components.php:389 +#: ../../godmode/modules/manage_nc_groups.php:185 +#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_templates.php:103 +msgid "Not deleted. Error deleting multiple data" +msgstr "No borrado. Error al borrar datos múltiples." + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:267 +msgid "Successfully created inventory module in the node" +msgstr "Módulo de inventario creado correctamente en el nodo" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:270 +msgid "Error creating inventory module in the node" +msgstr "Error al crear módulo de inventario en el nodo" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:372 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "Intérprete" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:381 +msgid "No inventory modules defined" +msgstr "No hay módulos de inventario definidos" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:402 +msgid "Local module" +msgstr "Módulo local" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:404 +msgid "Remote/Local" +msgstr "Remoto/Local" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:420 +msgid "Deploy to the nodes" +msgstr "Desplegar a los nodos" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:464 +msgid "" +"The configurations of inventory modules from the nodes have been unified. \n" +"\t\tFrom this point on, changes to the inventory scripts must be made " +"through this screen." +msgstr "" +"Las configuraciones de los módulos de inventario de los nodos se han " +"unificado." + +#: ../../enterprise/godmode/modules/local_components.php:107 +#: ../../godmode/modules/manage_network_components.php:169 +#: ../../godmode/alerts/configure_alert_template.php:149 +#, php-format +msgid "Successfully created from %s" +msgstr "Creado correctamente desde %s" + +#: ../../enterprise/godmode/modules/local_components.php:123 +msgid "Local component management" +msgstr "Gestión de componentes locales" + +#: ../../enterprise/godmode/modules/local_components.php:279 +#: ../../godmode/modules/manage_network_components.php:309 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "Creado correctamente" + +#: ../../enterprise/godmode/modules/local_components.php:347 +#: ../../godmode/modules/manage_network_components.php:390 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "Actualizado correctamente" + +#: ../../enterprise/godmode/modules/local_components.php:488 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2763 +#: ../../godmode/modules/manage_network_components.php:580 +msgid "Free Search" +msgstr "Búsqueda libre" + +#: ../../enterprise/godmode/modules/local_components.php:489 +msgid "Search by name, description or data, list matches." +msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos." + +#: ../../enterprise/godmode/modules/local_components.php:612 +#: ../../enterprise/godmode/policies/policy_modules.php:1530 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:453 +#: ../../godmode/modules/manage_network_components.php:737 +#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/alerts/alert_templates.php:402 +msgid "Duplicate" +msgstr "Duplicar" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:162 +msgid "Inventory module error" +msgstr "Error del módulo del inventario" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "Dejar en blanco para los módulos de inventario LOCALES" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "Modo bloqueo" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../include/class/ModuleTemplates.class.php:1113 +msgid "Format" +msgstr "Formato" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "Separar campos con " + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../include/ajax/double_auth.ajax.php:145 +#: ../../include/ajax/double_auth.ajax.php:283 +msgid "Code" +msgstr "Código" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" +"Aquí se coloca el script para los módulos de inventario REMOTOS. Los módulos " +"de inventario locales no usan este campo." + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55 +msgid "Cannot delete rule from autoconfiguration" +msgstr "No se ha podido borrar la regla de autoconfiguración" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61 +msgid "Agent Autoconfiguration Information" +msgstr "Información de la autoconfiguración de agente" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62 +msgid "" +"You must click the Create or Update buttom for a correct configuration!!!" +msgstr "" +"Pinche en el botón de crear o actualizar para una correcta configuración" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"No se ha podido crear la autoconfiguración desde la consola exclusiva de " +"lectura, créela desde la Metaconsola (gestión centralizada)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "No se ha podido crear la autoconfiguración en la metaconsola" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99 +msgid "Cannot create unnamed autoconfiguration" +msgstr "No se ha podido crear una autoconfiguración sin nombre" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"No se ha podido actualizar la autoconfiguración desde la consola exclusiva " +"de lectura, créela desde la Metaconsola (gestión centralizada)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126 +msgid "Cannot update autoconfiguration" +msgstr "No se ha podido actualizar la autoconfiguración" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"No se ha podido crear la autoconfiguración desde la consola exclusiva de " +"lectura, créela desde la Metaconsola (gestión centralizada)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:56 +msgid "Agent autoconfiguration list" +msgstr "Lista de autoconfiguración de agentes" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 +#: ../../operation/search_agents.php:115 +#: ../../operation/agentes/ver_agente.php:1149 +#: ../../operation/servers/recon_view.php:47 +msgid "Manage" +msgstr "Gestionar" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:313 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#: ../../enterprise/godmode/agentes/collections.php:57 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:18 +#: ../../enterprise/include/functions_enterprise_api.php:3044 +#: ../../enterprise/include/functions_enterprise_api.php:5643 +#: ../../include/functions_api.php:153 +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console (Metaconsole)." +msgstr "" +"La consola no administra este entorno, gestione esta funcionalidad desde el " +"administrador centralizado de la consola (Metaconsola)." + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:322 +msgid "Autoconfiguration" +msgstr "Autoconfiguración" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:364 +#: ../../include/class/CredentialStore.class.php:883 +msgid "Extra" +msgstr "Extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:392 +msgid "Add rule" +msgstr "Añadir regla" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +msgid "Rules" +msgstr "Reglas" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:419 +msgid "New group" +msgstr "Nuevo grupo" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:378 +msgid "Launch custom event" +msgstr "Lanzar evento personalizado" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:452 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +msgid "Launch alert action" +msgstr "Lanzar acción de alerta" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:453 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "Lanzar script" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:511 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:300 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:438 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:507 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:538 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:606 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:629 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:685 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:710 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:726 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:787 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:847 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:875 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +#: ../../godmode/massive/massive_edit_agents.php:543 +#: ../../godmode/massive/massive_edit_agents.php:551 +#: ../../godmode/massive/massive_edit_agents.php:555 +#: ../../godmode/massive/massive_edit_agents.php:563 +#: ../../godmode/massive/massive_edit_agents.php:587 +#: ../../godmode/massive/massive_edit_agents.php:634 +#: ../../godmode/massive/massive_edit_agents.php:641 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/massive/massive_edit_agents.php:686 +#: ../../godmode/massive/massive_edit_agents.php:695 +#: ../../godmode/massive/massive_edit_agents.php:723 +#: ../../godmode/massive/massive_edit_agents.php:790 +#: ../../godmode/massive/massive_edit_modules.php:587 +#: ../../godmode/massive/massive_edit_modules.php:656 +#: ../../godmode/massive/massive_edit_modules.php:687 +#: ../../godmode/massive/massive_edit_modules.php:696 +#: ../../godmode/massive/massive_edit_modules.php:755 +#: ../../godmode/massive/massive_edit_modules.php:773 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../godmode/massive/massive_edit_modules.php:807 +#: ../../godmode/massive/massive_edit_modules.php:827 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/massive/massive_edit_modules.php:925 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:989 +#: ../../godmode/massive/massive_edit_modules.php:995 +#: ../../godmode/massive/massive_edit_modules.php:1008 +#: ../../godmode/massive/massive_edit_modules.php:1036 +#: ../../include/functions_html.php:1168 ../../include/functions_html.php:1269 +#: ../../include/functions_html.php:1401 +msgid "No change" +msgstr "Sin cambios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:515 +#: ../../godmode/agentes/agent_manager.php:425 +#: ../../include/functions_events.php:4616 +#: ../../operation/agentes/estado_generalagente.php:344 +msgid "Secondary groups" +msgstr "Grupos secundarios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:561 +#: ../../godmode/agentes/agent_manager.php:475 +msgid "Add secondary groups" +msgstr "Añadir grupos secundarios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:565 +#: ../../godmode/agentes/agent_manager.php:486 +msgid "Remove secondary groups" +msgstr "Eliminar grupos secundarios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:600 +#: ../../enterprise/godmode/policies/configure_policy.php:47 +msgid "Add policy" +msgstr "Añadir política" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:615 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:350 +msgid "Op" +msgstr "Op" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:632 +msgid "Extra configuration block" +msgstr "Bloque de configuración extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:634 +msgid "" +"Put here any extra configuration you want to be applied to any new agent " +"matching previously defined rules" +msgstr "" +"Añada cualquier configuración extra que desee que se aplique a cualquier " +"agente nuevo que coincida con las reglas definidas" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:667 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:698 +msgid "Extra actions" +msgstr "Acciones extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:688 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:991 +msgid "Add extra action" +msgstr "Añadir acción extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:856 +msgid "Add new rule" +msgstr "Añadir regla nueva" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:858 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:168 +msgid "Update rule" +msgstr "Actualizar regla" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1078 +msgid "Update extra action" +msgstr "Actualizar acción extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:42 +msgid "Cannot delete autoconfiguration" +msgstr "No se ha podido borrar la autoconfiguración" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "There are no defined autoconfigurations" +msgstr "No hay autoconfiguraciones definidas" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124 +msgid "Add new configuration definition" +msgstr "Añadir definición de nueva configuración" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:37 +#: ../../enterprise/operation/agentes/tag_view.php:275 +#: ../../operation/agentes/status_monitor.php:529 +msgid "Web server module" +msgstr "Módulo del servidor web" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:150 +msgid "Requests" +msgstr "Peticiones" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:153 +msgid "Agent browser id" +msgstr "ID del navegador (Agent Browser)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:159 +msgid "HTTP auth (login)" +msgstr "Autentificación HTTP (inicio de sesión)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:162 +msgid "HTTP auth (password)" +msgstr "Autentificación HTTP (contraseña)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:176 +msgid "Proxy auth (login)" +msgstr "Autentificación Proxy (inicio de sesión)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:180 +msgid "Proxy auth (pass)" +msgstr "Autentificación proxy (contraseña)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:187 +msgid "Proxy auth (server)" +msgstr "Autentificación proxy (servidor)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:191 +msgid "Proxy auth (realm)" +msgstr "Autentificación proxy (área)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:203 +msgid "There isn't get or post" +msgstr "No se puede obtener o publicar." + +#: ../../enterprise/godmode/agentes/collections.agents.php:38 +msgid "Show Agent >" +msgstr "Mostrar agente" + +#: ../../enterprise/godmode/agentes/collections.agents.php:116 +msgid "This collection has not been added to any agents" +msgstr "Esta colección no ha sido añadida a ningún agente." + +#: ../../enterprise/godmode/agentes/configurar_agente.php:33 +#: ../../enterprise/godmode/policies/policies.php:561 +#: ../../enterprise/include/functions_reporting_csv.php:661 +#: ../../enterprise/operation/agentes/ver_agente.php:184 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 +#: ../../enterprise/operation/menu.php:19 +#: ../../enterprise/operation/inventory/inventory.php:126 +#: ../../godmode/agentes/configurar_agente.php:611 +#: ../../include/functions_reports.php:841 +#: ../../include/functions_reports.php:842 +#: ../../include/functions_reports.php:846 +#: ../../include/functions_reporting.php:2220 +msgid "Inventory" +msgstr "Inventario" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:50 +#: ../../enterprise/godmode/policies/policy.php:72 +#: ../../enterprise/include/functions_policies.php:3808 +#: ../../godmode/agentes/configurar_agente.php:617 +msgid "Agent plugins" +msgstr "Plugins del agente" + +#: ../../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úralo." + +#: ../../enterprise/godmode/agentes/collection_manager.php:83 +msgid "Succesful add the collection" +msgstr "Añadido a la colección correctamente" + +#: ../../enterprise/godmode/agentes/collection_manager.php:84 +msgid "Unsuccesful add the collection" +msgstr "No se ha podido añadir a la colección." + +#: ../../enterprise/godmode/agentes/collection_manager.php:131 +#: ../../enterprise/godmode/agentes/collection_manager.php:246 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:91 +msgid "Show files" +msgstr "Mostrar archivos" + +#: ../../enterprise/godmode/agentes/collection_manager.php:191 +#: ../../enterprise/operation/agentes/agent_inventory.php:254 +#: ../../enterprise/operation/log/log_viewer.php:865 +#: ../../enterprise/operation/log/log_viewer.php:873 +#: ../../enterprise/operation/inventory/inventory.php:282 +#: ../../godmode/reporting/reporting_builder.php:1120 +#: ../../include/functions_reporting.php:2272 +msgid "No data found." +msgstr "No se encontraron datos." + +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:197 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:839 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:547 +#: ../../operation/agentes/status_monitor.php:1134 +msgid "P." +msgstr "P." + +#: ../../enterprise/godmode/agentes/collection_manager.php:202 +#: ../../enterprise/operation/agentes/policy_view.php:140 +#: ../../enterprise/operation/agentes/collection_view.php:63 +msgid "Dir" +msgstr "Dir" + +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/policies/policy_collections.php:153 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:158 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:146 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../godmode/alerts/alert_special_days.php:507 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../godmode/events/event_edit_filter.php:556 +#: ../../operation/events/events_list.php:617 +#: ../../operation/events/events_list.php:689 +#: ../../operation/events/events.php:544 ../../operation/events/events.php:616 +msgid "Remove" +msgstr "Eliminar" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:164 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:846 +#: ../../enterprise/godmode/services/services.elements.php:620 +#: ../../enterprise/godmode/services/services.elements.php:649 +#: ../../enterprise/godmode/services/services.elements.php:657 +#: ../../enterprise/godmode/services/services.elements.php:726 +#: ../../enterprise/include/functions_visual_map_editor.php:20 +#: ../../enterprise/include/functions_visual_map_editor.php:32 +#: ../../enterprise/include/functions_visual_map_editor.php:45 +#: ../../enterprise/include/functions_visual_map_editor.php:76 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:286 +#: ../../enterprise/include/functions_reporting.php:5358 +#: ../../enterprise/include/functions_services.php:2531 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../include/lib/Dashboard/Widgets/service_map.php:240 +msgid "Service" +msgstr "Servicio" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic arithmetic" +msgstr "Aritmética sintética" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:30 +msgid "Synthetic average" +msgstr "Media sintética" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 +msgid "Fixed value" +msgstr "Valor fijo" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:117 +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:118 +msgid "Add module to operations as deduct" +msgstr "Añadir módulo a la operación como resta" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operations as multiplicate " +msgstr "Añadir módulo a la operación como multiplicador " + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Add module to operations as divide" +msgstr "Añadir módulo a la operación como divisor" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +msgid "Remove selected modules" +msgstr "Eliminar los módulos seleccionados" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:126 +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:127 +msgid "Remove selected modules from operations stack" +msgstr "Eliminar los módulos de las operaciones de apilado" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:134 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:395 +#: ../../enterprise/include/functions_tasklist.php:173 +#: ../../godmode/massive/massive_copy_modules.php:169 +#: ../../godmode/alerts/alert_list.list.php:460 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:447 +msgid "Operations" +msgstr "Operaciones" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +msgid "Move down selected modules" +msgstr "Mover hacia abajo los módulos seleccionados" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +msgid "Move up selected modules" +msgstr "Mover hacia arriba los módulos seleccionados" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:173 +msgid "Select Service" +msgstr "Seleccionar servicio" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 +msgid "Netflow filter" +msgstr "Filtro de Netflow" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:195 +msgid "Select filter" +msgstr "Seleccionar filtro" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:81 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:119 +msgid "Successfully added inventory module" +msgstr "Módulo añadido al inventario correctamente" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:83 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:122 +msgid "Error adding inventory module" +msgstr "Error al añadir el módulo al inventario" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:86 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:125 +msgid "The inventory of the module already exists" +msgstr "El inventario del módulo ya existe" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:107 +msgid "Successfully forced inventory module" +msgstr "Módulo del inventario forzado correctamente" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:109 +msgid "Error forcing inventory module" +msgstr "Error al forzar un módulo del inventario" + +#: ../../enterprise/godmode/agentes/collections.data.php:341 +msgid "Error: The collection directory does not exist." +msgstr "Error: el directorio donde se almacenan las colecciones no existe." + +#: ../../enterprise/godmode/agentes/collections.editor.php:84 +msgid "Files in " +msgstr "Archivos en " + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in updated succesfully" +msgstr "Plugin actualizado correctamente" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in cannot be updated" +msgstr "El plugin no se pudo actualizar." + +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 +msgid "Plug-in deleted succesfully" +msgstr "Plugin eliminado correctamente" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 +msgid "Plug-in cannot be deleted" +msgstr "El plugin no se pudo eliminar." + +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:67 +msgid "Plug-in added succesfully" +msgstr "Plugin añadido correctamente" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:68 +msgid "Plug-in cannot be added" +msgstr "El plugin no se puede añadir." + +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in " +msgstr "Plugin " + +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in cannot be " +msgstr "El plugin no puede ser " + +#: ../../enterprise/godmode/agentes/plugins_manager.php:101 +#: ../../enterprise/godmode/policies/policy_plugins.php:85 +msgid "New plug-in" +msgstr "Nuevo plugin" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:119 +#: ../../enterprise/godmode/policies/policies.php:557 +#: ../../godmode/menu.php:279 +msgid "Plugins" +msgstr "Plugins" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:123 +#: ../../enterprise/godmode/agentes/plugins_manager.php:155 +#: ../../enterprise/godmode/policies/policy_alerts.php:656 +#: ../../enterprise/godmode/alerts/alert_events_list.php:798 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../godmode/extensions.php:260 ../../godmode/users/user_list.php:537 +#: ../../godmode/alerts/alert_list.list.php:937 +#: ../../operation/users/user_edit_notifications.php:63 +msgid "Enable" +msgstr "Activar" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:123 +#: ../../enterprise/godmode/agentes/plugins_manager.php:161 +#: ../../enterprise/godmode/policies/policy_alerts.php:648 +#: ../../enterprise/godmode/alerts/alert_events_list.php:790 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../godmode/extensions.php:262 ../../godmode/users/user_list.php:535 +#: ../../godmode/alerts/alert_list.list.php:928 +#: ../../include/functions.php:3191 +msgid "Disable" +msgstr "Desactivar" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "" +"Los cambios en este campo están unidos con la configuración de datos." + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "Usando componente local" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:99 +#: ../../godmode/agentes/module_manager_editor_common.php:116 +msgid "Manual setup" +msgstr "Configuración manual" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:710 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:646 +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "No component was found" +msgstr "No se encontró ningún componente" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "Mostrar datos de configuración" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "Ocultar datos de configuración" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "Configuración de datos" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:114 +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:118 +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:171 +#: ../../enterprise/godmode/policies/policy_modules.php:383 +msgid "Add module" +msgstr "Añadir módulo" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 +msgid "No module was found" +msgstr "No se encontraron módulos." + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:241 +msgid "Delete remote conf agent files" +msgstr "Eliminar archivos de agente de configuración remota" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +#: ../../godmode/agentes/agent_manager.php:548 +msgid "Delete remote configuration file" +msgstr "Borrar el archivo de configuración remota" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +msgid "" +"Delete this conf file implies that for restore you must reactive remote " +"config in the local agent." +msgstr "" +"Borrar el archivo .conf implica que para restaurarlo, se debe reactivar la " +"configuración remota en el agente local." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:97 +#: ../../godmode/agentes/module_manager_editor_common.php:213 +msgid "Delete module" +msgstr "Eliminar módulo" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:124 +msgid "Run performance tests" +msgstr "Realizar pruebas de rendimiento" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:135 +msgid "Target web site" +msgstr "Sitio web de destino" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:137 +msgid "" +"The url specified in this field is mandatory to retrieve performance stats." +msgstr "" +"La URL especificada en este campo es obligatoria para recuperar las " +"estadísticas de rendimiento." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:151 +msgid "target web site (http://...)" +msgstr "sitio web objetivo (http://...)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:158 +msgid "Execute tests from" +msgstr "Ejecutar pruebas desde" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:174 +msgid "Browser" +msgstr "Explorador" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:176 +msgid "" +"Support for IE and Edge browsers is experimental. Tests might not work as " +"expected." +msgstr "" +"El soporte para IE y navegadores Edge es experimental. Las pruebas podrían " +"no funcionar según lo esperado." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:334 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "Pega el test de selenium, exportado como HTML, aquí" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:347 +msgid "Add file" +msgstr "Añadir archivo" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:354 +msgid "Upload your selenium test in html format" +msgstr "Sube el test de selenium en formato HTML" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:382 +#: ../../godmode/groups/configure_group.php:192 +#: ../../godmode/agentes/agent_manager.php:193 +#: ../../godmode/agentes/module_manager_editor_common.php:522 +#: ../../godmode/massive/massive_edit_agents.php:629 +msgid "Custom ID" +msgstr "ID personalizado" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:438 +#: ../../godmode/agentes/module_manager.php:834 +msgid "" +"The policy modules of data type will only update their intervals when policy " +"is applied." +msgstr "" +"Los módulos de política de tipo dato solo actualizarán sus intervalos cuando " +"la política sea aplicada." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:464 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../godmode/agentes/module_manager_editor_common.php:795 +#: ../../godmode/massive/massive_edit_modules.php:942 +msgid "FF interval" +msgstr "Intervalo FF" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:805 +#: ../../godmode/massive/massive_edit_modules.php:952 +msgid "Module execution flip flop time interval (in secs)." +msgstr "" +"Tiempo del intervalo de flip flop de ejecución del módulo (en segundos)." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:484 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 +#: ../../godmode/massive/massive_edit_modules.php:1063 +msgid "Retries" +msgstr "Reintentos" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:499 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:902 +#: ../../godmode/massive/massive_edit_modules.php:1065 +msgid "Number of retries that the module will attempt to run." +msgstr "Número de intentos que el módulo intentará activar" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:558 +#: ../../enterprise/godmode/policies/policy_modules.php:408 +#: ../../godmode/agentes/module_manager_editor.php:723 +#: ../../godmode/agentes/module_manager_editor_common.php:1142 +msgid "Custom macros" +msgstr "Macros personalizadas" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:77 +#: ../../operation/agentes/pandora_networkmap.editor.php:201 +#: ../../operation/agentes/pandora_networkmap.php:649 +#: ../../operation/agentes/pandora_networkmap.view.php:768 +msgid "Networkmap" +msgstr "Mapa de red" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:85 +#: ../../operation/agentes/pandora_networkmap.editor.php:241 +#: ../../operation/agentes/pandora_networkmap.view.php:774 +msgid "Not found networkmap." +msgstr "No se encontró ningún mapa de red." + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:145 +#: ../../operation/agentes/pandora_networkmap.editor.php:415 +msgid "Save networkmap" +msgstr "Guardar mapa de red" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:156 +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +msgid "Update networkmap" +msgstr "Actualizar mapa de red" + +#: ../../enterprise/godmode/agentes/collections.php:70 +msgid "Success: recreate file" +msgstr "Archivo creado de nuevo" + +#: ../../enterprise/godmode/agentes/collections.php:72 +msgid "Error: recreate file " +msgstr "El archivo no se pudo volver a crear " + +#: ../../enterprise/godmode/agentes/collections.php:87 +#: ../../enterprise/godmode/agentes/collections.php:117 +#: ../../enterprise/godmode/agentes/collections.php:226 +msgid "Collections Management" +msgstr "Gestión de colecciones" + +#: ../../enterprise/godmode/agentes/collections.php:169 +msgid "Manager collection" +msgstr "Gestor de colecciones" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 +msgid "Data Copy" +msgstr "Copia de datos" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 +msgid "No selected agents to copy" +msgstr "No se han seleccionado agentes de destino para la copia" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 +msgid "No source agent selected" +msgstr "No ha seleccionado ningún agente de origen" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +msgid "Making copy of configuration file for" +msgstr "Creando una copia del archivo de configuración de" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +msgid "Error copying md5 file " +msgstr "Error al copiar archivo MD5 " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +msgid " md5 file" +msgstr " archivo MD5" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid "Copied " +msgstr "Copiado " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +msgid "Error copying " +msgstr "Error al copiar " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid " config file" +msgstr " archivo de configuración" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:129 +msgid "Remote configuration management" +msgstr "Gestión de configuración remota" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:335 +msgid "Source group" +msgstr "Grupo de origen" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:145 +#: ../../operation/agentes/exportdata.php:247 +msgid "Source agent" +msgstr "Agente de origen" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:178 +msgid "To agent(s):" +msgstr "Agente(s) de destino:" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 +msgid "Replicate configuration" +msgstr "Replicar configuración" + +#: ../../enterprise/godmode/agentes/module_manager.php:21 +msgid "Create a new web Server module" +msgstr "Crear un nuevo módulo de servidor web" + +#: ../../enterprise/godmode/agentes/module_manager.php:31 +msgid "Create a new web analysis module" +msgstr "Crear un módulo de análisis web nuevo" + +#: ../../enterprise/godmode/policies/policy_plugins.php:37 +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:38 +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:51 +#: ../../enterprise/godmode/policies/policy_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_modules.php:1294 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:111 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:138 +#: ../../enterprise/godmode/policies/policy_collections.php:80 +#: ../../enterprise/godmode/policies/policy_agents.php:118 +#: ../../enterprise/godmode/policies/policy_agents.php:140 +msgid "Successfully reverted deletion" +msgstr "Eliminación revertida correctamente" + +#: ../../enterprise/godmode/policies/policy_plugins.php:52 +#: ../../enterprise/godmode/policies/policy_alerts.php:203 +#: ../../enterprise/godmode/policies/policy_modules.php:1295 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:112 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 +#: ../../enterprise/godmode/policies/policy_collections.php:81 +#: ../../enterprise/godmode/policies/policy_agents.php:119 +#: ../../enterprise/godmode/policies/policy_agents.php:141 +msgid "Could not be reverted" +msgstr "No pudo ser revertido" + +#: ../../enterprise/godmode/policies/policy_plugins.php:154 +msgid "There are no defined plugins" +msgstr "No hay plugins definidos" + +#: ../../enterprise/godmode/policies/policy_alerts.php:67 +#: ../../enterprise/godmode/policies/policy_modules.php:572 +#: ../../enterprise/godmode/policies/policies.php:287 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:61 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:79 +#: ../../enterprise/godmode/policies/policy_collections.php:46 +#: ../../enterprise/godmode/policies/policy_agents.php:105 +#: ../../godmode/agentes/module_manager_editor.php:534 +msgid "This policy is applying and cannot be modified" +msgstr "Esta política se está aplicando y no puede ser modificada" + +#: ../../enterprise/godmode/policies/policy_alerts.php:136 +#: ../../enterprise/godmode/alerts/alert_events_list.php:292 +#: ../../godmode/massive/massive_standby_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:379 +msgid "Successfully set standby" +msgstr "Modo standby activado" + +#: ../../enterprise/godmode/policies/policy_alerts.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:293 +#: ../../godmode/massive/massive_standby_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:380 +msgid "Could not be set standby" +msgstr "No se pudo establecer el modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:157 +#: ../../enterprise/godmode/alerts/alert_events_list.php:312 +#: ../../godmode/massive/massive_standby_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:400 +msgid "Successfully set off standby" +msgstr "Se ha desactivado el modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:158 +#: ../../enterprise/godmode/alerts/alert_events_list.php:313 +#: ../../godmode/massive/massive_standby_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:401 +msgid "Could not be set off standby" +msgstr "No se pudo desactivar el modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " created successfuly" +msgstr " creado correctamente" + +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " could not be created" +msgstr " no se ha podido crear" + +#: ../../enterprise/godmode/policies/policy_alerts.php:198 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:107 +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:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:155 +msgid "Added action successfuly" +msgstr "Acción añadida correctamente" + +#: ../../enterprise/godmode/policies/policy_alerts.php:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:156 +#: ../../enterprise/godmode/policies/policy_agents.php:227 +#: ../../enterprise/godmode/alerts/alert_events_list.php:212 +#: ../../godmode/massive/massive_delete_action_alerts.php:129 +#: ../../godmode/massive/massive_add_alerts.php:141 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../godmode/massive/massive_add_action_alerts.php:99 +#: ../../godmode/massive/massive_add_action_alerts.php:119 +#: ../../godmode/massive/massive_add_action_alerts.php:122 +#: ../../godmode/massive/massive_add_action_alerts.php:125 +#: ../../godmode/alerts/alert_list.php:262 +#: ../../operation/incidents/incident_detail.php:76 +msgid "Could not be added" +msgstr "No se pudo añadir" + +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:134 +msgid "Deleted action successfuly" +msgstr "Acción eliminada correctamente" + +#: ../../enterprise/godmode/policies/policy_alerts.php:285 +#: ../../enterprise/godmode/policies/policy_alerts.php:492 +#: ../../enterprise/godmode/reporting/visual_console_template.php:89 +#: ../../enterprise/include/functions_tasklist.php:275 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../extensions/agents_alerts.php:266 +#: ../../extensions/agents_alerts.php:586 +#: ../../godmode/alerts/alert_list.list.php:458 +#: ../../godmode/alerts/alert_view.php:72 +#: ../../godmode/alerts/alert_list.builder.php:132 +#: ../../mobile/operation/alerts.php:323 +#: ../../include/functions_reporting_html.php:2401 +#: ../../include/functions_reporting_html.php:2404 +#: ../../include/functions_cron.php:554 +#: ../../include/ajax/alert_list.ajax.php:279 +#: ../../include/ajax/alert_list.ajax.php:304 +#: ../../include/functions_treeview.php:416 +#: ../../include/functions_treeview.php:457 +#: ../../operation/agentes/alerts_status.php:523 +#: ../../operation/agentes/alerts_status.php:558 +#: ../../operation/agentes/alerts_status.php:593 +#: ../../operation/agentes/alerts_status.php:625 +#: ../../operation/search_alerts.php:35 +#: ../../operation/servers/recon_view.php:106 +msgid "Template" +msgstr "Plantilla" + +#: ../../enterprise/godmode/policies/policy_alerts.php:362 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:242 +#: ../../enterprise/godmode/alerts/alert_events_list.php:637 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2299 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3252 +#: ../../godmode/alerts/alert_list.list.php:604 +#: ../../godmode/alerts/alert_view.php:198 +#: ../../include/functions_alerts.php:666 +msgid "Always" +msgstr "Siempre" + +#: ../../enterprise/godmode/policies/policy_alerts.php:364 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:244 +#: ../../enterprise/godmode/alerts/alert_events_list.php:639 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3254 +#: ../../godmode/alerts/alert_list.list.php:606 +#: ../../include/class/Diagnostics.class.php:1172 +#: ../../include/class/Diagnostics.class.php:1176 +msgid "On" +msgstr "Activado" + +#: ../../enterprise/godmode/policies/policy_alerts.php:368 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:248 +#: ../../enterprise/godmode/alerts/alert_events_list.php:643 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3258 +#: ../../godmode/alerts/alert_list.list.php:610 +msgid "Until" +msgstr "Hasta" + +#: ../../enterprise/godmode/policies/policy_alerts.php:464 +#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:280 +#: ../../enterprise/godmode/policies/policy_agents.php:871 +#: ../../enterprise/godmode/policies/policy_agents.php:1222 +msgid "Undo deletion" +msgstr "Deshacer eliminación" + +#: ../../enterprise/godmode/policies/policy_alerts.php:531 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:322 +#: ../../enterprise/godmode/alerts/alert_events_list.php:690 +#: ../../extensions/agents_alerts.php:249 +#: ../../godmode/massive/massive_add_action_alerts.php:214 +#: ../../godmode/alerts/alert_list.list.php:722 +#: ../../godmode/alerts/alert_list.builder.php:119 +#: ../../include/ajax/alert_list.ajax.php:493 +msgid "Number of alerts match from" +msgstr "Número de alertas coincidentes con" + +#: ../../enterprise/godmode/policies/policy_alerts.php:548 +msgid "There is not alerts configured in this policy." +msgstr "No hay alertas configuradas en esta política." + +#: ../../enterprise/godmode/policies/policy_alerts.php:576 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:97 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:109 +#: ../../godmode/massive/massive_standby_alerts.php:178 +#: ../../godmode/massive/massive_add_alerts.php:249 +#: ../../godmode/massive/massive_enable_disable_alerts.php:166 +#: ../../godmode/massive/massive_delete_alerts.php:241 +msgid "Alert template" +msgstr "Plantilla de alerta" + +#: ../../enterprise/godmode/policies/policy_alerts.php:587 +msgid "Policy module" +msgstr "Módulo de la política" + +#: ../../enterprise/godmode/policies/policy_alerts.php:665 +#: ../../enterprise/godmode/alerts/alert_events_list.php:807 +#: ../../godmode/alerts/alert_list.list.php:946 +msgid "Set off standby" +msgstr "Desactivar modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:674 +#: ../../enterprise/godmode/alerts/alert_events_list.php:816 +#: ../../godmode/alerts/alert_list.list.php:955 +msgid "Set standby" +msgstr "Activar modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:688 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:272 +#: ../../enterprise/godmode/alerts/alert_events_list.php:671 +#: ../../enterprise/godmode/alerts/alert_events_list.php:673 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:460 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/alerts/alert_list.list.php:828 +#: ../../godmode/alerts/alert_list.list.php:832 +#: ../../godmode/alerts/alert_list.list.php:985 +msgid "Add action" +msgstr "Añadir acción" + +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/servers/HA_cluster.php:52 +#: ../../enterprise/include/functions_policies.php:3711 +#: ../../godmode/agentes/configurar_agente.php:380 +#: ../../godmode/agentes/configurar_agente.php:600 ../../godmode/menu.php:292 +#: ../../godmode/menu.php:299 +#: ../../godmode/module_library/module_library_view.php:45 +#: ../../operation/agentes/estado_agente.php:179 +#: ../../operation/gis_maps/render_view.php:160 +msgid "Setup" +msgstr "Configuración" + +#: ../../enterprise/godmode/policies/configure_policy.php:98 +msgid "Force Apply" +msgstr "Forzar aplicación" + +#: ../../enterprise/godmode/policies/configure_policy.php:98 +msgid "" +"Force the creation of modules even if the software agent does not have " +"remote configuration" +msgstr "" +"Forzar la creación de módulos incluso si el agente software no tiene " +"configuración remota" + +#: ../../enterprise/godmode/policies/policy_modules.php:295 +msgid "" +"If you change this description, you must change into the text of Data " +"configuration." +msgstr "" +"Si cambias esta descripción, tienes que cambiarla en el texto de la " +"configuración de datos." + +#: ../../enterprise/godmode/policies/policy_modules.php:368 +msgid "Invalid module type." +msgstr "Tipo de módulo inválido" + +#: ../../enterprise/godmode/policies/policy_modules.php:521 +msgid "Could not be added module(s). You must select a policy" +msgstr "El módulo no se pudo añadir. Tienes que seleccionar una política." + +#: ../../enterprise/godmode/policies/policy_modules.php:554 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "Módulo(s) (%s/%s) añadido(s) correctamente a la política %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:560 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "El módulo (%s/%s) no se pudo añadir a la política %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:864 +msgid "Could not be added module." +msgstr "El módulo no se pudo añadir." + +#: ../../enterprise/godmode/policies/policy_modules.php:1243 +msgid "" +"The module type in Data configuration is empty, take from combo box of form." +msgstr "" +"El tipo de datos en la configuración está vacío, elige uno del combo del " +"formulario." + +#: ../../enterprise/godmode/policies/policy_modules.php:1247 +msgid "" +"The module name in Data configuration is empty, take from text field of form." +msgstr "" +"El nombre del módulo en la configuración está vacío, elige uno del combo del " +"formulario." + +#: ../../enterprise/godmode/policies/policy_modules.php:1277 +#: ../../enterprise/godmode/policies/policy_modules.php:1290 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:132 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next " +"policy application." +msgstr "" +"Añadido correctamente a la cola de módulos pendientes de eliminación. Será " +"eliminado en la próxima aplicación de políticas." + +#: ../../enterprise/godmode/policies/policy_modules.php:1281 +msgid "Could not be added to deleted all modules." +msgstr "No se pudo añadir a la lista para eliminar todos los módulos." + +#: ../../enterprise/godmode/policies/policy_modules.php:1344 +#: ../../godmode/agentes/configurar_agente.php:2122 +#, php-format +msgid "copy of %s" +msgstr "copia de %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:1362 +#: ../../godmode/agentes/configurar_agente.php:2136 +#, php-format +msgid "copy of %s (%d)" +msgstr "copia de %s (%d)" + +#: ../../enterprise/godmode/policies/policy_modules.php:1386 +msgid "Successfully duplicate the module." +msgstr "Módulo duplicado correctamente" + +#: ../../enterprise/godmode/policies/policy_modules.php:1387 +#: ../../operation/agentes/pandora_networkmap.php:525 +msgid "Could not be duplicated" +msgstr "No se puede duplicar" + +#: ../../enterprise/godmode/policies/policy_modules.php:1474 +msgid "Local component" +msgstr "Componente local" + +#: ../../enterprise/godmode/policies/policy_modules.php:1489 +#: ../../enterprise/godmode/policies/policy_modules.php:1490 +msgid "Disabled module" +msgstr "Módulo deshabilitado" + +#: ../../enterprise/godmode/policies/policy_modules.php:1496 +#: ../../enterprise/godmode/policies/policy_modules.php:1497 +msgid "Enabled module" +msgstr "Módulo habilitado" + +#: ../../enterprise/godmode/policies/policy_modules.php:1506 +#: ../../enterprise/godmode/policies/policy_modules.php:1507 +#: ../../godmode/agentes/module_manager.php:862 +#: ../../godmode/agentes/module_manager.php:863 +msgid "Enable module" +msgstr "Habilitar el módulo" + +#: ../../enterprise/godmode/policies/policy_modules.php:1515 +#: ../../enterprise/godmode/policies/policy_modules.php:1516 +#: ../../godmode/agentes/module_manager.php:871 +#: ../../godmode/agentes/module_manager.php:872 +msgid "Disable module" +msgstr "Deshabilitar el módulo" + +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +msgid "There are no defined modules" +msgstr "No hay módulos definidos" + +#: ../../enterprise/godmode/policies/policy_modules.php:1610 +#: ../../godmode/massive/massive_copy_modules.php:172 +msgid "Copy modules" +msgstr "Copiar módulos" + +#: ../../enterprise/godmode/policies/policy_modules.php:1611 +msgid "Copy selected modules to policy: " +msgstr "Copiar módulos seleccionados a la política: " + +#: ../../enterprise/godmode/policies/policy_modules.php:1673 +#: ../../godmode/agentes/module_manager_editor.php:795 +msgid "No module name provided" +msgstr "No se proporcionó ningún nombre de módulo." + +#: ../../enterprise/godmode/policies/policy_modules.php:1674 +#: ../../godmode/agentes/module_manager_editor.php:805 +msgid "No target IP provided" +msgstr "No se proporcionó ninguna IP de destino." + +#: ../../enterprise/godmode/policies/policy_modules.php:1675 +#: ../../godmode/agentes/module_manager_editor.php:815 +msgid "No SNMP OID provided" +msgstr "No se proporcionó ningún OID de SMTP." + +#: ../../enterprise/godmode/policies/policy_modules.php:1814 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "¿Estás seguro de que quieres copiar los módulos en la política?\\n" + +#: ../../enterprise/godmode/policies/policy_modules.php:1834 +msgid "Please select any module to copy" +msgstr "Por favor, selecciona algún módulo para copiar." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:876 +#: ../../enterprise/include/functions_massive.php:15 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:224 +#: ../../godmode/massive/massive_delete_action_alerts.php:129 +#: ../../godmode/massive/massive_add_action_alerts.php:122 +#: ../../godmode/massive/massive_edit_modules.php:1865 +#: ../../godmode/reporting/visual_console_builder.php:579 +#: ../../include/functions_visual_map.php:2674 +msgid "No modules selected" +msgstr "No se han seleccionado módulos." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:416 +msgid "Successfully modules created" +msgstr "Módulos creados correctamente" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:431 +msgid "Some required fields are missed" +msgstr "Faltan campos necesarios por rellenar." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:431 +msgid "name" +msgstr "nombre" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:401 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 +msgid "Processing error" +msgstr "Error de procesamiento" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:433 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:475 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:722 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:600 +#: ../../extensions/realtime_graphs.php:158 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:439 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:469 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:727 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:749 +#: ../../include/class/AgentWizard.class.php:218 +#: ../../include/functions_snmp_browser.php:651 +msgid "Target IP" +msgstr "IP objetivo" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:436 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:725 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:906 +#: ../../enterprise/godmode/setup/setup_history.php:51 +#: ../../enterprise/godmode/servers/manage_export_form.php:121 +#: ../../extensions/quick_shell.php:145 +#: ../../godmode/modules/manage_network_components_form_network.php:53 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:472 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:730 +#: ../../godmode/agentes/module_manager_editor_network.php:126 +#: ../../godmode/massive/massive_edit_modules.php:1073 +#: ../../godmode/servers/modificar_server.php:82 +#: ../../include/functions_config.php:1422 +#: ../../include/class/AgentWizard.class.php:230 +msgid "Port" +msgstr "Puerto" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:454 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:526 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:743 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:484 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:479 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../include/class/AgentWizard.class.php:155 +#: ../../include/functions_snmp_browser.php:699 +msgid "Local console" +msgstr "Consola local" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:470 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:542 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:759 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:500 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:500 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:758 +#: ../../godmode/events/event_responses.editor.php:174 +#: ../../include/class/AgentWizard.class.php:295 +msgid "Server to execute command" +msgstr "Servidor para ejecutar el comando" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:519 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:808 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:572 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:830 +#: ../../include/class/AgentWizard.class.php:152 +msgid "SNMP Walk" +msgstr "Exploración SNMP" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:523 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:576 +msgid "Unable to do SNMP walk" +msgstr "No se pudo realizar el SNMP walk" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:569 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:796 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:992 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:737 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:640 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1015 +msgid "Create modules" +msgstr "Crear módulos" + +#: ../../enterprise/godmode/policies/policy_queue.php:108 +msgid "Operations successfully deleted from the queue" +msgstr "Operaciones eliminadas correctamente de la cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:109 +msgid "Operations cannot be deleted from the queue" +msgstr "Las operaciones no pueden ser eliminadas de la cola." + +#: ../../enterprise/godmode/policies/policy_queue.php:185 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "Algunos nódulos (%s) están inaccesible. Podría faltar información." + +#: ../../enterprise/godmode/policies/policy_queue.php:220 +msgid "Update pending" +msgstr "Actualización pendiente" + +#: ../../enterprise/godmode/policies/policy_queue.php:222 +msgid "Update pending agents" +msgstr "Actualizar agentes pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:235 +#: ../../enterprise/godmode/policies/policy_agents.php:838 +#: ../../enterprise/godmode/policies/policy_agents.php:1180 +msgid "Add to apply queue" +msgstr "Añadir a la cola para aplicarlo" + +#: ../../enterprise/godmode/policies/policy_queue.php:238 +msgid "Add to apply queue only for database" +msgstr "Añadir a la cola de aplicación solo de cambios de base de datos" + +#: ../../enterprise/godmode/policies/policy_queue.php:245 +msgid "Update pending groups" +msgstr "Actualizar grupos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:252 +msgid "Link pending modules" +msgstr "Enlazar módulos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:257 +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:260 +msgid "Unlink pending modules" +msgstr "Desenlazar módulos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:265 +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:270 +msgid "Delete pending" +msgstr "Eliminación pendiente" + +#: ../../enterprise/godmode/policies/policy_queue.php:272 +msgid "Delete pending agents" +msgstr "Eliminar agentes pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:277 +#: ../../enterprise/godmode/policies/policy_queue.php:285 +#: ../../enterprise/godmode/policies/policy_queue.php:293 +#: ../../enterprise/godmode/policies/policy_queue.php:301 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:317 +#: ../../enterprise/godmode/policies/policy_queue.php:325 +#: ../../enterprise/godmode/policies/policy_queue.php:333 +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:280 +msgid "Delete pending groups" +msgstr "Eliminar grupos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:288 +msgid "Delete pending modules" +msgstr "Eliminar módulos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:296 +msgid "Delete pending inventory modules" +msgstr "Eliminar módulos de inventario pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:304 +msgid "Delete pending alerts" +msgstr "Eliminar alertas pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:312 +msgid "Delete pending external alerts" +msgstr "Eliminar alertas externas pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:320 +msgid "Delete pending file collections" +msgstr "Eliminar colecciones de archivos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:328 +msgid "Delete pending plugins" +msgstr "Eliminar plugins pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:339 +msgid "Advices" +msgstr "Consejos" + +#: ../../enterprise/godmode/policies/policy_queue.php:342 +msgid "Queue summary" +msgstr "Resumen de cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:342 +#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../godmode/users/user_list.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:1139 +#: ../../godmode/alerts/alert_list.list.php:167 +#: ../../operation/agentes/alerts_status.php:475 +#: ../../operation/agentes/graphs.php:262 +#: ../../operation/snmpconsole/snmp_view.php:682 +#: ../../operation/snmpconsole/snmp_view.php:764 +msgid "Toggle filter(s)" +msgstr "Conmutar filtro(s)" + +#: ../../enterprise/godmode/policies/policy_queue.php:447 +msgid "Queue filter" +msgstr "Filtros de cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:555 +msgid "Empty queue" +msgstr "Vaciar cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:572 +msgid "This operation could take a long time" +msgstr "Esta operación podría tardar bastante tiempo." + +#: ../../enterprise/godmode/policies/policy_queue.php:583 +msgid "Apply all queues" +msgstr "Aplicar todas las colas" + +#: ../../enterprise/godmode/policies/policy_queue.php:591 +msgid "Clear all items" +msgstr "Borrar todos los elementos" + +#: ../../enterprise/godmode/policies/policies.php:194 +msgid "Policy name already exists" +msgstr "El nombre de la política ya existe." + +#: ../../enterprise/godmode/policies/policies.php:262 +msgid "Policies Management" +msgstr "Gestión de políticas" + +#: ../../enterprise/godmode/policies/policies.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 +#: ../../godmode/alerts/alert_actions.php:109 +#: ../../godmode/alerts/alert_commands.php:401 +#: ../../godmode/reporting/map_builder.php:267 +#: ../../godmode/reporting/map_builder.php:274 +#: ../../include/functions_agents.php:941 +msgid "Successfully copied" +msgstr "Copia realizada correctamente" + +#: ../../enterprise/godmode/policies/policies.php:274 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:333 +#: ../../godmode/alerts/alert_actions.php:110 +#: ../../godmode/alerts/alert_commands.php:402 +msgid "Could not be copied" +msgstr "No se ha podido copiar" + +#: ../../enterprise/godmode/policies/policies.php:281 +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:282 +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:296 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:27 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:25 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:27 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:27 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:28 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:25 +#: ../../godmode/massive/massive_operations.php:288 +msgid "" +"This node is configured with centralized mode. All policies information is " +"read only. Go to metaconsole to manage it." +msgstr "" +"Este nodo esta configurado con el modo centralizado. Toda la información de " +"las políticas está en modo lectura. Vaya a la metaconsola para administrarlo." + +#: ../../enterprise/godmode/policies/policies.php:356 +msgid "a" +msgstr "a" + +#: ../../enterprise/godmode/policies/policies.php:523 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/include/functions_policies.php:3776 +msgid "Linking" +msgstr "Enlazando" + +#: ../../enterprise/godmode/policies/policies.php:536 +msgid "Agent Wizard" +msgstr "Asistente de agente" + +#: ../../enterprise/godmode/policies/policies.php:545 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:41 +#: ../../enterprise/include/functions_policies.php:3768 +msgid "External alerts" +msgstr "Alertas externas" + +#: ../../enterprise/godmode/policies/policies.php:549 +#: ../../enterprise/godmode/policies/policy.php:50 +#: ../../enterprise/include/functions_policies.php:3792 +msgid "Queue" +msgstr "Cola" + +#: ../../enterprise/godmode/policies/policies.php:611 +msgid "There must be no agents to delete the policy." +msgstr "No debe haber agentes para borrar la política." + +#: ../../enterprise/godmode/policies/policies.php:614 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "Una política con agentes no se puede eliminar. Púrgala primero." + +#: ../../enterprise/godmode/policies/policies.php:622 +msgid "Deleting all policy agents" +msgstr "Eliminando todos los agentes de las políticas" + +#: ../../enterprise/godmode/policies/policies.php:625 +msgid "All the policy agents will be deleted" +msgstr "Todos los agentes de las políticas serán eliminados." + +#: ../../enterprise/godmode/policies/policies.php:634 +msgid "Delete all agents" +msgstr "Eliminar todos los agentes" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:234 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:200 +#, php-format +msgid "Free space on %s" +msgstr "Espacio libre en %s" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:383 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:353 +#, php-format +msgid "%s service modules created succesfully" +msgstr "%s módulos de servicio creados correctamente" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:390 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:360 +#, php-format +msgid "Error creating %s service modules" +msgstr "Error al crear %s módulos de servicio" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:399 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 +#, php-format +msgid "%s process modules created succesfully" +msgstr "%s módulos de proceso creados correctamente" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:406 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:376 +#, php-format +msgid "Error creating %s process modules" +msgstr "Error al crear %s módulos de proceso" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:415 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:385 +#, php-format +msgid "%s disk space modules created succesfully" +msgstr "%s módulos de espacio en disco creados correctamente" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:422 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:392 +#, php-format +msgid "Error creating %s disk space modules" +msgstr "Error al crear %s módulos de espacio en disco" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:431 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:401 +#, php-format +msgid "%s modules created from components succesfully" +msgstr "%s módulos creados correctamente desde los componentes" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:438 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:408 +#, php-format +msgid "Error creating %s modules from components" +msgstr "Error al crear %s módulos desde los componentes" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:445 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:694 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 +#, php-format +msgid "%s modules already exist" +msgstr "%s módulos ya existen" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:485 +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:449 +#: ../../include/class/AgentWizard.class.php:258 +msgid "Namespace" +msgstr "Espacio de nombres" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:692 +#: ../../enterprise/godmode/setup/setup_module_library.php:46 +#: ../../enterprise/include/functions_ui.php:102 +#: ../../extensions/quick_shell.php:138 +#: ../../godmode/modules/manage_network_components_form_wmi.php:47 +#: ../../godmode/agentes/module_manager_editor_wmi.php:63 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:459 +#: ../../godmode/massive/massive_edit_modules.php:834 +#: ../../include/class/CredentialStore.class.php:881 +#: ../../include/class/AgentWizard.class.php:270 +msgid "Username" +msgstr "Usuario" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:562 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:517 +msgid "WMI Explore" +msgstr "Explorador WMI" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:571 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:525 +msgid "Unable to do WMI explorer" +msgstr "Imposible lanzar el Explorador WMI" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:619 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:841 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:554 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:864 +#: ../../operation/agentes/ver_agente.php:1314 +msgid "Processes" +msgstr "Procesos" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:620 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:842 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:555 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 +msgid "Free space on disk" +msgstr "Espacio libre en disco" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:621 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:556 +msgid "WMI components" +msgstr "Componentes WMI" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:623 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:846 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:558 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:869 +msgid "Wizard mode" +msgstr "Modo asistente" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:643 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:578 +#: ../../godmode/agentes/planned_downtime.editor.php:938 +msgid "Filter by group" +msgstr "Filtrar por grupo" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:738 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:745 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:752 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:759 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:970 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:972 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:974 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:976 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:979 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:675 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:683 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:691 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:699 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:993 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:995 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:999 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 +msgid "Add to modules list" +msgstr "Añadir a la lista de módulos" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:767 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:982 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:708 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1005 +msgid "Remove from modules list" +msgstr "Eliminar de la lista de módulos" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:852 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:868 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:884 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:900 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1055 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1071 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1087 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1103 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1119 +#: ../../enterprise/include/functions_events.php:198 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:793 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:809 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:825 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:841 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1080 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1096 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1112 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1128 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1144 +#: ../../godmode/events/event_edit_filter.php:404 +#: ../../mobile/operation/events.php:528 +#: ../../include/functions_events.php:4547 +#: ../../operation/events/events_list.php:968 +#: ../../operation/events/events.php:946 +msgid "Repeated" +msgstr "Repetido" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:862 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1065 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:803 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1090 +#: ../../godmode/reporting/visual_console_builder.wizard.php:276 +#: ../../include/functions_visual_map_editor.php:544 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:370 +msgid "Process" +msgstr "Procesar" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:922 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1144 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:863 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1169 +msgid "Modules list is empty" +msgstr "La lista de módulos está vacía." + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "Módulos enlazados" + +#: ../../enterprise/godmode/policies/policy_linking.php:87 +msgid "Error: Update linking modules to policy" +msgstr "Error al actualizar los módulos enlazados a la política" + +#: ../../enterprise/godmode/policies/policy_linking.php:89 +msgid "Success: Update linking modules to policy" +msgstr "Módulos enlazados a la política correctamente" + +#: ../../enterprise/godmode/policies/policy_linking.php:99 +msgid "Free text for filter (*)" +msgstr "Texto libre para filtro (*)" + +#: ../../enterprise/godmode/policies/policy_linking.php:100 +msgid "Free text for filter" +msgstr "Texto libre para filtro" + +#: ../../enterprise/godmode/policies/policy_linking.php:110 +msgid "Cannot retrieve unlinked modules" +msgstr "No se han podido obtener módulos no enlazados" + +#: ../../enterprise/godmode/policies/policy_linking.php:112 +msgid "There are no defined modules unlinked" +msgstr "No hay módulos definidos desvinculados" + +#: ../../enterprise/godmode/policies/policy_linking.php:114 +msgid "List of modules unlinked" +msgstr "Lista de módulos sin enlazar" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "The SNMP remote plugin doesnt seem to be installed" +msgstr "El plugin remoto SNMP no parece estar instalado" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "It is necessary to use some features" +msgstr "Se necesita usar algunas características" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "" +"Please, install the SNMP remote plugin (The name of the plugin must be " +"snmp_remote.pl)" +msgstr "" +"Por favor, instala el plugin remoto de SNMP (el nombre del plugin debe ser " +"snmp_remote.pl)" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:283 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:286 +msgid "Remote system doesnt support host SNMP information" +msgstr "El sistema remoto no es compatible la información del host SNMP" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:369 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:371 +msgid "The number of bytes read from this device since boot" +msgstr "Número de bytes leídos desde este dispositivo desde el arranque" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:370 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:372 +msgid "The number of bytes written to this device since boot" +msgstr "Número de bytes escritos en este dispositivo desde el arranque" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:371 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:373 +msgid "The number of read accesses from this device since boot" +msgstr "Número de lectura accesible desde este dispositivo desde el arranque" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:372 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:374 +msgid "The number of write accesses from this device since boot" +msgstr "" +"Número de accesos en escritura desde este dispositivo desde el arranque" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:544 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:548 +#, php-format +msgid "Check if the process %s is running or not" +msgstr "Comprueba que el proceso %s se está ejecutando correctamente." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:611 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:615 +msgid "Disk use information" +msgstr "Información de uso del disco" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:676 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 +#, php-format +msgid "%s modules created succesfully" +msgstr "%s módulos creados correctamente" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:682 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:688 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:691 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:697 +#, php-format +msgid "Error creating %s modules" +msgstr "Error al crear %s módulos" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:702 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:711 +msgid "Modules created succesfully" +msgstr "Módulos creados correctamente" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 +#: ../../enterprise/include/functions_inventory.php:179 +#: ../../enterprise/operation/services/services.treeview_services.php:223 +#: ../../godmode/groups/group_list.php:845 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:604 +#: ../../operation/tree.php:347 ../../operation/network/network_report.php:333 +msgid "No data found" +msgstr "No se encontraron datos" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +msgid "" +"If the device is a network device, try with the SNMP Interfaces wizard" +msgstr "" +"Si el dispositivo es un dispositivo de red, prueba con el asistente de " +"interfaz SNMP." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:840 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 +msgid "Devices" +msgstr "Dispositivos" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:843 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:866 +msgid "Temperature sensors" +msgstr "Sensores de temperatura" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:844 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:867 +msgid "Other SNMP data" +msgstr "Otros datos SNMP" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:886 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:891 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:909 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:914 +msgid "SNMP remote plugin is necessary for this feature" +msgstr "Se necesita el plugin remoto SNMP para esta funcionalidad." + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1049 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1074 +msgid "Device" +msgstr "Dispositivo" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1097 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1122 +msgid "Temperature" +msgstr "Temperatura" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:71 +#: ../../godmode/alerts/alert_list.php:172 +msgid "No module specified" +msgstr "Ningún módulo especificado" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:94 +msgid "Created successfuly" +msgstr "Creado correctamente" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +msgid "Duplicated alert" +msgstr "Alerta duplicada" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +msgid "Modules in policy per agents" +msgstr "Módulos en política por agentes" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +msgid "There is not external alerts configured in this policy" +msgstr "No hay alertas externas configuradas en esta política" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:342 +msgid "Modules in policy agents" +msgstr "Módulos en agentes de política" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 +msgid "The complete and exact name of the module must be specified" +msgstr "Especifique el nombre completo y exacto del módulo." + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:370 +msgid "Alert Template" +msgstr "Plantilla de alerta" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 +msgid "Module is not selected" +msgstr "No se ha seleccionado ningún módulo" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:247 +msgid "There are no defined inventory modules" +msgstr "No hay módulos de inventario definidos" + +#: ../../enterprise/godmode/policies/policy_collections.php:76 +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:204 +#: ../../enterprise/godmode/policies/policy_collections.php:277 +#: ../../enterprise/operation/agentes/policy_view.php:172 +#: ../../enterprise/operation/agentes/collection_view.php:111 +#: ../../enterprise/operation/agentes/collection_view.php:112 +msgid "Outdate" +msgstr "Obsoleto" + +#: ../../enterprise/godmode/policies/policy_collections.php:221 +msgid "Collections in policy" +msgstr "Colecciones en la política" + +#: ../../enterprise/godmode/policies/policy_collections.php:225 +msgid "Collections to add" +msgstr "Colecciones a añadir" + +#: ../../enterprise/godmode/policies/policy_collections.php:296 +msgid "No available collection to add" +msgstr "No hay colecciones a añadir disponibles" + +#: ../../enterprise/godmode/policies/policy_agents.php:114 +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:136 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next " +"policy application." +msgstr "" +"Añadido correctamente para eliminar grupos pendientes. Se eliminará en la " +"siguiente aplicación de política." + +#: ../../enterprise/godmode/policies/policy_agents.php:189 +#: ../../enterprise/godmode/policies/policy_agents.php:332 +msgid "Successfully added to delete queue" +msgstr "Correctamente añadido a la lista de eliminación" + +#: ../../enterprise/godmode/policies/policy_agents.php:190 +#: ../../enterprise/godmode/policies/policy_agents.php:333 +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:226 +#: ../../enterprise/godmode/alerts/alert_events_list.php:211 +#: ../../godmode/massive/massive_add_alerts.php:140 +#: ../../godmode/massive/massive_add_action_alerts.php:119 +#: ../../godmode/alerts/alert_list.php:261 +#: ../../operation/incidents/incident_detail.php:75 +msgid "Successfully added" +msgstr "Añadido correctamente" + +#: ../../enterprise/godmode/policies/policy_agents.php:239 +msgid "Successfully deleted from delete pending agents" +msgstr "Eliminado correctamente de los agentes pendientes de eliminación" + +#: ../../enterprise/godmode/policies/policy_agents.php:240 +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:419 +msgid "Apply to" +msgstr "Aplicar a" + +#: ../../enterprise/godmode/policies/policy_agents.php:470 +#: ../../enterprise/godmode/policies/policy_agents.php:503 +#: ../../enterprise/godmode/policies/policy_agents.php:542 +#: ../../enterprise/godmode/policies/policy_agents.php:687 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:98 +#: ../../godmode/massive/massive_copy_modules.php:96 +#: ../../godmode/massive/massive_copy_modules.php:249 +#: ../../godmode/massive/massive_standby_alerts.php:161 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_delete_modules.php:362 +#: ../../godmode/massive/massive_add_alerts.php:200 +#: ../../godmode/massive/massive_delete_agents.php:126 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_delete_alerts.php:275 +#: ../../godmode/massive/massive_add_action_alerts.php:168 +#: ../../godmode/massive/massive_edit_modules.php:343 +#: ../../include/functions_html.php:837 ../../include/functions_html.php:980 +msgid "Group recursion" +msgstr "Recursión de grupos" + +#: ../../enterprise/godmode/policies/policy_agents.php:517 +#: ../../enterprise/godmode/policies/policy_agents.php:525 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:389 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:169 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:570 +msgid "Filter agent" +msgstr "Filtrar agente" + +#: ../../enterprise/godmode/policies/policy_agents.php:534 +msgid "Agents in Policy" +msgstr "Agentes en la política" + +#: ../../enterprise/godmode/policies/policy_agents.php:556 +msgid "Groups in Policy" +msgstr "Grupos en la política" + +#: ../../enterprise/godmode/policies/policy_agents.php:630 +msgid "Add agents to policy" +msgstr "Añadir agentes a la política" + +#: ../../enterprise/godmode/policies/policy_agents.php:638 +msgid "Delete agents from policy" +msgstr "Eliminar agentes de la política" + +#: ../../enterprise/godmode/policies/policy_agents.php:697 +msgid "Applied" +msgstr "Aplicado" + +#: ../../enterprise/godmode/policies/policy_agents.php:698 +msgid "Not applied" +msgstr "No aplicado" + +#: ../../enterprise/godmode/policies/policy_agents.php:709 +#: ../../godmode/agentes/configurar_agente.php:512 +#: ../../godmode/agentes/configurar_agente.php:653 +#: ../../godmode/agentes/agent_manager.php:538 +#: ../../godmode/massive/massive_edit_agents.php:646 +#: ../../godmode/servers/servers.build_table.php:202 +msgid "Remote configuration" +msgstr "Configuración remota" + +#: ../../enterprise/godmode/policies/policy_agents.php:709 +#: ../../enterprise/operation/agentes/policy_view.php:323 +msgid "R." +msgstr "R." + +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:206 +#: ../../enterprise/operation/agentes/policy_view.php:211 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../mobile/operation/agents.php:396 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../include/functions_events.php:2393 +#: ../../operation/agentes/alerts_status.php:513 +#: ../../operation/agentes/alerts_status.php:549 +#: ../../operation/agentes/alerts_status.php:584 +#: ../../operation/agentes/alerts_status.php:617 +msgid "S." +msgstr "S." + +#: ../../enterprise/godmode/policies/policy_agents.php:712 +msgid "Unlinked modules" +msgstr "Módulos sin enlazar" + +#: ../../enterprise/godmode/policies/policy_agents.php:712 +msgid "U." +msgstr "U." + +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:397 +msgid "A." +msgstr "A." + +#: ../../enterprise/godmode/policies/policy_agents.php:715 +#: ../../enterprise/godmode/policies/policy_agents.php:1078 +#: ../../enterprise/operation/agentes/policy_view.php:52 +msgid "Last application" +msgstr "Última aplicación" + +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 +msgid "Add to delete queue" +msgstr "Añadir a la lista de eliminación" + +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 +msgid "D." +msgstr "D." + +#: ../../enterprise/godmode/policies/policy_agents.php:782 +#: ../../godmode/agentes/agent_manager.php:247 +msgid "This agent can be remotely configured" +msgstr "Este agente puede ser configurado remotamente" + +#: ../../enterprise/godmode/policies/policy_agents.php:788 +msgid "This agent can not be remotely configured" +msgstr "Este agente no puede ser configurado remotamente." + +#: ../../enterprise/godmode/policies/policy_agents.php:827 +#: ../../enterprise/godmode/policies/policy_agents.php:1169 +msgid "Process deletion" +msgstr "Borrado del proceso" + +#: ../../enterprise/godmode/policies/policy_agents.php:889 +#: ../../enterprise/godmode/policies/policy_agents.php:1123 +#: ../../enterprise/operation/agentes/policy_view.php:66 +msgid "Policy applied" +msgstr "Política aplicada" + +#: ../../enterprise/godmode/policies/policy_agents.php:895 +#: ../../enterprise/godmode/policies/policy_agents.php:1129 +msgid "Need apply" +msgstr "Necesita aplicarse" + +#: ../../enterprise/godmode/policies/policy_agents.php:905 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 +msgid "Applying policy" +msgstr "Aplicando política" + +#: ../../enterprise/godmode/policies/policy_agents.php:915 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 +msgid "Deleting from policy" +msgstr "Eliminando de la política" + +#: ../../enterprise/godmode/policies/policy_agents.php:930 +#: ../../godmode/massive/massive_delete_modules.php:72 +#: ../../godmode/massive/massive_add_alerts.php:100 +#: ../../godmode/massive/massive_delete_agents.php:35 +#: ../../godmode/massive/massive_edit_agents.php:136 +#: ../../godmode/massive/massive_delete_alerts.php:98 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../include/functions_visual_map.php:2566 +#: ../../include/functions_visual_map.php:2953 +msgid "No agents selected" +msgstr "No se seleccionó ningún agente" + +#: ../../enterprise/godmode/policies/policy_agents.php:1026 +msgid "Add groups to policy" +msgstr "Añadir grupos a política" + +#: ../../enterprise/godmode/policies/policy_agents.php:1034 +msgid "Delete groups from policy" +msgstr "Eliminar grupos de política" + +#: ../../enterprise/godmode/policies/policy_agents.php:1077 +msgid "Total agents in policy group" +msgstr "Total de agentes en el grupo de política" + +#: ../../enterprise/godmode/policies/policy_agents.php:1077 +msgid "T." +msgstr "T." + +#: ../../enterprise/godmode/policies/policy.php:92 +#: ../../enterprise/include/functions_policies.php:3729 +#: ../../godmode/agentes/configurar_agente.php:467 +msgid "Agent wizard" +msgstr "Asistente de agente" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:23 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 ../../include/functions_menu.php:545 +msgid "SNMP trap editor" +msgstr "Editor de traps SNMP" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:338 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:284 +#: ../../extensions/realtime_graphs.php:172 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:522 +msgid "OID" +msgstr "OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:339 +msgid "Custom OID" +msgstr "OID personalizado" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1991 +#: ../../enterprise/include/functions_reporting_csv.php:2151 +#: ../../enterprise/include/functions_reporting_csv.php:2165 +#: ../../godmode/setup/news.php:195 ../../godmode/setup/setup_visuals.php:1208 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1808 +#: ../../include/functions_reports.php:804 +#: ../../include/functions_reporting.php:5111 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "Texto" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:199 +msgid "Successfully added trap custom values" +msgstr "Añadidos correctamente a los valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:189 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:201 +msgid "Error adding trap custom values" +msgstr "Error al añadir los valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:204 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 +msgid "This custom OID is preexistent." +msgstr "El OID personalizado ya existe" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:245 +msgid "No change in data" +msgstr "No hay cambios en los datos" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:247 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:274 +msgid "Successfully updated trap custom values" +msgstr "Los valores personalizados del trap se han añadido correctamente." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:276 +msgid "Error updating trap custom values" +msgstr "Error al actualizar los valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:289 +msgid "Successfully deleted trap custom values" +msgstr "Valores personalizados del trap eliminados correctamente" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:292 +msgid "Error deleting trap custom values" +msgstr "Error al eliminar valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "Actualizados %s/%s traps" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:302 +msgid "Fail uploaded file" +msgstr "Error al subir el archivo" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:307 +msgid "" +"MIB files will be loaded and searched for SNMP trap definitions. They will " +"not be installed on the system! You can use the MIB uploader for that " +"purpose." +msgstr "" +"Los archivos MIB se cargarán; se buscaron las definiciones de trap SNMP. ¡No " +"serán instalados en el sistema! Puedes usar el cargador de MIB para " +"instalarlos." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:316 +msgid "Load MIB" +msgstr "Cargar MIB" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 +msgid "Upload MIB" +msgstr "Actualizar MIB" + +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "Gestionar servidor Satélite" + +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:69 +msgid "Policies operations" +msgstr "Operaciones de las políticas" + +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:48 +msgid "SNMP operations" +msgstr "Operaciones SNMP" + +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:27 +msgid "Satellite operations" +msgstr "Operaciones Satélite" + +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:258 +msgid "Duplicate config" +msgstr "Duplicar configuración" + +#: ../../enterprise/godmode/menu.php:87 +#: ../../enterprise/include/functions_policies.php:3708 +msgid "Manage policies" +msgstr "Gestionar políticas" + +#: ../../enterprise/godmode/menu.php:96 +msgid "Manage agent autoconfiguration" +msgstr "Administrar autoconfiguración" + +#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/include/class/AgentRepository.class.php:596 +msgid "Software agents repository" +msgstr "Repositorio de agentes software" + +#: ../../enterprise/godmode/menu.php:127 +#: ../../enterprise/include/functions_setup.php:48 +#: ../../enterprise/include/functions_setup.php:90 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "BD de histórico" + +#: ../../enterprise/godmode/menu.php:138 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "Importar CSV" + +#: ../../enterprise/godmode/menu.php:142 +#: ../../enterprise/include/class/DeploymentCenter.class.php:573 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:638 +msgid "Agent deployment" +msgstr "Despliegue de agentes" + +#: ../../enterprise/godmode/menu.php:152 +msgid "Mysql" +msgstr "Mysql" + +#: ../../enterprise/godmode/menu.php:153 +#: ../../enterprise/godmode/setup/setup.php:179 +#: ../../enterprise/include/class/Oracle.app.php:406 +msgid "Oracle" +msgstr "Oracle" + +#: ../../enterprise/godmode/menu.php:154 +#: ../../enterprise/include/class/VMware.app.php:458 +msgid "VMware" +msgstr "VMware" + +#: ../../enterprise/godmode/menu.php:155 +#: ../../enterprise/include/class/SAPView.class.php:612 +#: ../../enterprise/include/class/SAPView.class.php:615 +#: ../../include/class/CredentialStore.class.php:872 +msgid "SAP" +msgstr "SAP" + +#: ../../enterprise/godmode/menu.php:156 +#: ../../enterprise/godmode/wizards/Applications.class.php:154 +#: ../../enterprise/godmode/wizards/Applications.class.php:162 +msgid "Applications" +msgstr "Aplicaciones" + +#: ../../enterprise/godmode/menu.php:167 +msgid "Amazon Web Services" +msgstr "Amazon Web Services" + +#: ../../enterprise/godmode/menu.php:168 +msgid "Microsoft Azure" +msgstr "Microsoft Azure" + +#: ../../enterprise/godmode/menu.php:169 +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Cloud.class.php:191 +#: ../../enterprise/include/class/Azure.cloud.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:183 +#: ../../enterprise/include/class/Aws.cloud.php:94 +#: ../../enterprise/include/class/Aws.cloud.php:141 +msgid "Cloud" +msgstr "Nube" + +#: ../../enterprise/godmode/menu.php:184 +msgid "New console task" +msgstr "Nueva tarea de consola" + +#: ../../enterprise/godmode/menu.php:194 +msgid "Enterprise ACL Setup" +msgstr "Configuración ACL Enterprise" + +#: ../../enterprise/godmode/menu.php:203 +msgid "Skins" +msgstr "Apariencia" + +#: ../../enterprise/godmode/menu.php:213 +msgid "Manage database HA" +msgstr "Gestionar la base de datos de alta disponibilidad" + +#: ../../enterprise/godmode/menu.php:223 +#: ../../enterprise/godmode/servers/manage_export.php:43 +#: ../../enterprise/godmode/servers/manage_export_form.php:59 +msgid "Export targets" +msgstr "Servidores de exportación" + +#: ../../enterprise/godmode/menu.php:233 +msgid "Alert correlation" +msgstr "Correlación de alertas" + +#: ../../enterprise/godmode/menu.php:249 +msgid "Log Collector" +msgstr "Colector de logs" + +#: ../../enterprise/godmode/menu.php:267 +msgid "Password policy" +msgstr "Política de contraseñas" + +#: ../../enterprise/godmode/menu.php:275 +#: ../../enterprise/include/functions_setup.php:40 +#: ../../enterprise/include/functions_setup.php:79 +#: ../../godmode/extensions.php:138 ../../godmode/setup/setup.php:225 +msgid "Enterprise" +msgstr "Enterprise" + +#: ../../enterprise/godmode/menu.php:288 +#: ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "Omnishell" + +#: ../../enterprise/godmode/menu.php:297 ../../godmode/setup/setup.php:133 +#: ../../godmode/setup/setup.php:203 +#: ../../godmode/module_library/module_library_view.php:65 +msgid "Module Library" +msgstr "Biblioteca de módulos" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:76 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:73 +msgid "Successful update the tags" +msgstr "Etiquetas actualizadas correctamente" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:77 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:74 +msgid "Unsuccessful update the tags" +msgstr "Error al actualizar las etiquetas" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 +msgid "Tags unused" +msgstr "Etiquetas sin usar" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:163 +msgid "Tags used" +msgstr "Etiquetas usadas" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 +msgid "Success: create the alerts." +msgstr "Alertas creadas correctamente" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 +msgid "Failed: create the alerts for this modules, please check." +msgstr "Error al crear las alertas para estos módulos. Resuelve el problema." + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../include/functions_alerts.php:656 +msgid "Regular expression" +msgstr "Expresión regular" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 +msgid "Modules in policy" +msgstr "Módulos en la política" + +#: ../../enterprise/godmode/massive/massive_operations.php:83 +msgid "Bulk alerts policy add" +msgstr "Añadir alertas de políticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:84 +msgid "Bulk alerts policy delete" +msgstr "Eliminar alertas de políticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:85 +msgid "Bulk tags module policy edit" +msgstr "Editar las etiquetas de módulos en políticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:86 +msgid "Bulk modules policy tags edit" +msgstr "Editar las etiquetas de módulos en políticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:87 +msgid "Bulk modules policy add from agent" +msgstr "Añadir módulos de forma masiva a la política del agente" + +#: ../../enterprise/godmode/massive/massive_operations.php:88 +msgid "Bulk modules policy edit" +msgstr "Editas política masiva de módulos" + +#: ../../enterprise/godmode/massive/massive_operations.php:99 +msgid "Bulk alert SNMP delete" +msgstr "Eliminar alertas SNMP de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:100 +msgid "Bulk alert SNMP edit" +msgstr "Editar alertas SNMP de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:111 +msgid "Bulk Satellite modules edit" +msgstr "Editar módulos Satélite de forma masiva" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:59 +msgid "Successfully copied " +msgstr "Copiado correctamente " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +#: ../../include/ajax/events.php:1802 ../../include/ajax/events.php:1816 +#: ../../include/ajax/events.php:1830 +msgid "Module " +msgstr "Módulo " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " cannot be copied to " +msgstr " no se puede copiar a " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " policy" +msgstr " política de" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:168 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:173 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:182 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:240 +#: ../../enterprise/godmode/setup/setup_auth.php:66 +#: ../../enterprise/godmode/setup/setup_auth.php:264 +#: ../../enterprise/godmode/setup/setup_auth.php:311 +#: ../../enterprise/godmode/setup/setup_auth.php:366 +#: ../../enterprise/godmode/setup/setup_auth.php:529 +#: ../../enterprise/godmode/setup/setup_auth.php:1096 +#: ../../enterprise/godmode/setup/setup_auth.php:1263 +#: ../../enterprise/godmode/setup/setup_acl.php:440 +#: ../../enterprise/include/class/DeploymentCenter.class.php:739 +#: ../../enterprise/include/class/AgentRepository.class.php:633 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1542 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3764 +#: ../../enterprise/operation/services/services.list.php:208 +#: ../../enterprise/operation/services/services.list.php:239 +#: ../../enterprise/operation/services/services.table_services.php:187 +#: ../../enterprise/operation/services/services.table_services.php:218 +#: ../../godmode/agentes/planned_downtime.list.php:160 +#: ../../godmode/agentes/planned_downtime.editor.php:944 +#: ../../godmode/agentes/agent_manager.php:314 +#: ../../godmode/agentes/agent_manager.php:525 +#: ../../godmode/massive/massive_copy_modules.php:162 +#: ../../godmode/massive/massive_delete_modules.php:383 +#: ../../godmode/massive/massive_delete_modules.php:497 +#: ../../godmode/massive/massive_edit_agents.php:517 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/massive/massive_add_action_alerts.php:175 +#: ../../godmode/massive/massive_edit_modules.php:384 +#: ../../godmode/massive/massive_edit_modules.php:469 +#: ../../godmode/reporting/create_container.php:541 +#: ../../godmode/reporting/visual_console_builder.wizard.php:556 +#: ../../godmode/events/event_edit_filter.php:397 +#: ../../include/functions_visual_map_editor.php:464 +#: ../../include/functions_visual_map_editor.php:1362 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/ajax/visual_console_builder.ajax.php:1186 +#: ../../include/functions_profile.php:316 +#: ../../include/functions_html.php:1601 ../../include/functions_html.php:1602 +#: ../../include/functions_html.php:1603 ../../include/functions_html.php:1604 +#: ../../include/functions_html.php:1605 ../../include/functions_html.php:1607 +#: ../../include/functions_html.php:1608 ../../include/functions_html.php:1609 +#: ../../include/functions_html.php:1610 ../../include/functions_html.php:1611 +#: ../../include/lib/Dashboard/Widgets/events_list.php:282 +#: ../../operation/events/events_list.php:789 +#: ../../operation/events/events.php:1093 +#: ../../operation/events/events.php:2299 +msgid "Any" +msgstr "Cualquiera" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:173 +#: ../../godmode/massive/massive_copy_modules.php:197 +msgid "No modules for this agent" +msgstr "No existen módulos para este agente" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:206 +msgid "To policies" +msgstr "a políticas" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:342 +#: ../../godmode/massive/massive_copy_modules.php:525 +#: ../../godmode/massive/massive_delete_modules.php:802 +#: ../../godmode/massive/massive_add_alerts.php:295 +#: ../../godmode/massive/massive_delete_agents.php:217 +#: ../../godmode/massive/massive_edit_agents.php:914 +#: ../../godmode/massive/massive_delete_alerts.php:354 +#: ../../godmode/massive/massive_add_action_alerts.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1211 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." +msgstr "" +"Error al enviar los datos. Por favor, contacta con el administrador o " +"inténtalo con menos elementos." + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:349 +#: ../../godmode/massive/massive_copy_modules.php:535 +#: ../../include/functions_agents.php:763 +msgid "No source agent to copy" +msgstr "No hay agente de origen del que copiar" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:354 +#: ../../godmode/massive/massive_copy_modules.php:548 +#: ../../include/functions_agents.php:794 +msgid "No modules have been selected" +msgstr "No se ha seleccionado ningún módulo" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +msgid "No destiny policies to copy" +msgstr "No hay políticas de destino que copiar" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:189 +#: ../../godmode/massive/massive_delete_modules.php:348 +#: ../../godmode/massive/massive_edit_modules.php:329 +msgid "Agent group" +msgstr "Grupo de agentes" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 +msgid "Filter module" +msgstr "Filtro de módulo" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:230 +#: ../../godmode/massive/massive_delete_action_alerts.php:195 +#: ../../godmode/massive/massive_delete_modules.php:526 +#: ../../godmode/massive/massive_add_alerts.php:232 +#: ../../godmode/massive/massive_delete_alerts.php:305 +#: ../../godmode/massive/massive_add_action_alerts.php:182 +#: ../../godmode/massive/massive_edit_modules.php:496 +msgid "When select agents" +msgstr "Al seleccionar agentes" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:234 +#: ../../extensions/agents_modules.php:421 +#: ../../extensions/agents_modules.php:424 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:621 +#: ../../godmode/agentes/planned_downtime.editor.php:954 +#: ../../godmode/massive/massive_delete_action_alerts.php:199 +#: ../../godmode/massive/massive_delete_modules.php:530 +#: ../../godmode/massive/massive_add_alerts.php:236 +#: ../../godmode/massive/massive_delete_alerts.php:309 +#: ../../godmode/massive/massive_add_action_alerts.php:186 +#: ../../godmode/massive/massive_edit_modules.php:500 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1528 +msgid "Show common modules" +msgstr "Mostrar módulos comunes" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:235 +#: ../../extensions/agents_modules.php:422 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:622 +#: ../../godmode/agentes/planned_downtime.editor.php:955 +#: ../../godmode/massive/massive_delete_action_alerts.php:200 +#: ../../godmode/massive/massive_delete_modules.php:531 +#: ../../godmode/massive/massive_add_alerts.php:237 +#: ../../godmode/massive/massive_delete_alerts.php:310 +#: ../../godmode/massive/massive_add_action_alerts.php:187 +#: ../../godmode/massive/massive_edit_modules.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1529 +msgid "Show all modules" +msgstr "Mostrar todos los módulos" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:394 +msgid "Updated modules on database" +msgstr "Módulos actualizados en la base de datos" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 +msgid "Agent configuration files updated" +msgstr "Archivo de configuración del agente actualizado correctamente" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:26 +#: ../../operation/snmpconsole/snmp_view.php:606 +#: ../../operation/snmpconsole/snmp_view.php:1031 +#: ../../operation/snmpconsole/snmp_view.php:1045 +msgid "Cold start (0)" +msgstr "Inicio cero (0)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:27 +#: ../../operation/snmpconsole/snmp_view.php:607 +#: ../../operation/snmpconsole/snmp_view.php:1032 +#: ../../operation/snmpconsole/snmp_view.php:1049 +msgid "Warm start (1)" +msgstr "Comienzo de inicio (1)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:28 +#: ../../operation/snmpconsole/snmp_view.php:608 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1053 +msgid "Link down (2)" +msgstr "Enlace interrumpido (2)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:29 +#: ../../operation/snmpconsole/snmp_view.php:609 +#: ../../operation/snmpconsole/snmp_view.php:1034 +#: ../../operation/snmpconsole/snmp_view.php:1057 +msgid "Link up (3)" +msgstr "Enlace activo (3)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +#: ../../operation/snmpconsole/snmp_view.php:610 +#: ../../operation/snmpconsole/snmp_view.php:1035 +#: ../../operation/snmpconsole/snmp_view.php:1061 +msgid "Authentication failure (4)" +msgstr "Fallo de autentificación (4)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../enterprise/godmode/setup/setup_acl.php:350 +#: ../../enterprise/godmode/setup/setup_acl.php:354 +#: ../../enterprise/include/class/Aws.cloud.php:284 #: ../../extensions/api_checker.php:176 #: ../../godmode/groups/configure_group.php:204 +#: ../../godmode/users/configure_user.php:896 #: ../../godmode/snmpconsole/snmp_alert.php:31 -#: ../../godmode/users/configure_user.php:846 -#: ../../include/functions_graph.php:2894 -#: ../../include/functions_graph.php:2968 -#: ../../include/functions_graph.php:3043 -#: ../../include/functions_graph.php:3117 -#: ../../include/functions_graph.php:3194 -#: ../../include/functions_graph.php:3403 -#: ../../include/functions_graph.php:3511 -#: ../../include/functions_graph.php:3576 -#: ../../include/functions_graph.php:3699 -#: ../../include/functions_graph.php:3700 -#: ../../include/functions_graph.php:3703 -#: ../../include/functions_graph.php:3708 +#: ../../include/functions_graph.php:2897 +#: ../../include/functions_graph.php:2971 +#: ../../include/functions_graph.php:3046 +#: ../../include/functions_graph.php:3120 +#: ../../include/functions_graph.php:3197 +#: ../../include/functions_graph.php:3406 +#: ../../include/functions_graph.php:3514 +#: ../../include/functions_graph.php:3579 #: ../../include/functions_graph.php:3709 -#: ../../include/functions_graph.php:3712 -#: ../../include/functions_graph.php:4624 -#: ../../operation/gis_maps/render_view.php:154 +#: ../../include/functions_graph.php:3721 +#: ../../include/functions_graph.php:3722 +#: ../../include/functions_graph.php:3725 +#: ../../include/functions_graph.php:3730 +#: ../../include/functions_graph.php:3731 +#: ../../include/functions_graph.php:3734 +#: ../../include/functions_graph.php:4689 +#: ../../operation/users/user_edit.php:343 #: ../../operation/snmpconsole/snmp_statistics.php:180 #: ../../operation/snmpconsole/snmp_statistics.php:237 #: ../../operation/snmpconsole/snmp_view.php:611 #: ../../operation/snmpconsole/snmp_view.php:1036 #: ../../operation/snmpconsole/snmp_view.php:1065 -#: ../../operation/users/user_edit.php:344 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 -#: ../../enterprise/godmode/setup/setup_acl.php:385 -#: ../../enterprise/godmode/setup/setup_acl.php:389 -#: ../../enterprise/include/class/Aws.cloud.php:284 +#: ../../operation/gis_maps/render_view.php:154 msgid "Other" msgstr "Otros" -#: ../../extensions/api_checker.php:181 -msgid "Other Mode" -msgstr "Otro modo" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:145 +#: ../../godmode/snmpconsole/snmp_alert.php:712 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "Alertas eliminadas correctamente (%s / %s)" -#: ../../extensions/api_checker.php:189 -msgid "Raw URL" -msgstr "URL en crudo" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:153 +#: ../../godmode/snmpconsole/snmp_alert.php:716 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "Error al eliminar las alertas (%s / %s)" -#: ../../extensions/api_checker.php:195 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1144 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1271 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1281 -#: ../../enterprise/meta/include/functions_wizard_meta.php:968 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1054 -msgid "Credentials" -msgstr "Credenciales" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:181 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Custom OIDs/Datas." +msgstr "" +"Búsqueda por descripción de los campos, OIS, Valores personalizados, Agentes " +"(IP) SNMP, Valor único, cada OIDs/Datos personalizado." -#: ../../extensions/api_checker.php:200 -msgid "Call parameters" -msgstr "Parámetros de llamada" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:185 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:290 +#: ../../godmode/snmpconsole/snmp_alert.php:802 +#: ../../godmode/snmpconsole/snmp_alert.php:1124 +#: ../../include/functions_snmp.php:443 +#: ../../operation/snmpconsole/snmp_view.php:603 +msgid "Trap type" +msgstr "Clase de trap" -#: ../../extensions/api_checker.php:205 ../../extensions/api_checker.php:217 -msgid "Call" -msgstr "Llamada" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:200 +msgid "SNMP Alerts to be deleted" +msgstr "Alertas SNMP para añadir" -#: ../../extensions/api_checker.php:211 -msgid "Custom URL" -msgstr "URL personalizada:" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:205 +#, php-format +msgid "Successfully updated alerts (%s / %s)" +msgstr "Alertas actualizadas correctamente (%s / %s)" -#: ../../extensions/api_checker.php:223 ../../extensions/api_checker.php:230 -#: ../../include/functions_db.php:1766 -#: ../../include/functions_reporting_html.php:3494 -msgid "Result" -msgstr "Resultado" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:213 +#, php-format +msgid "Unsuccessfully updated alerts (%s / %s)" +msgstr "No se han podido actualizar las alertas (%s / %s)" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +msgid "SNMP Alerts to be edit" +msgstr "Alertas SNMP para editar" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:286 +#: ../../godmode/snmpconsole/snmp_alert.php:765 +msgid "Custom Value/OID" +msgstr "Valor/OID personalizado" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:288 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:112 +#: ../../godmode/snmpconsole/snmp_alert.php:773 +#: ../../godmode/snmpconsole/snmp_alert.php:1268 +#: ../../operation/snmpconsole/snmp_view.php:799 +msgid "SNMP Agent" +msgstr "Agente SNMP" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:292 +#: ../../godmode/snmpconsole/snmp_alert.php:807 +msgid "Single value" +msgstr "Valor único" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:294 +#: ../../enterprise/godmode/alerts/alert_events.php:533 +#: ../../godmode/snmpconsole/snmp_alert.php:1012 +#: ../../godmode/alerts/configure_alert_template.php:635 +msgid "Min. number of alerts" +msgstr "Número mínimo de alertas" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:296 +#: ../../enterprise/godmode/alerts/alert_events.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1015 +#: ../../godmode/alerts/configure_alert_template.php:648 +msgid "Max. number of alerts" +msgstr "Número máximo de alertas" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../godmode/snmpconsole/snmp_alert.php:1034 +msgid "Other value" +msgstr "Otros valores" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:317 +#: ../../godmode/snmpconsole/snmp_alert.php:1085 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../include/functions_visual_map_editor.php:832 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 +#: ../../include/rest-api/models/VisualConsole/Item.php:1905 +msgid "Position" +msgstr "Posición" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 +msgid "Modules unused" +msgstr "Módulos sin usar" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:151 +msgid "Modules used" +msgstr "Módulos usados" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 +msgid "Success: remove the alerts." +msgstr "Alertas borradas correctamente" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "Error al borrar las alertas en estos módulos" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +msgid "Modules agents in policy" +msgstr "Módulos de agentes en la política" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:377 +#: ../../godmode/massive/massive_edit_modules.php:526 +msgid "Dynamic Min." +msgstr "Mínimo dinámico" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 +#: ../../godmode/massive/massive_edit_modules.php:724 +msgid "SMNP community" +msgstr "Comunidad SMNP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:585 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:734 +msgid "SNMP OID" +msgstr "SNMP OID" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:137 +#: ../../enterprise/include/functions_hostdevices.php:168 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:793 +msgid "The pass length must be eight character minimum." +msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:166 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:793 +#: ../../include/functions_snmp_browser.php:738 +msgid "Privacy pass" +msgstr "Conexión privada" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:678 +#: ../../enterprise/operation/agentes/tag_view.php:136 +#: ../../godmode/agentes/module_manager_editor_common.php:244 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 +#: ../../godmode/massive/massive_edit_modules.php:820 +#: ../../include/functions_graph.php:5148 +#: ../../include/functions_treeview.php:116 +#: ../../operation/agentes/status_monitor.php:406 +msgid "Not assigned" +msgstr "Sin asignar" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:698 +#: ../../godmode/agentes/module_manager_editor_common.php:665 +#: ../../godmode/massive/massive_edit_modules.php:840 +msgid "Export target" +msgstr "Servidor de exportación" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:723 +#: ../../enterprise/godmode/services/services.service.php:394 +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +#: ../../enterprise/operation/services/services.list.php:238 +#: ../../enterprise/operation/services/services.table_services.php:217 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/alerts/alert_view.php:421 +msgid "Mode" +msgstr "Modo" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:788 +#: ../../godmode/massive/massive_edit_modules.php:926 +msgid "Active Counters" +msgstr "Contadores activos" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:927 +msgid "Inactive Counters" +msgstr "Contadores inactivos" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "Policy linking status" +msgstr "Estado de enlaces de la política" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "This field only has sense in modules adopted by a policy." +msgstr "" +"Este campo solo tiene sentido en los módulos aprobados por una política." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../godmode/massive/massive_edit_modules.php:995 +msgid "Linked" +msgstr "Enlazado" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../godmode/agentes/module_manager.php:790 +#: ../../godmode/agentes/module_manager.php:793 +#: ../../godmode/massive/massive_edit_modules.php:995 +#: ../../include/ajax/module.php:957 ../../include/ajax/module.php:960 +msgid "Unlinked" +msgstr "Desenlazado" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:843 +#: ../../godmode/modules/manage_network_components_form_common.php:306 +#: ../../godmode/agentes/module_manager_editor_common.php:698 +#: ../../godmode/massive/massive_edit_modules.php:1004 +msgid "Discard unknown events" +msgstr "Descartar eventos desconocidos" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:872 +#: ../../godmode/massive/massive_edit_modules.php:1033 +msgid "The module still store data but the alerts and events will be stop" +msgstr "" +"El módulo todavía almacena datos pero las alertas y los eventos se detendrán." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:887 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1051 +#: ../../godmode/massive/massive_edit_modules.php:1050 +msgid "Timeout" +msgstr "Tiempo de espera" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:896 +#: ../../godmode/massive/massive_edit_modules.php:1059 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "" +"Segundos que el agente tendrá que esperar para la ejecución del módulo" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 +#: ../../godmode/modules/manage_network_components_form_network.php:196 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1076 +msgid "TCP send" +msgstr "Enviar TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:916 +#: ../../godmode/modules/manage_network_components_form_network.php:203 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1079 +msgid "TCP receive" +msgstr "Recibir TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:919 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1082 +msgid "WMI query" +msgstr "Consulta WMI" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:922 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 +#: ../../godmode/massive/massive_edit_modules.php:1085 +msgid "Key string" +msgstr "Cadena clave" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:925 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +#: ../../godmode/massive/massive_edit_modules.php:1088 +msgid "Field number" +msgstr "Campo número" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:928 +#: ../../extensions/plugin_registration.php:406 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:324 +#: ../../godmode/massive/massive_edit_modules.php:1091 +msgid "Plugin" +msgstr "Plugin" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/modules/manage_network_components_form_network.php:210 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:492 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/alerts/configure_alert_command.php:176 +#: ../../godmode/alerts/configure_alert_action.php:147 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../godmode/servers/plugin.php:422 ../../godmode/servers/plugin.php:427 +#: ../../godmode/servers/plugin.php:971 +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Command" +msgstr "Comando" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../godmode/modules/manage_network_components_form_network.php:229 +#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/massive/massive_edit_modules.php:1126 +msgid "Credential identifier" +msgstr "Credencial" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:978 +#: ../../godmode/modules/manage_network_components_form_network.php:245 +#: ../../godmode/agentes/module_manager_editor_network.php:468 +#: ../../godmode/massive/massive_edit_modules.php:1140 +msgid "Inherited" +msgstr "Heredado" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:979 +#: ../../godmode/modules/manage_network_components_form_network.php:246 +#: ../../godmode/massive/massive_edit_modules.php:1141 +msgid "Linux" +msgstr "Linux" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:980 +#: ../../godmode/modules/manage_network_components_form_network.php:247 +#: ../../godmode/massive/massive_edit_modules.php:1142 +msgid "Windows" +msgstr "Windows" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:983 +#: ../../godmode/modules/manage_network_components_form_network.php:250 +#: ../../godmode/massive/massive_edit_modules.php:1145 +msgid "Target OS" +msgstr "SO objetivo" + +#: ../../enterprise/godmode/admin_access_logs.php:49 +msgid "Show extended info" +msgstr "Mostrar más info" + +#: ../../enterprise/godmode/admin_access_logs.php:69 +msgid "" +"The security check cannot be performed. There are no data in " +"tsession_extended to check the hash." +msgstr "" +"La comprobación de seguridad no se puede realizar. No hay datos en " +"tsession_extended para verificar el hash." + +#: ../../enterprise/godmode/admin_access_logs.php:77 +msgid "Security check is ok." +msgstr "La comprobación de seguridad está OK." + +#: ../../enterprise/godmode/admin_access_logs.php:82 +msgid "Security check is fail." +msgstr "La comprobación de seguridad ha fallado." + +#: ../../enterprise/godmode/admin_access_logs.php:186 +msgid "Extended info:" +msgstr "Información extendida:" + +#: ../../enterprise/godmode/admin_access_logs.php:186 +msgid "Changes:" +msgstr "Cambios:" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 +#: ../../enterprise/godmode/alerts/alert_events.php:47 +#: ../../enterprise/godmode/alerts/alert_events_list.php:57 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 +msgid "List event alerts" +msgstr "Lista de alertas de eventos" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:55 +#: ../../enterprise/godmode/alerts/alert_events.php:52 +#: ../../enterprise/godmode/alerts/alert_events_list.php:61 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 +msgid "Builder event alert" +msgstr "Creador de alertas de eventos" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:59 +#: ../../enterprise/godmode/alerts/alert_events.php:60 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:88 +msgid "List event rules" +msgstr "Lista de reglas de eventos" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +msgid "Configure event rule" +msgstr "Configurar regla de evento" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +msgid "User comment" +msgstr "Comentario de usuario" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +msgid "This field will be processed with regexp" +msgstr "Este campo será procesado con regexp" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../operation/events/sound_events.php:80 +msgid "Event" +msgstr "Evento" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 +msgid "Window" +msgstr "Ventana" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1392 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1014 +#: ../../include/functions_reporting_html.php:962 +#: ../../include/functions_reporting_html.php:1186 +#: ../../include/functions_reporting_html.php:1955 +#: ../../operation/snmpconsole/snmp_view.php:810 +msgid "Count" +msgstr "Número" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +#: ../../include/class/Tree.class.php:686 +msgid "Module alerts" +msgstr "Alertas de módulo" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:169 +msgid "Recursion:" +msgstr "Recursividad:" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:175 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:404 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:324 +#: ../../godmode/reporting/create_container.php:534 +#: ../../godmode/reporting/create_container.php:595 +#: ../../mobile/operation/modules.php:170 +#: ../../mobile/operation/modules.php:171 +#: ../../mobile/operation/modules.php:283 +#: ../../mobile/operation/modules.php:284 +#: ../../operation/agentes/group_view.php:283 +msgid "Tag" +msgstr "Etiqueta" + +#: ../../enterprise/godmode/alerts/alert_events.php:84 +msgid "Configure event alert" +msgstr "Configurar alertas de eventos" + +#: ../../enterprise/godmode/alerts/alert_events.php:142 +#: ../../enterprise/godmode/alerts/alert_events.php:146 +#: ../../godmode/alerts/configure_alert_template.php:200 +#: ../../godmode/alerts/configure_alert_template.php:204 +msgid "Conditions" +msgstr "Condiciones" + +#: ../../enterprise/godmode/alerts/alert_events.php:163 +#: ../../enterprise/godmode/alerts/alert_events.php:167 +#: ../../godmode/alerts/configure_alert_template.php:221 +#: ../../godmode/alerts/configure_alert_template.php:225 +msgid "Advanced fields" +msgstr "Campos avanzados" + +#: ../../enterprise/godmode/alerts/alert_events.php:396 +msgid "Could not be created, please fill alert name" +msgstr "No se pudo crear; introduce un nombre de alerta." + +#: ../../enterprise/godmode/alerts/alert_events.php:487 +#: ../../godmode/alerts/configure_alert_template.php:585 +msgid "Days of week" +msgstr "Días de la semana" + +#: ../../enterprise/godmode/alerts/alert_events.php:488 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:885 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1985 +#: ../../godmode/agentes/planned_downtime.editor.php:753 +#: ../../godmode/alerts/configure_alert_template.php:586 +#: ../../godmode/alerts/alert_special_days.php:357 +#: ../../godmode/alerts/alert_view.php:212 ../../include/functions.php:1080 +#: ../../include/functions_reporting.php:11779 +msgid "Mon" +msgstr "Lun" + +#: ../../enterprise/godmode/alerts/alert_events.php:490 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:886 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1986 +#: ../../godmode/agentes/planned_downtime.editor.php:754 +#: ../../godmode/alerts/configure_alert_template.php:588 +#: ../../godmode/alerts/alert_special_days.php:358 +#: ../../godmode/alerts/alert_view.php:213 ../../include/functions.php:1084 +#: ../../include/functions_reporting.php:11784 +msgid "Tue" +msgstr "Mar" + +#: ../../enterprise/godmode/alerts/alert_events.php:492 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:887 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1987 +#: ../../godmode/agentes/planned_downtime.editor.php:755 +#: ../../godmode/alerts/configure_alert_template.php:590 +#: ../../godmode/alerts/alert_special_days.php:359 +#: ../../godmode/alerts/alert_view.php:214 ../../include/functions.php:1088 +#: ../../include/functions_reporting.php:11789 +msgid "Wed" +msgstr "Mié" + +#: ../../enterprise/godmode/alerts/alert_events.php:494 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:888 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1988 +#: ../../godmode/agentes/planned_downtime.editor.php:756 +#: ../../godmode/alerts/configure_alert_template.php:592 +#: ../../godmode/alerts/alert_special_days.php:360 +#: ../../godmode/alerts/alert_view.php:215 ../../include/functions.php:1092 +#: ../../include/functions_reporting.php:11794 +msgid "Thu" +msgstr "Jue" + +#: ../../enterprise/godmode/alerts/alert_events.php:496 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:889 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1989 +#: ../../godmode/agentes/planned_downtime.editor.php:757 +#: ../../godmode/alerts/configure_alert_template.php:594 +#: ../../godmode/alerts/alert_special_days.php:361 +#: ../../godmode/alerts/alert_view.php:216 ../../include/functions.php:1096 +#: ../../include/functions_reporting.php:11799 +msgid "Fri" +msgstr "Vie" + +#: ../../enterprise/godmode/alerts/alert_events.php:498 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:890 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1990 +#: ../../godmode/agentes/planned_downtime.editor.php:758 +#: ../../godmode/alerts/configure_alert_template.php:596 +#: ../../godmode/alerts/alert_special_days.php:362 +#: ../../godmode/alerts/alert_view.php:217 ../../include/functions.php:1100 +#: ../../include/functions_reporting.php:11804 +msgid "Sat" +msgstr "Sáb" + +#: ../../enterprise/godmode/alerts/alert_events.php:500 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:891 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1991 +#: ../../godmode/agentes/planned_downtime.editor.php:759 +#: ../../godmode/alerts/configure_alert_template.php:598 +#: ../../godmode/alerts/alert_special_days.php:356 +#: ../../godmode/alerts/alert_view.php:218 ../../include/functions.php:1104 +#: ../../include/functions_reporting.php:11809 +msgid "Sun" +msgstr "Dom" + +#: ../../enterprise/godmode/alerts/alert_events.php:503 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1731 +#: ../../godmode/alerts/configure_alert_template.php:604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1172 +#: ../../operation/events/events.php:1179 +msgid "Time from" +msgstr "Hora desde" + +#: ../../enterprise/godmode/alerts/alert_events.php:512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1749 +#: ../../godmode/alerts/configure_alert_template.php:613 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1190 +#: ../../operation/events/events.php:1230 +msgid "Time to" +msgstr "Hora hasta" + +#: ../../enterprise/godmode/alerts/alert_events.php:551 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1001 +msgid "Rule evaluation mode" +msgstr "Modo de evaluación de reglas" + +#: ../../enterprise/godmode/alerts/alert_events.php:563 +#: ../../godmode/snmpconsole/snmp_alert.php:1089 +#: ../../godmode/alerts/configure_alert_template.php:658 +msgid "Disable event" +msgstr "Deshabilitar evento" + +#: ../../enterprise/godmode/alerts/alert_events.php:566 +msgid "Group by" +msgstr "Agrupar por" + +#: ../../enterprise/godmode/alerts/alert_events.php:572 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1851 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2625 +#: ../../godmode/alerts/alert_commands.php:91 +#: ../../godmode/alerts/alert_commands.php:93 +#: ../../godmode/alerts/alert_commands.php:107 +#: ../../godmode/alerts/alert_commands.php:113 +#: ../../godmode/alerts/configure_alert_template.php:852 +#: ../../godmode/alerts/alert_view.php:466 +#: ../../godmode/alerts/alert_view.php:544 +#, php-format +msgid "Field %s" +msgstr "Campo %s" + +#: ../../enterprise/godmode/alerts/alert_events.php:645 +#: ../../extensions/agents_alerts.php:262 +#: ../../godmode/alerts/configure_alert_action.php:116 +#: ../../godmode/alerts/alert_list.builder.php:128 +msgid "Create Action" +msgstr "Crear acción" + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +msgid "Please Read" +msgstr "Por favor, léelo." + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +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, tienes que editarlas " +"desde la lista de alertas de eventos." + +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +#: ../../godmode/servers/modificar_server.php:117 +#: ../../godmode/servers/modificar_server.php:128 +msgid "Successfully action" +msgstr "Acción procesada satisfactoriamente" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +msgid "Error processing action" +msgstr "Error al procesar la acción" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 +#: ../../operation/agentes/alerts_status.functions.php:34 +msgid "Alert(s) validated" +msgstr "Alerta(s) validada(s)" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 +msgid "Error validating alert(s)" +msgstr "Error al validar la alerta" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 +msgid "Ac." +msgstr "Ac." + +#: ../../enterprise/godmode/alerts/alert_events_list.php:621 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2918 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283 +msgid "No associated actions" +msgstr "No hay acciones asociadas" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:650 +#: ../../enterprise/godmode/alerts/alert_events_list.php:695 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3269 +#: ../../extensions/agents_alerts.php:299 +#: ../../godmode/alerts/alert_list.list.php:619 +#: ../../godmode/alerts/alert_list.list.php:746 +#: ../../godmode/alerts/configure_alert_action.php:179 +#: ../../godmode/alerts/alert_view.php:389 +#: ../../godmode/alerts/alert_list.builder.php:165 +#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:4184 +#: ../../include/ajax/alert_list.ajax.php:517 +msgid "Threshold" +msgstr "Umbral" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/operation/agentes/policy_view.php:281 +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:534 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions_ui.php:1223 +msgid "time(s)" +msgstr "Veces" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:711 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3116 +#: ../../enterprise/operation/agentes/policy_view.php:284 +#: ../../extensions/agents_alerts.php:570 +#: ../../godmode/alerts/alert_list.list.php:537 +#: ../../godmode/alerts/alert_view.php:85 ../../mobile/operation/alerts.php:308 +#: ../../include/functions_ui.php:1226 +#: ../../include/functions_reporting.php:10045 +msgid "Alert disabled" +msgstr "Alerta desactivada" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:714 +#: ../../enterprise/operation/agentes/policy_view.php:287 +#: ../../extensions/agents_alerts.php:573 +#: ../../godmode/alerts/alert_list.list.php:540 +#: ../../godmode/alerts/alert_view.php:88 ../../mobile/operation/alerts.php:311 +#: ../../include/functions_agents.php:2611 +#: ../../include/functions_agents.php:2622 ../../include/functions_ui.php:1229 +#: ../../include/functions_reporting.php:9959 +#: ../../operation/snmpconsole/snmp_view.php:965 +msgid "Alert not fired" +msgstr "Alerta no disparada" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:725 +msgid "View associated rules" +msgstr "Ver reglas asociadas" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:741 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3008 +msgid "There are no defined events alerts" +msgstr "No hay alertas de eventos definidas" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +msgid "Event rules" +msgstr "Reglas de eventos" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:103 +msgid "" +"This view will be removed in a future version. Please use \"Alert " +"correlation\" instead." +msgstr "" +"Esta vista se eliminará en una versión futura. Use \"Correlación de " +"alertas\" en su lugar." + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:225 +msgid "Error creating rule" +msgstr "Error al crear la regla" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:229 +msgid "Successfully created rule" +msgstr "Regla creada correctamente" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:244 +msgid "Error updating rule" +msgstr "Error al actualizar la regla" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:247 +msgid "Successfully updating rule" +msgstr "Regla actualizada correctamente" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:257 +msgid "Error updating rule operators" +msgstr "Error al actualizar los operadores de reglas" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 +msgid "Successfully update rule operators" +msgstr "Operadores actualizados correctamente" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +msgid "(Agent)" +msgstr "(Agente)" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 +msgid "Operator" +msgstr "Operador" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:499 +msgid "Logic expression for these rules:" +msgstr "Expresión lógica para estas reglas:" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:507 +msgid "Update operators" +msgstr "Actualizar operadores" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:512 +msgid "There are no defined alert event rules" +msgstr "No hay reglas para alerta de eventos definidas" + +#: ../../enterprise/godmode/services/services.service.php:58 +#: ../../enterprise/operation/services/services.treeview_services.php:165 +#: ../../enterprise/operation/services/services.list.php:588 +#: ../../enterprise/operation/services/services.table_services.php:438 +msgid "Create Service" +msgstr "Crear servicio" + +#: ../../enterprise/godmode/services/services.service.php:85 +#: ../../enterprise/godmode/services/services.service.php:148 +msgid "No name and description specified for the service" +msgstr "Ningún nombre ni descripción especificado para el servicio" + +#: ../../enterprise/godmode/services/services.service.php:93 +#: ../../enterprise/godmode/services/services.service.php:156 +msgid "No name specified for the service" +msgstr "Ningún nombre especificado para el servicio" + +#: ../../enterprise/godmode/services/services.service.php:101 +#: ../../enterprise/godmode/services/services.service.php:164 +msgid "No description specified for the service" +msgstr "Ninguna descripción especificada para el servicio" + +#: ../../enterprise/godmode/services/services.service.php:110 +msgid "Error creating service" +msgstr "Error al crear servicio" + +#: ../../enterprise/godmode/services/services.service.php:117 +msgid "Service created successfully" +msgstr "Servicio creado correctamente" + +#: ../../enterprise/godmode/services/services.service.php:204 +msgid "Error updating service" +msgstr "Error al actualizar el sevicio" + +#: ../../enterprise/godmode/services/services.service.php:211 +msgid "Service updated successfully" +msgstr "Servicio actualizado correctamente" + +#: ../../enterprise/godmode/services/services.service.php:227 +#: ../../enterprise/godmode/services/services.service.php:262 +#: ../../enterprise/operation/services/services.service.php:37 +#: ../../enterprise/operation/services/services.service_map.php:44 +#: ../../include/ajax/update_manager.ajax.php:751 +msgid "Not found" +msgstr "No encontrado" + +#: ../../enterprise/godmode/services/services.service.php:234 +msgid "New Service" +msgstr "Nuevo servicio" + +#: ../../enterprise/godmode/services/services.service.php:288 +#: ../../enterprise/godmode/services/services.elements.php:117 +#: ../../enterprise/operation/services/services.service.php:62 +#: ../../enterprise/operation/services/services.service_map.php:70 +#: ../../enterprise/operation/services/services.treeview_services.php:46 +#: ../../enterprise/operation/services/services.list.php:46 +#: ../../enterprise/operation/services/services.table_services.php:43 +msgid "Services list" +msgstr "Lista de servicios" + +#: ../../enterprise/godmode/services/services.service.php:296 +#: ../../enterprise/godmode/services/services.elements.php:127 +#: ../../enterprise/operation/services/services.service.php:72 +#: ../../enterprise/operation/services/services.service_map.php:80 +msgid "Services tree view" +msgstr "Vista de árbol de servicios" + +#: ../../enterprise/godmode/services/services.service.php:304 +#: ../../enterprise/godmode/services/services.elements.php:137 +#: ../../enterprise/operation/services/services.service.php:82 +#: ../../enterprise/operation/services/services.service_map.php:90 +msgid "Services table view" +msgstr "Visor de la tabla de servicios" + +#: ../../enterprise/godmode/services/services.service.php:312 +#: ../../enterprise/godmode/services/services.elements.php:146 +#: ../../enterprise/operation/services/services.service.php:91 +#: ../../enterprise/operation/services/services.service_map.php:102 +msgid "Config Service" +msgstr "Configurar servicios" + +#: ../../enterprise/godmode/services/services.service.php:320 +#: ../../enterprise/godmode/services/services.elements.php:154 +#: ../../enterprise/operation/services/services.service.php:95 +#: ../../enterprise/operation/services/services.service_map.php:110 +msgid "Config Elements" +msgstr "Configurar elementos" + +#: ../../enterprise/godmode/services/services.service.php:328 +#: ../../enterprise/godmode/services/services.elements.php:164 +#: ../../enterprise/operation/services/services.service.php:103 +#: ../../enterprise/operation/services/services.service_map.php:122 +msgid "View Service" +msgstr "Ver servicio" + +#: ../../enterprise/godmode/services/services.service.php:336 +#: ../../enterprise/godmode/services/services.elements.php:173 +#: ../../enterprise/operation/services/services.service.php:108 +#: ../../enterprise/operation/services/services.service_map.php:131 +#: ../../include/lib/Dashboard/Widgets/service_map.php:378 +msgid "Service map" +msgstr "Mapa del servicio" + +#: ../../enterprise/godmode/services/services.service.php:375 +msgid "No Services or concrete action" +msgstr "Sin servicios o acción concreta" + +#: ../../enterprise/godmode/services/services.service.php:379 +msgid "General Data" +msgstr "Datos generales" + +#: ../../enterprise/godmode/services/services.service.php:400 +#: ../../enterprise/operation/services/services.list.php:236 +#: ../../enterprise/operation/services/services.table_services.php:215 +msgid "Simple" +msgstr "Simple" + +#: ../../enterprise/godmode/services/services.service.php:403 +#: ../../enterprise/godmode/services/services.elements.php:81 +msgid "" +"This values are by default because the service is auto calculate mode." +msgstr "" +"Estos valores son valores por defecto porque el servicio está en modo " +"cálculo automático." + +#: ../../enterprise/godmode/services/services.service.php:419 +msgid "Agent to store data" +msgstr "Agentes para almacenar datos" + +#: ../../enterprise/godmode/services/services.service.php:437 +msgid "Cascade Protection" +msgstr "Protección en cascada" + +#: ../../enterprise/godmode/services/services.service.php:448 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 +#: ../../enterprise/include/functions_reporting_csv.php:1282 +#: ../../include/functions_reports.php:684 +#: ../../include/functions_reporting.php:871 +msgid "S.L.A." +msgstr "SLA" + +#: ../../enterprise/godmode/services/services.service.php:452 +msgid "Calculate continuous SLA for this service" +msgstr "Calcular SLA continuo para este servicio" + +#: ../../enterprise/godmode/services/services.service.php:455 +msgid "S.L.A. interval" +msgstr "Intervalo SLA" + +#: ../../enterprise/godmode/services/services.service.php:466 +msgid "S.L.A. limit" +msgstr "Límite SLA" + +#: ../../enterprise/godmode/services/services.service.php:467 +msgid "Please set limit between 0 to 100." +msgstr "Por favor, introduce un límite de 0 a 100." + +#: ../../enterprise/godmode/services/services.service.php:481 +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:498 +msgid "Warning Service alert" +msgstr "Alerta de advertencia del servicio" + +#: ../../enterprise/godmode/services/services.service.php:519 +msgid "Critical Service alert" +msgstr "Alerta crítica del servicio" + +#: ../../enterprise/godmode/services/services.service.php:538 +msgid "SLA critical service alert" +msgstr "Alerta crítica del servicio SLA" + +#: ../../enterprise/godmode/services/services.service.php:647 +msgid "" +"This change in the service configuration will delete the history of the " +"service modules. Do you wish to continue?" +msgstr "" +"Este cambio en la configuración del servicio borrará el historial de módulos " +"de servicio. ¿Desea contiinuar?" + +#: ../../enterprise/godmode/services/services.service.php:649 +msgid "" +"This change in the service configuration will prevent the SLA modules from " +"being created. Do you wish to continue?" +msgstr "" +"Este cambio en la configuración del servicio impedirá que se creen módulos " +"SLA. ¿Desea continuar?" + +#: ../../enterprise/godmode/services/services.elements.php:95 +msgid "Invalid service" +msgstr "Servicio no válido" + +#: ../../enterprise/godmode/services/services.elements.php:196 +#: ../../enterprise/include/functions_services.php:2748 +msgid "Edit service elements" +msgstr "Editar elementos del servicio" + +#: ../../enterprise/godmode/services/services.elements.php:211 +msgid "Error empty module" +msgstr "Error al vaciar los módulos" + +#: ../../enterprise/godmode/services/services.elements.php:222 +msgid "Error empty agent" +msgstr "Error al vaciar el agente" + +#: ../../enterprise/godmode/services/services.elements.php:233 +msgid "Error empty service" +msgstr "Error al vaciar el servicio" + +#: ../../enterprise/godmode/services/services.elements.php:241 +msgid "Error unknown type" +msgstr "Tipo de error desconocido" + +#: ../../enterprise/godmode/services/services.elements.php:266 +msgid "Service element created successfully" +msgstr "Elemento de servicio creado correctamente" + +#: ../../enterprise/godmode/services/services.elements.php:267 +msgid "Error creating service element" +msgstr "Error al crear el elemento de servicio" + +#: ../../enterprise/godmode/services/services.elements.php:438 +msgid "Service element updated successfully" +msgstr "Elemento de servicio actualizado correctamente" + +#: ../../enterprise/godmode/services/services.elements.php:439 +msgid "Error updating service element" +msgstr "Error al actualizar el elemento de sevicio" + +#: ../../enterprise/godmode/services/services.elements.php:552 +msgid "Service element deleted successfully" +msgstr "Elemento de servicio eliminado correctamente" + +#: ../../enterprise/godmode/services/services.elements.php:553 +msgid "Error deleting service element" +msgstr "Error al eliminar el elemento de servicio" + +#: ../../enterprise/godmode/services/services.elements.php:609 +msgid "Edit element service" +msgstr "Editar elemento de servicio" + +#: ../../enterprise/godmode/services/services.elements.php:653 +msgid "Create element service" +msgstr "Crear elemento de sevicio" + +#: ../../enterprise/godmode/services/services.elements.php:722 +msgid "First select an agent" +msgstr "Primero, selecciona un agente" + +#: ../../enterprise/godmode/services/services.elements.php:743 +msgid "Unknown weight" +msgstr "Peso desconocido" + +#: ../../enterprise/godmode/services/services.elements.php:747 +msgid "Ok weight" +msgstr "Peso OK" + +#: ../../enterprise/godmode/services/services.elements.php:753 +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/setup/setup_history.php:42 +#: ../../include/functions_config.php:1410 +msgid "Enable history database" +msgstr "Activar base de datos de histórico" + +#: ../../enterprise/godmode/setup/setup_history.php:45 +msgid "Enable event history" +msgstr "Activar histórico de eventos" + +#: ../../enterprise/godmode/setup/setup_history.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_config.php:1418 +msgid "Host" +msgstr "Host" + +#: ../../enterprise/godmode/setup/setup_history.php:57 +#: ../../include/functions_config.php:1430 +msgid "Database user" +msgstr "Usuario de la base de datos" + +#: ../../enterprise/godmode/setup/setup_history.php:60 +#: ../../include/functions_config.php:1434 +msgid "Database password" +msgstr "Contraseña de la base de datos" + +#: ../../enterprise/godmode/setup/setup_history.php:69 +#: ../../include/functions_config.php:1466 +msgid "Delay" +msgstr "Retraso" + +#: ../../enterprise/godmode/setup/setup_history.php:72 +msgid "Event days" +msgstr "Días de eventos" + +#: ../../enterprise/godmode/setup/setup.php:47 +#: ../../include/functions_config.php:374 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "Reenviar los traps SNMP al agente (si existe)" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "Sí y cambiar estado" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "Sí, sin cambiar estado" + +#: ../../enterprise/godmode/setup/setup.php:77 +#: ../../include/functions_config.php:378 +msgid "Use Enterprise ACL System" +msgstr "Utilizar el sistema ACL Enterprise" + +#: ../../enterprise/godmode/setup/setup.php:116 +#: ../../include/functions_config.php:395 +msgid "Replication interval" +msgstr "Intervalo de replicación" + +#: ../../enterprise/godmode/setup/setup.php:124 +msgid "Seconds" +msgstr "Segundos" + +#: ../../enterprise/godmode/setup/setup.php:130 +#: ../../include/functions_config.php:399 +msgid "Replication limit" +msgstr "Límite de replicación" + +#: ../../enterprise/godmode/setup/setup.php:144 +msgid "Last replication at" +msgstr "Última replicación a" + +#: ../../enterprise/godmode/setup/setup.php:146 +msgid "No replication yet" +msgstr "Sin replicación todavía" + +#: ../../enterprise/godmode/setup/setup.php:157 +#: ../../include/functions_config.php:403 +msgid "Replication mode" +msgstr "Modo de replicación" + +#: ../../enterprise/godmode/setup/setup.php:160 +msgid "Only validated events" +msgstr "Solo eventos validados" + +#: ../../enterprise/godmode/setup/setup.php:161 +#: ../../godmode/events/event_edit_filter.php:402 +#: ../../operation/events/events_list.php:969 +#: ../../operation/events/events.php:935 +msgid "All events" +msgstr "Todos los eventos" + +#: ../../enterprise/godmode/setup/setup.php:175 +msgid "Metaconsole DB engine" +msgstr "Motor BD de la Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:178 +#: ../../enterprise/include/class/MySQL.app.php:419 +msgid "MySQL" +msgstr "MySQL" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "Metaconsole DB host" +msgstr "Host BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:207 +msgid "Metaconsole DB name" +msgstr "Nombre BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:221 +msgid "Metaconsole DB user" +msgstr "Usuario BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:235 +msgid "Metaconsole DB password" +msgstr "Contraseña BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:263 +#: ../../include/functions_config.php:407 +msgid "Show events list in local console (read only)" +msgstr "Mostrar lista de eventos en la consola local (solo lectura)" + +#: ../../enterprise/godmode/setup/setup.php:274 +msgid "Events Configuration Information" +msgstr "Información de configuración de evntos" + +#: ../../enterprise/godmode/setup/setup.php:276 +msgid "" +" If you are replicating events, events validated or deleted on the " +"metaconsole WILL NOT be deleted or validated here. This option is just to " +"allow local pandora users to see events, but not to operate with them. " +"Operation, when event replication is enabled, should be done only in " +"metaconsole" +msgstr "" +" Si está replicando eventos, los eventos validados o eliminados en la " +"Metaconsola NO se eliminarán o validarán aquí. Esta opción solo permite a " +"los usuarios locales de Pandora FMS ver los eventos, pero gestionarlos.\r\n" +"Su gestión solo puede llevarse a cabo en la Metaconsola cuando la " +"replicación de eventos está activa." + +#: ../../enterprise/godmode/setup/setup.php:281 +#: ../../include/functions_config.php:465 +msgid "Inventory changes blacklist" +msgstr "Lista negra ante cambios de inventario" + +#: ../../enterprise/godmode/setup/setup.php:344 +msgid "Out of black list" +msgstr "Fuera de la lista negra" + +#: ../../enterprise/godmode/setup/setup.php:346 +msgid "In black list" +msgstr "En la lista negra" + +#: ../../enterprise/godmode/setup/setup.php:351 +msgid "Push selected modules into blacklist" +msgstr "Mover los módulos seleccionados a la lista negra" + +#: ../../enterprise/godmode/setup/setup.php:353 +msgid "Pop selected modules out of blacklist" +msgstr "Sacar los módulos seleccionados de la lista negra" + +#: ../../enterprise/godmode/setup/setup.php:365 +#: ../../include/functions_config.php:440 +msgid "Activate Log Collector" +msgstr "Activar el colector de logs" + +#: ../../enterprise/godmode/setup/setup.php:389 +msgid "Disable newsletter" +msgstr "Deshabilitar newsletter" + +#: ../../enterprise/godmode/setup/setup.php:401 +msgid "Critical threshold for occupied addresses" +msgstr "Umbral crítico para las direcciones ocupadas" + +#: ../../enterprise/godmode/setup/setup.php:413 +msgid "Warning threshold for occupied addresses" +msgstr "Umbral de advertencia para las direcciones ocupadas" + +#: ../../enterprise/godmode/setup/setup.php:426 +#: ../../include/functions_config.php:460 +msgid "SAP/R3 Plugin Licence" +msgstr "Licencia plugin SAP/R3" + +#: ../../enterprise/godmode/setup/setup.php:442 +msgid "Enterprise options" +msgstr "Opciones Enterprise" + +#: ../../enterprise/godmode/setup/setup.php:601 +msgid "Enterprise password policy" +msgstr "Política de contraseña Enterprise" + +#: ../../enterprise/godmode/setup/setup_skins.php:35 +#: ../../enterprise/godmode/setup/edit_skin.php:41 +msgid "Skins configuration" +msgstr "Configuración de apariencia" + +#: ../../enterprise/godmode/setup/setup_skins.php:74 +msgid "Error deleting skin" +msgstr "Error al borrar la apariencia" + +#: ../../enterprise/godmode/setup/setup_skins.php:76 +msgid "Successfully deleted skin" +msgstr "Apariencia eliminada correctamente" + +#: ../../enterprise/godmode/setup/setup_skins.php:119 +msgid "Skin name" +msgstr "Nombre de la apariencia" + +#: ../../enterprise/godmode/setup/setup_skins.php:120 +#: ../../enterprise/godmode/setup/edit_skin.php:238 +msgid "Relative path" +msgstr "Ruta relativa" + +#: ../../enterprise/godmode/setup/setup_skins.php:147 +msgid "There are no defined skins" +msgstr "No hay apariencia definida" + +#: ../../enterprise/godmode/setup/setup_skins.php:153 +msgid "Create skin" +msgstr "Crear apariencia" + +#: ../../enterprise/godmode/setup/setup_module_library.php:64 +#: ../../enterprise/godmode/wizards/Cloud.class.php:353 +#: ../../godmode/module_library/module_library_view.php:145 +msgid "Invalid username or password" +msgstr "Usuario o contraseña no válidos" + +#: ../../enterprise/godmode/setup/setup_module_library.php:65 +#: ../../godmode/module_library/module_library_view.php:144 +msgid "Problem with authentication. Check your internet connection" +msgstr "Problema de autenticación. Compruebe su conexión a Internet." + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:28 +msgid "Metaconsole setup" +msgstr "Configuración de la Metaconsola" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 +msgid "Pandora FMS Metaconsole item edition" +msgstr "Edición de elementos de la Metaconsola de Pandora FMS" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "" +"Token previously configured on the destination Pandora console in order to " +"use delegated authentification." +msgstr "" +"Token configurado anteriormente en la consola de destino de Pandora FMS con " +"el fin de utilizar la autentificación delegada." + +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 +msgid "ElasticSearch IP" +msgstr "IP de ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 +msgid "IP of ElasticSearch server" +msgstr "IP del servidor ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 +msgid "ElasticSearch Port" +msgstr "Puerto ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 +msgid "Port of ElasticSearch server" +msgstr "Puerto del servidor ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:42 +#: ../../include/functions_config.php:1400 +msgid "Number of logs viewed" +msgstr "Número de logs vistos" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../include/functions_config.php:1404 +msgid "Days to purge old information" +msgstr "Días para purgar información antigua" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:46 +msgid "ElasticSearch Status" +msgstr "Estado de ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_auth.php:31 +msgid "Active directory" +msgstr "Directorio activo" + +#: ../../enterprise/godmode/setup/setup_auth.php:32 +msgid "SAML" +msgstr "SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:84 +msgid "Force automatically create profile user" +msgstr "Forzar creación automática de perfil de usuario" + +#: ../../enterprise/godmode/setup/setup_auth.php:89 +msgid "Local command" +msgstr "Comando local" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "PHP function" +msgstr "Función PHP" + +#: ../../enterprise/godmode/setup/setup_auth.php:96 +#: ../../enterprise/include/functions_tasklist.php:224 +#: ../../enterprise/include/functions_tasklist.php:281 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:196 +#: ../../include/functions_cron.php:508 ../../include/functions_cron.php:560 +#: ../../include/functions_update_manager.php:744 +#: ../../operation/search_users.php:36 +msgid "Email" +msgstr "Correo electrónico" + +#: ../../enterprise/godmode/setup/setup_auth.php:167 +#: ../../enterprise/godmode/setup/setup_auth.php:439 +#: ../../enterprise/godmode/setup/setup_auth.php:1169 +msgid "Profiles selected" +msgstr "Perfiles seleccionados" + +#: ../../enterprise/godmode/setup/setup_auth.php:168 +#: ../../enterprise/godmode/setup/setup_auth.php:440 +#: ../../enterprise/godmode/setup/setup_auth.php:1170 +msgid "Groups selected" +msgstr "Grupos seleccionados" + +#: ../../enterprise/godmode/setup/setup_auth.php:170 +#: ../../enterprise/godmode/setup/setup_auth.php:227 +#: ../../include/functions_profile.php:215 +msgid "No hierarchy" +msgstr "No hay jerarquía" + +#: ../../enterprise/godmode/setup/setup_auth.php:171 +#: ../../enterprise/godmode/setup/setup_auth.php:228 +msgid "LDAP Attributes" +msgstr "Atributos LDAP" + +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:443 +#: ../../enterprise/godmode/setup/setup_auth.php:495 +#: ../../enterprise/godmode/setup/setup_auth.php:1173 +#: ../../enterprise/godmode/setup/setup_auth.php:1227 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "OP" + +#: ../../enterprise/godmode/setup/setup_auth.php:237 +#: ../../enterprise/godmode/setup/setup_auth.php:502 +#: ../../enterprise/godmode/setup/setup_auth.php:1234 +msgid "Select profile" +msgstr "Seleccionar perfil" + +#: ../../enterprise/godmode/setup/setup_auth.php:281 +#: ../../enterprise/godmode/setup/setup_auth.php:539 +#: ../../enterprise/godmode/setup/setup_auth.php:1276 +msgid "Add new permissions" +msgstr "Agregar nuevos permisos" + +#: ../../enterprise/godmode/setup/setup_auth.php:371 +#: ../../enterprise/godmode/setup/setup_auth.php:1101 +msgid "New users will be able to log in to the nodes." +msgstr "Los usuarios nuevos podrán conectarse en los nodos." + +#: ../../enterprise/godmode/setup/setup_auth.php:442 +#: ../../enterprise/godmode/setup/setup_auth.php:494 +#: ../../enterprise/godmode/setup/setup_auth.php:1172 +#: ../../enterprise/godmode/setup/setup_auth.php:1226 +msgid "AD Groups" +msgstr "Grupos AD" + +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:795 +msgid "You must select a profile from the list of profiles." +msgstr "Selecciona un perfil de la lista de perfiles" + +#: ../../enterprise/godmode/setup/setup_auth.php:699 +#: ../../enterprise/godmode/setup/setup_auth.php:800 +msgid "You must select a group from the list of groups." +msgstr "Seleccione un grupo de la lista de grupos" + +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../include/functions_config.php:641 +msgid "MySQL host" +msgstr "Dirección de MySQL" + +#: ../../enterprise/godmode/setup/setup_auth.php:1019 +msgid "SimpleSAML path" +msgstr "Ruta de SimpleSAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1023 +msgid "SAML source" +msgstr "SAML de origen" + +#: ../../enterprise/godmode/setup/setup_auth.php:1028 +msgid "SAML user id attribute" +msgstr "Atribito de ID de usuario SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1033 +msgid "SAML mail attribute" +msgstr "Atributo de correo SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1038 +msgid "SAML group name attribute" +msgstr "Atributo de nombre de grupo SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1043 +msgid "Simple attribute / Multivalue attribute" +msgstr "Atributo simple/atributo con valores múltiples" + +#: ../../enterprise/godmode/setup/setup_auth.php:1048 +msgid "SAML profiles and tag attribute" +msgstr "Atributo de perfiles y etiquetas SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1053 +msgid "Profile attribute" +msgstr "Atributo de perfil" + +#: ../../enterprise/godmode/setup/setup_auth.php:1058 +msgid "Tag attribute" +msgstr "Atributo de etiqueta" + +#: ../../enterprise/godmode/setup/setup_auth.php:1063 +msgid "SAML profile and tags prefix" +msgstr "Prefijo de perfiles y etiquetas SAML" + +#: ../../enterprise/godmode/setup/setup_acl.php:43 +msgid "Enterprise ACL setup" +msgstr "Configuración ACL Enterprise" + +#: ../../enterprise/godmode/setup/setup_acl.php:295 +msgid "This record already exists in the database" +msgstr "Este registro ya existe en la base de datos." + +#: ../../enterprise/godmode/setup/setup_acl.php:339 +#: ../../enterprise/godmode/setup/setup_acl.php:414 +msgid "Add new ACL element to profile" +msgstr "Añadir nuevo elemento ACL al perfil" + +#: ../../enterprise/godmode/setup/setup_acl.php:344 +#: ../../enterprise/godmode/setup/setup_acl.php:459 +msgid "Section" +msgstr "Sección" + +#: ../../enterprise/godmode/setup/setup_acl.php:351 +#: ../../enterprise/godmode/setup/setup_acl.php:561 +msgid "Mobile" +msgstr "Móvil" + +#: ../../enterprise/godmode/setup/setup_acl.php:355 +#: ../../enterprise/godmode/setup/setup_acl.php:557 +msgid "Head search" +msgstr "Búsqueda de encabezado" + +#: ../../enterprise/godmode/setup/setup_acl.php:372 +#: ../../enterprise/godmode/setup/setup_acl.php:460 +msgid "Section 2" +msgstr "Sección 2" + +#: ../../enterprise/godmode/setup/setup_acl.php:389 +#: ../../enterprise/godmode/setup/setup_acl.php:461 +msgid "Section 3" +msgstr "Sección 3" + +#: ../../enterprise/godmode/setup/setup_acl.php:413 +msgid "Hidden" +msgstr "Oculto" + +#: ../../enterprise/godmode/setup/setup_acl.php:419 +msgid "Page" +msgstr "Página" + +#: ../../enterprise/godmode/setup/setup_acl.php:438 +msgid "Filter by profile" +msgstr "Filtrar por perfil" + +#: ../../enterprise/godmode/setup/setup_acl.php:458 +#: ../../godmode/users/configure_profile.php:217 +#: ../../godmode/massive/massive_delete_profiles.php:108 +#: ../../godmode/massive/massive_add_profiles.php:101 +#: ../../include/functions_profile.php:212 +#: ../../operation/users/user_edit.php:748 +msgid "Profile name" +msgstr "Nombre del perfil" + +#: ../../enterprise/godmode/setup/setup_acl.php:616 +#: ../../enterprise/godmode/setup/setup_acl.php:626 +#: ../../include/functions_graph.php:2924 +#: ../../include/functions_graph.php:2956 +msgid "Invalid" +msgstr "No válido" + +#: ../../enterprise/godmode/setup/setup_acl.php:658 +#: ../../enterprise/godmode/reporting/visual_console_template.php:229 +#: ../../enterprise/operation/agentes/wux_console_view.php:591 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2833 +msgid "No data to show" +msgstr "No hay datos que mostrar" + +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Successfully updated skin" +msgstr "Apariencia actualizada correctamente" + +#: ../../enterprise/godmode/setup/edit_skin.php:46 +#: ../../enterprise/godmode/setup/edit_skin.php:64 +msgid "Error updating skin" +msgstr "Error al actualizar la apariencia" + +#: ../../enterprise/godmode/setup/edit_skin.php:194 +msgid "Error creating skin" +msgstr "Error al crear la apariencia" + +#: ../../enterprise/godmode/setup/edit_skin.php:198 +msgid "Successfully created skin" +msgstr "Apariencia creada correctamente" + +#: ../../enterprise/godmode/setup/edit_skin.php:239 +msgid "" +"Zip file with skin subdirectory. The name of the zip file only can have " +"alphanumeric characters." +msgstr "" +"Archivo zip con subdirectorio apariencia. El nombre del archivo zip solo " +"puede tener caracteres alfanuméricos." + +#: ../../enterprise/godmode/setup/edit_skin.php:264 +msgid "Group/s" +msgstr "Grupo(s)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:140 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 +msgid "Cleanup sucessfully" +msgstr "Limpieza correcta" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:143 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 +msgid "Cleanup error" +msgstr "Error al borrar contenido" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:188 +msgid "No item could be applied to report." +msgstr "No se ha podido aplicar ningún elemento al informe." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:126 +msgid "Sucessfully applied" +msgstr "Aplicado correctamente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +msgid "reports" +msgstr "Informes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +msgid "items" +msgstr "elementos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:128 +msgid "Could not be applied" +msgstr "No se pudo aplicar." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 +#: ../../godmode/massive/massive_operations.php:283 +msgid "" +"In order to perform massive operations, PHP needs a correct configuration in " +"timeout parameters. Please, open your PHP configuration file (php.ini) for " +"example: sudo vi /etc/php5/apache2/php.ini;
And set your timeout " +"parameters to a correct value:
max_execution_time = 0 and " +"max_input_time = -1" +msgstr "" +"Para poder realizar operaciones masivas, PHP necesitas una configuración " +"correcta de los parámetros de tiempo de espera. Por favor, abre el archivo " +"de configuración PHP (php.ini), por ejemplo: sudo vi " +"/etc/php5/apache2/php.ini;
y fija los parámetros del tiempo de espera " +"en un valor correcto:
max_execution_time = 0 y max_input_time " +"= -1" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:214 +msgid "Create template report wizard" +msgstr "Asistente de creación de plantillas de informes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:259 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:149 +msgid "Clean up template" +msgstr "Vaciar la plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 +msgid "Create report per agent" +msgstr "Crear informe por agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 +#: ../../enterprise/include/functions_cron.php:223 +#: ../../enterprise/include/functions_tasklist.php:280 +#: ../../enterprise/include/functions_reporting_csv.php:2004 +#: ../../enterprise/include/functions_reporting_csv.php:2008 +#: ../../godmode/reporting/reporting_builder.php:791 +#: ../../include/functions_cron.php:559 ../../operation/search_reports.php:34 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "Nombre del informe" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 +msgid "" +"Left in blank if you want to use default name: Template name - agents (num " +"agents) - Date" +msgstr "" +"Déjalo en blanco si quieres usar el nombre por defecto: Nombre plantilla - " +"agentes (num agentes) - Fecha" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:281 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:206 +msgid "Target group" +msgstr "Grupo objetivo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:321 +msgid "Filter by" +msgstr "Filtrar por" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:396 +msgid "Filter tag" +msgstr "Filtro por etiqueta" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:410 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:420 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:142 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:147 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:653 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:655 +#: ../../include/functions_snmp_browser.php:1187 +#: ../../include/functions_snmp_browser.php:1189 +msgid "Select all" +msgstr "Seleccionar todo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:413 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:251 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:653 +msgid "Agents available" +msgstr "Agentes disponibles" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:423 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:160 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:655 +msgid "Agents to apply" +msgstr "Agentes para aplicar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:445 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:274 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 +msgid "Add agents to template" +msgstr "Añadir agentes a la plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:449 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:276 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:215 +msgid "Undo agents to template" +msgstr "Deshacer añadir agentes a la plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:467 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:294 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:233 +msgid "Apply template" +msgstr "Aplicar plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:601 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +msgid "Please set template distinct than " +msgstr "Por favor, introduce una plantilla distinta a " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:605 +msgid "Please set agent distinct than " +msgstr "Por favor, escoge un agente distinto a " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:626 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:422 +msgid "" +"This will be delete all reports created in previous template applications. " +"Do you want to continue?" +msgstr "" +"Esta acción eliminará todos los informes creados en aplicaciones anteriores " +"de plantillas. ¿Quieres continuar?" + +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "Instancia" + +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:713 +msgid "CPU" +msgstr "CPU" + +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "Lectura IO" + +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "Escritura IO" + +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "Lectura de disco" + +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "Escritura en disco" + +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "Entrada de red" + +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "Salida de red" + +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:133 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "Vista AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:128 +msgid "Failed to retrieve AWS information using selected account." +msgstr "" +"No se ha podido obtener información de AWS a través de la cuenta " +"seleccionada." + +#: ../../enterprise/godmode/reporting/aws_view.php:141 +msgid "AWS credentials not validated." +msgstr "No se han validado los credenciales de AWS." + +#: ../../enterprise/godmode/reporting/aws_view.php:145 +msgid "Discovery Cloud: AWS" +msgstr "Discovery Cloud: AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:150 +msgid "Please, select an account: " +msgstr "Seleccione una cuenta: " + +#: ../../enterprise/godmode/reporting/aws_view.php:159 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "CREAR TAREA DE DISCOVERY DE MONITORIZACIÓN EN LA NUBE" + +#: ../../enterprise/godmode/reporting/aws_view.php:162 +msgid "" +"Within this view you will find information collected using Discovery Cloud " +"AWS task. You will be able to see the most relevant information about your " +"infrastructure, such as the current cost of your contracted services, the " +"number of instances per region or resource usage metrics. In order to " +"collect this information you must create a Cloud Monitoring Discovery task." +msgstr "" +"En esta vista encontrará la información recogida mediante la tarea de " +"Discovery Cloud AWS. Podrá ver la información más relevante sobre su " +"infraestructura, como el coste actual de los servicios contratados, el " +"número de instancias por región o las métricas de uso de los recursos. Para " +"recoger esta información, cree una tarea de Cloud Monitoring Discovery." + +#: ../../enterprise/godmode/reporting/aws_view.php:165 +msgid "Press the create button to begin." +msgstr "Pinche en el botón \"crear\" para comenzar." + +#: ../../enterprise/godmode/reporting/aws_view.php:194 +msgid "Instance table" +msgstr "Tabla de instancias" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:170 +msgid "Visual console name" +msgstr "Nombre de la consola visual" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:170 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use " +"default name: Template name - agent alias" +msgstr "" +"Puede usar macro _agentalias_ aquí. En caso de estar vacío, use el nombre " +"por defecto: Nombre de plantilla - alias de agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 +#: ../../enterprise/godmode/reporting/mysql_builder.php:173 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:205 ../../godmode/setup/gis_step_2.php:346 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:217 +#: ../../godmode/reporting/reporting_builder.main.php:34 +#: ../../operation/agentes/graphs.php:335 +msgid "Save" +msgstr "Guardar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:153 +msgid "Edit template" +msgstr "Editar plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:722 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* " +"will match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" +"Expresión regular que no distingue mayúsculas ni minúsculas para el alias de " +"agente. Por ejemplo: Network.* coincidirá con los siguientes alias de " +"agente: network_agent1, NetworK CHECKS" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:32 +#: ../../enterprise/godmode/reporting/graph_template_list.php:44 +#: ../../enterprise/godmode/reporting/graph_template_list.php:55 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:90 +#: ../../godmode/reporting/graph_builder.php:249 +#: ../../godmode/reporting/graph_container.php:55 +#: ../../godmode/reporting/graphs.php:45 ../../godmode/reporting/graphs.php:56 +#: ../../operation/reporting/graph_viewer.php:152 +msgid "Graph list" +msgstr "Lista de la gráfica" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:75 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:100 +#: ../../godmode/reporting/create_container.php:176 +#: ../../godmode/reporting/graph_container.php:72 +#: ../../godmode/reporting/graph_container.php:75 +msgid "Graph container" +msgstr "Contenedor de gráfica" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:79 +msgid "Graph template management" +msgstr "Gestión de plantillas gráficas" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:146 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:372 +#: ../../godmode/alerts/alert_list.list.php:55 +msgid "Template name" +msgstr "Nombre de la plantilla" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:195 +msgid "There are no defined graph templates" +msgstr "No hay plantillas gráficas definidas" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:137 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 +#: ../../enterprise/godmode/reporting/visual_console_template.php:182 +msgid "Create template" +msgstr "Crear plantilla" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:43 +msgid "Not created. Blank name" +msgstr "No creado. Nombre vacío." + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:78 +#: ../../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:123 +#: ../../godmode/modules/manage_nc_groups.php:93 +#: ../../godmode/netflow/nf_edit_form.php:118 +#: ../../godmode/events/event_edit_filter.php:181 +msgid "Not updated. Blank name" +msgstr "No actualizado; nombre en blanco" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:141 +msgid "Template updated successfully" +msgstr "Plantilla actualizada correctamente" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:142 +#: ../../include/class/ModuleTemplates.class.php:350 +msgid "Error updating template" +msgstr "Error al actualizar la plantilla" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:176 +#: ../../godmode/setup/gis_step_2.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 +#: ../../godmode/events/event_responses.editor.php:121 +#: ../../include/functions_visual_map_editor.php:98 +#: ../../include/functions_visual_map_editor.php:600 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:469 +msgid "Width" +msgstr "Anchura" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:180 +#: ../../godmode/setup/gis_step_2.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:123 +#: ../../include/functions_visual_map_editor.php:605 +msgid "Height" +msgstr "Altura" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../godmode/setup/performance.php:552 +#: ../../godmode/reporting/create_container.php:314 +#: ../../include/functions.php:2540 ../../include/functions.php:3201 +#: ../../include/ajax/module.php:165 ../../include/ajax/graph.ajax.php:140 +#: ../../operation/gis_maps/render_view.php:143 +msgid "1 hour" +msgstr "1 hora" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 +#: ../../operation/gis_maps/render_view.php:144 +msgid "2 hours" +msgstr "2 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 +msgid "3 hours" +msgstr "3 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 +#: ../../include/ajax/module.php:166 +msgid "6 hours" +msgstr "6 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 +#: ../../godmode/setup/performance.php:553 ../../include/ajax/module.php:167 +msgid "12 hours" +msgstr "12 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 +#: ../../godmode/reporting/create_container.php:318 +#: ../../include/functions.php:2543 ../../include/ajax/module.php:168 +#: ../../include/ajax/graph.ajax.php:144 +msgid "1 day" +msgstr "1 día" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../godmode/setup/performance.php:555 +msgid "2 days" +msgstr "2 días" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 +msgid "4 days" +msgstr "4 días" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 +#: ../../godmode/setup/performance.php:557 +msgid "Last week" +msgstr "Última semana" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 +#: ../../godmode/reporting/create_container.php:322 +#: ../../include/functions.php:2545 ../../include/ajax/module.php:170 +#: ../../include/ajax/graph.ajax.php:148 +msgid "15 days" +msgstr "15 días" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:195 +#: ../../godmode/setup/performance.php:559 +msgid "Last month" +msgstr "Último mes" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +msgid "2 months" +msgstr "2 meses" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:197 +#: ../../include/ajax/module.php:173 +msgid "6 months" +msgstr "6 meses" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 +#: ../../include/functions.php:2549 ../../include/ajax/module.php:174 +msgid "1 year" +msgstr "1 año" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1605 +#: ../../enterprise/include/functions_reporting_csv.php:455 +#: ../../enterprise/include/functions_reporting_csv.php:458 +#: ../../enterprise/include/functions_reporting_csv.php:738 +#: ../../enterprise/include/functions_reporting_csv.php:769 +#: ../../enterprise/include/functions_reporting_csv.php:801 +#: ../../enterprise/include/functions_reporting_csv.php:861 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1296 +#: ../../enterprise/include/functions_reporting_csv.php:1682 +#: ../../godmode/agentes/module_manager_editor_prediction.php:159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1045 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:262 +#: ../../godmode/reporting/graph_builder.main.php:141 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:623 +msgid "Period" +msgstr "Período" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:207 +msgid "Stacked" +msgstr "Apilado" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:214 +#: ../../godmode/reporting/graph_builder.main.php:152 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:262 +#: ../../operation/reporting/graph_viewer.php:266 +msgid "Stacked area" +msgstr "Área apilada" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:216 +#: ../../godmode/reporting/graph_builder.main.php:154 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:264 +#: ../../operation/reporting/graph_viewer.php:268 +msgid "Stacked line" +msgstr "Línea apilada" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:791 +msgid "Top n" +msgstr "Top N" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../include/functions_reports.php:770 +#: ../../include/functions_reporting.php:2376 +msgid "Exception" +msgstr "Excepción" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:55 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:55 +msgid "Only table" +msgstr "Solo tabla" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:56 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:56 +msgid "Table & Graph" +msgstr "Tabla y gráfico" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:57 +msgid "Only graph" +msgstr "Solo gráfico" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:42 +msgid "Global" +msgstr "Global" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:205 +msgid "Elements to apply" +msgstr "Elementos para aplicar" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1005 +msgid "Last value" +msgstr "Último valor" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:792 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1584 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1007 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5583 +msgid "" +"Warning: period 0 reports cannot be used to show information back in time. " +"Information contained in this kind of reports will be always reporting the " +"most recent information" +msgstr "" +"Advertencia: los informes en período 0 no pueden mostrar la información " +"pasada. La información contenida en este tipo de informes mostrará siempre " +"la información más reciente." + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +msgid "" +"If you select several agents, only the common modules will be displayed" +msgstr "Si selecciona varios agentes, solo se mostrarán los módulos comunes" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../include/functions_reporting_html.php:3720 +msgid "Sum" +msgstr "Suma" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:387 +#: ../../include/functions_reporting.php:7605 +msgid "Rate" +msgstr "Tasa" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:294 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../godmode/agentes/agent_manager.php:296 +#: ../../godmode/snmpconsole/snmp_alert.php:1448 +#: ../../include/class/ModuleTemplates.class.php:887 +#: ../../operation/events/events.php:1525 +msgid "Delete selected" +msgstr "Borrar seleccionado(s)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:308 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2129 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1942 +msgid "Group by agent" +msgstr "Agrupar por agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2512 +msgid "Show in the same row" +msgstr "Mostrar en la misma fila" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +msgid "Show one module per row with all its operations" +msgstr "Mostrar un módulo por fila con todas sus operaciones" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2165 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2688 +#: ../../enterprise/operation/log/log_viewer.php:369 +#: ../../godmode/netflow/nf_item_list.php:175 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2535 +#: ../../include/lib/Dashboard/Widgets/top_n.php:266 +msgid "Order" +msgstr "Orden" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:378 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:61 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2168 +#: ../../enterprise/operation/log/log_viewer.php:366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:61 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1959 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "Ascendente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:62 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2175 +#: ../../enterprise/operation/log/log_viewer.php:365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:62 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1966 +#: ../../include/lib/Dashboard/Widgets/top_n.php:260 +msgid "Descending" +msgstr "Descendente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:342 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:392 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2182 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1973 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "By agent name" +msgstr "Por nombre de agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:350 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2194 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1985 +#: ../../include/lib/Dashboard/Widgets/top_n.php:248 +msgid "Quantity (n)" +msgstr "Cantidad (n)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:362 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2209 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2015 +#: ../../include/lib/Dashboard/Widgets/top_n.php:285 +#: ../../operation/agentes/ver_agente.php:1310 +msgid "Display" +msgstr "Mostrar" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2093 +msgid "Condition" +msgstr "Condición" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2285 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2097 +#: ../../include/functions_reporting.php:2398 +msgid "Everything" +msgstr "Todo" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2292 +msgid ">=" +msgstr ">=" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:421 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2299 +msgid "<" +msgstr "<" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2313 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 +#: ../../include/functions_reporting_html.php:2531 +msgid "Not OK" +msgstr "Mal" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:433 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2117 +msgid "Show graph" +msgstr "Mostrar gráfico" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:407 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2219 +msgid "Show resume" +msgstr "Mostrar resumen" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2431 +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.global.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:779 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3069 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2764 +msgid "Show item in landscape format (only PDF)" +msgstr "Mostrar elemento en formato apaisado (solo PDF)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:476 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:795 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2773 +msgid "Page break at the end of the item (only PDF)" +msgstr "Salto de página después del elemento (solo PDF)" + +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:103 +msgid "Wizard template" +msgstr "Plantilla de Wizard" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:77 +msgid "Advance Reporting" +msgstr "Informes avanzados" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 +msgid "Page orientation" +msgstr "Orientación de página" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:95 +#: ../../include/functions_visual_map_editor.php:775 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464 +msgid "Vertical" +msgstr "Vertical" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:98 +#: ../../include/functions_visual_map_editor.php:776 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463 +msgid "Horizontal" +msgstr "Horizontal" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1562 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:313 +#: ../../godmode/reporting/reporting_builder.list_items.php:388 +#: ../../godmode/reporting/create_container.php:332 +#: ../../godmode/reporting/create_container.php:441 +#: ../../godmode/reporting/create_container.php:495 +#: ../../godmode/reporting/reporting_builder.item_editor.php:982 +msgid "Time lapse" +msgstr "Intervalo de tiempo" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373 +msgid "Order:" +msgstr "Orden:" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409 +msgid "" +"Show a resume table with max, min, average of total modules on the report " +"bottom:" +msgstr "" +"Muestra una tabla de resumen con el máximo, mínimo y media del total de " +"módulos en la parte inferior del informe:" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:429 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2410 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2199 +msgid "Show address instead module name" +msgstr "Mostrar la dirección en lugar del nombre del módulo" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2411 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 +msgid "Show the main address of agent." +msgstr "Mostrar la dirección principal del agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 +#: ../../godmode/reporting/graphs.php:87 ../../operation/menu.php:343 +msgid "Custom graphs" +msgstr "Gráficos personalizados" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:499 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1842 +#: ../../include/functions_reports.php:785 +msgid "SQL query" +msgstr "Consulta SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2046 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:347 +msgid "Time compare (Overlapped)" +msgstr "Comparación de tiempo (solapado)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2240 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2063 +msgid "Full resolution graph (TIP)" +msgstr "Gráfica a resolución completa (TIP)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:572 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2073 +#: ../../godmode/reporting/graph_builder.main.php:165 +#: ../../include/functions.php:3806 ../../include/functions.php:3814 +msgid "Percentil" +msgstr "Percentil" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:573 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 +msgid "" +"If this option was checked, only adding in elements that type of modules " +"support this option." +msgstr "" +"Si se marca esta casilla, la opción solo es posible si se añaden este tipo " +"de módulos." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:587 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2316 +msgid "Show Summary group" +msgstr "Mostrar el resumen del grupo" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:651 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2594 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +msgid "Event Status" +msgstr "Estado del evento" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:677 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2621 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2429 +#: ../../operation/agentes/tactical.php:223 +msgid "Event graphs" +msgstr "Gráficos de eventos" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:681 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2433 +msgid "By agent" +msgstr "Por agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +msgid "By user validator" +msgstr "Por usuario que validó" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:701 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2453 +msgid "By criticity" +msgstr "Por gravedad" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:711 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2655 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2463 +msgid "Validated vs unvalidated" +msgstr "Validados vs sin validar" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:730 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1643 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1083 +msgid "Data range" +msgstr "Rango de datos" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1064 +msgid "Projection period" +msgstr "Período de proyección" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1864 +msgid "Serialized header" +msgstr "Cabecera serializada" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2033 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1865 +msgid "The separator character is |" +msgstr "El carácter separador es |" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2087 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1900 +msgid "Field separator" +msgstr "Separador de campo" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2088 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1901 +msgid "Separator for different fields in the serialized text chain" +msgstr "Separador para diferentes campos en la cadena de texto serializada" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2108 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1921 +msgid "Line separator" +msgstr "Separador de línea" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2109 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1922 +msgid "" +"Separator in different lines (composed by fields) of the serialized text " +"chain" +msgstr "" +"Separador en diferentes líneas (compuestas por campos) de la cadena de texto " +"serializada" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2748 +msgid "Uncompress module" +msgstr "Descomprimir módulo" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:813 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3054 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2749 +msgid "Use uncompressed module data." +msgstr "Utilizar datos de módulos descomprimidos" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:104 +#: ../../enterprise/include/functions_reporting.php:38 +msgid "Wizard SLA" +msgstr "Wizard SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:128 +#: ../../enterprise/include/functions_reporting.php:2087 +#: ../../include/functions_reports.php:689 +msgid "Monthly S.L.A." +msgstr "SLA mensual" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 +#: ../../enterprise/include/functions_reporting.php:3015 +#: ../../include/functions_reports.php:693 +msgid "Weekly S.L.A." +msgstr "SLA semanal" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 +msgid "hourly S.L.A." +msgstr "SLA por horas" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 +msgid "Availability Graph S.L.A." +msgstr "Gráfico de disponibilidad SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:134 +#: ../../enterprise/include/functions_reporting.php:4864 +#: ../../include/functions_reports.php:703 +msgid "Services S.L.A." +msgstr "SLA de servicios" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +msgid "SLA min value" +msgstr "Valor mínimo de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "Enter possible range of values in SLA." +msgstr "Añada el rango de valores posibles de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:255 +msgid "SLA min Value" +msgstr "Valor mínimo de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +msgid "SLA max value" +msgstr "Valor máximo SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:261 +msgid "SLA max Value" +msgstr "Valor máximo SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "SLA Limit %" +msgstr "Límite % SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:267 +msgid "SLA Limit Value" +msgstr "Valor límite SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:272 +msgid "Dynamic SLA" +msgstr "SLA dinámico" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:279 +msgid "Inverse SLA" +msgstr "SLA inverso" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:288 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2754 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2591 +msgid "Failover mode" +msgstr "Modo conmutación" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2592 +msgid "" +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" +msgstr "" +"El SLA debe calcularse teniendo en cuenta los módulos de conmutación " +"asignados al módulo primario" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 +msgid "Failover type" +msgstr "Tipo de conmutación" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2779 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2616 +msgid "Failover normal" +msgstr "Conmutación normal" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2791 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2628 +msgid "Failover simple" +msgstr "Conmutación simple" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2536 +msgid "SLA items sorted by fulfillment value" +msgstr "Elementos de SLA ordenados por valor rellenado" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1656 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 +msgid "Only display wrong SLAs" +msgstr "Mostrar solo los SLA incorrectos" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:414 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "Añada un valor máx. de SLA mayor que el valor mín. del SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:538 +msgid "Dynamic SLA can not be Inverse" +msgstr "El SLA dinámico no puede ser inverso" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:543 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "Compruebe el SLA dinámico o añada un nuevo valor SLA mín. y máx." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:547 +msgid "SLA Limit value is needed" +msgstr "Se necesita un valor límite de SLA." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:164 +#: ../../enterprise/include/functions_reporting.php:7009 +#: ../../enterprise/include/functions_reporting.php:7065 +#: ../../godmode/reporting/reporting_builder.php:3084 +#: ../../operation/reporting/reporting_viewer.php:99 +msgid "Item editor" +msgstr "Editor de elementos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:133 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:158 +#: ../../godmode/reporting/reporting_builder.php:3080 +#: ../../operation/reporting/reporting_viewer.php:93 +msgid "List items" +msgstr "Listado de elementos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 +msgid "List templates" +msgstr "Lista de plantillas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:376 +#: ../../godmode/reporting/reporting_builder.php:793 +#: ../../operation/search_reports.php:36 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:377 +#: ../../godmode/reporting/reporting_builder.php:794 +#: ../../operation/search_reports.php:37 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:378 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:379 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:380 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:196 +#: ../../operation/agentes/exportdata.php:362 +msgid "CSV" +msgstr "CSV" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:433 +#: ../../godmode/reporting/reporting_builder.php:933 +msgid "HTML view" +msgstr "Vista HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:434 +#: ../../godmode/reporting/reporting_builder.php:940 +msgid "Export to XML" +msgstr "Exportar a XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:435 +#: ../../enterprise/operation/reporting/custom_reporting.php:60 +#: ../../include/class/Diagnostics.class.php:141 +msgid "Export to PDF" +msgstr "Exportar a PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 +#: ../../enterprise/operation/reporting/custom_reporting.php:61 +msgid "Export to JSON" +msgstr "Exportar a JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:482 +msgid "You haven't created templates yet." +msgstr "Aun no has creado ninguna plantilla." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +msgid "Generate a dynamic report" +msgstr "Generar un informe dinámico" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 +msgid "Period " +msgstr "Periodo " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:586 +msgid "Set start and end date" +msgstr "Fije la fecha de inicio y conclusión" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:599 +#: ../../include/ajax/module.php:205 +#: ../../operation/agentes/datos_agente.php:198 +#: ../../operation/events/events_list.php:867 +msgid "Timestamp from:" +msgstr "Marca temporal desde:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:617 +#: ../../include/ajax/module.php:225 +#: ../../operation/agentes/datos_agente.php:204 +#: ../../operation/events/events_list.php:870 +msgid "Timestamp to:" +msgstr "Marca temporal hasta:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:636 +msgid "Monthly SLA period" +msgstr "Periodo SLA mensual" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:636 +msgid "This field only applies in case of Monthly SLA item." +msgstr "Este campo solo aplica en el caso de un elemento de SLA mensual." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:678 +#: ../../enterprise/include/class/Omnishell.class.php:844 +msgid "Add agents" +msgstr "Añadir agentes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:685 +msgid "Undo agents" +msgstr "Anular agentes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:721 +msgid "RegEx agent filter" +msgstr "Filtro de agente RegEx" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:737 +msgid "Generate" +msgstr "Generar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1083 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1105 +msgid "Please set agent or agent regex distinct than " +msgstr "Establezca agente o agente regex diferente a " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1113 +msgid "No agent matches regular expression " +msgstr "Ningún agente coincide con la expresión regular " + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:156 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3380 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3856 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4001 +#: ../../enterprise/operation/log/log_viewer.php:346 +msgid "Exact match" +msgstr "Coincidencia exacta" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Decrease Weight" +msgstr "Reducir el peso" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Increase Weight" +msgstr "Incrementar el peso" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:111 +#: ../../enterprise/godmode/reporting/visual_console_template.php:125 +msgid "visual console has not been selected" +msgstr "no se ha seleccionado consola visual" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:117 +msgid "Error. Error created template" +msgstr "Error. Error al crear la plantilla" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:119 +msgid "Successfully created template" +msgstr "Plantilla creada correctamente" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:131 +msgid "Error. Error delete template" +msgstr "Error. Error al borrar plantilla" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:133 +msgid "Successfully delete template" +msgstr "Plantilla borrada correctamente" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:155 +msgid "Create From" +msgstr "Crear desde" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:158 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "No hay consolas visuales creadas. Cree una primero." + +#: ../../enterprise/godmode/reporting/visual_console_template.php:188 +msgid "Create New Template" +msgstr "Crear nueva plantilla" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:53 +#: ../../enterprise/godmode/reporting/mysql_builder.php:144 +msgid "Custom Mysql template builder" +msgstr "Creador de plantillas personalizadas para MySQL" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:87 +msgid "Create custom SQL" +msgstr "Crear SQL personalizado" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +msgid ": Create new custom" +msgstr "Crear nueva consulta personalizada:" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:115 +msgid "Create new custom" +msgstr "Crear nueva consulta personalizada" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 +msgid "Successfully operation" +msgstr "Operación realizada correctamente" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 +msgid "Could not be operation" +msgstr "La operación no pudo completarse." + +#: ../../enterprise/godmode/reporting/mysql_builder.php:165 +#: ../../enterprise/include/functions_reporting_csv.php:899 +#: ../../include/functions_reporting.php:5134 +msgid "SQL" +msgstr "SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1471 +#: ../../godmode/reporting/reporting_builder.php:3164 +msgid "Successfull action" +msgstr "Acción completada" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1472 +#: ../../godmode/servers/modificar_server.php:115 +#: ../../godmode/servers/modificar_server.php:126 +msgid "Unsuccessfull action" +msgstr "No se pudo completar la acción" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1489 +#: ../../godmode/reporting/reporting_builder.item_editor.php:787 +msgid "Item Editor" +msgstr "Editor de elemento" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1670 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1110 +msgid "Current month" +msgstr "Mes actual" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +msgid "Working time" +msgstr "Tiempo de trabajo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1781 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1795 +msgid "Select server" +msgstr "Seleccionar servidor" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 +msgid "" +"Case insensitive regular expression for agent name. For example: Network.* " +"will match with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" +"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:1904 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3508 +msgid "" +"Case insensitive regular expression or string for module name. For example: " +"if you use this field with \"Module exact match\" enabled then this field " +"has to be fulfilled with the literally string of the module name, if not you " +"can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " +"usage in matchine 1." +msgstr "" +"Expresión regular, no sensible a mayúsculas/minúsculas, para buscar el " +"módulo. Por ejemplo: si usas este campo con \"Coincidencia exacta de " +"módulo\" activado, entonces este campo tiene que rellenarse con la cadena " +"literal del nombre del módulo. Si no, usará una expresión regular, por " +"ejemplo: .*usage.* coincidiría con : cpu_usage, vram usage in machine 1." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 +msgid "Module exact match" +msgstr "Coincidencia exacta de módulo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1927 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3211 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3286 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3433 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +msgid "Check it if you want to match module name literally" +msgstr "" +"Actívala si quieres que haya una coincidencia exacta y literal en el nombre " +"del módulo." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1942 +msgid "Hide items without data" +msgstr "Ocultar elementos sin datos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1943 +msgid "Check it if you want not show items without data" +msgstr "Marcar si no quieres que muestre elementos sin datos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1956 +#: ../../godmode/reporting/create_container.php:448 +#: ../../godmode/reporting/create_container.php:590 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1712 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.elements.php:481 +#: ../../include/functions_visual_map_editor.php:363 +#: ../../include/functions_visual_map_editor.php:366 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:609 +#: ../../include/functions_reports.php:554 +#: ../../include/functions_reports.php:641 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_reporting.php:7680 +msgid "Custom graph" +msgstr "Gráfica personalizada" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +msgid "Query SQL" +msgstr "Consulta SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2003 +msgid "" +"This query should always return a field called label and a field called " +"value. Example: SELECT alias AS label, total_count AS value FROM tagente" +msgstr "" +"Esta consulta siempre debe devolver un campo llamado etiqueta y otro " +"denominado valor. Ejemplo: SELECT alias AS label, total_count AS value FROM " +"tagente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2015 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1852 +msgid "Max items" +msgstr "Número máximo de elementos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2048 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1824 +msgid "Custom SQL template" +msgstr "Plantilla SQL personalizada" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2066 +msgid "SQL preview" +msgstr "Vista previa del SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2071 +#: ../../enterprise/include/functions_reporting_csv.php:2173 +#: ../../enterprise/include/functions_reporting_csv.php:2187 #: ../../extensions/api_checker.php:224 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1884 #: ../../godmode/events/event_responses.editor.php:138 #: ../../godmode/events/event_responses.editor.php:146 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1892 #: ../../operation/gis_maps/ajax.php:316 -#: ../../enterprise/dashboard/widgets/url.php:27 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2069 -#: ../../enterprise/include/functions_reporting_csv.php:2165 -#: ../../enterprise/include/functions_reporting_csv.php:2179 msgid "URL" msgstr "URL" -#: ../../extensions/api_checker.php:226 ../../extensions/api_checker.php:243 -msgid "Show URL" -msgstr "Mostrar URL" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2226 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2032 +#: ../../include/functions_reporting_html.php:3717 +#: ../../include/functions_reporting.php:1397 +msgid "Avg" +msgstr "Media" -#: ../../extensions/api_checker.php:239 -msgid "Hide URL" -msgstr "Ocultar URL" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2339 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2131 +msgid "Select fields to show" +msgstr "Seleccionar campos a mostrar" -#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 -#: ../../godmode/menu.php:388 -msgid "DB Schema check" -msgstr "Comprobación del esquema de la BD" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 +#: ../../enterprise/include/functions_reporting_csv.php:466 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 +#: ../../include/functions_reporting_html.php:3041 +msgid "Total time" +msgstr "Tiempo total" -#: ../../extensions/db_status.php:43 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2355 +#: ../../enterprise/include/functions_reporting_csv.php:470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2147 +#: ../../include/functions_reporting_html.php:3047 +msgid "Time failed" +msgstr "Tiempo en fallo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:474 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2155 +msgid "Time in OK status" +msgstr "Tiempo en estado OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2371 +#: ../../enterprise/include/functions_reporting_csv.php:478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2163 +msgid "Time in unknown status" +msgstr "Tiempo en estado desconocido" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2383 +#: ../../enterprise/include/functions_reporting_csv.php:482 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2175 +msgid "Time of not initialized module" +msgstr "Tiempo de módulo no inicializado" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 +#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2187 +msgid "Time of downtime" +msgstr "Tiempo de parada" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2287 +msgid "

Select fields to show

" +msgstr "

Seleccionar campos a mostrar

" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2457 +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2247 +#: ../../include/functions_reporting_html.php:3126 +msgid "Total checks" +msgstr "Comprobaciones totales" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2465 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2255 +#: ../../include/functions_reporting_html.php:3132 +msgid "Checks failed" +msgstr "Comprobaciones fallidas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2473 +#: ../../enterprise/include/functions_reporting_csv.php:502 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2263 +msgid "Checks in OK status" +msgstr "Comprobaciones en estado OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2485 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2275 +msgid "Unknown checks" +msgstr "Comprobaciones desconocidas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 +#: ../../enterprise/include/functions_reporting_csv.php:614 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2295 +#: ../../include/functions_reporting_html.php:3331 +msgid "Agent max value" +msgstr "Valor máximo del agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2303 +msgid "Agent min values" +msgstr "Valores mínimos de agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2493 +msgid "Height (dynamic graphs)" +msgstr "Altura (gráficos dinámicos)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2709 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2477 +msgid "Query History Database" +msgstr "Base de datos histórica de consultas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 +msgid "Priority mode" +msgstr "Modo de prioridad" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2726 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2563 +msgid "Priority ok mode" +msgstr "Modo de prioridad ok" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2738 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2575 +msgid "Priority unknown mode" +msgstr "Modo de prioridad desconocido" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 +msgid "Modules to match" +msgstr "Módulos a comparar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2809 +msgid "Select the modules to match when create a report for agents" +msgstr "" +"Selecciona los módulos a comparar al crear el informe para cada agente." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2909 +msgid "Modules to match (Free text)" +msgstr "Módulos a comparar (texto libre)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911 +msgid "Free text to filter the modules of agents when apply this template." +msgstr "" +"Texto libre para filtrar los módulos de los agentes cuando se usa esta " +"plantilla." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2928 +msgid "Create a graph for each agent" +msgstr "Crear un gráfico por cada agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2930 msgid "" -"This extension checks the DB is correct. Because sometimes the old DB from a " -"migration has not some fields in the tables or the data is changed." +"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 "" -"Esta extensión comprueba que la DB es correcta, ya que, en ocasiones, la " -"antigua DB de una migración no tiene algunos campos en las tablas o los " -"datos son diferentes." +"Si se activa, la expresión regular o el nombre de módulo hará coincidencia " +"en cada módulo de cada agente, y creará un gráfico que contenga módulos de " +"todos los agentes." -#: ../../extensions/db_status.php:46 -msgid "At the moment the checks is for MySQL/MariaDB." -msgstr "Por el momento, las comprobaciones son para MySQL/MariaDB" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2957 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 +msgid "Calculate for custom intervals" +msgstr "Calcular intervalos personalizados" -#: ../../extensions/db_status.php:52 -msgid "DB settings" -msgstr "Configuración de la BD" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2664 +msgid "Time lapse intervals" +msgstr "Intervalos de tiempo transcurrido" -#: ../../extensions/db_status.php:56 -msgid "DB User with privileges" -msgstr "Usuario de la BD con privilegios" - -#: ../../extensions/db_status.php:58 -msgid "DB Password for this user" -msgstr "Contraseña de la BD para este usuario" - -#: ../../extensions/db_status.php:62 -msgid "DB Hostname" -msgstr "Nombre del host de la base de datos" - -#: ../../extensions/db_status.php:64 -msgid "DB Name (temporal for testing)" -msgstr "Nombre de la BD (temporal, para pruebas)" - -#: ../../extensions/db_status.php:72 -msgid "Execute Test" -msgstr "Ejecutar la prueba" - -#: ../../extensions/db_status.php:108 -msgid "Unsuccessful connected to the DB" -msgstr "Error al conectarse a la BD" - -#: ../../extensions/db_status.php:119 -msgid "Unsuccessful created the testing DB" -msgstr "Error al crear la BD de prueba" - -#: ../../extensions/db_status.php:135 -msgid "Unsuccessful installed tables into the testing DB" -msgstr "Error al instalar las tablas en la BD de prueba" - -#: ../../extensions/db_status.php:219 -#, php-format -msgid "Success! %s DB contains all tables" -msgstr "Hecho! %s La base de datos contiene todas las tablas" - -#: ../../extensions/db_status.php:221 -#, php-format -msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2971 +msgid "" +"Lapses of time in which the period is divided to make more precise " +"calculations" msgstr "" -"%s La base de datos no ha podido obtener todas las tablas. Faltan las tablas " -"(%s)" +"Lapsos de tiempo en los que el intervalo se divide para obtener cálculos más " +"precisos" -#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 -#: ../../extensions/db_status.php:349 -msgid "You can execute this SQL query for to fix." -msgstr "Puede ejecutar esta consulta SQL para arreglarlo" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2709 +msgid "Table only" +msgstr "Solo tabla" -#: ../../extensions/db_status.php:343 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3026 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 +msgid "Graph only" +msgstr "Solo gráfico" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +msgid "Graph and table" +msgstr "Gráfico y tabla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3098 +#: ../../godmode/netflow/nf_item_list.php:284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2788 +msgid "Create item" +msgstr "Crear elemento" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3107 +#: ../../extensions/agents_modules.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2795 +#: ../../include/functions_visual_map_editor.php:1324 +msgid "Update item" +msgstr "Actualizar elemento" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3156 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2882 +msgid "SLA Min. (value)" +msgstr "Valor mínimo para el SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2887 +msgid "SLA Max. (value)" +msgstr "Valor máximo para el SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3166 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2892 +msgid "SLA Limit (%)" +msgstr "Límite (%) para el SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3183 +msgid "Please save the SLA template for start to add items in this list." +msgstr "" +"Por favor, guarda la plantilla SLA para empezar a añadir elementos a la " +"lista." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3865 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4010 +msgid "Not literally" +msgstr "No literal" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3269 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3499 +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:3285 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514 +msgid "Literal module name forced" +msgstr "Nombre de módulo literal forzado" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3573 +#: ../../godmode/reporting/create_container.php:386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1410 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3105 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3233 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3504 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3591 +#: ../../include/functions_html.php:4194 +msgid "Select an Agent first" +msgstr "Debe seleccionar primero un agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3405 +msgid "Please save the template to start adding items into the list." +msgstr "" +"Por favor, guarda la plantilla para empezar a añadir elementos a la lista." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3891 +msgid "Name and SLA limit should not be empty" +msgstr "El nombre y el límite SLA no deberían estar vacíos." + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:87 +#: ../../godmode/modules/module_list.php:57 +#: ../../godmode/groups/configure_group.php:121 +#: ../../godmode/groups/group_list.php:683 +#: ../../godmode/setup/os.builder.php:37 +#: ../../godmode/reporting/visual_console_builder.elements.php:254 +#: ../../include/functions_visual_map_editor.php:68 +#: ../../include/functions_visual_map_editor.php:1305 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2029 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:383 +#: ../../include/lib/Dashboard/Widgets/module_status.php:373 +#: ../../operation/visual_console/view.php:255 +msgid "Icon" +msgstr "Icono" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:125 +#: ../../include/graphs/export_data.php:74 +msgid "Selected" +msgstr "Seleccionado" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:135 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 +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:145 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:146 +msgid "Remove the services from the list" +msgstr "Elimina los servicios de la lista" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:201 +msgid "Icon preview" +msgstr "Vista previa del icono" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:267 +msgid "The services list is empty" +msgstr "La lista de servicios esta vacía." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "Opciones avanzadas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:279 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:292 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:305 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +msgid "Ascendent" +msgstr "Ascencente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:283 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:309 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +msgid "Descent" +msgstr "Descendente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:362 +#: ../../godmode/netflow/nf_item_list.php:230 +#: ../../godmode/netflow/nf_item_list.php:232 +msgid "Move to up" +msgstr "Subir" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:372 +#: ../../godmode/netflow/nf_item_list.php:228 +#: ../../godmode/netflow/nf_item_list.php:233 +msgid "Move to down" +msgstr "Bajar" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:409 +#: ../../enterprise/include/class/VMware.app.php:230 +#: ../../enterprise/include/class/SAP.app.php:176 +#: ../../enterprise/include/class/Aws.cloud.php:792 +#: ../../enterprise/include/class/MySQL.app.php:195 +#: ../../enterprise/include/class/Oracle.app.php:187 +#: ../../godmode/wizards/HostDevices.class.php:406 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "No tiene permisos para editar esta tarea." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:178 +msgid "Command Mysqldump not found." +msgstr "Comando Mysqldump no encontrado" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:282 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:295 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:375 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:392 +msgid "Failed to create task" +msgstr "No se ha podido crear la tarea" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:401 +msgid "I do not know what you want to do" +msgstr "No sé lo que desea hacer" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:418 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:587 +msgid "You have no access to manage console tasks." +msgstr "No puede acceder a la gestión de tareas de la consola." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:432 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:500 +msgid "Create new console task" +msgstr "Crear nueva tarea de la consola" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:455 +#: ../../enterprise/include/class/Azure.cloud.php:661 +#: ../../enterprise/include/class/VMware.app.php:410 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:930 +#: ../../enterprise/include/class/Omnishell.class.php:1296 +#: ../../enterprise/include/class/SAP.app.php:380 +#: ../../enterprise/include/class/Aws.cloud.php:1011 +#: ../../enterprise/include/class/MySQL.app.php:370 +#: ../../enterprise/include/class/Oracle.app.php:356 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:247 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:297 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:740 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:350 +#: ../../godmode/wizards/HostDevices.class.php:642 +#: ../../godmode/wizards/HostDevices.class.php:743 +#: ../../godmode/wizards/Wizard.main.php:413 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:166 +#: ../../include/class/CustomNetScan.class.php:313 +#: ../../include/class/CustomNetScan.class.php:421 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "Volver" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:475 +msgid "Updating console task" +msgstr "Actualizar tarea de la consola" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:623 +msgid "Next Execution" +msgstr "Siguiente ejecución" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:178 +#: ../../enterprise/godmode/wizards/Applications.class.php:148 +#: ../../enterprise/include/class/Azure.cloud.php:179 +#: ../../enterprise/include/class/DeploymentCenter.class.php:550 +#: ../../enterprise/include/class/Aws.cloud.php:137 ../../godmode/menu.php:62 +#: ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "Discovery" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:206 +#: ../../enterprise/godmode/wizards/Applications.class.php:177 +msgid "" +"All company names used here are for identification purposes only. Use of " +"these names, logos, and brands does not imply endorsement." +msgstr "" +"Todos los nombres de compañías aquí utilizados tienen fines " +"identificatorios. El uso de estos nombres, logos y marcas no implica " +"patrocinio alguno." + +#: ../../enterprise/godmode/wizards/Cloud.class.php:232 +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 #, php-format -msgid "Unsuccessful the table %s has not the field %s" -msgstr "Error, la tabla %s no contiene todos los campos %s" +msgid "%s credentials" +msgstr "Credenciales de %s" -#: ../../extensions/db_status.php:408 -msgid "Successful all the tables have the correct fields" -msgstr "Todas las tablas tienen los campos correctos" +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "Manage accounts" +msgstr "Administrar cuentas" -#: ../../extensions/dbmanager.php:99 -msgid "Database interface" -msgstr "Interfaz de base de datos" +#: ../../enterprise/godmode/wizards/Cloud.class.php:276 +msgid "Cloud tool full path" +msgstr "Ruta completa de la herramienta en la nube" -#: ../../extensions/dbmanager.php:103 +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Account" +msgstr "Cuenta" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:337 +msgid "Select a set of credentials from the list" +msgstr "Seleccione un conjunto de credenciales de la lista" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:350 +#, php-format +msgid "Path %s is not executable." +msgstr "La ruta %s no se puede ejecutar." + +#: ../../enterprise/godmode/wizards/Cloud.class.php:395 +msgid "Account disconnected" +msgstr "Cuenta desconectada" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:397 +msgid "Failed disconnecting account" +msgstr "Error al desconectar la cuenta" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:471 +msgid "Credentials successfully updated" +msgstr "Credenciales actualizados correctamente" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:473 +msgid "Failed updating credentials process" +msgstr "Error en el proceso de actualización de credenciales" + +#: ../../enterprise/godmode/servers/HA_cluster.php:48 +msgid "View nodes" +msgstr "Ver nodos" + +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +msgid "Manage Pandora DB HA" +msgstr "Gestionar la alta disponibilidad de la base de datos de Pandora FMS" + +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +msgid "" +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" +msgstr "" +"Hacer que el cluster olvide las operaciones fallidas del historial de\n" +" recurso y redetectar su estado actual. Esto puede ser\n" +" útil para purgar los datos de fallos anteriores que se han\n" +" resuelto dede entonces. Si no se especifica ID de recurso, entonces todos " +"los\n" +" recursos / dispositivos stonith se limpiarán. Si no\n" +" se especifica, entonces los recursos / dispositivos stonith de todos los\n" +" nodos se limparán" + +#: ../../enterprise/godmode/servers/HA_cluster.php:123 +msgid "Node label" +msgstr "Etiqueta de nodo" + +#: ../../enterprise/godmode/servers/HA_cluster.php:124 +#: ../../operation/tree.php:188 +msgid "Agent status" +msgstr "Estado de agente" + +#: ../../enterprise/godmode/servers/HA_cluster.php:125 +msgid "DB Repl." +msgstr "Replicación de la base de datos." + +#: ../../enterprise/godmode/servers/HA_cluster.php:126 +msgid "DB Status" +msgstr "Estado BD" + +#: ../../enterprise/godmode/servers/HA_cluster.php:128 +#: ../../extensions/quick_shell.php:159 +#: ../../godmode/agentes/module_manager_editor_network.php:469 +msgid "SSH" +msgstr "SSH" + +#: ../../enterprise/godmode/servers/HA_cluster.php:129 +msgid "DB Role" +msgstr "Función de la base de datos" + +#: ../../enterprise/godmode/servers/HA_cluster.php:130 +msgid "Cluster Role" +msgstr "Función del clúster" + +#: ../../enterprise/godmode/servers/HA_cluster.php:132 +msgid "Seconds behind master" +msgstr "Segundos después del maestro" + +#: ../../enterprise/godmode/servers/HA_cluster.php:133 +msgid "Virtual IP" +msgstr "IP virtual" + +#: ../../enterprise/godmode/servers/HA_cluster.php:134 +msgid "SQL version" +msgstr "Versión SQL" + +#: ../../enterprise/godmode/servers/HA_cluster.php:135 +msgid "DB version" +msgstr "Versión de la base de datos" + +#: ../../enterprise/godmode/servers/HA_cluster.php:137 +msgid "Pending action" +msgstr "Acción pendiente" + +#: ../../enterprise/godmode/servers/HA_cluster.php:262 +msgid "Show/ edit node" +msgstr "Mostrar/editar nodo" + +#: ../../enterprise/godmode/servers/HA_cluster.php:277 +msgid "Put node into standby status" +msgstr "Poner nodo en suspensión" + +#: ../../enterprise/godmode/servers/HA_cluster.php:291 +msgid "Force node resync" +msgstr "Forzar re-sincronización de nodos" + +#: ../../enterprise/godmode/servers/HA_cluster.php:317 +msgid "Put node into online status" +msgstr "Poner nodo en estado online" + +#: ../../enterprise/godmode/servers/HA_cluster.php:331 +msgid "Show cluster details" +msgstr "Mostrar detalles del cluster" + +#: ../../enterprise/godmode/servers/HA_cluster.php:348 +msgid "Remove node from this list" +msgstr "Eliminar nodo de la lista" + +#: ../../enterprise/godmode/servers/HA_cluster.php:371 +msgid "Register node" +msgstr "Registrar nodo" + +#: ../../enterprise/godmode/servers/HA_cluster.php:409 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do " +"you want to continue?" +msgstr "" +"El nodo objetivo se eliminará de la lista pero no del cluster. ¿Desea " +"continuar?" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "Error al actualizar el servidor de exportación" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "Servidor de exportación actualizado correctamente" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "Error al borrar el servidor de exportación" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be " +"automatically unattached" +msgstr "" +"Objetivo de exportación eliminado correctamente. Todos los módulos enlazados " +"se desvincularán automáticamente" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "" +"Can't be created export target: User and password must be filled with FTP " +"mode" +msgstr "" +"No pudo crearse un servidor de exportación: el usuario y la contraseña deben " +"ser completados con el modo de FTP." + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "No hay servidores de exportación definidos" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "Prefijo" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "Modo de transferencia" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:34 +msgid "Credential Boxes List" +msgstr "Lista de casillas de credenciales" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:39 +msgid "Credential Boxes" +msgstr "Casillas de credenciales" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:290 +#: ../../enterprise/godmode/servers/list_satellite.php:68 +msgid "No Data" +msgstr "No hay datos" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:136 +msgid "Error: The conf file of server is not readble." +msgstr "Error: el archivo de configuración del servidor no se puede leer." + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:140 +msgid "Error: The conf file of server is not writable." +msgstr "" +"Error: no se puede escribir en el archivo de configuración del servidor" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 +msgid "Delete remote conf server files" +msgstr "Eliminar archivos de servidor de configuración remotos" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +msgid "" +"Delete this conf file implies that server will send back local config to " +"console" +msgstr "" +"Eliminar este archivo de configuración significa que el servidor devolverá " +"la configuración local a la consola" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "Añadir casilla de credenciales" + +#: ../../enterprise/godmode/servers/manage_export_form.php:79 +#: ../../include/functions_servers.php:630 +#: ../../include/functions_servers.php:1214 +msgid "Export server" +msgstr "Servidor de exportación" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "Directorio objetivo" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +msgid "Extra options" +msgstr "Opciones adicionales" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "Servidor Satélite" + +#: ../../enterprise/include/functions_cron.php:174 +#: ../../enterprise/include/functions_cron.php:243 +#: ../../enterprise/include/functions_cron.php:280 +#: ../../enterprise/include/functions_cron.php:309 +#: ../../enterprise/include/functions_cron.php:353 +#: ../../enterprise/include/functions_cron.php:415 +msgid "Report to build" +msgstr "Informe a crear" + +#: ../../enterprise/include/functions_cron.php:182 +#: ../../enterprise/include/functions_cron.php:227 +#: ../../enterprise/operation/reporting/custom_reporting.php:96 +msgid "Send to emails (separated by comma)" +msgstr "Enviar a emails (separados por comas)" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:231 +#: ../../enterprise/operation/reporting/custom_reporting.php:104 +#: ../../godmode/setup/news.php:175 ../../godmode/setup/news.php:236 +#: ../../operation/messages/message_list.php:167 +#: ../../operation/messages/message_edit.php:321 +msgid "Subject" +msgstr "Asunto" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:235 +#: ../../enterprise/operation/reporting/custom_reporting.php:112 +#: ../../operation/messages/message_edit.php:331 +msgid "Message" +msgstr "Mensaje" + +#: ../../enterprise/include/functions_cron.php:195 +msgid "Report Type" +msgstr "Tipo de informe" + +#: ../../enterprise/include/functions_cron.php:202 +#: ../../enterprise/include/functions_cron.php:331 +msgid "Template to build" +msgstr "Plantilla a crear" + +#: ../../enterprise/include/functions_cron.php:219 +#: ../../enterprise/include/functions_tasklist.php:279 +#: ../../include/functions_cron.php:558 +msgid "Report per agent" +msgstr "Informe por agente" + +#: ../../enterprise/include/functions_cron.php:251 +#: ../../enterprise/include/functions_cron.php:265 +#: ../../enterprise/include/functions_cron.php:288 +#: ../../enterprise/include/functions_cron.php:354 +#: ../../enterprise/include/functions_cron.php:416 +msgid "Save to disk into path" +msgstr "Guardar disco en la ruta" + +#: ../../enterprise/include/functions_cron.php:252 +#: ../../enterprise/include/functions_cron.php:289 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "" +"El usuario de Apache debería tener acceso de lectura y escritura en esta " +"carpeta. Por ejemplo: " + +#: ../../enterprise/include/functions_cron.php:273 +#: ../../enterprise/include/functions_tasklist.php:308 +#: ../../include/functions_cron.php:586 +msgid "Custom script" +msgstr "Script personalizado" + +#: ../../enterprise/include/functions_cron.php:310 +#: ../../enterprise/include/functions_cron.php:332 +msgid "Send to email" +msgstr "Enviar a correo electrónico" + +#: ../../enterprise/include/functions_cron.php:311 +msgid "Send custom report by email" +msgstr "Enviar un informe personalizado por email" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report (from template) by email" +msgstr "Enviar informe personalizado (desde plantilla) por email" + +#: ../../enterprise/include/functions_cron.php:355 +#: ../../enterprise/include/functions_cron.php:417 +msgid "Save custom report to disk" +msgstr "Guardar el informe personalizado en el disco" + +#: ../../enterprise/include/functions_cron.php:375 +msgid "Backup Pandora database" +msgstr "Copia de seguridad de la BD de Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:395 +msgid "Execute custom script" +msgstr "Ejecutar script personalizado" + +#: ../../enterprise/include/functions_cron.php:418 +msgid "Save custom xml report to disk" +msgstr "Guardar el informe personalizado XML en el disco" + +#: ../../enterprise/include/functions_cron.php:464 +msgid "Not scheduled" +msgstr "No programado" + +#: ../../enterprise/include/functions_cron.php:465 +#: ../../include/functions_netflow.php:1592 +msgid "Hourly" +msgstr "Cada hora" + +#: ../../enterprise/include/functions_cron.php:466 +#: ../../godmode/agentes/module_manager_editor_prediction.php:163 +#: ../../include/functions_netflow.php:1593 +msgid "Daily" +msgstr "Diariamente" + +#: ../../enterprise/include/functions_cron.php:467 +#: ../../godmode/agentes/module_manager_editor_prediction.php:161 +#: ../../godmode/agentes/planned_downtime.editor.php:734 +msgid "Weekly" +msgstr "Semanalmente" + +#: ../../enterprise/include/functions_cron.php:468 +#: ../../godmode/agentes/module_manager_editor_prediction.php:162 +#: ../../godmode/agentes/planned_downtime.editor.php:735 +msgid "Monthly" +msgstr "Mensualmente" + +#: ../../enterprise/include/functions_cron.php:469 +msgid "Yearly" +msgstr "Anualmente" + +#: ../../enterprise/include/functions_cron.php:761 +#: ../../enterprise/include/functions_cron.php:785 +#: ../../enterprise/operation/reporting/custom_reporting.php:107 +#: ../../enterprise/operation/reporting/custom_reporting.php:115 +msgid "This is an optional field" +msgstr "Este campo es opcional" + +#: ../../enterprise/include/functions_cron.php:1178 +#: ../../enterprise/include/functions_tasklist.php:221 +#: ../../enterprise/include/functions_tasklist.php:343 +#: ../../enterprise/include/functions_tasklist.php:374 +#: ../../extensions/resource_exportation.php:423 +#: ../../include/functions_cron.php:505 ../../include/functions_cron.php:620 +#: ../../include/functions_cron.php:650 +#: ../../include/lib/Dashboard/Widgets/reports.php:232 +#: ../../include/lib/Dashboard/Widgets/reports.php:281 +msgid "Report" +msgstr "Informe" + +#: ../../enterprise/include/functions_cron.php:1184 +#: ../../enterprise/include/functions_cron.php:1352 +msgid "Greetings" +msgstr "Saludos" + +#: ../../enterprise/include/functions_cron.php:1186 +#: ../../enterprise/include/functions_cron.php:1354 +msgid "Attached to this email there's a PDF file of the" +msgstr "En este correo encontrarás en adjunto un archivo del" + +#: ../../enterprise/include/functions_cron.php:1187 +#: ../../enterprise/include/functions_cron.php:1355 +msgid "report" +msgstr "informe" + +#: ../../enterprise/include/functions_cron.php:1190 +#: ../../enterprise/include/functions_cron.php:1358 +#: ../../mobile/include/functions_web.php:82 +#: ../../mobile/include/ui.class.php:306 +msgid "Generated at" +msgstr "Generado el" + +#: ../../enterprise/include/functions_cron.php:1192 +#: ../../enterprise/include/functions_cron.php:1360 +msgid "Thanks for your time." +msgstr "Gracias por tu tiempo." + +#: ../../enterprise/include/functions_cron.php:1194 +#: ../../enterprise/include/functions_cron.php:1362 +msgid "Best regards, Pandora FMS" +msgstr "Saludos cordiales, Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:1196 +#: ../../enterprise/include/functions_cron.php:1364 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not " +"reply." +msgstr "" +"Este es un email generado automáticamente por Pandora FMS. Por favor, no " +"respondas a este email." + +#: ../../enterprise/include/functions_cron.php:1892 +#: ../../enterprise/include/functions_cron.php:1902 +#: ../../enterprise/include/functions_cron.php:1911 +msgid "Error while executing task: " +msgstr "Error al ejecutar tarea " + +#: ../../enterprise/include/functions_tasklist.php:53 +#: ../../include/class/ConsoleSupervisor.php:2247 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "DiscoveryConsoleTasks no funciona adecuadamente" + +#: ../../enterprise/include/functions_tasklist.php:55 +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" +"El Discovery se basa en la correcta configuración de cron, el servicio de " +"programación en función del tiempo" + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2250 +msgid "Please, add the following line to your crontab file:" +msgstr "Añada la siguiente línea a su archivo crontab:" + +#: ../../enterprise/include/functions_tasklist.php:71 +#: ../../include/class/ConsoleSupervisor.php:2263 +msgid "Last execution" +msgstr "Última ejecución" + +#: ../../enterprise/include/functions_tasklist.php:74 +msgid "Please check process is no locked." +msgstr "Compruebe que el proceso no está bloqueado" + +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../enterprise/include/functions_tasklist.php:509 +msgid "There are no console task defined yet." +msgstr "Aún no hay tareas de consola definidas." + +#: ../../enterprise/include/functions_tasklist.php:171 +#: ../../include/functions_cron.php:458 +msgid "Last run" +msgstr "Última ejecución" + +#: ../../enterprise/include/functions_tasklist.php:200 +#: ../../enterprise/include/functions_tasklist.php:243 +#: ../../enterprise/include/functions_tasklist.php:295 +#: ../../enterprise/include/functions_tasklist.php:322 +#: ../../enterprise/include/functions_tasklist.php:359 +#: ../../enterprise/include/functions_tasklist.php:390 +#: ../../enterprise/include/functions_tasklist.php:414 +#: ../../include/functions_cron.php:481 ../../include/functions_cron.php:519 +#: ../../include/functions_cron.php:570 ../../include/functions_cron.php:596 +#: ../../include/functions_cron.php:632 ../../include/functions_cron.php:662 +msgid "Force run" +msgstr "Forzar ejecución" + +#: ../../enterprise/include/functions_tasklist.php:223 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/operation/reporting/custom_reporting.php:81 +#: ../../include/functions_cron.php:507 +msgid "Report type" +msgstr "Tipo de informe" + +#: ../../enterprise/include/functions_tasklist.php:514 +msgid "Console Tasks" +msgstr "Tareas de consola" + +#: ../../enterprise/include/functions_networkmap.php:934 +msgid "Map not found." +msgstr "Mapa no encontrado." + +#: ../../enterprise/include/functions_hostdevices.php:46 +msgid "SNMP enabled" +msgstr "SNMP activado" + +#: ../../enterprise/include/functions_hostdevices.php:88 +msgid "SNMP communities to try with" +msgstr "Comunidades SNMP con las que probar" + +#: ../../enterprise/include/functions_hostdevices.php:90 +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" + +#: ../../enterprise/include/functions_hostdevices.php:218 +msgid "WMI enabled" +msgstr "WMI habilitado" + +#: ../../enterprise/include/functions_hostdevices.php:231 +msgid "Remote commands enabled" +msgstr "Comandos remotos habilitados" + +#: ../../enterprise/include/functions_hostdevices.php:255 +#: ../../enterprise/include/functions_hostdevices.php:258 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1098 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1225 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1228 +#: ../../enterprise/include/class/SAP.app.php:580 +#: ../../enterprise/include/class/SAP.app.php:583 +msgid "No credentials available" +msgstr "No hay credenciales disponibles" + +#: ../../enterprise/include/functions_hostdevices.php:256 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1096 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1226 +#: ../../enterprise/include/class/SAP.app.php:581 +msgid "Manage credentials" +msgstr "Gestionar credenciales" + +#: ../../enterprise/include/functions_hostdevices.php:268 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +msgid "Credentials to try with" +msgstr "Credenciales con los que probar" + +#: ../../enterprise/include/functions_hostdevices.php:300 +msgid "OS detection" +msgstr "Detección de SO" + +#: ../../enterprise/include/functions_hostdevices.php:312 +msgid "Name resolution" +msgstr "Resolución de nombres" + +#: ../../enterprise/include/functions_hostdevices.php:323 +msgid "Parent detection" +msgstr "Detección de padres" + +#: ../../enterprise/include/functions_hostdevices.php:334 +msgid "Parent recursion" +msgstr "Recursión del padre" + +#: ../../enterprise/include/functions_hostdevices.php:345 +msgid "VLAN enabled" +msgstr "VLAN habilitada" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:179 +msgid "The phase does not have a defined script" +msgstr "La fase no tiene un script definido." + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:233 +msgid "Edit Data" +msgstr "Editar datos" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:73 +msgid "Error accesing to API, auth error." +msgstr "Error al acceder a la API. Error de autentificación." + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:78 +msgid "Error accesing to API." +msgstr "Error al acceder a la API" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:83 +msgid "Error could not resolve the host." +msgstr "Error, no se pudo resolver el host" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:88 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:114 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:135 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:157 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:174 +msgid "Unknown error" +msgstr "Error desconocido" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:99 +msgid "Database credentials not found" +msgstr "Las credenciales de la base de datos no se han encontrado." + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:104 +msgid "Error connecting to the specified host" +msgstr "Error al conectar con el host especificado" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:109 +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:125 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:152 +msgid "Server connection failed" +msgstr "Error al conectar con el servidor" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:130 +msgid "MR versions does not match" +msgstr "La versión MR no coincide" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:146 +msgid "Last event replication" +msgstr "Replicación del último evento" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:164 +msgid "Agent cache activated" +msgstr "Caché de agente activado" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:169 +msgid "Agent cache failed" +msgstr "Error con el caché de agente" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:88 +msgid "avg" +msgstr "media" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:89 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3267 +msgid "max" +msgstr "máx" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:90 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 +msgid "min" +msgstr "mín" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:91 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3269 +msgid "sum" +msgstr "suma" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:74 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +msgid "Group name" +msgstr "Nombre del grupo" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:99 +msgid "OS name" +msgstr "Nombre del SO" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:111 +msgid "Custom field name" +msgstr "Nombre de campo personalizado" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:113 +msgid "Custom field value" +msgstr "Campo de valor personalizado" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:120 +msgid "IP Network range" +msgstr "Intervalo de red IP" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:126 +msgid "Script" +msgstr "Script" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Arguments" +msgstr "Argumentos" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:134 +msgid "Unknown form" +msgstr "Formulario desconocido" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:211 +#: ../../include/functions_treeview.php:760 +#: ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:480 +msgid "Custom field" +msgstr "Campo personalizado" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:212 +msgid "IP range" +msgstr "Intervalo IP" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +msgid "Script output (> 0)" +msgstr "Salida del script (> 0)" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:411 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:520 +#: ../../godmode/snmpconsole/snmp_alert.php:1047 +#: ../../godmode/snmpconsole/snmp_alert.php:1266 +msgid "Alert action" +msgstr "Acción de alerta" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:417 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../extensions/agents_alerts.php:239 +#: ../../godmode/alerts/configure_alert_template.php:661 +#: ../../godmode/alerts/alert_list.builder.php:109 +msgid "Default action" +msgstr "Acción predeterminada" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:431 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:540 +msgid "Script path" +msgstr "Ruta del script" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 +msgid "Script argument" +msgstr "Argumento del script" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443 +#: ../../godmode/alerts/alert_list.list.php:657 +#: ../../godmode/alerts/alert_list.list.php:1015 +msgid "Update action" +msgstr "Actualizar acción" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "Hora global: " + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:33 +#: ../../enterprise/include/functions_reporting_csv.php:393 +#: ../../enterprise/include/functions_reporting_csv.php:415 +#: ../../enterprise/include/functions_reporting_csv.php:446 +#: ../../enterprise/include/functions_reporting_csv.php:648 +#: ../../enterprise/include/functions_reporting_csv.php:662 +#: ../../enterprise/include/functions_reporting_csv.php:676 +#: ../../enterprise/include/functions_reporting_csv.php:696 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:756 +#: ../../enterprise/include/functions_reporting_csv.php:788 +#: ../../enterprise/include/functions_reporting_csv.php:825 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:945 +#: ../../enterprise/include/functions_reporting_csv.php:972 +#: ../../enterprise/include/functions_reporting_csv.php:1003 +#: ../../enterprise/include/functions_reporting_csv.php:1058 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1162 +#: ../../enterprise/include/functions_reporting_csv.php:1217 +#: ../../enterprise/include/functions_reporting_csv.php:1246 +#: ../../enterprise/include/functions_reporting_csv.php:1283 +#: ../../enterprise/include/functions_reporting_csv.php:1409 +#: ../../enterprise/include/functions_reporting_csv.php:1525 +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1725 +#: ../../enterprise/include/functions_reporting_csv.php:1793 +#: ../../enterprise/include/functions_reporting_csv.php:1941 +#: ../../enterprise/include/functions_reporting_csv.php:1967 +#: ../../enterprise/include/functions_reporting_csv.php:2053 +#: ../../enterprise/include/functions_reporting_csv.php:2084 +#: ../../enterprise/include/functions_reporting_csv.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2152 +#: ../../enterprise/include/functions_reporting_csv.php:2174 +#: ../../enterprise/include/functions_reporting_csv.php:2215 +#: ../../enterprise/include/functions_reporting_csv.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:2302 +#: ../../godmode/setup/setup_integria.php:256 +#: ../../godmode/setup/setup_integria.php:379 +#: ../../include/lib/Dashboard/Widget.php:497 +#: ../../operation/agentes/estado_generalagente.php:584 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:194 +msgid "Title" +msgstr "Título" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:43 +msgid "Capture regexp" +msgstr "Regexp de captura" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:63 +#: ../../enterprise/include/functions_reporting_pdf.php:483 +#: ../../enterprise/include/functions_reporting_pdf.php:539 +#: ../../include/functions_reporting_html.php:2778 +#: ../../include/functions_reporting_html.php:2832 +msgid "Average" +msgstr "Media" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:153 +msgid "Empty ip or port" +msgstr "IP o puerto vacío" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:170 +msgid "Curl Error: " +msgstr "Error curl: " + +#: ../../enterprise/include/process_reset_pass.php:47 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:130 +#: ../../general/login_page.php:133 ../../general/login_page.php:149 +msgid "Docs" +msgstr "Documentos" + +#: ../../enterprise/include/process_reset_pass.php:150 +#: ../../enterprise/include/process_reset_pass.php:153 +#: ../../enterprise/include/reset_pass.php:130 +#: ../../enterprise/include/reset_pass.php:133 +#: ../../include/functions_config.php:2123 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" + +#: ../../enterprise/include/functions_log.php:268 +msgid "Lines" +msgstr "Líneas" + +#: ../../enterprise/include/functions_inventory.php:66 +#: ../../enterprise/include/functions_inventory.php:698 +msgid "No changes found" +msgstr "No se han encontrado cambios" + +#: ../../enterprise/include/functions_inventory.php:92 +msgid "Get CSV file" +msgstr "Obtener archivo CSV" + +#: ../../enterprise/include/functions_inventory.php:715 +#: ../../enterprise/include/functions_inventory.php:778 +#: ../../include/functions_reporting_html.php:1400 +msgid "Added" +msgstr "Añadido" + +#: ../../enterprise/include/functions_inventory.php:721 +#: ../../enterprise/include/functions_inventory.php:786 +#: ../../include/functions_reporting_html.php:1411 +#: ../../include/functions_filemanager.php:369 +msgid "Deleted" +msgstr "Eliminado(s)" + +#: ../../enterprise/include/functions_transactional.php:588 +msgid "Error in dependencies field" +msgstr "Error en el campo de las dependencias" + +#: ../../enterprise/include/functions_transactional.php:597 +msgid "Error in enables field" +msgstr "Error al activar el campo" + +#: ../../enterprise/include/functions_collection.php:47 +#, php-format +msgid "Fail create the directory: %s" +msgstr "Fallo al crear el directorio: %s" + +#: ../../enterprise/include/functions_collection.php:73 +msgid "No files in collection" +msgstr "No hay archivos en la colección" + +#: ../../enterprise/include/functions_collection.php:81 +msgid "File of collection is bigger than the limit (" +msgstr "El archivo de la colección supera el límite." + +#: ../../enterprise/include/functions_ui.php:79 +msgid "Select inventory module" +msgstr "Seleccionar módulo de inventario" + +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" +msgstr "Usar campos personalizados" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" +msgstr "Nombre del campo" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "Es una contraseña" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "Añadir campo" + +#: ../../enterprise/include/functions_reporting_pdf.php:65 +#: ../../include/class/Diagnostics.class.php:2121 +#: ../../include/class/Diagnostics.class.php:2239 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "Informe de %s automatizado para informe definido por el usuario" + +#: ../../enterprise/include/functions_reporting_pdf.php:467 +#: ../../enterprise/include/functions_reporting_pdf.php:499 +#: ../../enterprise/include/functions_reporting_pdf.php:525 +#: ../../enterprise/include/functions_reporting_pdf.php:550 +#: ../../enterprise/include/functions_reporting_pdf.php:553 +#: ../../enterprise/include/functions_reporting_pdf.php:560 +#: ../../enterprise/include/functions_reporting_csv.php:1091 +#: ../../include/functions_reporting_html.php:2762 +#: ../../include/functions_reporting_html.php:2790 +#: ../../include/functions_reporting_html.php:2818 +#: ../../include/functions_reporting_html.php:2839 +#: ../../include/functions_reporting_html.php:2842 +#: ../../include/functions_reporting_html.php:2847 +#: ../../include/functions_reporting.php:4984 +#: ../../include/functions_reporting.php:5007 +#: ../../include/functions_reporting.php:5011 +#: ../../include/functions_reporting.php:5015 +#: ../../include/functions_reporting.php:5019 +msgid "Maximun" +msgstr "Máximo" + +#: ../../enterprise/include/functions_reporting_pdf.php:475 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +#: ../../include/functions_reporting_html.php:2770 +#: ../../include/functions_reporting_html.php:2825 +msgid "Minimun" +msgstr "Mínimo" + +#: ../../enterprise/include/functions_reporting_pdf.php:524 +#: ../../enterprise/include/functions_reporting_pdf.php:531 +#: ../../enterprise/include/functions_reporting_pdf.php:538 +#: ../../enterprise/include/functions_reporting_pdf.php:552 +#: ../../enterprise/include/functions_reporting_pdf.php:557 +#: ../../enterprise/include/functions_reporting_csv.php:1036 +#: ../../enterprise/include/functions_reporting_csv.php:1091 +#: ../../enterprise/include/functions_reporting_csv.php:1195 +#: ../../include/functions_reporting_html.php:2817 +#: ../../include/functions_reporting_html.php:2824 +#: ../../include/functions_reporting_html.php:2831 +#: ../../include/functions_reporting_html.php:2841 +#: ../../include/functions_reporting_html.php:2846 +#: ../../include/functions_reporting.php:5002 +msgid "Lapse" +msgstr "Tiempo transcurrido" + +#: ../../enterprise/include/functions_reporting_pdf.php:841 +#: ../../include/functions_reporting_html.php:1617 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "%s en %s : NORMAL" + +#: ../../enterprise/include/functions_reporting_pdf.php:858 +#: ../../include/functions_reporting_html.php:1634 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "%s en %s : CRÍTICO" + +#: ../../enterprise/include/functions_reporting_pdf.php:875 +#: ../../include/functions_reporting_html.php:1651 +#, php-format +msgid "%s in %s : WARNING" +msgstr "%s en %s : ADVERTENCIA" + +#: ../../enterprise/include/functions_reporting_pdf.php:892 +#: ../../include/functions_reporting_html.php:1668 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s en %s : DESCONOCIDO" + +#: ../../enterprise/include/functions_reporting_pdf.php:909 +#: ../../include/functions_reporting_html.php:1704 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s en %s : No iniciado" + +#: ../../enterprise/include/functions_reporting_pdf.php:926 +#: ../../include/functions_reporting_html.php:1687 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s en %s : ALERTA DISPARADA" + +#: ../../enterprise/include/functions_reporting_pdf.php:1507 +#: ../../enterprise/include/functions_reporting_csv.php:2006 +#: ../../enterprise/include/functions_reporting_csv.php:2010 +#: ../../include/functions_reporting_html.php:120 +msgid "Generated" +msgstr "Generado" + +#: ../../enterprise/include/functions_reporting_pdf.php:1511 +#: ../../include/functions_reporting_html.php:123 +msgid "Report date" +msgstr "Fecha del informe" + +#: ../../enterprise/include/functions_reporting_pdf.php:1530 +#: ../../include/functions_reporting_html.php:128 +#: ../../operation/reporting/reporting_viewer.php:215 +msgid "Items period before" +msgstr "Período de elementos antes de" + +#: ../../enterprise/include/functions_reporting_pdf.php:1560 +msgid "Contents" +msgstr "Contenido" + +#: ../../enterprise/include/functions_reporting_pdf.php:1704 +#: ../../enterprise/include/functions_reporting_csv.php:807 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../godmode/agentes/planned_downtime.list.php:148 +#: ../../include/functions_reporting_html.php:2911 +#: ../../include/functions_snmp.php:423 ../../include/functions_snmp.php:431 +#: ../../include/rest-api/index.php:320 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:459 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:519 +#: ../../operation/agentes/gis_view.php:218 +msgid "To" +msgstr "Para" + +#: ../../enterprise/include/functions_reporting_pdf.php:1708 +#: ../../include/functions_reporting_html.php:75 +#: ../../include/functions_reporting_html.php:4507 +#: ../../include/functions_treeview.php:323 +msgid "Last data" +msgstr "Últimos datos" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "Crítico" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "Advertencia" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "OK" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "No se añadió ningún servicio" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "%d servicios no se han podido añadir" + +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1571 +#: ../../enterprise/include/class/AgentRepository.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:1033 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:813 +#: ../../include/ajax/snmp_browser.ajax.php:220 +#: ../../include/functions_ui.php:287 +#: ../../include/class/ConfigPEN.class.php:731 +#: ../../include/class/HelpFeedBack.class.php:358 +#: ../../include/class/Diagnostics.class.php:2078 +#: ../../include/class/CredentialStore.class.php:1058 +#: ../../include/class/ModuleTemplates.class.php:1312 +#: ../../include/class/AgentWizard.class.php:680 +#: ../../operation/visual_console/view.php:590 +msgid "Success" +msgstr "Finalizado correctamente" + +#: ../../enterprise/include/functions_visual_map.php:680 +msgid "There was an error retrieving the visual map information" +msgstr "Error al recuperar la información del mapa visual" + +#: ../../enterprise/include/functions_visual_map.php:683 +msgid "No services selected" +msgstr "Ningún servicio seleccionado" + +#: ../../enterprise/include/functions_backup.php:197 +msgid "No description" +msgstr "Sin descripción" + +#: ../../enterprise/include/functions_backup.php:323 +msgid "Restoring a backup" +msgstr "Restaurar una copia de seguridad" + +#: ../../enterprise/include/functions_backup.php:325 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "" +"La restauración de la copia de seguridad de la base de datos de %s debe " +"llevarse a cabo manualmente." + +#: ../../enterprise/include/functions_backup.php:326 +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:327 +msgid "To restore the selected backup, please follow these steps" +msgstr "" +"Para restaurar la copia de seguridad seleccionada sigue los siguientes pasos." + +#: ../../enterprise/include/functions_backup.php:333 +msgid "Open a root shell in your system located at " +msgstr "Abre un root shell en tu sistema localizado en " + +#: ../../enterprise/include/functions_backup.php:337 +msgid "Connect to MySQL database using the following command" +msgstr "Usa el siguiente comando para conectar con la base de datos de MySQL" + +#: ../../enterprise/include/functions_backup.php:344 +msgid "Create a new database" +msgstr "Crear una nueva base de datos" + +#: ../../enterprise/include/functions_backup.php:361 +msgid "Restore the backup" +msgstr "Restaurar la copia de seguridad" + +#: ../../enterprise/include/functions_backup.php:369 +msgid "Modify console configuration to use this new database" +msgstr "" +"Modifica la configuración de la consola para usar esta nueva base de datos" + +#: ../../enterprise/include/functions_backup.php:370 +msgid "Open configuration file" +msgstr "Abrir el archivo de configuración" + +#: ../../enterprise/include/functions_backup.php:374 +#: ../../enterprise/include/functions_backup.php:386 +msgid "Find" +msgstr "Encontrar" + +#: ../../enterprise/include/functions_backup.php:376 +#: ../../enterprise/include/functions_backup.php:389 +msgid "and replace with" +msgstr "y reemplazar con" + +#: ../../enterprise/include/functions_backup.php:383 +msgid "Modify servers configuration to use this new database" +msgstr "" +"Modifica la configuración de los servidores para usar esta nueva base de " +"datos" + +#: ../../enterprise/include/functions_backup.php:384 +msgid "Find servers configuration file and replace the following lines" +msgstr "" +"Accede al archivo de configuración de los servidores y reemplázalo por las " +"siguientes líneas" + +#: ../../enterprise/include/functions_backup.php:396 +msgid "Restart the servers and login again into the console" +msgstr "Reinicia los servidores y vuelve a identificarte en la consola" + +#: ../../enterprise/include/functions_backup.php:539 +#: ../../enterprise/include/functions_backup.php:540 +#: ../../godmode/agentes/planned_downtime.editor.php:56 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/category/category.php:57 ../../include/functions_html.php:1224 +#: ../../include/functions_html.php:1225 ../../include/functions_html.php:1329 +#: ../../include/functions_html.php:1330 ../../include/functions_html.php:1509 +#: ../../include/functions_html.php:1510 +#: ../../operation/snmpconsole/snmp_statistics.php:48 +#: ../../operation/snmpconsole/snmp_view.php:81 +#: ../../operation/events/events.php:792 +msgid "List" +msgstr "Lista" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "Estado del trap de agente recuperado" + +#: ../../enterprise/include/functions_alert_event.php:1133 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:841 +msgid "Module alert" +msgstr "Alerta de módulos" + +#: ../../enterprise/include/functions_setup.php:53 +#: ../../enterprise/include/functions_setup.php:96 +msgid "Log collector" +msgstr "Colector de logs" + +#: ../../enterprise/include/functions_setup.php:122 +msgid "Metaconsole link status" +msgstr "Estado del link de la metaconsola" + +#: ../../enterprise/include/functions_setup.php:154 +msgid "DB connection" +msgstr "Conexión a la base de datos" + +#: ../../enterprise/include/functions_setup.php:176 +msgid "This console is joining a metaconsole." +msgstr "Esta consola se unirá a una Metaconsola" + +#: ../../enterprise/include/functions_setup.php:184 +msgid "This console is not joining any metaconsole." +msgstr "Esta consola no se unirá a ninguna Metaconsola" + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:235 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:228 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:174 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:521 +#: ../../include/functions_filemanager.php:654 +msgid "Image" +msgstr "Imagen" + +#: ../../enterprise/include/functions_reporting_csv.php:388 +msgid "Event report agent" +msgstr "Informe de los eventos de un agente" + +#: ../../enterprise/include/functions_reporting_csv.php:390 +msgid "Event report group" +msgstr "Informe de los eventos de un grupo" + +#: ../../enterprise/include/functions_reporting_csv.php:414 +msgid "Event report module" +msgstr "Informe de los eventos de un módulo" + +#: ../../enterprise/include/functions_reporting_csv.php:445 +#: ../../enterprise/include/functions_reporting.php:1076 +#: ../../include/functions_reports.php:799 +#: ../../include/functions_reporting.php:6282 +#: ../../include/functions_reporting.php:6597 +msgid "Availability" +msgstr "Disponibilidad" + +#: ../../enterprise/include/functions_reporting_csv.php:489 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "% OK" +msgstr "% OK" + +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../include/functions_reporting_html.php:559 +msgid "Checks Failed" +msgstr "Comprobaciones fallidas" + +#: ../../enterprise/include/functions_reporting_csv.php:615 +msgid "Maximum value" +msgstr "Valor máximo" + +#: ../../enterprise/include/functions_reporting_csv.php:619 +#: ../../include/functions_reporting_html.php:3333 +msgid "Agent min value" +msgstr "Valor mínimo del agente" + +#: ../../enterprise/include/functions_reporting_csv.php:620 +msgid "Minimum value" +msgstr "Valor mínimo" + +#: ../../enterprise/include/functions_reporting_csv.php:623 +msgid "Average value" +msgstr "Valor medio" + +#: ../../enterprise/include/functions_reporting_csv.php:647 +#: ../../include/functions_reporting.php:2151 +msgid "Inventory Changes" +msgstr "Cambios de inventario" + +#: ../../enterprise/include/functions_reporting_csv.php:675 +#: ../../include/functions_reports.php:710 +msgid "Prediction date" +msgstr "Fecha de predicción" + +#: ../../enterprise/include/functions_reporting_csv.php:695 +#: ../../include/functions_reporting.php:4620 +msgid "Projection Graph" +msgstr "Gráfico de proyección" + +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Serialized data " +msgstr "Datos serializados " + +#: ../../enterprise/include/functions_reporting_csv.php:787 +#: ../../include/functions_reporting.php:1401 +#: ../../operation/snmpconsole/snmp_statistics.php:131 +#: ../../operation/snmpconsole/snmp_statistics.php:199 +#, php-format +msgid "Top %d" +msgstr "Primeros %d" + +#: ../../enterprise/include/functions_reporting_csv.php:824 +#: ../../include/functions_reporting.php:2865 +msgid "Group Report" +msgstr "Informe del grupo" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:231 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:853 +#: ../../mobile/operation/groups.php:137 +#: ../../include/functions_reporting_html.php:4583 +#: ../../include/class/Diagnostics.class.php:540 +#: ../../include/functions_reporting.php:9226 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:607 +#: ../../operation/tree.php:355 +msgid "Total agents" +msgstr "Agentes totales" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Uknown agents" +msgstr "Agentes desconocidos" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:232 +#: ../../godmode/groups/group_list.php:854 +#: ../../godmode/module_library/module_library_view.php:141 +#: ../../include/class/Diagnostics.class.php:544 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:608 +#: ../../operation/tree.php:356 +msgid "Total modules" +msgstr "Módulos totales" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../include/functions_reporting.php:9080 +msgid "Defined alerts" +msgstr "Alertas definidas" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:236 +#: ../../enterprise/operation/services/services.treeview_services.php:237 +#: ../../enterprise/operation/services/services.treeview_services.php:238 +#: ../../godmode/groups/group_list.php:858 +#: ../../godmode/groups/group_list.php:859 +#: ../../godmode/groups/group_list.php:860 +#: ../../include/functions_graph.php:2468 +#: ../../include/functions_reporting.php:9094 +#: ../../include/functions_reporting.php:9110 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:612 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:614 +#: ../../operation/tree.php:360 ../../operation/tree.php:361 +#: ../../operation/tree.php:362 +msgid "Fired alerts" +msgstr "Alertas disparadas" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Last 8 hours events" +msgstr "Eventos en las últimas 8 horas" + +#: ../../enterprise/include/functions_reporting_csv.php:841 +#: ../../include/functions_reports.php:758 +#: ../../include/functions_reports.php:764 +msgid "Group report" +msgstr "Grupo de informes" + +#: ../../enterprise/include/functions_reporting_csv.php:916 +msgid "Illegal query or any other error" +msgstr "Consulta ilegal o cualquier otro error" + +#: ../../enterprise/include/functions_reporting_csv.php:938 +#: ../../include/functions_reports.php:653 +msgid "SQL vertical bar graph" +msgstr "Gráfico de barra vertical SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:940 +msgid "SQL horizontal bar graph" +msgstr "Gráfica de barras horizontales SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../include/functions_reports.php:657 +msgid "SQL pie graph" +msgstr "Gráfico circular de SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:971 +#: ../../enterprise/include/functions_reporting_csv.php:989 +#: ../../enterprise/include/functions_reporting_csv.php:991 +#: ../../include/functions_reports.php:739 +#: ../../include/functions_reporting.php:4858 +#: ../../include/functions_reporting.php:7592 +msgid "Summatory" +msgstr "Sumatorio" + +#: ../../enterprise/include/functions_reporting_csv.php:1021 +#: ../../enterprise/include/functions_reporting_csv.php:1023 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1031 +msgid "Minimum Value" +msgstr "Valor mínimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1036 +#: ../../include/functions_reporting.php:7596 +msgid "Minimum" +msgstr "Mínimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/functions_reporting_csv.php:1078 +#: ../../enterprise/include/functions_reporting_csv.php:1084 +#: ../../enterprise/include/functions_reporting_csv.php:1086 +msgid "Maximun Value" +msgstr "Valor máximo" + +#: ../../enterprise/include/functions_reporting_csv.php:1112 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1130 +#: ../../enterprise/include/functions_reporting_csv.php:1141 +#: ../../include/functions_reporting_html.php:2914 +#: ../../include/functions_reports.php:747 +#: ../../include/functions_reporting.php:7217 +msgid "Increment" +msgstr "Incremento" + +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../include/functions_reporting_html.php:2912 +msgid "From data" +msgstr "Desde datos" + +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../include/functions_reporting_html.php:2913 +msgid "To data" +msgstr "hasta datos" + +#: ../../enterprise/include/functions_reporting_csv.php:1132 +#: ../../enterprise/include/functions_reporting_csv.php:1143 +#: ../../include/functions_reporting_html.php:2941 +msgid "Negative increase: " +msgstr "Incremento negativo: " + +#: ../../enterprise/include/functions_reporting_csv.php:1134 +#: ../../enterprise/include/functions_reporting_csv.php:1145 +#: ../../include/functions_reporting_html.php:2943 +msgid "Positive increase: " +msgstr "Incremento positivo: " + +#: ../../enterprise/include/functions_reporting_csv.php:1136 +#: ../../enterprise/include/functions_reporting_csv.php:1147 +#: ../../include/functions_reporting_html.php:2945 +msgid "Neutral increase: " +msgstr "Incremento neutral: " + +#: ../../enterprise/include/functions_reporting_csv.php:1161 +#: ../../enterprise/include/functions_reporting_csv.php:1180 +#: ../../enterprise/include/functions_reporting_csv.php:1182 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../enterprise/include/functions_reporting_csv.php:1190 +#: ../../include/functions_reporting.php:4854 +msgid "AVG. Value" +msgstr "Valor medio" + +#: ../../enterprise/include/functions_reporting_csv.php:1195 +msgid "AVG" +msgstr "Media" + +#: ../../enterprise/include/functions_reporting_csv.php:1216 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1236 +#: ../../include/functions_reporting.php:4342 +msgid "Monitor Report" +msgstr "Informe de monitores" + +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "% Wrong" +msgstr "% Mal" + +#: ../../enterprise/include/functions_reporting_csv.php:1245 +msgid "Simple Graph" +msgstr "Gráfico simple" + +#: ../../enterprise/include/functions_reporting_csv.php:1305 +#: ../../enterprise/include/functions_reporting_csv.php:1351 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1543 +#: ../../enterprise/include/functions_reporting_csv.php:1811 +msgid "SLA Max" +msgstr "SLA máximo" + +#: ../../enterprise/include/functions_reporting_csv.php:1306 +#: ../../enterprise/include/functions_reporting_csv.php:1352 +#: ../../enterprise/include/functions_reporting_csv.php:1425 +#: ../../enterprise/include/functions_reporting_csv.php:1544 +#: ../../enterprise/include/functions_reporting_csv.php:1812 +msgid "SLA Min" +msgstr "SLA mínimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1307 +#: ../../enterprise/include/functions_reporting_csv.php:1353 +#: ../../enterprise/include/functions_reporting_csv.php:1426 +#: ../../enterprise/include/functions_reporting_csv.php:1545 +#: ../../enterprise/include/functions_reporting_csv.php:1813 +#: ../../enterprise/include/functions_reporting.php:1678 +#: ../../enterprise/include/functions_reporting.php:2578 +#: ../../enterprise/include/functions_reporting.php:3570 +#: ../../enterprise/include/functions_reporting.php:5359 +#: ../../include/functions_reporting_html.php:495 +msgid "SLA Limit" +msgstr "Límite del SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1308 +#: ../../enterprise/include/functions_reporting_csv.php:1354 +msgid "Time Total " +msgstr "Tiempo total " + +#: ../../enterprise/include/functions_reporting_csv.php:1309 +#: ../../enterprise/include/functions_reporting_csv.php:1355 +msgid "Time OK " +msgstr "Tiempo OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1310 +#: ../../enterprise/include/functions_reporting_csv.php:1356 +msgid "Time Error " +msgstr "Tiempo de error " + +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1357 +msgid "Time Unknown " +msgstr "Tiempo en desconocido " + +#: ../../enterprise/include/functions_reporting_csv.php:1312 +#: ../../enterprise/include/functions_reporting_csv.php:1358 +msgid "Time Not Init " +msgstr "Tiempo no iniciado " + +#: ../../enterprise/include/functions_reporting_csv.php:1313 +#: ../../enterprise/include/functions_reporting_csv.php:1359 +msgid "Time Downtime " +msgstr "Tiempo en parada planificada " + +#: ../../enterprise/include/functions_reporting_csv.php:1314 +#: ../../enterprise/include/functions_reporting_csv.php:1360 +msgid "Checks Total " +msgstr "Comprobaciones totales " + +#: ../../enterprise/include/functions_reporting_csv.php:1315 +#: ../../enterprise/include/functions_reporting_csv.php:1361 +msgid "Checks OK " +msgstr "Comprobaciones OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1362 +msgid "Checks Error " +msgstr "Comprobaciones con error " + +#: ../../enterprise/include/functions_reporting_csv.php:1317 +#: ../../enterprise/include/functions_reporting_csv.php:1363 +msgid "Checks Unknown " +msgstr "Comprobaciones en desconocido " + +#: ../../enterprise/include/functions_reporting_csv.php:1318 +#: ../../enterprise/include/functions_reporting_csv.php:1364 +msgid "Checks Not Init " +msgstr "Comprobaciones en no iniciado " + +#: ../../enterprise/include/functions_reporting_csv.php:1319 +#: ../../enterprise/include/functions_reporting_csv.php:1365 +msgid "SLA " +msgstr "SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1366 +msgid "Status " +msgstr "Estado " + +#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../enterprise/include/functions_reporting_csv.php:1388 +#: ../../enterprise/include/functions_reporting_csv.php:1706 +#: ../../enterprise/include/functions_reporting.php:1698 +#: ../../enterprise/include/functions_reporting.php:1739 +#: ../../enterprise/include/functions_reporting.php:2603 +#: ../../enterprise/include/functions_reporting.php:2662 +#: ../../enterprise/include/functions_reporting.php:3596 +#: ../../enterprise/include/functions_reporting.php:3655 +#: ../../enterprise/include/functions_reporting.php:5383 +#: ../../include/functions_reporting_html.php:602 +#: ../../include/functions_config.php:1172 +#: ../../include/functions_config.php:2843 +msgid "Fail" +msgstr "Fallo" + +#: ../../enterprise/include/functions_reporting_csv.php:1412 +#: ../../enterprise/include/functions_reporting_csv.php:1528 +#: ../../enterprise/include/functions_reporting_csv.php:1728 +#: ../../enterprise/include/functions_reporting_csv.php:1796 +msgid "Subtitle" +msgstr "Subtítulo" + +#: ../../enterprise/include/functions_reporting_csv.php:1427 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +#: ../../enterprise/include/functions_reporting_csv.php:1827 +msgid "Time Total Month" +msgstr "Tiempo total del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1428 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +#: ../../enterprise/include/functions_reporting_csv.php:1828 +msgid "Time OK Month" +msgstr "Tiempo OK del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_reporting_csv.php:1829 +msgid "Time Error Month" +msgstr "Tiempo en error del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1430 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1830 +msgid "Time Unknown Month" +msgstr "Tiempo en desconocido del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1431 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1831 +msgid "Time Downtime Month" +msgstr "Tiempo en parada planificada del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1432 +#: ../../enterprise/include/functions_reporting_csv.php:1564 +#: ../../enterprise/include/functions_reporting_csv.php:1832 +msgid "Time Not Init Month" +msgstr "Tiempo en no iniciado del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1565 +#: ../../enterprise/include/functions_reporting_csv.php:1833 +msgid "Checks Total Month" +msgstr "Comprobaciones totales del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1434 +#: ../../enterprise/include/functions_reporting_csv.php:1566 +#: ../../enterprise/include/functions_reporting_csv.php:1834 +msgid "Checks OK Month" +msgstr "Comprobaciones OK del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1435 +#: ../../enterprise/include/functions_reporting_csv.php:1567 +#: ../../enterprise/include/functions_reporting_csv.php:1835 +msgid "Checks Error Month" +msgstr "Comprobaciones en error del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1436 +#: ../../enterprise/include/functions_reporting_csv.php:1568 +#: ../../enterprise/include/functions_reporting_csv.php:1836 +msgid "Checks Unknown Month" +msgstr "Comprobaciones en desconocido del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1437 +#: ../../enterprise/include/functions_reporting_csv.php:1569 +#: ../../enterprise/include/functions_reporting_csv.php:1837 +msgid "Checks Not Init Month" +msgstr "Comprobaciones en no iniciado del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1438 +#: ../../enterprise/include/functions_reporting_csv.php:1570 +#: ../../enterprise/include/functions_reporting_csv.php:1838 +msgid "SLA Month" +msgstr "SLA mensual" + +#: ../../enterprise/include/functions_reporting_csv.php:1439 +#: ../../enterprise/include/functions_reporting_csv.php:1571 +#: ../../enterprise/include/functions_reporting_csv.php:1839 +msgid "Status Month" +msgstr "Estado del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1461 +#: ../../enterprise/include/functions_reporting.php:1847 +msgid "Day" +msgstr "Día" + +#: ../../enterprise/include/functions_reporting_csv.php:1462 +#: ../../enterprise/include/functions_reporting_csv.php:1617 +msgid "Time Total Day" +msgstr "Tiempo total del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1463 +#: ../../enterprise/include/functions_reporting_csv.php:1618 +msgid "Time OK Day" +msgstr "Tiempo en OK del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1464 +#: ../../enterprise/include/functions_reporting_csv.php:1619 +msgid "Time Error Day" +msgstr "Tiempo en error del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1465 +#: ../../enterprise/include/functions_reporting_csv.php:1620 +msgid "Time Unknown Day" +msgstr "Tiempo en desconocido del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1466 +#: ../../enterprise/include/functions_reporting_csv.php:1621 +msgid "Time Not Init Day" +msgstr "Tiempo en no iniciado del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1467 +#: ../../enterprise/include/functions_reporting_csv.php:1622 +msgid "Time Downtime Day" +msgstr "Tiempo en parada planificada del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1468 +#: ../../enterprise/include/functions_reporting_csv.php:1623 +msgid "Time Out Day" +msgstr "Tiempo fuera del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1469 +#: ../../enterprise/include/functions_reporting_csv.php:1624 +msgid "Checks Total Day" +msgstr "Comprobaciones totales del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1470 +#: ../../enterprise/include/functions_reporting_csv.php:1625 +msgid "Checks OK Day" +msgstr "Comprobaciones en OK del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1471 +#: ../../enterprise/include/functions_reporting_csv.php:1626 +msgid "Checks Error Day" +msgstr "Comprobaciones en error del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1472 +#: ../../enterprise/include/functions_reporting_csv.php:1627 +msgid "Checks Unknown Day" +msgstr "Comprobaciones en desconocido del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1473 +#: ../../enterprise/include/functions_reporting_csv.php:1628 +msgid "Checks Not Init Day" +msgstr "Comprobaciones en no iniciado del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1474 +#: ../../enterprise/include/functions_reporting_csv.php:1629 +msgid "SLA Day" +msgstr "SLA diario" + +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1630 +msgid "SLA Fixed Day" +msgstr "SLA de día fijo" + +#: ../../enterprise/include/functions_reporting_csv.php:1476 +#: ../../enterprise/include/functions_reporting_csv.php:1631 +msgid "Date From Day" +msgstr "Fecha desde día" + +#: ../../enterprise/include/functions_reporting_csv.php:1477 +#: ../../enterprise/include/functions_reporting_csv.php:1632 +msgid "Date To Day" +msgstr "Fecha hasta día" + +#: ../../enterprise/include/functions_reporting_csv.php:1478 +#: ../../enterprise/include/functions_reporting_csv.php:1633 +msgid "Status Day" +msgstr "Estado del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1538 +#: ../../enterprise/include/functions_reporting_csv.php:1806 +#: ../../include/functions_html.php:1597 +msgid "Month" +msgstr "Mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:1807 +msgid "Month Number" +msgstr "Número de mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1540 +#: ../../enterprise/include/functions_reporting_csv.php:1808 +msgid "Year" +msgstr "Año" + +#: ../../enterprise/include/functions_reporting_csv.php:1590 +msgid "Time Total week" +msgstr "Tiempo total de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1591 +msgid "Time OK week" +msgstr "Tiempo en OK de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1592 +msgid "Time Error week" +msgstr "Tiempo en error de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1593 +msgid "Time Unknown week" +msgstr "Tiempo en desconocido de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1594 +msgid "Time Downtime week" +msgstr "Tiempo en parada planificada de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1595 +msgid "Time Not Init week" +msgstr "Tiempo en no iniciado de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1596 +msgid "Checks Total week" +msgstr "Comprobaciones totales de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1597 +msgid "Checks OK week" +msgstr "Comprobaciones en OK de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1598 +msgid "Checks Error week" +msgstr "Comprobaciones en error de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1599 +msgid "Checks Unknown week" +msgstr "Comprobaciones en desconocido de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1600 +msgid "Status week" +msgstr "Estado de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1616 +msgid "Day Week" +msgstr "Día de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1668 +msgid "S.L.A. Services" +msgstr "Servicios S.L.A" + +#: ../../enterprise/include/functions_reporting_csv.php:1686 +msgid "Lost sercice " +msgstr "Servicio perdido " + +#: ../../enterprise/include/functions_reporting_csv.php:1687 +msgid "Service " +msgstr "Servicio " + +#: ../../enterprise/include/functions_reporting_csv.php:1688 +msgid "Limit " +msgstr "Límite " + +#: ../../enterprise/include/functions_reporting_csv.php:1689 +msgid "SLA Compilance " +msgstr "Cumplimiento SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1690 +msgid "Unknown " +msgstr "Desconocido " + +#: ../../enterprise/include/functions_reporting_csv.php:1691 +msgid "Ok " +msgstr "Ok " + +#: ../../enterprise/include/functions_reporting_csv.php:1692 +msgid "Fail " +msgstr "Error " + +#: ../../enterprise/include/functions_reporting_csv.php:1693 +msgid "Result " +msgstr "Resultado " + +#: ../../enterprise/include/functions_reporting_csv.php:1738 +msgid "SLA max" +msgstr "SLA máximo" + +#: ../../enterprise/include/functions_reporting_csv.php:1739 +msgid "SLA min" +msgstr "SLA mínimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1740 +msgid "SLA limit" +msgstr "Límite de SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1741 +#: ../../include/functions_reporting_html.php:527 +msgid "Time Total" +msgstr "Tiempo total" + +#: ../../enterprise/include/functions_reporting_csv.php:1742 +#: ../../include/functions_reporting_html.php:529 +#: ../../include/functions_reporting_html.php:3053 +msgid "Time OK" +msgstr "Tiempo OK" + +#: ../../enterprise/include/functions_reporting_csv.php:1743 +msgid "Time Error" +msgstr "Tiempo de error" + +#: ../../enterprise/include/functions_reporting_csv.php:1744 +#: ../../include/functions_reporting_html.php:530 +#: ../../include/functions_reporting_html.php:3059 +msgid "Time Unknown" +msgstr "Tiempo desconocido" + +#: ../../enterprise/include/functions_reporting_csv.php:1745 +#: ../../include/functions_reporting_html.php:531 +msgid "Time Not Init" +msgstr "Tiempo no iniciado" + +#: ../../enterprise/include/functions_reporting_csv.php:1746 +#: ../../include/functions_reporting_html.php:3071 +msgid "Time Downtime" +msgstr "Tiempo de parada planificada" + +#: ../../enterprise/include/functions_reporting_csv.php:1747 +#: ../../include/functions_reporting_html.php:558 +msgid "Checks Total" +msgstr "Comprobaciones totales" + +#: ../../enterprise/include/functions_reporting_csv.php:1748 +#: ../../include/functions_reporting_html.php:560 +#: ../../include/functions_reporting_html.php:3138 +msgid "Checks OK" +msgstr "Comprobaciones OK" + +#: ../../enterprise/include/functions_reporting_csv.php:1749 +msgid "Checks Error" +msgstr "Comprobaciones en error" + +#: ../../enterprise/include/functions_reporting_csv.php:1750 +#: ../../include/functions_reporting_html.php:561 +msgid "Checks Unknown" +msgstr "Comprobaciones desconocidas" + +#: ../../enterprise/include/functions_reporting_csv.php:1751 +msgid "Checks Not Init" +msgstr "Comprobaciones en no iniciado" + +#: ../../enterprise/include/functions_reporting_csv.php:1752 +#: ../../enterprise/operation/services/services.service.php:175 +#: ../../enterprise/operation/services/services.list.php:434 +#: ../../include/functions_reports.php:683 +#: ../../include/functions_reports.php:688 +#: ../../include/functions_reports.php:692 +#: ../../include/functions_reports.php:696 +#: ../../include/functions_reports.php:702 +msgid "SLA" +msgstr "SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1753 +msgid "SLA Fixed" +msgstr "SLA fijo" + +#: ../../enterprise/include/functions_reporting_csv.php:1858 +msgid "Time Total day" +msgstr "Tiempo total del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1859 +msgid "Time OK day" +msgstr "Tiempo en OK del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1860 +msgid "Time Error day" +msgstr "Tiempo en error del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1861 +msgid "Time Unknown day" +msgstr "Tiempo en desconocido del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1862 +msgid "Time Downtime day" +msgstr "Tiempo en parada planificada del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1863 +msgid "Time Not Init day" +msgstr "Tiempo en no iniciado del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1864 +msgid "Checks Total day" +msgstr "Comprobaciones totales del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1865 +msgid "Checks OK day" +msgstr "Comprobaciones en OK del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1866 +msgid "Checks Error day" +msgstr "Comprobaciones en error del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1867 +msgid "Checks Unknown day" +msgstr "Comprobaciones en desconocido del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1868 +msgid "Status day" +msgstr "Estado del día" + +#: ../../enterprise/include/functions_reporting_csv.php:1884 +#: ../../enterprise/include/functions_events.php:230 +msgid "Hours" +msgstr "Horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1885 +msgid "Time Total hours" +msgstr "Tiempo total en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1886 +msgid "Time OK hours" +msgstr "Tiempo en OK en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1887 +msgid "Time Error hours" +msgstr "Tiempo en error en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1888 +msgid "Time Unknown hours" +msgstr "Tiempo en desconocido en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1889 +msgid "Time Not Init hours" +msgstr "Tiempo en no iniciado en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1890 +msgid "Time Downtime hours" +msgstr "Tiempo en parada planificada en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1891 +msgid "Time Out hours" +msgstr "Tiempo fuera en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1892 +msgid "Checks Total hours" +msgstr "Comprobaciones totales en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1893 +msgid "Checks OK hours" +msgstr "Comprobaciones en OK en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1894 +msgid "Checks Error hours" +msgstr "Comprobaciones en error en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1895 +msgid "Checks Unknown hours" +msgstr "Comprobaciones en desconocido en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1896 +msgid "Checks Not Init hours" +msgstr "Comprobaciones en no iniciado en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1897 +msgid "SLA hours" +msgstr "SLA horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1898 +msgid "SLA Fixed hours" +msgstr "SLA horario fijo" + +#: ../../enterprise/include/functions_reporting_csv.php:1899 +msgid "Date From hours" +msgstr "Desde" + +#: ../../enterprise/include/functions_reporting_csv.php:1900 +msgid "Date To hours" +msgstr "Hasta" + +#: ../../enterprise/include/functions_reporting_csv.php:1901 +msgid "Status hours" +msgstr "Estado horas" + +#: ../../enterprise/include/functions_reporting_csv.php:1945 +#: ../../include/functions_netflow.php:1230 +msgid "Sent" +msgstr "Enviado" + +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_config.php:895 +#: ../../include/functions_config.php:2767 +#: ../../operation/network/network_report.php:218 +#: ../../operation/network/network_report.php:250 +msgid "Bytes" +msgstr "Bytes" + +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_reporting_html.php:5115 +msgid "Packages" +msgstr "Paquetes" + +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../include/functions_netflow.php:1238 +msgid "Received" +msgstr "Recibido" + +#: ../../enterprise/include/functions_reporting_csv.php:2037 +#: ../../include/functions.php:231 +msgid "." +msgstr "." + +#: ../../enterprise/include/functions_reporting_csv.php:2052 +msgid "Simple Baseline Graph" +msgstr "Gráfica simple base" + +#: ../../enterprise/include/functions_reporting_csv.php:2083 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:554 +msgid "Custom Graph" +msgstr "Gráfica personalizada" + +#: ../../enterprise/include/functions_reporting_csv.php:2207 +#: ../../include/functions_reporting.php:4081 +msgid "Alert Report Module" +msgstr "Informe de alertas de módulo" + +#: ../../enterprise/include/functions_reporting_csv.php:2209 +#: ../../include/functions_reporting.php:3923 +msgid "Alert Report Agent" +msgstr "Informe de alertas de agente" + +#: ../../enterprise/include/functions_reporting_csv.php:2211 +#: ../../include/functions_reporting.php:3734 +msgid "Alert Report Group" +msgstr "Informe de alertas de grupo" + +#: ../../enterprise/include/functions_reporting_csv.php:2229 +msgid "Actions Triggered" +msgstr "Acciones disparadas" + +#: ../../enterprise/include/functions_reporting_csv.php:2229 +msgid "Template Triggered" +msgstr "Plantillas disparadas" + +#: ../../enterprise/include/functions_reporting_csv.php:2266 +msgid "Event Report Log" +msgstr "Log de informes de eventos" + +#: ../../enterprise/include/functions_reporting_csv.php:2295 +#: ../../include/functions_reporting.php:4472 +msgid "Netflow Area" +msgstr "Área de Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2297 +#: ../../include/functions_reporting.php:4480 +msgid "Netflow Data" +msgstr "Datos de Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2299 +#: ../../include/functions_reporting.php:4476 +msgid "Netflow Summary" +msgstr "Resumen de Netflow" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "$" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "Despliegues actuales" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "Análisis de costes" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "Estimación actual de costes" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "Coste del periodo anterior" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "Estado de reserva" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1747 +#: ../../godmode/servers/plugin.php:1033 +msgid "Deploy" +msgstr "Desplegar" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "Recuperar" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "Promover" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "Degradar" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1744 +msgid "Cleanup" +msgstr "Limpiar" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "Volver a sincronizar" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "Error en la autenticación de clave pública" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "Conexion fallida" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "Registrar" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "Registrar nuevo nodo" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2982 +msgid "Update node" +msgstr "Actualizar nodo" + +#: ../../enterprise/include/class/Azure.cloud.php:137 +#: ../../enterprise/include/class/Aws.cloud.php:92 +msgid "Cloud message" +msgstr "Mensaje en la nube" + +#: ../../enterprise/include/class/Azure.cloud.php:142 +#: ../../include/class/CredentialStore.class.php:871 +msgid "Azure" +msgstr "Azure" + +#: ../../enterprise/include/class/Azure.cloud.php:237 +msgid "Task details" +msgstr "Detalles de la tarea" + +#: ../../enterprise/include/class/Azure.cloud.php:238 +msgid "Instance explorer" +msgstr "Buscador de instancias" + +#: ../../enterprise/include/class/Azure.cloud.php:239 +msgid "Metrics" +msgstr "Métricas" + +#: ../../enterprise/include/class/Azure.cloud.php:296 +msgid "Microsoft Compute" +msgstr "Microsoft Compute" + +#: ../../enterprise/include/class/Azure.cloud.php:344 +#: ../../enterprise/include/class/Aws.cloud.php:1375 +#, php-format +msgid "%s not found or not executable" +msgstr "%s no encontrado o no ejecutable" + +#: ../../enterprise/include/class/Azure.cloud.php:572 +#: ../../enterprise/include/class/Azure.cloud.php:620 +msgid "Unauthorized access" +msgstr "Acceso no autorizado" + +#: ../../enterprise/include/class/Azure.cloud.php:734 +#: ../../enterprise/include/class/VMware.app.php:518 +#: ../../enterprise/include/class/SAP.app.php:459 +#: ../../enterprise/include/class/Aws.cloud.php:1086 +#: ../../enterprise/include/class/MySQL.app.php:441 +#: ../../enterprise/include/class/Oracle.app.php:439 +#: ../../godmode/wizards/HostDevices.class.php:834 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:423 +#: ../../include/class/CustomNetScan.class.php:445 +#: ../../operation/servers/recon_view.php:94 +msgid "Task name" +msgstr "Nombre de la tarea" + +#: ../../enterprise/include/class/Azure.cloud.php:796 +#: ../../enterprise/include/class/Aws.cloud.php:621 +#: ../../enterprise/include/class/Aws.cloud.php:1159 +msgid "No instances found." +msgstr "No se han encontrado instancias." + +#: ../../enterprise/include/class/Azure.cloud.php:833 +msgid "Select target virtual machines" +msgstr "Seleccionar máquinas virtuales de destino" + +#: ../../enterprise/include/class/Azure.cloud.php:852 +#: ../../enterprise/include/class/Aws.cloud.php:550 +msgid "Scan and general monitoring." +msgstr "Escaneo y monitorización general." + +#: ../../enterprise/include/class/Azure.cloud.php:865 +#: ../../enterprise/include/class/Aws.cloud.php:567 +msgid "Cpu performance summary" +msgstr "Resumen del rendimiento de CPU" + +#: ../../enterprise/include/class/Azure.cloud.php:873 +#: ../../enterprise/include/class/Aws.cloud.php:577 +msgid "IOPS performance summary" +msgstr "Resumen del rendimiento de IOPS" + +#: ../../enterprise/include/class/Azure.cloud.php:881 +#: ../../enterprise/include/class/Aws.cloud.php:587 +msgid "Disk performance summary" +msgstr "Resumen del rendimiento de disco" + +#: ../../enterprise/include/class/Azure.cloud.php:889 +#: ../../enterprise/include/class/Aws.cloud.php:597 +msgid "Network performance summary" +msgstr "Resumen del rendimiento de la red" + +#: ../../enterprise/include/class/Azure.cloud.php:914 +#: ../../enterprise/include/class/VMware.app.php:897 +#: ../../enterprise/include/class/SAP.app.php:844 +#: ../../enterprise/include/class/Aws.cloud.php:1473 +#: ../../enterprise/include/class/MySQL.app.php:942 +#: ../../enterprise/include/class/Oracle.app.php:971 +#: ../../godmode/wizards/HostDevices.class.php:1212 +#: ../../include/class/CustomNetScan.class.php:756 +msgid "Task configured." +msgstr "Tarea configurada." + +#: ../../enterprise/include/class/Azure.cloud.php:918 +#: ../../enterprise/include/class/VMware.app.php:901 +#: ../../enterprise/include/class/SAP.app.php:848 +#: ../../enterprise/include/class/MySQL.app.php:946 +#: ../../enterprise/include/class/Oracle.app.php:975 +#: ../../godmode/wizards/HostDevices.class.php:1216 +#: ../../include/class/CustomNetScan.class.php:760 +msgid "Wizard failed. Cannot configure task." +msgstr "Error del asistente. No puede configurar la tarea." + +#: ../../enterprise/include/class/SSH.class.php:177 +msgid "Failed to connect" +msgstr "No se ha podido conectar" + +#: ../../enterprise/include/class/SSH.class.php:229 +#, php-format +msgid "Unable to open public key file %s" +msgstr "No se ha podido abrir el archivo de clave pública %s" + +#: ../../enterprise/include/class/SSH.class.php:248 +msgid "Failed to login to target" +msgstr "No se ha podido iniciar sesión en el objetivo" + +#: ../../enterprise/include/class/VMware.app.php:206 +msgid "" +"This VMware configuration has been already defined. Please edit it or create " +"a new one." +msgstr "Ya se ha definido la configuración VMware. Edítela o cree una nueva." + +#: ../../enterprise/include/class/VMware.app.php:240 +#: ../../enterprise/include/class/SAP.app.php:186 +#: ../../enterprise/include/class/Aws.cloud.php:802 +#: ../../enterprise/include/class/MySQL.app.php:205 +#: ../../enterprise/include/class/Oracle.app.php:197 +#: ../../godmode/wizards/HostDevices.class.php:416 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "Añada un nombre a la tarea" + +#: ../../enterprise/include/class/VMware.app.php:245 +#: ../../enterprise/include/class/SAP.app.php:191 +#: ../../enterprise/include/class/Aws.cloud.php:807 +#: ../../enterprise/include/class/MySQL.app.php:210 +#: ../../enterprise/include/class/Oracle.app.php:202 +#: ../../godmode/wizards/HostDevices.class.php:421 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "Seleccione un servidor de Discovery" + +#: ../../enterprise/include/class/VMware.app.php:250 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "Añada una IP V-Center o FQDN válida." + +#: ../../enterprise/include/class/VMware.app.php:255 +#: ../../enterprise/include/class/SAP.app.php:201 +#: ../../enterprise/include/class/Aws.cloud.php:812 +#: ../../enterprise/include/class/MySQL.app.php:225 +#: ../../enterprise/include/class/Oracle.app.php:212 +#: ../../godmode/wizards/HostDevices.class.php:432 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "Seleccione un grupo válido." + +#: ../../enterprise/include/class/VMware.app.php:261 +msgid "Discovery.Application.VMware" +msgstr "Discovery.Application.VMware" + +#: ../../enterprise/include/class/VMware.app.php:326 +msgid "Failed to find discovery VMware task." +msgstr "No se ha podido encontrar la tarea de discovery VMware." + +#: ../../enterprise/include/class/VMware.app.php:341 +msgid "Threads must be equal or greater than 1." +msgstr "Los hilos deben ser igual o mayor que 1." + +#: ../../enterprise/include/class/VMware.app.php:441 +#: ../../enterprise/include/class/SAP.app.php:315 +#: ../../enterprise/include/class/MySQL.app.php:402 +#: ../../enterprise/include/class/Oracle.app.php:388 +msgid "Application" +msgstr "Aplicación" + +#: ../../enterprise/include/class/VMware.app.php:491 +#: ../../enterprise/include/class/SAP.app.php:434 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:570 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1175 +#: ../../godmode/setup/setup_integria.php:558 +#: ../../godmode/wizards/HostDevices.class.php:768 +#: ../../include/class/CustomNetScan.class.php:551 +msgid "Update and continue" +msgstr "Actualizar y continuar" + +#: ../../enterprise/include/class/VMware.app.php:529 +#: ../../enterprise/include/class/SAP.app.php:472 +#: ../../enterprise/include/class/Aws.cloud.php:1098 +#: ../../enterprise/include/class/MySQL.app.php:453 +#: ../../enterprise/include/class/Oracle.app.php:451 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/class/CustomNetScan.class.php:479 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task " +"will never run" +msgstr "" +"Seleccione un servidos de Discovery para ejecutar la tarea, si no la tarea " +"de reconocimiento no se ejecutará" + +#: ../../enterprise/include/class/VMware.app.php:549 +msgid "Datacenter user" +msgstr "Usuario del datacenter" + +#: ../../enterprise/include/class/VMware.app.php:561 +#: ../../enterprise/include/class/SAP.app.php:494 +#: ../../enterprise/include/class/Aws.cloud.php:1204 +#: ../../enterprise/include/class/MySQL.app.php:557 +#: ../../enterprise/include/class/Oracle.app.php:538 +#: ../../godmode/wizards/HostDevices.class.php:795 +#: ../../include/class/CustomNetScan.class.php:519 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "Intervalo manual significa que será ejecutado solo bajo demanda." + +#: ../../enterprise/include/class/VMware.app.php:568 +#: ../../enterprise/include/class/VMware.app.php:776 +#: ../../enterprise/include/class/SAP.app.php:501 +#: ../../enterprise/include/class/Aws.cloud.php:1211 +#: ../../enterprise/include/class/MySQL.app.php:564 +#: ../../enterprise/include/class/Oracle.app.php:545 +#: ../../godmode/wizards/HostDevices.class.php:802 +#: ../../include/functions_reporting_html.php:1914 +#: ../../include/class/CustomNetScan.class.php:526 +msgid "Defined" +msgstr "Definido" + +#: ../../enterprise/include/class/VMware.app.php:586 +#: ../../enterprise/include/class/SAPView.class.php:242 +#: ../../enterprise/include/class/SAPView.class.php:279 +#: ../../enterprise/include/class/SAP.app.php:519 +#: ../../enterprise/include/class/Aws.cloud.php:1228 +#: ../../enterprise/include/class/MySQL.app.php:581 +#: ../../enterprise/include/class/Oracle.app.php:562 +msgid "The minimum recomended interval is 5 minutes" +msgstr "El intervalo mínimo recomendado es de 5 minutos" + +#: ../../enterprise/include/class/VMware.app.php:600 +msgid "V-Center IP" +msgstr "V-Center IP" + +#: ../../enterprise/include/class/VMware.app.php:611 +msgid "Datacenter name" +msgstr "Nombre del centro de datos" + +#: ../../enterprise/include/class/VMware.app.php:612 +msgid "" +"This name must match with the name wich appears when you log in you VMware " +"manager" +msgstr "" +"El nombre debe coincidir con el nombre que aparece al iniciar sesión en el " +"gestor de VMware." + +#: ../../enterprise/include/class/VMware.app.php:642 +msgid "Encrypt passwords" +msgstr "Cifrar contraseñas" + +#: ../../enterprise/include/class/VMware.app.php:656 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/Aws.cloud.php:1119 +#: ../../enterprise/include/class/MySQL.app.php:474 +#: ../../enterprise/include/class/Oracle.app.php:472 +msgid "This group will be used also to classify discovered agents" +msgstr "Este grupo se usará para clasificar los agentes encontrados" + +#: ../../enterprise/include/class/VMware.app.php:759 +msgid "Max threads" +msgstr "Máximo de hilos" + +#: ../../enterprise/include/class/VMware.app.php:768 +msgid "Re-scan interval" +msgstr "Intervalo de re-escaneo" + +#: ../../enterprise/include/class/VMware.app.php:769 +msgid "Enables re-scan entities process every interval defined." +msgstr "" +"Hace posible que las entidades de re-escaneo procesen todos los intervalos " +"definidos." + +#: ../../enterprise/include/class/VMware.app.php:802 +msgid "Retry send" +msgstr "Reintentar envío" + +#: ../../enterprise/include/class/VMware.app.php:812 +msgid "Event mode" +msgstr "Modo de evento" + +#: ../../enterprise/include/class/VMware.app.php:812 +msgid "Only for VCenter." +msgstr "Solo para VCenter." + +#: ../../enterprise/include/class/VMware.app.php:822 +msgid "Virtual network monitoring" +msgstr "Monitorización de redes virtuales" + +#: ../../enterprise/include/class/VMware.app.php:847 +msgid "Extra settings" +msgstr "Ajustes adicionales" + +#: ../../enterprise/include/class/VMware.app.php:848 +msgid "This RAW block will be directly added to config file." +msgstr "Este bloque RAM se añadirá directamente al archivo de configuración." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "Se requiere dirección IP" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:413 +msgid "Target OS is required" +msgstr "Se requiere SO de destion" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:415 +msgid "Target architecture is required" +msgstr "Se requiere arquitectura de destino" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "Se requieren credenciales de uso" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "Se requiere la versión de agente deseada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "Objetivo ya definido." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "Objetivo añadido correctamente" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "Objetivo actualizado correctamente" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:574 +msgid "Target successfully deleted" +msgstr "Objetivo borrado correctamente" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "Especifique un servidor Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "Seleccione algunos de los objetivos a desplegar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1055 +msgid "Failed to schedule" +msgstr "No se ha podido programar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "Despliegue programado" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "Se necesita archivo CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:554 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:351 +msgid "Host & Devices" +msgstr "Host y dispositivos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:581 +msgid "Deployment center" +msgstr "Centro de despliegue" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:597 +msgid "There are no targets defined yet, please add some." +msgstr "Aún no hay objetivos definidos, añada alguno." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:604 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "Programe %s para que el software esté disponible para los objetivos." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:617 +#: ../../enterprise/include/class/SAP.app.php:350 +msgid "here" +msgstr "aquí" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:616 #, php-format msgid "" -"This is an advanced extension to interface with %s database directly from " -"WEB console\n" -"\t\tusing native SQL sentences. Please note that you can damage your " -"%s installation\n" -"\t\tif you don't know exactly what are you are doing,\n" -"\t\tthis means that you can severily damage your setup using this " -"extension.\n" -"\t\tThis extension is intended to be used only by experienced users\n" -"\t\twith a depth knowledge of %s internals." +"There are no software agents in your repository yet, please add some %s." +msgstr "No hay agentes software en el repositorio, añada algunos %s." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:635 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1711 +msgid "Scan for targets" +msgstr "Escaneo de objetivos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +msgid "Add target" +msgstr "Añadir destino" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:653 +msgid "Load targets" +msgstr "Cargar destinos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:717 +#: ../../enterprise/include/class/DeploymentCenter.class.php:785 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../enterprise/include/class/AgentRepository.class.php:348 +#: ../../enterprise/include/class/AgentRepository.class.php:614 +#: ../../enterprise/include/class/AgentRepository.class.php:664 +msgid "Architecture" +msgstr "Arquitectura" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:718 +msgid "Key identifier" +msgstr "Identificador de clave" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:719 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1182 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1319 +msgid "Target server IP" +msgstr "IP del servidor de destino" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:720 +msgid "Agent version installed" +msgstr "Verison de agente instalada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:721 +msgid "Agent version desired" +msgstr "Versión de agente deseada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:722 +msgid "Installation date" +msgstr "Fecha de instalación" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:723 +msgid "Last error" +msgstr "Último error" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:771 +msgid "Server IP" +msgstr "IP del servidor" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:796 +msgid "State" +msgstr "Estado" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:828 +msgid "Deploy agent to targets" +msgstr "Desplegar agentes a destinos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:916 +#: ../../enterprise/include/class/AgentRepository.class.php:259 +msgid "Deploying" +msgstr "Desplegar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1002 +msgid "You must define a network." +msgstr "Defina una red." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1004 +msgid "You must select at least one credential to test." +msgstr "Seleccione al menos un credencial a probar." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1006 +msgid "You must select a Discovery server." +msgstr "Seleccione un servidor Discovery." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1008 +msgid "Please select a desired software agent version." +msgstr "Seleccione la version deseada del agente software." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1010 +msgid "Please specify a server IP." +msgstr "Especifique una IP de servidor." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1030 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1063 +msgid "Discovery task list" +msgstr "Lista de tareas Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1029 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "Ya se está escaneando la red. Ver progreso en %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1062 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "Escaneo de red programado. Puede ver el progreso en %s." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1110 +msgid "Network/mask" +msgstr "Red/Máscara" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1119 +msgid "Scan from" +msgstr "Escanear desde" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1172 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1309 +msgid "Desired agent version" +msgstr "Versión de agente deseada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +msgid "Target agent version" +msgstr "Version de agente objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +msgid "Target server ip" +msgstr "IP del servidor objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1376 +msgid "CSV file" +msgstr "Archivo CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1436 +msgid "Select desired targets to be deployed" +msgstr "Seleccionar objetivos a desplegar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1439 +msgid "Deploy from" +msgstr "Desplegar desde" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1454 +msgid "Available targets" +msgstr "Objetivos disponibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1630 +msgid "Add new target" +msgstr "Añadir nuevo objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1633 +msgid "Update target" +msgstr "Actualizar objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1679 +msgid "Import targets from CSV" +msgstr "Importar objetivos desde CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1712 +msgid "Scan" +msgstr "Escanear" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1746 +msgid "Select targets" +msgstr "Seleccionar objetivos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:136 +#: ../../enterprise/include/class/DatabaseHA.class.php:240 +#: ../../enterprise/include/class/DatabaseHA.class.php:422 +#: ../../enterprise/include/class/DatabaseHA.class.php:432 +#: ../../enterprise/include/class/DatabaseHA.class.php:526 +#: ../../enterprise/include/class/DatabaseHA.class.php:535 +#: ../../enterprise/include/class/DatabaseHA.class.php:652 +#: ../../enterprise/include/class/DatabaseHA.class.php:661 +msgid "Error, please refresh page" +msgstr "Error, vuelva a cargar la página" + +#: ../../enterprise/include/class/DatabaseHA.class.php:141 +msgid "Action already scheduled" +msgstr "Acción ya programada" + +#: ../../enterprise/include/class/DatabaseHA.class.php:147 +msgid "Unavailable action" +msgstr "Acción no disponible" + +#: ../../enterprise/include/class/DatabaseHA.class.php:159 +msgid "" +"A node is already being synchronized, please wait until process finish." msgstr "" -"Esta es una extensión avanzada de la interfaz con la %s base de datos " -"directamente desde la consola WEB\n" -"\t\tusando comandos SQL nativos. Tenga en cuenta que puede perjudicar " -"a la %s instalación\n" -"\t\tsi no sabe exactamente lo que hace,\n" -"\t\testo significa que puede dañar seriamente la configuración al usar esta " -"extensión.\n" -"\t\tEsta extensión está destinada solamente a usuarios expertos\n" -"\t\tcon amplios conocimientos sobre el funcionamiento %s interno." +"Ya se está sincronizando un nodo, espere hasta que el proceso termine." -#: ../../extensions/dbmanager.php:124 -msgid "Execute SQL" -msgstr "Ejecutar SQL" +#: ../../enterprise/include/class/DatabaseHA.class.php:171 +msgid "Please verify resync configuration is set before use this feature." +msgstr "" +"Compruebe la configuración de resincronización antes de usar esta " +"funcionalidad" -#: ../../extensions/dbmanager.php:173 ../../godmode/menu.php:388 -msgid "DB interface" -msgstr "Interfaz de la BD" +#: ../../enterprise/include/class/DatabaseHA.class.php:189 +msgid "Successfully scheduled" +msgstr "Programado correctamente" + +#: ../../enterprise/include/class/DatabaseHA.class.php:213 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1037 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:558 +#: ../../operation/servers/recon_view.php:142 +msgid "Pending" +msgstr "Pendiente" + +#: ../../enterprise/include/class/DatabaseHA.class.php:219 +msgid "Uninitialized" +msgstr "No iniciado" + +#: ../../enterprise/include/class/DatabaseHA.class.php:475 +#: ../../enterprise/include/class/DatabaseHA.class.php:576 +#: ../../enterprise/include/class/DatabaseHA.class.php:1228 +msgid "This is not a cluster node" +msgstr "Este no es un nodo de cluster" + +#: ../../enterprise/include/class/DatabaseHA.class.php:479 +#: ../../enterprise/include/class/DatabaseHA.class.php:1232 +msgid "Failed to retrieve master position" +msgstr "No se ha podido obtener la posición de maestro" + +#: ../../enterprise/include/class/DatabaseHA.class.php:493 +#: ../../enterprise/include/class/DatabaseHA.class.php:1245 +msgid "Failed to retrieve slave information" +msgstr "No se ha podido obtener la información de esclavo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:612 +msgid "Master" +msgstr "Principal" + +#: ../../enterprise/include/class/DatabaseHA.class.php:615 +msgid "Slave" +msgstr "Esclavo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:797 +msgid "Failed to update" +msgstr "Error al actualizar" + +#: ../../enterprise/include/class/DatabaseHA.class.php:824 +#: ../../enterprise/include/class/DatabaseHA.class.php:983 +msgid "DB Replication user" +msgstr "Usuario de replicación de la base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:831 +#: ../../enterprise/include/class/DatabaseHA.class.php:992 +msgid "DB Replication user password" +msgstr "Contraseña de usuario de replicación de la base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:838 +msgid "Resync data dir" +msgstr "Resincronizar directorio de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "Resync tmp directory" +msgstr "Resincronizar directorio tmp" + +#: ../../enterprise/include/class/DatabaseHA.class.php:852 +msgid "Resync MySQL user" +msgstr "Resincronizar usuario MySQL" + +#: ../../enterprise/include/class/DatabaseHA.class.php:859 +msgid "Resync MySQL group" +msgstr "Resincronizar grupo MySQL" + +#: ../../enterprise/include/class/DatabaseHA.class.php:917 +msgid "IP or FQDN" +msgstr "IP o FQDN" + +#: ../../enterprise/include/class/DatabaseHA.class.php:918 +msgid "" +"This action only registers an already configured node. This action does not " +"configure any resource." +msgstr "" +"Esta acción solo registra un nodo ya configurado. Esta acción no configura " +"ninguna fuente." + +#: ../../enterprise/include/class/DatabaseHA.class.php:928 +msgid "Cluster node label (pcs)" +msgstr "Etiqueta de nodo de cluster (pcs)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:944 +msgid "SSH user" +msgstr "Usuario SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:952 +msgid "SSH port" +msgstr "Puerto SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:960 +msgid "SSH key" +msgstr "Clave SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:968 +msgid "SSH public key" +msgstr "Clave SSH pública" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1020 +msgid "Missed parameters" +msgstr "Parámetros omitidos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1067 +msgid "You must specify a host" +msgstr "Especifique un host" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1069 +msgid "DB port must be a positive integer" +msgstr "El puerto de la base de datos debe ser un valor positivo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1071 +msgid "SSH port must be a positive integer" +msgstr "El puerto SSH debe ser un integrante positivo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1073 +msgid "You must specify a SSH user" +msgstr "Especifique el usuario SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1075 +msgid "You must specify a replication DB user" +msgstr "Especifique un usuario de replicación de base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1077 +msgid "You must specify a replication DB pass" +msgstr "Especifique una contraseña de replicación de base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1079 +msgid "You must specify a public key path" +msgstr "Especifique una ruta de clave pública" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1081 +msgid "You must specify a private path" +msgstr "Especifique una ruta privada" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1131 +msgid "Successfully " +msgstr "Correctamente " + +#: ../../enterprise/include/class/AgentRepository.class.php:368 +msgid "Installation file" +msgstr "Archivo de instalación" + +#: ../../enterprise/include/class/AgentRepository.class.php:407 +msgid "Agent version is required" +msgstr "Se requiere versión de agente" + +#: ../../enterprise/include/class/AgentRepository.class.php:422 +msgid "Cannot create target dir [" +msgstr "No se ha podido crear el dir de destino [" + +#: ../../enterprise/include/class/AgentRepository.class.php:443 +#, php-format +msgid "Invalid installation file for %s" +msgstr "Archivo de instalación para %s no válido" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +msgid "Installation files not modified" +msgstr "Archivos de instalación no modificados" + +#: ../../enterprise/include/class/AgentRepository.class.php:492 +msgid "Installation files updated" +msgstr "Archivos de instalación actualizados" + +#: ../../enterprise/include/class/AgentRepository.class.php:499 +msgid "You must provide installation files to create a new entry." +msgstr "Añada archivos de instalación para crear una nueva entrada." + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "This agent has been already defined." +msgstr "El agente ya ha sido definido." + +#: ../../enterprise/include/class/AgentRepository.class.php:537 +msgid "Agent successfully registered and uploaded" +msgstr "Agente registrado y actualizado correctamente" + +#: ../../enterprise/include/class/AgentRepository.class.php:616 +msgid "Uploaded by" +msgstr "Subido por" + +#: ../../enterprise/include/class/AgentRepository.class.php:617 +msgid "Upload date" +msgstr "Fecha de subida" + +#: ../../enterprise/include/class/AgentRepository.class.php:696 +msgid "Add new software" +msgstr "Añadir nuevo software" + +#: ../../enterprise/include/class/AgentRepository.class.php:883 +msgid "Add new Software agent" +msgstr "Añadir nuevo agente software" + +#: ../../enterprise/include/class/AgentRepository.class.php:886 +msgid "Update Software agent" +msgstr "Actualizar agente software" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:358 +msgid "Please follow the wizard." +msgstr "Siga las instrucciones del asistente." + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:371 +msgid "You have no acess to edit this command." +msgstr "No tiene acceso para editar este comando." + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "Error al guardar comando." + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "Comando no encontrado." + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:642 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "Página no encontrada" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "Instale php-yaml para usar esta funcionalidad." + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "No iniciado" + +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:733 +#: ../../include/class/CredentialStore.class.php:836 +msgid "Identifier" +msgstr "Identificador" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "Estado de los comandos" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "Crear comando" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "Las definiciones de los comandos seleccionadas se eliminarán." + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "Tiempo fuera de servicio" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "Reintentos " + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "Condiciones previas " + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "" +"All commands defined line per line must success to execute main commands" +msgstr "" +"Todos los comandos definidos en cada línea deben ser correctos para ejecutar " +"los comandos principales" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "Ejecutar comandos " + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "Definir tantas líneas como comandos desee ejecutar" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "Condiciones posteriores " + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "" +"All commands defined line per line must success to consider command success" +msgstr "" +"Todos los comandos definidos en cada línea deben ser correctos para que el " +"comando se considere correcto" + +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../godmode/agentes/planned_downtime.editor.php:941 +msgid "Available agents" +msgstr "Agentes disponibles" + +#: ../../enterprise/include/class/Omnishell.class.php:856 +msgid "Remove agents" +msgstr "Eliminar agentes" + +#: ../../enterprise/include/class/Omnishell.class.php:866 +msgid "Selected agents" +msgstr "Agentes seleccionados" + +#: ../../enterprise/include/class/Omnishell.class.php:1105 +msgid "Selected command definition will be erased" +msgstr "La definición de comando seleccionada se eliminará" + +#: ../../enterprise/include/class/Omnishell.class.php:1190 +msgid "Command viewer" +msgstr "Visor de comandos" + +#: ../../enterprise/include/class/Omnishell.class.php:1198 +msgid "Detailed view" +msgstr "Vista detallada" + +#: ../../enterprise/include/class/Omnishell.class.php:1339 +msgid "Not an array of ids" +msgstr "No un conjunto de IDs" + +#: ../../enterprise/include/class/Omnishell.class.php:1397 +msgid "There are no targets for this remote command" +msgstr "No hay objetivos para este comando remoto" + +#: ../../enterprise/include/class/Omnishell.class.php:1404 +msgid "Command does not exist" +msgstr "El comando no existe" + +#: ../../enterprise/include/class/Omnishell.class.php:1500 +msgid "success" +msgstr "con éxito" + +#: ../../enterprise/include/class/Omnishell.class.php:1503 +msgid "timed out" +msgstr "tiempo de espera agotado" + +#: ../../enterprise/include/class/Omnishell.class.php:1506 +msgid "failed" +msgstr "error" + +#: ../../enterprise/include/class/Omnishell.class.php:1522 +msgid "Waiting results..." +msgstr "Esperando resultados..." + +#: ../../enterprise/include/class/Omnishell.class.php:1541 +msgid "RCMD does not exist" +msgstr "RCMD no existe" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "El archivo CSV debe tener los campos en el siguiente orden:" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "" +"Alias de agente, dirección IP, ID del SO, Intervalo, ID de grupo, Descripción" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:177 +msgid "Alias as name" +msgstr "Alias como nombre" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:242 +msgid "No data or wrong separator" +msgstr "No hay datos o separador incorrecto" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:248 +#, php-format +msgid "Agent %s duplicated." +msgstr "Agente %s duplicado" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:255 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "El ID de grupo %s no existe en %s" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:263 +msgid "General failure." +msgstr "Fallo general." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:284 +msgid "No input file detected" +msgstr "N se ha detectado archivo de entrada" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:373 +msgid "Agent processed successfully" +msgstr "Agente procesado correctamente" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:379 +msgid "Some errors while processing CSV." +msgstr "Algunos errores al procesar CSV." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:382 +msgid "All agents processed correctly" +msgstr "Todos los agentes procesados correctamente" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:389 +#, php-format +msgid "Line %s" +msgstr "Línea %s" + +#: ../../enterprise/include/class/SAPView.class.php:144 +msgid "SAP data not found." +msgstr "Datos SAP no encontrados." + +#: ../../enterprise/include/class/SAPView.class.php:177 +msgid "SAP View" +msgstr "Vista SAP" + +#: ../../enterprise/include/class/SAPView.class.php:241 +msgid "Refresh Every" +msgstr "Refrescar cada" + +#: ../../enterprise/include/class/SAPView.class.php:278 +msgid "Graph Interval" +msgstr "Intervalo de gráfica" + +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is " +"usually configured to retry. You have not configured a Discovery SAP R3 task " +"yet, please visit" +msgstr "" +"La vista SAP le ofrece los módulos más importantes. El servidor Discovery " +"normalmente está configurado para hacer reintentos. Si aún no ha configurado " +"la tarea Discovery SAP R3, visite" + +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "to start monitoring your SAP infrastructure." +msgstr "para comenzar a monitorizar su infraestructura SAP" + +#: ../../enterprise/include/class/SAPView.class.php:624 +msgid "Discover SAP" +msgstr "Descubrir SAP" + +#: ../../enterprise/include/class/SAP.app.php:155 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a " +"new one." +msgstr "Ya se ha definido esta configuración SAP. Edítela o cree una nueva." + +#: ../../enterprise/include/class/SAP.app.php:196 +msgid "You must specify at last one SAP hostname." +msgstr "Especifique al menos un nombre de host SAP." + +#: ../../enterprise/include/class/SAP.app.php:207 +msgid "Discovery.Application.SAP" +msgstr "Discovery.Application.SAP" + +#: ../../enterprise/include/class/SAP.app.php:263 +msgid "Failed to find discovery SAP task." +msgstr "No se ha encontrado la tarea de discovery SAP." + +#: ../../enterprise/include/class/SAP.app.php:270 +msgid "Select at least a module." +msgstr "Seleccione al menos un módulo." + +#: ../../enterprise/include/class/SAP.app.php:333 +msgid "SAP R3" +msgstr "SAP R3" + +#: ../../enterprise/include/class/SAP.app.php:526 +msgid "SAP Hostname" +msgstr "Nombre del host SAP" + +#: ../../enterprise/include/class/SAP.app.php:550 +msgid "SAP Client" +msgstr "Cliente SAP" + +#: ../../enterprise/include/class/SAP.app.php:563 +msgid "SAP System Number" +msgstr "Número del sistema SAP" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "SAP Credentials" +msgstr "Credenciales SAP" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "Optional" +msgstr "Opcional" + +#: ../../enterprise/include/class/SAP.app.php:699 +#: ../../include/functions_agents.php:3622 +msgid "SAP Login OK" +msgstr "Inicio de sesión SAP correcto" + +#: ../../enterprise/include/class/SAP.app.php:700 +#: ../../include/functions_agents.php:3623 +msgid "SAP Dumps" +msgstr "Volcados SAP" + +#: ../../enterprise/include/class/SAP.app.php:701 +#: ../../include/functions_agents.php:3624 +msgid "SAP lock entry list" +msgstr "Lista de entradas de bloqueo SAP" + +#: ../../enterprise/include/class/SAP.app.php:702 +#: ../../include/functions_agents.php:3625 +msgid "SAP canceled Jobs" +msgstr "Trabajos SAP cancelados" + +#: ../../enterprise/include/class/SAP.app.php:703 +#: ../../include/functions_agents.php:3626 +msgid "SAP Batch inputs erroneous" +msgstr "Entradas SAP en grupo erróneas" + +#: ../../enterprise/include/class/SAP.app.php:704 +#: ../../include/functions_agents.php:3627 +msgid "SAP IDOC erroneous" +msgstr "SAP IDOC erróneo" + +#: ../../enterprise/include/class/SAP.app.php:705 +#: ../../include/functions_agents.php:3628 +msgid "SAP IDOC OK" +msgstr "SAP IDOC OK" + +#: ../../enterprise/include/class/SAP.app.php:706 +#: ../../include/functions_agents.php:3629 +msgid "SAP WP without active restart" +msgstr "WP SAP sin reinicio activo" + +#: ../../enterprise/include/class/SAP.app.php:707 +#: ../../include/functions_agents.php:3630 +msgid "SAP WP stopped" +msgstr "WP SAP parado" + +#: ../../enterprise/include/class/SAP.app.php:708 +msgid "Average time of SAPGUI response" +msgstr "Media de tiempo de respuesta de SAPGUI" + +#: ../../enterprise/include/class/SAP.app.php:709 +#: ../../include/functions_agents.php:3632 +msgid "Dialog response time" +msgstr "Tiempo de respuesta del diálogo" + +#: ../../enterprise/include/class/SAP.app.php:710 +msgid "Dialog Logged users" +msgstr "Usuarios conectados en el diálogo" + +#: ../../enterprise/include/class/SAP.app.php:711 +#: ../../include/functions_agents.php:3634 +msgid "TRFC in error" +msgstr "TRFC en error" + +#: ../../enterprise/include/class/SAP.app.php:712 +#: ../../include/functions_agents.php:3635 +msgid "QRFC in error SMQ2" +msgstr "QRFC en error SMQ2" + +#: ../../enterprise/include/class/SAP.app.php:713 +#: ../../include/functions_agents.php:3636 +msgid "Number of Update WPs in error" +msgstr "Número de WPs de actualización en error" + +#: ../../enterprise/include/class/SAP.app.php:735 +msgid "Available modules" +msgstr "Módulos disponibles" + +#: ../../enterprise/include/class/SAP.app.php:771 +msgid "Add monitors" +msgstr "Añadir monitores" + +#: ../../enterprise/include/class/SAP.app.php:783 +msgid "Remove monitors" +msgstr "Eliminar monitores" + +#: ../../enterprise/include/class/SAP.app.php:793 +msgid "Selected modules" +msgstr "Módulos seleccionados" + +#: ../../enterprise/include/class/Aws.cloud.php:97 +#: ../../include/class/CredentialStore.class.php:870 +msgid "Aws" +msgstr "Aws" + +#: ../../enterprise/include/class/Aws.cloud.php:280 +msgid "Recon" +msgstr "Reconocimento" + +#: ../../enterprise/include/class/Aws.cloud.php:281 +msgid "Costs" +msgstr "Costes" + +#: ../../enterprise/include/class/Aws.cloud.php:283 +msgid "Instances" +msgstr "Instancias" + +#: ../../enterprise/include/class/Aws.cloud.php:373 +msgid "Amazon EC2" +msgstr "Amazon EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:378 +msgid "Amazon RDS" +msgstr "Amazon RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:398 +#: ../../godmode/wizards/HostDevices.class.php:690 +msgid "NetScan" +msgstr "NetScan" + +#: ../../enterprise/include/class/Aws.cloud.php:421 +msgid "Recon task name" +msgstr "Nombre de la tarea de reconocimento" + +#: ../../enterprise/include/class/Aws.cloud.php:490 +msgid "Total cost" +msgstr "Coste total" + +#: ../../enterprise/include/class/Aws.cloud.php:507 +msgid "Cost by region" +msgstr "Coste por región" + +#: ../../enterprise/include/class/Aws.cloud.php:521 +msgid "Cost interval" +msgstr "Intervalo de coste" + +#: ../../enterprise/include/class/Aws.cloud.php:655 +msgid "Select EC2 instances" +msgstr "Seleccionar instancias EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:674 +msgid "Storage" +msgstr "Almacenamiento" + +#: ../../enterprise/include/class/Aws.cloud.php:684 +msgid "Elastic IP Adresses" +msgstr "Direcciones IP elásticas" + +#: ../../enterprise/include/class/Aws.cloud.php:771 +#: ../../include/class/CustomNetScan.class.php:134 +msgid "" +"This task has been already defined. Please edit it or create a new one." +msgstr "La tarea ya se ha definido. Edite o cree una nueva." + +#: ../../enterprise/include/class/Aws.cloud.php:867 +msgid "You must select at least one RDS instance." +msgstr "Debe seleccionar al menos una instancia RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:872 +msgid "" +"You cannot monitor RDS instances from different types. Please define several " +"tasks for several types." +msgstr "" +"No puede monitorizar las instancias RDS desde diferentes tipos. Defina " +"varias tareas para diferentes tipos." + +#: ../../enterprise/include/class/Aws.cloud.php:879 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "Discovery.Cloud.AWS.RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1045 +msgid "RDS" +msgstr "RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1050 +msgid "DB monitoring" +msgstr "Monitorización de base de datos" + +#: ../../enterprise/include/class/Aws.cloud.php:1060 +msgid "AWS RDS" +msgstr "AWS RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1134 +msgid "Global DB User" +msgstr "Usuario de la base de datos global" + +#: ../../enterprise/include/class/Aws.cloud.php:1144 +msgid "Global DB password" +msgstr "Contraseña de la base de datos global" + +#: ../../enterprise/include/class/Aws.cloud.php:1234 +msgid "Select RDS instances" +msgstr "Seleccionar instancias RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1570 +msgid "Cannot update the recon database" +msgstr "No se ha podido actualizar la base de datos de reconocimiento" + +#: ../../enterprise/include/class/Aws.cloud.php:1592 +msgid "Engine not supported" +msgstr "Motor no compatible" + +#: ../../enterprise/include/class/MySQL.app.php:172 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" +"Ya se ha definido esta configuración MySQL. Edítela o cree una nueva." + +#: ../../enterprise/include/class/MySQL.app.php:215 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "Añada una IP de servidor MySQL válida o FQDN." + +#: ../../enterprise/include/class/MySQL.app.php:220 +msgid "You must provide a valid port number." +msgstr "Añada un número de puerto válido." + +#: ../../enterprise/include/class/MySQL.app.php:232 +msgid "Discovery.Application.MySQL" +msgstr "Discovery.Application.MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:284 +msgid "Failed to find discovery MySQL task." +msgstr "No se ha encontrado la tarea discovery MySQL." + +#: ../../enterprise/include/class/MySQL.app.php:489 +msgid "MySQL server IP" +msgstr "IP del servidor MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:490 +msgid "Comma separated, as many targets as you need." +msgstr "Tantos objetivos como desee, separados por comas." + +#: ../../enterprise/include/class/MySQL.app.php:509 +msgid "MySQL server Port" +msgstr "Puerto del servidor MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:654 +#: ../../enterprise/include/class/Oracle.app.php:635 +msgid "Target agent" +msgstr "Agente objetivo" + +#: ../../enterprise/include/class/MySQL.app.php:655 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use server IP address/ FQDN." +msgstr "" +"Define un agente de destino donde la tarea almacenará los datos detectados. " +"Si tiene varios objetivos definidos, defina una lista de nombres separados " +"por coma aquí o déjelo en blanco para usar la dirección IP/FQDN del servidor." + +#: ../../enterprise/include/class/MySQL.app.php:674 +#: ../../enterprise/include/class/Oracle.app.php:655 +msgid "Custom module prefix" +msgstr "Prefijo de módulo personalizado" + +#: ../../enterprise/include/class/MySQL.app.php:675 +#: ../../enterprise/include/class/Oracle.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by " +"this task." +msgstr "" +"Define un prefijo personalizado para concatenar antes de los nombres de " +"módulos generados por esta tarea." + +#: ../../enterprise/include/class/MySQL.app.php:696 +msgid "Scan databases" +msgstr "Bases de datos de escaneo" + +#: ../../enterprise/include/class/MySQL.app.php:712 +msgid "Create agent per database" +msgstr "Crear agente por base de datos" + +#: ../../enterprise/include/class/MySQL.app.php:733 +msgid "Custom database agent prefix" +msgstr "Prefijo de agente de base de datos personalizado" + +#: ../../enterprise/include/class/MySQL.app.php:734 +msgid "" +"Defines a custom prefix to be concatenated before database agent names " +"generated by this task." +msgstr "" +"Define un prefijo personalizado a concatenar antes de los nombres de agentes " +"de base de datos generados por esta tarea." + +#: ../../enterprise/include/class/MySQL.app.php:755 +#: ../../enterprise/include/class/Oracle.app.php:674 +msgid "Check engine uptime" +msgstr "Comprobar disponibilidad del motor" + +#: ../../enterprise/include/class/MySQL.app.php:771 +#: ../../enterprise/include/class/Oracle.app.php:690 +msgid "Retrieve query statistics" +msgstr "Obtener estadísticas de consultas" + +#: ../../enterprise/include/class/MySQL.app.php:787 +#: ../../enterprise/include/class/Oracle.app.php:706 +msgid "Analyze connections" +msgstr "Analizar conexiones" + +#: ../../enterprise/include/class/MySQL.app.php:803 +msgid "Retrieve InnoDB statistics" +msgstr "Obtener estadísticas InnoDB" + +#: ../../enterprise/include/class/MySQL.app.php:819 +#: ../../enterprise/include/class/Oracle.app.php:754 +msgid "Retrieve cache statistics" +msgstr "Obtener estadísticas de bases de datos" + +#: ../../enterprise/include/class/MySQL.app.php:835 +#: ../../enterprise/include/class/Oracle.app.php:770 +msgid "Execute custom queries" +msgstr "Ejecutar consultas personalizadas" + +#: ../../enterprise/include/class/MySQL.app.php:887 +#: ../../enterprise/include/class/Oracle.app.php:924 +msgid "Custom queries" +msgstr "Consultas personalizadas" + +#: ../../enterprise/include/class/MySQL.app.php:888 +#: ../../enterprise/include/class/Oracle.app.php:925 +msgid "Define here your custom queries." +msgstr "Defina aquí sus consultas personalizadas." + +#: ../../enterprise/include/class/Oracle.app.php:165 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" +"Esta configuración Oracle ya se ha definido. Edítela o cree una nueva." + +#: ../../enterprise/include/class/Oracle.app.php:207 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "Añada una IP de servidor o FQDN de Oracle válidos." + +#: ../../enterprise/include/class/Oracle.app.php:219 +msgid "Discovery.Application.Oracle" +msgstr "Discovery.Application.Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:272 +msgid "Failed to find discovery Oracle task." +msgstr "No se ha podido encontrar la tarea discovery Oracle." + +#: ../../enterprise/include/class/Oracle.app.php:487 +msgid "Oracle target strings" +msgstr "Cadenas objetivo de Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "" +"SERVER:PORT/SID, comma separated or line by line, as many targets as you " +"need." +msgstr "" +"SERVER:PORT/SID, separados por coma o línea por línea, tantos objetivos como " +"precise." + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "Use el símbolo # para comentar una línea." + +#: ../../enterprise/include/class/Oracle.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use target as name." +msgstr "" +"Define un objetivo de agente donde la tarea almacenará los datos detectados. " +"Si ha definido varios objetivos, defina una lista de nombres separados por " +"coma o déjelo en blanco para usar el objetivo como nombre." + +#: ../../enterprise/include/class/Oracle.app.php:722 +msgid "Calculate fragmentation ratio" +msgstr "Calcular la tasa de fragmentación" + +#: ../../enterprise/include/class/Oracle.app.php:738 +msgid "Monitor tablespaces" +msgstr "Espacio de tablas del monitor" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:417 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:476 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:518 +msgid "Alert not found." +msgstr "Alerta no encontrada." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:505 +msgid "JSON decoding error. Please call support." +msgstr "Error de decodificación JSON. Póngase en contacto con soporte." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:833 +msgid "Pass" +msgstr "Pasar" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:834 +msgid "Drop" +msgstr "Soltar" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:861 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1825 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2136 +msgid "Load from template" +msgstr "Cargar desde la plantilla" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:879 +msgid "Days a week" +msgstr "Días por semana" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:912 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2140 +#: ../../godmode/alerts/configure_alert_template.php:601 +#: ../../godmode/alerts/alert_view.php:306 +msgid "Use special days list" +msgstr "Utilizar lista de días especiales" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:931 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:961 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3380 +msgid "from" +msgstr "desde" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:958 +msgid "Execute alert" +msgstr "Ejecutar alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3398 +msgid "times in" +msgstr "veces en" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:991 +msgid "threshold" +msgstr "umbral" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1001 +msgid "" +"Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "" +"Pass - Se analizan todas las alertas. Drop - Para cuando coincide 1 alerta." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1018 +msgid "Grouped by" +msgstr "Agrupados por" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1124 +msgid "" +"\n" +" The templates shown are only for correlative alerts, event alert " +"(legacy) will be deprecated in the future" +msgstr "" +"\n" +" Las plantillas mostradas solo sirven para alertas correlativas, " +"alertas de evento (legacy) se descartarán en el future" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1135 +msgid "Available items" +msgstr "Elementos disponibles" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1136 +msgid "Block" +msgstr "Bloquear" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1184 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:972 +msgid "Log content" +msgstr "Contenido de log" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1189 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:975 +msgid "Log source" +msgstr "Fuente de log" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1194 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:978 +msgid "Log agent" +msgstr "Agente de log" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1252 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:984 +msgid "Event content" +msgstr "Contenido de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1257 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:981 +msgid "Event user comment" +msgstr "Comentario de usuario de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:987 +msgid "Event agent" +msgstr "Agente de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:990 +msgid "Event module" +msgstr "Módulo de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +msgid "Event module alerts" +msgstr "Alertas de módulos de eventos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1277 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:996 +msgid "Event group" +msgstr "Grupo de eventos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1282 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:999 +msgid "Event group Recursive" +msgstr "Recursividad del grupo de eventos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1287 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +msgid "Event severity" +msgstr "Prioridad de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1292 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005 +msgid "Event tag" +msgstr "Etiqueta de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1297 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1008 +msgid "Event user" +msgstr "Usuario de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1326 +msgid "Operators" +msgstr "Operadores" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1383 +msgid "Modifiers" +msgstr "Modificadores" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1388 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1017 +msgid "Time window" +msgstr "Ventana de tiempo" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 +msgid "Rule definition" +msgstr "Definición de reglas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1722 +msgid "Remove rule" +msgstr "Eliminar regla" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1733 +msgid "Remove item" +msgstr "Eliminar elemento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1754 +#: ../../operation/agentes/estado_monitores.php:595 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1920 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +msgid "Triggering Condition" +msgstr "Términos de disparo" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +msgid "Number of alerts" +msgstr "Número de alertas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2235 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2489 +#: ../../godmode/alerts/configure_alert_action.php:200 +#: ../../godmode/alerts/alert_view.php:418 +msgid "Firing" +msgstr "Disparado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2237 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2440 +#: ../../include/ajax/custom_fields.php:403 +msgid "Treshold" +msgstr "Umbral" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2238 +msgid "Opions" +msgstr "Opciones" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 +msgid "There are no defined actions for this alert" +msgstr "No hay acciones definidas para esta alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2412 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3377 +msgid "Number of alerts match" +msgstr "Número de coincidencias de alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2490 +#: ../../godmode/alerts/alert_view.php:419 +msgid "Recovering" +msgstr "Recuperado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2507 +msgid "" +"Select the desired action and mode to view the Triggering fields for this " +"action" +msgstr "" +"Seleccione la acción y el modo deseados para ver los campos de disparo de " +"esta acción" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 +#: ../../godmode/alerts/alert_view.php:415 +msgid "Select the action" +msgstr "Seleccione la acción" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2581 +#: ../../godmode/alerts/configure_alert_template.php:841 +#: ../../godmode/alerts/alert_view.php:436 +#: ../../godmode/alerts/alert_view.php:527 +msgid "Firing fields" +msgstr "Campos de disparado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2583 +#: ../../godmode/alerts/alert_view.php:436 +msgid "" +"Fields passed to the command executed by this action when the alert is fired" +msgstr "" +"Campos pasados al comando ejecutado por esta acción cuando la alerta es " +"disparada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2587 +#: ../../godmode/agentes/fields_manager.php:119 +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:526 +#: ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "Campo" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2589 +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:526 +msgid "Fields configured on the command associated to the action" +msgstr "Campos configurados en el comando asociado a la acción" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2592 +msgid "Alerts fields" +msgstr "Campos de alertas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2594 +msgid "Triggering fields configured in Alerts" +msgstr "Campos de disparo configurados en Alertas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2597 +#: ../../godmode/alerts/alert_view.php:440 +msgid "Action fields" +msgstr "Campos de la acción" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2599 +#: ../../godmode/alerts/alert_view.php:440 +msgid "Triggering fields configured in action" +msgstr "Campos de disparado configurados en la acción" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../godmode/alerts/alert_view.php:442 +msgid "Executed on firing" +msgstr "Ejecutado en disparado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2604 +#: ../../godmode/alerts/alert_view.php:442 +#: ../../godmode/alerts/alert_view.php:527 +msgid "Fields used on execution when the alert is fired" +msgstr "Campos usados en la ejecución cuando la alerta es disparada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2672 +msgid "Correlated alerts" +msgstr "Alertas correladas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2695 +msgid "Alert succesfully deleted" +msgstr "Alerta eliminada correctamente" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2704 +msgid "Alerts validated" +msgstr "Alerta validada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +msgid "Failed to process validation" +msgstr "No se ha podido efectuar la validación" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 +msgid "Matched" +msgstr "Coincidencias" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2853 +#: ../../mobile/operation/alerts.php:48 +#: ../../include/functions_reporting_html.php:1915 +#: ../../include/functions_reporting_html.php:2403 +#: ../../include/functions_reporting_html.php:2404 +#: ../../operation/agentes/alerts_status.functions.php:79 +#: ../../operation/snmpconsole/snmp_view.php:208 +#: ../../operation/snmpconsole/snmp_view.php:1173 +msgid "Fired" +msgstr "Disparada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2875 +msgid "Sort elements" +msgstr "Clasificar elementos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2963 +msgid "Add Actions" +msgstr "Añadir acciones" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3143 +msgid "Are you sure you want to disable the alert" +msgstr "¿Está seguro de que quiere desactivar la alerta?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3149 +msgid "Are you sure you want to enable the alert" +msgstr "¿Está seguro de que quiere activar la alerta?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3156 +msgid "Disabled Alert" +msgstr "Alerta desactivada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3194 +#: ../../godmode/alerts/alert_list.list.php:134 +#: ../../mobile/operation/alerts.php:56 +#: ../../operation/agentes/alerts_status.functions.php:86 +msgid "Standby off" +msgstr "Modo standby desactivado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3195 +msgid "Are you sure you want to standby the alert" +msgstr "¿Está seguro de que quiere poner la alerta en suspensión?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3200 +#: ../../enterprise/operation/agentes/policy_view.php:234 +#: ../../godmode/alerts/alert_list.list.php:133 +#: ../../mobile/operation/alerts.php:55 ../../include/functions_ui.php:1131 +#: ../../operation/agentes/alerts_status.functions.php:85 +msgid "Standby on" +msgstr "Modo standby activado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3202 +msgid "Are you sure you want to activate the alert" +msgstr "¿Está seguro de que quiere activar la alerta?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3210 +msgid "Standby Alert" +msgstr "Alerta en suspensión" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3281 +msgid "Delete Actions" +msgstr "Eliminar acciones" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3457 +msgid "Successfully added action" +msgstr "Acción añadida correctamente" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3495 +msgid "Successfully delete action" +msgstr "Acción eliminada correctamente" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3842 +msgid "Choosetime" +msgstr "Elegir hora" + +#: ../../enterprise/include/functions_enterprise.php:325 +msgid "Tree view by tags" +msgstr "Vista de árbol por etiquetas" + +#: ../../enterprise/include/functions_enterprise.php:355 +msgid "" +"If the interval of days until events data purge is shorter than the events " +"data history storage interval, data will be lost. It is recommended that the " +"storage frequency is higher than the purge frequency." +msgstr "" +"Si el intervalo de días hasta la purga de datos de eventos es inferior que " +"el intervalo de almacenamiento de histórico de datos de eventos, se perderán " +"los datos. Se recomienda configurar una frecuencia de almacenamiento " +"inferior a la frecuencia de purga." + +#: ../../enterprise/include/functions_enterprise.php:357 +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:368 +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:370 +msgid "Problems with days purge and days that pass data to history DB" +msgstr "" +"Problemas con la fecha de purga y la fecha de traspaso de información al " +"histórico" + +#: ../../enterprise/include/functions_reporting.php:46 +msgid "Advance options" +msgstr "Opciones avanzadas" + +#: ../../enterprise/include/functions_reporting.php:67 +msgid "Templates list" +msgstr "Lista de plantillas" + +#: ../../enterprise/include/functions_reporting.php:102 +msgid "Templates Wizard" +msgstr "Asistente de plantillas" + +#: ../../enterprise/include/functions_reporting.php:1077 +msgid "Availability item created from wizard." +msgstr "Elemento disponible creado desde el asistente" + +#: ../../enterprise/include/functions_reporting.php:1614 +#: ../../enterprise/include/functions_reporting.php:2505 +#: ../../enterprise/include/functions_reporting.php:3512 +#: ../../godmode/alerts/alert_special_days.php:377 +msgid "January" +msgstr "Enero" + +#: ../../enterprise/include/functions_reporting.php:1618 +#: ../../enterprise/include/functions_reporting.php:2509 +#: ../../enterprise/include/functions_reporting.php:3516 +#: ../../godmode/alerts/alert_special_days.php:381 +msgid "February" +msgstr "Febrero" + +#: ../../enterprise/include/functions_reporting.php:1622 +#: ../../enterprise/include/functions_reporting.php:2513 +#: ../../enterprise/include/functions_reporting.php:3520 +#: ../../godmode/alerts/alert_special_days.php:385 +msgid "March" +msgstr "Marzo" + +#: ../../enterprise/include/functions_reporting.php:1626 +#: ../../enterprise/include/functions_reporting.php:2517 +#: ../../enterprise/include/functions_reporting.php:3524 +#: ../../godmode/alerts/alert_special_days.php:389 +msgid "April" +msgstr "Abril" + +#: ../../enterprise/include/functions_reporting.php:1630 +#: ../../enterprise/include/functions_reporting.php:2521 +#: ../../enterprise/include/functions_reporting.php:3528 +#: ../../godmode/alerts/alert_special_days.php:393 +msgid "May" +msgstr "Mayo" + +#: ../../enterprise/include/functions_reporting.php:1634 +#: ../../enterprise/include/functions_reporting.php:2525 +#: ../../enterprise/include/functions_reporting.php:3532 +#: ../../godmode/alerts/alert_special_days.php:397 +msgid "June" +msgstr "Junio" + +#: ../../enterprise/include/functions_reporting.php:1638 +#: ../../enterprise/include/functions_reporting.php:2529 +#: ../../enterprise/include/functions_reporting.php:3536 +#: ../../godmode/alerts/alert_special_days.php:401 +msgid "July" +msgstr "Julio" + +#: ../../enterprise/include/functions_reporting.php:1642 +#: ../../enterprise/include/functions_reporting.php:2533 +#: ../../enterprise/include/functions_reporting.php:3540 +#: ../../godmode/alerts/alert_special_days.php:405 +msgid "August" +msgstr "Agosto" + +#: ../../enterprise/include/functions_reporting.php:1646 +#: ../../enterprise/include/functions_reporting.php:2537 +#: ../../enterprise/include/functions_reporting.php:3544 +#: ../../godmode/alerts/alert_special_days.php:409 +msgid "September" +msgstr "Septiembre" + +#: ../../enterprise/include/functions_reporting.php:1650 +#: ../../enterprise/include/functions_reporting.php:2541 +#: ../../enterprise/include/functions_reporting.php:3548 +#: ../../godmode/alerts/alert_special_days.php:413 +msgid "October" +msgstr "Octubre" + +#: ../../enterprise/include/functions_reporting.php:1654 +#: ../../enterprise/include/functions_reporting.php:2545 +#: ../../enterprise/include/functions_reporting.php:3552 +#: ../../godmode/alerts/alert_special_days.php:417 +msgid "November" +msgstr "Noviembre" + +#: ../../enterprise/include/functions_reporting.php:1659 +#: ../../enterprise/include/functions_reporting.php:2550 +#: ../../enterprise/include/functions_reporting.php:3557 +#: ../../godmode/alerts/alert_special_days.php:421 +msgid "December" +msgstr "Diciembre" + +#: ../../enterprise/include/functions_reporting.php:1677 +#: ../../enterprise/include/functions_reporting.php:2577 +#: ../../enterprise/include/functions_reporting.php:3569 +#: ../../include/functions_reporting_html.php:494 +msgid "Max/Min Values" +msgstr "Valores max/min" + +#: ../../enterprise/include/functions_reporting.php:1679 +#: ../../enterprise/include/functions_reporting.php:1848 +#: ../../enterprise/include/functions_reporting.php:2579 +#: ../../enterprise/include/functions_reporting.php:3571 +#: ../../enterprise/include/functions_reporting.php:5360 +#: ../../include/functions_reporting_html.php:496 +msgid "SLA Compliance" +msgstr "Cumplimiento del SLA" + +#: ../../enterprise/include/functions_reporting.php:1719 +#: ../../enterprise/include/functions_reporting.php:2633 +#: ../../enterprise/include/functions_reporting.php:2892 +#: ../../enterprise/include/functions_reporting.php:3626 +#: ../../enterprise/include/functions_reporting.php:3890 +#: ../../enterprise/include/functions_reporting.php:4481 +#: ../../enterprise/include/functions_reporting.php:5430 +#: ../../include/functions_reporting_html.php:785 +#: ../../include/functions_reporting_html.php:3585 +msgid "Not Init" +msgstr "No iniciado" + +#: ../../enterprise/include/functions_reporting.php:1726 +#: ../../enterprise/include/functions_reporting.php:2643 +#: ../../enterprise/include/functions_reporting.php:3636 +msgid "Planned Downtimes" +msgstr "Paradas planificadas" + +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2653 +#: ../../enterprise/include/functions_reporting.php:2902 +#: ../../enterprise/include/functions_reporting.php:3646 +#: ../../godmode/agentes/planned_downtime.editor.php:62 +#: ../../include/functions_reporting_html.php:795 +#: ../../include/functions_reporting_html.php:3595 +#: ../../general/first_task/planned_downtime.php:22 +msgid "Planned Downtime" +msgstr "Tiempo de inactividad planificado" + +#: ../../enterprise/include/functions_reporting.php:1753 +msgid "SLA Compliance per days" +msgstr "Cumplimiento de SLA por días" + +#: ../../enterprise/include/functions_reporting.php:1845 +msgid "Summary of SLA Failures" +msgstr "Resumen de los fallos de SLA" + +#: ../../enterprise/include/functions_reporting.php:1865 +#: ../../enterprise/include/functions_reporting.php:1866 +msgid "Out of SLA limits" +msgstr "Sin límites SLS" + +#: ../../enterprise/include/functions_reporting.php:1871 +#: ../../enterprise/include/functions_reporting.php:1872 +msgid "IN of SLA limits" +msgstr "Límite del IN de SLA" + +#: ../../enterprise/include/functions_reporting.php:1955 +#: ../../include/functions_reports.php:878 +msgid "Log report" +msgstr "Informe de log" + +#: ../../enterprise/include/functions_reporting.php:1968 +#: ../../include/functions_reports.php:877 +msgid "Log" +msgstr "Log" + +#: ../../enterprise/include/functions_reporting.php:2175 +#: ../../enterprise/include/functions_reporting.php:3124 +#: ../../enterprise/include/functions_reporting.php:4097 +#: ../../include/functions_reporting.php:917 +#: ../../include/functions_reporting.php:6638 +msgid "There are no SLAs defined" +msgstr "No hay SLA definidos" + +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:3166 +#: ../../enterprise/include/functions_reporting.php:4139 +#: ../../include/functions_maps.php:50 +#: ../../include/functions_reporting.php:969 +#: ../../include/functions_reporting.php:6905 +#: ../../operation/agentes/pandora_networkmap.php:776 +msgid "Dynamic" +msgstr "Dinámico" + +#: ../../enterprise/include/functions_reporting.php:2228 +#: ../../enterprise/include/functions_reporting.php:3177 +#: ../../enterprise/include/functions_reporting.php:4150 +#: ../../include/functions_reporting.php:980 +#: ../../include/functions_reporting.php:6916 +msgid "Inverse" +msgstr "Inverso" + +#: ../../enterprise/include/functions_reporting.php:2691 +msgid "T. Total" +msgstr "Tiempo total" + +#: ../../enterprise/include/functions_reporting.php:2692 +#: ../../enterprise/include/functions_reporting.php:3673 +msgid "T. OK" +msgstr "Tiempo OK" + +#: ../../enterprise/include/functions_reporting.php:2693 +#: ../../enterprise/include/functions_reporting.php:3674 +msgid "T. Error" +msgstr "Tiempo error" + +#: ../../enterprise/include/functions_reporting.php:2694 +#: ../../enterprise/include/functions_reporting.php:3675 +msgid "T. Unknown" +msgstr "Tiempo desconocido" + +#: ../../enterprise/include/functions_reporting.php:2695 +#: ../../enterprise/include/functions_reporting.php:3676 +msgid "T. Not_init" +msgstr "Tiempo no iniciado" + +#: ../../enterprise/include/functions_reporting.php:2696 +#: ../../enterprise/include/functions_reporting.php:3677 +msgid "T. Downtime" +msgstr "Tiempo en parada planificada" + +#: ../../enterprise/include/functions_reporting.php:2697 +#: ../../enterprise/include/functions_reporting.php:3678 +msgid "SLA %" +msgstr "SLA %" + +#: ../../enterprise/include/functions_reporting.php:2887 +#: ../../enterprise/include/functions_reporting.php:3885 +#: ../../enterprise/include/functions_reporting.php:5425 +#: ../../enterprise/include/functions_services.php:2329 +#: ../../include/functions_reporting_html.php:780 +#: ../../include/functions_reporting_html.php:3580 +msgid "Unknow" +msgstr "Desconocido" + +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3895 +#: ../../enterprise/include/functions_reporting.php:5435 +#: ../../include/functions_reporting_html.php:790 +#: ../../include/functions_reporting_html.php:3590 +msgid "Downtimes" +msgstr "Paradas planificadas" + +#: ../../enterprise/include/functions_reporting.php:3900 +msgid "Ignore Planned Downtime" +msgstr "Ignorar parada planeada" + +#: ../../enterprise/include/functions_reporting.php:3990 +#: ../../include/functions_reports.php:697 +msgid "Hourly S.L.A." +msgstr "SLA cada hora" + +#: ../../enterprise/include/functions_reporting.php:4880 +msgid "There are no SLAs defined." +msgstr "No hay SLAs definidos" + +#: ../../enterprise/include/functions_reporting.php:5021 +#: ../../enterprise/include/functions_services.php:2256 +#: ../../enterprise/include/functions_services.php:2258 +#: ../../enterprise/include/functions_services.php:2288 +#: ../../enterprise/include/functions_services.php:2289 +#: ../../enterprise/include/functions_services.php:2291 +#: ../../enterprise/include/functions_services.php:2334 +#: ../../enterprise/include/functions_services.php:2336 +msgid "Nonexistent" +msgstr "No existe" + +#: ../../enterprise/include/functions_reporting.php:5440 +msgid "Scheduled shutdow" +msgstr "Parada planeada" + +#: ../../enterprise/include/functions_reporting.php:5802 +#: ../../enterprise/include/functions_reporting.php:6432 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "Gráficos de agentes (%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:6348 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "Gráfico de agente(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:6806 +msgid "There is not data for the selected conditions" +msgstr "No hay datos para las condiciones seleccionadas" + +#: ../../enterprise/include/functions_reporting.php:7004 +#: ../../enterprise/include/functions_reporting.php:7060 +msgid "Template editor" +msgstr "Editor de plantillas" + +#: ../../enterprise/include/functions_reporting.php:7079 +msgid "Get PDF file" +msgstr "Obtener archivo PDF" + +#: ../../enterprise/include/functions_reporting.php:7140 +#: ../../include/functions_reports.php:636 +msgid "Simple baseline graph" +msgstr "Gráfico simple de línea base" + +#: ../../enterprise/include/functions_enterprise_api.php:902 +#: ../../enterprise/include/functions_enterprise_api.php:960 +msgid "Not sent id agent to migrate" +msgstr "No se ha enviado ID de agente para la migración" + +#: ../../enterprise/include/functions_enterprise_api.php:909 +msgid "Not sent id source node" +msgstr "No se ha enviado nodo fuente de ID" + +#: ../../enterprise/include/functions_enterprise_api.php:915 +msgid "Not sent id target node" +msgstr "No se ha enviado nodo fuente de ID" + +#: ../../enterprise/include/functions_enterprise_api.php:920 +msgid "Not sent id source node and not sent id target node" +msgstr "" +"No se ha enviado nodo fuente de ID y no se ha enviado nodo objetivo de ID" + +#: ../../enterprise/include/functions_enterprise_api.php:933 +#: ../../enterprise/include/functions_enterprise_api.php:966 +#: ../../enterprise/include/functions_enterprise_api.php:2307 +msgid "Is not metaconsole" +msgstr "No es la metaconsola" + +#: ../../enterprise/include/functions_enterprise_api.php:995 +#: ../../enterprise/include/functions_enterprise_api.php:1231 +#: ../../enterprise/include/functions_enterprise_api.php:1425 +#: ../../enterprise/include/functions_enterprise_api.php:1599 +#: ../../enterprise/include/functions_enterprise_api.php:1819 +#: ../../enterprise/include/functions_enterprise_api.php:1950 +#: ../../enterprise/include/functions_enterprise_api.php:2234 +#: ../../enterprise/include/functions_enterprise_api.php:2569 +#: ../../enterprise/include/functions_enterprise_api.php:2768 +#: ../../enterprise/include/functions_enterprise_api.php:2983 +msgid "There is no policy with such id" +msgstr "No hay políticas con ese ID" + +#: ../../enterprise/include/functions_enterprise_api.php:1868 +msgid "Module id is empty" +msgstr "El ID de módulo está vacío" + +#: ../../enterprise/include/functions_enterprise_api.php:1874 +msgid "There is no module with such id" +msgstr "No hay módulos con ese ID" + +#: ../../enterprise/include/functions_enterprise_api.php:2241 +msgid "There is no alert with such id in this policy" +msgstr "No hay alertas con ese ID en esta política" + +#: ../../enterprise/include/functions_enterprise_api.php:2369 +#: ../../include/functions_api.php:5619 +msgid "Error getting alert actions." +msgstr "Error al obtener acciones de alertas." + +#: ../../enterprise/include/functions_enterprise_api.php:2632 +#: ../../enterprise/include/functions_enterprise_api.php:2666 +msgid "Error adding agent to policy. Id_policy cannot be left blank." +msgstr "" +"Error al añadir agente a la política. Id_policy no puede estar en blanco." + +#: ../../enterprise/include/functions_enterprise_api.php:2637 +msgid "Error adding agent to policy. Id_agent cannot be left blank." +msgstr "" +"Error al añadir agente a la política. Id_agent no puede estar en blanco." + +#: ../../enterprise/include/functions_enterprise_api.php:2643 +msgid "Error adding agent to policy. Node ID cannot be left blank." +msgstr "" +"Error al añadir agente a la política. El ID del nodo no puede estar vacío." + +#: ../../enterprise/include/functions_enterprise_api.php:2671 +#: ../../include/functions_api.php:8004 +msgid "Error adding agent to policy. Agent name cannot be left blank." +msgstr "" +"Error al eliminar el agente de la política. El nombre del agente no puede " +"estar vacío." + +#: ../../enterprise/include/functions_enterprise_api.php:3058 +msgid "Error applying policy. Id_policy cannot be left blank." +msgstr "Error al aplicar política. Id_policy no puede estar en blanco." + +#: ../../enterprise/include/functions_enterprise_api.php:3064 +msgid "Error applying policy. Id_nodo cannot be left blank." +msgstr "Error al aplicar la política. Id_nodo no puede estar en blanco" + +#: ../../enterprise/include/functions_enterprise_api.php:3071 +msgid "There is no policy with such id." +msgstr "No hay políticas con ese ID." + +#: ../../enterprise/include/functions_enterprise_api.php:3091 +msgid "There is no agent with such id." +msgstr "No hay agentes con ese ID." + +#: ../../enterprise/include/functions_enterprise_api.php:3117 +msgid "This policy does not have this agent id." +msgstr "La política no tiene este ID de agente." + +#: ../../enterprise/include/functions_enterprise_api.php:3130 +msgid "There is no agent with such name." +msgstr "No hay agentes con ese nombre." + +#: ../../enterprise/include/functions_enterprise_api.php:3156 +msgid "This policy does not have this agent." +msgstr "Esta política no contiene este agente." + +#: ../../enterprise/include/functions_enterprise_api.php:3172 +msgid "There are no agents with such alias." +msgstr "No hay agentes con ese alias." + +#: ../../enterprise/include/functions_enterprise_api.php:3204 +msgid "This policy does not have these agents." +msgstr "Esta política no tiene estos agentes." + +#: ../../enterprise/include/functions_enterprise_api.php:3219 +#: ../../enterprise/include/functions_enterprise_api.php:3234 +msgid "Error applying policy." +msgstr "Error al aplicar la política" + +#: ../../enterprise/include/functions_enterprise_api.php:3226 +msgid "Error applying policy. This policy is already pending to apply." +msgstr "" +"Error al aplicar la política. Esta política ya está pendiente de ser " +"aplicada." + +#: ../../enterprise/include/functions_enterprise_api.php:3266 +#: ../../enterprise/include/functions_enterprise_api.php:3320 +#, php-format +msgid "%d agents added to apply queue." +msgstr "%d agentes añadidos a la cola de aplicar." + +#: ../../enterprise/include/functions_enterprise_api.php:3289 +#: ../../enterprise/include/functions_policies.php:4989 +#, php-format +msgid "Successfully applied to node %s." +msgstr "Aplicado correctamente al nodo %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3291 +#: ../../enterprise/include/functions_policies.php:4991 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "Aplicado correctamente a los nodos: %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3330 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "ID de política %d ya pendiente de aplicar." + +#: ../../enterprise/include/functions_enterprise_api.php:3332 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "ID de política %d ya pendiente de aplicar en el ID de agente %d." + +#: ../../enterprise/include/functions_enterprise_api.php:3384 +msgid "Error applying all policies." +msgstr "Error al aplicar todas las políticas" + +#: ../../enterprise/include/functions_enterprise_api.php:3438 +msgid "Cannot reach the node" +msgstr "No se ha podido contactar con el nodo" + +#: ../../enterprise/include/functions_enterprise_api.php:3460 +#, php-format +msgid "Node error: %s." +msgstr "Eror de nodo: %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3474 +#, php-format +msgid "Invalid value %d on first other parameter" +msgstr "Valor %d no válido en el primer otro parámetro" + +#: ../../enterprise/include/functions_enterprise_api.php:3707 +msgid "The module is already in the policy." +msgstr "El módulo ya está en la política" + +#: ../../enterprise/include/functions_enterprise_api.php:3744 +#: ../../enterprise/include/functions_enterprise_api.php:3780 +msgid "" +"Error adding web analysis module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web analysis modules." +msgstr "" +"Error al añadir módulo de análisis web a la política. \n" +"\t\t\t\t\t\tId_module_type no es correcto para los módulos de análisis web." + +#: ../../enterprise/include/functions_enterprise_api.php:3756 +msgid "" +"Error adding network module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for network modules." +msgstr "" +"Error al añadir módulo de red a la política. \n" +"\t\t\t\t\t\tId_module_type no es correcto para los módulos de red." + +#: ../../enterprise/include/functions_enterprise_api.php:3768 +msgid "" +"Error adding web module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web modules." +msgstr "" +"Error al añadir módulo web a la política. \n" +"\t\t\t\t\t\tId_module_type no es correcto para los módulos web." + +#: ../../enterprise/include/functions_enterprise_api.php:3795 +msgid "" +"Error adding module to policy.\n" +"\t\t\t\t\tconfiguration_data is not correct base64." +msgstr "" +"Error al añadir módulo a la política.\n" +"\t\t\t\t\tconfiguration_data no es correcto en base64." + +#: ../../enterprise/include/functions_enterprise_api.php:4266 +#: ../../enterprise/include/functions_enterprise_api.php:4316 +#: ../../enterprise/include/functions_enterprise_api.php:4367 +msgid "Error getting inventory modules" +msgstr "Error al obtener módulos de inventario" + +#: ../../enterprise/include/functions_enterprise_api.php:5256 +#, php-format +msgid "Error updating user %s " +msgstr "Error al actualizar el usuario %s " + +#: ../../enterprise/include/functions_enterprise_api.php:5258 +#, php-format +msgid "Updated user %s " +msgstr "Usuario %s actualizado " + +#: ../../enterprise/include/functions_enterprise_api.php:5268 +#, php-format +msgid "Error creating user %s " +msgstr "Error al crear el usuario %s " + +#: ../../enterprise/include/functions_enterprise_api.php:5270 +#, php-format +msgid "Created user %s " +msgstr "Usuario %s creado " + +#: ../../enterprise/include/functions_enterprise_api.php:5471 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements " +"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d) " +msgstr "" +"Hay grupos que no existen en el nodo. Los siguientes elementos " +"grupos/perfiles/perfiles de usuario se han creado/actualizado correctamente " +"(%d/%d/%d) " + +#: ../../enterprise/include/functions_enterprise_api.php:5484 +#, 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/perfiles " +"de usuario (%d/%d/%d) " + +#: ../../enterprise/include/functions_enterprise_api.php:5500 +#, php-format +msgid "" +"The followings elements groups/profiles/user profiles were created/updated " +"sucessfully (%d/%d/%d) " +msgstr "" +"Los siguientes elementos grupos/perfiles/perfiles de usuario se han " +"creado/actualizado correctamente (%d/%d/%d) " + +#: ../../enterprise/include/functions_enterprise_api.php:5679 +msgid "Error adding agent to policy. Agent does not exist." +msgstr "Error al añadir agente a política. El agente no existe." + +#: ../../enterprise/include/functions_enterprise_api.php:5691 +msgid "Error adding agent to policy." +msgstr "Error al añadir agente a la política" + +#: ../../enterprise/include/functions_enterprise_api.php:5698 +msgid "Error adding agent to policy. The agent is already in the policy." +msgstr "" +"Error al añadir agente a la política. El agente ya existe en la política." + +#: ../../enterprise/include/functions_services.php:27 +msgid "There is no information about" +msgstr "No hay información al respecto" + +#: ../../enterprise/include/functions_services.php:32 +msgid "Service does not exist." +msgstr "El servicio no existe." + +#: ../../enterprise/include/functions_services.php:44 +msgid "module that stores the service" +msgstr "módulo que almacena el servicio" + +#: ../../enterprise/include/functions_services.php:56 +msgid "module that stores SLA service" +msgstr "módulo que almacena el servicio SLA" + +#: ../../enterprise/include/functions_services.php:69 +msgid "agent that stores the service" +msgstr "agente que almacena el servicio" + +#: ../../enterprise/include/functions_services.php:82 +msgid "agent that stores SLA service" +msgstr "agente que almacena el servicio SLA" + +#: ../../enterprise/include/functions_services.php:103 +msgid "alert critical SLA service" +msgstr "alerta crítica de servicio SLA" + +#: ../../enterprise/include/functions_services.php:124 +msgid "alert warning service" +msgstr "servicio en estado de advertencia" + +#: ../../enterprise/include/functions_services.php:145 +msgid "alert critical service" +msgstr "servicio en alerta crítica" + +#: ../../enterprise/include/functions_services.php:166 +msgid "alert unknown service" +msgstr "servicio en estado desconocido" + +#: ../../enterprise/include/functions_services.php:576 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "Módulo automático creado para el servicio %s" + +#: ../../enterprise/include/functions_services.php:2316 +msgid "Critical (Alert)" +msgstr "Crítico (Alerta)" + +#: ../../enterprise/include/functions_services.php:2449 +msgid "There are no service elements defined" +msgstr "No hay servicios de elementos definidos" + +#: ../../enterprise/include/functions_services.php:2479 +msgid "Weight Critical" +msgstr "Peso crítico" + +#: ../../enterprise/include/functions_services.php:2480 +msgid "Weight Warning" +msgstr "Peso de advertencia" + +#: ../../enterprise/include/functions_services.php:2481 +msgid "Weight Unknown" +msgstr "Peso desconocido" + +#: ../../enterprise/include/functions_services.php:2482 +msgid "Weight Ok" +msgstr "Peso OK" + +#: ../../enterprise/include/functions_services.php:2512 +#: ../../enterprise/include/functions_services.php:2534 +#: ../../enterprise/include/functions_services.php:2573 +msgid "Nonexistent. This element should be deleted" +msgstr "Inexistente. Este elemento debería eliminarse." + +#: ../../enterprise/include/functions_services.php:2597 +msgid "This element does not affect service weigth because is disabled." +msgstr "" +"El elemento no afecta al peso del servicio porque está deshabilitado." + +#: ../../enterprise/include/functions_services.php:2699 +msgid "NOT INITIALIZED" +msgstr "NO INICIADO" + +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/transactional_map.php:184 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:2580 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +msgid "Last status" +msgstr "Último estado" + +#: ../../enterprise/include/functions_services.php:2754 +msgid "Delete service element" +msgstr "Eliminar elemento de servicio" + +#: ../../enterprise/include/functions_services.php:2813 +msgid "FAIL" +msgstr "FALLO" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "Tienes que cambiar la contraseña:" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "La contraseña debe ser diferente a los 3 cambios anteriores." + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "Contraseña antigua: " + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "Contraseña nueva: " + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "Confirmar: " + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "Cambiar" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "Inicio de sesión bloqueado" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "Tu usuario ha sido bloqueado. Vuelve a intentarlo en " + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr " minutos" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "Inicio de sesión correcto" + +#: ../../enterprise/include/functions_login.php:145 +msgid "Successfully" +msgstr "Correcto" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "La contraseña se ha actualizado correctamente." + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "La contraseña debe ser diferente de " + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr " los cambios anteriores." + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "La contraseña no puede ser la misma." + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "La contraseña es demasiado corta" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "La contraseña tiene que contener números." + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "La contraseña tiene que contener símbolos." + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "Contraseña antigua no válida" + +#: ../../enterprise/include/functions_login.php:357 +msgid "Password confirm does not match" +msgstr "Las contraseñas no coinciden." + +#: ../../enterprise/include/functions_login.php:364 +msgid "Password empty" +msgstr "La contraseña está vacía." + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:181 +msgid "There was a problem creating Alert" +msgstr "Ha habido un problema al crear la alerta" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:257 +msgid "There was a problem deleting Alert" +msgstr "Ha habido un problema al eliminar la alerta" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:712 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:726 +msgid "There was a problem creating Action" +msgstr "Ha habido un problema al crear la acción" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:763 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:776 +msgid "There was a problem updating Action" +msgstr "Ha habido un problema al actualizar la acción" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:812 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:826 +msgid "There was a problem deleting Action" +msgstr "Ha habido un problema al eliminar la acción" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:867 +msgid "There was a problem standby alert" +msgstr "Ha habido un problema en la alerta en suspensión" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:882 +msgid "There was a problem standby off alert" +msgstr "" +"Ha ocurrido un problema al deshabilitar el modo suspensión de las alertas" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:926 +msgid "There was a problem disabled alert" +msgstr "Ha habido un problema en la alerta deshabilitada" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:942 +msgid "There was a problem enabled alert" +msgstr "Ha habido un problema en la alerta habilitada" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1402 +msgid "Failed to cleanup old rules." +msgstr "No se han podido limpiar las reglas antiguas." + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1411 +msgid "Failed to apply rule." +msgstr "Error al aplicar la regla." + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1551 +msgid "any" +msgstr "cualquier" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "Clúster no encontrado: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "Agente del clúster no encontrado: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "Error al eliminar, motivo: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "Clúster eliminado con éxito." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "Error al forzar, motivo: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "Clúster forzado con éxito." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:565 +msgid "Not set" +msgstr "No configurado" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:575 +msgid "Active-Active" +msgstr "Activo-Activo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:577 +msgid "Active-Passive" +msgstr "Activo-Pasivo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "Este clúster ya ha sido definido, use otro nombre." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:773 +msgid "Cluster name" +msgstr "Nombre del clúster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:774 +msgid "" +"An agent with the same name of the cluster will be created, as well a " +"special service with the same name" +msgstr "" +"Se creará un agente con el mismo nombre que el clúster y un servicio " +"especial con el mismo nombre." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:788 +msgid "Cluster type" +msgstr "Tipo de clúster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:789 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master " +"member is working" +msgstr "" +"AA es un clúster donde funcionan todos los miembros. En un clúster AP solo " +"trabaja el miembro maestro." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:797 +msgid "Active - Active" +msgstr "Activo - Activo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:798 +msgid "Active - Pasive" +msgstr "Activo - Pasivo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:818 +msgid "Target cluster agent will be stored under this group" +msgstr "El agente del clúster objetivo se guardará bajo este grupo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:834 +#: ../../include/functions_servers.php:610 +msgid "Prediction server" +msgstr "Servidor de predicción" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:835 +msgid "" +"You must select a Prediction Server to perform all cluster status " +"calculations" +msgstr "" +"Debe seleccionar un Servidor de Predicción para llevar a cabo todos los " +"cálculos de estado de clúster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:989 +msgid "critical if" +msgstr "crítico si" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:998 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1021 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "% de los módulos equilibrados están caídos (igual o mayor)." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1036 +msgid "Please, set threholds for all active-active modules" +msgstr "Ponga umbrales para todos los módulos activo-activo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1140 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "Compruebe todos los módulos activo-pasivo críticos para este clúster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1142 +msgid "" +"If a critical balanced module is going to critical status, then cluster will " +"be critical." +msgstr "" +"Si un módulo equilibrado crítico pasa a estado crítico, el clúster entrará " +"en estado crítico." + +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "No tiene permisos de acceso a esta funcionalidad" + +#: ../../enterprise/include/lib/RCMDFile.class.php:541 +msgid "There was a problem creating RCMD" +msgstr "Ha habido un problema al crear RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:686 +#: ../../enterprise/include/lib/RCMDFile.class.php:710 +msgid "There was a problem deleting RCMD" +msgstr "Ha habido un problema al eliminar RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:858 +msgid "No agent configuration file" +msgstr "No hay archivo de configuración de agente" + +#: ../../enterprise/include/lib/RCMDFile.class.php:866 +msgid "you don't have write permissions in the configuration file" +msgstr "no tiene permisos de escritura en el archivo de configuración" + +#: ../../enterprise/include/lib/RCMDFile.class.php:907 +msgid "This agent is already a target" +msgstr "Este agente ya es un objetivo" + +#: ../../enterprise/include/lib/RCMDFile.class.php:938 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "No tiene permisos para acceder a este agente %s" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1004 +msgid "There was a problem creating RCMD files" +msgstr "Ha habido un problema al crear los archivos RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1051 +msgid "There was a problem creating target" +msgstr "Ha habido un problema al crear un objetivo" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1085 +msgid "There was a problem adding items in the configuration file" +msgstr "" +"Ha habido un problema al añadir elementos al archivo de configuración" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1111 +#: ../../enterprise/include/lib/RCMDFile.class.php:1278 +msgid "No agent has been selected" +msgstr "No se han seleccionado agentes" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1144 +msgid "Target doesn't exist" +msgstr "El objetivo no existe" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1216 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "" +"Ha habido un problema al eliminar los tokes del archivo de configuración" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1252 +msgid "There was a problem deleting target from DB" +msgstr "Ha habido un problema al eliminar el objetivo de la base de datos" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1410 +msgid "Yaml is empty" +msgstr "Yaml está vacío" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1419 +msgid "Doesn't have a valid YAML format" +msgstr "No tiene un formato YAML válido" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1437 +#, php-format +msgid "%s field is not allowed" +msgstr "El campo %s no está permitido" + +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "Metaconsola" + +#: ../../enterprise/include/functions_events.php:107 +#: ../../godmode/events/event_filter.php:124 +#: ../../godmode/events/event_edit_filter.php:316 +#: ../../include/lib/Dashboard/Widgets/events_list.php:329 +#: ../../operation/events/events_list.php:956 +#: ../../operation/events/events.php:915 ../../operation/events/events.php:1390 +msgid "Event status" +msgstr "Estado del evento" + +#: ../../enterprise/include/functions_events.php:168 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../operation/events/events_list.php:776 +#: ../../operation/events/events.php:1097 +msgid "User ack." +msgstr "Validación del usuario" + +#: ../../enterprise/include/functions_events.php:178 +#: ../../godmode/events/event_edit_filter.php:415 +#: ../../operation/events/events_list.php:857 +#: ../../operation/events/events.php:1155 +msgid "Date from" +msgstr "Fecha desde" + +#: ../../enterprise/include/functions_events.php:188 +#: ../../godmode/events/event_edit_filter.php:418 +#: ../../operation/events/events_list.php:861 +#: ../../operation/events/events.php:1206 +msgid "Date to" +msgstr "Fecha hasta" + +#: ../../enterprise/include/functions_events.php:208 +#: ../../godmode/events/event_edit_filter.php:564 +#: ../../operation/events/events_list.php:823 +#: ../../operation/events/events.php:1114 +msgid "Alert events" +msgstr "Eventos de la alerta" + +#: ../../enterprise/include/functions_events.php:219 +msgid "Id source events" +msgstr "Eventos fuente de ID" + +#: ../../enterprise/include/functions_events.php:229 +#: ../../godmode/admin_access_logs.php:72 +#: ../../godmode/admin_access_logs.php:73 +#: ../../godmode/events/event_edit_filter.php:370 +#: ../../mobile/operation/events.php:705 +#: ../../include/lib/Dashboard/Widgets/events_list.php:289 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/events/events_list.php:959 +#: ../../operation/events/events.php:928 ../../operation/events/events.php:1420 +msgid "Max. hours old" +msgstr "Máx. horas de antiguedad" + +#: ../../enterprise/include/functions_events.php:245 +#: ../../enterprise/include/functions_events.php:267 +msgid "More than 5 tags" +msgstr "Más de 5 etiquetas" + +#: ../../enterprise/include/functions_events.php:251 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../operation/events/events_list.php:878 +#: ../../operation/events/events_list.php:881 +#: ../../operation/events/events.php:1238 +#: ../../operation/events/events.php:1241 +msgid "Events with following tags" +msgstr "Eventos con las siguientes etiquetas" + +#: ../../enterprise/include/functions_events.php:273 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../operation/events/events_list.php:879 +#: ../../operation/events/events_list.php:882 +#: ../../operation/events/events.php:1239 +#: ../../operation/events/events.php:1242 +msgid "Events without following tags" +msgstr "Eventos sin las siguientes etiquetas" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:451 +msgid "Active filter" +msgstr "Filtro activo" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:451 +msgid "Active filters" +msgstr "Filtros activos" + +#: ../../enterprise/include/functions_update_manager.php:182 +#: ../../enterprise/include/functions_update_manager.php:376 +#: ../../include/functions_update_manager.php:1344 +#: ../../include/functions_update_manager.php:1346 +#: ../../include/functions_update_manager.php:1486 +#: ../../include/functions_update_manager.php:1489 +msgid "Could not connect to internet" +msgstr "No se pudo conectar a internet" + +#: ../../enterprise/include/functions_update_manager.php:184 +#: ../../include/functions_update_manager.php:1350 +#: ../../include/functions_update_manager.php:1352 +#: ../../include/functions_update_manager.php:1495 +#: ../../include/functions_update_manager.php:1498 +msgid "Server not found." +msgstr "Servidor no encontrado" + +#: ../../enterprise/include/functions_update_manager.php:186 +#: ../../enterprise/include/functions_update_manager.php:391 +#, php-format +msgid "There is a error: %s" +msgstr "Hay un error: %s" + +#: ../../enterprise/include/functions_update_manager.php:197 +#, 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:206 +msgid "Version number:" +msgstr "Número de versión:" + +#: ../../enterprise/include/functions_update_manager.php:207 +msgid "Show details" +msgstr "Ver detalles" + +#: ../../enterprise/include/functions_update_manager.php:214 +#: ../../godmode/update_manager/update_manager.offline.php:71 +#: ../../include/functions_update_manager.php:1367 +msgid "Minor release available" +msgstr "Actualización menor disponible" + +#: ../../enterprise/include/functions_update_manager.php:215 +#: ../../godmode/update_manager/update_manager.offline.php:72 +#: ../../include/functions_update_manager.php:1368 +msgid "New package available" +msgstr "Nuevo paquete disponible" + +#: ../../enterprise/include/functions_update_manager.php:216 +#: ../../enterprise/include/functions_update_manager.php:218 +#: ../../godmode/update_manager/update_manager.offline.php:73 +#: ../../godmode/update_manager/update_manager.offline.php:75 +#: ../../include/functions_update_manager.php:1369 +#: ../../include/functions_update_manager.php:1371 +msgid "Minor release rejected. Changes will not apply." +msgstr "Actualización menor rechazada. No se aplicarán los cambios." + +#: ../../enterprise/include/functions_update_manager.php:217 +#: ../../godmode/update_manager/update_manager.offline.php:74 +#: ../../include/functions_update_manager.php:1370 +msgid "" +"Minor release rejected. The database will not be updated and the package " +"will apply." +msgstr "" +"Actualización menor rechazada. La base de datos no se actualizará y el " +"paquete no se aplicará." + +#: ../../enterprise/include/functions_update_manager.php:219 +#: ../../godmode/update_manager/update_manager.offline.php:76 +#: ../../include/functions_update_manager.php:1372 +msgid "These package changes will not apply." +msgstr "Los cambios de este paquete no se aplicarán." + +#: ../../enterprise/include/functions_update_manager.php:220 +#: ../../godmode/update_manager/update_manager.offline.php:77 +#: ../../include/functions_update_manager.php:1373 +msgid "Package rejected. These package changes will not apply." +msgstr "Paquete rechazado. Los cambios de este paquete no se aplicarán." + +#: ../../enterprise/include/functions_update_manager.php:221 +#: ../../godmode/update_manager/update_manager.offline.php:78 +#: ../../include/functions_update_manager.php:1374 +msgid "Database successfully updated" +msgstr "Base de datos actualizada correctamente" + +#: ../../enterprise/include/functions_update_manager.php:222 +#: ../../godmode/update_manager/update_manager.offline.php:79 +#: ../../include/functions_update_manager.php:1375 +msgid "Error in MR file" +msgstr "Error en el archivo MR" + +#: ../../enterprise/include/functions_update_manager.php:223 +#: ../../godmode/update_manager/update_manager.offline.php:80 +#: ../../include/functions_update_manager.php:1376 +msgid "Package updated successfully" +msgstr "Paquete actualizado correctamente" + +#: ../../enterprise/include/functions_update_manager.php:224 +#: ../../godmode/update_manager/update_manager.offline.php:81 +#: ../../include/functions_update_manager.php:1377 +msgid "Error in package updated" +msgstr "Error al actualizar el paquete" + +#: ../../enterprise/include/functions_update_manager.php:225 +#: ../../godmode/update_manager/update_manager.offline.php:82 +#: ../../include/functions_update_manager.php:1378 +msgid "" +"Database MR version is inconsistent, do you want to apply the package?" +msgstr "" +"La actualización menor de la base de datos es inconsistente, ¿quieres " +"aplicar el paquete?" + +#: ../../enterprise/include/functions_update_manager.php:226 +#: ../../godmode/update_manager/update_manager.offline.php:83 +#: ../../include/functions_update_manager.php:1379 +msgid "There are db changes" +msgstr "Hay cambios en la BD" + +#: ../../enterprise/include/functions_update_manager.php:227 +#: ../../godmode/update_manager/update_manager.offline.php:84 +#: ../../include/functions_update_manager.php:1380 +msgid "" +"There are new database changes available to apply. Do you want to start the " +"DB update process?" +msgstr "" +"Hay nuevos cambios disponibles para aplicar a la base de datos. ¿Quieres " +"comenzar el proceso de actualización de la BD?" + +#: ../../enterprise/include/functions_update_manager.php:228 +#: ../../godmode/update_manager/update_manager.offline.php:85 +#: ../../include/functions_update_manager.php:1381 +msgid "We recommend launching " +msgstr "Se recomienda lanzar " + +#: ../../enterprise/include/functions_update_manager.php:229 +#: ../../godmode/update_manager/update_manager.offline.php:86 +#: ../../include/functions_update_manager.php:1382 +msgid "planned downtime" +msgstr "parada programada" + +#: ../../enterprise/include/functions_update_manager.php:236 +#: ../../godmode/update_manager/update_manager.offline.php:92 +#: ../../include/functions_update_manager.php:1389 +msgid " to this process" +msgstr " para este proceso" + +#: ../../enterprise/include/functions_update_manager.php:238 +#: ../../godmode/update_manager/update_manager.offline.php:95 +#: ../../include/functions_update_manager.php:1392 ../../general/header.php:78 +msgid "About minor release update" +msgstr "Sobre la actualización menor" + +#: ../../enterprise/include/functions_update_manager.php:241 +#: ../../godmode/update_manager/update_manager.offline.php:98 +#: ../../include/functions_update_manager.php:1395 +msgid "There is a new update available" +msgstr "Hay una nueva actualización disponible" + +#: ../../enterprise/include/functions_update_manager.php:242 +#: ../../godmode/update_manager/update_manager.offline.php:99 +#: ../../include/functions_update_manager.php:1396 +msgid "" +"There is a new update available to apply. Do you want to start the update " +"process?" +msgstr "" +"Hay una nueva actualización disponible para aplicar. ¿Quieres comenzar el " +"proceso de actualización?" + +#: ../../enterprise/include/functions_update_manager.php:243 +#: ../../godmode/update_manager/update_manager.offline.php:102 +#: ../../include/functions_update_manager.php:1397 +msgid "Applying DB MR" +msgstr "Aplicando actualización menor a la base de datos" + +#: ../../enterprise/include/functions_update_manager.php:246 +#: ../../godmode/update_manager/update_manager.offline.php:105 +#: ../../include/functions_update_manager.php:1400 +msgid "Apply MR" +msgstr "Aplicar actualización menor" + +#: ../../enterprise/include/functions_update_manager.php:266 +#: ../../include/functions_update_manager.php:1408 +msgid "There is no update available." +msgstr "No hay actualizaciones disponibles" + +#: ../../enterprise/include/functions_update_manager.php:383 +#: ../../include/ajax/update_manager.ajax.php:462 +msgid "Fail to update to the last package." +msgstr "Error al actualizar al ultimo paquete" + +#: ../../enterprise/include/functions_update_manager.php:409 +#: ../../include/ajax/update_manager.ajax.php:474 +msgid "Starting to update to the last package." +msgstr "Comenzando la actualización al último paquete" + +#: ../../enterprise/include/functions_update_manager.php:453 +#: ../../include/ajax/update_manager.ajax.php:96 +msgid "There was an error extracting the file '" +msgstr "Error al extraer el archivo" + +#: ../../enterprise/include/functions_update_manager.php:470 +#: ../../include/ajax/update_manager.ajax.php:113 +msgid "The package was not extracted." +msgstr "El paquete no se pudo extraer." + +#: ../../enterprise/include/functions_update_manager.php:526 +#: ../../include/ajax/update_manager.ajax.php:571 +msgid "progress" +msgstr "progreso" + +#: ../../enterprise/include/functions_update_manager.php:575 +#: ../../include/ajax/update_manager.ajax.php:253 +#: ../../include/functions_update_manager.php:1061 +msgid "An error ocurred while reading a file." +msgstr "Se produjo un error al leer un archivo." + +#: ../../enterprise/include/functions_update_manager.php:619 +#: ../../enterprise/include/functions_update_manager.php:662 +#: ../../include/ajax/update_manager.ajax.php:217 +#: ../../include/ajax/update_manager.ajax.php:232 +#: ../../include/functions_update_manager.php:1102 +#: ../../include/functions_update_manager.php:1141 +msgid "Some of your old files might not be recovered." +msgstr "Algunos de los archivos antiguos no se han podido recuperar." + +#: ../../enterprise/include/functions_update_manager.php:628 +#: ../../enterprise/include/functions_update_manager.php:633 +#: ../../enterprise/include/functions_update_manager.php:653 +#: ../../include/ajax/update_manager.ajax.php:207 +#: ../../include/ajax/update_manager.ajax.php:212 +#: ../../include/ajax/update_manager.ajax.php:238 +#: ../../include/functions_update_manager.php:1107 +#: ../../include/functions_update_manager.php:1112 +#: ../../include/functions_update_manager.php:1132 +msgid "Some of your files might not be recovered." +msgstr "" +"Puede que algunos de los archivos no se hayan recuperado correctamente." + +#: ../../enterprise/include/functions_update_manager.php:642 +#: ../../enterprise/include/functions_update_manager.php:672 +#, php-format +msgid "Line '%s' not copied to the progress file." +msgstr "La línea '%s' no se ha copiado al archivo de progreso." + +#: ../../enterprise/include/functions_update_manager.php:684 +#: ../../include/ajax/update_manager.ajax.php:259 +#: ../../include/functions_update_manager.php:1163 +msgid "The package does not exist" +msgstr "El paquete no existe." + +#: ../../enterprise/include/functions_update_manager.php:697 +#: ../../include/ajax/update_manager.ajax.php:617 +#: ../../include/functions_update_manager.php:1178 +msgid "The package is installed." +msgstr "El paquete está instalado." + +#: ../../enterprise/include/functions_metaconsole.php:2762 +msgid "Agent alerts action does not exist in target node" +msgstr "La acción de alertas de agentes no existe en el nodo objetivo." + +#: ../../enterprise/include/functions_metaconsole.php:2769 +msgid "Agent alerts template does not exist in target node" +msgstr "La plantilla de alertas de agente no existe en el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2776 +msgid "Agent inventory does not exist in target node" +msgstr "El inventario de agente no existe en el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2783 +msgid "Exists agent conf please remove configuration file from target node." +msgstr "" +"Existe archivo de configuración de agente, elimine el fichero del nodo " +"objetivo." + +#: ../../enterprise/include/functions_metaconsole.php:2790 +msgid "Agent collections does not exist in target node" +msgstr "Las colecciones de agente no existen en el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2797 +msgid "Agent plugins does not exist in target node" +msgstr "El plugin de agente no existe en el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2804 +msgid "" +"Agent policies definitions does not match with defined ones in target node" +msgstr "" +"Las definiciones de políticas de agentes no coinciden con las definidas en " +"el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2811 +msgid "Agent group does not exist in target node" +msgstr "El grupo de agente no existe en el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2818 +msgid "Agent already exists in target node" +msgstr "El agente ya existe en el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2842 +msgid "The agent: has not been added due to problems in the insertion" +msgstr "El agente: no se ha añadido por problemas en la inserción" + +#: ../../enterprise/include/functions_metaconsole.php:2847 +msgid "The agent: has already been added to the migration queue" +msgstr "El agente: ya se ha añadido a la cola de migración" + +#: ../../enterprise/include/functions_metaconsole.php:2925 +msgid "Cannot " +msgstr "No puede " + +#: ../../enterprise/include/functions_license.php:119 +msgid "Client" +msgstr "Cliente" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "Suscripción" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1147 +msgid "Support expires" +msgstr "El soporte caduca" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "Caduca" + +#: ../../enterprise/include/functions_policies.php:511 +#: ../../enterprise/include/functions_policies.php:526 +#: ../../include/functions_alerts.php:460 +msgid "copy" +msgstr "copiar" + +#: ../../enterprise/include/functions_policies.php:3519 +msgid "Policy linkation" +msgstr "Vinculación de políticas" + +#: ../../enterprise/include/functions_policies.php:3524 +msgid "Module linked" +msgstr "Módulo enlazado" + +#: ../../enterprise/include/functions_policies.php:3526 +#: ../../enterprise/include/functions_policies.php:3538 +msgid "Unlink from policy" +msgstr "Módulo desenlazado de la política" + +#: ../../enterprise/include/functions_policies.php:3530 +msgid "Module unlinked" +msgstr "Módulo desenlazado" + +#: ../../enterprise/include/functions_policies.php:3532 +#: ../../enterprise/include/functions_policies.php:3544 +msgid "Relink to policy" +msgstr "Volver a enlazar a la política" + +#: ../../enterprise/include/functions_policies.php:3536 +msgid "Module pending to link" +msgstr "Módulo pendiente de enlazar" + +#: ../../enterprise/include/functions_policies.php:3536 +#: ../../godmode/agentes/module_manager_editor.php:540 +msgid "Module will be linked in the next application" +msgstr "El módulo será enlazado en la próxima aplicación." + +#: ../../enterprise/include/functions_policies.php:3542 +msgid "Module pending to unlink" +msgstr "Módulo pendiente de desenlazar" + +#: ../../enterprise/include/functions_policies.php:3542 +#: ../../godmode/agentes/module_manager_editor.php:554 +msgid "Module will be unlinked in the next application" +msgstr "El módulo será desenlazado en la próxima aplicación." + +#: ../../enterprise/include/functions_policies.php:3734 +#: ../../godmode/agentes/configurar_agente.php:472 +#: ../../godmode/agentes/configurar_agente.php:659 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "Asistente SNMP" + +#: ../../enterprise/include/functions_policies.php:3737 +#: ../../godmode/agentes/configurar_agente.php:475 +#: ../../godmode/agentes/configurar_agente.php:665 +msgid "SNMP Interfaces wizard" +msgstr "Asistente de interfaces SNMP" + +#: ../../enterprise/include/functions_policies.php:3740 +#: ../../godmode/agentes/configurar_agente.php:478 +#: ../../godmode/agentes/configurar_agente.php:671 +msgid "WMI Wizard" +msgstr "Asistente WMI" + +#: ../../enterprise/include/functions_policies.php:4036 +msgid "Create a new policy map" +msgstr "Crear un nuevo mapa de políticas" + +#: ../../enterprise/include/functions_policies.php:4369 +#: ../../extensions/resource_registration.php:1027 +msgid "Error, please install the PHP libXML in the system." +msgstr "Error: por favor, instale la librería PHP LibXML en el sistema." + +#: ../../enterprise/include/functions_policies.php:4381 +#, php-format +msgid "" +"This extension makes registration of policies enterprise.
You can get " +"more policies in our Public Resource Library" +msgstr "" +"Esta extensión permite registrar las políticas Enterprise.
Puedes " +"conseguir más políticas en nuestra Librería de recursos " +"pública." + +#: ../../enterprise/include/functions_policies.php:4388 +#: ../../extensions/resource_registration.php:1048 +msgid "Group filter: " +msgstr "Filtro de grupo: " + +#: ../../enterprise/include/functions_policies.php:4392 +#: ../../extensions/extension_uploader.php:89 +#: ../../extensions/resource_registration.php:1052 +#: ../../extensions/plugin_registration.php:45 +#: ../../godmode/alerts/alert_special_days.php:290 +#: ../../operation/incidents/incident_detail.php:527 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 +msgid "Upload" +msgstr "Subir" + +#: ../../enterprise/include/functions_policies.php:4431 +#: ../../enterprise/include/functions_policies.php:4439 +#: ../../enterprise/include/functions_policies.php:5036 +msgid "This will not produce any action." +msgstr "Esto no generará ninguna acción." + +#: ../../enterprise/include/functions_policies.php:4496 +#: ../../enterprise/include/functions_policies.php:5065 +#, php-format +msgid "Error connecting with node %s." +msgstr "Error al conectar con el nodo %s." + +#: ../../enterprise/include/functions_policies.php:4505 +#: ../../enterprise/include/functions_policies.php:5074 +#, php-format +msgid "Policy does not exist in node %s. Error creating it." +msgstr "La política no existe en ele nodo %s. Error al crearlo." + +#: ../../enterprise/include/functions_policies.php:4511 +#: ../../enterprise/include/functions_policies.php:5080 +#, php-format +msgid "" +"This policy exist in node %s with other name (%s). Change the name to '%s' " +"to apply the policy." +msgstr "" +"Esta política existe en el nodo %s con otro nombre (%s). Cambie el nombre a " +"'%s' para aplicar la política." + +#: ../../enterprise/include/functions_policies.php:4523 +#: ../../enterprise/include/functions_policies.php:5092 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "Esta política se está aplicando en el nodo %s." + +#: ../../enterprise/include/functions_policies.php:4539 +#, php-format +msgid "Error syncronizing the agents to node %s." +msgstr "Error al sincronizar los agentes al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4552 +#, php-format +msgid "Error syncronizing the groups to node %s." +msgstr "Error al sincronizar los grupos al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4565 +#, php-format +msgid "Error syncronizing the modules to node %s." +msgstr "Error al sincronizar los módulos al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4581 +#, php-format +msgid "Error syncronizing the alerts to node %s." +msgstr "Error al sincronizar las alertas al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4591 +#, php-format +msgid "Error syncronizing the alert actions to node %s." +msgstr "Error al sincronizar las acciones de alerta al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4605 +#, php-format +msgid "Error syncronizing the inventory modules to node %s." +msgstr "Error al sincronizar los módulos de inventario al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4618 +#, php-format +msgid "Error syncronizing the plugins to node %s." +msgstr "Error al sincronizar los plugins al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4632 +#, php-format +msgid "Error syncronizing the collections to node %s." +msgstr "Error al sincronizar las colecciones al nodo %s." + +#: ../../enterprise/include/functions_policies.php:4642 +#, php-format +msgid "Error adding the queue to node %s." +msgstr "Error al añadir la cola al nodo %s." + +#: ../../enterprise/include/functions_policies.php:5130 +msgid "Error syncronizing ." +msgstr "Error de sincronización." + +#: ../../enterprise/include/functions_local_components.php:175 +msgid "Empty configuration" +msgstr "Configuración vacía" + +#: ../../enterprise/include/functions_local_components.php:180 +msgid "Empty OS" +msgstr "SO vacío" + +#: ../../enterprise/include/functions_local_components.php:342 +#: ../../include/functions_alerts.php:1135 +#: ../../include/functions_network_components.php:617 +msgid "Copy of" +msgstr "Copia de" + +#: ../../enterprise/include/functions_ux_console.php:506 +#: ../../enterprise/operation/agentes/tag_view.php:861 +#: ../../enterprise/operation/agentes/tag_view.php:871 +#: ../../enterprise/operation/agentes/ux_console_view.php:102 +#: ../../enterprise/operation/agentes/ux_console_view.php:297 +#: ../../enterprise/operation/agentes/ux_console_view.php:377 +#: ../../enterprise/operation/agentes/wux_console_view.php:351 +#: ../../include/functions_ui.php:5723 +msgid "Snapshot view" +msgstr "Vista de captura de pantalla" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "No se han podido obtener datos del módulo de inventario." + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:558 +#: ../../mobile/operation/agents.php:453 ../../mobile/operation/modules.php:769 +#: ../../mobile/operation/agent.php:385 +#: ../../mobile/operation/visualmap.php:143 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:864 +#: ../../mobile/operation/tactical.php:239 +msgid "Loading..." +msgstr "Cargando…" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:38 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:97 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:289 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 +msgid "Transactions List" +msgstr "Lista de transacciones" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:72 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:377 +msgid "Edit Transaction" +msgstr "Editar transacción" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "Volver a lista de fases" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "Mapa transaccional - Fase - " + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "Este agente no tiene ninguna política asignada." + +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../include/functions_events.php:2419 +msgid "V." +msgstr "V." + +#: ../../enterprise/operation/agentes/policy_view.php:69 +msgid "Policy outdate" +msgstr "Política obsoleta" + +#: ../../enterprise/operation/agentes/policy_view.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:145 +msgid "Toggle the collection table" +msgstr "Cambiar la tabla de la colección" + +#: ../../enterprise/operation/agentes/policy_view.php:141 +msgid "Descripttion" +msgstr "Descripción" + +#: ../../enterprise/operation/agentes/policy_view.php:146 +msgid "Show Collection" +msgstr "Mostrar colecciones" + +#: ../../enterprise/operation/agentes/policy_view.php:205 +#: ../../enterprise/operation/agentes/policy_view.php:214 +msgid "Toggle the alert table" +msgstr "Cambia a la tabla de alertas" + +#: ../../enterprise/operation/agentes/policy_view.php:206 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../operation/agentes/alerts_status.php:513 +#: ../../operation/agentes/alerts_status.php:549 +#: ../../operation/agentes/alerts_status.php:584 +#: ../../operation/agentes/alerts_status.php:617 +#: ../../operation/agentes/alerts_status.functions.php:107 +msgid "Standby" +msgstr "Standby" + +#: ../../enterprise/operation/agentes/policy_view.php:210 +#: ../../extensions/agents_alerts.php:521 +#: ../../godmode/snmpconsole/snmp_alert.php:1284 +#: ../../godmode/alerts/alert_view.php:76 +#: ../../include/functions_reporting_html.php:4185 +#: ../../include/ajax/alert_list.ajax.php:281 +#: ../../include/ajax/alert_list.ajax.php:306 +#: ../../include/functions_treeview.php:459 +#: ../../operation/agentes/alerts_status.php:525 +#: ../../operation/agentes/alerts_status.php:560 +#: ../../operation/agentes/alerts_status.php:595 +#: ../../operation/agentes/alerts_status.php:627 +msgid "Last fired" +msgstr "Disparada por última vez" + +#: ../../enterprise/operation/agentes/policy_view.php:215 +msgid "Show Alert" +msgstr "Mostrar alertas" + +#: ../../enterprise/operation/agentes/policy_view.php:322 +#: ../../enterprise/operation/agentes/policy_view.php:331 +msgid "Toggle the module table" +msgstr "Cambiar a la tabla de alertas" + +#: ../../enterprise/operation/agentes/policy_view.php:323 +msgid "Relationship" +msgstr "Relación" + +#: ../../enterprise/operation/agentes/policy_view.php:332 +msgid "Show Modules" +msgstr "Mostrar módulos" + +#: ../../enterprise/operation/agentes/policy_view.php:351 +msgid "(Un-adopted)" +msgstr "(Desadoptados)" + +#: ../../enterprise/operation/agentes/policy_view.php:354 +msgid "(Adopted)" +msgstr "(Adoptados)" + +#: ../../enterprise/operation/agentes/policy_view.php:359 +msgid "(Un-adopted) (Unlinked)" +msgstr "(Desadoptados)(Desvinculados)" + +#: ../../enterprise/operation/agentes/policy_view.php:362 +msgid "(Adopted) (Unlinked)" +msgstr "(Adoptados)(Desvinculados)" + +#: ../../enterprise/operation/agentes/policy_view.php:371 +#: ../../godmode/agentes/module_manager.php:816 +msgid "Non initialized module" +msgstr "Módulo no iniciado" + +#: ../../enterprise/operation/agentes/transactional_map.php:49 +msgid "Transactions list" +msgstr "Lista de transacciones" + +#: ../../enterprise/operation/agentes/transactional_map.php:123 +msgid "Name can't be empty" +msgstr "El nombre no se puede quedar en blanco." + +#: ../../enterprise/operation/agentes/transactional_map.php:180 +msgid "Transaction name" +msgstr "Nombre de la transacción" + +#: ../../enterprise/operation/agentes/transactional_map.php:183 +msgid "Running status" +msgstr "Estado de ejecución" + +#: ../../enterprise/operation/agentes/transactional_map.php:185 +msgid "Time spent" +msgstr "Tiempo utilizado" + +#: ../../enterprise/operation/agentes/transactional_map.php:186 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:444 +#: ../../operation/incidents/incident_detail.php:289 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:418 +#: ../../operation/servers/recon_view.php:112 +msgid "Updated at" +msgstr "Actualizado el" + +#: ../../enterprise/operation/agentes/transactional_map.php:227 +msgid "Stopped" +msgstr "Detenido" + +#: ../../enterprise/operation/agentes/transactional_map.php:233 +msgid "Starting" +msgstr "Iniciando" + +#: ../../enterprise/operation/agentes/transactional_map.php:235 +msgid "Stopping" +msgstr "Deteniendo" + +#: ../../enterprise/operation/agentes/transactional_map.php:361 +#: ../../godmode/menu.php:31 ../../godmode/setup/setup_ehorus.php:108 +#: ../../godmode/setup/setup_integria.php:493 +#: ../../operation/users/user_edit.php:695 +msgid "Start" +msgstr "Inicio" + +#: ../../enterprise/operation/agentes/transactional_map.php:372 +msgid "Edit phases" +msgstr "Editar fases" + +#: ../../enterprise/operation/agentes/transactional_map.php:380 +msgid "Error in phases section" +msgstr "Error en la sección de fases" + +#: ../../enterprise/operation/agentes/transactional_map.php:402 +msgid "Create Transaction" +msgstr "Crear transacción" + +#: ../../enterprise/operation/agentes/tag_view.php:32 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "Visor de etiquetas" + +#: ../../enterprise/operation/agentes/tag_view.php:118 +#: ../../operation/agentes/status_monitor.php:388 +msgid "Monitor status" +msgstr "Estado del monitor" + +#: ../../enterprise/operation/agentes/tag_view.php:202 +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../operation/agentes/alerts_status.functions.php:91 +msgid "Only it is show tags in use." +msgstr "Mostrar solo etiquetas en uso" + +#: ../../enterprise/operation/agentes/tag_view.php:208 +#: ../../operation/agentes/status_monitor.php:452 +#: ../../operation/agentes/alerts_status.functions.php:96 +msgid "No tags" +msgstr "Sin etiquetas" + +#: ../../enterprise/operation/agentes/tag_view.php:257 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:511 +msgid "Data server module" +msgstr "Módulo del servidor de datos" + +#: ../../enterprise/operation/agentes/tag_view.php:259 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:513 +msgid "Network server module" +msgstr "Módulo del servidor de red" + +#: ../../enterprise/operation/agentes/tag_view.php:263 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:517 +msgid "Plugin server module" +msgstr "Módulo del servidor de plugin" + +#: ../../enterprise/operation/agentes/tag_view.php:267 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:521 +msgid "WMI server module" +msgstr "Módulo del servidor WMI" + +#: ../../enterprise/operation/agentes/tag_view.php:271 +#: ../../godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../operation/agentes/status_monitor.php:525 +msgid "Prediction server module" +msgstr "Módulo del servidor de predicción" + +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../enterprise/operation/agentes/tag_view.php:657 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1155 +msgid "Server type" +msgstr "Tipo de servidor" + +#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../godmode/agentes/modificar_agente.php:183 +#: ../../operation/agentes/status_monitor.php:542 +msgid "Only enabled" +msgstr "Solo habilitados" + +#: ../../enterprise/operation/agentes/tag_view.php:285 +#: ../../godmode/agentes/modificar_agente.php:182 +#: ../../operation/agentes/status_monitor.php:543 +msgid "Only disabled" +msgstr "Solo deshabilitados" + +#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../operation/agentes/status_monitor.php:546 +msgid "Show monitors..." +msgstr "Mostrar módulos..." + +#: ../../enterprise/operation/agentes/tag_view.php:298 +#: ../../enterprise/operation/agentes/tag_view.php:656 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:561 +msgid "Data type" +msgstr "Tipo de dato" + +#: ../../enterprise/operation/agentes/tag_view.php:426 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:729 +msgid "Agent custom fields" +msgstr "Campos personalizados de agente" + +#: ../../enterprise/operation/agentes/tag_view.php:579 +#: ../../include/functions_treeview.php:645 +#: ../../operation/agentes/estado_agente.php:710 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "Remoto" + +#: ../../enterprise/operation/agentes/tag_view.php:624 +#: ../../operation/agentes/estado_agente.php:846 +msgid "Remote config" +msgstr "Configuración remota" + +#: ../../enterprise/operation/agentes/tag_view.php:659 +#: ../../enterprise/operation/services/services.service.php:177 +#: ../../enterprise/operation/services/services.list.php:435 +#: ../../extensions/realtime_graphs.php:110 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/ajax/module.php:848 +#: ../../include/class/NetworkMap.class.php:2933 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:249 +#: ../../include/functions_events.php:4174 +#: ../../operation/agentes/status_monitor.php:1178 +#: ../../operation/search_modules.php:36 +msgid "Graph" +msgstr "Gráfico" + +#: ../../enterprise/operation/agentes/tag_view.php:660 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:151 +#: ../../godmode/agentes/module_manager.php:651 +#: ../../operation/agentes/status_monitor.php:1183 +msgid "Warn" +msgstr "Advertencia" + +#: ../../enterprise/operation/agentes/tag_view.php:923 +#: ../../mobile/operation/modules.php:515 +#: ../../mobile/operation/modules.php:578 +#: ../../include/functions_modules.php:2557 +#: ../../include/functions_modules.php:3524 +#: ../../include/functions_events.php:60 +#: ../../operation/agentes/status_monitor.php:1381 +#: ../../operation/search_modules.php:96 ../../operation/events/events.php:1848 +msgid "NOT INIT" +msgstr "No iniciado" + +#: ../../enterprise/operation/agentes/tag_view.php:1063 +#: ../../include/functions_reporting.php:10081 +#: ../../include/functions_reporting.php:10090 +#, php-format +msgid "%d Total modules" +msgstr "%d módulos totales" + +#: ../../enterprise/operation/agentes/tag_view.php:1064 +#: ../../include/functions_reporting.php:10082 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d módulos en estado normal" + +#: ../../enterprise/operation/agentes/tag_view.php:1065 +#: ../../include/functions_reporting.php:10083 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d módulos en estado crítico" + +#: ../../enterprise/operation/agentes/tag_view.php:1066 +#: ../../include/functions_reporting.php:10084 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d módulos en estado de advertencia" + +#: ../../enterprise/operation/agentes/tag_view.php:1067 +#: ../../include/functions_reporting.php:10085 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d módulos en estado desconocido" + +#: ../../enterprise/operation/agentes/tag_view.php:1068 +#: ../../include/functions_reporting.php:10086 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d módulos en estado no iniciado" + +#: ../../enterprise/operation/agentes/manage_transmap.php:63 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:106 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:368 +msgid "Edit main data" +msgstr "Editar datos principales" + +#: ../../enterprise/operation/agentes/manage_transmap.php:82 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:125 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:387 +msgid "View Transaction" +msgstr "Ver transacción" + +#: ../../enterprise/operation/agentes/manage_transmap.php:113 +msgid "Return to windowed mode" +msgstr "Volver al modo ventana" + +#: ../../enterprise/operation/agentes/manage_transmap.php:119 +msgid "Transactional Map - " +msgstr "Mapa transaccional - " + +#: ../../enterprise/operation/agentes/manage_transmap.php:128 +msgid "Transaction not found" +msgstr "Transacción no encontrada" + +#: ../../enterprise/operation/agentes/manage_transmap.php:131 +msgid "Master lock file not found (No data to show)" +msgstr "Archivo de bloqueo maestro no encontrado (no hay datos que mostrar)" + +#: ../../enterprise/operation/agentes/manage_transmap.php:134 +msgid "Transaction is stopped" +msgstr "Transacción detenida" + +#: ../../enterprise/operation/agentes/manage_transmap.php:137 +msgid "Error, please check the transaction phases" +msgstr "Error. Por favor, comprueba las fases de la transacción." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:95 +#: ../../operation/agentes/pandora_networkmap.editor.php:294 +msgid "Position X" +msgstr "Posición X" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:97 +#: ../../operation/agentes/pandora_networkmap.editor.php:296 +msgid "Position Y" +msgstr "Posición Y" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/agentes/pandora_networkmap.editor.php:299 +msgid "Zoom scale" +msgstr "Escala de zoom" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:102 +#: ../../operation/agentes/pandora_networkmap.editor.php:304 +msgid "" +"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgstr "" +"Introducir nivel de zoom. 1 = Resolución máxima. Las cifras pueden incluir " +"decimales." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +msgid "Recon task" +msgstr "Tarea de reconocimiento" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +msgid "CIDR IP mask" +msgstr "Máscara CIDR" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:132 +#: ../../operation/agentes/pandora_networkmap.editor.php:309 +msgid "Source from recon task" +msgstr "Origen de tarea recon" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 +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." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:150 +#: ../../operation/agentes/pandora_networkmap.editor.php:328 +msgid "Show only the task with the recon script \"SNMP L2 Recon\"." +msgstr "Mostrar solo las tareas recon con el script \"SNMP L2 Recon\"" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:332 +msgid "Source from CIDR IP mask" +msgstr "Origen de máscara CIDR" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:166 +#: ../../operation/agentes/pandora_networkmap.editor.php:357 +msgid "Don't show subgroups:" +msgstr "No mostrar subgrupos:" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:200 +#: ../../operation/agentes/pandora_networkmap.editor.php:375 +msgid "Method generation networkmap" +msgstr "Método de generación de mapas de red" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:215 +#: ../../operation/agentes/pandora_networkmap.editor.php:395 +msgid "Node separation" +msgstr "Separación de nodos" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:216 +#: ../../operation/agentes/pandora_networkmap.editor.php:396 +msgid "Separation between nodes. By default 0.25" +msgstr "Separación entre nodos. Por defecto 0,25" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:218 +#: ../../operation/agentes/pandora_networkmap.editor.php:398 +msgid "Rank separation" +msgstr "Separación de rango" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:219 +#: ../../operation/agentes/pandora_networkmap.editor.php:399 +msgid "" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and " +"1.0 in radial" +msgstr "" +"Solo plano y radial. Separación entre flechas. Por defecto 0,5 en el plano y " +"1,0 en el radial." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:221 +#: ../../operation/agentes/pandora_networkmap.editor.php:401 +msgid "Min nodes dist" +msgstr "Distancia mínima entre nodos" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:222 +#: ../../operation/agentes/pandora_networkmap.editor.php:402 +msgid "Only circular. Minimum separation between all nodes. By default 1.0" +msgstr "" +"Solo circular. Separación mínima entre todos los nodos. Por defecto 1,0." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:224 +#: ../../operation/agentes/pandora_networkmap.editor.php:404 +msgid "Default ideal node separation" +msgstr "Separación ideal de nodos por defecto" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:225 +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" +msgstr "" +"Solo FDP. Separación ideal de nodos por defecto en el diseño. Por defecto " +"0,3." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1204 +#: ../../include/functions_treeview.php:851 +#: ../../operation/agentes/estado_generalagente.php:654 +msgid "Interface traffic" +msgstr "Interfaz de tráfico" + +#: ../../enterprise/operation/agentes/ver_agente.php:69 +#: ../../operation/agentes/ver_agente.php:847 +msgid "Main IP" +msgstr "IP principal" + +#: ../../enterprise/operation/agentes/ver_agente.php:75 +#: ../../include/functions_events.php:4094 +#: ../../operation/agentes/ver_agente.php:859 +msgid "Last remote contact" +msgstr "Último contacto remoto" + +#: ../../enterprise/operation/agentes/ver_agente.php:119 +#: ../../operation/agentes/ver_agente.php:904 +msgid "Monitors down" +msgstr "Monitores caídos" + +#: ../../enterprise/operation/agentes/ver_agente.php:161 +#: ../../mobile/operation/groups.php:164 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:504 +#: ../../operation/agentes/ver_agente.php:945 +msgid "Alerts fired" +msgstr "Alertas disparadas" + +#: ../../enterprise/operation/agentes/ver_agente.php:234 +msgid "URL Route Analyzer" +msgstr "Analizador de ruta de URL" + +#: ../../enterprise/operation/agentes/ver_agente.php:250 +msgid "UX Console" +msgstr "Consola UX" + +#: ../../enterprise/operation/agentes/ver_agente.php:266 +msgid "WUX Console" +msgstr "Consola WUX" + +#: ../../enterprise/operation/agentes/collection_view.php:53 +msgid "No collection assigned to this agent" +msgstr "No se ha asignado ninguna colección a este agente." + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:46 +msgid "Please, reset the transaction" +msgstr "Por favor, reinicia la transacción." + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:85 +msgid "Successfully data updated" +msgstr "Datos actualizados correctamente" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:86 +msgid "Could not be data updated" +msgstr "Error al actualizar los datos" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:130 +msgid "Transactional Map - Create Phase - " +msgstr "Mapa Transaccional - Crear Fase - " + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:145 +msgid "Index" +msgstr "Índice" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:148 +msgid "Dependencies" +msgstr "Dependencias" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:149 +msgid "Enables" +msgstr "Activa" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:214 +msgid "Not valid dependencies field" +msgstr "Campo de dependencias no válido" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:220 +msgid "Not valid enables field" +msgstr "Campo de activación no válido" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:294 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:393 +msgid "Transactional Map - Create Transaction" +msgstr "Mapa Transaccional - Crear Transacción -" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:311 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:414 +msgid "Loop interval" +msgstr "Intervalo del bucle" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "No hay ningún agente seleccionado." + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +msgid "Route not found" +msgstr "Ruta no encontrada" + +#: ../../enterprise/operation/agentes/agent_inventory.php:61 +msgid "This agent has not modules inventory" +msgstr "Este agente no tiene módulos de inventario." + +#: ../../enterprise/operation/agentes/agent_inventory.php:162 +#: ../../enterprise/operation/agentes/agent_inventory.php:163 +msgid "Diff view" +msgstr "Vista de diferencia" + +#: ../../enterprise/operation/agentes/ux_console_view.php:43 +msgid "No ux transaction selected." +msgstr "Ninguna transacción UX seleccionada" + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +msgid "No ux transactions found." +msgstr "Ninguna transacción UX encontrada" + +#: ../../enterprise/operation/agentes/ux_console_view.php:133 +#: ../../enterprise/operation/agentes/wux_console_view.php:253 +msgid "Transaction" +msgstr "Transacción" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:278 +msgid "Show transaction" +msgstr "Mostrar transacción" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +msgid "Execution results for transaction " +msgstr "Resultados de ejecución para la transacción " + +#: ../../enterprise/operation/agentes/ux_console_view.php:266 +#: ../../enterprise/operation/agentes/wux_console_view.php:331 +msgid "Global results" +msgstr "Resultados globales" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 +msgid "Transaction history" +msgstr "Histórico de transacciones" + +#: ../../enterprise/operation/agentes/wux_console_view.php:92 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "Ninguna transacción WUX seleccionada" + +#: ../../enterprise/operation/agentes/wux_console_view.php:167 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "Fase de módulo no encontrada" + +#: ../../enterprise/operation/agentes/wux_console_view.php:229 +msgid "Selected transaction has no stats" +msgstr "La transacción seleccionada no tiene estadísticas." + +#: ../../enterprise/operation/agentes/wux_console_view.php:242 +msgid "No WUX transactions found." +msgstr "Ninguna transacción WUX encontrada" + +#: ../../enterprise/operation/agentes/wux_console_view.php:356 +msgid "Failed: " +msgstr "Fallo: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:356 +#: ../../enterprise/operation/agentes/wux_console_view.php:376 +#: ../../godmode/setup/performance.php:179 +#: ../../godmode/setup/performance.php:234 ../../general/logon_ok.php:189 +msgid "ago" +msgstr "hace" + +#: ../../enterprise/operation/agentes/wux_console_view.php:368 +#: ../../enterprise/operation/agentes/wux_console_view.php:371 +#: ../../include/functions_alerts.php:664 +msgid "Unknown status" +msgstr "Estado desconocido" + +#: ../../enterprise/operation/agentes/wux_console_view.php:376 +msgid "Success: " +msgstr "Éxito: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:382 +msgid "Total transaction time: " +msgstr "Tiempo total de la transacción: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:396 +#, php-format +msgid "Execution results for transaction %s" +msgstr "Resultados de ejecución de la transacción %s" + +#: ../../enterprise/operation/agentes/wux_console_view.php:525 +msgid "View all stats" +msgstr "Ver todas las estadísticas" + +#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../include/functions_events.php:6624 +#: ../../operation/snmpconsole/snmp_view.php:988 ../../operation/menu.php:251 +#: ../../operation/events/events.php:1706 +#: ../../operation/events/events.php:1872 +#: ../../operation/events/events.build_table.php:831 +msgid "Show more" +msgstr "Mostrar más" + +#: ../../enterprise/operation/agentes/wux_console_view.php:609 +msgid "Invalid transaction." +msgstr "Transacción no válida" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:32 +#: ../../enterprise/operation/log/log_viewer.php:324 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" +msgstr "Visor de logs" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:37 +#: ../../enterprise/operation/log/log_viewer.php:318 +#: ../../enterprise/operation/menu.php:202 +msgid "Elasticsearch Interface" +msgstr "Interfaz de ElasticSearch" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:41 +msgid "" +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly " +"what are you are doing. \n" +"This view is intended to be used only by users with a knowledge of " +"Elasticsearch" +msgstr "" +"Esta es una vista de la interfaz de ElasticSearch directamente desde la " +"consola WEB. \n" +"Tenga en cuenta que puede provocar fallos en ElasticSearch si no sabe lo que " +"está haciendo con exactitud. \n" +"Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:53 +msgid "Query" +msgstr "Consulta" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:59 +msgid "Execute query" +msgstr "Ejecutar consulta" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:64 +msgid "Results" +msgstr "Resultados" + +#: ../../enterprise/operation/log/log_viewer.php:347 +msgid "All words" +msgstr "Todas las palabras" + +#: ../../enterprise/operation/log/log_viewer.php:348 +msgid "Any word" +msgstr "Cualquier palabra" + +#: ../../enterprise/operation/log/log_viewer.php:351 +msgid "Search mode" +msgstr "Modo de búsqueda" + +#: ../../enterprise/operation/log/log_viewer.php:398 +msgid "Full context" +msgstr "Contexto completo" + +#: ../../enterprise/operation/log/log_viewer.php:520 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:263 +msgid "Start date" +msgstr "Fecha de inicio" + +#: ../../enterprise/operation/log/log_viewer.php:544 +#: ../../operation/agentes/exportdata.php:338 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:287 +msgid "End date" +msgstr "Fecha final" + +#: ../../enterprise/operation/log/log_viewer.php:576 +msgid "Show log entries" +msgstr "Mostrar entradas de log" + +#: ../../enterprise/operation/log/log_viewer.php:577 +msgid "Graph log results" +msgstr "Resultados de logs de gráficas" + +#: ../../enterprise/operation/log/log_viewer.php:579 +msgid "Display mode" +msgstr "Modo de visualización" + +#: ../../enterprise/operation/log/log_viewer.php:592 +msgid "Use capture model" +msgstr "Usar modelo de captura" + +#: ../../enterprise/operation/log/log_viewer.php:615 +msgid "Create new model" +msgstr "Crear nuevo modelo" + +#: ../../enterprise/operation/log/log_viewer.php:619 +#: ../../godmode/reporting/graph_builder.main.php:157 +msgid "Horizontal bars" +msgstr "Barras horizontales" + +#: ../../enterprise/operation/log/log_viewer.php:620 +#: ../../godmode/reporting/graph_builder.main.php:158 +msgid "Vertical bars" +msgstr "Barras verticales" + +#: ../../enterprise/operation/log/log_viewer.php:622 +msgid "Graph type" +msgstr "Tipo de gráfica" + +#: ../../enterprise/operation/log/log_viewer.php:637 +msgid "Advanced options " +msgstr "Opciones avanzadas " + +#: ../../enterprise/operation/log/log_viewer.php:795 +msgid "The start date cannot be greater than the end date" +msgstr "" +"La fecha de inicio no puede ser posterior a la fecha de finalización." + +#: ../../enterprise/operation/log/log_viewer.php:928 +msgid "Add new capture model" +msgstr "Añadir nuevo modelo de captura" + +#: ../../enterprise/operation/log/log_viewer.php:931 +msgid "Edit capture model" +msgstr "Editar modelo de captura" + +#: ../../enterprise/operation/log/log_viewer.php:1015 +msgid "Error create new model" +msgstr "Error al crear nuevo modelo" + +#: ../../enterprise/operation/log/log_viewer.php:1042 +msgid "Error delete model" +msgstr "Error al borrar modelo" + +#: ../../enterprise/operation/log/log_viewer.php:1088 +msgid "Error update model" +msgstr "Error al actualizar modelo" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "Visor de clústers" + +#: ../../enterprise/operation/menu.php:61 +#: ../../operation/agentes/ver_agente.php:1334 +#: ../../operation/agentes/ver_agente.php:1524 ../../general/sap_view.php:43 +msgid "SAP view" +msgstr "Vista SAP" + +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +msgstr "Mapa transaccional" + +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "SQL personalizado" + +#: ../../enterprise/operation/inventory/inventory.php:245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1697 +msgid "Last" +msgstr "Último" + +#: ../../enterprise/operation/inventory/inventory.php:248 +msgid "Order by agent" +msgstr "Ordenar por agente" + +#: ../../enterprise/operation/inventory/inventory.php:289 +msgid "Export this list to CSV" +msgstr "Exportar esta lista a CSV" + +#: ../../enterprise/operation/services/services.service.php:116 +#: ../../enterprise/operation/services/services.service_map.php:140 +#: ../../include/lib/Dashboard/Widgets/service_map.php:162 +msgid "Service Map" +msgstr "Mapa de servicio" + +#: ../../enterprise/operation/services/services.service.php:134 +msgid "No Services" +msgstr "Sin servicios" + +#: ../../enterprise/operation/services/services.service.php:249 +#: ../../enterprise/operation/services/services.list.php:524 +msgid "SLA graph" +msgstr "Gráfico SLA" + +#: ../../enterprise/operation/services/services.service.php:260 +msgid "List of elements" +msgstr "Lista de elementos" + +#: ../../enterprise/operation/services/services.service_map.php:160 +#: ../../extensions/agents_modules.php:872 +#: ../../extensions/module_groups.php:375 +#: ../../godmode/snmpconsole/snmp_alert.php:1460 +#: ../../include/functions_reporting_html.php:1728 +#: ../../include/lib/Dashboard/Widgets/service_map.php:322 +#: ../../operation/snmpconsole/snmp_view.php:1191 +msgid "Legend" +msgstr "Leyenda" + +#: ../../enterprise/operation/services/services.treeview_services.php:41 +#: ../../enterprise/operation/services/services.list.php:41 +#: ../../enterprise/operation/services/services.table_services.php:38 +msgid "Service table view" +msgstr "Vista de tabla de servicios" + +#: ../../enterprise/operation/services/services.treeview_services.php:52 +#: ../../enterprise/operation/services/services.list.php:52 +#: ../../enterprise/operation/services/services.table_services.php:49 +msgid "Service tree view" +msgstr "Vista de árbol de servicios" + +#: ../../enterprise/operation/services/services.treeview_services.php:101 +#: ../../enterprise/operation/services/services.list.php:244 +#: ../../enterprise/operation/services/services.table_services.php:223 +msgid "Show only favourites" +msgstr "Mostrar solo favoritos" + +#: ../../enterprise/operation/services/services.treeview_services.php:140 +#: ../../enterprise/operation/services/services.list.php:376 +#: ../../enterprise/operation/services/services.list.php:382 +#: ../../enterprise/operation/services/services.table_services.php:352 +#: ../../enterprise/operation/services/services.table_services.php:358 +msgid "No services defined." +msgstr "No hay servicios definidos" + +#: ../../enterprise/operation/services/services.treeview_services.php:224 +#: ../../godmode/groups/group_list.php:846 +msgid "Found groups" +msgstr "Grupos encontrados" + +#: ../../enterprise/operation/services/services.list.php:77 +msgid "Service deleted successfully" +msgstr "Servicio eliminado correctamente" + +#: ../../enterprise/operation/services/services.list.php:78 +msgid "Error deleting service" +msgstr "Error al eliminar el servicio" + +#: ../../enterprise/operation/services/services.list.php:86 +msgid "Service forced successfully" +msgstr "Servicio forzado correctamente" + +#: ../../enterprise/operation/services/services.list.php:87 +msgid "Error service forced" +msgstr "Error al forzar el servicio" + +#: ../../enterprise/operation/services/services.list.php:528 +msgid "Status graph" +msgstr "Gráfica de estados" + +#: ../../enterprise/operation/services/services.list.php:547 +#: ../../operation/agentes/pandora_networkmap.php:795 +msgid "Config" +msgstr "Configuración" + +#: ../../enterprise/operation/reporting/custom_reporting.php:65 +#: ../../enterprise/operation/reporting/custom_reporting.php:119 +msgid "Send by email" +msgstr "Enviar por correo electrónico" + +#: ../../enterprise/operation/reporting/custom_reporting.php:73 +msgid "ID Report" +msgstr "ID Informe" + +#: ../../enterprise/operation/reporting/custom_reporting.php:147 +msgid "Send by email " +msgstr "Enviar por correo electrónico " #: ../../extensions/disabled/matrix_events.php:27 msgid "Matrix events" msgstr "Eventos matriz" +#: ../../extensions/quick_shell.php:104 ../../extensions/quick_shell.php:207 +msgid "WebService engine has not been started, please check documentation." +msgstr "" +"El motor WebService aún no se ha iniciado, consulte la documentación." + +#: ../../extensions/quick_shell.php:116 +msgid "Retry" +msgstr "Reintentar" + +#: ../../extensions/quick_shell.php:160 +msgid "Telnet" +msgstr "Telnet" + +#: ../../extensions/quick_shell.php:168 +msgid "Connect" +msgstr "Conectar" + +#: ../../extensions/quick_shell.php:196 +msgid "Please use SSH or Telnet." +msgstr "Use SSH o Telnet." + +#: ../../extensions/quick_shell.php:229 +msgid "" +"WebService engine is not working properly, please check documentation." +msgstr "" +"El motor WebService no funciona correctamente, consulte la documentación." + +#: ../../extensions/quick_shell.php:382 +#, php-format +msgid "%d Updated" +msgstr "%d Actualizado" + +#: ../../extensions/quick_shell.php:385 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "%d Actualizado, reinicie el servicio del motor WebSocket" + +#: ../../extensions/quick_shell.php:395 +msgid "Quickshell" +msgstr "Quickshell" + +#: ../../extensions/quick_shell.php:405 +msgid "Gotty path" +msgstr "Ruta Gotty" + +#: ../../extensions/quick_shell.php:415 +msgid "Gotty host" +msgstr "Host Gotty" + +#: ../../extensions/quick_shell.php:425 +msgid "Gotty ssh port" +msgstr "Puerto SSH Gotty" + +#: ../../extensions/quick_shell.php:435 +msgid "Gotty telnet port" +msgstr "Puerto telnet Gotty" + +#: ../../extensions/quick_shell.php:452 +msgid "Gotty user" +msgstr "Usuario Gotty" + +#: ../../extensions/quick_shell.php:462 +msgid "Gotty password" +msgstr "Contraseña Gotty" + +#: ../../extensions/quick_shell.php:501 +msgid "QuickShell" +msgstr "QuickShell" + #: ../../extensions/extension_uploader.php:29 msgid "Uploader extension" msgstr "Extensión de subidas" @@ -2212,2629 +27793,10 @@ msgstr "Subir la extensión como un archivo zip" msgid "Upload enterprise extension" msgstr "Subir extensión Enterprise" -#: ../../extensions/extension_uploader.php:89 -#: ../../extensions/plugin_registration.php:45 -#: ../../extensions/resource_registration.php:1052 -#: ../../godmode/alerts/alert_special_days.php:290 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 -#: ../../operation/incidents/incident_detail.php:527 -#: ../../enterprise/include/functions_policies.php:4392 -msgid "Upload" -msgstr "Subir" - #: ../../extensions/extension_uploader.php:95 msgid "Extension uploader" msgstr "Cargador de extensiones" -#: ../../extensions/files_repo/files_repo_form.php:55 -#: ../../extensions/module_groups.php:298 -#: ../../godmode/reporting/visual_console_builder.wizard.php:382 -#: ../../include/functions_networkmap.php:1283 -#: ../../include/functions_maps.php:46 -#: ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/groups.php:77 ../../mobile/operation/home.php:57 -#: ../../operation/agentes/pandora_networkmap.php:698 -#: ../../operation/tree.php:65 -#: ../../enterprise/dashboard/widgets/events_list.php:83 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:45 -#: ../../enterprise/dashboard/widgets/groups_status.php:31 -#: ../../enterprise/dashboard/widgets/tree_view.php:39 -#: ../../enterprise/dashboard/widgets/system_group_status.php:30 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:45 -#: ../../enterprise/godmode/policies/policy_agents.php:554 -#: ../../enterprise/godmode/setup/setup_auth.php:225 -#: ../../enterprise/godmode/setup/setup_auth.php:978 -#: ../../enterprise/meta/advanced/synchronizing.group.php:188 -msgid "Groups" -msgstr "Grupos" - -#: ../../extensions/files_repo/files_repo_form.php:62 -#: ../../extensions/files_repo/files_repo_list.php:54 -#: ../../godmode/agentes/agent_manager.php:401 -#: ../../godmode/agentes/agent_template.php:235 -#: ../../godmode/agentes/modificar_agente.php:492 -#: ../../godmode/agentes/module_manager.php:649 -#: ../../godmode/agentes/module_manager_editor_common.php:696 -#: ../../godmode/agentes/planned_downtime.editor.php:663 -#: ../../godmode/agentes/planned_downtime.list.php:399 -#: ../../godmode/alerts/alert_commands.php:403 -#: ../../godmode/alerts/alert_templates.php:46 -#: ../../godmode/alerts/configure_alert_command.php:194 -#: ../../godmode/alerts/configure_alert_special_days.php:92 -#: ../../godmode/alerts/configure_alert_template.php:930 -#: ../../godmode/events/event_responses.editor.php:93 -#: ../../godmode/events/event_responses.list.php:51 -#: ../../godmode/groups/configure_group.php:196 -#: ../../godmode/groups/group_list.php:586 -#: ../../godmode/massive/massive_edit_agents.php:598 -#: ../../godmode/massive/massive_edit_modules.php:671 -#: ../../godmode/massive/massive_edit_plugins.php:506 -#: ../../godmode/modules/manage_network_components.php:672 -#: ../../godmode/modules/manage_network_components_form.php:296 -#: ../../godmode/modules/manage_network_templates.php:228 -#: ../../godmode/modules/manage_network_templates_form.php:160 -#: ../../godmode/modules/manage_network_templates_form.php:222 -#: ../../godmode/modules/module_list.php:60 -#: ../../godmode/netflow/nf_item_list.php:177 -#: ../../godmode/reporting/create_container.php:227 -#: ../../godmode/reporting/graph_builder.main.php:125 -#: ../../godmode/reporting/graphs.php:264 -#: ../../godmode/reporting/reporting_builder.item_editor.php:900 -#: ../../godmode/reporting/reporting_builder.main.php:188 -#: ../../godmode/reporting/reporting_builder.php:792 -#: ../../godmode/servers/modificar_server.php:64 -#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:478 -#: ../../godmode/setup/os.builder.php:34 ../../godmode/setup/os.list.php:33 -#: ../../godmode/setup/setup_integria.php:274 -#: ../../godmode/setup/setup_integria.php:397 -#: ../../godmode/setup/snmp_wizard.php:41 -#: ../../godmode/snmpconsole/snmp_alert.php:748 -#: ../../godmode/snmpconsole/snmp_alert.php:1268 -#: ../../godmode/snmpconsole/snmp_filters.php:180 -#: ../../godmode/snmpconsole/snmp_filters.php:258 -#: ../../godmode/tag/edit_tag.php:176 ../../godmode/tag/tag.php:175 -#: ../../godmode/tag/tag.php:225 ../../godmode/users/user_list.php:337 -#: ../../include/ajax/events_extended.php:91 ../../include/ajax/module.php:837 -#: ../../include/class/ManageNetScanScripts.class.php:397 -#: ../../include/class/ManageNetScanScripts.class.php:556 -#: ../../include/class/ManageNetScanScripts.class.php:605 -#: ../../include/functions_container.php:148 -#: ../../include/functions_snmp_browser.php:515 -#: ../../include/functions_events.php:3586 -#: ../../include/functions_events.php.orig:3492 -#: ../../include/functions_treeview.php:128 -#: ../../include/functions_treeview.php:617 -#: ../../include/functions_reporting_html.php:133 -#: ../../include/functions_reporting_html.php:2613 -#: ../../include/functions_reporting_html.php:2664 -#: ../../include/functions_reporting_html.php:4138 -#: ../../include/functions_reporting_html.php:5129 -#: ../../mobile/operation/tactical.php:352 -#: ../../operation/agentes/custom_fields.php:69 -#: ../../operation/agentes/estado_agente.php:698 -#: ../../operation/agentes/estado_generalagente.php:216 -#: ../../operation/agentes/gis_view.php:219 -#: ../../operation/agentes/pandora_networkmap.editor.php:291 -#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 -#: ../../operation/incidents/configure_integriaims_incident.php:296 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:256 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:298 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:311 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:443 -#: ../../operation/incidents/incident_detail.php:476 -#: ../../operation/incidents/incident_detail.php:526 -#: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/reporting/graph_viewer.php:374 -#: ../../operation/search_graphs.php:30 ../../operation/search_policies.php:35 -#: ../../operation/search_reports.php:35 ../../operation/search_users.php:39 -#: ../../enterprise/extensions/backup/main.php:125 -#: ../../enterprise/extensions/backup/main.php:252 -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:161 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1222 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1678 -#: ../../enterprise/extensions/ipam/ipam_editor.php:133 -#: ../../enterprise/extensions/ipam/ipam_excel.php:106 -#: ../../enterprise/extensions/ipam/ipam_excel.php:176 -#: ../../enterprise/extensions/ipam/ipam_list.php:136 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:319 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:371 -#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:42 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:223 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:271 -#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:42 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:410 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:330 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:82 -#: ../../enterprise/godmode/agentes/collection_manager.php:117 -#: ../../enterprise/godmode/agentes/collection_manager.php:203 -#: ../../enterprise/godmode/agentes/collections.php:324 -#: ../../enterprise/godmode/agentes/inventory_manager.php:218 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:326 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:134 -#: ../../enterprise/godmode/alerts/alert_events.php:601 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:522 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 -#: ../../enterprise/godmode/modules/configure_local_component.php:449 -#: ../../enterprise/godmode/modules/configure_local_component.php:610 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:370 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 -#: ../../enterprise/godmode/policies/configure_policy.php:93 -#: ../../enterprise/godmode/policies/policy_collections.php:151 -#: ../../enterprise/godmode/policies/policy_collections.php:246 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:254 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:303 -#: ../../enterprise/godmode/reporting/cluster_list.php:188 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:167 -#: ../../enterprise/godmode/reporting/graph_template_list.php:147 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:157 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1536 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:504 -#: ../../enterprise/godmode/services/services.elements.php:731 -#: ../../enterprise/godmode/services/services.service.php:388 -#: ../../enterprise/godmode/setup/edit_skin.php:256 -#: ../../enterprise/godmode/setup/setup_skins.php:121 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:698 -#: ../../enterprise/include/functions_cron.php:261 -#: ../../enterprise/include/functions_services.php:2468 -#: ../../enterprise/include/functions_update_manager.php:209 -#: ../../enterprise/include/functions_reporting_csv.php:454 -#: ../../enterprise/include/functions_reporting_csv.php:457 -#: ../../enterprise/include/functions_reporting_csv.php:704 -#: ../../enterprise/include/functions_reporting_csv.php:706 -#: ../../enterprise/include/functions_reporting_csv.php:733 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:764 -#: ../../enterprise/include/functions_reporting_csv.php:766 -#: ../../enterprise/include/functions_reporting_csv.php:796 -#: ../../enterprise/include/functions_reporting_csv.php:798 -#: ../../enterprise/include/functions_reporting_csv.php:833 -#: ../../enterprise/include/functions_reporting_csv.php:835 -#: ../../enterprise/include/functions_reporting_csv.php:856 -#: ../../enterprise/include/functions_reporting_csv.php:858 -#: ../../enterprise/include/functions_reporting_csv.php:908 -#: ../../enterprise/include/functions_reporting_csv.php:910 -#: ../../enterprise/include/functions_reporting_csv.php:946 -#: ../../enterprise/include/functions_reporting_csv.php:948 -#: ../../enterprise/include/functions_reporting_csv.php:972 -#: ../../enterprise/include/functions_reporting_csv.php:974 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1003 -#: ../../enterprise/include/functions_reporting_csv.php:1005 -#: ../../enterprise/include/functions_reporting_csv.php:1008 -#: ../../enterprise/include/functions_reporting_csv.php:1058 -#: ../../enterprise/include/functions_reporting_csv.php:1060 -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1113 -#: ../../enterprise/include/functions_reporting_csv.php:1115 -#: ../../enterprise/include/functions_reporting_csv.php:1162 -#: ../../enterprise/include/functions_reporting_csv.php:1164 -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1217 -#: ../../enterprise/include/functions_reporting_csv.php:1219 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_reporting_csv.php:1246 -#: ../../enterprise/include/functions_reporting_csv.php:1248 -#: ../../enterprise/include/functions_reporting_csv.php:1283 -#: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../enterprise/include/functions_reporting_csv.php:1407 -#: ../../enterprise/include/functions_reporting_csv.php:1523 -#: ../../enterprise/include/functions_reporting_csv.php:1669 -#: ../../enterprise/include/functions_reporting_csv.php:1671 -#: ../../enterprise/include/functions_reporting_csv.php:1723 -#: ../../enterprise/include/functions_reporting_csv.php:1791 -#: ../../enterprise/include/functions_reporting_csv.php:1960 -#: ../../enterprise/include/functions_reporting_csv.php:1997 -#: ../../enterprise/include/functions_reporting_csv.php:2001 -#: ../../enterprise/include/functions_reporting_csv.php:2053 -#: ../../enterprise/include/functions_reporting_csv.php:2055 -#: ../../enterprise/include/functions_reporting_csv.php:2084 -#: ../../enterprise/include/functions_reporting_csv.php:2086 -#: ../../enterprise/include/functions_reporting_csv.php:2120 -#: ../../enterprise/include/functions_reporting_csv.php:2122 -#: ../../enterprise/include/functions_reporting_csv.php:2152 -#: ../../enterprise/include/functions_reporting_csv.php:2154 -#: ../../enterprise/include/functions_reporting_csv.php:2174 -#: ../../enterprise/include/functions_reporting_csv.php:2176 -#: ../../enterprise/include/functions_reporting_csv.php:2205 -#: ../../enterprise/include/functions_reporting_csv.php:2207 -#: ../../enterprise/include/functions_reporting_csv.php:2234 -#: ../../enterprise/include/functions_reporting_csv.php:2236 -#: ../../enterprise/include/functions_reporting_csv.php:2267 -#: ../../enterprise/include/functions_reporting_csv.php:2269 -#: ../../enterprise/include/functions_reporting_pdf.php:1539 -#: ../../enterprise/meta/advanced/collections.php:322 -#: ../../enterprise/meta/agentsearch.php:298 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 -#: ../../enterprise/meta/include/functions_autoprovision.php:449 -#: ../../enterprise/meta/include/functions_wizard_meta.php:198 -#: ../../enterprise/meta/include/functions_wizard_meta.php:473 -#: ../../enterprise/meta/include/functions_wizard_meta.php:585 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1142 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1462 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1807 -#: ../../enterprise/mobile/include/enterprise.class.php:97 -#: ../../enterprise/operation/agentes/collection_view.php:64 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:411 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:77 -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../enterprise/operation/agentes/tag_view.php:573 -#: ../../enterprise/operation/agentes/transactional_map.php:181 -#: ../../enterprise/operation/agentes/ver_agente.php:57 -#: ../../enterprise/operation/services/services.list.php:406 -#: ../../enterprise/operation/services/services.service.php:164 -msgid "Description" -msgstr "Descripción" - -#: ../../extensions/files_repo/files_repo_form.php:63 -msgid "Only 200 characters are permitted" -msgstr "Máximo 200 caracteres" - -#: ../../extensions/files_repo/files_repo_form.php:74 -#: ../../godmode/extensions.php:136 -msgid "File" -msgstr "Archivo" - -#: ../../extensions/files_repo/files_repo_form.php:77 -#: ../../extensions/files_repo/files_repo_form.php:83 -#: ../../extensions/files_repo/files_repo_list.php:90 -msgid "Public link" -msgstr "Enlace público" - -#: ../../extensions/files_repo/files_repo_form.php:78 -#: ../../extensions/net_tools.php:502 -#: ../../godmode/agentes/agent_conf_gis.php:134 -#: ../../godmode/agentes/agent_manager.php:1000 -#: ../../godmode/agentes/agent_template.php:258 -#: ../../godmode/agentes/configure_field.php:135 -#: ../../godmode/agentes/module_manager_editor.php:724 -#: ../../godmode/agentes/planned_downtime.editor.php:846 -#: ../../godmode/agentes/planned_downtime.list.php:487 -#: ../../godmode/agentes/planned_downtime.list.php:492 -#: ../../godmode/agentes/status_monitor_custom_fields.php:204 -#: ../../godmode/alerts/alert_list.list.php:140 -#: ../../godmode/alerts/alert_list.list.php:147 -#: ../../godmode/alerts/alert_list.list.php:833 -#: ../../godmode/alerts/configure_alert_action.php:282 -#: ../../godmode/alerts/configure_alert_action.php:286 -#: ../../godmode/alerts/configure_alert_command.php:237 -#: ../../godmode/alerts/configure_alert_special_days.php:104 -#: ../../godmode/category/edit_category.php:166 -#: ../../godmode/events/custom_events.php:166 -#: ../../godmode/events/event_edit_filter.php:622 -#: ../../godmode/events/event_responses.editor.php:205 -#: ../../godmode/groups/configure_group.php:234 -#: ../../godmode/groups/configure_modu_group.php:80 -#: ../../godmode/massive/massive_edit_agents.php:822 -#: ../../godmode/massive/massive_edit_modules.php:1175 -#: ../../godmode/massive/massive_edit_plugins.php:376 -#: ../../godmode/modules/manage_nc_groups_form.php:90 -#: ../../godmode/modules/manage_network_components_form.php:307 -#: ../../godmode/modules/manage_network_templates_form.php:166 -#: ../../godmode/netflow/nf_edit_form.php:258 -#: ../../godmode/reporting/create_container.php:291 -#: ../../godmode/reporting/graph_builder.main.php:190 -#: ../../godmode/reporting/reporting_builder.main.php:46 -#: ../../godmode/reporting/visual_console_builder.data.php:220 -#: ../../godmode/reporting/visual_console_builder.elements.php:664 -#: ../../godmode/servers/modificar_server.php:98 -#: ../../godmode/servers/plugin.php:182 ../../godmode/servers/plugin.php:564 -#: ../../godmode/setup/links.php:126 ../../godmode/setup/news.php:223 -#: ../../godmode/setup/os.php:55 ../../godmode/setup/os.php:113 -#: ../../godmode/setup/performance.php:733 -#: ../../godmode/setup/setup_auth.php:206 -#: ../../godmode/setup/setup_ehorus.php:165 -#: ../../godmode/setup/setup_general.php:408 -#: ../../godmode/setup/setup_integria.php:557 -#: ../../godmode/setup/setup_netflow.php:80 -#: ../../godmode/setup/setup_visuals.php:1344 -#: ../../godmode/setup/setup_websocket_engine.php:92 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/snmpconsole/snmp_alert.php:1088 -#: ../../godmode/snmpconsole/snmp_alert.php:1319 -#: ../../godmode/snmpconsole/snmp_filters.php:230 -#: ../../godmode/snmpconsole/snmp_filters.php:270 -#: ../../godmode/snmpconsole/snmp_filters.php:281 -#: ../../godmode/tag/edit_tag.php:229 -#: ../../godmode/update_manager/update_manager.setup.php:266 -#: ../../godmode/users/configure_profile.php:360 -#: ../../godmode/users/configure_user.php:1002 -#: ../../include/ajax/alert_list.ajax.php:288 -#: ../../include/class/CredentialStore.class.php:1116 -#: ../../include/class/ManageNetScanScripts.class.php:762 -#: ../../include/class/NetworkMap.class.php:3066 -#: ../../include/functions_events.php:3392 -#: ../../include/functions_events.php:3472 -#: ../../include/functions_events.php.orig:3298 -#: ../../include/functions_events.php.orig:3378 -#: ../../include/functions_update_manager.php:1406 -#: ../../include/functions_visual_map_editor.php:790 -#: ../../operation/agentes/datos_agente.php:218 -#: ../../operation/events/events_list.php:1059 -#: ../../operation/incidents/configure_integriaims_incident.php:320 -#: ../../operation/network/network_report.php:132 -#: ../../operation/reporting/reporting_viewer.php:219 -#: ../../operation/snmpconsole/snmp_view.php:635 -#: ../../operation/users/user_edit.php:719 -#: ../../enterprise/dashboard/main_dashboard.php:300 -#: ../../enterprise/dashboard/widget.php:276 -#: ../../enterprise/extensions/ipam/ipam_editor.php:227 -#: ../../enterprise/extensions/ipam/ipam_massive.php:112 -#: ../../enterprise/extensions/ipam/ipam_network.php:619 -#: ../../enterprise/extensions/translate_string.php:364 -#: ../../enterprise/extensions/visual_console_manager.php:326 -#: ../../enterprise/extensions/vmware/vmware_view.php:1243 -#: ../../enterprise/extensions/vmware/vmware_view.php:1672 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:338 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:650 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:250 -#: ../../enterprise/godmode/agentes/collection_manager.php:148 -#: ../../enterprise/godmode/agentes/collection_manager.php:149 -#: ../../enterprise/godmode/agentes/collection_manager.php:260 -#: ../../enterprise/godmode/agentes/collection_manager.php:261 -#: ../../enterprise/godmode/agentes/collections.data.php:101 -#: ../../enterprise/godmode/agentes/collections.data.php:228 -#: ../../enterprise/godmode/agentes/collections.data.php:297 -#: ../../enterprise/godmode/agentes/collections.data.php:384 -#: ../../enterprise/godmode/agentes/collections.data.php:385 -#: ../../enterprise/godmode/agentes/collections.editor.php:156 -#: ../../enterprise/godmode/agentes/collections.editor.php:227 -#: ../../enterprise/godmode/agentes/inventory_manager.php:180 -#: ../../enterprise/godmode/agentes/inventory_manager.php:250 -#: ../../enterprise/godmode/agentes/plugins_manager.php:122 -#: ../../enterprise/godmode/agentes/plugins_manager.php:147 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:271 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:361 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1011 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:174 -#: ../../enterprise/godmode/modules/configure_local_component.php:651 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:410 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 -#: ../../enterprise/godmode/policies/configure_policy.php:107 -#: ../../enterprise/godmode/policies/policy_collections.php:202 -#: ../../enterprise/godmode/policies/policy_collections.php:275 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:213 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:289 -#: ../../enterprise/godmode/policies/policy_modules.php:419 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:107 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 -#: ../../enterprise/godmode/servers/manage_export_form.php:130 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:175 -#: ../../enterprise/godmode/services/services.elements.php:764 -#: ../../enterprise/godmode/services/services.service.php:566 -#: ../../enterprise/godmode/setup/edit_skin.php:287 -#: ../../enterprise/godmode/setup/setup.php:470 -#: ../../enterprise/godmode/setup/setup.php:651 -#: ../../enterprise/godmode/setup/setup_history.php:79 -#: ../../enterprise/godmode/setup/setup_log_collector.php:52 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:242 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:364 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:556 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 -#: ../../enterprise/include/class/AgentRepository.class.php:885 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1970 -#: ../../enterprise/include/class/DatabaseHA.class.php:753 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1626 -#: ../../enterprise/include/class/Omnishell.class.php:646 -#: ../../enterprise/include/class/SAPView.class.php:310 -#: ../../enterprise/include/functions_HA_cluster.php:495 -#: ../../enterprise/include/functions_update_manager.php:252 -#: ../../enterprise/meta/advanced/collections.data.php:150 -#: ../../enterprise/meta/advanced/collections.data.php:223 -#: ../../enterprise/meta/advanced/collections.data.php:264 -#: ../../enterprise/meta/advanced/collections.data.php:335 -#: ../../enterprise/meta/advanced/collections.data.php:336 -#: ../../enterprise/meta/advanced/collections.editor.php:123 -#: ../../enterprise/meta/advanced/collections.editor.php:196 -#: ../../enterprise/meta/advanced/cron_main.php:431 -#: ../../enterprise/meta/advanced/links.php:135 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:578 -#: ../../enterprise/meta/advanced/metasetup.mail.php:124 -#: ../../enterprise/meta/advanced/metasetup.password.php:157 -#: ../../enterprise/meta/advanced/metasetup.performance.php:121 -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:228 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:156 -#: ../../enterprise/meta/advanced/metasetup.visual.php:598 -#: ../../enterprise/meta/event/custom_events.php:211 -#: ../../enterprise/meta/include/functions_autoprovision.php:564 -#: ../../enterprise/meta/include/functions_autoprovision.php:763 -#: ../../enterprise/operation/agentes/collection_view.php:100 -#: ../../enterprise/operation/agentes/collection_view.php:101 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:224 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:452 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 -#: ../../enterprise/operation/agentes/policy_view.php:170 -msgid "Update" -msgstr "Actualizar" - -#: ../../extensions/files_repo/files_repo_form.php:84 -#: ../../godmode/agentes/planned_downtime.editor.php:854 -#: ../../godmode/agentes/planned_downtime.editor.php:999 -#: ../../godmode/agentes/planned_downtime.editor.php:1158 -#: ../../godmode/alerts/alert_list.list.php:757 -#: ../../godmode/events/event_edit_filter.php:475 -#: ../../godmode/events/event_edit_filter.php:528 -#: ../../godmode/gis_maps/configure_gis_map.php:562 -#: ../../godmode/massive/massive_add_action_alerts.php:236 -#: ../../godmode/massive/massive_add_alerts.php:267 -#: ../../godmode/modules/manage_network_templates_form.php:335 -#: ../../godmode/reporting/graph_builder.graph_editor.php:377 -#: ../../godmode/reporting/visual_console_builder.wizard.php:551 -#: ../../godmode/servers/plugin.php:1052 ../../godmode/setup/links.php:166 -#: ../../godmode/setup/news.php:289 ../../godmode/setup/setup_visuals.php:1254 -#: ../../godmode/setup/setup_visuals.php:1307 -#: ../../godmode/snmpconsole/snmp_alert.php:1426 -#: ../../godmode/users/configure_profile.php:355 -#: ../../include/class/ManageNetScanScripts.class.php:463 -#: ../../include/functions_notifications.php:892 -#: ../../operation/events/events.php:520 ../../operation/events/events.php:594 -#: ../../operation/events/events_list.php:601 -#: ../../operation/events/events_list.php:675 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:321 -#: ../../operation/incidents/incident_detail.php:425 -#: ../../enterprise/dashboard/main_dashboard.php:412 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:468 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:354 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:223 -#: ../../enterprise/godmode/agentes/collection_manager.php:119 -#: ../../enterprise/godmode/agentes/collection_manager.php:139 -#: ../../enterprise/godmode/agentes/inventory_manager.php:182 -#: ../../enterprise/godmode/agentes/plugins_manager.php:104 -#: ../../enterprise/godmode/alerts/alert_events_list.php:699 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:150 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:138 -#: ../../enterprise/godmode/policies/policy_alerts.php:540 -#: ../../enterprise/godmode/policies/policy_alerts.php:604 -#: ../../enterprise/godmode/policies/policy_collections.php:248 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:397 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:215 -#: ../../enterprise/godmode/policies/policy_plugins.php:96 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:594 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1079 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:493 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:257 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:333 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:825 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:295 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 -#: ../../enterprise/godmode/servers/manage_export_form.php:132 -#: ../../enterprise/godmode/setup/setup_acl.php:442 -#: ../../enterprise/godmode/setup/setup_acl.php:461 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:345 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:69 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1970 -#: ../../enterprise/meta/advanced/links.php:175 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:585 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 -#: ../../enterprise/meta/advanced/metasetup.visual.php:235 -#: ../../enterprise/meta/include/functions_autoprovision.php:675 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1367 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:266 -msgid "Add" -msgstr "Añadir" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Unreliable petition" -msgstr "Petición no fiable" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Please contact the administrator" -msgstr "Por favor, contacta con el administrador" - -#: ../../extensions/files_repo/files_repo_list.php:53 -#: ../../godmode/agentes/configure_field.php:71 -#: ../../godmode/agentes/module_manager.php:639 -#: ../../godmode/agentes/module_manager_editor_common.php:199 -#: ../../godmode/agentes/module_manager_editor_common.php:1131 -#: ../../godmode/agentes/planned_downtime.editor.php:637 -#: ../../godmode/agentes/planned_downtime.editor.php:1035 -#: ../../godmode/alerts/alert_actions.php:183 -#: ../../godmode/alerts/alert_commands.php:400 -#: ../../godmode/alerts/alert_templates.php:365 -#: ../../godmode/alerts/configure_alert_action.php:128 -#: ../../godmode/alerts/configure_alert_command.php:172 -#: ../../godmode/alerts/configure_alert_template.php:913 -#: ../../godmode/category/edit_category.php:151 -#: ../../godmode/events/event_filter.php:121 -#: ../../godmode/events/event_responses.editor.php:76 -#: ../../godmode/events/event_responses.list.php:50 -#: ../../godmode/groups/configure_group.php:118 -#: ../../godmode/groups/configure_modu_group.php:64 -#: ../../godmode/groups/group_list.php:578 -#: ../../godmode/groups/modu_group_list.php:235 -#: ../../godmode/modules/manage_nc_groups.php:231 -#: ../../godmode/modules/manage_nc_groups_form.php:68 -#: ../../godmode/modules/manage_network_components_form_common.php:59 -#: ../../godmode/modules/manage_network_templates.php:227 -#: ../../godmode/modules/manage_network_templates_form.php:156 -#: ../../godmode/modules/module_list.php:59 -#: ../../godmode/netflow/nf_edit.php:146 -#: ../../godmode/netflow/nf_edit_form.php:198 -#: ../../godmode/reporting/create_container.php:198 -#: ../../godmode/reporting/graph_builder.main.php:106 -#: ../../godmode/reporting/reporting_builder.item_editor.php:828 -#: ../../godmode/reporting/reporting_builder.main.php:79 -#: ../../godmode/reporting/reporting_builder.main.php:83 -#: ../../godmode/servers/modificar_server.php:56 -#: ../../godmode/servers/plugin.php:328 ../../godmode/servers/plugin.php:969 -#: ../../godmode/servers/servers.build_table.php:65 -#: ../../godmode/setup/os.builder.php:33 ../../godmode/setup/os.list.php:32 -#: ../../godmode/setup/setup_integria.php:263 -#: ../../godmode/setup/setup_integria.php:386 -#: ../../godmode/tag/edit_tag.php:168 ../../godmode/tag/tag.php:175 -#: ../../godmode/users/user_list.php:332 ../../godmode/users/user_list.php:472 -#: ../../include/class/ManageNetScanScripts.class.php:396 -#: ../../include/class/ManageNetScanScripts.class.php:537 -#: ../../include/class/NetworkMap.class.php:2932 -#: ../../include/class/NetworkMap.class.php:2973 -#: ../../include/class/NetworkMap.class.php:2991 -#: ../../include/class/NetworkMap.class.php:3255 -#: ../../include/functions_events.php:4037 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php.orig:3943 -#: ../../include/functions_events.php.orig:4024 -#: ../../include/functions_treeview.php:78 -#: ../../include/functions_filemanager.php:619 -#: ../../include/functions_reporting_html.php:963 -#: ../../include/functions_reporting_html.php:971 -#: ../../include/functions_reporting_html.php:1962 -#: ../../include/functions_reporting_html.php:2659 -#: ../../include/functions_reporting_html.php:5128 -#: ../../mobile/operation/visualmaps.php:162 -#: ../../operation/agentes/pandora_networkmap.editor.php:258 -#: ../../operation/agentes/pandora_networkmap.php:693 -#: ../../operation/gis_maps/gis_map.php:102 -#: ../../operation/incidents/configure_integriaims_incident.php:198 -#: ../../operation/netflow/nf_live_view.php:362 -#: ../../operation/search_helps.php:32 ../../operation/search_maps.php:27 -#: ../../operation/search_policies.php:34 ../../operation/search_users.php:35 -#: ../../enterprise/dashboard/dashboards.php:112 -#: ../../enterprise/dashboard/main_dashboard.php:319 -#: ../../enterprise/dashboard/main_dashboard.php:394 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1198 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1677 -#: ../../enterprise/extensions/ipam/ipam_editor.php:99 -#: ../../enterprise/extensions/ipam/ipam_excel.php:105 -#: ../../enterprise/extensions/ipam/ipam_excel.php:175 -#: ../../enterprise/extensions/ipam/ipam_list.php:135 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:369 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:270 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:327 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:608 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:81 -#: ../../enterprise/godmode/agentes/collection_manager.php:115 -#: ../../enterprise/godmode/agentes/collection_manager.php:201 -#: ../../enterprise/godmode/agentes/inventory_manager.php:217 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:75 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:475 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 -#: ../../enterprise/godmode/alerts/alert_events.php:586 -#: ../../enterprise/godmode/alerts/alert_events_list.php:501 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 -#: ../../enterprise/godmode/modules/configure_local_component.php:152 -#: ../../enterprise/godmode/modules/local_components.php:558 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:369 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 -#: ../../enterprise/godmode/policies/configure_policy.php:74 -#: ../../enterprise/godmode/policies/policies.php:426 -#: ../../enterprise/godmode/policies/policy_agents.php:707 -#: ../../enterprise/godmode/policies/policy_agents.php:1074 -#: ../../enterprise/godmode/policies/policy_collections.php:149 -#: ../../enterprise/godmode/policies/policy_collections.php:244 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:253 -#: ../../enterprise/godmode/policies/policy_modules.php:1491 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:159 -#: ../../enterprise/godmode/reporting/mysql_builder.php:66 -#: ../../enterprise/godmode/reporting/mysql_builder.php:160 -#: ../../enterprise/godmode/reporting/mysql_builder.php:161 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:135 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1519 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:105 -#: ../../enterprise/godmode/reporting/visual_console_template.php:161 -#: ../../enterprise/godmode/reporting/visual_console_template.php:196 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:246 -#: ../../enterprise/godmode/servers/list_satellite.php:36 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 -#: ../../enterprise/godmode/servers/manage_export.php:137 -#: ../../enterprise/godmode/servers/manage_export_form.php:69 -#: ../../enterprise/godmode/services/services.service.php:385 -#: ../../enterprise/godmode/setup/edit_skin.php:230 -#: ../../enterprise/godmode/setup/setup_auth.php:99 -#: ../../enterprise/godmode/setup/setup_skins.php:84 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:349 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:662 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2623 -#: ../../enterprise/include/class/Omnishell.class.php:668 -#: ../../enterprise/include/functions_services.php:2467 -#: ../../enterprise/meta/advanced/servers.build_table.php:58 -#: ../../enterprise/meta/agentsearch.php:297 -#: ../../enterprise/meta/include/functions_autoprovision.php:448 -#: ../../enterprise/meta/include/functions_wizard_meta.php:463 -#: ../../enterprise/meta/include/functions_wizard_meta.php:580 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1132 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1458 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1681 -#: ../../enterprise/mobile/include/enterprise.class.php:96 -#: ../../enterprise/operation/agentes/collection_view.php:62 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:146 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:307 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:410 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:68 -#: ../../enterprise/operation/agentes/policy_view.php:139 -#: ../../enterprise/operation/agentes/policy_view.php:324 -#: ../../enterprise/operation/agentes/tag_view.php:649 -#: ../../enterprise/operation/services/services.list.php:403 -#: ../../enterprise/operation/services/services.service.php:163 -msgid "Name" -msgstr "Nombre" - -#: ../../extensions/files_repo/files_repo_list.php:55 -#: ../../godmode/events/event_responses.editor.php:112 -#: ../../include/functions_filemanager.php:621 -#: ../../include/functions_visual_map_editor.php:126 -#: ../../include/functions_visual_map_editor.php:179 -#: ../../include/functions_visual_map_editor.php:770 -#: ../../include/functions_visual_map_editor.php:843 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:126 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:300 -#: ../../operation/incidents/incident_detail.php:477 -#: ../../enterprise/extensions/backup/main.php:127 -msgid "Size" -msgstr "Tamaño" - -#: ../../extensions/files_repo/files_repo_list.php:56 -#: ../../include/functions_filemanager.php:620 -msgid "Last modification" -msgstr "Última modificación" - -#: ../../extensions/files_repo/files_repo_list.php:87 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: ../../extensions/files_repo/files_repo_list.php:96 -#: ../../enterprise/extensions/backup/main.php:205 -msgid "Download" -msgstr "Descargar" - -#: ../../extensions/files_repo/files_repo_list.php:103 -#: ../../godmode/agentes/fields_manager.php:150 -#: ../../godmode/agentes/modificar_agente.php:595 -#: ../../godmode/agentes/modificar_agente.php:600 -#: ../../godmode/agentes/planned_downtime.list.php:408 -#: ../../godmode/alerts/alert_special_days.php:504 -#: ../../godmode/events/event_responses.list.php:64 -#: ../../godmode/groups/group_list.php:633 -#: ../../godmode/groups/group_list.php:634 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1805 -#: ../../godmode/reporting/reporting_builder.list_items.php:534 -#: ../../godmode/reporting/reporting_builder.php:1042 -#: ../../godmode/servers/plugin.php:163 ../../godmode/servers/plugin.php:1030 -#: ../../godmode/servers/servers.build_table.php:193 -#: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/users/profile_list.php:364 -#: ../../godmode/users/user_list.php:543 ../../include/ajax/module.php:966 -#: ../../include/class/NetworkMap.class.php:3039 -#: ../../include/functions_cron.php:697 ../../include/functions_cron.php:719 -#: ../../operation/agentes/estado_agente.php:802 -#: ../../operation/agentes/estado_agente.php:804 -#: ../../operation/agentes/pandora_networkmap.php:701 -#: ../../operation/agentes/status_monitor.php:1312 -#: ../../operation/gis_maps/gis_map.php:185 -#: ../../operation/incidents/list_integriaims_incidents.php:292 -#: ../../operation/search_reports.php:48 -#: ../../operation/servers/recon_view.php:115 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:316 -#: ../../enterprise/godmode/agentes/collections.editor.php:207 -#: ../../enterprise/godmode/alerts/alert_events_list.php:720 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:481 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:184 -#: ../../enterprise/godmode/reporting/mysql_builder.php:112 -#: ../../enterprise/godmode/reporting/mysql_builder.php:124 -#: ../../enterprise/godmode/reporting/mysql_builder.php:133 -#: ../../enterprise/godmode/reporting/mysql_builder.php:175 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:425 -#: ../../enterprise/include/ajax/transactional.ajax.php:117 -#: ../../enterprise/include/ajax/transactional.ajax.php:205 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2103 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2748 -#: ../../enterprise/include/class/Omnishell.class.php:1086 -#: ../../enterprise/include/functions_tasklist.php:460 -#: ../../enterprise/include/functions_tasklist.php:485 -#: ../../enterprise/meta/advanced/collections.editor.php:175 -#: ../../enterprise/meta/include/functions_autoprovision.php:480 -#: ../../enterprise/meta/include/functions_autoprovision.php:481 -#: ../../enterprise/meta/include/functions_autoprovision.php:644 -#: ../../enterprise/meta/include/functions_autoprovision.php:645 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2698 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:277 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:443 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:635 -#: ../../enterprise/meta/screens/screens.visualmap.php:65 -#: ../../enterprise/operation/agentes/tag_view.php:714 -msgid "Edit" -msgstr "Editar" - -#: ../../extensions/files_repo/files_repo_list.php:108 -#: ../../godmode/agentes/agent_manager.php:230 -#: ../../godmode/agentes/agent_template.php:257 -#: ../../godmode/agentes/fields_manager.php:151 -#: ../../godmode/agentes/modificar_agente.php:702 -#: ../../godmode/agentes/module_manager.php:875 -#: ../../godmode/agentes/module_manager.php:886 -#: ../../godmode/agentes/module_manager.php:908 -#: ../../godmode/agentes/module_manager.php:928 -#: ../../godmode/agentes/module_manager.php:950 -#: ../../godmode/agentes/module_manager_editor_common.php:217 -#: ../../godmode/agentes/planned_downtime.editor.php:1133 -#: ../../godmode/alerts/alert_actions.php:246 -#: ../../godmode/alerts/alert_commands.php:443 -#: ../../godmode/alerts/alert_commands.php:445 -#: ../../godmode/alerts/alert_list.list.php:957 -#: ../../godmode/alerts/alert_special_days.php:506 -#: ../../godmode/alerts/alert_templates.php:405 -#: ../../godmode/category/category.php:129 -#: ../../godmode/category/category.php:134 -#: ../../godmode/events/event_filter.php:160 -#: ../../godmode/groups/group_list.php:639 -#: ../../godmode/groups/modu_group_list.php:249 -#: ../../godmode/groups/modu_group_list.php:252 -#: ../../godmode/massive/massive_add_action_alerts.php:234 -#: ../../godmode/massive/massive_add_alerts.php:265 -#: ../../godmode/massive/massive_add_profiles.php:169 -#: ../../godmode/massive/massive_delete_action_alerts.php:254 -#: ../../godmode/massive/massive_delete_agents.php:190 -#: ../../godmode/massive/massive_delete_modules.php:561 -#: ../../godmode/massive/massive_delete_profiles.php:176 -#: ../../godmode/massive/massive_edit_plugins.php:588 -#: ../../godmode/massive/massive_enable_disable_alerts.php:203 -#: ../../godmode/massive/massive_operations.php:287 -#: ../../godmode/massive/massive_operations.php:296 -#: ../../godmode/massive/massive_standby_alerts.php:215 -#: ../../godmode/modules/manage_nc_groups.php:261 -#: ../../godmode/modules/manage_network_components.php:741 -#: ../../godmode/modules/manage_network_templates.php:252 -#: ../../godmode/modules/manage_network_templates.php:262 -#: ../../godmode/netflow/nf_edit.php:171 -#: ../../godmode/netflow/nf_item_list.php:264 -#: ../../godmode/reporting/create_container.php:641 -#: ../../godmode/reporting/graphs.php:307 -#: ../../godmode/reporting/map_builder.php:457 -#: ../../godmode/reporting/map_builder.php:460 -#: ../../godmode/reporting/reporting_builder.php:1053 -#: ../../godmode/reporting/visual_console_builder.elements.php:405 -#: ../../godmode/servers/plugin.php:1031 ../../godmode/setup/links.php:157 -#: ../../godmode/setup/news.php:280 -#: ../../godmode/snmpconsole/snmp_alert.php:1300 -#: ../../godmode/snmpconsole/snmp_alert.php:1319 -#: ../../godmode/snmpconsole/snmp_alert.php:1560 -#: ../../godmode/snmpconsole/snmp_filters.php:270 -#: ../../godmode/snmpconsole/snmp_filters.php:281 ../../godmode/tag/tag.php:294 -#: ../../godmode/users/profile_list.php:366 -#: ../../godmode/users/user_list.php:545 ../../godmode/users/user_list.php:547 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:653 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:671 -#: ../../include/class/CredentialStore.class.php:1158 -#: ../../include/class/TreeGroupEdition.class.php:94 -#: ../../include/class/WelcomeWindow.class.php:171 -#: ../../include/functions_container.php:187 -#: ../../include/functions_container.php:321 -#: ../../include/functions_events.php:3515 -#: ../../include/functions_events.php.orig:3421 -#: ../../include/functions_filemanager.php:727 -#: ../../include/functions_profile.php:256 -#: ../../operation/agentes/pandora_networkmap.editor.php:570 -#: ../../operation/agentes/pandora_networkmap.php:796 -#: ../../operation/events/events.build_table.php:966 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:245 -#: ../../operation/incidents/incident_detail.php:446 -#: ../../operation/incidents/incident_detail.php:494 -#: ../../operation/incidents/list_integriaims_incidents.php:298 -#: ../../operation/messages/message_list.php:240 -#: ../../operation/messages/message_list.php:243 -#: ../../operation/snmpconsole/snmp_view.php:978 -#: ../../operation/snmpconsole/snmp_view.php:984 -#: ../../operation/snmpconsole/snmp_view.php:1138 -#: ../../operation/users/user_edit.php:1084 -#: ../../enterprise/dashboard/dashboards.php:169 -#: ../../enterprise/extensions/backup/main.php:286 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:419 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:492 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:304 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:379 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 -#: ../../enterprise/godmode/agentes/inventory_manager.php:245 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:92 -#: ../../enterprise/godmode/alerts/alert_events_list.php:728 -#: ../../enterprise/godmode/alerts/alert_events_list.php:839 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:485 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:634 -#: ../../enterprise/godmode/modules/local_components.php:610 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:427 -#: ../../enterprise/godmode/policies/policies.php:576 -#: ../../enterprise/godmode/policies/policies.php:594 -#: ../../enterprise/godmode/policies/policies.php:618 -#: ../../enterprise/godmode/policies/policy_agents.php:413 -#: ../../enterprise/godmode/policies/policy_agents.php:635 -#: ../../enterprise/godmode/policies/policy_agents.php:867 -#: ../../enterprise/godmode/policies/policy_agents.php:933 -#: ../../enterprise/godmode/policies/policy_agents.php:1030 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 -#: ../../enterprise/godmode/policies/policy_alerts.php:453 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:277 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:279 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:284 -#: ../../enterprise/godmode/policies/policy_modules.php:1566 -#: ../../enterprise/godmode/policies/policy_modules.php:1579 -#: ../../enterprise/godmode/policies/policy_modules.php:1624 -#: ../../enterprise/godmode/policies/policy_queue.php:535 -#: ../../enterprise/godmode/policies/policy_queue.php:572 -#: ../../enterprise/godmode/policies/policy_queue.php:590 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 -#: ../../enterprise/godmode/reporting/graph_template_list.php:177 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:399 -#: ../../enterprise/godmode/reporting/mysql_builder.php:74 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:446 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:462 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:801 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:606 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 -#: ../../enterprise/godmode/setup/setup_skins.php:141 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:368 -#: ../../enterprise/include/ajax/transactional.ajax.php:118 -#: ../../enterprise/include/ajax/transactional.ajax.php:207 -#: ../../enterprise/include/class/AgentRepository.class.php:775 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3055 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1513 -#: ../../enterprise/include/class/Omnishell.class.php:504 -#: ../../enterprise/include/class/Omnishell.class.php:1103 -#: ../../enterprise/include/functions_services.php:2745 -#: ../../enterprise/include/functions_tasklist.php:464 -#: ../../enterprise/include/functions_tasklist.php:491 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:498 -#: ../../enterprise/meta/advanced/links.php:166 -#: ../../enterprise/meta/advanced/policymanager.queue.php:333 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1097 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:228 -#: ../../enterprise/operation/agentes/transactional_map.php:360 -#: ../../enterprise/operation/agentes/transactional_map.php:364 -#: ../../enterprise/operation/agentes/transactional_map.php:375 -#: ../../enterprise/operation/services/services.list.php:546 -msgid "Are you sure?" -msgstr "¿Estás seguro?" - -#: ../../extensions/files_repo/files_repo_list.php:109 -#: ../../godmode/agentes/agent_template.php:257 -#: ../../godmode/agentes/fields_manager.php:151 -#: ../../godmode/agentes/module_manager.php:655 -#: ../../godmode/agentes/module_manager.php:932 -#: ../../godmode/agentes/module_manager.php:958 -#: ../../godmode/agentes/module_manager_editor_common.php:1229 -#: ../../godmode/agentes/planned_downtime.editor.php:1085 -#: ../../godmode/agentes/planned_downtime.editor.php:1088 -#: ../../godmode/agentes/planned_downtime.editor.php:1139 -#: ../../godmode/agentes/planned_downtime.list.php:409 -#: ../../godmode/agentes/planned_downtime.list.php:489 -#: ../../godmode/alerts/alert_actions.php:186 -#: ../../godmode/alerts/alert_list.list.php:825 -#: ../../godmode/alerts/alert_templates.php:408 -#: ../../godmode/events/event_filter.php:160 -#: ../../godmode/events/event_filter.php:175 -#: ../../godmode/events/event_responses.list.php:63 -#: ../../godmode/extensions.php:260 ../../godmode/extensions.php:262 -#: ../../godmode/groups/group_list.php:648 -#: ../../godmode/groups/group_list.php:649 -#: ../../godmode/groups/modu_group_list.php:236 -#: ../../godmode/massive/massive_delete_action_alerts.php:256 -#: ../../godmode/massive/massive_delete_agents.php:192 -#: ../../godmode/massive/massive_delete_alerts.php:319 -#: ../../godmode/massive/massive_delete_modules.php:563 -#: ../../godmode/massive/massive_delete_profiles.php:178 -#: ../../godmode/modules/manage_nc_groups.php:262 -#: ../../godmode/modules/manage_nc_groups.php:272 -#: ../../godmode/modules/manage_network_components.php:741 -#: ../../godmode/modules/manage_network_components.php:762 -#: ../../godmode/modules/manage_network_templates.php:262 -#: ../../godmode/modules/manage_network_templates.php:275 -#: ../../godmode/modules/manage_network_templates_form.php:242 -#: ../../godmode/netflow/nf_edit.php:172 ../../godmode/netflow/nf_edit.php:183 -#: ../../godmode/netflow/nf_item_list.php:265 -#: ../../godmode/netflow/nf_item_list.php:275 -#: ../../godmode/reporting/create_container.php:589 -#: ../../godmode/reporting/create_container.php:642 -#: ../../godmode/reporting/graph_builder.graph_editor.php:202 -#: ../../godmode/reporting/graph_builder.graph_editor.php:242 -#: ../../godmode/reporting/graphs.php:308 -#: ../../godmode/reporting/graphs.php:325 -#: ../../godmode/reporting/map_builder.php:339 -#: ../../godmode/reporting/map_builder.php:457 -#: ../../godmode/reporting/map_builder.php:460 -#: ../../godmode/reporting/reporting_builder.list_items.php:536 -#: ../../godmode/reporting/reporting_builder.list_items.php:566 -#: ../../godmode/reporting/reporting_builder.list_items.php:589 -#: ../../godmode/reporting/reporting_builder.list_items.php:690 -#: ../../godmode/reporting/reporting_builder.php:1060 -#: ../../godmode/reporting/reporting_builder.php:1151 -#: ../../godmode/reporting/visual_console_builder.elements.php:666 -#: ../../godmode/servers/servers.build_table.php:213 -#: ../../godmode/setup/gis.php:76 ../../godmode/setup/links.php:143 -#: ../../godmode/setup/news.php:241 ../../godmode/setup/setup_visuals.php:1276 -#: ../../godmode/setup/setup_visuals.php:1312 -#: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/snmpconsole/snmp_alert.php:1300 -#: ../../godmode/snmpconsole/snmp_alert.php:1319 -#: ../../godmode/snmpconsole/snmp_filters.php:270 -#: ../../godmode/snmpconsole/snmp_filters.php:281 -#: ../../godmode/users/user_list.php:545 -#: ../../include/class/CredentialStore.class.php:1007 -#: ../../include/class/CredentialStore.class.php:1160 -#: ../../include/class/ManageNetScanScripts.class.php:398 -#: ../../include/class/NetworkMap.class.php:2814 -#: ../../include/functions_container.php:188 -#: ../../include/functions_container.php:322 -#: ../../include/functions_cron.php:708 ../../include/functions_cron.php:730 -#: ../../operation/agentes/pandora_networkmap.php:702 -#: ../../operation/agentes/pandora_networkmap.php:796 -#: ../../operation/gis_maps/gis_map.php:185 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:129 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:301 -#: ../../operation/incidents/incident_detail.php:478 -#: ../../operation/incidents/list_integriaims_incidents.php:299 -#: ../../operation/messages/message_list.php:169 -#: ../../operation/messages/message_list.php:240 -#: ../../operation/messages/message_list.php:243 -#: ../../operation/messages/message_list.php:261 -#: ../../operation/snmpconsole/snmp_view.php:978 -#: ../../operation/snmpconsole/snmp_view.php:984 -#: ../../operation/snmpconsole/snmp_view.php:1138 -#: ../../operation/snmpconsole/snmp_view.php:1188 -#: ../../enterprise/dashboard/dashboards.php:119 -#: ../../enterprise/dashboard/dashboards.php:169 -#: ../../enterprise/extensions/backup/main.php:228 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:664 -#: ../../enterprise/godmode/agentes/inventory_manager.php:246 -#: ../../enterprise/godmode/agentes/plugins_manager.php:124 -#: ../../enterprise/godmode/agentes/plugins_manager.php:168 -#: ../../enterprise/godmode/alerts/alert_events_list.php:656 -#: ../../enterprise/godmode/alerts/alert_events_list.php:731 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:486 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:132 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:221 -#: ../../enterprise/godmode/modules/local_components.php:610 -#: ../../enterprise/godmode/modules/local_components.php:623 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:428 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:443 -#: ../../enterprise/godmode/policies/policies.php:603 -#: ../../enterprise/godmode/policies/policy_agents.php:874 -#: ../../enterprise/godmode/policies/policy_agents.php:1225 -#: ../../enterprise/godmode/policies/policy_alerts.php:474 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:298 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:285 -#: ../../enterprise/godmode/policies/policy_modules.php:1600 -#: ../../enterprise/godmode/policies/policy_modules.php:1630 -#: ../../enterprise/godmode/policies/policy_queue.php:422 -#: ../../enterprise/godmode/policies/policy_queue.php:482 -#: ../../enterprise/godmode/policies/policy_queue.php:515 -#: ../../enterprise/godmode/policies/policy_plugins.php:121 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:182 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:192 -#: ../../enterprise/godmode/reporting/graph_template_list.php:189 -#: ../../enterprise/godmode/reporting/mysql_builder.php:67 -#: ../../enterprise/godmode/reporting/mysql_builder.php:74 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:469 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:495 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:431 -#: ../../enterprise/godmode/reporting/visual_console_template.php:199 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 -#: ../../enterprise/godmode/setup/setup_acl.php:497 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:369 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:72 -#: ../../enterprise/include/ajax/transactional.ajax.php:119 -#: ../../enterprise/include/ajax/transactional.ajax.php:208 -#: ../../enterprise/include/class/AgentRepository.class.php:758 -#: ../../enterprise/include/class/AgentRepository.class.php:793 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2115 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2760 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3070 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1492 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1531 -#: ../../enterprise/include/class/Omnishell.class.php:1111 -#: ../../enterprise/include/functions_tasklist.php:468 -#: ../../enterprise/include/functions_tasklist.php:495 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:501 -#: ../../enterprise/meta/advanced/links.php:152 -#: ../../enterprise/meta/advanced/metasetup.visual.php:240 -#: ../../enterprise/meta/advanced/policymanager.queue.php:220 -#: ../../enterprise/meta/advanced/policymanager.queue.php:262 -#: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/meta/advanced/servers.build_table.php:135 -#: ../../enterprise/meta/include/functions_autoprovision.php:491 -#: ../../enterprise/meta/include/functions_autoprovision.php:492 -#: ../../enterprise/meta/include/functions_autoprovision.php:657 -#: ../../enterprise/meta/include/functions_autoprovision.php:658 -#: ../../enterprise/meta/include/functions_wizard_meta.php:396 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:280 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:446 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:638 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:229 -#: ../../enterprise/operation/agentes/transactional_map.php:376 -#: ../../enterprise/operation/services/services.list.php:547 -msgid "Delete" -msgstr "Eliminar" - -#: ../../extensions/files_repo/files_repo_list.php:119 -msgid "No items" -msgstr "No hay elementos" - -#: ../../extensions/files_repo/functions_files_repo.php:28 -#: ../../extensions/files_repo/functions_files_repo.php:46 -msgid "Attachment directory is not writable by HTTP Server" -msgstr "El servidor HTTP no puede escribir en el directorio de adjuntos" - -#: ../../extensions/files_repo/functions_files_repo.php:28 -#: ../../extensions/files_repo/functions_files_repo.php:46 -#, php-format -msgid "Please check that the web server has write rights on the %s directory" -msgstr "" -"Por favor, comprueba que el directorio %s del servidor web tiene permisos de " -"escritura" - -#: ../../extensions/files_repo/functions_files_repo.php:248 -msgid "The file could not be copied" -msgstr "El archivo no ha sido copiado" - -#: ../../extensions/files_repo/functions_files_repo.php:251 -msgid "There was an error creating the file" -msgstr "Se ha producido un error creando el archivo" - -#: ../../extensions/files_repo/functions_files_repo.php:295 -msgid "There was an error updating the file" -msgstr "Se ha producido un error actualizando el archivo" - -#: ../../extensions/files_repo.php:103 -msgid "Extension not installed" -msgstr "Extensión no instalada" - -#: ../../extensions/files_repo.php:115 ../../extensions/files_repo.php:204 -#: ../../enterprise/extensions/ipam.php:296 -#: ../../enterprise/extensions/ipam.php:308 -#: ../../enterprise/extensions/ipam.php:415 -msgid "Administration view" -msgstr "Vista de administración" - -#: ../../extensions/files_repo.php:119 ../../extensions/files_repo.php:207 -#: ../../enterprise/extensions/ipam.php:170 -#: ../../enterprise/extensions/ipam.php:423 -msgid "Operation view" -msgstr "Vista de operación" - -#: ../../extensions/files_repo.php:127 ../../extensions/files_repo.php:237 -msgid "Files repository manager" -msgstr "Gestor del repositorio de archivos" - -#: ../../extensions/files_repo.php:145 ../../include/functions.php:2729 -#: ../../include/functions.php:2733 -msgid "The file exceeds the maximum size" -msgstr "El archivo excede el tamaño máximo" - -#: ../../extensions/files_repo.php:181 -#: ../../godmode/agentes/planned_downtime.list.php:112 -#: ../../godmode/alerts/alert_actions.php:173 -#: ../../godmode/alerts/alert_commands.php:368 -#: ../../godmode/alerts/alert_list.php:227 -#: ../../godmode/alerts/alert_list.php:325 -#: ../../godmode/alerts/alert_special_days.php:250 -#: ../../godmode/alerts/alert_templates.php:251 -#: ../../godmode/events/event_filter.php:54 -#: ../../godmode/events/event_filter.php:81 -#: ../../godmode/massive/massive_delete_action_alerts.php:124 -#: ../../godmode/massive/massive_delete_alerts.php:179 -#: ../../godmode/massive/massive_delete_modules.php:143 -#: ../../godmode/modules/manage_nc_groups.php:141 -#: ../../godmode/modules/manage_network_components.php:417 -#: ../../godmode/netflow/nf_edit.php:91 ../../godmode/netflow/nf_edit.php:124 -#: ../../godmode/netflow/nf_item_list.php:122 -#: ../../godmode/netflow/nf_item_list.php:150 -#: ../../godmode/reporting/graphs.php:97 ../../godmode/reporting/graphs.php:107 -#: ../../godmode/reporting/graphs.php:150 -#: ../../godmode/reporting/map_builder.php:158 -#: ../../godmode/reporting/reporting_builder.php:623 -#: ../../godmode/setup/gis.php:67 ../../godmode/setup/links.php:73 -#: ../../godmode/setup/news.php:112 -#: ../../godmode/snmpconsole/snmp_alert.php:680 -#: ../../godmode/snmpconsole/snmp_filters.php:159 -#: ../../godmode/users/configure_user.php:628 -#: ../../godmode/users/profile_list.php:86 -#: ../../godmode/users/user_list.php:173 ../../godmode/users/user_list.php:220 -#: ../../include/functions_api.php:13915 -#: ../../operation/gis_maps/gis_map.php:86 -#: ../../operation/incidents/incident.php:98 -#: ../../operation/incidents/incident_detail.php:96 -#: ../../operation/incidents/incident_detail.php:134 -#: ../../operation/incidents/list_integriaims_incidents.php:78 -#: ../../operation/messages/message_list.php:85 -#: ../../operation/messages/message_list.php:103 -#: ../../operation/reporting/graph_viewer.php:39 -#: ../../operation/reporting/graph_viewer.php:47 -#: ../../operation/snmpconsole/snmp_view.php:112 -#: ../../enterprise/dashboard/dashboards.php:76 -#: ../../enterprise/extensions/ipam/ipam_action.php:84 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:148 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:222 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:112 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:184 -#: ../../enterprise/godmode/alerts/alert_events_list.php:180 -#: ../../enterprise/godmode/alerts/alert_events_list.php:232 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 -#: ../../enterprise/godmode/modules/local_components.php:359 -#: ../../enterprise/godmode/policies/policies.php:172 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:644 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:652 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1128 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1136 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:97 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:125 -#: ../../enterprise/godmode/reporting/graph_template_list.php:99 -#: ../../enterprise/godmode/reporting/graph_template_list.php:126 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:301 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:235 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:135 -#: ../../enterprise/include/class/DatabaseHA.class.php:919 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:243 -#: ../../enterprise/meta/advanced/links.php:81 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:65 -#: ../../enterprise/operation/agentes/transactional_map.php:156 -msgid "Successfully deleted" -msgstr "Eliminado correctamente" - -#: ../../extensions/files_repo.php:181 -#: ../../godmode/alerts/alert_actions.php:174 -#: ../../godmode/alerts/alert_commands.php:369 -#: ../../godmode/alerts/alert_list.php:228 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/alerts/alert_special_days.php:251 -#: ../../godmode/alerts/alert_templates.php:252 -#: ../../godmode/massive/massive_delete_action_alerts.php:125 -#: ../../godmode/massive/massive_delete_alerts.php:180 -#: ../../godmode/modules/manage_network_components.php:418 -#: ../../godmode/reporting/reporting_builder.php:624 -#: ../../godmode/setup/gis.php:65 ../../godmode/setup/news.php:113 -#: ../../godmode/users/configure_user.php:629 -#: ../../operation/agentes/pandora_networkmap.php:539 -#: ../../operation/gis_maps/gis_map.php:87 -#: ../../operation/incidents/incident.php:99 -#: ../../operation/incidents/incident_detail.php:97 -#: ../../operation/incidents/incident_detail.php:135 -#: ../../operation/incidents/list_integriaims_incidents.php:79 -#: ../../operation/messages/message_list.php:86 -#: ../../operation/snmpconsole/snmp_view.php:113 -#: ../../enterprise/dashboard/dashboards.php:77 -#: ../../enterprise/extensions/ipam/ipam_action.php:82 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:146 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:220 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:110 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:182 -#: ../../enterprise/godmode/alerts/alert_events_list.php:181 -#: ../../enterprise/godmode/alerts/alert_events_list.php:233 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:270 -#: ../../enterprise/godmode/modules/local_components.php:360 -#: ../../enterprise/godmode/policies/policies.php:175 -#: ../../enterprise/godmode/policies/policy_agents.php:115 -#: ../../enterprise/godmode/policies/policy_agents.php:137 -#: ../../enterprise/godmode/policies/policy_alerts.php:199 -#: ../../enterprise/godmode/policies/policy_alerts.php:240 -#: ../../enterprise/godmode/policies/policy_collections.php:77 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:108 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:135 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:135 -#: ../../enterprise/godmode/policies/policy_modules.php:1336 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:645 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:653 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1129 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1137 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:302 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:320 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:136 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:66 -#: ../../enterprise/operation/agentes/transactional_map.php:157 -msgid "Could not be deleted" -msgstr "No se pudo eliminar" - -#: ../../extensions/files_repo.php:218 ../../extensions/files_repo.php:235 -msgid "Files repository" -msgstr "Repositorio de archivos" - -#: ../../extensions/insert_data.php:58 -msgid "Insert data" -msgstr "Insertar datos" - -#: ../../extensions/insert_data.php:86 -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:122 -#, php-format -msgid "Can't save agent (%s), module (%s) data xml." -msgstr "No se pudo guardar el agente (%s), módulo (%s) datos XML" - -#: ../../extensions/insert_data.php:131 -#, php-format -msgid "Save agent (%s), module (%s) data xml." -msgstr "Guardar agente (%s), módulo (%s) datos XML" - -#: ../../extensions/insert_data.php:142 -#, php-format -msgid "" -"Please check that the directory \"%s\" is writeable by the apache user.

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

El formato del archivo CSV es " -"date;value<newline>date;value<newline>... La fecha en CVS está " -"en formato a/m/d H:i:s." - -#: ../../extensions/insert_data.php:191 ../../extensions/insert_data.php:192 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/events/custom_events.php:114 -#: ../../include/ajax/custom_fields.php:402 ../../include/ajax/module.php:840 -#: ../../include/functions_events.php:208 -#: ../../include/functions_events.php:289 -#: ../../include/functions_events.php:6105 -#: ../../include/functions_events.php.orig:206 -#: ../../include/functions_events.php.orig:287 -#: ../../include/functions_events.php.orig:6009 -#: ../../include/functions_graph.php:3669 -#: ../../include/functions_netflow.php:297 -#: ../../include/functions_reporting_html.php:2144 -#: ../../include/functions_reporting_html.php:2148 -#: ../../include/functions_reporting_html.php:2151 -#: ../../include/functions_reporting_html.php:2156 -#: ../../include/functions_reporting_html.php:2202 -#: ../../include/functions_reporting.php:3199 -#: ../../include/functions_reporting.php:3240 -#: ../../mobile/operation/modules.php:690 -#: ../../mobile/operation/modules.php:691 -#: ../../mobile/operation/modules.php:692 -#: ../../mobile/operation/modules.php:693 -#: ../../mobile/operation/modules.php:694 -#: ../../mobile/operation/modules.php:695 -#: ../../mobile/operation/modules.php:696 -#: ../../mobile/operation/modules.php:697 -#: ../../mobile/operation/modules.php:698 -#: ../../mobile/operation/modules.php:700 -#: ../../mobile/operation/modules.php:823 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1155 -#: ../../operation/events/events.build_table.php:330 -#: ../../operation/search_modules.php:37 -#: ../../enterprise/godmode/agentes/collections.agents.php:49 -#: ../../enterprise/godmode/agentes/collections.agents.php:58 -#: ../../enterprise/godmode/agentes/collections.data.php:64 -#: ../../enterprise/godmode/agentes/collections.data.php:107 -#: ../../enterprise/godmode/agentes/collections.data.php:157 -#: ../../enterprise/godmode/agentes/collections.data.php:174 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:215 -#: ../../enterprise/godmode/agentes/collections.data.php:240 -#: ../../enterprise/godmode/agentes/collections.data.php:264 -#: ../../enterprise/godmode/agentes/collections.data.php:287 -#: ../../enterprise/godmode/agentes/collections.editor.php:48 -#: ../../enterprise/include/ajax/clustermap.php:72 -#: ../../enterprise/include/ajax/clustermap.php:291 -#: ../../enterprise/include/functions_services.php:2481 -#: ../../enterprise/include/functions_reporting.php:2009 -#: ../../enterprise/include/functions_reporting.php:2042 -#: ../../enterprise/include/functions_reporting.php:2046 -#: ../../enterprise/include/functions_reporting_csv.php:709 -#: ../../enterprise/include/functions_reporting_csv.php:739 -#: ../../enterprise/include/functions_reporting_csv.php:770 -#: ../../enterprise/include/functions_reporting_csv.php:809 -#: ../../enterprise/include/functions_reporting_csv.php:865 -#: ../../enterprise/include/functions_reporting_csv.php:1251 -#: ../../enterprise/include/functions_reporting_csv.php:2058 -#: ../../enterprise/include/functions_reporting_csv.php:2094 -#: ../../enterprise/include/functions_reporting_csv.php:2179 -#: ../../enterprise/include/functions_reporting_csv.php:2239 -#: ../../enterprise/include/functions_reporting_csv.php:2272 -#: ../../enterprise/include/functions_reporting_pdf.php:642 -#: ../../enterprise/meta/advanced/collections.data.php:48 -#: ../../enterprise/meta/advanced/collections.data.php:88 -#: ../../enterprise/meta/advanced/collections.data.php:103 -#: ../../enterprise/meta/advanced/collections.data.php:120 -#: ../../enterprise/meta/advanced/collections.data.php:142 -#: ../../enterprise/meta/advanced/collections.data.php:162 -#: ../../enterprise/meta/advanced/collections.data.php:184 -#: ../../enterprise/meta/advanced/collections.data.php:229 -#: ../../enterprise/meta/advanced/collections.data.php:254 -#: ../../enterprise/meta/advanced/collections.editor.php:33 -#: ../../enterprise/meta/include/functions_events_meta.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:327 -#: ../../enterprise/operation/agentes/tag_view.php:656 -msgid "Data" -msgstr "Datos" - -#: ../../extensions/insert_data.php:193 ../../extensions/users_connected.php:79 -#: ../../general/logon_ok.php:247 ../../godmode/admin_access_logs.php:198 -#: ../../godmode/alerts/configure_alert_special_days.php:66 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1684 -#: ../../include/functions.php:2884 ../../include/functions_events.php:6451 -#: ../../include/functions_events.php.orig:6355 -#: ../../include/functions_reporting_html.php:2143 -#: ../../include/functions_reporting_html.php:2150 -#: ../../include/functions_reporting_html.php:2155 -#: ../../include/functions_reporting_html.php:2201 -#: ../../include/functions_reporting_html.php:4646 -#: ../../include/functions_reporting.php:3198 -#: ../../include/functions_reporting.php:3239 -#: ../../mobile/operation/tactical.php:350 -#: ../../operation/events/events.build_table.php:695 -#: ../../operation/incidents/list_integriaims_incidents.php:160 -#: ../../operation/reporting/graph_viewer.php:240 -#: ../../enterprise/extensions/backup/main.php:126 -#: ../../enterprise/include/functions_inventory.php:712 -#: ../../enterprise/include/functions_log.php:381 -#: ../../enterprise/include/functions_reporting.php:1967 -#: ../../enterprise/include/functions_reporting.php:2005 -#: ../../enterprise/include/functions_reporting.php:2040 -#: ../../enterprise/include/functions_reporting.php:2058 -#: ../../enterprise/include/functions_reporting_csv.php:683 -#: ../../enterprise/include/functions_reporting_csv.php:739 -#: ../../enterprise/include/functions_reporting_csv.php:2239 -#: ../../enterprise/include/functions_reporting_pdf.php:652 -#: ../../enterprise/operation/agentes/agent_inventory.php:75 -#: ../../enterprise/operation/inventory/inventory.php:241 -msgid "Date" -msgstr "Fecha" - -#: ../../extensions/insert_data.php:196 -#: ../../operation/agentes/exportdata.php:362 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:380 -#: ../../enterprise/operation/reporting/custom_reporting.php:18 -msgid "CSV" -msgstr "CSV" - -#: ../../extensions/insert_data.php:205 -#: ../../godmode/reporting/reporting_builder.main.php:34 -#: ../../godmode/reporting/visual_console_builder.data.php:217 -#: ../../godmode/setup/gis_step_2.php:340 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../operation/agentes/graphs.php:335 -#: ../../enterprise/dashboard/main_dashboard.php:377 -#: ../../enterprise/godmode/reporting/mysql_builder.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 -#: ../../enterprise/include/ajax/transactional.ajax.php:83 -msgid "Save" -msgstr "Guardar" - -#: ../../extensions/insert_data.php:221 -#: ../../godmode/agentes/planned_downtime.editor.php:1463 -#: ../../godmode/alerts/configure_alert_template.php:1272 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3691 -#: ../../godmode/setup/news.php:311 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/estado_monitores.php:446 -#: ../../operation/agentes/interface_traffic_graph_win.php:312 -#: ../../operation/agentes/stat_win.php:447 -#: ../../operation/events/events.php:2463 -#: ../../operation/events/events_list.php:2007 -#: ../../operation/netflow/nf_live_view.php:739 -#: ../../operation/network/network_report.php:356 -#: ../../operation/network/network_usage_map.php:208 -#: ../../operation/reporting/graph_viewer.php:312 -#: ../../operation/reporting/reporting_viewer.php:275 -#: ../../operation/reporting/reporting_viewer.php:295 -#: ../../operation/snmpconsole/snmp_view.php:1227 -#: ../../operation/snmpconsole/snmp_view.php:1239 ../../operation/tree.php:475 -#: ../../enterprise/dashboard/widgets/tree_view.php:363 -#: ../../enterprise/godmode/alerts/alert_events.php:695 -#: ../../enterprise/godmode/reporting/cluster_view.php:674 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:949 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3591 -#: ../../enterprise/godmode/wizards/consoletask_js.php:41 -#: ../../enterprise/meta/advanced/cron_main.php:498 -#: ../../enterprise/operation/log/log_viewer.php:741 -#: ../../enterprise/operation/log/log_viewer.php:753 -msgid "Choose time" -msgstr "Seleccionar hora" - -#: ../../extensions/insert_data.php:222 -#: ../../godmode/agentes/planned_downtime.editor.php:1464 -#: ../../godmode/alerts/configure_alert_template.php:1273 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3692 -#: ../../godmode/setup/news.php:312 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/estado_monitores.php:447 -#: ../../operation/agentes/interface_traffic_graph_win.php:313 -#: ../../operation/agentes/stat_win.php:448 -#: ../../operation/events/events.php:2464 -#: ../../operation/events/events_list.php:2008 -#: ../../operation/netflow/nf_live_view.php:740 -#: ../../operation/network/network_report.php:357 -#: ../../operation/network/network_usage_map.php:209 -#: ../../operation/reporting/graph_viewer.php:313 -#: ../../operation/reporting/reporting_viewer.php:276 -#: ../../operation/reporting/reporting_viewer.php:296 -#: ../../operation/snmpconsole/snmp_view.php:1228 -#: ../../operation/snmpconsole/snmp_view.php:1240 ../../operation/tree.php:476 -#: ../../enterprise/dashboard/widgets/tree_view.php:364 -#: ../../enterprise/godmode/alerts/alert_events.php:696 -#: ../../enterprise/godmode/reporting/cluster_view.php:675 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:950 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3592 -#: ../../enterprise/godmode/wizards/consoletask_js.php:42 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:907 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3390 -#: ../../enterprise/meta/advanced/cron_main.php:499 -#: ../../enterprise/operation/log/log_viewer.php:742 -#: ../../enterprise/operation/log/log_viewer.php:754 -msgid "Time" -msgstr "Hora" - -#: ../../extensions/insert_data.php:223 -#: ../../godmode/agentes/planned_downtime.editor.php:1465 -#: ../../godmode/alerts/configure_alert_template.php:1274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3693 -#: ../../godmode/setup/news.php:313 ../../include/functions_html.php:1228 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/estado_monitores.php:448 -#: ../../operation/agentes/interface_traffic_graph_win.php:314 -#: ../../operation/agentes/stat_win.php:449 -#: ../../operation/events/events.php:2465 -#: ../../operation/events/events_list.php:2009 -#: ../../operation/netflow/nf_live_view.php:741 -#: ../../operation/network/network_report.php:358 -#: ../../operation/network/network_usage_map.php:210 -#: ../../operation/reporting/graph_viewer.php:314 -#: ../../operation/reporting/reporting_viewer.php:277 -#: ../../operation/reporting/reporting_viewer.php:297 -#: ../../operation/snmpconsole/snmp_view.php:1229 -#: ../../operation/snmpconsole/snmp_view.php:1241 ../../operation/tree.php:477 -#: ../../enterprise/dashboard/widgets/tree_view.php:365 -#: ../../enterprise/godmode/alerts/alert_events.php:697 -#: ../../enterprise/godmode/reporting/cluster_view.php:676 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:951 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3593 -#: ../../enterprise/godmode/wizards/consoletask_js.php:43 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3391 -#: ../../enterprise/meta/advanced/cron_main.php:500 -#: ../../enterprise/operation/log/log_viewer.php:743 -#: ../../enterprise/operation/log/log_viewer.php:755 -msgid "Hour" -msgstr "Hora" - -#: ../../extensions/insert_data.php:224 -#: ../../godmode/agentes/planned_downtime.editor.php:1466 -#: ../../godmode/alerts/configure_alert_template.php:1275 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3694 -#: ../../godmode/setup/news.php:314 ../../include/functions_html.php:1229 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/estado_monitores.php:449 -#: ../../operation/agentes/interface_traffic_graph_win.php:315 -#: ../../operation/agentes/stat_win.php:450 -#: ../../operation/events/events.php:2466 -#: ../../operation/events/events_list.php:2010 -#: ../../operation/netflow/nf_live_view.php:742 -#: ../../operation/network/network_report.php:359 -#: ../../operation/network/network_usage_map.php:211 -#: ../../operation/reporting/graph_viewer.php:315 -#: ../../operation/reporting/reporting_viewer.php:278 -#: ../../operation/reporting/reporting_viewer.php:298 -#: ../../operation/snmpconsole/snmp_view.php:1230 -#: ../../operation/snmpconsole/snmp_view.php:1242 ../../operation/tree.php:478 -#: ../../enterprise/dashboard/widgets/tree_view.php:366 -#: ../../enterprise/godmode/alerts/alert_events.php:698 -#: ../../enterprise/godmode/reporting/cluster_view.php:677 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:952 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 -#: ../../enterprise/godmode/wizards/consoletask_js.php:44 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3392 -#: ../../enterprise/meta/advanced/cron_main.php:501 -#: ../../enterprise/operation/log/log_viewer.php:744 -#: ../../enterprise/operation/log/log_viewer.php:756 -msgid "Minute" -msgstr "Minuto" - -#: ../../extensions/insert_data.php:225 -#: ../../godmode/agentes/planned_downtime.editor.php:1467 -#: ../../godmode/alerts/configure_alert_template.php:1276 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3695 -#: ../../godmode/setup/news.php:315 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/estado_monitores.php:450 -#: ../../operation/agentes/interface_traffic_graph_win.php:316 -#: ../../operation/agentes/stat_win.php:451 -#: ../../operation/events/events.php:2467 -#: ../../operation/events/events_list.php:2011 -#: ../../operation/netflow/nf_live_view.php:743 -#: ../../operation/network/network_report.php:360 -#: ../../operation/network/network_usage_map.php:212 -#: ../../operation/reporting/graph_viewer.php:316 -#: ../../operation/reporting/reporting_viewer.php:279 -#: ../../operation/reporting/reporting_viewer.php:299 -#: ../../operation/snmpconsole/snmp_view.php:1231 -#: ../../operation/snmpconsole/snmp_view.php:1243 ../../operation/tree.php:479 -#: ../../enterprise/dashboard/widgets/tree_view.php:367 -#: ../../enterprise/godmode/alerts/alert_events.php:699 -#: ../../enterprise/godmode/reporting/cluster_view.php:678 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:953 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3595 -#: ../../enterprise/godmode/wizards/consoletask_js.php:45 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3393 -#: ../../enterprise/meta/advanced/cron_main.php:502 -#: ../../enterprise/operation/log/log_viewer.php:745 -#: ../../enterprise/operation/log/log_viewer.php:757 -msgid "Second" -msgstr "Segundo" - -#: ../../extensions/insert_data.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:1468 -#: ../../godmode/alerts/configure_alert_template.php:1277 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3696 -#: ../../godmode/setup/news.php:316 ../../include/functions.php:494 -#: ../../include/functions.php:634 ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:451 -#: ../../operation/agentes/interface_traffic_graph_win.php:317 -#: ../../operation/agentes/stat_win.php:452 -#: ../../operation/events/events.php:2468 -#: ../../operation/events/events_list.php:2012 -#: ../../operation/netflow/nf_live_view.php:744 -#: ../../operation/network/network_report.php:361 -#: ../../operation/network/network_usage_map.php:213 -#: ../../operation/reporting/graph_viewer.php:317 -#: ../../operation/reporting/reporting_viewer.php:280 -#: ../../operation/reporting/reporting_viewer.php:300 -#: ../../operation/snmpconsole/snmp_view.php:1232 -#: ../../operation/snmpconsole/snmp_view.php:1244 ../../operation/tree.php:480 -#: ../../enterprise/dashboard/widgets/tree_view.php:368 -#: ../../enterprise/godmode/alerts/alert_events.php:700 -#: ../../enterprise/godmode/reporting/cluster_view.php:679 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:954 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3596 -#: ../../enterprise/godmode/wizards/consoletask_js.php:46 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3394 -#: ../../enterprise/meta/advanced/cron_main.php:503 -#: ../../enterprise/operation/agentes/agent_inventory.php:108 -#: ../../enterprise/operation/log/log_viewer.php:746 -#: ../../enterprise/operation/log/log_viewer.php:758 -msgid "Now" -msgstr "Ahora" - -#: ../../extensions/insert_data.php:227 -#: ../../godmode/agentes/planned_downtime.editor.php:1469 -#: ../../godmode/alerts/configure_alert_template.php:1278 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3697 -#: ../../godmode/setup/news.php:317 -#: ../../godmode/wizards/HostDevices.class.php:692 -#: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/functions_snmp_browser.php:545 -#: ../../mobile/include/ui.class.php:670 ../../mobile/include/ui.class.php:728 -#: ../../operation/agentes/datos_agente.php:319 -#: ../../operation/agentes/estado_monitores.php:452 -#: ../../operation/agentes/interface_traffic_graph_win.php:318 -#: ../../operation/agentes/stat_win.php:453 -#: ../../operation/events/events.php:2469 -#: ../../operation/events/events_list.php:2013 -#: ../../operation/netflow/nf_live_view.php:745 -#: ../../operation/network/network_report.php:362 -#: ../../operation/network/network_usage_map.php:214 -#: ../../operation/reporting/graph_viewer.php:318 -#: ../../operation/reporting/reporting_viewer.php:281 -#: ../../operation/reporting/reporting_viewer.php:301 -#: ../../operation/snmpconsole/snmp_view.php:1233 -#: ../../operation/snmpconsole/snmp_view.php:1245 ../../operation/tree.php:481 -#: ../../enterprise/dashboard/widgets/tree_view.php:369 -#: ../../enterprise/extensions/visual_console_manager.php:412 -#: ../../enterprise/godmode/alerts/alert_events.php:701 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1664 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1678 -#: ../../enterprise/godmode/reporting/cluster_view.php:680 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:955 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3597 -#: ../../enterprise/godmode/setup/setup.php:760 -#: ../../enterprise/godmode/wizards/consoletask_js.php:47 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3395 -#: ../../enterprise/meta/advanced/cron_main.php:504 -#: ../../enterprise/operation/log/log_viewer.php:747 -#: ../../enterprise/operation/log/log_viewer.php:759 -msgid "Close" -msgstr "Cerrar" - -#: ../../extensions/insert_data.php:270 -msgid "Insert Data" -msgstr "Insertar datos" - -#: ../../extensions/module_groups.php:48 -msgid "Counters Module" -msgstr "Módulo de contadores" - -#: ../../extensions/module_groups.php:49 -msgid "Alerts_Fired" -msgstr "Alertas_disparadas" - -#: ../../extensions/module_groups.php:50 -#: ../../godmode/groups/group_list.php:757 -#: ../../godmode/massive/massive_copy_modules.php:101 -#: ../../godmode/massive/massive_copy_modules.php:261 -#: ../../godmode/massive/massive_delete_agents.php:138 -#: ../../godmode/massive/massive_delete_modules.php:396 -#: ../../godmode/massive/massive_delete_modules.php:417 -#: ../../godmode/massive/massive_edit_agents.php:425 -#: ../../godmode/massive/massive_edit_modules.php:360 -#: ../../godmode/massive/massive_edit_modules.php:445 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:383 -#: ../../include/functions.php:1037 ../../include/functions.php:1272 -#: ../../include/functions.php:1273 ../../include/functions.php:1275 -#: ../../include/functions.php:1316 ../../include/functions_events.php:3099 -#: ../../include/functions_events.php.orig:3005 -#: ../../include/functions_ui.php:2563 ../../include/functions_graph.php:3492 -#: ../../include/functions_graph.php:3493 -#: ../../include/functions_graph.php:4887 -#: ../../include/functions_reporting_html.php:775 -#: ../../include/functions_reporting_html.php:1898 -#: ../../include/functions_reporting_html.php:3531 -#: ../../mobile/operation/agents.php:39 ../../mobile/operation/modules.php:51 -#: ../../operation/agentes/estado_agente.php:232 -#: ../../operation/agentes/estado_monitores.php:512 -#: ../../operation/agentes/group_view.php:199 -#: ../../operation/agentes/group_view.php:204 -#: ../../operation/agentes/status_monitor.php:382 -#: ../../operation/agentes/tactical.php:147 -#: ../../operation/gis_maps/render_view.php:151 ../../operation/tree.php:161 -#: ../../operation/tree.php:205 ../../operation/tree.php:367 -#: ../../enterprise/dashboard/widgets/tree_view.php:71 -#: ../../enterprise/dashboard/widgets/tree_view.php:89 -#: ../../enterprise/dashboard/widgets/tree_view.php:252 -#: ../../enterprise/dashboard/widgets/service_map.php:100 -#: ../../enterprise/dashboard/widgets/system_group_status.php:50 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:104 -#: ../../enterprise/godmode/reporting/cluster_list.php:133 -#: ../../enterprise/godmode/reporting/cluster_list.php:243 -#: ../../enterprise/godmode/reporting/cluster_view.php:338 -#: ../../enterprise/godmode/reporting/cluster_view.php:419 -#: ../../enterprise/godmode/services/services.elements.php:751 -#: ../../enterprise/godmode/services/services.service.php:411 -#: ../../enterprise/include/functions_services.php:2312 -#: ../../enterprise/include/functions_services.php:2476 -#: ../../enterprise/include/functions_reporting.php:2902 -#: ../../enterprise/include/functions_reporting.php:3900 -#: ../../enterprise/include/functions_reporting.php:4817 -#: ../../enterprise/include/functions_reporting.php:5766 -#: ../../enterprise/meta/include/functions_wizard_meta.php:983 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1070 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1715 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1733 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:118 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:221 -#: ../../enterprise/meta/monitoring/group_view.php:193 -#: ../../enterprise/meta/monitoring/group_view.php:199 -#: ../../enterprise/meta/monitoring/tactical.php:239 -#: ../../enterprise/operation/agentes/tag_view.php:107 -#: ../../enterprise/operation/services/services.list.php:191 -#: ../../enterprise/operation/services/services.list.php:410 -#: ../../enterprise/operation/services/services.list.php:472 -#: ../../enterprise/operation/services/services.service.php:169 -#: ../../enterprise/operation/services/services.service.php:219 -#: ../../enterprise/operation/services/services.service_map.php:170 -#: ../../enterprise/operation/services/services.table_services.php:170 -#: ../../enterprise/operation/services/services.treeview_services.php:191 -msgid "Critical" -msgstr "Crítico" - -#: ../../extensions/module_groups.php:51 -msgid "warning" -msgstr "Advertencia" - -#: ../../extensions/module_groups.php:52 -#: ../../godmode/alerts/alert_list.builder.php:282 -#: ../../godmode/groups/group_list.php:767 -#: ../../godmode/massive/massive_copy_modules.php:102 -#: ../../godmode/massive/massive_copy_modules.php:262 -#: ../../godmode/massive/massive_delete_agents.php:139 -#: ../../godmode/massive/massive_delete_modules.php:397 -#: ../../godmode/massive/massive_delete_modules.php:418 -#: ../../godmode/massive/massive_edit_agents.php:426 -#: ../../godmode/massive/massive_edit_modules.php:361 -#: ../../godmode/massive/massive_edit_modules.php:446 -#: ../../include/ajax/module.php:929 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:398 -#: ../../include/functions.php:1223 ../../include/functions.php:3795 -#: ../../include/functions_alerts.php:685 -#: ../../include/functions_reports.php:550 -#: ../../include/functions_events.php:3003 -#: ../../include/functions_events.php:5166 -#: ../../include/functions_events.php.orig:2909 -#: ../../include/functions_events.php.orig:5070 -#: ../../include/functions_filemanager.php:681 -#: ../../include/functions_ui.php:538 ../../include/functions_ui.php:539 -#: ../../include/functions_visual_map.php:2544 -#: ../../include/functions_visual_map.php:2572 -#: ../../include/functions_visual_map.php:2590 -#: ../../include/functions_visual_map.php:2608 -#: ../../include/functions_maps.php:54 ../../include/functions_netflow.php:1615 -#: ../../include/graphs/functions_flot.php:280 -#: ../../include/functions_reporting_html.php:1887 -#: ../../include/functions_reporting_html.php:1900 -#: ../../include/functions_reporting_html.php:2518 -#: ../../include/functions_reporting_html.php:2871 -#: ../../include/functions_reporting.php:4565 -#: ../../mobile/operation/agents.php:42 ../../mobile/operation/modules.php:52 -#: ../../operation/agentes/estado_agente.php:233 -#: ../../operation/agentes/estado_monitores.php:517 -#: ../../operation/agentes/group_view.php:195 -#: ../../operation/agentes/group_view.php:200 -#: ../../operation/agentes/pandora_networkmap.view.php:289 -#: ../../operation/agentes/status_monitor.php:383 -#: ../../operation/agentes/tactical.php:150 -#: ../../operation/events/events.php:1918 ../../operation/tree.php:162 -#: ../../operation/tree.php:206 ../../operation/tree.php:377 -#: ../../enterprise/dashboard/widgets/events_list.php:238 -#: ../../enterprise/dashboard/widgets/tree_view.php:72 -#: ../../enterprise/dashboard/widgets/tree_view.php:90 -#: ../../enterprise/dashboard/widgets/tree_view.php:262 -#: ../../enterprise/dashboard/widgets/service_map.php:103 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:105 -#: ../../enterprise/godmode/reporting/cluster_builder.php:591 -#: ../../enterprise/godmode/reporting/cluster_list.php:134 -#: ../../enterprise/godmode/reporting/cluster_list.php:261 -#: ../../enterprise/godmode/reporting/cluster_view.php:350 -#: ../../enterprise/godmode/reporting/cluster_view.php:441 -#: ../../enterprise/include/class/DatabaseHA.class.php:219 -#: ../../enterprise/include/functions_HA_cluster.php:70 -#: ../../enterprise/include/functions_cron.php:545 -#: ../../enterprise/include/functions_reporting.php:1712 -#: ../../enterprise/include/functions_reporting.php:2643 -#: ../../enterprise/include/functions_reporting.php:3636 -#: ../../enterprise/include/functions_reporting.php:4822 -#: ../../enterprise/include/functions_reporting.php:5726 -#: ../../enterprise/include/functions_reporting_pdf.php:578 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 -#: ../../enterprise/meta/monitoring/group_view.php:189 -#: ../../enterprise/meta/monitoring/group_view.php:195 -#: ../../enterprise/meta/monitoring/tactical.php:242 -#: ../../enterprise/operation/agentes/tag_view.php:108 -#: ../../enterprise/operation/agentes/transactional_map.php:330 -#: ../../enterprise/operation/agentes/transactional_map.php:348 -#: ../../enterprise/operation/services/services.list.php:192 -#: ../../enterprise/operation/services/services.list.php:485 -#: ../../enterprise/operation/services/services.service.php:231 -#: ../../enterprise/operation/services/services.service_map.php:173 -#: ../../enterprise/operation/services/services.table_services.php:171 -#: ../../enterprise/operation/services/services.treeview_services.php:201 -msgid "Unknown" -msgstr "Desconocido" - -#: ../../extensions/module_groups.php:53 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2112 -#: ../../godmode/setup/setup_general.php:532 -#: ../../godmode/setup/setup_general.php:550 -#: ../../include/class/CredentialStore.class.php:1111 -#: ../../include/class/HelpFeedBack.class.php:368 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/functions_db.php:1781 -#: ../../include/functions_reporting_html.php:599 -#: ../../include/functions_reporting_html.php:770 -#: ../../include/functions_reporting_html.php:2524 -#: ../../include/functions_reporting_html.php:3526 -#: ../../operation/agentes/pandora_networkmap.editor.php:572 -#: ../../enterprise/dashboard/widgets/maps_status.php:88 -#: ../../enterprise/extensions/backup/main.php:189 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:423 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2304 -#: ../../enterprise/godmode/services/services.service.php:651 -#: ../../enterprise/include/class/AgentRepository.class.php:881 -#: ../../enterprise/include/class/DatabaseHA.class.php:386 -#: ../../enterprise/include/class/DatabaseHA.class.php:508 -#: ../../enterprise/include/class/DatabaseHA.class.php:613 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1622 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1671 -#: ../../enterprise/include/functions_ux_console.php:446 -#: ../../enterprise/include/functions_services.php:2803 -#: ../../enterprise/include/functions_reporting.php:1705 -#: ../../enterprise/include/functions_reporting.php:2633 -#: ../../enterprise/include/functions_reporting.php:2897 -#: ../../enterprise/include/functions_reporting.php:3626 -#: ../../enterprise/include/functions_reporting.php:3895 -#: ../../enterprise/include/functions_reporting.php:4807 -#: ../../enterprise/include/functions_reporting.php:5723 -#: ../../enterprise/include/functions_reporting.php:5761 -#: ../../enterprise/include/functions_reporting_csv.php:1332 -#: ../../enterprise/include/functions_reporting_csv.php:1378 -#: ../../enterprise/include/functions_reporting_csv.php:1696 -#: ../../enterprise/operation/agentes/ux_console_view.php:207 -#: ../../enterprise/operation/agentes/ux_console_view.php:413 -#: ../../enterprise/operation/agentes/wux_console_view.php:391 -msgid "OK" -msgstr "Bien" - -#: ../../extensions/module_groups.php:54 -msgid "Not_init" -msgstr "No_iniciado" - -#: ../../extensions/module_groups.php:248 -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:262 -msgid "Search by agent group" -msgstr "Buscar por grupo de agente" - -#: ../../extensions/module_groups.php:266 -msgid "Search by module group" -msgstr "Buscar por grupo de módulos" - -#: ../../extensions/module_groups.php:270 ../../general/ui/agents_list.php:100 -#: ../../general/ui/agents_list.php:113 ../../godmode/admin_access_logs.php:69 -#: ../../godmode/agentes/modificar_agente.php:204 -#: ../../godmode/agentes/modificar_agente.php:210 -#: ../../godmode/agentes/module_manager.php:44 -#: ../../godmode/agentes/planned_downtime.list.php:144 -#: ../../godmode/agentes/planned_downtime.list.php:183 -#: ../../godmode/alerts/alert_templates.php:297 -#: ../../godmode/alerts/alert_templates.php:308 -#: ../../godmode/groups/group_list.php:528 -#: ../../godmode/groups/group_list.php:531 -#: ../../godmode/modules/manage_network_components.php:602 -#: ../../godmode/reporting/graphs.php:178 -#: ../../godmode/reporting/map_builder.php:302 -#: ../../godmode/reporting/map_builder.php:323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:956 -#: ../../godmode/reporting/reporting_builder.php:681 -#: ../../godmode/reporting/visual_console_favorite.php:108 -#: ../../godmode/reporting/visual_console_favorite.php:138 -#: ../../godmode/users/user_list.php:272 ../../godmode/users/user_list.php:282 -#: ../../include/functions_snmp.php:358 -#: ../../include/functions_snmp_browser.php:730 -#: ../../operation/agentes/estado_agente.php:224 -#: ../../operation/agentes/estado_agente.php:248 -#: ../../operation/agentes/status_monitor.php:444 -#: ../../operation/incidents/incident.php:368 -#: ../../operation/search_results.php:191 -#: ../../enterprise/extensions/translate_string.php:323 -#: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:307 -#: ../../enterprise/godmode/alerts/alert_events_list.php:423 -#: ../../enterprise/godmode/alerts/alert_events_list.php:434 -#: ../../enterprise/godmode/modules/local_components.php:511 -#: ../../enterprise/godmode/modules/local_components.php:536 -#: ../../enterprise/godmode/policies/policy_agents.php:695 -#: ../../enterprise/godmode/policies/policy_agents.php:700 -#: ../../enterprise/godmode/policies/policy_collections.php:234 -#: ../../enterprise/godmode/reporting/cluster_list.php:125 -#: ../../enterprise/godmode/reporting/cluster_list.php:145 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:183 -#: ../../enterprise/meta/agentsearch.php:89 -#: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:626 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:244 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:341 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:508 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:579 -#: ../../enterprise/operation/agentes/agent_inventory.php:109 -#: ../../enterprise/operation/agentes/agent_inventory.php:114 -#: ../../enterprise/operation/agentes/tag_view.php:193 -#: ../../enterprise/operation/inventory/inventory.php:196 -#: ../../enterprise/operation/inventory/inventory.php:237 -#: ../../enterprise/operation/log/log_viewer.php:355 -#: ../../enterprise/operation/log/log_viewer.php:642 -#: ../../enterprise/operation/services/services.list.php:177 -#: ../../enterprise/operation/services/services.list.php:242 -#: ../../enterprise/operation/services/services.table_services.php:156 -#: ../../enterprise/operation/services/services.table_services.php:221 -msgid "Search" -msgstr "Buscar" - -#: ../../extensions/module_groups.php:376 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." -msgstr "" -"Celda naranja cuando el grupo de módulos y el agente del módulo tengan al " -"menos una alerta disparada." - -#: ../../extensions/module_groups.php:377 -msgid "" -"Red cell when the module group and agent have at least one module in " -"critical status and the others in any status" -msgstr "" -"Celda roja cuando el grupo de módulos y el agente tengan al menos un módulo " -"en estado crítico y los demás en cualquier otro estado." - -#: ../../extensions/module_groups.php:378 -msgid "" -"Yellow cell when the module group and agent have at least one in warning " -"status and the others in grey or green status" -msgstr "" -"Celda amarilla cuando el grupo de módulos y el agente tengan al menos un " -"módulo en estado crítico y los demás en cualquier otro estado" - -#: ../../extensions/module_groups.php:379 -msgid "" -"Grey cell when the module group and agent have at least one in unknown " -"status and the others in green status" -msgstr "" -"Celda gris cuando el grupo de módulos y el agente tengan al menos un módulo " -"en estado desconocido y todos los demás están en OK" - -#: ../../extensions/module_groups.php:380 -msgid "" -"Green cell when the module group and agent have all modules in OK status" -msgstr "" -"Celda verde cuando el grupo de módulos y el agente tengan todos los módulos " -"en estado OK" - -#: ../../extensions/module_groups.php:381 -msgid "" -"Blue cell when the module group and agent have all modules in not init " -"status." -msgstr "" -"Celda azul cuando el grupo de módulos y el agente tengan todos los módulos " -"en estado no iniciado." - -#: ../../extensions/module_groups.php:385 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" -msgstr "" -"La tabla muestra los grupos de módulos en columnas y los grupos de agente en " -"filas. La celda muestra todos los módulos." - -#: ../../extensions/module_groups.php:386 -msgid "There are no defined groups or module groups" -msgstr "No hay grupos o grupos de módulos definidos" - -#: ../../extensions/module_groups.php:406 ../../godmode/menu.php:90 -#: ../../operation/tree.php:74 -#: ../../enterprise/dashboard/widgets/tree_view.php:41 -msgid "Module groups" -msgstr "Grupos de módulos" - -#: ../../extensions/net_tools.php:140 -#: ../../godmode/agentes/configurar_agente.php:784 -#: ../../godmode/agentes/configurar_agente.php:933 -msgid "The ip or dns name entered cannot be resolved" -msgstr "La IP o nombre del DNS no se puede resolver" - -#: ../../extensions/net_tools.php:146 -msgid "Traceroute executable does not exist." -msgstr "El ejecutable Traceroute no existe." - -#: ../../extensions/net_tools.php:148 -msgid "Traceroute to " -msgstr "Trazando ruta a " - -#: ../../extensions/net_tools.php:158 -msgid "Ping executable does not exist." -msgstr "El ejecutable Ping no existe." - -#: ../../extensions/net_tools.php:160 -#, php-format -msgid "Ping to %s" -msgstr "Ping a %s" - -#: ../../extensions/net_tools.php:170 -msgid "Nmap executable does not exist." -msgstr "El ejecutable Nmap no existe." - -#: ../../extensions/net_tools.php:172 -msgid "Basic TCP Scan on " -msgstr "Escaneo básico TCP en " - -#: ../../extensions/net_tools.php:180 -msgid "Domain and IP information for " -msgstr "Información de dominio e IP para " - -#: ../../extensions/net_tools.php:184 -msgid "Dig executable does not exist." -msgstr "El ejecutable Dig no existe." - -#: ../../extensions/net_tools.php:193 -msgid "Whois executable does not exist." -msgstr "El ejecutable Whois no existe." - -#: ../../extensions/net_tools.php:211 -msgid "SNMP information for " -msgstr "Información SNMP para " - -#: ../../extensions/net_tools.php:212 -msgid "Uptime" -msgstr "Tiempo en activo" - -#: ../../extensions/net_tools.php:215 ../../extensions/net_tools.php:227 -msgid "Target unreachable." -msgstr "Objetivo inaccesible." - -#: ../../extensions/net_tools.php:222 -msgid "Device info" -msgstr "Información del dispositivo" - -#: ../../extensions/net_tools.php:240 -msgid "Interface" -msgstr "Interfaz" - -#: ../../extensions/net_tools.php:320 -msgid "The agent hasn't got IP" -msgstr "El agente no tiene IP" - -#: ../../extensions/net_tools.php:347 -msgid "" -"You can set the command path in the menu Administration -> Extensions -" -"> Config Network Tools" -msgstr "" -"Puedes establecer la ruta de comando en el menú Administración -> " -"Extensiones -> Configuración de herramientas de red" - -#: ../../extensions/net_tools.php:353 -msgid "Traceroute" -msgstr "Traceroute" - -#: ../../extensions/net_tools.php:354 -msgid "Ping host & Latency" -msgstr "Ping host y Latencia" - -#: ../../extensions/net_tools.php:355 -msgid "SNMP Interface status" -msgstr "Estado de la interfaz SNMP" - -#: ../../extensions/net_tools.php:356 -msgid "Basic TCP Port Scan" -msgstr "Escaneo básico de puertos TCP" - -#: ../../extensions/net_tools.php:357 -msgid "DiG/Whois Lookup" -msgstr "Búsqueda DiG/Whois" - -#: ../../extensions/net_tools.php:362 -msgid "Please select" -msgstr "Seleccione" - -#: ../../extensions/net_tools.php:367 -#: ../../operation/agentes/estado_generalagente.php:202 -msgid "IP address" -msgstr "Dirección IP" - -#: ../../extensions/net_tools.php:385 -msgid "SNMP Version" -msgstr "Versión SNMP" - -#: ../../extensions/net_tools.php:395 -#: ../../enterprise/meta/include/functions_wizard_meta.php:961 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1482 -msgid "SNMP Community" -msgstr "Comunidad SNMP" - -#: ../../extensions/net_tools.php:398 ../../include/ajax/events.php:1712 -#: ../../include/functions_events.php:3567 -#: ../../include/functions_events.php.orig:3473 -msgid "Execute" -msgstr "Ejecutar" - -#: ../../extensions/net_tools.php:432 ../../extensions/net_tools.php:508 -msgid "Config Network Tools" -msgstr "Configuración de herramientas de red" - -#: ../../extensions/net_tools.php:454 ../../extensions/net_tools.php:455 -msgid "Set the paths." -msgstr "Introducir rutas" - -#: ../../extensions/net_tools.php:474 -msgid "Traceroute path" -msgstr "Ruta Traceroute" - -#: ../../extensions/net_tools.php:475 -#, php-format -msgid "If empty, %s will search the traceroute system." -msgstr "Si está vacío, %s buscará el sistema traceroute." - -#: ../../extensions/net_tools.php:478 -msgid "Ping path" -msgstr "Ruta al comando ping" - -#: ../../extensions/net_tools.php:479 -#, php-format -msgid "If empty, %s will search the ping system." -msgstr "Si está vacío, %s buscará el sistema ping." - -#: ../../extensions/net_tools.php:482 -msgid "Nmap path" -msgstr "Ruta Nmap" - -#: ../../extensions/net_tools.php:483 -#, php-format -msgid "If empty, %s will search the nmap system." -msgstr "Si está vacío, %s buscará el sistema nmap." - -#: ../../extensions/net_tools.php:486 -msgid "Dig path" -msgstr "Ruta Dig" - -#: ../../extensions/net_tools.php:487 -#, php-format -msgid "If empty, %s will search the dig system" -msgstr "Si está vacío, %s buscará el sistema dig." - -#: ../../extensions/net_tools.php:490 -msgid "Snmpget path" -msgstr "Ruta Snmpget" - -#: ../../extensions/net_tools.php:491 -#, php-format -msgid "If empty, %s will search the snmpget system." -msgstr "Si está vacío, %s buscará el sistema snmpget." - -#: ../../extensions/net_tools.php:496 -#: ../../godmode/reporting/reporting_builder.list_items.php:391 -#: ../../godmode/update_manager/update_manager.php:35 -#: ../../include/class/CredentialStore.class.php:734 -#: ../../include/functions_events.php:295 -#: ../../include/functions_events.php.orig:293 -#: ../../enterprise/dashboard/main_dashboard.php:161 -#: ../../enterprise/dashboard/main_dashboard.php:247 -#: ../../enterprise/extensions/vmware/vmware_view.php:1292 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316 -#: ../../enterprise/include/class/AgentRepository.class.php:618 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2628 -#: ../../enterprise/include/class/DeploymentCenter.class.php:723 -#: ../../enterprise/include/class/Omnishell.class.php:402 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 -msgid "Options" -msgstr "Opciones" - -#: ../../extensions/pandora_logs.php:29 -msgid "Cannot find file" -msgstr "Archivo no encontrado" - -#: ../../extensions/pandora_logs.php:34 -msgid "File is too large than PHP memory allocated in the system." -msgstr "" -"El archivo supera la capacidad de la memoria PHP alojada en el sistema" - -#: ../../extensions/pandora_logs.php:35 -msgid "The preview file is imposible." -msgstr "No es posible generar una vista previa del archivo" - -#: ../../extensions/pandora_logs.php:64 -msgid "System logfile viewer" -msgstr "Visor de archivos de log del sistema" - -#: ../../extensions/pandora_logs.php:66 -#, php-format -msgid "Use this tool to view your %s logfiles directly on the console" -msgstr "" -"Utilice esta herramienta para ver los %s ficheros log directamente desde la " -"consola" - -#: ../../extensions/pandora_logs.php:68 -msgid "" -"You can choose the amount of information shown in general setup (Log size " -"limit in system logs viewer extension), " -msgstr "" -"Puedes elegir la cantidad de información que se muestra en la configuración " -"general (límite de tamaño de logs en la extensión del visor de logs del " -"sistema) " - -#: ../../extensions/pandora_logs.php:78 -msgid "System logfiles" -msgstr "Logs del sistema" - -#: ../../extensions/plugin_registration.php:27 -#: ../../extensions/plugin_registration.php:34 -#: ../../godmode/servers/plugin.php:283 -msgid "Plugin registration" -msgstr "Registro de plugins" - -#: ../../extensions/plugin_registration.php:31 -msgid "Plugin Registration" -msgstr "Registro de puglins" - -#: ../../extensions/plugin_registration.php:36 -msgid "" -"This extension makes registering server plugins an easier task.\n" -"\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" -"\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " -"use Server Plugins.\n" -"\t\t\t\t\t\t

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

Tiene más plugins a su disposición en la Public Resource Library " - -#: ../../extensions/plugin_registration.php:86 -msgid "Cannot load INI file" -msgstr "No se puede abrir el archivo .INI" - -#: ../../extensions/plugin_registration.php:107 -msgid "Plugin exec not found. Aborting!" -msgstr "Plugin de ejecución no encontrado. ¡Deteniendo el proceso!" - -#: ../../extensions/plugin_registration.php:117 -msgid "Plugin already registered. Aborting!" -msgstr "El plugin ya está registrado. ¡Deteniendo el proceso!" - -#: ../../extensions/plugin_registration.php:281 -msgid "Plug-in Remote Registered unsuccessfull" -msgstr "Error al registrar el plugin remoto" - -#: ../../extensions/plugin_registration.php:284 -msgid "Please check the syntax of file \"plugin_definition.ini\"" -msgstr "" -"Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"." - -#: ../../extensions/plugin_registration.php:403 -msgid "Module plugin registered" -msgstr "Plugin de módulo registrado" - -#: ../../extensions/plugin_registration.php:406 -#: ../../godmode/agentes/module_manager_editor_plugin.php:49 -#: ../../godmode/massive/massive_edit_modules.php:1091 -#: ../../godmode/massive/massive_edit_plugins.php:324 -#: ../../godmode/modules/manage_network_components_form_plugin.php:35 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:928 -msgid "Plugin" -msgstr "Plugin" - -#: ../../extensions/plugin_registration.php:406 -msgid "Registered successfully" -msgstr "Registrado correctamente" - -#: ../../extensions/plugin_registration.php:417 -msgid "Register plugin" -msgstr "Registro plugin" - -#: ../../extensions/quick_shell.php:104 ../../extensions/quick_shell.php:206 -msgid "WebService engine has not been started, please check documentation." -msgstr "" -"El motor WebService aún no se ha iniciado, consulte la documentación." - -#: ../../extensions/quick_shell.php:116 -msgid "Retry" -msgstr "Reintentar" - -#: ../../extensions/quick_shell.php:138 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:460 -#: ../../godmode/agentes/module_manager_editor_wmi.php:63 -#: ../../godmode/massive/massive_edit_modules.php:834 -#: ../../godmode/modules/manage_network_components_form_wmi.php:47 -#: ../../include/class/CredentialStore.class.php:878 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:692 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:495 -#: ../../enterprise/include/functions_ui.php:102 -msgid "Username" -msgstr "Usuario" - -#: ../../extensions/quick_shell.php:145 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:730 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:467 -#: ../../godmode/agentes/module_manager_editor_network.php:126 -#: ../../godmode/massive/massive_edit_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/servers/modificar_server.php:82 -#: ../../include/functions_config.php:1399 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:906 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:725 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:436 -#: ../../enterprise/godmode/servers/manage_export_form.php:115 -#: ../../enterprise/godmode/setup/setup_history.php:51 -msgid "Port" -msgstr "Puerto" - -#: ../../extensions/quick_shell.php:154 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:358 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:227 -#: ../../enterprise/meta/include/functions_autoprovision.php:614 -msgid "Method" -msgstr "Método" - -#: ../../extensions/quick_shell.php:159 -#: ../../godmode/agentes/module_manager_editor_network.php:469 -#: ../../enterprise/godmode/servers/HA_cluster.php:128 -msgid "SSH" -msgstr "SSH" - -#: ../../extensions/quick_shell.php:160 -msgid "Telnet" -msgstr "Telnet" - -#: ../../extensions/quick_shell.php:168 -msgid "Connect" -msgstr "Conectar" - -#: ../../extensions/quick_shell.php:195 -msgid "Please use SSH or Telnet." -msgstr "Use SSH o Telnet." - -#: ../../extensions/quick_shell.php:228 -msgid "" -"WebService engine is not working properly, please check documentation." -msgstr "" -"El motor WebService no funciona correctamente, consulte la documentación." - -#: ../../extensions/quick_shell.php:381 -#, php-format -msgid "%d Updated" -msgstr "%d Actualizado" - -#: ../../extensions/quick_shell.php:384 -#, php-format -msgid "%d Updated, please restart WebSocket engine service" -msgstr "%d Actualizado, reinicie el servicio del motor WebSocket" - -#: ../../extensions/quick_shell.php:394 -msgid "Quickshell" -msgstr "Quickshell" - -#: ../../extensions/quick_shell.php:404 -msgid "Gotty path" -msgstr "Ruta Gotty" - -#: ../../extensions/quick_shell.php:414 -msgid "Gotty host" -msgstr "Host Gotty" - -#: ../../extensions/quick_shell.php:424 -msgid "Gotty ssh port" -msgstr "Puerto SSH Gotty" - -#: ../../extensions/quick_shell.php:434 -msgid "Gotty telnet port" -msgstr "Puerto telnet Gotty" - -#: ../../extensions/quick_shell.php:451 -msgid "Gotty user" -msgstr "Usuario Gotty" - -#: ../../extensions/quick_shell.php:452 -msgid "Optional, set a user to access gotty service" -msgstr "Opcional, configurar un usuario con acceso al servicio gotty" - -#: ../../extensions/quick_shell.php:464 -msgid "Gotty password" -msgstr "Contraseña Gotty" - -#: ../../extensions/quick_shell.php:465 -msgid "Optional, set a password to access gotty service" -msgstr "Opcional, establecer una contraseña para acceder al servicio Gotty" - -#: ../../extensions/quick_shell.php:482 -#: ../../godmode/agentes/agent_manager.php:816 -#: ../../godmode/agentes/agent_manager.php:958 -#: ../../godmode/agentes/module_manager_editor.php:700 -#: ../../godmode/massive/massive_add_action_alerts.php:212 -#: ../../godmode/massive/massive_edit_agents.php:728 -#: ../../include/functions_visual_map_editor.php:805 -#: ../../operation/events/events.php:1246 -#: ../../operation/events/events_list.php:1016 -#: ../../enterprise/godmode/alerts/alert_events_list.php:688 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 -#: ../../enterprise/godmode/policies/policy_modules.php:403 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:112 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:169 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:559 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 -#: ../../enterprise/operation/log/log_viewer.php:625 -msgid "Advanced options" -msgstr "Opciones avanzadas" - -#: ../../extensions/quick_shell.php:506 -msgid "QuickShell" -msgstr "QuickShell" - -#: ../../extensions/realtime_graphs.php:33 -#: ../../extensions/realtime_graphs.php:211 -msgid "Realtime graphs" -msgstr "Gráficas en tiempo real" - -#: ../../extensions/realtime_graphs.php:98 -#, php-format -msgid "%s Server CPU" -msgstr "%s CPU del servidor" - -#: ../../extensions/realtime_graphs.php:99 -#, php-format -msgid "Pending packages from %s Server" -msgstr "Paquetes del %s servidor pendientes" - -#: ../../extensions/realtime_graphs.php:100 -#, php-format -msgid "%s Server Disk IO Wait" -msgstr "%s Server Disk IO Wait" - -#: ../../extensions/realtime_graphs.php:101 -#, php-format -msgid "%s Server Apache load" -msgstr "%s Carga del servidor apache" - -#: ../../extensions/realtime_graphs.php:102 -#, php-format -msgid "%s Server MySQL load" -msgstr "%s Carga del servidor MySQL" - -#: ../../extensions/realtime_graphs.php:103 -#, php-format -msgid "%s Server load" -msgstr "%s Carga del servidor" - -#: ../../extensions/realtime_graphs.php:104 -msgid "SNMP Interface throughput" -msgstr "Rendimiento de interfaz SNMP" - -#: ../../extensions/realtime_graphs.php:110 -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 -#: ../../include/ajax/module.php:841 -#: ../../include/class/NetworkMap.class.php:2934 -#: ../../include/functions_events.php:4161 -#: ../../include/functions_events.php.orig:4067 -#: ../../include/functions_visual_map_editor.php:58 -#: ../../operation/agentes/status_monitor.php:1145 -#: ../../operation/search_modules.php:36 -#: ../../enterprise/dashboard/widgets/custom_graph.php:35 -#: ../../enterprise/include/ajax/clustermap.php:73 -#: ../../enterprise/include/ajax/clustermap.php:292 -#: ../../enterprise/operation/agentes/tag_view.php:654 -#: ../../enterprise/operation/services/services.list.php:415 -#: ../../enterprise/operation/services/services.service.php:177 -msgid "Graph" -msgstr "Gráfico" - -#: ../../extensions/realtime_graphs.php:142 -msgid "Refresh interval" -msgstr "Intervalo de actualización" - -#: ../../extensions/realtime_graphs.php:144 -msgid "Incremental" -msgstr "Incremental" - -#: ../../extensions/realtime_graphs.php:147 -msgid "Clear graph" -msgstr "Limpiar gráfica" - -#: ../../extensions/realtime_graphs.php:158 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:727 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:464 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:440 -#: ../../godmode/agentes/module_manager_editor_network.php:80 -#: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/massive/massive_edit_modules.php:749 -#: ../../include/functions_snmp_browser.php:615 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:600 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:722 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:433 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:475 -msgid "Target IP" -msgstr "IP objetivo" - -#: ../../extensions/realtime_graphs.php:161 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:82 -#: ../../include/functions_snmp_browser.php:624 -msgid "Community" -msgstr "Comunidad" - -#: ../../extensions/realtime_graphs.php:172 -#: ../../godmode/setup/snmp_wizard.php:42 -#: ../../include/functions_snmp_browser.php:501 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:284 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:338 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 -msgid "OID" -msgstr "OID" - -#: ../../extensions/realtime_graphs.php:175 ../../godmode/extensions.php:137 -#: ../../godmode/servers/servers.build_table.php:68 -#: ../../include/functions_snmp_browser.php:643 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:40 -#: ../../enterprise/godmode/servers/list_satellite.php:38 -#: ../../enterprise/include/class/AgentRepository.class.php:360 -#: ../../enterprise/include/class/AgentRepository.class.php:615 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:623 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -msgid "Version" -msgstr "Versión" - -#: ../../extensions/realtime_graphs.php:176 -#: ../../godmode/agentes/module_manager_editor_network.php:266 -msgid "SNMP walk" -msgstr "SNMP walk" - -#: ../../extensions/realtime_graphs.php:199 -#: ../../godmode/agentes/module_manager_editor_network.php:43 -msgid "Use this OID" -msgstr "Usar esta OID" - -#: ../../extensions/resource_exportation.php:47 -#: ../../extensions/resource_exportation.php:410 -msgid "Resource exportation" -msgstr "Exportación de recursos" - -#: ../../extensions/resource_exportation.php:413 -msgid "This extension makes exportation of resource template more easy." -msgstr "Esta extensión facilita la exportación de la plantilla de recursos." - -#: ../../extensions/resource_exportation.php:413 -msgid "You can export resource templates in .ptr format." -msgstr "Puede exportar plantillas de recursos en formato .prt." - -#: ../../extensions/resource_exportation.php:423 -#: ../../include/functions_cron.php:505 ../../include/functions_cron.php:620 -#: ../../include/functions_cron.php:650 -#: ../../enterprise/dashboard/widgets/reports.php:46 -#: ../../enterprise/include/functions_cron.php:1156 -#: ../../enterprise/include/functions_tasklist.php:221 -#: ../../enterprise/include/functions_tasklist.php:343 -#: ../../enterprise/include/functions_tasklist.php:374 -msgid "Report" -msgstr "Informe" - -#: ../../extensions/resource_exportation.php:425 -#: ../../extensions/resource_exportation.php:428 -#: ../../operation/agentes/exportdata.php:372 -#: ../../enterprise/extensions/resource_exportation/functions.php:21 -msgid "Export" -msgstr "Exportar" - -#: ../../extensions/resource_exportation.php:426 -#: ../../godmode/reporting/map_builder.php:93 -#: ../../godmode/reporting/visual_console_favorite.php:87 -#: ../../godmode/users/configure_user.php:840 ../../operation/menu.php:185 -#: ../../operation/menu.php:189 ../../operation/users/user_edit.php:339 -#: ../../enterprise/extensions/visual_console_manager.php:176 -#: ../../enterprise/godmode/reporting/visual_console_template.php:96 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:95 -#: ../../enterprise/meta/screens/screens.visualmap.php:188 -#: ../../enterprise/meta/screens/screens.visualmap.php:193 -msgid "Visual console" -msgstr "Consola visual" - #: ../../extensions/resource_registration.php:40 #, php-format msgid "Success add '%s' item in report '%s'." @@ -4885,14 +27847,6 @@ msgstr "Error al crear el informe '%s'" msgid "Success add '%s' content." msgstr "Contenido '%s' añadido correctamente" -#: ../../extensions/resource_registration.php:385 -#: ../../extensions/resource_registration.php:407 -#: ../../extensions/resource_registration.php:418 -#: ../../enterprise/extensions/resource_registration/functions.php:739 -#, php-format -msgid "Error add '%s' action." -msgstr "Error al añadir la acción '%s'" - #: ../../extensions/resource_registration.php:394 #, php-format msgid "Success add '%s' SLA." @@ -4971,11 +27925,6 @@ msgstr "Error al crear el componente '%s'" msgid "Resource registration" msgstr "Registro de recursos" -#: ../../extensions/resource_registration.php:1027 -#: ../../enterprise/include/functions_policies.php:4369 -msgid "Error, please install the PHP libXML in the system." -msgstr "Error: por favor, instale la librería PHP LibXML en el sistema." - #: ../../extensions/resource_registration.php:1034 msgid "" "This node is configured with centralized mode. Go to metaconsole to create a " @@ -5010,10 +27959,834 @@ msgstr "" "href='http://pandorafms.com/Library/Library/'>Librería de recursos " "pública" -#: ../../extensions/resource_registration.php:1048 -#: ../../enterprise/include/functions_policies.php:4388 -msgid "Group filter: " -msgstr "Filtro de grupo: " +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:252 +msgid "API checker" +msgstr "Comprobación API" + +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" +msgstr "%s URL de la consola" + +#: ../../extensions/api_checker.php:133 +msgid "API Pass" +msgstr "Contraseña de la API" + +#: ../../extensions/api_checker.php:151 +msgid "Action (get or set)" +msgstr "Acción (obtener o establecer)" + +#: ../../extensions/api_checker.php:166 +msgid "ID 2" +msgstr "ID 2" + +#: ../../extensions/api_checker.php:171 +msgid "Return Type" +msgstr "Tipo de retorno" + +#: ../../extensions/api_checker.php:181 +msgid "Other Mode" +msgstr "Otro modo" + +#: ../../extensions/api_checker.php:189 +msgid "Raw URL" +msgstr "URL en crudo" + +#: ../../extensions/api_checker.php:200 +msgid "Call parameters" +msgstr "Parámetros de llamada" + +#: ../../extensions/api_checker.php:200 +msgid "Action: get Operation: module_last_value id: 63" +msgstr "Acción: obtener Operación : module_last_value id: 63" + +#: ../../extensions/api_checker.php:205 ../../extensions/api_checker.php:217 +msgid "Call" +msgstr "Llamada" + +#: ../../extensions/api_checker.php:211 +msgid "Custom URL" +msgstr "URL personalizada:" + +#: ../../extensions/api_checker.php:223 ../../extensions/api_checker.php:230 +#: ../../include/functions_reporting_html.php:3538 +#: ../../include/functions_db.php:1766 +msgid "Result" +msgstr "Resultado" + +#: ../../extensions/api_checker.php:226 ../../extensions/api_checker.php:243 +msgid "Show URL" +msgstr "Mostrar URL" + +#: ../../extensions/api_checker.php:239 +msgid "Hide URL" +msgstr "Ocultar URL" + +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:411 +msgid "DB Schema check" +msgstr "Comprobación del esquema de la BD" + +#: ../../extensions/db_status.php:43 +msgid "" +"This extension checks the DB is correct. Because sometimes the old DB from a " +"migration has not some fields in the tables or the data is changed." +msgstr "" +"Esta extensión comprueba que la DB es correcta, ya que, en ocasiones, la " +"antigua DB de una migración no tiene algunos campos en las tablas o los " +"datos son diferentes." + +#: ../../extensions/db_status.php:46 +msgid "At the moment the checks is for MySQL/MariaDB." +msgstr "Por el momento, las comprobaciones son para MySQL/MariaDB" + +#: ../../extensions/db_status.php:52 +msgid "DB settings" +msgstr "Configuración de la BD" + +#: ../../extensions/db_status.php:56 +msgid "DB User with privileges" +msgstr "Usuario de la BD con privilegios" + +#: ../../extensions/db_status.php:58 +msgid "DB Password for this user" +msgstr "Contraseña de la BD para este usuario" + +#: ../../extensions/db_status.php:62 +msgid "DB Hostname" +msgstr "Nombre del host de la base de datos" + +#: ../../extensions/db_status.php:64 +msgid "DB Name (temporal for testing)" +msgstr "Nombre de la BD (temporal, para pruebas)" + +#: ../../extensions/db_status.php:72 +msgid "Execute Test" +msgstr "Ejecutar la prueba" + +#: ../../extensions/db_status.php:108 +msgid "Unsuccessful connected to the DB" +msgstr "Error al conectarse a la BD" + +#: ../../extensions/db_status.php:119 +msgid "Unsuccessful created the testing DB" +msgstr "Error al crear la BD de prueba" + +#: ../../extensions/db_status.php:135 +msgid "Unsuccessful installed tables into the testing DB" +msgstr "Error al instalar las tablas en la BD de prueba" + +#: ../../extensions/db_status.php:219 +#, php-format +msgid "Success! %s DB contains all tables" +msgstr "Hecho! %s La base de datos contiene todas las tablas" + +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "" +"%s La base de datos no ha podido obtener todas las tablas. Faltan las tablas " +"(%s)" + +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 +msgid "You can execute this SQL query for to fix." +msgstr "Puede ejecutar esta consulta SQL para arreglarlo" + +#: ../../extensions/db_status.php:343 +#, php-format +msgid "Unsuccessful the table %s has not the field %s" +msgstr "Error, la tabla %s no contiene todos los campos %s" + +#: ../../extensions/db_status.php:408 +msgid "Successful all the tables have the correct fields" +msgstr "Todas las tablas tienen los campos correctos" + +#: ../../extensions/agents_alerts.php:97 +msgid "Show modules without alerts" +msgstr "Mostrar módulos sin alertas" + +#: ../../extensions/agents_alerts.php:105 ../../include/functions.php:3196 +#: ../../operation/gis_maps/render_view.php:139 +msgid "1 minute" +msgstr "1 minuto" + +#: ../../extensions/agents_alerts.php:106 ../../include/functions.php:3197 +#: ../../operation/gis_maps/render_view.php:140 +msgid "2 minutes" +msgstr "2 minutos" + +#: ../../extensions/agents_alerts.php:107 ../../include/functions.php:3198 +#: ../../include/ajax/module.php:163 +#: ../../operation/gis_maps/render_view.php:141 +msgid "5 minutes" +msgstr "5 minutos" + +#: ../../extensions/agents_alerts.php:108 +#: ../../operation/gis_maps/render_view.php:142 +msgid "10 minutes" +msgstr "10 minutos" + +#: ../../extensions/agents_alerts.php:143 +msgid "Agents/Alerts" +msgstr "Agentes/Alertas" + +#: ../../extensions/agents_alerts.php:295 +#: ../../godmode/alerts/configure_alert_template.php:564 +#: ../../godmode/alerts/alert_list.builder.php:161 +msgid "Create Template" +msgstr "Crear plantilla" + +#: ../../extensions/agents_alerts.php:307 +#: ../../godmode/alerts/alert_list.builder.php:196 +msgid "Add alert" +msgstr "Añadir alerta" + +#: ../../extensions/agents_alerts.php:312 +msgid "module" +msgstr "módulo" + +#: ../../extensions/agents_alerts.php:353 +msgid "There are no agents with alerts" +msgstr "No existen agentes con alertas" + +#: ../../extensions/agents_alerts.php:390 +#: ../../godmode/massive/massive_delete_action_alerts.php:193 +#: ../../godmode/massive/massive_add_action_alerts.php:177 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +msgid "Alert templates" +msgstr "Plantillas de alertas" + +#: ../../extensions/agents_alerts.php:395 +msgid "Previous templates" +msgstr "Plantillas anteriores" + +#: ../../extensions/agents_alerts.php:439 +msgid "More templates" +msgstr "Más plantillas" + +#: ../../extensions/agents_alerts.php:590 +msgid "Agents/Alerts view" +msgstr "Vista de Agentes/Alertas" + +#: ../../extensions/resource_exportation.php:47 +#: ../../extensions/resource_exportation.php:410 +msgid "Resource exportation" +msgstr "Exportación de recursos" + +#: ../../extensions/resource_exportation.php:413 +msgid "This extension makes exportation of resource template more easy." +msgstr "Esta extensión facilita la exportación de la plantilla de recursos." + +#: ../../extensions/resource_exportation.php:413 +msgid "You can export resource templates in .ptr format." +msgstr "Puede exportar plantillas de recursos en formato .prt." + +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "Extensión no instalada" + +#: ../../extensions/files_repo.php:127 ../../extensions/files_repo.php:237 +msgid "Files repository manager" +msgstr "Gestor del repositorio de archivos" + +#: ../../extensions/files_repo.php:145 ../../include/functions.php:2734 +#: ../../include/functions.php:2738 +msgid "The file exceeds the maximum size" +msgstr "El archivo excede el tamaño máximo" + +#: ../../extensions/files_repo.php:218 ../../extensions/files_repo.php:235 +msgid "Files repository" +msgstr "Repositorio de archivos" + +#: ../../extensions/dbmanager.php:99 +msgid "Database interface" +msgstr "Interfaz de base de datos" + +#: ../../extensions/dbmanager.php:103 +#, php-format +msgid "" +"This is an advanced extension to interface with %s database directly from " +"WEB console\n" +"\t\tusing native SQL sentences. Please note that you can damage your " +"%s installation\n" +"\t\tif you don't know exactly what are you are doing,\n" +"\t\tthis means that you can severily damage your setup using this " +"extension.\n" +"\t\tThis extension is intended to be used only by experienced users\n" +"\t\twith a depth knowledge of %s internals." +msgstr "" +"Esta es una extensión avanzada de la interfaz con la %s base de datos " +"directamente desde la consola WEB\n" +"\t\tusando comandos SQL nativos. Tenga en cuenta que puede perjudicar " +"a la %s instalación\n" +"\t\tsi no sabe exactamente lo que hace,\n" +"\t\testo significa que puede dañar seriamente la configuración al usar esta " +"extensión.\n" +"\t\tEsta extensión está destinada solamente a usuarios expertos\n" +"\t\tcon amplios conocimientos sobre el funcionamiento %s interno." + +#: ../../extensions/dbmanager.php:124 +msgid "Execute SQL" +msgstr "Ejecutar SQL" + +#: ../../extensions/dbmanager.php:173 ../../godmode/menu.php:411 +msgid "DB interface" +msgstr "Interfaz de la BD" + +#: ../../extensions/agents_modules.php:450 +#: ../../include/functions_reports.php:776 +msgid "Agents/Modules" +msgstr "Agentes/Módulos" + +#: ../../extensions/agents_modules.php:513 +msgid "Agent/module view" +msgstr "Vista de agente/módulo" + +#: ../../extensions/agents_modules.php:550 +msgid "Filters " +msgstr "Filtros " + +#: ../../extensions/agents_modules.php:550 +msgid "Secondary groups and agent subgroups will be taken into account." +msgstr "" +"Los grupos secundarios y los subgrupos de agentes se tendrán en cuenta." + +#: ../../extensions/agents_modules.php:685 +#: ../../include/functions_reporting.php:2333 +msgid "There are no agents with modules" +msgstr "No hay agentes con módulos" + +#: ../../extensions/agents_modules.php:700 +msgid "Previous modules" +msgstr "Módulos anteriores" + +#: ../../extensions/agents_modules.php:726 +msgid "More modules" +msgstr "Más módulos" + +#: ../../extensions/agents_modules.php:859 +#: ../../include/functions_reporting_html.php:1729 +msgid "Orange cell when the module has fired alerts" +msgstr "Cuadro naranja cuando el módulo ha disparado alertas" + +#: ../../extensions/agents_modules.php:861 +#: ../../include/functions_reporting_html.php:1730 +msgid "Red cell when the module has a critical status" +msgstr "Celda roja cuando el módulo está en estado crítico" + +#: ../../extensions/agents_modules.php:864 +#: ../../include/functions_reporting_html.php:1731 +msgid "Yellow cell when the module has a warning status" +msgstr "Cuadro amarillo cuando el módulo está en estado advertencia" + +#: ../../extensions/agents_modules.php:866 +#: ../../include/functions_reporting_html.php:1732 +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:868 +#: ../../include/functions_reporting_html.php:1733 +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:870 +msgid "Cell turns blue when the module is in 'not initialize' status" +msgstr "Celda azul cuando el módulo está en estado \"no iniciado\"" + +#: ../../extensions/agents_modules.php:883 +msgid "Agents/Modules view" +msgstr "Vista de Agentes/Módulos" + +#: ../../extensions/pandora_logs.php:29 +msgid "Cannot find file" +msgstr "Archivo no encontrado" + +#: ../../extensions/pandora_logs.php:34 +msgid "File is too large than PHP memory allocated in the system." +msgstr "" +"El archivo supera la capacidad de la memoria PHP alojada en el sistema" + +#: ../../extensions/pandora_logs.php:35 +msgid "The preview file is imposible." +msgstr "No es posible generar una vista previa del archivo" + +#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45 +msgid "" +"The folder /var/log/pandora must have pandora:apache and its content too." +msgstr "" +"La carpeta /var/log/pandora debe contener pandora:apache y también su " +"contenido." + +#: ../../extensions/pandora_logs.php:64 +msgid "System logfile viewer" +msgstr "Visor de archivos de log del sistema" + +#: ../../extensions/pandora_logs.php:66 +#, php-format +msgid "Use this tool to view your %s logfiles directly on the console" +msgstr "" +"Utilice esta herramienta para ver los %s ficheros log directamente desde la " +"consola" + +#: ../../extensions/pandora_logs.php:68 +msgid "" +"You can choose the amount of information shown in general setup (Log size " +"limit in system logs viewer extension), " +msgstr "" +"Puedes elegir la cantidad de información que se muestra en la configuración " +"general (límite de tamaño de logs en la extensión del visor de logs del " +"sistema) " + +#: ../../extensions/pandora_logs.php:78 +msgid "System logfiles" +msgstr "Logs del sistema" + +#: ../../extensions/plugin_registration.php:27 +#: ../../extensions/plugin_registration.php:34 +#: ../../godmode/servers/plugin.php:283 +msgid "Plugin registration" +msgstr "Registro de plugins" + +#: ../../extensions/plugin_registration.php:31 +msgid "Plugin Registration" +msgstr "Registro de puglins" + +#: ../../extensions/plugin_registration.php:36 +msgid "" +"This extension makes registering server plugins an easier task.\n" +"\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" +"\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " +"use Server Plugins.\n" +"\t\t\t\t\t\t

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

Tiene más plugins a su disposición en la Public Resource Library " + +#: ../../extensions/plugin_registration.php:86 +msgid "Cannot load INI file" +msgstr "No se puede abrir el archivo .INI" + +#: ../../extensions/plugin_registration.php:107 +msgid "Plugin exec not found. Aborting!" +msgstr "Plugin de ejecución no encontrado. ¡Deteniendo el proceso!" + +#: ../../extensions/plugin_registration.php:117 +msgid "Plugin already registered. Aborting!" +msgstr "El plugin ya está registrado. ¡Deteniendo el proceso!" + +#: ../../extensions/plugin_registration.php:281 +msgid "Plug-in Remote Registered unsuccessfull" +msgstr "Error al registrar el plugin remoto" + +#: ../../extensions/plugin_registration.php:284 +msgid "Please check the syntax of file \"plugin_definition.ini\"" +msgstr "" +"Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"." + +#: ../../extensions/plugin_registration.php:403 +msgid "Module plugin registered" +msgstr "Plugin de módulo registrado" + +#: ../../extensions/plugin_registration.php:406 +msgid "Registered successfully" +msgstr "Registrado correctamente" + +#: ../../extensions/plugin_registration.php:417 +msgid "Register plugin" +msgstr "Registro plugin" + +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 +msgid "Attachment directory is not writable by HTTP Server" +msgstr "El servidor HTTP no puede escribir en el directorio de adjuntos" + +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 +#, php-format +msgid "Please check that the web server has write rights on the %s directory" +msgstr "" +"Por favor, comprueba que el directorio %s del servidor web tiene permisos de " +"escritura" + +#: ../../extensions/files_repo/functions_files_repo.php:248 +msgid "The file could not be copied" +msgstr "El archivo no ha sido copiado" + +#: ../../extensions/files_repo/functions_files_repo.php:251 +msgid "There was an error creating the file" +msgstr "Se ha producido un error creando el archivo" + +#: ../../extensions/files_repo/functions_files_repo.php:295 +msgid "There was an error updating the file" +msgstr "Se ha producido un error actualizando el archivo" + +#: ../../extensions/files_repo/files_repo_get_file.php:66 +msgid "Unreliable petition" +msgstr "Petición no fiable" + +#: ../../extensions/files_repo/files_repo_get_file.php:66 +msgid "Please contact the administrator" +msgstr "Por favor, contacta con el administrador" + +#: ../../extensions/files_repo/files_repo_form.php:63 +msgid "Only 200 characters are permitted" +msgstr "Máximo 200 caracteres" + +#: ../../extensions/files_repo/files_repo_form.php:74 +#: ../../godmode/extensions.php:136 +msgid "File" +msgstr "Archivo" + +#: ../../extensions/files_repo/files_repo_form.php:77 +#: ../../extensions/files_repo/files_repo_form.php:83 +#: ../../extensions/files_repo/files_repo_list.php:90 +msgid "Public link" +msgstr "Enlace público" + +#: ../../extensions/files_repo/files_repo_list.php:56 +#: ../../include/functions_filemanager.php:620 +msgid "Last modification" +msgstr "Última modificación" + +#: ../../extensions/files_repo/files_repo_list.php:87 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: ../../extensions/files_repo/files_repo_list.php:119 +msgid "No items" +msgstr "No hay elementos" + +#: ../../extensions/module_groups.php:48 +msgid "Counters Module" +msgstr "Módulo de contadores" + +#: ../../extensions/module_groups.php:49 +msgid "Alerts_Fired" +msgstr "Alertas_disparadas" + +#: ../../extensions/module_groups.php:51 +msgid "warning" +msgstr "Advertencia" + +#: ../../extensions/module_groups.php:54 +msgid "Not_init" +msgstr "No_iniciado" + +#: ../../extensions/module_groups.php:248 +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:262 +msgid "Search by agent group" +msgstr "Buscar por grupo de agente" + +#: ../../extensions/module_groups.php:266 +msgid "Search by module group" +msgstr "Buscar por grupo de módulos" + +#: ../../extensions/module_groups.php:376 +msgid "" +"Orange cell when the module group and agent have at least one alarm fired." +msgstr "" +"Celda naranja cuando el grupo de módulos y el agente del módulo tengan al " +"menos una alerta disparada." + +#: ../../extensions/module_groups.php:377 +msgid "" +"Red cell when the module group and agent have at least one module in " +"critical status and the others in any status" +msgstr "" +"Celda roja cuando el grupo de módulos y el agente tengan al menos un módulo " +"en estado crítico y los demás en cualquier otro estado." + +#: ../../extensions/module_groups.php:378 +msgid "" +"Yellow cell when the module group and agent have at least one in warning " +"status and the others in grey or green status" +msgstr "" +"Celda amarilla cuando el grupo de módulos y el agente tengan al menos un " +"módulo en estado crítico y los demás en cualquier otro estado" + +#: ../../extensions/module_groups.php:379 +msgid "" +"Grey cell when the module group and agent have at least one in unknown " +"status and the others in green status" +msgstr "" +"Celda gris cuando el grupo de módulos y el agente tengan al menos un módulo " +"en estado desconocido y todos los demás están en OK" + +#: ../../extensions/module_groups.php:380 +msgid "" +"Green cell when the module group and agent have all modules in OK status" +msgstr "" +"Celda verde cuando el grupo de módulos y el agente tengan todos los módulos " +"en estado OK" + +#: ../../extensions/module_groups.php:381 +msgid "" +"Blue cell when the module group and agent have all modules in not init " +"status." +msgstr "" +"Celda azul cuando el grupo de módulos y el agente tengan todos los módulos " +"en estado no iniciado." + +#: ../../extensions/module_groups.php:385 +msgid "" +"This table shows in columns the modules group and in rows agents group. The " +"cell shows all modules" +msgstr "" +"La tabla muestra los grupos de módulos en columnas y los grupos de agente en " +"filas. La celda muestra todos los módulos." + +#: ../../extensions/module_groups.php:386 +msgid "There are no defined groups or module groups" +msgstr "No hay grupos o grupos de módulos definidos" + +#: ../../extensions/module_groups.php:406 ../../godmode/menu.php:90 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../operation/tree.php:74 +msgid "Module groups" +msgstr "Grupos de módulos" + +#: ../../extensions/net_tools.php:140 +#: ../../godmode/agentes/configurar_agente.php:785 +#: ../../godmode/agentes/configurar_agente.php:934 +msgid "The ip or dns name entered cannot be resolved" +msgstr "La IP o nombre del DNS no se puede resolver" + +#: ../../extensions/net_tools.php:146 +msgid "Traceroute executable does not exist." +msgstr "El ejecutable Traceroute no existe." + +#: ../../extensions/net_tools.php:148 +msgid "Traceroute to " +msgstr "Trazando ruta a " + +#: ../../extensions/net_tools.php:158 +msgid "Ping executable does not exist." +msgstr "El ejecutable Ping no existe." + +#: ../../extensions/net_tools.php:160 +#, php-format +msgid "Ping to %s" +msgstr "Ping a %s" + +#: ../../extensions/net_tools.php:170 +msgid "Nmap executable does not exist." +msgstr "El ejecutable Nmap no existe." + +#: ../../extensions/net_tools.php:172 +msgid "Basic TCP Scan on " +msgstr "Escaneo básico TCP en " + +#: ../../extensions/net_tools.php:180 +msgid "Domain and IP information for " +msgstr "Información de dominio e IP para " + +#: ../../extensions/net_tools.php:184 +msgid "Dig executable does not exist." +msgstr "El ejecutable Dig no existe." + +#: ../../extensions/net_tools.php:193 +msgid "Whois executable does not exist." +msgstr "El ejecutable Whois no existe." + +#: ../../extensions/net_tools.php:211 +msgid "SNMP information for " +msgstr "Información SNMP para " + +#: ../../extensions/net_tools.php:212 +msgid "Uptime" +msgstr "Tiempo en activo" + +#: ../../extensions/net_tools.php:215 ../../extensions/net_tools.php:227 +msgid "Target unreachable." +msgstr "Objetivo inaccesible." + +#: ../../extensions/net_tools.php:222 +msgid "Device info" +msgstr "Información del dispositivo" + +#: ../../extensions/net_tools.php:240 +msgid "Interface" +msgstr "Interfaz" + +#: ../../extensions/net_tools.php:320 +msgid "The agent hasn't got IP" +msgstr "El agente no tiene IP" + +#: ../../extensions/net_tools.php:350 +msgid "Traceroute" +msgstr "Traceroute" + +#: ../../extensions/net_tools.php:351 +msgid "Ping host & Latency" +msgstr "Ping host y Latencia" + +#: ../../extensions/net_tools.php:352 +msgid "SNMP Interface status" +msgstr "Estado de la interfaz SNMP" + +#: ../../extensions/net_tools.php:353 +msgid "Basic TCP Port Scan" +msgstr "Escaneo básico de puertos TCP" + +#: ../../extensions/net_tools.php:354 +msgid "DiG/Whois Lookup" +msgstr "Búsqueda DiG/Whois" + +#: ../../extensions/net_tools.php:359 +msgid "Please select" +msgstr "Seleccione" + +#: ../../extensions/net_tools.php:382 +msgid "SNMP Version" +msgstr "Versión SNMP" + +#: ../../extensions/net_tools.php:395 ../../include/ajax/events.php:1716 +#: ../../include/functions_events.php:3580 +msgid "Execute" +msgstr "Ejecutar" + +#: ../../extensions/net_tools.php:430 ../../extensions/net_tools.php:505 +msgid "Config Network Tools" +msgstr "Configuración de herramientas de red" + +#: ../../extensions/net_tools.php:456 ../../extensions/net_tools.php:457 +msgid "Set the paths." +msgstr "Introducir rutas" + +#: ../../extensions/net_tools.php:476 +msgid "Traceroute path" +msgstr "Ruta Traceroute" + +#: ../../extensions/net_tools.php:479 +msgid "Ping path" +msgstr "Ruta al comando ping" + +#: ../../extensions/net_tools.php:482 +msgid "Nmap path" +msgstr "Ruta Nmap" + +#: ../../extensions/net_tools.php:485 +msgid "Dig path" +msgstr "Ruta Dig" + +#: ../../extensions/net_tools.php:488 +msgid "Snmpget path" +msgstr "Ruta Snmpget" + +#: ../../extensions/insert_data.php:58 +msgid "Insert data" +msgstr "Insertar datos" + +#: ../../extensions/insert_data.php:86 +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:122 +#, php-format +msgid "Can't save agent (%s), module (%s) data xml." +msgstr "No se pudo guardar el agente (%s), módulo (%s) datos XML" + +#: ../../extensions/insert_data.php:131 +#, php-format +msgid "Save agent (%s), module (%s) data xml." +msgstr "Guardar agente (%s), módulo (%s) datos XML" + +#: ../../extensions/insert_data.php:142 +#, php-format +msgid "" +"Please check that the directory \"%s\" is writeable by the apache user.

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

El formato del archivo CSV es " +"date;value<newline>date;value<newline>... La fecha en CVS está " +"en formato a/m/d H:i:s." + +#: ../../extensions/insert_data.php:270 +msgid "Insert Data" +msgstr "Insertar datos" + +#: ../../extensions/realtime_graphs.php:33 +#: ../../extensions/realtime_graphs.php:211 +msgid "Realtime graphs" +msgstr "Gráficas en tiempo real" + +#: ../../extensions/realtime_graphs.php:98 +#, php-format +msgid "%s Server CPU" +msgstr "%s CPU del servidor" + +#: ../../extensions/realtime_graphs.php:99 +#, php-format +msgid "Pending packages from %s Server" +msgstr "Paquetes del %s servidor pendientes" + +#: ../../extensions/realtime_graphs.php:100 +#, php-format +msgid "%s Server Disk IO Wait" +msgstr "%s Server Disk IO Wait" + +#: ../../extensions/realtime_graphs.php:101 +#, php-format +msgid "%s Server Apache load" +msgstr "%s Carga del servidor apache" + +#: ../../extensions/realtime_graphs.php:102 +#, php-format +msgid "%s Server MySQL load" +msgstr "%s Carga del servidor MySQL" + +#: ../../extensions/realtime_graphs.php:103 +#, php-format +msgid "%s Server load" +msgstr "%s Carga del servidor" + +#: ../../extensions/realtime_graphs.php:104 +msgid "SNMP Interface throughput" +msgstr "Rendimiento de interfaz SNMP" + +#: ../../extensions/realtime_graphs.php:142 +msgid "Refresh interval" +msgstr "Intervalo de actualización" + +#: ../../extensions/realtime_graphs.php:144 +msgid "Incremental" +msgstr "Incremental" + +#: ../../extensions/realtime_graphs.php:147 +msgid "Clear graph" +msgstr "Limpiar gráfica" + +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:82 +#: ../../include/functions_snmp_browser.php:660 +msgid "Community" +msgstr "Comunidad" + +#: ../../extensions/realtime_graphs.php:176 +#: ../../godmode/agentes/module_manager_editor_network.php:266 +msgid "SNMP walk" +msgstr "SNMP walk" + +#: ../../extensions/realtime_graphs.php:199 +#: ../../godmode/agentes/module_manager_editor_network.php:43 +msgid "Use this OID" +msgstr "Usar esta OID" #: ../../extensions/users_connected.php:37 #: ../../extensions/users_connected.php:137 @@ -5025,198 +28798,568 @@ msgstr "Usuarios conectados" msgid "No other users connected" msgstr "No hay otros usuarios conectados" -#: ../../general/alert_enterprise.php:107 +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "Actualización de los componentes del grupo" + +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" +msgstr "Crear componentes de grupo" + +#: ../../godmode/modules/manage_nc_groups_form.php:71 +#: ../../godmode/groups/configure_group.php:138 +#: ../../godmode/groups/group_list.php:687 +#: ../../godmode/agentes/agent_manager.php:579 +#: ../../godmode/massive/massive_edit_agents.php:522 +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +#: ../../include/functions_visual_map_editor.php:866 +#: ../../include/rest-api/models/VisualConsole/Item.php:2049 +#: ../../operation/agentes/ver_agente.php:1027 +#: ../../operation/agentes/estado_generalagente.php:361 +msgid "Parent" +msgstr "Padre" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" +msgstr "Gestión de plantillas de módulos" + +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" +msgstr "Módulo borrado del perfil correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" +msgstr "Error al borrar el módulo del perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" +msgstr "Módulo añadido correctamente al perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" +msgstr "Error al añadir el módulo al perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:107 +msgid "Successfully updated network profile" +msgstr "Perfil de red actualizado correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:108 +msgid "Error updating network profile" +msgstr "Error al actualizar el perfil de red" + +#: ../../godmode/modules/manage_network_templates_form.php:126 +msgid "Successfully added network profile" +msgstr "Perfil de red añadido correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:127 +msgid "Error adding network profile" +msgstr "Error al añadir el perfil de red" + +#: ../../godmode/modules/manage_network_templates_form.php:133 +msgid "Cannot create a template without name" +msgstr "No se puede crear una plantilla sin nombre" + +#: ../../godmode/modules/manage_network_templates_form.php:207 +msgid "No modules for this profile" +msgstr "No existen módulos para este perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:248 +#: ../../operation/snmpconsole/snmp_browser.php:138 +#: ../../operation/snmpconsole/snmp_browser.php:158 +msgid "Add modules" +msgstr "Añadir módulos" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "Gestión de grupos de componentes de red" + +#: ../../godmode/modules/manage_nc_groups.php:63 +msgid "Could not be created. Blank name" +msgstr "No pudo ser creado. Nombre en blanco" + +#: ../../godmode/modules/manage_nc_groups.php:112 +#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:100 +#: ../../godmode/events/event_edit_filter.php:192 +msgid "Not updated. Error updating data" +msgstr "No se ha podido actualizar. Error al actualizar los datos." + +#: ../../godmode/modules/manage_nc_groups.php:276 +msgid "There are no defined component groups" +msgstr "No hay grupos de componentes definidos" + +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" +msgstr "Cadena SNMP Enterprise" + +#: ../../godmode/modules/manage_network_components_form.php:285 +msgid "Update Network Component" +msgstr "Actualización de componente de red" + +#: ../../godmode/modules/manage_network_components_form.php:287 +msgid "Create Network Component" +msgstr "Crear componente de red" + +#: ../../godmode/modules/manage_network_components.php:201 +msgid "Remote component management" +msgstr "Gestión remota de componentes" + +#: ../../godmode/modules/manage_network_components.php:581 +msgid "Search by name, description, tcp send or tcp rcv, list matches." +msgstr "" +"Búsqueda por nombre, descripción, envío TCP o TCP RCV, lista las " +"coincidencias." + +#: ../../godmode/modules/manage_network_components.php:671 +msgid "Max/Min" +msgstr "Máx/Mín" + +#: ../../godmode/modules/manage_network_components.php:707 +#: ../../include/class/ModuleTemplates.class.php:1138 +msgid "Network module" +msgstr "Módulo de red" + +#: ../../godmode/modules/manage_network_components.php:715 +#: ../../include/class/ModuleTemplates.class.php:1146 +msgid "WMI module" +msgstr "Módulo WMI" + +#: ../../godmode/modules/manage_network_components.php:723 +#: ../../include/class/ModuleTemplates.class.php:1154 +msgid "Plug-in module" +msgstr "Módulo de plugin" + +#: ../../godmode/modules/manage_network_components.php:770 +msgid "There are no defined network components" +msgstr "No hay componentes de red definidos" + +#: ../../godmode/modules/manage_network_components.php:780 +msgid "Create a new network component" +msgstr "Crear un componente de red nuevo" + +#: ../../godmode/modules/manage_network_components.php:781 +msgid "Create a new plugin component" +msgstr "Crear un componente de plugin nuevo" + +#: ../../godmode/modules/manage_network_components.php:782 +msgid "Create a new WMI component" +msgstr "Crear un componente WMI nuevo" + +#: ../../godmode/modules/module_list.php:26 +msgid "Defined modules" +msgstr "Módulos definidos" + +#: ../../godmode/modules/module_list.php:48 +msgid "Problem modifying module" +msgstr "Problema al modificar los módulos" + +#: ../../godmode/modules/module_list.php:50 +msgid "Module updated successfully" +msgstr "Actualización de módulos correcta" + +#: ../../godmode/modules/manage_network_templates.php:77 +msgid "Template successfully deleted" +msgstr "Plantilla borrada correctamente" + +#: ../../godmode/modules/manage_network_templates.php:78 +msgid "Error deleting template" +msgstr "Error al borrar la plantilla" + +#: ../../godmode/modules/manage_network_templates.php:112 +msgid "This template does not exist" +msgstr "Esta plantilla no existe." + +#: ../../godmode/modules/manage_network_templates.php:286 +msgid "There are no defined network profiles" +msgstr "No hay ningún perfil de red definido" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "Configuración actual del mantenimiento de la BD" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "Configuración de la base de datos" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "Máx. días antes de comprimir datos" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "Máx. días antes de purga de datos" + +#: ../../godmode/db/db_main.php:98 +#: ../../include/class/Diagnostics.class.php:225 +msgid "Database size stats" +msgstr "Tamaño de estadísticas de la base de datos" + +#: ../../godmode/db/db_main.php:108 +#: ../../include/class/Diagnostics.class.php:560 +#: ../../include/functions_reporting.php:11635 +msgid "Total events" +msgstr "Total de eventos" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "Total de elementos de datos (tagente_datos)" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "Total elementos Log4x (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "Total de elementos de cadenas de datos (tagente_datos_string)" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "Módulos totales configurados" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "Total de registros de acceso del agente" + +#: ../../godmode/db/db_main.php:166 +msgid "Database sanity" +msgstr "Estado de la BD" + +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "Total de agentes desconocidos" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "Total de módulos no iniciados" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "Última vez en mantenimiento de base de datos" + +#: ../../godmode/db/db_main.php:208 #, php-format msgid "" -"This is the online help for %s console. This help is -in best cases- just a " -"brief contextual help, not intented to teach you how to use %s. Official " -"documentation of %s is about 900 pages, and you probably don't need to read " -"it entirely, but sure, you should download it and take a look.

\n" -" Download the official documentation" +"Please make sure your %s Server settings are correct and that the database " +"maintenance daemon is running. It's very important to keep your database up " +"to date in order to get the best performance and results from %s." msgstr "" -"Esta es la ayuda online de la consola %s. Esta ayuda, en el mejor de los " -"casos, constituye una breve ayuda contextual, que no pretende enseñarle a " -"usar %s. La documentación oficial de %s tiene 900 páginas aproximadamente, y " -"probablemente no necesite leerala entera, pero puede descargarla y " -"revisarla.

\n" -" Descargue la documentación oficial" +"Asegúrese de que la configuración del servidor de %s es correcta y que el " +"demonio de mantenimiento de la base de datos está en ejecución. Es muy " +"importante tener la base de datos actualizada para que el funcionamiento y " +"los resultados de %s sean óptimos." -#: ../../general/alert_enterprise.php:120 +#: ../../godmode/groups/configure_group.php:66 +#: ../../godmode/groups/configure_modu_group.php:46 +msgid "There was a problem loading group" +msgstr "Hubo un error al cargar la configuración del grupo" + +#: ../../godmode/groups/configure_group.php:85 +msgid "Update group" +msgstr "Actualizar grupo" + +#: ../../godmode/groups/configure_group.php:87 +#: ../../godmode/groups/group_list.php:791 +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:146 +msgid "You have not access to the parent." +msgstr "No tienes acceso al padre" + +#: ../../godmode/groups/configure_group.php:180 +msgid "Group Password" +msgstr "Contraseña del grupo" + +#: ../../godmode/groups/configure_group.php:184 +msgid "Enable alert use in this group." +msgstr "Habilitar el uso de alertas en este grupo." + +#: ../../godmode/groups/configure_group.php:188 +msgid "Propagate ACL" +msgstr "Propagar ACL" + +#: ../../godmode/groups/configure_group.php:188 +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:200 +#: ../../include/functions_events.php:4623 +msgid "Contact" +msgstr "Contacto" + +#: ../../godmode/groups/configure_group.php:200 +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:204 +msgid "Information accessible through the _group_other_ macro" +msgstr "Información accesible a través de _group_other_ macro" + +#: ../../godmode/groups/configure_group.php:210 +#: ../../godmode/users/configure_user.php:855 +#: ../../operation/users/user_edit.php:381 +msgid "Skin" +msgstr "Apariencia" + +#: ../../godmode/groups/configure_group.php:251 +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/group_list.php:259 +msgid "Tree Group view" +msgstr "Vista de árbol de grupos" + +#: ../../godmode/groups/group_list.php:281 +msgid "Credential Store" +msgstr "Almacén de credenciales" + +#: ../../godmode/groups/group_list.php:288 +#, php-format +msgid "Groups defined in %s" +msgstr "Grupos definidos en %s" + +#: ../../godmode/groups/group_list.php:297 +msgid "Credential store" +msgstr "Almacén de credenciales" + +#: ../../godmode/groups/group_list.php:310 +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:369 +#: ../../godmode/groups/modu_group_list.php:101 +msgid "Group successfully created" +msgstr "Grupo creado correctamente" + +#: ../../godmode/groups/group_list.php:371 +#: ../../godmode/groups/modu_group_list.php:104 +msgid "There was a problem creating group" +msgstr "Ha habido un problema al crear el grupo." + +#: ../../godmode/groups/group_list.php:374 +msgid "Each group must have a different name" +msgstr "Cada grupo debe tener un nombre diferente" + +#: ../../godmode/groups/group_list.php:377 +msgid "Group must have a name" +msgstr "El grupo debe tener un nombre" + +#: ../../godmode/groups/group_list.php:433 +#: ../../godmode/groups/modu_group_list.php:137 +msgid "Group successfully updated" +msgstr "Grupo actualizado correctamente" + +#: ../../godmode/groups/group_list.php:435 +#: ../../godmode/groups/modu_group_list.php:140 +msgid "There was a problem modifying group" +msgstr "Ha habido un problema al modificar el grupo" + +#: ../../godmode/groups/group_list.php:477 #, php-format msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance.

\n" -" Please know that all attempts to access this page are recorded in " -"security logs of %s System Database." +"The group %s could not be deleted because it is not empty in the nodes" msgstr "" -"El acceso a esta página está restringido exclusivamente a usuarios " -"autorizados, póngase en contacto con el administrador del sistema si " -"necesita ayuda.

\n" -" Note que todos los intentos de acceso al la página se guardarán en los " -"logs de seguridad de la base de datos de %s." +"El grupo %s no puede ser borrado porque en el nodo se está usando en este " +"grupo" -#: ../../general/alert_enterprise.php:130 +#: ../../godmode/groups/group_list.php:535 +msgid "" +"The group has not been deleted in the metaconsole due to an error in the " +"node database" +msgstr "" +"El grupo no se ha eliminado de la Metaconsola por un error en la base de " +"datos de los nodos" + +#: ../../godmode/groups/group_list.php:541 +#, php-format +msgid "The group %s has been deleted in the nodes" +msgstr "El grupo %s se ha borrado de los nodos" + +#: ../../godmode/groups/group_list.php:570 +#: ../../godmode/groups/modu_group_list.php:211 +msgid "Group successfully deleted" +msgstr "Grupo eliminado correctamente" + +#: ../../godmode/groups/group_list.php:572 +#: ../../godmode/groups/modu_group_list.php:209 +msgid "There was a problem deleting group" +msgstr "Ha habido un problema al borrar el grupo." + +#: ../../godmode/groups/group_list.php:577 +#, 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:621 +#: ../../godmode/groups/group_list.php:784 +msgid "There are no defined groups" +msgstr "No hay grupos definidos" + +#: ../../godmode/groups/group_list.php:743 +msgid "Are you sure? This group will also be deleted in all the nodes." +msgstr "¿Está seguro? Este grupo también se borrará de todos los nodos." + +#: ../../godmode/groups/group_list.php:749 +msgid "" +"The child groups will be updated to use the parent id of the deleted group" +msgstr "" +"Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado" + +#: ../../godmode/groups/configure_modu_group.php:28 +msgid "Module group management" +msgstr "Gestión del grupo de módulos" + +#: ../../godmode/groups/modu_group_list.php:71 +#, php-format +msgid "Module groups defined in %s" +msgstr "Grupos de módulos definidos en %s" + +#: ../../godmode/groups/modu_group_list.php:109 +#: ../../godmode/groups/modu_group_list.php:145 +#: ../../include/functions_api.php:9521 +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:113 +#: ../../godmode/groups/modu_group_list.php:149 +#: ../../include/functions_api.php:9514 +msgid "Module group must have a name" +msgstr "El grupo de módulos debe tener un nombre" + +#: ../../godmode/groups/modu_group_list.php:265 +msgid "There are no defined module groups" +msgstr "No hay grupos de módulos definidos" + +#: ../../godmode/groups/modu_group_list.php:273 +msgid "Create module group" +msgstr "Crear grupo de módulos" + +#: ../../godmode/extensions.php:26 +msgid "Defined extensions" +msgstr "Extensiones definidas" + +#: ../../godmode/extensions.php:31 +msgid "There are no extensions defined" +msgstr "No hay extensiones definidas" + +#: ../../godmode/extensions.php:139 +msgid "Godmode Function" +msgstr "Función Administrador" + +#: ../../godmode/extensions.php:140 +msgid "Godmode Menu" +msgstr "Menú Administrador" + +#: ../../godmode/extensions.php:141 +msgid "Operation Menu" +msgstr "Menú Operación" + +#: ../../godmode/extensions.php:142 +msgid "Operation Function" +msgstr "Función Operación" + +#: ../../godmode/extensions.php:143 +msgid "Login Function" +msgstr "Función Conexión" + +#: ../../godmode/extensions.php:144 +msgid "Agent operation tab" +msgstr "Pestaña Operaciones de agente" + +#: ../../godmode/extensions.php:145 +msgid "Agent godmode tab" +msgstr "Pestaña Administración de agente" + +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Registration ID:" +msgstr "ID de registro:" + +#: ../../godmode/update_manager/update_manager.setup.php:248 +msgid "Cancel registration:" +msgstr "Cancelar registro:" + +#: ../../godmode/update_manager/update_manager.setup.php:253 +msgid "Unregister" +msgstr "Cerrar cuenta" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +msgid "Pandora FMS community reminder" +msgstr "Recordatorio de la comunidad de Pandora FMS" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register " +"this Pandora instance" +msgstr "" +"Cada 8 días, se mostrará un mensaje al administrador para que recuerde " +"registrar esta instancia de Pandora FMS." + +#: ../../godmode/update_manager/update_manager.online.php:62 #, php-format msgid "" -"The Update Manager client is included on %s. It helps system administrators " -"update their %s automatically, since the Update Manager retrieves new " -"modules, new plugins and new features (even full migrations tools for future " -"versions) automatically." +"Your PHP has set memory limit in %s. To use Update Manager Online, please " +"set it to %s" msgstr "" -"Update Manager cliente está incluido en %s. Ayuda a los administradores de " -"sistemas a actualizar su %s automáticamente, puesto que Update manager " -"obtiene nuevos módulos, plugins y funcionalidades (incluso herramientas de " -"migración completa para futuras versiones) automáticamente." +"PHP ha fijado el límite de memoria en %s. Para utilizar Update Manager " +"Online, configúrelo a %s." -#: ../../general/alert_enterprise.php:130 -msgid "" -"OpenSource version updates are automated packages generated each week. " -"These updates come WITHOUT ANY warranty or support. If your system is " -"corrupted or a feature stops working properly, you will need to recover a " -"backup by yourself." -msgstr "" -"Las actualizaciones de la versión OpenSource son paquetes automatizados " -"generados cada semana. Estas actualizaciones vienen sin garantía o soporte. " -"Si tu sistema está dañado o una característica deja de funcionar " -"correctamente, necesitarás recuperar una copia de seguridad tú mismo." - -#: ../../general/alert_enterprise.php:130 +#: ../../godmode/update_manager/update_manager.online.php:75 #, php-format msgid "" -"The Enterprise version comes with a different update system, with fully " -"tested, professionally-supported packages, and our support team is there to " -"help you in case of problems or queries. Update Manager is another feature " -"present in the Enterprise version and not included in the OpenSource " -"version. There are lots of advanced business-oriented features contained in " -"%s Enterprise Edition. For more information visit pandorafms.com" +"Your PHP has post_max_size limited to %s. To use Update Manager Online, " +"please set it to %s" msgstr "" -"La versión Enterprise tiene un sistema de actualización diferente, con " -"paquetes completamente probador y con asistencia profesional. Nuestro equipo " -"de soporte le asistirá en caso de duda o problema, Update Manager es otra " -"funcionalidad presente en %s versión Enterprise no incluida en la versión " -"OpenSource. \r\n" -"La versión Enterprise contiene cientos de funcionalidades diseñadas para su " -"negocio. Para más información visite pandorafms.com" +"PHP tiene post_max_size limitado a %s. Para usar Update Manager Online, " +"configúrelo a %s." -#: ../../general/alert_enterprise.php:132 +#: ../../godmode/update_manager/update_manager.online.php:88 #, php-format msgid "" -"The new Update Manager " -"client is included on %s. It helps system administrators update their %s " -"automatically, since the Update Manager retrieves new modules, new plugins " -"and new features (even full migrations tools for future versions) " -"automatically." +"Your PHP has set maximum allowed size for uploaded files limit in %s. To use " +"Update Manager Online, please set it to %s" msgstr "" -"El nuevo Update " -"Manager cliente está incluido en %s. Ayuda a los administradores de " -"sistemas a actualizar %s automáticamente, puesto que Update Manager obtiene " -"nuevos módulos, plugins y funcionalidades (incluso herramientas de migración " -"completa para futuras versiones) automáticamente." +"PHP ha establecido un límite de tamaño máximo para los archivos subidos en " +"%s. Para usar Update Manager Online, configúrelo a %s." -#: ../../general/alert_enterprise.php:132 -#, php-format -msgid "" -"The Update Manager is one of the most advanced features on the %s Enterprise " -"Edition. For more information visit http://pandorafms.com." -msgstr "" -"Update Manager es una de las funcionalidades más avanzadas de %s versión " -"Enterprise. Para obtener más información visite http://pandorafms.com." +#: ../../godmode/update_manager/update_manager.online.php:102 +msgid "Update Manager Online requires registration" +msgstr "Debe registrarse en Update Manager Online" -#: ../../general/alert_enterprise.php:132 -#, php-format -msgid "" -"Update Manager sends anonymous information about %s usage (number of agents " -"and modules running). To disable it, please remove the remote server address " -"from the Update Manager plugin setup." -msgstr "" -"Update Manager envía información anónima sobre el uso de %s (número de " -"agentes en ejecución). Para deshabilitarlo, elimine la dirección del " -"servidor remoto de la configuración del plugin Update Manager." +#: ../../godmode/update_manager/update_manager.online.php:133 +msgid "The latest version of package installed is:" +msgstr "La última versión instalada del paquete es:" -#: ../../general/alert_enterprise.php:138 -msgid "" -"The community version doesn't have the ability to define your own library of " -"local modules, or distribute it to remote agents. You need to make those " -"changes individually on each agent which is possible by using external tools " -"and time and effort. Nor can it distribute local plugins, or have access to " -"the library of enterprise plugins to monitor applications such as VMWare, " -"RHEV or Informix between others. The Enterprise version will have all this, " -"plus the ability to distribute and manage your own local modules on your " -"systems, individually or through policies.\n" -"

pandorafms.com" -msgstr "" -"¿Quiere consolidar toda la monitorización de sus sistemas? ¿Tiene tantos " -"sistemas que le resulta difícil gestionarlos completamente? ¿Le gustaría " -"desplegar monitorización, alertas e incluso plugins locales en un solo " -"click? Las políticas Enterprise de %s son exactamente lo que usted necesita. " -"Se ahorrará tiempo, esfuerzos y molestias. Más información en pandorafms.com" +#: ../../godmode/update_manager/update_manager.online.php:145 +msgid "Downloading for the newest package." +msgstr "Descargando nuevos paquetes" -#: ../../general/alert_enterprise.php:148 -#, php-format -msgid "" -"%s Enterprise also features event correlation. Through correlation you can " -"generate realtime alerts and / or new events based on logical rules. This " -"allows you to automate troubleshooting. If you know the value of working " -"with events, event correlation will take you to a new level." -msgstr "" -"%s Enterprise también incluye correlación de eventos. A través de esta " -"correlación puede generar alertas en tiempo real y / o nuevos eventos " -"basados en reglas lógicas. Esto le permite automatizar la resolución de " -"errores. Si ya conoce la importancia de trabajar con eventos, la correlación " -"de eventos le llevará a otro nivel." - -#: ../../general/alert_enterprise.php:152 -#, php-format -msgid "" -"Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, %s Enterprise version is for you." -msgstr "" -"La generación de informes en la versión Enterprise también es más potente: " -"tiene asistentes, puede programar el envío de emails en PDF cuando usted " -"decida y tiene un sistema de plantillas para crear informes personalizados " -"rápidamente para todos sus clientes. También le permitirá a sus clientes " -"crear sus propios informes a partir de las plantillas que usted haya creado. " -"Si los informes son la clave de su negocio, %s versión Enterprise es para " -"usted." - -#: ../../general/alert_enterprise.php:156 -msgid "These options are only effective on the Enterprise version." -msgstr "Estas opciones solo funcionan en la versión Enterprise." - -#: ../../general/alert_enterprise.php:160 #: ../../godmode/update_manager/update_manager.online.php:186 +#: ../../general/alert_enterprise.php:160 msgid "" "WARNING: You are just one click away from an automated update. This may " "result in a damaged system, including loss of data and operativity. Check " @@ -5231,1558 +29374,953 @@ msgstr "" "GARANTÍA o SOPORTE. Si necesitas asistencia profesional y una garantía, " "actualiza a la versión Enterprise." -#: ../../general/alert_enterprise.php:164 -msgid "" -"This system is heavily loaded. OpenSource version could get a lot more " -"agents but fine tuning requires knowledge and time. Checkout the Enterprise " -"Version for a professional supported system." -msgstr "" -"Este sistema está muy congestionado. La versión OpenSource podría obtener " -"muchos más agentes, pero la precisión requiere de tiempo y conocimiento. " -"Instala la versión Enterprise para obtener un sistema profesional compatible." +#: ../../godmode/update_manager/update_manager.offline.php:63 +msgid "Drop the package here or" +msgstr "Arrastre el paquete hasta aquí o" -#: ../../general/alert_enterprise.php:168 -msgid "" -"This system has too many modules per agent. OpenSource version could manage " -"thousands of modules, but is not recommended to have more than 40 modules " -"per agent. This configuration has B/A modules per agent. Checkout the " -"Enterprise Version for a professional supported system." -msgstr "" -"El sistema tiene muchos módulos por agente. La versión OpenSource puede " -"manejar miles de módulos, pero no se recomienda tener más de 40 módulos por " -"agente. Esta configuración tiene módulos B/A por agente. Instala la versión " -"Enterprise para obtener un sistema profesional compatible." +#: ../../godmode/update_manager/update_manager.offline.php:64 +msgid "browse it" +msgstr "navegue hasta él" -#: ../../general/alert_enterprise.php:172 -msgid "" -"Too much remote modules has been detected on this system. OpenSource version " -"could manage thousands of modules, but performance is limited on high amount " -"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " -"supported system with improved capacity on network monitoring, including " -"distributed servers." -msgstr "" -"Se han detectado muchos módulos remotos en este sistema. La versión " -"OpenSource puede manejar miles de módulos, pero el rendimiento será limitado " -"con un gran número de peticiones SNMP o ICMP. Instala la versión Enterprise " -"para obtener un sistema profesional compatible." +#: ../../godmode/update_manager/update_manager.offline.php:65 +msgid "The package has been uploaded successfully." +msgstr "Se ha subido correctamente el paquete." -#: ../../general/alert_enterprise.php:176 -msgid "" -"This system has too much events in the database. Checkout database purge " -"options. Checkout the Enterprise Version for a professional supported system." -msgstr "" -"Este sistema tiene muchos eventos en la base de datos. Consulta las opciones " -"de purga de la base de datos. Instala la versión Enterprise para obtener un " -"sistema profesional compatible." - -#: ../../general/alert_enterprise.php:180 -msgid "" -"You have defined a high number of alerts, this may cause you performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." -msgstr "" -"Tiene definido un gran número de agentes que podrían provocar problemas de " -"rendimiento en un futuro. En la versión Enterprise puedes usar la " -"correlación de alertas de eventos para simplificar el sistema de alertas y " -"poder manejarlo de forma sencilla y aumentar el rendimiento." - -#: ../../general/first_task/HA_cluster_builder.php:37 -msgid "There are no HA clusters defined yet." -msgstr "Aún no se han definido clusters de alta disponibilidad." - -#: ../../general/first_task/HA_cluster_builder.php:42 -#: ../../general/first_task/cluster_builder.php:35 -#: ../../enterprise/godmode/reporting/cluster_list.php:26 -msgid "Clusters" -msgstr "Clústers" - -#: ../../general/first_task/HA_cluster_builder.php:45 -msgid "PANDORA FMS DB CLUSTER" -msgstr "CLUSTER DE LA BASE DE DATOS DE PANDORA FMS" - -#: ../../general/first_task/HA_cluster_builder.php:48 -msgid "" -"With Pandora FMS Enterprise you can add high availability to your Pandora " -"FMS installation by adding redundant MySQL servers" -msgstr "" -"Con Pandora FMS Enterprise puede añadir la alta disponibilidad a su " -"instalación de Pandora FMS añadiendo servidores MySQL redundantes" - -#: ../../general/first_task/HA_cluster_builder.php:50 -msgid "" -"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " -"into a Pandora FMS DB Cluster." -msgstr "" -"Pinche en \"añadir nuevo módulo\" para empezar a convertir su cluster de " -"base de datos de Pandora FMS en un cluster de base de datos de Pandora FMS." - -#: ../../general/first_task/HA_cluster_builder.php:59 -msgid "Add new node" -msgstr "Añadir nuevo nodo" - -#: ../../general/first_task/cluster_builder.php:30 -msgid "There are no clusters defined yet." -msgstr "No hay clústers definidos todavía" - -#: ../../general/first_task/cluster_builder.php:38 -#: ../../general/first_task/cluster_builder.php:56 -msgid "Create Cluster" -msgstr "Crear clúster" - -#: ../../general/first_task/cluster_builder.php:41 -msgid "" -"A cluster is a group of devices that provide the same service in high " -"availability." -msgstr "" -"Un clúster es un grupo de servicios que proporciona el mismo servicio en " -"alta disponibilidad" - -#: ../../general/first_task/cluster_builder.php:43 -msgid "Depending on how they provide that service, we can find two types:" -msgstr "Dependiendo de cómo proporcionen ese servicio, hay dos tipos:" - -#: ../../general/first_task/cluster_builder.php:45 -msgid "" -"Clusters to balance the service load: these are active - active " -"(A/A) mode clusters. It means that all the nodes (or machines that compose " -"it) are working. They must be working because if one stops working, it will " -"overload the others." -msgstr "" -"Clústers para equilibrar la carga del servicio: son clústers de modo " -"activo-activo(A/A), por lo tanto todos los nodos (o máquinas que lo " -"componen) están funcionando. Tienen que estar todos en funcionamiento porque " -"si uno se detiene, sobrecargará a los demás." - -#: ../../general/first_task/cluster_builder.php:47 -msgid "" -"Clusters to guarantee service: these are active - passive (A/P) mode " -"clusters. It means that one of the nodes (or machines that make up the " -"cluster) will be running (primary) and another won't (secondary). When the " -"primary goes down, the secondary must take over and give the service " -"instead. Although many of the elements of this cluster are active-passive, " -"it will also have active elements in both of them that indicate that the " -"passive node is \"online\", so that in the case of a service failure in the " -"master, the active node collects this information." -msgstr "" -"Clústers para garantizar el servicio: son clústers de modo activo-" -"pasivo (A/P). Quiere decir que uno de los nodos (o máquinas que componen el " -"clúster) estará en funcionamiento (primario) y el otro no (secundario). " -"Cuando uno primario se detiene, el secundario lo releva y proporciona el " -"servicio en su lugar. Aunque muchos de los elementos de este clúster son " -"activo-pasivo, también tendrá elementos activos en los dos que indican que " -"el nodo pasivo se encuentra \"en línea\", para que en caso de fallo del " -"sistema en el maestro, sea el nodo activo el que recoja esta información." - -#: ../../general/first_task/collections.php:18 -#: ../../enterprise/meta/advanced/collections.php:403 -msgid "There are no collections defined yet." -msgstr "No hay colecciones definidas todavía" - -#: ../../general/first_task/collections.php:22 -#: ../../enterprise/godmode/agentes/collections.agents.php:46 -#: ../../enterprise/godmode/agentes/collections.data.php:44 -#: ../../enterprise/godmode/agentes/collections.editor.php:58 -#: ../../enterprise/godmode/menu.php:58 -#: ../../enterprise/godmode/policies/policies.php:521 -#: ../../enterprise/godmode/policies/policy_collections.php:31 -#: ../../enterprise/include/functions_policies.php:3784 -#: ../../enterprise/meta/advanced/collections.data.php:35 -#: ../../enterprise/meta/advanced/collections.editor.php:39 -#: ../../enterprise/meta/include/functions_agents_meta.php:514 -msgid "Collections" -msgstr "Colecciones" - -#: ../../general/first_task/collections.php:25 -#: ../../general/first_task/collections.php:39 -msgid "Create Collections" -msgstr "Crear colecciones" - -#: ../../general/first_task/collections.php:28 -msgid "" -"A file collection is a group of files (e.g. scripts or executables) which " -"are \n" -"\t\tautomatically copied to a specific directory of the agent (under Windows " -"or UNIX). The file collections allow to be propagated\n" -"\t\t along with the policies in order to be used by a group of agents, using " -"a 'package' of scripts and modules which use them.\n" -"\t\tFirst we learn how to use the file collections in the agent's view, how " -"to conduct it manually, agent by agent, without using collections,\n" -"\t\t and how to do the same thing by using policies.Our first task is to " -"arrange a compilation of files. In order to do this, please go to the " -"agent's \n" -"\t\t administrator. Subsequently, we're going to see a 'sub option' called " -"'Collections'. Please click on it in order to create a new collection as we " -"can see on \n" -"\t\t the picture below. " -msgstr "" -"Una colección de archivos es un grupo de archivos (ej: scripts o ejecutable) " -"los cuales son \n" -"\t\t automáticamente copiados a un directorio específico del agente (bajo " -"Windows o UNIX). Las colecciones de archivos permiten ser propagadas\n" -"\t\t junto con las políticas con el fin de ser utilizadas por un grupo de " -"agentes, utilizando un \"paquete\" de scripts y módulos que los utilizan.\n" -"\t\t Primero aprendemos a utilizar las colecciones de archivos en la vista " -"del agente y llevarla a cabo de forma manual, agente por agente, sin " -"necesidad de utilizar las colecciones,\n" -"\t\t y hacer lo mismo usando políticas. Nuestra primera tarea es organizar " -"una compilación de archivos. Para hacer esto, por favor ve al administrador " -"\n" -"\t\t de agentes. Posteriormente, vamos a ver una \"sub opción\" llamada " -"\"Colecciones\". Por favor, pincha en ella para crear una nueva colección " -"como se puede ver en \n" -"\t\t la imagen de abajo. " - -#: ../../general/first_task/custom_fields.php:19 -#: ../../general/first_task/fields_manager.php:18 -msgid "There are no custom fields defined yet." -msgstr "No hay campos personalizados definidos todavía" - -#: ../../general/first_task/custom_fields.php:24 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:170 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: ../../general/first_task/custom_fields.php:27 -#: ../../general/first_task/custom_fields.php:36 -msgid "Create Custom Fields" -msgstr "Crear campos personalizados" - -#: ../../general/first_task/custom_fields.php:30 -msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t You're able to create custom fields by klicking on 'Administration' -> " -"'Manage monitoring' -> 'Manage custom fields'. " -msgstr "" -"Los campos personalizados son una manera fácil de personalizar la " -"información del agente.\n" -"\t \t Puedes crear campos personalizados haciendo clic en \"Administración\" " -"-> \"Administrar monitorización\" -> \"Administrar campos personalizados\". " - -#: ../../general/first_task/custom_graphs.php:19 -msgid "There are no custom graphs defined yet." -msgstr "No hay gráficos personalizados definidos todavía" - -#: ../../general/first_task/custom_graphs.php:24 -msgid "Custom Graphs" -msgstr "Gráficos personalizados" - -#: ../../general/first_task/custom_graphs.php:27 -#: ../../general/first_task/custom_graphs.php:39 -msgid "Create Custom Graph" -msgstr "Crear gráfico personalizado" - -#: ../../general/first_task/custom_graphs.php:30 +#: ../../godmode/update_manager/update_manager.offline.php:66 #, php-format msgid "" -"Graphs are designed to show the data collected by %s in a temporary scale " -"defined by the user.\n" -"\t\t\t\t%s Graphs display data in real time. They are generated every time " -"the operator requires any of them and display the up-to-date state.\n" -"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " -"graphs the user customizes by using one or more modules to do so." +"Please keep in mind that this package is going to override your actual %s " +"files and that it's recommended to conduct a backup before continuing the " +"updating process." msgstr "" -"Las gráficas están diseñadas para mostrar los datos recogidos por %s en una " -"escala temporal definida por el usuario.\n" -"\t\t\t\tLas gráficas de %s muestran datos en tiempo real. Se generan cada " -"vez que el operador necesita cualquiera de ellas y muestran su estado " -"actualizado.\n" -"\t\t\t\tHay dos tipos de gráficas: Las gráficas automatizadas del agente y " -"las gráficas personalizadas por el usuario mediante uno o más módulos." +"Tenga en cuenta que este paquete anulará los archivos de %s actuales, por lo " +"que se recomienda hacer una copia de seguridad antes de continuar con el " +"proceso de actualización." -#: ../../general/first_task/fields_manager.php:22 -msgid "Fields Manager" -msgstr "Gestor de campos" +#: ../../godmode/update_manager/update_manager.offline.php:67 +msgid "Click on the file below to begin." +msgstr "Haz clic en el archivo de abajo para comenzar." -#: ../../general/first_task/fields_manager.php:25 -msgid "Create Fields Manager" -msgstr "Gestor de creación de archivos" +#: ../../godmode/update_manager/update_manager.offline.php:68 +msgid "Updating" +msgstr "Actualizando" -#: ../../general/first_task/fields_manager.php:28 +#: ../../godmode/update_manager/update_manager.offline.php:69 +msgid "Package updated successfully." +msgstr "Paquete actualizado correctamente" + +#: ../../godmode/update_manager/update_manager.offline.php:70 +msgid "If there are any database change, it will be applied." +msgstr "Si hay algún cambio en la base de datos, se aplicará." + +#: ../../godmode/update_manager/update_manager.offline.php:101 +msgid "This update does not correspond to the next version of Pandora" +msgstr "" +"Esta actualización no se corresponde con la siguiente versión de Pandora FMS" + +#: ../../godmode/update_manager/update_manager.php:41 +msgid "Offline update manager" +msgstr "Administrador de actualizaciones offline" + +#: ../../godmode/update_manager/update_manager.php:47 +msgid "Online update manager" +msgstr "Administrador de actualizaciones online" + +#: ../../godmode/update_manager/update_manager.php:53 +msgid "Update manager » Setup" +msgstr "Configuración del Administrador de actualizaciones" + +#: ../../godmode/update_manager/update_manager.php:57 +msgid "Update manager » Offline" +msgstr "Administrador de actualizaciones » Offline" + +#: ../../godmode/update_manager/update_manager.php:61 +msgid "Update manager » Online" +msgstr "Administrador de actualizaciones » Online" + +#: ../../godmode/users/profile_list.php:55 +#: ../../godmode/users/configure_profile.php:51 +#, php-format +msgid "Profiles defined on %s" +msgstr "Perfiles definidos en %s." + +#: ../../godmode/users/profile_list.php:80 +#: ../../godmode/users/user_list.php:219 +msgid "There was a problem deleting the profile" +msgstr "Error al borrar el perfil" + +#: ../../godmode/users/profile_list.php:207 +msgid "There was a problem updating this profile" +msgstr "Error al borrar el perfil" + +#: ../../godmode/users/profile_list.php:210 +msgid "Profile name cannot be empty" +msgstr "El nombre de perfil no puede estar vacío." + +#: ../../godmode/users/profile_list.php:256 +#: ../../godmode/users/profile_list.php:259 +msgid "There was a problem creating this profile" +msgstr "Error al crear el perfil" + +#: ../../godmode/users/profile_list.php:375 +msgid "There are no defined profiles" +msgstr "No hay perfiles definidos" + +#: ../../godmode/users/configure_profile.php:117 +msgid "Create profile" +msgstr "Crear perfil" + +#: ../../godmode/users/configure_profile.php:122 +msgid "There was a problem loading profile" +msgstr "Error al cargar el perfil" + +#: ../../godmode/users/configure_profile.php:191 +msgid "Update profile" +msgstr "Actualizar perfil" + +#: ../../godmode/users/configure_profile.php:201 +msgid "Update Profile" +msgstr "Actualizar perfil" + +#: ../../godmode/users/configure_profile.php:203 +msgid "Create Profile" +msgstr "Crear perfil" + +#: ../../godmode/users/configure_profile.php:224 +msgid "View agents" +msgstr "Ver agentes" + +#: ../../godmode/users/configure_profile.php:228 +msgid "Disable agents" +msgstr "Desactivar agentes" + +#: ../../godmode/users/configure_profile.php:232 +msgid "Edit agents" +msgstr "Editar agentes" + +#: ../../godmode/users/configure_profile.php:239 +msgid "Edit alerts" +msgstr "Editar alertas" + +#: ../../godmode/users/configure_profile.php:254 +msgid "Edit events" +msgstr "Editar eventos" + +#: ../../godmode/users/configure_profile.php:258 +#: ../../godmode/events/events.php:88 ../../godmode/events/events.php:96 +#: ../../operation/events/events.php:748 +msgid "Manage events" +msgstr "Gestionar eventos" + +#: ../../godmode/users/configure_profile.php:265 +msgid "View reports" +msgstr "Ver informes" + +#: ../../godmode/users/configure_profile.php:269 +msgid "Edit reports" +msgstr "Editar informes" + +#: ../../godmode/users/configure_profile.php:273 +msgid "Manage reports" +msgstr "Gestionar informes" + +#: ../../godmode/users/configure_profile.php:280 +msgid "View network maps" +msgstr "Ver mapas de red" + +#: ../../godmode/users/configure_profile.php:284 +msgid "Edit network maps" +msgstr "Editar mapas de red" + +#: ../../godmode/users/configure_profile.php:288 +msgid "Manage network maps" +msgstr "Gestionar mapas de red" + +#: ../../godmode/users/configure_profile.php:295 +#: ../../include/functions_menu.php:509 +msgid "View visual console" +msgstr "Ver consola visual" + +#: ../../godmode/users/configure_profile.php:299 +msgid "Edit visual console" +msgstr "Editar consola visual" + +#: ../../godmode/users/configure_profile.php:303 +msgid "Manage visual console" +msgstr "Gestionar consolas visuales" + +#: ../../godmode/users/configure_profile.php:310 +msgid "View incidents" +msgstr "Ver incidentes" + +#: ../../godmode/users/configure_profile.php:314 +msgid "Edit incidents" +msgstr "Editar incidentes" + +#: ../../godmode/users/configure_profile.php:318 +msgid "Manage incidents" +msgstr "Gestionar incidentes" + +#: ../../godmode/users/configure_profile.php:330 +msgid "Manage users" +msgstr "Gestionar usuarios" + +#: ../../godmode/users/configure_profile.php:337 +msgid "Manage database" +msgstr "Gestionar la base de datos" + +#: ../../godmode/users/configure_profile.php:344 +#, php-format +msgid "%s management" +msgstr "Gestión %s." + +#: ../../godmode/users/user_list.php:145 +#, php-format +msgid "Users defined on %s" +msgstr "Usuarios definidos en %s" + +#: ../../godmode/users/user_list.php:165 +#, php-format +msgid "Deleted user %s" +msgstr "Usuario eliminado %s" + +#: ../../godmode/users/user_list.php:172 ../../godmode/users/user_list.php:210 +msgid "There was a problem deleting the user" +msgstr "Error al borrar el usuario" + +#: ../../godmode/users/user_list.php:187 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "Usuario %s eliminado de la Metaconsola" + +#: ../../godmode/users/user_list.php:198 +#, php-format +msgid "Deleted user %s from %s" +msgstr "Usuario %s eliminado de %s" + +#: ../../godmode/users/user_list.php:204 +#, php-format +msgid "Successfully deleted from %s" +msgstr "Eliminado correctamente de %s" + +#: ../../godmode/users/user_list.php:205 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "Error al eliminar al usuario de %s" + +#: ../../godmode/users/user_list.php:235 +msgid "There was a problem disabling user" +msgstr "Error al deshabilitar el usuario" + +#: ../../godmode/users/user_list.php:241 +msgid "There was a problem enabling user" +msgstr "Error al habilitar el usuario" + +#: ../../godmode/users/user_list.php:270 ../../godmode/users/user_list.php:274 +msgid "Search by username, fullname or email" +msgstr "Buscar por nombre de usuario, nombre completo o email" + +#: ../../godmode/users/user_list.php:300 +msgid "Users control filter" +msgstr "Filtro de control de usuarios" + +#: ../../godmode/users/user_list.php:328 +#: ../../godmode/users/configure_user.php:668 +#: ../../godmode/users/configure_user.php:684 +#: ../../include/functions_reporting_html.php:3996 +#: ../../operation/search_users.php:34 ../../operation/users/user_edit.php:242 +#: ../../operation/snmpconsole/snmp_view.php:821 +msgid "User ID" +msgstr "ID usuario" + +#: ../../godmode/users/user_list.php:333 +msgid "Profile / Group" +msgstr "Perfil/Grupo" + +#: ../../godmode/users/user_list.php:484 +#: ../../godmode/users/configure_user.php:769 +#: ../../operation/search_users.php:52 +msgid "Administrator" +msgstr "Administrador" + +#: ../../godmode/users/user_list.php:528 ../../operation/search_users.php:75 +msgid "The user doesn't have any assigned profile/group" +msgstr "El usuario no tiene ningún perfil asignado." + +#: ../../godmode/users/user_list.php:542 +msgid "Deleting User" +msgstr "Borrando usuario" + +#: ../../godmode/users/user_list.php:544 +msgid "Delete from all consoles" +msgstr "Eliminar de todas las consolas" + +#: ../../godmode/users/user_list.php:544 +#, php-format +msgid "Deleting User %s from all consoles" +msgstr "Eliminando usuario %s de todas las consolas" + +#: ../../godmode/users/user_list.php:562 +#: ../../godmode/users/configure_user.php:129 +msgid "Create user" +msgstr "Crear usuario" + +#: ../../godmode/users/user_list.php:565 +#: ../../godmode/users/configure_user.php:223 +#, php-format 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'. " +"The current authentication scheme doesn't support creating users on %s" +msgstr "El sistema de autenticación no permite crear usuarios en %s." + +#: ../../godmode/users/configure_user.php:127 +msgid "Update user" +msgstr "Actualizar usuario" + +#: ../../godmode/users/configure_user.php:151 +#: ../../operation/users/user_edit_header.php:111 +msgid "User detail editor" +msgstr "Editor de detalles de usuario" + +#: ../../godmode/users/configure_user.php:298 +msgid "User ID cannot be empty" +msgstr "El ID de usuario no puede estar vacío." + +#: ../../godmode/users/configure_user.php:304 +msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" -"Los campos personalizados son una forma fácil de personalizar la información " -"de los agentes.\n" -"\t\t\t\tPuedes crear campos personalizados haciendo clic en " -"\"Administración\" -> \"Gestionar monitorización\" -> \"Gestionar campos " -"personalizados\". " +"ID de usuario no válido: no están permitidos los espacios en blanco al " +"principio o al final" -#: ../../general/first_task/fields_manager.php:34 -msgid "Create Fields " -msgstr "Crear campos " +#: ../../godmode/users/configure_user.php:310 +msgid "Passwords cannot be empty" +msgstr "Las contraseñas no pueden estar vacías." -#: ../../general/first_task/incidents.php:21 -msgid "There are no incidents defined yet." -msgstr "No hay incidentes definidos todavía" +#: ../../godmode/users/configure_user.php:316 +msgid "Passwords didn't match" +msgstr "Las contraseñas no coinciden." + +#: ../../godmode/users/configure_user.php:369 +msgid "" +"Strict ACL is not recommended for admin users because performance could be " +"affected." +msgstr "" +"ACL estricto no está recomendado para usuarios administradores porque el " +"rendimiento podría verse afectado." + +#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:495 +#: ../../godmode/users/configure_user.php:558 +#: ../../godmode/users/configure_user.php:565 +#: ../../godmode/users/configure_user.php:596 +#: ../../operation/users/user_edit.php:189 +#: ../../operation/users/user_edit.php:232 +msgid "User info successfully updated" +msgstr "Información del usuario actualizada correctamente" + +#: ../../godmode/users/configure_user.php:472 +#: ../../godmode/users/configure_user.php:496 +#: ../../godmode/users/configure_user.php:559 +#: ../../godmode/users/configure_user.php:566 +#: ../../godmode/users/configure_user.php:597 +msgid "Error updating user info (no change?)" +msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)" + +#: ../../godmode/users/configure_user.php:512 +msgid "Passwords does not match" +msgstr "Las contraseñas no coinciden." + +#: ../../godmode/users/configure_user.php:586 +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:626 +msgid "Profile added successfully" +msgstr "Perfil añadido correctamente" + +#: ../../godmode/users/configure_user.php:627 +msgid "Profile cannot be added" +msgstr "El perfil no se puede añadir." + +#: ../../godmode/users/configure_user.php:661 +msgid "Update User" +msgstr "Actualizar usuario" + +#: ../../godmode/users/configure_user.php:663 +msgid "Create User" +msgstr "Crear usuario" + +#: ../../godmode/users/configure_user.php:707 +#: ../../operation/users/user_edit.php:256 +msgid "Full (display) name" +msgstr "Nombre completo" + +#: ../../godmode/users/configure_user.php:724 +#: ../../operation/users/user_edit.php:390 +msgid "Timezone" +msgstr "Zona horaria" + +#: ../../godmode/users/configure_user.php:724 +#: ../../operation/users/user_edit.php:390 +msgid "The timezone must be that of the associated server." +msgstr "La zona horaria debe ser la del servidor asociado." + +#: ../../godmode/users/configure_user.php:755 +#: ../../operation/users/user_edit.php:282 +msgid "Password confirmation" +msgstr "Confirmar contraseña" + +#: ../../godmode/users/configure_user.php:763 +msgid "Global Profile" +msgstr "Perfil global" + +#: ../../godmode/users/configure_user.php:770 +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:782 +#: ../../operation/search_users.php:61 +msgid "Standard User" +msgstr "Usuario estándar" + +#: ../../godmode/users/configure_user.php:783 +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:804 +#: ../../operation/users/user_edit.php:275 +msgid "E-mail" +msgstr "Correo electrónico" + +#: ../../godmode/users/configure_user.php:820 +#: ../../operation/users/user_edit.php:277 +msgid "Phone number" +msgstr "Número de teléfono" + +#: ../../godmode/users/configure_user.php:864 +msgid "Search custom field view" +msgstr "Buscar vista de campo personalizado" + +#: ../../godmode/users/configure_user.php:864 +msgid "Load by default the selected view in custom field view" +msgstr "" +"Cargar por defecto la vista seleccionada en la vista de campo personalizado" + +#: ../../godmode/users/configure_user.php:881 +msgid "Use global conf" +msgstr "Usar configuración global" + +#: ../../godmode/users/configure_user.php:886 +#: ../../operation/users/user_edit.php:335 +msgid "Home screen" +msgstr "Pantalla de inicio" + +#: ../../godmode/users/configure_user.php:886 +#: ../../operation/users/user_edit.php:335 +msgid "" +"User can customize the home page. By default, will display 'Agent Detail'. " +"Example: Select 'Other' and type " +"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 to show " +"agent detail view" +msgstr "" +"El usuario puede personalizar la página de inicio. Mostrará \"Detalle de " +"agente\" por defecto. Ejemplo: seleccionar \"otro\" y escribir " +"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para " +"mostrar la vista de detalle de agente" + +#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/events/events.php:37 ../../operation/users/user_edit.php:339 +#: ../../operation/events/events.php:722 +msgid "Event list" +msgstr "Lista de eventos" + +#: ../../godmode/users/configure_user.php:894 +#: ../../operation/users/user_edit.php:342 +#: ../../operation/agentes/alerts_status.php:178 ../../operation/menu.php:65 +msgid "Alert detail" +msgstr "Detalle de alertas" + +#: ../../godmode/users/configure_user.php:895 +msgid "External link" +msgstr "Enlace externo" + +#: ../../godmode/users/configure_user.php:945 +msgid "Metaconsole access" +msgstr "Acceso a la Metaconsola" + +#: ../../godmode/users/configure_user.php:963 +msgid "Not Login" +msgstr "No se inicia la sesión" + +#: ../../godmode/users/configure_user.php:964 +msgid "The user with not login set only can access to API." +msgstr "El usuario sin permiso de acceso solo puede tener acceso a la API." + +#: ../../godmode/users/configure_user.php:967 +msgid "Session Time" +msgstr "TIempo de sesión" + +#: ../../godmode/users/configure_user.php:968 +msgid "" +"This is defined in minutes, If you wish a permanent session should putting -" +"1 in this field." +msgstr "" +"Esto está definido en minutos; si quieres una sesión permanente, pon -1 en " +"este campo." + +#: ../../godmode/users/configure_user.php:982 +msgid "Default event filter" +msgstr "Filtro de evento por defecto" + +#: ../../godmode/users/configure_user.php:985 +#: ../../include/functions_config.php:448 +msgid "Disabled newsletter" +msgstr "Newsletter deshabilitada" + +#: ../../godmode/users/configure_user.php:1000 +msgid "eHorus user access enabled" +msgstr "Acceso de usuario eHorus habilitado" + +#: ../../godmode/users/configure_user.php:1003 +#: ../../include/functions_config.php:1480 +msgid "eHorus user" +msgstr "Usuario de eHorus" + +#: ../../godmode/users/configure_user.php:1005 +#: ../../include/functions_config.php:1484 +msgid "eHorus password" +msgstr "Contraseña de eHorus" + +#: ../../godmode/users/configure_user.php:1014 +msgid "Enable agents managment" +msgstr "Habilitar gestión de agentes" + +#: ../../godmode/users/configure_user.php:1017 +msgid "Assigned node" +msgstr "Nodo asignado" + +#: ../../godmode/users/configure_user.php:1017 +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:1026 +msgid "Enable node access" +msgstr "Habilitar el acceso al nodo" + +#: ../../godmode/users/configure_user.php:1026 +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/agentes/agent_template.php:67 +#: ../../include/functions_api.php:14063 +msgid "Created by template " +msgstr "Creado mediante la plantilla " + +#: ../../godmode/agentes/agent_template.php:154 +#: ../../include/functions_api.php:14150 +msgid "Error adding modules" +msgstr "Error al añadir módulos" + +#: ../../godmode/agentes/agent_template.php:156 +#: ../../include/functions_api.php:14152 +msgid "Error adding modules. The following errors already exists: " +msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: " + +#: ../../godmode/agentes/agent_template.php:161 +#: ../../include/functions_api.php:14157 +msgid "Modules successfully added" +msgstr "Módulos añadidos correctamente" + +#: ../../godmode/agentes/agent_template.php:186 +msgid "Assign" +msgstr "Asignar" + +#: ../../godmode/agentes/agent_template.php:267 +#: ../../mobile/operation/modules.php:736 +msgid "No modules" +msgstr "Sin módulos" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "Opcional. Campo de nombre WMI. Ante la duda, dejar en blanco." + +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 +msgid "" +"Optional. Substring to look for in the WQL query result. The module returns " +"1 if found, 0 if not." +msgstr "" +"Opcional. Subcadena para buscar en los resultados de la consulta WQL. El " +"módulo devuelve 1 si se ha encontrado algún resultado, 0 en caso contrario." + +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +msgid "" +"Column number to retrieve from the WQL query result (starting from zero)." +msgstr "" +"Número de columna a obtener del resultado de la consulta WQL (a partir de 0)." + +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:330 +#: ../../operation/agentes/status_monitor.php:1172 +#: ../../operation/agentes/estado_generalagente.php:372 +msgid "Last status change" +msgstr "Último cambio de estado" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "Mostrar campo de detalle de monitor" + +#: ../../godmode/agentes/configurar_agente.php:230 +#: ../../godmode/agentes/configurar_agente.php:939 +msgid "No agent alias specified" +msgstr "No se ha especificado el alias del agente" + +#: ../../godmode/agentes/configurar_agente.php:353 +#: ../../include/functions_api.php:1644 +msgid "Could not be created, because name already exists" +msgstr "No se pudo crear, el nombre ya existe." + +#: ../../godmode/agentes/configurar_agente.php:355 +#: ../../include/functions_api.php:1646 +msgid "Could not be created, because IP already exists" +msgstr "No se ha podido crear porque la IP ya existe" + +#: ../../godmode/agentes/configurar_agente.php:406 ../../godmode/menu.php:146 +#: ../../godmode/wizards/HostDevices.class.php:1074 +msgid "Module templates" +msgstr "Plantillas de módulos" + +#: ../../godmode/agentes/configurar_agente.php:457 +#: ../../operation/agentes/ver_agente.php:1221 +msgid "GIS data" +msgstr "Datos GIS" -#: ../../general/first_task/incidents.php:28 #: ../../godmode/agentes/configurar_agente.php:494 #: ../../godmode/agentes/configurar_agente.php:649 -#: ../../operation/agentes/ver_agente.php:1234 +#: ../../operation/agentes/ver_agente.php:1234 ../../operation/menu.php:494 #: ../../operation/incidents/incident_statistics.php:27 -#: ../../operation/menu.php:471 +#: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "Incidentes" -#: ../../general/first_task/incidents.php:31 -#: ../../general/first_task/incidents.php:46 -msgid "Create Incidents" -msgstr "Crear incidentes" +#: ../../godmode/agentes/configurar_agente.php:644 +msgid "Gis" +msgstr "GIS" -#: ../../general/first_task/incidents.php:34 +#: ../../godmode/agentes/configurar_agente.php:686 +msgid "SNMP explorer" +msgstr "Explorador SNMP" + +#: ../../godmode/agentes/configurar_agente.php:717 +#: ../../godmode/agentes/configurar_agente.php:739 ../../godmode/menu.php:103 +msgid "Resources" +msgstr "Recursos" + +#: ../../godmode/agentes/configurar_agente.php:727 +msgid "Agent manager" +msgstr "Administrador de agente" + +#: ../../godmode/agentes/configurar_agente.php:767 +#: ../../godmode/servers/modificar_server.php:180 +msgid "Conf file deleted successfully" +msgstr "Archivo de configuración borrado correctamente" + +#: ../../godmode/agentes/configurar_agente.php:768 +#: ../../godmode/servers/modificar_server.php:181 +msgid "Could not delete conf file" +msgstr "No se puede borrar el archivo de configuración" + +#: ../../godmode/agentes/configurar_agente.php:812 +#: ../../godmode/agentes/configurar_agente.php:816 +msgid "No data to normalize" +msgstr "No hay datos para normalizar" + +#: ../../godmode/agentes/configurar_agente.php:821 #, php-format -msgid "" -"Besides receiving and processing data to monitor systems or applications,\n" -"\t\t\tyou're also required to monitor possible incidents which might take " -"place on these subsystems within the system's monitoring process.\n" -"\t\t\tFor it, the %s team has designed an incident manager from which any " -"user is able to open incidents,\n" -"\t\t\tthat explain what's happened on the network, and update them with " -"comments and files, at any time, in case there is a need to do so.\n" -"\t\t\tThis system allows users to work as a team, along with different roles " -"and work-flow systems which allow an incident to be\n" -"\t\t\tmoved from one group to another, and members from different groups and " -"different people could work on the same incident, sharing information and " -"files.\n" -"\t\t" -msgstr "" -"A parte recibir y procesar datos para monitorizar sistemas y aplicaciones,\n" -"\t\t\ttambién tiene que monitorizar las posibles incidencias que puedan " -"ocurrir en estos subsistemas en el proceso de monitorización del sistema.\n" -"\t\t\tPara ello, el equipo de %s ha diseñado un gestor de incidencias desde " -"el que cualquier usuario puede crear incidencias\n" -"\t\t\tque explican qué ha sucedido en la red y actualizar su estado a través " -"de comentarios y archivos en cualquier momento, en caso de que sea necesario " -"hacerlo.\n" -"\t\t\tEste sistema permite que los usuarios trabajen como un equipo, junto " -"con diferentes tareas y sistemas de flujo de trabajo que permiten que la " -"incidencia pase\n" -"\t\t\t de un equipo a otro, y los diferentes miembros de los diferentes " -"equipos puedan trabajar sobre la misma incidencia, compartiendo información " -"y archivos.\n" -"\t\t" +msgid "Deleted data above %f" +msgstr "Eliminar datos por encima de %f" -#: ../../general/first_task/map_builder.php:23 -#: ../../godmode/reporting/map_builder.php:413 -msgid "There are no visual console defined yet." -msgstr "No hay consola visual definida todavía" - -#: ../../general/first_task/map_builder.php:31 -#: ../../godmode/reporting/map_builder.php:84 -#: ../../include/class/OrderInterpreter.class.php:233 -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:34 -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:281 -#: ../../enterprise/extensions/visual_console_manager.php:107 -#: ../../enterprise/godmode/reporting/visual_console_template.php:87 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:86 -#: ../../enterprise/include/functions_enterprise.php:317 -#: ../../enterprise/meta/general/main_header.php:219 -msgid "Visual Console" -msgstr "Consola visual" - -#: ../../general/first_task/map_builder.php:34 -#: ../../general/first_task/map_builder.php:45 -msgid "Create Visual Console" -msgstr "Crear consola visual" - -#: ../../general/first_task/map_builder.php:37 +#: ../../godmode/agentes/configurar_agente.php:822 #, php-format -msgid "" -"%s allows users to create visual maps on which each user is able to create " -"his or her own monitoring map. The new visual console editor is much more " -"practical, although the prior visual console editor had its advantages. On " -"the new visual console, we've been successful in imitating the sensation and " -"touch of a drawing application like GIMP. We've also simplified the editor " -"by dividing it into several subject-divided tabs named 'Data', 'Preview', " -"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " -"designed to handle are 'static images', 'percentage bars', 'module graphs' " -"and 'simple values'." -msgstr "" -"%s permite a los usuarios crear mapas visuales en los que cada usuario puede " -"crear su propio mapa de monitorización. El nuevo editor de consola visual es " -"mucho más práctico, a pesar de que el editor de consola visual anterior " -"tenía sus ventajas. Hemos conseguido imitar la sensación y el toque de una " -"aplicación de dibujo como GIMP en la nueva consola visual. También hemos " -"simplificado el editor dividiéndolo en diferentes pestañas clasificadas " -"temáticamente llamadas \"Datos\", \"Vista previa\", \"Asistente\", \"Lista " -"de elementos\" y \"Editor\". Los elementos para los que el mapa visual de %s " -"fue diseñado son las \"imágenes estáticas\", las \"barras de porcentajes\" y " -"los \"valores simples\"." +msgid "Error normalizing module %s" +msgstr "Error al normalizar el módulo %s" -#: ../../general/first_task/network_map.php:19 -msgid "There are no network map defined yet." -msgstr "No hay mapas de red definidos todavía" - -#: ../../general/first_task/network_map.php:26 -msgid "Network Map" -msgstr "Mapa de red" - -#: ../../general/first_task/network_map.php:29 -#: ../../general/first_task/network_map.php:50 -msgid "Create Network Map" -msgstr "Crear mapa de red" - -#: ../../general/first_task/network_map.php:32 -msgid "" -"There is also an open-source version of the network map. \n" -"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " -"and relationships, agents, modules and groups available to the user. \n" -"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" -"\t\t\t" -msgstr "" -"Existe también una versión de código abierto del mapa de red. \n" -"\t\t\t\t\t\t\t\tEsta funcionalidad permite visualizar gráficamente los nodos " -"y sus relaciones, agentes, módulos y grupos disponibles para el usuario. \n" -"\t\t\t\t\t\t\t\tHay tres tipos de mapas de red:\n" -"\t\t\t" - -#: ../../general/first_task/network_map.php:37 -msgid "Topology Map" -msgstr "Mapa de topología" - -#: ../../general/first_task/network_map.php:38 -msgid "Group Map" -msgstr "Mapa de grupo" - -#: ../../general/first_task/network_map.php:39 -msgid "Radial Map (User without strict user)" -msgstr "Mapa radial (sin usuario estricto)" - -#: ../../general/first_task/network_map.php:40 -msgid "Dinamic Map" -msgstr "Mapa dinámico" - -#: ../../general/first_task/network_map.php:41 -msgid "Policy Map (Only Enterprise version)" -msgstr "Mapa de políticas (solo versión Enterprise)" - -#: ../../general/first_task/omnishell.php:27 -msgid "There is no command defined yet." -msgstr "Aún no hay un comando definido." - -#: ../../general/first_task/omnishell.php:31 -#: ../../general/first_task/omnishell.php:34 -#: ../../enterprise/godmode/menu.php:288 -msgid "Omnishell" -msgstr "Omnishell" - -#: ../../general/first_task/omnishell.php:37 +#: ../../godmode/agentes/configurar_agente.php:949 #, php-format +msgid "The group id %d is incorrect." +msgstr "El grupo id %d es incorrecto." + +#: ../../godmode/agentes/configurar_agente.php:951 +msgid "Duplicate main IP address" +msgstr "Duplicar la dirección IP principal" + +#: ../../godmode/agentes/configurar_agente.php:1007 +msgid "There was a problem updating the agent" +msgstr "Hubo un problema al actualizar el agente" + +#: ../../godmode/agentes/configurar_agente.php:1141 +msgid "There was a problem loading the agent" +msgstr "Hubo un problema al cargar el agente" + +#: ../../godmode/agentes/configurar_agente.php:1626 msgid "" -"Omnishell is an enterprise feature which allows you to execute a structured " -"command along any agent in your %s. The only requirement is to have remote " -"configuration enabled in your agent." +"There was a problem updating module. Another module already exists with the " +"same name." msgstr "" -"Omnishell es una función Enterprise que le permite ejecutar un comando " -"estructurado junto con cualquier agente en %s. El único requisito es tener " -"la configuración remota habilitada en el agente." +"Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo " +"nombre." -#: ../../general/first_task/omnishell.php:42 +#: ../../godmode/agentes/configurar_agente.php:1630 msgid "" -"You can execute any command on as many agents you need, and check the " -"execution on all of them using the Omnishell Command View" +"There was a problem updating module. Some required fields are missed: (name)" msgstr "" -"Puede ejecutar cualquier comando en tantos agentes como desee y comprobar la " -"ejecución de todos ellos mediante la vista del comando Omnishell" +"Hubo un problema al actualizar el módulo. Faltan algunos campos requeridos: " +"(nombre)" -#: ../../general/first_task/omnishell.php:50 -msgid "Define a command" -msgstr "Definir un comando" +#: ../../godmode/agentes/configurar_agente.php:1634 +msgid "There was a problem updating module. \"No change\"" +msgstr "Hubo un problema al actualizar el módulo. \"Sin cambios\"." -#: ../../general/first_task/planned_downtime.php:18 -msgid "There are no planned downtime defined yet." -msgstr "No se ha definido aún un tiempo de inactividad planificado" +#: ../../godmode/agentes/configurar_agente.php:1640 +msgid "There was a problem updating module. Processing error" +msgstr "Hubo un problema al actualizar el módulo. Error de procesamiento." -#: ../../general/first_task/planned_downtime.php:22 -#: ../../godmode/agentes/planned_downtime.editor.php:62 -#: ../../include/functions_reporting_html.php:795 -#: ../../include/functions_reporting_html.php:3551 -#: ../../enterprise/include/functions_reporting.php:1733 -#: ../../enterprise/include/functions_reporting.php:2673 -#: ../../enterprise/include/functions_reporting.php:2922 -#: ../../enterprise/include/functions_reporting.php:3666 -msgid "Planned Downtime" -msgstr "Tiempo de inactividad planificado" +#: ../../godmode/agentes/configurar_agente.php:1669 +msgid "Module successfully updated" +msgstr "Módulo actualizado correctamente" -#: ../../general/first_task/planned_downtime.php:25 -#: ../../general/first_task/planned_downtime.php:37 -msgid "Create Planned Downtime" -msgstr "Crear tiempo de inactividad planificado" +#: ../../godmode/agentes/configurar_agente.php:1814 +msgid "" +"There was a problem adding module. Another module already exists with the " +"same name." +msgstr "" +"Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo " +"nombre." -#: ../../general/first_task/planned_downtime.php:28 +#: ../../godmode/agentes/configurar_agente.php:1818 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "" +"Hubo un problema al añadir el módulo. Faltan algunos campos requeridos: " +"(nombre)" + +#: ../../godmode/agentes/configurar_agente.php:1824 +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:1853 +#: ../../godmode/reporting/graph_builder.php:311 +msgid "Module added successfully" +msgstr "Módulo añadido correctamente" + +#: ../../godmode/agentes/configurar_agente.php:2101 +msgid "There was a problem deleting the module" +msgstr "Hubo un problema al borrar el módulo" + +#: ../../godmode/agentes/configurar_agente.php:2105 +msgid "Module deleted succesfully" +msgstr "Módulo borrado correctamente" + +#: ../../godmode/agentes/configurar_agente.php:2232 +#: ../../include/functions_api.php:10128 #, php-format -msgid "" -"%s contains a scheduled downtime management system.\n" -"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " -"intervals whenever there is down time by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. " -"During down time, down-time intervals aren't taken into\n" -"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " -"contain any data within those intervals." -msgstr "" -"%s contiene un sistema de gestión de paradas planificadas.\n" -"\t\t\t\t\t\tEste sistema fue diseñado para desactivar las alertas durante " -"intervalos específicos siempre que haya una parada a causa de un agente " -"desactivado.\n" -"\t\t\t\t\t\tSi un agente está desactivado, no recoge información. Durante " -"esta parada, los intervalos de parada no se tienen en\n" -"\t\t\t\t\t\tcuenta en la mayoría de las métricas e informes, porque los " -"agentes no contienen datos durante dichos intervalos." +msgid "Save by %s Console" +msgstr "Guardar por consola de %s" -#: ../../general/first_task/recon_view.php:18 -msgid "There are no discovery tasks defined yet." -msgstr "Aún no hay tareas de discovery definidas" - -#: ../../general/first_task/recon_view.php:22 -#: ../../godmode/wizards/HostDevices.class.php:743 -#: ../../include/class/CustomNetScan.class.php:478 -#: ../../include/functions_servers.php:590 -#: ../../include/functions_servers.php:1223 -#: ../../enterprise/extensions/ipam/ipam_editor.php:119 -#: ../../enterprise/include/class/Aws.cloud.php:433 -#: ../../enterprise/include/class/Aws.cloud.php:1097 -#: ../../enterprise/include/class/Azure.cloud.php:744 -#: ../../enterprise/include/class/MySQL.app.php:452 -#: ../../enterprise/include/class/Oracle.app.php:450 -#: ../../enterprise/include/class/SAP.app.php:471 -#: ../../enterprise/include/class/VMware.app.php:528 -msgid "Discovery server" -msgstr "Servidor Discovery" - -#: ../../general/first_task/recon_view.php:25 -msgid "Create Discovery Task" -msgstr "Crear tarea de Discovery" - -#: ../../general/first_task/recon_view.php:28 -msgid "" -"Discovery Task are used to find new elements in the network. \n" -"\t\tIf it detects any item, it will add that item to the monitoring, and if " -"that item it is already being monitored, then it will \n" -"\t\tignore it or will update its information.There are three types of " -"detection: Based on ICMP (pings), \n" -"\t\tSNMP (detecting the topology of networks " -"and their interfaces), and other customized " -"\n" -"\t\ttype. You can define your own customized recon script." -msgstr "" -"Las tareas de Discovery sirven para encontrar nuevos elementos en la red. \n" -"\t\tSi detecta alguno, lo añadirá a la monitorización y si ese elemento ya " -"está siendo monitorizado lo\n" -"\t\tignorará o actualizará la información de este. Hay tres tipos de " -"detección: Basada en ICMP (pings), \n" -"\t\tSNMP (detecta la topología de redes y sus " -"interfaces), y otro personalizado \n" -"\t\t. Puede definir su propio guión de reconocimiento personalizado." - -#: ../../general/first_task/recon_view.php:37 -msgid "Discover" -msgstr "Descubrir" - -#: ../../general/first_task/service_list.php:20 -msgid "There are no services defined yet." -msgstr "No hay servicios definidos todavía" - -#: ../../general/first_task/service_list.php:25 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:555 -#: ../../operation/agentes/ver_agente.php:1318 -#: ../../enterprise/dashboard/widgets/service_map.php:95 -#: ../../enterprise/godmode/menu.php:116 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:618 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:200 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:120 -#: ../../enterprise/godmode/services/services.elements.php:181 -#: ../../enterprise/godmode/services/services.service.php:349 -#: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/meta/general/main_header.php:201 -#: ../../enterprise/operation/menu.php:77 -#: ../../enterprise/operation/services/services.list.php:59 -#: ../../enterprise/operation/services/services.list.php:62 -#: ../../enterprise/operation/services/services.service_map.php:165 -#: ../../enterprise/operation/services/services.table_services.php:59 -#: ../../enterprise/operation/services/services.table_services.php:65 -#: ../../enterprise/operation/services/services.treeview_services.php:60 -#: ../../enterprise/operation/services/services.treeview_services.php:66 -msgid "Services" -msgstr "Servicios" - -#: ../../general/first_task/service_list.php:28 -#: ../../general/first_task/service_list.php:42 -msgid "Create Services" -msgstr "Crear servicios" - -#: ../../general/first_task/service_list.php:31 -msgid "" -"A service is a way to group your IT resources based on their " -"functionalities. \n" -"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " -"your support application, or even your printers.\n" -"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " -"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" -"\t\t\t\t\t\t By the following example, you're able to see more clearly what " -"a service is:\n" -"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -"the world. \n" -"\t\t\t\t\t\t\tHis company consists of three big departments: A management, " -"an on-line shop and support." -msgstr "" -"Un servicio es una forma de agrupar recursos de TI basados en tus " -"funcionalidades.\n" -"\t\t\t\t\t\tUn servicio puede ser por ejemplo tu página web oficial, tu " -"sistema CRM, tu aplicación de soporte o incluso tus impresoras.\n" -"\t\t\t\t\t\t Los servicios son grupos lógicos que pueden incluir hosts, " -"routers, switches, firewalls, CRMs, ERPs, sitios web y muchos otros " -"servicios. \n" -"\t\t\t\t\t\t Mediante el siguiente ejemplo, podrá ver más claramente lo que " -"es un servicio:\n" -"\t\t\t\t\t\t\tUn fabricante de chips vende computadoras por su página web en " -"todo el mundo. \n" -"\t\t\t\t\t\t\tSu empresa se compone de tres grandes departamentos: gestión, " -"tienda online y apoyo." - -#: ../../general/first_task/snmp_filters.php:18 -msgid "There are no SNMP filter defined yet." -msgstr "No hay filtro SNMP definido todavía" - -#: ../../general/first_task/snmp_filters.php:22 -msgid "SNMP Filter" -msgstr "Filtro SNMP" - -#: ../../general/first_task/snmp_filters.php:25 -#: ../../general/first_task/snmp_filters.php:37 -msgid "Create SNMP Filter" -msgstr "Crear un filtro SNMP" - -#: ../../general/first_task/snmp_filters.php:28 -msgid "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " -"Pandora FMS versions 3.2 and above, \n" -"\t\t\t\tit's possible to filter the traps that the server obtains in order " -"to avoid straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -" -"> 'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap which is going to run in conjunction with any of them - " -"just the ones for the server are going to get ruled out automatically. " -msgstr "" -"Algunos sistemas reciben un alto número de traps.\n" -"\t \t \t \t Solo es interesante realizar un seguimiento de un pequeño " -"porcentaje de ellos. En las versiones de Pandora FMS 3.2 y superiores,\n" -"\t \t \t \t es posible filtrar los traps que el servidor obtiene con el fin " -"de evitar forzar la aplicación innecesariamente.\n" -"\t \t \t \t Con el fin de definir diferentes filtros, por favor ve a " -"\"Administración\" -> \"Administrar consola SNMP\" y \"Filtros SNMP\".\n" -"\t \t \t \t Un trap que se va a ejecutar en conjunto con cualquiera de ellos " -"- solo los del servidor van a ser descartado automáticamente. " - -#: ../../general/first_task/tags.php:18 -msgid "There are no tags defined yet." -msgstr "No hay etiquetas definidas todavía" - -#: ../../general/first_task/tags.php:22 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/massive/massive_copy_modules.php:156 -#: ../../godmode/massive/massive_delete_modules.php:377 -#: ../../godmode/massive/massive_delete_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:378 -#: ../../godmode/massive/massive_edit_modules.php:463 -#: ../../godmode/massive/massive_edit_modules.php:975 -#: ../../godmode/modules/manage_network_components_form_common.php:338 -#: ../../godmode/tag/edit_tag.php:57 ../../include/functions_events.php:201 -#: ../../include/functions_events.php:268 -#: ../../include/functions_events.php:4622 -#: ../../include/functions_events.php:6075 -#: ../../include/functions_events.php.orig:199 -#: ../../include/functions_events.php.orig:266 -#: ../../include/functions_events.php.orig:4508 -#: ../../include/functions_events.php.orig:5979 -#: ../../include/functions_treeview.php:162 -#: ../../include/functions_reporting_html.php:2668 -#: ../../include/functions_profile.php:213 -#: ../../mobile/operation/events.php:557 -#: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/agentes/group_view.php:193 -#: ../../operation/agentes/status_monitor.php:447 -#: ../../operation/events/events.build_table.php:283 -#: ../../operation/tree.php:47 ../../operation/users/user_edit.php:755 -#: ../../enterprise/dashboard/widgets/events_list.php:99 -#: ../../enterprise/dashboard/widgets/tree_view.php:40 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:105 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:146 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:814 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:106 -#: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/setup/setup_auth.php:226 -#: ../../enterprise/godmode/setup/setup_auth.php:979 -#: ../../enterprise/meta/include/functions_events_meta.php:106 -#: ../../enterprise/operation/agentes/tag_view.php:197 -#: ../../enterprise/operation/agentes/tag_view.php:199 -#: ../../enterprise/operation/agentes/tag_view.php:650 -msgid "Tags" -msgstr "Etiquetas" - -#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 -msgid "Create Tags" -msgstr "Crear etiquetas" - -#: ../../general/first_task/tags.php:28 -msgid "" -"Access to modules can be configured by a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " -"chosen modules.\n" -"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " -"certain tags." -msgstr "" -"El acceso a los módulos puede configurarse mediante etiquetas.\n" -"\t\t\t\t\t\t\t\tLas etiquetas se configuran en el sistema y se asignan a los " -"módulos elegidos.\n" -"\t\t\t\t\t\t\t\tPor ello, se puede restringir el acceso de un usuario a los " -"módulos mediante ciertas etiquetas." - -#: ../../general/first_task/transactional_list.php:21 -msgid "There are no transactions defined yet." -msgstr "No hay transacciones definidas por el momento" - -#: ../../general/first_task/transactional_list.php:28 -msgid "Transactions" -msgstr "Transacciones" - -#: ../../general/first_task/transactional_list.php:31 -#: ../../general/first_task/transactional_list.php:41 -msgid "Create Transactions" -msgstr "Crear transacciones" - -#: ../../general/first_task/transactional_list.php:34 -msgid "" -"The new transactional server allows you to execute tasks dependent on the " -"others following a user-defined design. This means that it is possible to " -"coordinate several executions to check a target at a given time.\n" -"\n" -"Transaction graphs represent the different processes within our " -"infrastructure that we use to deliver our service." -msgstr "" -"El nuevo servidor transaccional le permite ejecutar tareas dependientes de " -"las demás siguiendo un diseño definido por el usuario. Esto significa que es " -"posible coordinar varias ejecuciones para comprobar un objetivo en un " -"momento dado.\n" -"\n" -"Las gráficas de transacción representan los diferentes procesos dentro de " -"nuestra infraestructura, la cual usamos para llevar a cabo nuestros " -"servicios." - -#: ../../general/footer.php:47 ../../enterprise/meta/general/footer.php:28 +#: ../../godmode/agentes/configurar_agente.php:2250 +#: ../../include/functions_api.php:10129 #, php-format -msgid "%s %s - Build %s - MR %s" -msgstr "%s %s - Desarrollo %s - MR %s" +msgid "Update by %s Console" +msgstr "Actualizar por consola de %s" -#: ../../general/footer.php:54 +#: ../../godmode/agentes/configurar_agente.php:2266 +#: ../../include/functions_api.php:10130 #, php-format -msgid "Page generated on %s" -msgstr "Página generada en %s" +msgid "Insert by %s Console" +msgstr "Insertar por consola de %s" -#: ../../general/header.php:48 ../../general/header.php:54 -#: ../../enterprise/meta/general/main_header.php:453 -#: ../../enterprise/meta/general/main_header.php:459 -msgid "All systems" -msgstr "Todos los sistemas" +#: ../../godmode/agentes/configurar_agente.php:2335 +#: ../../godmode/agentes/configurar_agente.php:2347 +msgid "Invalid tab specified" +msgstr "La pestaña no es válida" -#: ../../general/header.php:48 -#: ../../enterprise/meta/general/main_header.php:453 -msgid "Down" -msgstr "Caído(s)" +#: ../../godmode/agentes/module_manager_editor_prediction.php:96 +msgid "Source module" +msgstr "Módulo origen" -#: ../../general/header.php:51 -#: ../../enterprise/meta/general/main_header.php:456 -msgid "servers down" -msgstr "servidor(es) caído(s)" +#: ../../godmode/agentes/module_manager_editor_prediction.php:133 +#: ../../godmode/agentes/module_manager_editor_prediction.php:151 +msgid "Select Module" +msgstr "Seleccionar módulo" -#: ../../general/header.php:54 -#: ../../enterprise/meta/general/main_header.php:459 -msgid "Ready" -msgstr "Preparado" +#: ../../godmode/agentes/module_manager_editor.php:691 +msgid "Invalid module type" +msgstr "Tipo de módulo no válido" -#: ../../general/header.php:76 -msgid "Sobre actualización de revisión menor" -msgstr "Sobre actualización de revisión menor" +#: ../../godmode/agentes/module_manager_editor.php:711 +msgid "Base options" +msgstr "Opciones de base" -#: ../../general/header.php:78 -#: ../../godmode/update_manager/update_manager.offline.php:88 -#: ../../include/functions_update_manager.php:1392 -#: ../../enterprise/include/functions_update_manager.php:238 -msgid "About minor release update" -msgstr "Sobre la actualización menor" +#: ../../godmode/agentes/module_manager_editor.php:735 +msgid "Module relations" +msgstr "Relaciones entre módulos" -#: ../../general/header.php:87 -msgid "New chat message" -msgstr "Nuevo mensaje del chat" +#: ../../godmode/agentes/module_manager_editor.php:825 +msgid "No module to predict" +msgstr "No existe ningún módulo para predecir." -#: ../../general/header.php:118 ../../general/header.php:120 -msgid "Enter keywords to search" -msgstr "Introduce palabras clave para buscar" +#: ../../godmode/agentes/module_manager_editor.php:835 +msgid "No plug-in provided" +msgstr "Plugin no proporcionado" -#: ../../general/header.php:233 -#: ../../enterprise/meta/general/main_header.php:487 -msgid "Configure autorefresh" -msgstr "Configurar actualización automática" +#: ../../godmode/agentes/module_manager_editor.php:845 +msgid "No server provided" +msgstr "Ningún servidor especificado" -#: ../../general/header.php:293 ../../general/header.php:310 -#: ../../enterprise/meta/general/main_header.php:504 -#: ../../enterprise/meta/general/main_header.php:516 -msgid "Disabled autorefresh" -msgstr "Actualización automática desactivada" +#: ../../godmode/agentes/module_manager_editor.php:876 +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." -#: ../../general/header.php:345 ../../general/header.php:347 -#: ../../include/class/Diagnostics.class.php:1958 -#: ../../include/class/HelpFeedBack.class.php:213 -msgid "Feedback" -msgstr "Feedback" +#: ../../godmode/agentes/module_manager_editor.php:914 +msgid "The File APIs are not fully supported in this browser." +msgstr "" +"Las API de archivos no son totalmente compatibles con este navegador." -#: ../../general/header.php:364 -msgid "Go to support" -msgstr "Ir a soporte" +#: ../../godmode/agentes/module_manager_editor.php:915 +msgid "Couldn`t find the fileinput element." +msgstr "Elemento de archivo de entrada no encontrado" -#: ../../general/header.php:370 -msgid "Go to documentation" -msgstr "Ir a documentación" +#: ../../godmode/agentes/module_manager_editor.php:916 +msgid "" +"This browser doesn`t seem to support the files property of file inputs." +msgstr "" +"Este navegador parece no ser compatible con los archivos pertenecientes al " +"archivo de entrada." -#: ../../general/header.php:380 ../../general/header.php:390 -#: ../../operation/menu.php:447 -#: ../../enterprise/meta/general/main_header.php:559 -#: ../../enterprise/meta/general/main_header.php:565 -#: ../../enterprise/meta/include/functions_users_meta.php:193 -#: ../../enterprise/meta/include/functions_users_meta.php:208 -msgid "Edit my user" -msgstr "Editar mi usuario" +#: ../../godmode/agentes/module_manager_editor.php:917 +msgid "Please select a file before clicking Load" +msgstr "Seleccione un archivo antes de hacer clic en Cargar" -#: ../../general/header.php:405 ../../general/header.php:407 -#: ../../mobile/include/functions_web.php:32 -#: ../../mobile/include/ui.class.php:210 -#: ../../mobile/include/user.class.php:317 ../../mobile/operation/home.php:150 -#: ../../enterprise/meta/general/main_header.php:470 -msgid "Logout" -msgstr "Salir" +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:229 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:334 +msgid "No agent selected or the agent does not exist" +msgstr "No se ha seleccionado un agente o ese agente no existe." -#: ../../general/header.php:722 ../../godmode/setup/setup_general.php:426 -msgid "Send" -msgstr "Enviar" +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:475 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 +msgid "Use agent ip" +msgstr "Usar IP del agente" -#: ../../general/header.php:723 -#: ../../godmode/agentes/status_monitor_custom_fields.php:240 -#: ../../godmode/events/custom_events.php:202 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/update_manager/update_manager.offline.php:94 -#: ../../include/class/CredentialStore.class.php:1112 -#: ../../include/class/CredentialStore.class.php:1164 -#: ../../include/class/NetworkMap.class.php:2823 -#: ../../include/class/TreeGroupEdition.class.php:93 -#: ../../include/class/WelcomeWindow.class.php:174 -#: ../../include/functions_update_manager.php:204 -#: ../../include/functions_update_manager.php:468 -#: ../../include/functions_update_manager.php:762 -#: ../../include/functions_update_manager.php:1398 -#: ../../include/functions_visual_map_editor.php:790 -#: ../../include/functions_visual_map_editor.php:794 -#: ../../operation/agentes/pandora_networkmap.editor.php:573 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:469 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:268 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:344 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:241 -#: ../../enterprise/godmode/services/services.service.php:650 -#: ../../enterprise/include/class/AgentRepository.class.php:784 -#: ../../enterprise/include/class/AgentRepository.class.php:882 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2723 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1522 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1698 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1730 -#: ../../enterprise/include/functions_HA_cluster.php:492 -#: ../../enterprise/include/functions_update_manager.php:244 -#: ../../enterprise/meta/event/custom_events.php:248 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1099 -msgid "Cancel" -msgstr "Cancelar" +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:501 +msgid "" +"In order to use remote executions you need to enable remote execution in " +"satellite server" +msgstr "" +"Para usar ejecuciones remotas, habilite la ejecución remota en el servidor " +"satélite." -#: ../../general/header.php:724 -msgid "Report an issue" -msgstr "Notificar un error" +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:617 +msgid "When selecting interfaces" +msgstr "Al seleccionar interfaces" -#: ../../general/links_menu.php:17 ../../godmode/menu.php:348 -#: ../../godmode/menu.php:465 ../../enterprise/meta/general/main_header.php:376 -msgid "Links" -msgstr "Enlaces" - -#: ../../general/login_help_dialog.php:37 -#: ../../enterprise/dashboard/widgets/example.php:39 +#: ../../godmode/agentes/modificar_agente.php:63 #, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +msgid "Agents defined in %s" +msgstr "Agentes definidos en %s" -#: ../../general/login_help_dialog.php:41 -#, php-format +#: ../../godmode/agentes/modificar_agente.php:66 +#: ../../godmode/massive/massive_operations.php:334 msgid "" -"If this is your first time using %s, we suggest a few links that'll help you " -"learn more about the software. Monitoring can be overwhelming, but take your " -"time to learn how to harness the power of %s!" +"This node is configured with centralized mode. To delete an agent go to " +"metaconsole." msgstr "" -"Si esta es la primera vez que usa %s, le sugerimos algunos enlaces que le " -"ayudarán a saber más sobre este software. La monitorización puede ser " -"abrumadora, pero tómese su tiempo en aprender a aprovechar todo el potencial " -"de %s!" +"Este nodo está configurado en modo centralizado. Para eliminar un agente, " +"vaya a la Metaconsola." -#: ../../general/login_help_dialog.php:55 -#: ../../general/login_help_dialog.php:60 -msgid "Online help" -msgstr "Ayuda en línea" +#: ../../godmode/agentes/modificar_agente.php:103 +msgid "Success deleted agent." +msgstr "Agente eliminado correctamente" -#: ../../general/login_help_dialog.php:68 -#: ../../general/login_help_dialog.php:73 -msgid "Enterprise version" -msgstr "Versión Enterprise" +#: ../../godmode/agentes/modificar_agente.php:103 +msgid "Could not be deleted." +msgstr "No pudo ser borrado." -#: ../../general/login_help_dialog.php:81 -#: ../../general/login_help_dialog.php:86 ../../general/login_page.php:142 -#: ../../general/login_page.php:145 -#: ../../enterprise/include/process_reset_pass.php:52 -#: ../../enterprise/include/reset_pass.php:53 -#: ../../enterprise/meta/general/login_page.php:64 -#: ../../enterprise/meta/include/process_reset_pass.php:47 -#: ../../enterprise/meta/include/reset_pass.php:47 -msgid "Support" -msgstr "Soporte" +#: ../../godmode/agentes/modificar_agente.php:110 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "Los archivos conf o md5 no han podido ser borrados." -#: ../../general/login_help_dialog.php:86 -msgid "Forums" -msgstr "Foros" +#: ../../godmode/agentes/modificar_agente.php:179 +msgid "Show Agents" +msgstr "Mostrar agentes" -#: ../../general/login_help_dialog.php:94 -#: ../../general/login_help_dialog.php:99 ../../general/mysqlerr.php:126 -msgid "Documentation" -msgstr "Documentación" +#: ../../godmode/agentes/modificar_agente.php:181 +msgid "Everyone" +msgstr "Todos" -#: ../../general/login_help_dialog.php:108 -msgid "Click here to don't show again this message" -msgstr "Pincha aquí para no volver a ver este mensaje" +#: ../../godmode/agentes/modificar_agente.php:190 +msgid "Operative System" +msgstr "Sistema operativo" -#: ../../general/login_page.php:50 -#, php-format -msgid "Go to %s Website" -msgstr "Ir a la página web de %s" - -#: ../../general/login_page.php:63 -msgid "Go to Login" -msgstr "Ir a la pantalla de inicio" - -#: ../../general/login_page.php:74 -#: ../../enterprise/meta/general/login_page.php:45 -#: ../../enterprise/meta/include/process_reset_pass.php:28 -#: ../../enterprise/meta/include/reset_pass.php:28 -msgid "Splash login" -msgstr "Splash login" - -#: ../../general/login_page.php:130 ../../general/login_page.php:133 -#: ../../general/login_page.php:149 -#: ../../enterprise/include/process_reset_pass.php:47 -#: ../../enterprise/include/reset_pass.php:48 -msgid "Docs" -msgstr "Documentos" - -#: ../../general/login_page.php:227 -msgid "Login as admin" -msgstr "Entrar como administrador" - -#: ../../general/login_page.php:235 -#: ../../enterprise/meta/general/login_page.php:144 -msgid "Login with SAML" -msgstr "Entrar con SAML" - -#: ../../general/login_page.php:267 ../../mobile/include/user.class.php:283 -#: ../../enterprise/meta/general/login_page.php:136 -#: ../../enterprise/meta/general/login_page.php:177 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../general/login_page.php:283 -msgid "Authentication code" -msgstr "Código de autentificación" - -#: ../../general/login_page.php:286 ../../mobile/include/user.class.php:349 -msgid "Check code" -msgstr "Código de comprobación" - -#: ../../general/login_page.php:295 -msgid "View details" -msgstr "Ver detalles" - -#: ../../general/login_page.php:309 -#: ../../enterprise/meta/general/login_page.php:185 -msgid "Forgot your password?" -msgstr "¿Has olvidado tu contraseña?" - -#: ../../general/login_page.php:323 ../../general/login_page.php:326 -#, php-format -msgid "WELCOME TO %s" -msgstr "BIENVENIDO A %s" - -#: ../../general/login_page.php:335 ../../general/login_page.php:338 -msgid "NEXT GENERATION" -msgstr "NEXT GENERATION" - -#: ../../general/login_page.php:357 -#: ../../enterprise/include/process_reset_pass.php:174 -#: ../../enterprise/include/reset_pass.php:154 -#: ../../enterprise/meta/general/login_page.php:222 -#: ../../enterprise/meta/include/process_reset_pass.php:161 -#: ../../enterprise/meta/include/reset_pass.php:137 -msgid "Build" -msgstr "Crear" - -#: ../../general/login_page.php:361 ../../general/login_page.php:364 -#: ../../general/login_page.php:378 ../../general/login_page.php:381 -#: ../../general/login_page.php:398 ../../general/login_page.php:401 -#: ../../enterprise/meta/general/login_page.php:225 -#: ../../enterprise/meta/general/login_page.php:228 -#: ../../enterprise/meta/general/login_page.php:242 -#: ../../enterprise/meta/general/login_page.php:245 -#: ../../enterprise/meta/general/login_page.php:262 -#: ../../enterprise/meta/general/login_page.php:265 -msgid "Password reset" -msgstr "Restablecer contraseña" - -#: ../../general/login_page.php:368 -#: ../../enterprise/meta/general/login_page.php:232 -msgid "INFO" -msgstr "INFO" - -#: ../../general/login_page.php:369 -#: ../../enterprise/meta/general/login_page.php:233 -msgid "An email has been sent to your email address" -msgstr "Se ha enviado un email a su dirección de correo electrónico" - -#: ../../general/login_page.php:385 ../../general/login_page.php:427 -#: ../../enterprise/include/reset_pass.php:165 -#: ../../enterprise/meta/general/login_page.php:249 -#: ../../enterprise/meta/general/login_page.php:291 -#: ../../enterprise/meta/include/reset_pass.php:148 -msgid "ERROR" -msgstr "ERROR" - -#: ../../general/login_page.php:405 -#: ../../enterprise/meta/general/login_page.php:269 -msgid "SUCCESS" -msgstr "CORRECTO" - -#: ../../general/login_page.php:420 ../../general/login_page.php:423 -#: ../../general/login_page.php:552 ../../general/login_page.php:555 -#: ../../enterprise/include/functions_login.php:141 -#: ../../enterprise/meta/general/login_page.php:284 -#: ../../enterprise/meta/general/login_page.php:287 -msgid "Login failed" -msgstr "Error de inicio de sesión" - -#: ../../general/login_page.php:445 ../../general/login_page.php:448 -#: ../../general/login_page.php:452 -#: ../../enterprise/meta/general/login_page.php:309 -#: ../../enterprise/meta/general/login_page.php:312 -#: ../../enterprise/meta/general/login_page.php:316 -msgid "Logged out" -msgstr "Desconectado" - -#: ../../general/login_page.php:453 ../../mobile/include/user.class.php:241 -#: ../../enterprise/meta/general/login_page.php:317 -#, php-format +#: ../../godmode/agentes/modificar_agente.php:211 msgid "" -"Your session has ended. Please close your browser window to close this %s " -"session." +"Search filter by alias, name, description, IP address or custom fields " +"content" msgstr "" -"La sesión ha terminado. Cierre el navegador para cerrar la sesión de %s." +"Buscar filtro por alias, nombre, descripción, dirección IP o contenido de " +"campos personalizados." -#: ../../general/login_page.php:467 ../../general/login_page.php:469 -#, php-format -msgid "Problem with %s database" -msgstr "Problema con la base de datos de %s" +#: ../../godmode/agentes/modificar_agente.php:492 +msgid "Remote agent configuration" +msgstr "Configuración remota del agente" -#: ../../general/login_page.php:473 -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." +#: ../../godmode/agentes/modificar_agente.php:492 +msgid "R" +msgstr "R" + +#: ../../godmode/agentes/modificar_agente.php:666 +msgid "Edit remote config" +msgstr "Editar configuración remota" + +#: ../../godmode/agentes/modificar_agente.php:713 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "¿Esta seguro de que desea habilitar el cluster de agentes?" + +#: ../../godmode/agentes/modificar_agente.php:716 +msgid "Enable agent" +msgstr "Habilitar agente" + +#: ../../godmode/agentes/modificar_agente.php:723 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "¿Esta seguro de que desea deshabilitar el cluster de agentes?" + +#: ../../godmode/agentes/modificar_agente.php:726 +msgid "Disable agent" +msgstr "Deshabilitar agente" + +#: ../../godmode/agentes/modificar_agente.php:736 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "" -"No se pudo conectar con la base de datos, comprueba la configuración de su " -"base de datos en el archivo include/config.php.

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

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

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

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

%s La consola no ha podido encontrarinclude/config.php " -"o este archivo no tiene\n" -"\t\t\tpermisos válidos y el servidor HTTP no puede leerlo. Lea la " -"documentación para solucionar el problema.
" - -#: ../../general/login_page.php:501 -msgid "No configuration file found" -msgstr "No se ha encontrado el archivo de configuración" - -#: ../../general/login_page.php:503 -#, php-format -msgid "" -"%s Console cannot find include/config.php or this file has invalid\n" -"\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem." -msgstr "" -"La consola %s no ha podido encontrar include/config.php o este " -"archivo no tiene \n" -"\t\tpermisos válidos y el servidor HTTP no puede leerlo. Lea la " -"documentación para solucionar el problema." - -#: ../../general/login_page.php:515 -#, php-format -msgid "You may try to run the %sinstallation wizard%s to create one." -msgstr "" -"Puedes intentar ejecutar el %sasistente de instalación%s para crear " -"uno." - -#: ../../general/login_page.php:519 -msgid "Installer active" -msgstr "Instalador activo" - -#: ../../general/login_page.php:521 -#, php-format -msgid "" -"For security reasons, normal operation is not possible until you delete " -"installer file.\n" -"\t\tPlease delete the ./install.php file before running %s Console." -msgstr "" -"Por motivos de seguridad, el funcionamiento no es posible hasta que elimine " -"el archivo de instalador.\n" -"\t\tBorre el archivo ./install.php antes de ejecutar la consola de " -"%s." - -#: ../../general/login_page.php:528 -msgid "Bad permission for include/config.php" -msgstr "Permiso incorrecto para include/config.php" - -#: ../../general/login_page.php:530 -msgid "" -"For security reasons, config.php must have restrictive permissions, " -"and \"other\" users\n" -"\t\tshould not read it or write to it. It should be written only for owner\n" -"\t\t(usually www-data or http daemon user), normal operation is not possible " -"until you change\n" -"\t\tpermissions for include/config.php file. Please do it, it is for " -"your security." -msgstr "" -"Por motivos de seguridad, config.php ha de tener permisos " -"restrictivos, y \"otros\" usuarios\n" -"\t\t no deberían leerlo o editarlo. Debería escribirlo solo el propietario\n" -"\t\t (normalmente www-data o http daemon user), el funcionamiento normal no " -"será posible hasta que se cambien\n" -"\t\t los permisos para el archivo include/config.php. Por tu " -"seguridad, procede a cambiarlos." - -#: ../../general/login_page.php:538 -msgid "Bad defined homedir" -msgstr "Homedir mal definida" - -#: ../../general/login_page.php:539 -msgid "" -"In the config.php file in the variable $config[\"homedir\"] = add the " -"correct path" -msgstr "" -"En el archivo config.php en la variable $config[\"homedir\"] = añade la ruta " -"correcta" - -#: ../../general/login_page.php:543 -msgid "Bad defined homeurl or homeurl_static" -msgstr "Homeurl o homeurl_static mal definida" - -#: ../../general/login_page.php:544 -msgid "" -"In the config.php file in the variable $config[\"homeurl\"] or " -"$config[\"homeurl_static\"] = add the correct path" -msgstr "" -"En el archivo config.php en la variable $config[\"homeurl\"] o " -"$config[\"homeurl_static\"] = añade la ruta correcta" - -#: ../../general/logon_failed.php:18 -#: ../../include/ajax/double_auth.ajax.php:243 -#: ../../include/ajax/double_auth.ajax.php:340 -#: ../../include/ajax/double_auth.ajax.php:385 -#: ../../include/ajax/double_auth.ajax.php:499 -#: ../../operation/users/user_edit.php:977 -#: ../../operation/users/user_edit.php:1043 -#: ../../operation/users/user_edit.php:1114 -msgid "Authentication error" -msgstr "Error de autentificación" - -#: ../../general/logon_failed.php:30 -msgid "" -"Either, your password or your login are incorrect. Please check your CAPS " -"LOCK key, username and password are case SeNSiTiVe.

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

Todas las acciones, incluidos los intentos fallidos de " -"acceso son guardados en el sistema de registro de logs de Pandora FMS y " -"pueden ser revisados por cada usuario. Contacta al administrador cualquier " -"incidente o fallo." - -#: ../../general/logon_ok.php:165 -#, php-format -msgid "%s Overview" -msgstr "Esquema %s" - -#: ../../general/logon_ok.php:189 ../../godmode/setup/performance.php:179 -#: ../../godmode/setup/performance.php:234 -#: ../../enterprise/operation/agentes/wux_console_view.php:317 -#: ../../enterprise/operation/agentes/wux_console_view.php:346 -msgid "ago" -msgstr "hace" - -#: ../../general/logon_ok.php:204 -msgid "by" -msgstr "por" - -#: ../../general/logon_ok.php:218 -msgid "News board" -msgstr "Tablón de noticias" - -#: ../../general/logon_ok.php:248 ../../godmode/admin_access_logs.php:199 -#: ../../include/functions.php:2884 -#: ../../include/functions_reporting_html.php:4647 -#: ../../mobile/operation/tactical.php:351 -#: ../../operation/snmpconsole/snmp_statistics.php:144 -msgid "Source IP" -msgstr "IP origen" - -#: ../../general/logon_ok.php:249 ../../godmode/admin_access_logs.php:200 -#: ../../godmode/users/configure_user.php:777 -#: ../../include/ajax/events.php:1232 ../../include/functions.php:2884 -#: ../../include/functions_reporting_html.php:4648 -#: ../../mobile/operation/events.php:561 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:461 -#: ../../operation/users/user_edit.php:595 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1736 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:144 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:268 -#: ../../enterprise/extensions/ipam/ipam_massive.php:83 -#: ../../enterprise/extensions/ipam/ipam_network.php:331 -#: ../../enterprise/extensions/ipam/ipam_network.php:596 -msgid "Comments" -msgstr "Comentarios" - -#: ../../general/logon_ok.php:294 -msgid "Latest activity" -msgstr "Actividad reciente" - -#: ../../general/mysqlerr.php:90 -msgid "Database error" -msgstr "Error en la base de datos" - -#: ../../general/mysqlerr.php:99 -msgid "" -"Failure to connect to historical database, please check the configuration or " -"contact system administrator if you need assistance." -msgstr "" -"Error al conectar con la base de datos de histórico, revise la configuración " -"o póngase en contacto con el administrador del sistema si necesita ayuda." - -#: ../../general/mysqlerr.php:101 -msgid "" -"Failure to connect to Database server, please check the configuration file " -"config.php or contact system administrator if you need assistance." -msgstr "" -"Error al conectar con el servidor de la base de datos. Revise el archivo de " -"configuración config.php o póngase en contacto con el administrador del " -"sistema si necesita ayuda." - -#: ../../general/noaccess.php:133 ../../general/noaccess2.php:15 -#: ../../general/noaccess2.php:17 ../../general/noaccesssaml.php:133 -#: ../../mobile/index.php:258 ../../mobile/operation/agent.php:99 -#: ../../mobile/operation/agents.php:172 ../../mobile/operation/alerts.php:158 -#: ../../mobile/operation/events.php:468 ../../mobile/operation/groups.php:59 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/modules.php:194 -#: ../../mobile/operation/tactical.php:81 -#: ../../mobile/operation/visualmap.php:79 -#: ../../mobile/operation/visualmaps.php:91 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 -#: ../../enterprise/meta/general/noaccess.php:25 -#: ../../enterprise/meta/general/noaccesssaml.php:133 -msgid "You don't have access to this page" -msgstr "No tienes permiso para acceder a esta página" - -#: ../../general/noaccess.php:138 ../../enterprise/meta/general/noaccess.php:34 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance." -msgstr "" -"El acceso a esta página está restringido a usuarios autorizados, póngase en " -"contacto con el administrador del sistema si necesita ayuda." - -#: ../../general/noaccess.php:140 ../../enterprise/meta/general/noaccess.php:36 -#, php-format -msgid "" -"Please know that all attempts to access this page are recorded in security " -"logs of %s System Database" -msgstr "" -"Todos los intentos de acceso a está página se grabarán en los logs de " -"seguridad de la base de datos del sistema de %s" - -#: ../../general/noaccess2.php:22 -msgid "Access to this page is restricted" -msgstr "El acceso a esta página está restringido." - -#: ../../general/noaccess2.php:27 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 -#: ../../enterprise/meta/general/noaccess.php:29 -msgid "No access" -msgstr "Acceso denegado" - -#: ../../general/noaccess2.php:34 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance.

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

\n" -"\t\t\tTen en cuenta que todos los intentos de acceso a esta página son " -"guardados en los logs de seguridad de la base de datos de Pandora FMS." - -#: ../../general/noaccesssaml.php:138 -#: ../../enterprise/meta/general/noaccesssaml.php:138 -msgid "" -"Access to this page is restricted to authorized users SAML only, please " -"contact system administrator if you need assistance." -msgstr "" -"El acceso a esta página está restringido solo a los los usuarios SAML, " -"póngase en contacto con el administrador del sistema si necesita ayuda." - -#: ../../general/noaccesssaml.php:140 -#: ../../enterprise/meta/general/noaccesssaml.php:140 -#, php-format -msgid "" -"Please make sure you have SAML authentication properly configured. For more " -"information the error to access this page are recorded in security logs of " -"%s System Database" -msgstr "" -"Asegúrese de que la autenticación SAML esta configurada correctamente. Para " -"más información, el error de acceso a esta página está grabado en los logs " -"de seguridad de la base de datos del sistema de %s." - -#: ../../general/pandora_help.php:23 -#, php-format -msgid "%s help system" -msgstr "Ayuda del sistema de %s" - -#: ../../general/pandora_help.php:72 -msgid "Help system error" -msgstr "Error del sistema de ayuda" - -#: ../../general/pandora_help.php:77 -#, php-format -msgid "" -"%s help system has been called with a help reference that currently don't " -"exist. There is no help content to show." -msgstr "" -"El sistema de ayuda de %s se ha solicitado con una petición de ayuda que no " -"existe actualmente. No hay contenido de ayuda a mostrar" - -#: ../../general/php7_message.php:30 -#: ../../include/class/ConsoleSupervisor.php:1442 -msgid "" -"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " -"higher." -msgstr "" -"Para que Pandora FMS funcione correctamente, PHP debe estar actualizado a la " -"versión 7.0 o superior." - -#: ../../general/php7_message.php:31 -#: ../../include/class/ConsoleSupervisor.php:1442 -msgid "Otherwise, functionalities will be lost." -msgstr "Si no, ciertas funcionalidades no estarán disponibles." - -#: ../../general/php7_message.php:33 -#: ../../include/class/ConsoleSupervisor.php:1442 -msgid "Report download in PDF format" -msgstr "Descarga de informes en formato PDF" - -#: ../../general/php7_message.php:34 -#: ../../include/class/ConsoleSupervisor.php:1442 -msgid "Emails Sending" -msgstr "Envío de emails" - -#: ../../general/php7_message.php:35 -#: ../../include/class/ConsoleSupervisor.php:1442 -msgid "Metaconsole Collections" -msgstr "Colecciones de la metaconsola" - -#: ../../general/php7_message.php:38 -msgid "Access Help" -msgstr "Ayuda de acceso" - -#: ../../general/php7_message.php:41 -msgid "Warning php version" -msgstr "Advertencia de la versión php" - -#: ../../general/ui/agents_list.php:146 -#: ../../godmode/massive/massive_copy_modules.php:219 -#: ../../include/functions_events.php:3967 -#: ../../include/functions_events.php.orig:3873 -#: ../../operation/reporting/reporting_viewer.php:255 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:178 -#: ../../enterprise/godmode/policies/policy_modules.php:1648 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 -#: ../../enterprise/operation/log/log_viewer.php:666 -#: ../../enterprise/operation/log/log_viewer.php:672 -msgid "Loading" -msgstr "Cargando" - -#: ../../general/ui/agents_list.php:152 -msgid "No agents found" -msgstr "No se encontró ningún agente" - -#: ../../godmode/admin_access_logs.php:39 -#: ../../godmode/agentes/planned_downtime.list.php:524 -#: ../../godmode/modules/manage_network_templates.php:263 -#: ../../include/graphs/functions_flot.php:372 -#: ../../operation/incidents/list_integriaims_incidents.php:213 -#: ../../operation/network/network_report.php:140 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:437 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:310 -#: ../../enterprise/operation/log/log_viewer.php:650 -#: ../../enterprise/operation/reporting/custom_reporting.php:62 -msgid "Export to CSV" -msgstr "Exportar a CSV" - -#: ../../godmode/admin_access_logs.php:47 -#, php-format -msgid "%s audit" -msgstr "Adiitoría %s" - -#: ../../godmode/admin_access_logs.php:47 -msgid "Review Logs" -msgstr "Revisar logs" - -#: ../../godmode/admin_access_logs.php:70 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/translate_string.php:314 -#: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:303 -#: ../../enterprise/godmode/policies/policies.php:348 -#: ../../enterprise/godmode/policies/policy_collections.php:228 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:184 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 -msgid "Free text for search (*)" -msgstr "Texto libre para buscar (*)" - -#: ../../godmode/admin_access_logs.php:72 -#: ../../godmode/admin_access_logs.php:73 -#: ../../godmode/events/event_edit_filter.php:370 -#: ../../mobile/operation/events.php:705 ../../operation/events/events.php:920 -#: ../../operation/events/events.php:1412 -#: ../../operation/events/events_list.php:959 -#: ../../enterprise/dashboard/widgets/events_list.php:43 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:39 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:39 -#: ../../enterprise/include/functions_events.php:229 -msgid "Max. hours old" -msgstr "Máx. horas de antiguedad" - -#: ../../godmode/admin_access_logs.php:90 -#: ../../godmode/admin_access_logs.php:97 -#: ../../godmode/agentes/module_manager.php:48 -#: ../../godmode/modules/manage_network_templates_form.php:265 -#: ../../godmode/modules/manage_network_templates_form.php:325 -#: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:863 -#: ../../godmode/reporting/reporting_builder.list_items.php:217 -#: ../../godmode/reporting/reporting_builder.list_items.php:261 -#: ../../godmode/snmpconsole/snmp_alert.php:1124 -#: ../../godmode/snmpconsole/snmp_filters.php:182 -#: ../../godmode/snmpconsole/snmp_filters.php:259 ../../godmode/tag/tag.php:180 -#: ../../include/functions_ui.php:3228 ../../include/functions_ui.php:3247 -#: ../../include/functions_ui.php:3258 -#: ../../operation/agentes/alerts_status.functions.php:121 -#: ../../operation/agentes/alerts_status.functions.php:130 -#: ../../operation/agentes/estado_monitores.php:585 -#: ../../operation/agentes/graphs.php:258 -#: ../../operation/incidents/incident.php:293 -#: ../../operation/incidents/list_integriaims_incidents.php:220 -#: ../../operation/incidents/list_integriaims_incidents.php:224 -#: ../../operation/netflow/nf_live_view.php:383 ../../operation/tree.php:193 -#: ../../enterprise/extensions/backup/main.php:114 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1516 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:141 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:192 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:254 -#: ../../enterprise/godmode/policies/policies.php:357 -#: ../../enterprise/godmode/policies/policy_linking.php:101 -#: ../../enterprise/godmode/policies/policy_queue.php:437 -#: ../../enterprise/godmode/setup/setup_acl.php:477 -#: ../../enterprise/godmode/setup/setup_skins.php:93 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2552 -#: ../../enterprise/include/class/SAPView.class.php:402 -#: ../../enterprise/meta/advanced/policymanager.queue.php:235 -#: ../../enterprise/operation/services/services.list.php:360 -#: ../../enterprise/operation/services/services.list.php:365 -#: ../../enterprise/operation/services/services.table_services.php:336 -#: ../../enterprise/operation/services/services.table_services.php:341 -msgid "Filter" -msgstr "Filtro" +"¡ADVERTENCIA! - ¿Esta seguro de que desea eliminar el cluster de agentes?" #: ../../godmode/agentes/agent_conf_gis.php:38 #: ../../operation/agentes/gis_view.php:56 @@ -6829,3893 +30367,101 @@ msgstr "Altitud: " msgid "Ignore new GIS data:" msgstr "Ignorar nuevos datos GIS:" -#: ../../godmode/agentes/agent_conf_gis.php:125 -#: ../../godmode/alerts/alert_view.php:102 -#: ../../godmode/alerts/alert_view.php:307 -#: ../../godmode/massive/massive_edit_agents.php:537 -#: ../../godmode/massive/massive_edit_agents.php:687 -#: ../../godmode/massive/massive_edit_agents.php:696 -#: ../../godmode/massive/massive_edit_modules.php:588 -#: ../../godmode/massive/massive_edit_modules.php:657 -#: ../../godmode/massive/massive_edit_modules.php:697 -#: ../../godmode/massive/massive_edit_modules.php:971 -#: ../../godmode/massive/massive_edit_modules.php:1009 -#: ../../godmode/massive/massive_edit_modules.php:1037 -#: ../../godmode/reporting/reporting_builder.main.php:172 -#: ../../godmode/reporting/reporting_builder.php:965 -#: ../../godmode/reporting/visual_console_builder.wizard.php:400 -#: ../../godmode/reporting/visual_console_builder.wizard.php:487 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../godmode/update_manager/update_manager.setup.php:257 -#: ../../godmode/users/configure_user.php:833 -#: ../../include/functions_snmp.php:390 ../../include/functions_profile.php:254 -#: ../../operation/netflow/nf_live_view.php:452 -#: ../../operation/snmpconsole/snmp_view.php:628 -#: ../../operation/users/user_edit.php:303 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:439 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:508 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:548 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:848 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:876 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 -#: ../../enterprise/godmode/reporting/visual_console_template.php:212 -#: ../../enterprise/godmode/setup/setup_auth.php:203 -#: ../../enterprise/godmode/setup/setup_auth.php:330 -#: ../../enterprise/godmode/setup/setup_auth.php:858 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1928 -#: ../../enterprise/include/functions_cron.php:714 -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/meta/advanced/metasetup.password.php:127 -#: ../../enterprise/meta/advanced/metasetup.password.php:133 -#: ../../enterprise/meta/advanced/metasetup.password.php:139 -#: ../../enterprise/meta/advanced/metasetup.password.php:143 -#: ../../enterprise/meta/advanced/metasetup.password.php:147 -#: ../../enterprise/meta/advanced/metasetup.performance.php:80 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../enterprise/meta/advanced/metasetup.setup.php:146 -#: ../../enterprise/meta/advanced/metasetup.setup.php:197 -#: ../../enterprise/meta/advanced/metasetup.setup.php:213 -#: ../../enterprise/meta/advanced/metasetup.setup.php:217 -#: ../../enterprise/meta/advanced/metasetup.setup.php:275 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 -msgid "Yes" -msgstr "Sí" - -#: ../../godmode/agentes/agent_conf_gis.php:126 -#: ../../godmode/alerts/alert_view.php:102 -#: ../../godmode/alerts/alert_view.php:307 -#: ../../godmode/alerts/alert_view.php:384 -#: ../../godmode/massive/massive_edit_agents.php:538 -#: ../../godmode/massive/massive_edit_agents.php:688 -#: ../../godmode/massive/massive_edit_agents.php:697 -#: ../../godmode/massive/massive_edit_modules.php:589 -#: ../../godmode/massive/massive_edit_modules.php:658 -#: ../../godmode/massive/massive_edit_modules.php:698 -#: ../../godmode/massive/massive_edit_modules.php:971 -#: ../../godmode/massive/massive_edit_modules.php:1010 -#: ../../godmode/massive/massive_edit_modules.php:1038 -#: ../../godmode/reporting/reporting_builder.main.php:179 -#: ../../godmode/reporting/reporting_builder.php:967 -#: ../../godmode/reporting/visual_console_builder.wizard.php:410 -#: ../../godmode/reporting/visual_console_builder.wizard.php:488 -#: ../../godmode/servers/modificar_server.php:45 -#: ../../godmode/setup/news.php:277 -#: ../../godmode/update_manager/update_manager.setup.php:258 -#: ../../godmode/users/configure_user.php:834 -#: ../../include/functions_snmp.php:382 ../../include/functions_events.php:4537 -#: ../../include/functions_events.php:4542 -#: ../../include/functions_events.php.orig:4431 -#: ../../include/functions_events.php.orig:4436 -#: ../../include/functions_profile.php:254 -#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 -#: ../../operation/netflow/nf_live_view.php:462 -#: ../../operation/snmpconsole/snmp_view.php:629 -#: ../../operation/users/user_edit.php:304 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:440 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:509 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:549 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:877 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:178 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:427 -#: ../../enterprise/godmode/reporting/visual_console_template.php:212 -#: ../../enterprise/godmode/setup/setup.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:203 -#: ../../enterprise/godmode/setup/setup_auth.php:333 -#: ../../enterprise/godmode/setup/setup_auth.php:861 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1928 -#: ../../enterprise/include/functions_cron.php:713 -#: ../../enterprise/meta/advanced/metasetup.password.php:81 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/meta/advanced/metasetup.password.php:140 -#: ../../enterprise/meta/advanced/metasetup.password.php:144 -#: ../../enterprise/meta/advanced/metasetup.password.php:148 -#: ../../enterprise/meta/advanced/metasetup.performance.php:81 -#: ../../enterprise/meta/advanced/metasetup.setup.php:143 -#: ../../enterprise/meta/advanced/metasetup.setup.php:147 -#: ../../enterprise/meta/advanced/metasetup.setup.php:207 -#: ../../enterprise/meta/advanced/metasetup.setup.php:214 -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -#: ../../enterprise/meta/advanced/metasetup.setup.php:276 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 -msgid "No" -msgstr "No" - -#: ../../godmode/agentes/agent_incidents.php:69 -msgid "No incidents associated to this agent" -msgstr "No hay incidentes asociados a este agente" - -#: ../../godmode/agentes/agent_incidents.php:90 -#: ../../operation/incidents/incident.php:421 -#: ../../operation/incidents/incident_detail.php:272 -msgid "Incident" -msgstr "Incidente" - -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/alerts/alert_list.list.php:120 -#: ../../godmode/alerts/alert_templates.php:51 -#: ../../godmode/alerts/alert_view.php:97 -#: ../../godmode/alerts/configure_alert_template.php:940 -#: ../../godmode/setup/setup_integria.php:307 -#: ../../godmode/setup/setup_integria.php:430 -#: ../../godmode/snmpconsole/snmp_alert.php:1036 -#: ../../godmode/snmpconsole/snmp_alert.php:1116 -#: ../../include/functions_events.php:4242 -#: ../../include/functions_events.php.orig:4149 -#: ../../include/functions_reporting_html.php:4021 -#: ../../operation/agentes/estado_generalagente.php:574 -#: ../../operation/incidents/configure_integriaims_incident.php:272 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:376 -#: ../../operation/incidents/incident.php:309 -#: ../../operation/incidents/incident.php:422 -#: ../../operation/incidents/incident_detail.php:347 -#: ../../operation/incidents/integriaims_export_csv.php:93 -#: ../../operation/incidents/list_integriaims_incidents.php:137 -#: ../../enterprise/godmode/alerts/alert_events.php:611 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:187 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:399 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:507 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:718 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 -msgid "Priority" -msgstr "Prioridad" - -#: ../../godmode/agentes/agent_incidents.php:93 -#: ../../godmode/servers/servers.build_table.php:73 -#: ../../operation/incidents/incident.php:424 -#: ../../operation/incidents/integriaims_export_csv.php:94 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:283 -#: ../../enterprise/include/class/DatabaseHA.class.php:684 -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -msgid "Updated" -msgstr "Actualizado" - -#: ../../godmode/agentes/agent_incidents.php:94 -#: ../../godmode/events/custom_events.php:108 -#: ../../godmode/events/event_edit_filter.php:593 -#: ../../godmode/massive/massive_copy_modules.php:128 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1251 -#: ../../include/functions_events.php:202 -#: ../../include/functions_events.php:271 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4278 -#: ../../include/functions_events.php:6081 -#: ../../include/functions_events.php.orig:200 -#: ../../include/functions_events.php.orig:269 -#: ../../include/functions_events.php.orig:4117 -#: ../../include/functions_events.php.orig:4185 -#: ../../include/functions_events.php.orig:5985 -#: ../../operation/agentes/pandora_networkmap.editor.php:306 -#: ../../operation/events/events.build_table.php:293 -#: ../../operation/events/events.php:997 -#: ../../operation/events/events_list.php:985 -#: ../../operation/incidents/incident.php:425 -#: ../../operation/incidents/incident_detail.php:317 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:130 -#: ../../enterprise/include/functions_log.php:381 -#: ../../enterprise/meta/advanced/policymanager.sync.php:307 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:320 -#: ../../enterprise/meta/advanced/synchronizing.component.php:300 -#: ../../enterprise/meta/advanced/synchronizing.group.php:177 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:75 -#: ../../enterprise/meta/advanced/synchronizing.os.php:71 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:88 -#: ../../enterprise/meta/advanced/synchronizing.user.php:583 -#: ../../enterprise/meta/include/functions_events_meta.php:110 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:104 -#: ../../enterprise/operation/log/log_viewer.php:471 -msgid "Source" -msgstr "Origen" - -#: ../../godmode/agentes/agent_incidents.php:95 -#: ../../godmode/events/custom_events.php:110 -#: ../../godmode/setup/setup_integria.php:325 -#: ../../godmode/setup/setup_integria.php:448 -#: ../../include/functions_events.php:204 -#: ../../include/functions_events.php:277 -#: ../../include/functions_events.php:4507 -#: ../../include/functions_events.php:6032 -#: ../../include/functions_events.php.orig:202 -#: ../../include/functions_events.php.orig:275 -#: ../../include/functions_events.php.orig:4401 -#: ../../include/functions_events.php.orig:5936 -#: ../../mobile/operation/events.php:520 -#: ../../operation/events/events.build_table.php:212 -#: ../../operation/incidents/configure_integriaims_incident.php:288 -#: ../../operation/incidents/incident.php:426 -#: ../../operation/incidents/incident_detail.php:294 -#: ../../operation/incidents/integriaims_export_csv.php:97 -#: ../../operation/incidents/list_integriaims_incidents.php:131 -#: ../../operation/incidents/list_integriaims_incidents.php:261 -#: ../../enterprise/meta/include/functions_events_meta.php:118 -msgid "Owner" -msgstr "Propietario" - -#: ../../godmode/agentes/agent_manager.php:193 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/groups/configure_group.php:192 -#: ../../godmode/massive/massive_edit_agents.php:629 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:338 -msgid "Custom ID" -msgstr "ID personalizado" - -#: ../../godmode/agentes/agent_manager.php:208 -#: ../../godmode/agentes/modificar_agente.php:487 -#: ../../include/functions_events.php:191 -#: ../../include/functions_events.php:235 -#: ../../include/functions_events.php:2393 -#: ../../include/functions_events.php:6013 -#: ../../include/functions_events.php.orig:189 -#: ../../include/functions_events.php.orig:233 -#: ../../include/functions_events.php.orig:2299 -#: ../../include/functions_events.php.orig:5917 -#: ../../include/functions_treeview.php:585 -#: ../../include/functions_reporting_html.php:2609 -#: ../../mobile/operation/modules.php:570 -#: ../../mobile/operation/modules.php:819 -#: ../../operation/events/events.build_table.php:182 -#: ../../operation/events/events.php:1610 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1735 -#: ../../enterprise/meta/include/functions_events_meta.php:66 -msgid "Agent name" -msgstr "Nombre del agente" - -#: ../../godmode/agentes/agent_manager.php:208 -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:221 -#: ../../operation/agentes/estado_agente.php:188 ../../operation/menu.php:52 -msgid "Agent detail" -msgstr "Detalle de agente" - -#: ../../godmode/agentes/agent_manager.php:230 -msgid "Delete agent" -msgstr "Borrar agente" - -#: ../../godmode/agentes/agent_manager.php:245 -#: ../../enterprise/godmode/policies/policy_agents.php:782 -msgid "This agent can be remotely configured" -msgstr "Este agente puede ser configurado remotamente" - -#: ../../godmode/agentes/agent_manager.php:249 -msgid "You can remotely edit this agent configuration" -msgstr "Puede editar remotamente la configuración de este agente" - -#: ../../godmode/agentes/agent_manager.php:259 -msgid "QR Code Agent view" -msgstr "Código QR de la vista de agente" - -#: ../../godmode/agentes/agent_manager.php:276 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:210 -#: ../../enterprise/meta/include/functions_wizard_meta.php:188 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 -msgid "Alias" -msgstr "Alias" - -#: ../../godmode/agentes/agent_manager.php:276 -msgid "Characters /,\\,|,%,#,&,$ will be ignored" -msgstr "Los caracteres /,\\,|,%,#,&,$ no se tendrán en cuenta" - -#: ../../godmode/agentes/agent_manager.php:280 -msgid "Use alias as name" -msgstr "Usar el alias como nombre" - -#: ../../godmode/agentes/agent_manager.php:285 -#: ../../godmode/servers/modificar_server.php:60 -#: ../../include/functions_events.php:4062 -#: ../../include/functions_events.php.orig:3968 -#: ../../include/functions_treeview.php:605 -#: ../../include/functions_reporting_html.php:3035 -#: ../../include/functions_reporting_html.php:3108 -#: ../../operation/gis_maps/ajax.php:290 -#: ../../enterprise/meta/include/functions_wizard_meta.php:209 -#: ../../enterprise/meta/include/functions_wizard_meta.php:213 -#: ../../enterprise/meta/include/functions_wizard_meta.php:479 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1466 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1811 -msgid "IP Address" -msgstr "Dirección IP" - -#: ../../godmode/agentes/agent_manager.php:288 -#: ../../godmode/setup/setup_general.php:349 -msgid "Unique IP" -msgstr "IP única" - -#: ../../godmode/agentes/agent_manager.php:288 -#: ../../godmode/setup/setup_general.php:349 -msgid "" -"Set the primary IP address as the unique IP, preventing the same primary IP " -"address from being used in more than one agent" +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "An error occurred while migrating the malformed planned downtimes" msgstr "" -"Establezca la dirección IP primaria como la única IP, evitando que la misma " -"dirección IP primaria se use en más de un agente." +"Ha ocurrido un error mientras se migraban paradas planificadas mal formadas." -#: ../../godmode/agentes/agent_manager.php:297 -#: ../../godmode/snmpconsole/snmp_alert.php:1438 -#: ../../operation/events/events.php:1517 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:294 -#: ../../enterprise/include/class/Omnishell.class.php:520 -msgid "Delete selected" -msgstr "Borrar seleccionado(s)" +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "Please run the migration again or contact with the administrator" +msgstr "" +"Por favor, ejecuta el script de migración de nuevo o contacta con el " +"administrador" + +#: ../../godmode/agentes/planned_downtime.list.php:55 +msgid "Scheduled Downtime" +msgstr "Parada planificada" + +#: ../../godmode/agentes/planned_downtime.list.php:83 +msgid "An error occurred stopping the planned downtime" +msgstr "Se produjo un error al detener la parada planificada." + +#: ../../godmode/agentes/planned_downtime.list.php:106 +msgid "This planned downtime is running" +msgstr "Esta parada planificada se está ejecutando." + +#: ../../godmode/agentes/planned_downtime.list.php:157 +#: ../../godmode/agentes/planned_downtime.editor.php:697 +msgid "Once" +msgstr "Una vez" + +#: ../../godmode/agentes/planned_downtime.list.php:158 +#: ../../godmode/agentes/planned_downtime.list.php:446 +#: ../../godmode/agentes/planned_downtime.editor.php:698 +msgid "Periodically" +msgstr "Periódicamente" -#: ../../godmode/agentes/agent_manager.php:315 -#: ../../godmode/agentes/agent_manager.php:526 -#: ../../godmode/agentes/planned_downtime.editor.php:944 #: ../../godmode/agentes/planned_downtime.list.php:160 -#: ../../godmode/events/event_edit_filter.php:397 -#: ../../godmode/massive/massive_add_action_alerts.php:175 -#: ../../godmode/massive/massive_copy_modules.php:162 -#: ../../godmode/massive/massive_delete_modules.php:383 -#: ../../godmode/massive/massive_delete_modules.php:497 -#: ../../godmode/massive/massive_edit_agents.php:517 -#: ../../godmode/massive/massive_edit_agents.php:727 -#: ../../godmode/massive/massive_edit_modules.php:384 -#: ../../godmode/massive/massive_edit_modules.php:469 -#: ../../godmode/reporting/create_container.php:534 -#: ../../godmode/reporting/visual_console_builder.wizard.php:556 -#: ../../include/ajax/visual_console_builder.ajax.php:1190 -#: ../../include/functions_html.php:1235 ../../include/functions_html.php:1236 -#: ../../include/functions_html.php:1237 ../../include/functions_html.php:1238 -#: ../../include/functions_html.php:1239 ../../include/functions_html.php:1241 -#: ../../include/functions_html.php:1242 ../../include/functions_html.php:1243 -#: ../../include/functions_html.php:1244 ../../include/functions_html.php:1245 -#: ../../include/functions_visual_map_editor.php:464 -#: ../../include/functions_visual_map_editor.php:1362 -#: ../../include/functions_visual_map_editor.php:1456 -#: ../../include/functions_profile.php:315 -#: ../../operation/events/events.php:1085 -#: ../../operation/events/events.php:2288 -#: ../../operation/events/events_list.php:789 -#: ../../enterprise/dashboard/widgets/events_list.php:32 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:168 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:173 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:182 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:240 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152 -#: ../../enterprise/godmode/setup/setup_acl.php:475 -#: ../../enterprise/godmode/setup/setup_auth.php:66 -#: ../../enterprise/godmode/setup/setup_auth.php:264 -#: ../../enterprise/godmode/setup/setup_auth.php:311 -#: ../../enterprise/godmode/setup/setup_auth.php:852 -#: ../../enterprise/godmode/setup/setup_auth.php:1015 -#: ../../enterprise/include/class/AgentRepository.class.php:633 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1441 -#: ../../enterprise/include/class/DeploymentCenter.class.php:738 -#: ../../enterprise/include/class/Omnishell.class.php:361 -#: ../../enterprise/operation/services/services.list.php:201 -#: ../../enterprise/operation/services/services.list.php:232 -#: ../../enterprise/operation/services/services.table_services.php:180 -#: ../../enterprise/operation/services/services.table_services.php:211 -msgid "Any" -msgstr "Cualquiera" +msgid "Execution type" +msgstr "Tipo de ejecución" -#: ../../godmode/agentes/agent_manager.php:322 -msgid "Primary group" -msgstr "Grupo primario" +#: ../../godmode/agentes/planned_downtime.list.php:162 +msgid "Show past downtimes" +msgstr "Mostrar paradas antiguas" -#: ../../godmode/agentes/agent_manager.php:336 -#: ../../godmode/agentes/module_manager.php:648 -#: ../../godmode/agentes/module_manager_editor_common.php:748 -#: ../../godmode/agentes/module_manager_editor_common.php:771 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/massive/massive_edit_agents.php:553 -#: ../../godmode/massive/massive_edit_modules.php:682 -#: ../../godmode/modules/manage_network_components_form_common.php:154 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:397 -#: ../../godmode/wizards/HostDevices.class.php:694 -#: ../../include/class/CustomNetScan.class.php:518 -#: ../../include/functions_treeview.php:84 -#: ../../include/functions_treeview.php:611 -#: ../../include/functions_reporting_html.php:2665 -#: ../../mobile/operation/modules.php:630 -#: ../../mobile/operation/modules.php:632 -#: ../../mobile/operation/modules.php:821 -#: ../../operation/agentes/estado_agente.php:707 -#: ../../operation/agentes/estado_generalagente.php:293 -#: ../../operation/agentes/status_monitor.php:1133 -#: ../../operation/netflow/nf_live_view.php:262 -#: ../../operation/search_agents.php:43 ../../operation/search_agents.php:48 -#: ../../operation/search_modules.php:34 -#: ../../operation/servers/recon_view.php:97 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1204 -#: ../../enterprise/extensions/ipam/ipam_list.php:138 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:361 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:403 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:533 -#: ../../enterprise/godmode/modules/configure_local_component.php:283 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:255 -#: ../../enterprise/godmode/servers/manage_export.php:139 -#: ../../enterprise/godmode/servers/manage_export_form.php:89 -#: ../../enterprise/include/class/Aws.cloud.php:464 -#: ../../enterprise/include/class/Aws.cloud.php:1203 -#: ../../enterprise/include/class/Azure.cloud.php:771 -#: ../../enterprise/include/class/MySQL.app.php:556 -#: ../../enterprise/include/class/Oracle.app.php:537 -#: ../../enterprise/include/class/SAP.app.php:493 -#: ../../enterprise/include/class/VMware.app.php:560 -#: ../../enterprise/include/functions_ui.php:84 -#: ../../enterprise/meta/agentsearch.php:115 -#: ../../enterprise/meta/include/functions_wizard_meta.php:915 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1034 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1521 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1741 -#: ../../enterprise/operation/agentes/tag_view.php:576 -#: ../../enterprise/operation/agentes/tag_view.php:653 -msgid "Interval" -msgstr "Intervalo" +#: ../../godmode/agentes/planned_downtime.list.php:365 +#: ../../godmode/agentes/planned_downtime.export_csv.php:199 +msgid "No planned downtime" +msgstr "No hay ninguna parada planificada" -#: ../../godmode/agentes/agent_manager.php:359 -#: ../../godmode/agentes/modificar_agente.php:489 -#: ../../godmode/agentes/planned_downtime.editor.php:1037 -#: ../../godmode/massive/massive_edit_agents.php:557 -#: ../../include/class/Diagnostics.class.php:739 -#: ../../include/functions_events.php:4067 -#: ../../include/functions_events.php.orig:3973 -#: ../../include/functions_reporting_html.php:2611 -#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:392 -#: ../../operation/agentes/estado_agente.php:704 -#: ../../operation/agentes/estado_generalagente.php:188 -#: ../../operation/gis_maps/ajax.php:297 ../../operation/search_agents.php:42 -#: ../../operation/search_agents.php:47 ../../operation/tree.php:56 -#: ../../operation/tree.php:110 -#: ../../enterprise/dashboard/widgets/tree_view.php:43 -#: ../../enterprise/extensions/ipam/ipam_network.php:326 -#: ../../enterprise/godmode/modules/configure_local_component.php:171 -#: ../../enterprise/godmode/modules/local_components.php:499 -#: ../../enterprise/godmode/modules/local_components.php:524 -#: ../../enterprise/godmode/modules/local_components.php:559 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:371 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:209 -#: ../../enterprise/include/class/AgentRepository.class.php:336 -#: ../../enterprise/include/class/AgentRepository.class.php:613 -#: ../../enterprise/include/class/AgentRepository.class.php:656 -#: ../../enterprise/include/class/DeploymentCenter.class.php:715 -#: ../../enterprise/include/class/DeploymentCenter.class.php:773 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1244 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 -#: ../../enterprise/meta/agentsearch.php:114 -#: ../../enterprise/operation/agentes/tag_view.php:575 -msgid "OS" -msgstr "SO" +#: ../../godmode/agentes/planned_downtime.list.php:398 +msgid "Name #Ag." +msgstr "Nombre (núm. ag.)" -#: ../../godmode/agentes/agent_manager.php:381 -#: ../../godmode/agentes/module_manager.php:646 -#: ../../godmode/massive/massive_edit_agents.php:581 -#: ../../godmode/reporting/reporting_builder.item_editor.php:912 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:692 -#: ../../include/functions_events.php:5988 -#: ../../include/functions_events.php.orig:5892 -#: ../../operation/events/events.build_table.php:156 -#: ../../operation/events/events.php:1044 -#: ../../operation/events/events_list.php:807 -#: ../../operation/servers/recon_view.php:174 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1770 -#: ../../enterprise/include/class/CSVImportAgents.class.php:152 -#: ../../enterprise/include/class/SAPView.class.php:209 -#: ../../enterprise/include/functions_events.php:283 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/agentsearch.php:112 -#: ../../enterprise/meta/agentsearch.php:296 -#: ../../enterprise/meta/include/functions_wizard_meta.php:173 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1794 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:97 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:691 -msgid "Server" -msgstr "Servidor" +#: ../../godmode/agentes/planned_downtime.list.php:402 +#: ../../godmode/agentes/planned_downtime.editor.php:694 +#: ../../include/functions_reporting_html.php:5174 +msgid "Execution" +msgstr "Ejecución" -#: ../../godmode/agentes/agent_manager.php:395 -#: ../../godmode/agentes/agent_manager.php:743 -#: ../../godmode/agentes/agent_manager.php:915 -#: ../../godmode/agentes/agent_manager.php:1190 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:719 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1075 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1091 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1107 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1123 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1139 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1154 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1160 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:456 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:579 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:103 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:152 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:197 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:430 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:534 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:790 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:806 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:822 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:838 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:853 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:859 -#: ../../godmode/agentes/module_manager_editor_common.php:803 -#: ../../godmode/agentes/module_manager_editor_common.php:1101 -#: ../../godmode/agentes/module_manager_editor_common.php:1303 -#: ../../godmode/agentes/module_manager_editor_common.php:1309 -#: ../../godmode/agentes/module_manager_editor_common.php:1318 -#: ../../godmode/agentes/module_manager_editor_common.php:1324 -#: ../../godmode/agentes/module_manager_editor_network.php:458 -#: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/status_monitor_custom_fields.php:216 -#: ../../godmode/agentes/status_monitor_custom_fields.php:264 -#: ../../godmode/alerts/alert_list.list.php:705 -#: ../../godmode/alerts/configure_alert_action.php:164 -#: ../../godmode/alerts/configure_alert_template.php:689 -#: ../../godmode/alerts/configure_alert_template.php:709 -#: ../../godmode/events/custom_events.php:178 -#: ../../godmode/events/custom_events.php:226 -#: ../../godmode/events/event_edit_filter.php:643 -#: ../../godmode/gis_maps/configure_gis_map.php:511 -#: ../../godmode/groups/configure_group.php:211 -#: ../../godmode/massive/massive_add_action_alerts.php:319 -#: ../../godmode/massive/massive_add_alerts.php:275 -#: ../../godmode/massive/massive_copy_modules.php:363 -#: ../../godmode/massive/massive_copy_modules.php:496 -#: ../../godmode/massive/massive_delete_alerts.php:324 -#: ../../godmode/massive/massive_delete_modules.php:478 -#: ../../godmode/massive/massive_delete_modules.php:571 -#: ../../godmode/massive/massive_delete_modules.php:618 -#: ../../godmode/massive/massive_delete_modules.php:665 -#: ../../godmode/massive/massive_delete_modules.php:673 -#: ../../godmode/massive/massive_delete_modules.php:674 -#: ../../godmode/massive/massive_delete_modules.php:675 -#: ../../godmode/massive/massive_delete_modules.php:676 -#: ../../godmode/massive/massive_delete_modules.php:742 -#: ../../godmode/massive/massive_delete_modules.php:772 -#: ../../godmode/massive/massive_edit_agents.php:578 -#: ../../godmode/massive/massive_edit_modules.php:430 -#: ../../godmode/massive/massive_edit_modules.php:847 -#: ../../godmode/massive/massive_edit_modules.php:981 -#: ../../godmode/massive/massive_edit_modules.php:1097 -#: ../../godmode/massive/massive_edit_modules.php:1132 -#: ../../godmode/massive/massive_edit_modules.php:1181 -#: ../../godmode/massive/massive_edit_modules.php:1243 -#: ../../godmode/massive/massive_edit_modules.php:1314 -#: ../../godmode/massive/massive_edit_modules.php:1423 -#: ../../godmode/massive/massive_edit_modules.php:1424 -#: ../../godmode/massive/massive_edit_modules.php:1425 -#: ../../godmode/massive/massive_edit_modules.php:1426 -#: ../../godmode/massive/massive_edit_modules.php:1659 -#: ../../godmode/massive/massive_edit_modules.php:1719 -#: ../../godmode/massive/massive_edit_plugins.php:316 -#: ../../godmode/modules/manage_nc_groups_form.php:77 -#: ../../godmode/modules/manage_network_components_form.php:572 -#: ../../godmode/modules/manage_network_components_form.php:578 -#: ../../godmode/modules/manage_network_components_form.php:587 -#: ../../godmode/modules/manage_network_components_form.php:593 -#: ../../godmode/modules/manage_network_components_form_common.php:330 -#: ../../godmode/modules/manage_network_components_form_network.php:235 -#: ../../godmode/modules/manage_network_components_form_plugin.php:41 -#: ../../godmode/reporting/create_container.php:450 -#: ../../godmode/reporting/graph_builder.graph_editor.php:315 -#: ../../godmode/reporting/graph_builder.graph_editor.php:408 -#: ../../godmode/reporting/graph_builder.graph_editor.php:428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1596 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1659 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1732 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1753 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1785 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 -#: ../../godmode/reporting/visual_console_builder.elements.php:390 -#: ../../godmode/reporting/visual_console_builder.elements.php:537 -#: ../../godmode/reporting/visual_console_builder.elements.php:547 -#: ../../godmode/reporting/visual_console_builder.wizard.php:286 -#: ../../godmode/reporting/visual_console_builder.wizard.php:458 -#: ../../godmode/reporting/visual_console_builder.wizard.php:471 -#: ../../godmode/reporting/visual_console_builder.wizard.php:505 -#: ../../godmode/reporting/visual_console_builder.wizard.php:518 -#: ../../godmode/reporting/visual_console_builder.wizard.php:557 -#: ../../godmode/reporting/visual_console_builder.wizard.php:752 -#: ../../godmode/reporting/visual_console_builder.wizard.php:762 -#: ../../godmode/reporting/visual_console_builder.wizard.php:794 -#: ../../godmode/setup/os.builder.php:38 -#: ../../godmode/setup/setup_visuals.php:398 -#: ../../godmode/setup/setup_visuals.php:418 -#: ../../godmode/setup/setup_visuals.php:871 -#: ../../godmode/snmpconsole/snmp_alert.php:25 -#: ../../godmode/snmpconsole/snmp_alert.php:1117 -#: ../../godmode/users/configure_user.php:808 -#: ../../godmode/users/configure_user.php:821 -#: ../../godmode/users/configure_user.php:927 -#: ../../godmode/users/configure_user.php:933 -#: ../../godmode/wizards/HostDevices.class.php:895 -#: ../../include/ajax/alert_list.ajax.php:227 -#: ../../include/ajax/custom_fields.php:658 ../../include/ajax/events.php:393 -#: ../../include/ajax/planned_downtime.ajax.php:82 -#: ../../include/class/NetworkMap.class.php:2805 -#: ../../include/class/NetworkMap.class.php:3049 -#: ../../include/class/NetworkMap.class.php:3058 -#: ../../include/class/NetworkMap.class.php:3116 -#: ../../include/class/NetworkMap.class.php:3126 -#: ../../include/class/NetworkMap.class.php:3211 -#: ../../include/class/NetworkMap.class.php:3217 -#: ../../include/functions.php:1071 ../../include/functions_networkmap.php:1483 -#: ../../include/functions_events.php:3371 -#: ../../include/functions_events.php:3387 -#: ../../include/functions_events.php.orig:3277 -#: ../../include/functions_events.php.orig:3293 -#: ../../include/functions_html.php:366 ../../include/functions_html.php:610 -#: ../../include/functions_html.php:3179 -#: ../../include/functions_integriaims.php:146 -#: ../../include/functions_visual_map_editor.php:370 -#: ../../include/functions_visual_map_editor.php:372 -#: ../../include/functions_visual_map_editor.php:554 -#: ../../include/functions_visual_map_editor.php:867 -#: ../../include/functions_visual_map_editor.php:920 -#: ../../include/functions_visual_map_editor.php:982 -#: ../../include/functions_profile.php:275 -#: ../../include/functions_profile.php:292 -#: ../../include/functions_profile.php:307 -#: ../../mobile/operation/events.php:638 -#: ../../operation/agentes/pandora_networkmap.editor.php:319 -#: ../../operation/agentes/ver_agente.php:986 -#: ../../operation/agentes/ver_agente.php:1029 -#: ../../operation/agentes/ver_agente.php:1039 -#: ../../operation/events/events.php:1588 -#: ../../operation/events/events_list.php:518 -#: ../../operation/events/events_list.php:1269 -#: ../../operation/gis_maps/render_view.php:150 -#: ../../operation/incidents/list_integriaims_incidents.php:271 -#: ../../operation/incidents/list_integriaims_incidents.php:275 -#: ../../operation/snmpconsole/snmp_view.php:605 -#: ../../operation/snmpconsole/snmp_view.php:1030 -#: ../../operation/snmpconsole/snmp_view.php:1041 -#: ../../operation/users/user_edit.php:387 -#: ../../operation/users/user_edit.php:423 -#: ../../operation/users/user_edit.php:480 -#: ../../operation/users/user_edit.php:494 -#: ../../operation/users/user_edit.php:838 -#: ../../operation/users/user_edit.php:845 -#: ../../operation/users/user_edit.php:854 -#: ../../operation/users/user_edit.php:861 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:72 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:75 -#: ../../enterprise/dashboard/widgets/service_map.php:40 -#: ../../enterprise/dashboard/widgets/top_n.php:466 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:79 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:82 -#: ../../enterprise/extensions/ipam/ipam_network.php:518 -#: ../../enterprise/extensions/visual_console_manager.php:372 -#: ../../enterprise/extensions/visual_console_manager.php:394 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:834 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:433 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:564 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:660 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:163 -#: ../../enterprise/godmode/alerts/alert_events.php:562 -#: ../../enterprise/godmode/alerts/alert_events_list.php:686 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:93 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:105 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:126 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:188 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:227 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:367 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:519 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:520 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:521 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:522 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:571 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:357 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:820 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:934 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:969 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1015 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:107 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:191 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:250 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:103 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:181 -#: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/modules/configure_local_component.php:672 -#: ../../enterprise/godmode/modules/configure_local_component.php:678 -#: ../../enterprise/godmode/modules/configure_local_component.php:686 -#: ../../enterprise/godmode/modules/configure_local_component.php:692 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:714 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:820 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1050 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1066 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1082 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1098 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1114 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1129 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1135 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:425 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:531 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:115 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:173 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:231 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:467 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:580 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:847 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:863 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:879 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:895 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:910 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:916 -#: ../../enterprise/godmode/policies/policy_agents.php:406 -#: ../../enterprise/godmode/policies/policy_agents.php:1362 -#: ../../enterprise/godmode/policies/policy_alerts.php:518 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:39 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1520 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1591 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1606 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1616 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1625 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1640 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1650 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:350 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:369 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:380 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:513 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:530 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:546 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:562 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:586 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:602 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:644 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:677 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:686 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:705 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:931 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1003 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1018 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1028 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1043 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1065 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2699 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2895 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:255 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:738 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:784 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:78 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:461 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:484 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:890 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:906 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:927 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:936 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1249 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1277 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1296 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1323 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:337 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:475 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:483 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:493 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:515 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:568 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:601 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:631 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:652 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:672 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:697 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:720 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:741 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:187 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:219 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:225 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:237 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:162 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:546 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:565 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:579 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:589 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:599 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:603 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:629 -#: ../../enterprise/godmode/servers/manage_export_form.php:79 -#: ../../enterprise/godmode/setup/setup.php:699 -#: ../../enterprise/godmode/setup/setup.php:716 -#: ../../enterprise/godmode/setup/setup.php:725 -#: ../../enterprise/godmode/setup/setup.php:742 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:809 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:817 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:965 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2172 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2217 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3175 -#: ../../enterprise/include/class/Omnishell.class.php:835 -#: ../../enterprise/include/class/Omnishell.class.php:836 -#: ../../enterprise/include/class/SAP.app.php:591 -#: ../../enterprise/include/class/SAP.app.php:760 -#: ../../enterprise/include/class/SAP.app.php:761 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:699 -#: ../../enterprise/meta/advanced/metasetup.setup.php:310 -#: ../../enterprise/meta/advanced/metasetup.setup.php:316 -#: ../../enterprise/meta/advanced/metasetup.setup.php:326 -#: ../../enterprise/meta/advanced/metasetup.setup.php:332 -#: ../../enterprise/meta/advanced/metasetup.visual.php:149 -#: ../../enterprise/meta/event/custom_events.php:225 -#: ../../enterprise/meta/event/custom_events.php:271 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:176 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:248 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:345 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:402 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:583 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:142 -#: ../../enterprise/operation/agentes/ver_agente.php:35 -#: ../../enterprise/operation/log/log_viewer.php:588 -msgid "None" -msgstr "Ninguno" +#: ../../godmode/agentes/planned_downtime.list.php:407 +#: ../../godmode/agentes/planned_downtime.list.php:479 +msgid "Stop downtime" +msgstr "Detener parada planificada" -#: ../../godmode/agentes/agent_manager.php:426 -#: ../../include/functions_events.php:4603 -#: ../../operation/agentes/estado_generalagente.php:344 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:511 -msgid "Secondary groups" -msgstr "Grupos secundarios" +#: ../../godmode/agentes/planned_downtime.list.php:438 +#: ../../godmode/agentes/planned_downtime.editor.php:680 +msgid "Disabled Agents" +msgstr "Agentes desactivados" -#: ../../godmode/agentes/agent_manager.php:476 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:557 -msgid "Add secondary groups" -msgstr "Añadir grupos secundarios" +#: ../../godmode/agentes/planned_downtime.list.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:681 +msgid "Disabled only Alerts" +msgstr "Deshabilitar solo las alertas" -#: ../../godmode/agentes/agent_manager.php:487 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:561 -msgid "Remove secondary groups" -msgstr "Eliminar grupos secundarios" +#: ../../godmode/agentes/planned_downtime.list.php:445 +msgid "once" +msgstr "una vez" -#: ../../godmode/agentes/agent_manager.php:533 -#: ../../godmode/massive/massive_edit_agents.php:707 -msgid "Safe operation mode" -msgstr "Modo seguro de operación" +#: ../../godmode/agentes/planned_downtime.list.php:460 +msgid "Not running" +msgstr "No está en ejecución" -#: ../../godmode/agentes/agent_manager.php:535 -#, php-format +#: ../../godmode/agentes/planned_downtime.list.php:555 msgid "" -"This mode allow %s to disable all modules \n" -"\t\tof this agent while the selected module is on CRITICAL status" +"WARNING: If you delete this planned downtime, it will not be taken into " +"account in future SLA reports" msgstr "" -"Este modo permite que %s deshabilite todos los módulos\n" -"\t\tde este agente mientras el módulo seleccionado esté en estado CRÍTICO" +"ADVERTENCIA: si se borra esta parada planificada, no se tendrá en cuenta en " +"futuros informes SLA." -#: ../../godmode/agentes/agent_manager.php:546 -#: ../../godmode/agentes/configurar_agente.php:512 -#: ../../godmode/agentes/configurar_agente.php:653 -#: ../../godmode/massive/massive_edit_agents.php:646 -#: ../../godmode/servers/servers.build_table.php:202 -#: ../../enterprise/godmode/policies/policy_agents.php:709 -msgid "Remote configuration" -msgstr "Configuración remota" +#: ../../godmode/agentes/planned_downtime.list.php:561 +msgid "WARNING: There are malformed planned downtimes" +msgstr "ADVERTENCIA: hay paradas planificadas mal formadas." -#: ../../godmode/agentes/agent_manager.php:556 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 -msgid "Delete remote configuration file" -msgstr "Borrar el archivo de configuración remota" - -#: ../../godmode/agentes/agent_manager.php:561 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 -msgid "" -"Delete this conf file implies that for restore you must reactive remote " -"config in the local agent." -msgstr "" -"Borrar el archivo .conf implica que para restaurarlo, se debe reactivar la " -"configuración remota en el agente local." - -#: ../../godmode/agentes/agent_manager.php:565 -#: ../../godmode/massive/massive_edit_agents.php:653 -msgid "Not available" -msgstr "No disponible" - -#: ../../godmode/agentes/agent_manager.php:583 -msgid "Cascade protection services" -msgstr "Servicios de protección en cascada" - -#: ../../godmode/agentes/agent_manager.php:585 -msgid "" -"Alerts and events will be managed by the service joined by this agent." -msgstr "" -"El servicio al que se ha unido este agente gestionará las alertas y eventos" - -#: ../../godmode/agentes/agent_manager.php:594 -#: ../../godmode/groups/configure_group.php:138 -#: ../../godmode/groups/group_list.php:584 -#: ../../godmode/massive/massive_edit_agents.php:522 -#: ../../godmode/modules/manage_nc_groups_form.php:71 -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -#: ../../include/functions_visual_map_editor.php:866 -#: ../../operation/agentes/estado_generalagente.php:361 -#: ../../operation/agentes/ver_agente.php:1027 -msgid "Parent" -msgstr "Padre" - -#: ../../godmode/agentes/agent_manager.php:614 -#: ../../godmode/massive/massive_edit_agents.php:535 -msgid "Cascade protection" -msgstr "Protección en cascada" - -#: ../../godmode/agentes/agent_manager.php:630 -#: ../../godmode/massive/massive_edit_agents.php:633 -msgid "Module definition" -msgstr "Definición de módulos" - -#: ../../godmode/agentes/agent_manager.php:635 -#: ../../godmode/massive/massive_edit_agents.php:635 -msgid "Learning mode" -msgstr "Modo de aprendizaje" - -#: ../../godmode/agentes/agent_manager.php:645 -#: ../../godmode/massive/massive_edit_agents.php:636 -msgid "Normal mode" -msgstr "Modo normal" - -#: ../../godmode/agentes/agent_manager.php:655 -#: ../../godmode/massive/massive_edit_agents.php:637 -msgid "Autodisable mode" -msgstr "Modo autodeshabilitado" - -#: ../../godmode/agentes/agent_manager.php:672 -msgid "Disabled mode" -msgstr "Modo deshabilitado" - -#: ../../godmode/agentes/agent_manager.php:672 -#: ../../godmode/massive/massive_edit_agents.php:642 -msgid "" -"If the remote configuration is enabled, it will also go into standby mode " -"when disabling it." -msgstr "" -"Si la configuración remota está habilitada, también entrará en modo de " -"espera cuando se deshabilite." - -#: ../../godmode/agentes/agent_manager.php:677 -#: ../../godmode/agentes/agent_manager.php:694 -#: ../../include/functions_treeview.php:713 -#: ../../operation/agentes/estado_generalagente.php:423 -#: ../../operation/agentes/ver_agente.php:1246 -msgid "Url address" -msgstr "Dirección URL" - -#: ../../godmode/agentes/agent_manager.php:677 -msgid "URL address must be complete, for example: https://pandorafms.com/" -msgstr "La URL debe ser completa, por ejemplo: https://pandorafms.com/" - -#: ../../godmode/agentes/agent_manager.php:707 -#: ../../godmode/agentes/modificar_agente.php:582 -#: ../../godmode/agentes/module_manager.php:742 -#: ../../godmode/agentes/module_manager_editor_common.php:1021 -#: ../../godmode/agentes/planned_downtime.editor.php:679 -#: ../../godmode/agentes/planned_downtime.list.php:437 -#: ../../godmode/massive/massive_edit_agents.php:691 -#: ../../godmode/massive/massive_edit_modules.php:1032 -#: ../../include/ajax/module.php:984 ../../include/class/Tree.class.php:809 -#: ../../mobile/operation/agent.php:179 -#: ../../operation/agentes/estado_agente.php:782 -#: ../../operation/agentes/estado_generalagente.php:115 -#: ../../operation/agentes/estado_generalagente.php:117 -#: ../../operation/search_agents.php:84 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:871 -#: ../../enterprise/godmode/services/services.service.php:439 -msgid "Quiet" -msgstr "Modo silencioso" - -#: ../../godmode/agentes/agent_manager.php:708 -#: ../../godmode/massive/massive_edit_agents.php:692 -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:720 -#: ../../godmode/massive/massive_edit_agents.php:681 -msgid "Agent icon" -msgstr "Icono de agente" - -#: ../../godmode/agentes/agent_manager.php:720 -msgid "Agent icon for GIS Maps." -msgstr "Icono de agente para mapas GIS" - -#: ../../godmode/agentes/agent_manager.php:770 -msgid "Update new GIS data:" -msgstr "Actualizar nuevos datos GIS:" - -#: ../../godmode/agentes/agent_manager.php:832 -msgid "Click to display" -msgstr "Pinche para visualizar" - -#: ../../godmode/agentes/agent_manager.php:833 -#: ../../godmode/massive/massive_edit_agents.php:753 -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:833 -#: ../../godmode/massive/massive_edit_agents.php:753 -msgid "" -"The format is: [url='url to navigate']'text to show'[/url] or [url]'url to " -"navigate'[/url] " -msgstr "" -"El formato es: [url='url a navegar']'texto a mostrar'[/url] o [url]'url a " -"navegar'[/url] " - -#: ../../godmode/agentes/agent_manager.php:833 -#: ../../godmode/massive/massive_edit_agents.php:753 -msgid "" -"e.g.: [url=google.com]Google web search[/url] or [url]www.goole.com[/url]" -msgstr "" -"Ej,: [url=google.com]búsqueda de Google[/url] o [url]www.goole.com[/url]" - -#: ../../godmode/agentes/agent_manager.php:944 -#: ../../godmode/agentes/agent_manager.php:969 -#: ../../godmode/events/events.php:55 ../../godmode/events/events.php:67 -#: ../../godmode/massive/massive_edit_agents.php:814 ../../godmode/menu.php:77 -#: ../../include/functions_events.php:4086 -#: ../../include/functions_events.php.orig:3992 -#: ../../operation/agentes/status_monitor.php:44 -#: ../../operation/agentes/status_monitor.php:57 -#: ../../operation/agentes/ver_agente.php:1257 -#: ../../enterprise/meta/event/custom_events.php:56 -#: ../../enterprise/meta/event/custom_events.php:61 -#: ../../enterprise/meta/event/custom_events.php:74 -#: ../../enterprise/meta/event/custom_events.php:92 -msgid "Custom fields" -msgstr "Campos personalizados" - -#: ../../godmode/agentes/agent_manager.php:1009 -#: ../../godmode/agentes/configure_field.php:138 -#: ../../godmode/agentes/module_manager.php:164 -#: ../../godmode/agentes/module_manager_editor.php:742 -#: ../../godmode/agentes/planned_downtime.list.php:373 -#: ../../godmode/agentes/planned_downtime.list.php:536 -#: ../../godmode/alerts/alert_actions.php:265 -#: ../../godmode/alerts/alert_commands.php:460 -#: ../../godmode/alerts/alert_list.list.php:874 -#: ../../godmode/alerts/alert_list.php:508 -#: ../../godmode/alerts/alert_special_days.php:521 -#: ../../godmode/alerts/alert_special_days.php:539 -#: ../../godmode/alerts/alert_templates.php:427 -#: ../../godmode/alerts/configure_alert_action.php:290 -#: ../../godmode/alerts/configure_alert_command.php:240 -#: ../../godmode/alerts/configure_alert_special_days.php:107 -#: ../../godmode/category/edit_category.php:176 -#: ../../godmode/events/event_edit_filter.php:625 -#: ../../godmode/events/event_responses.editor.php:193 -#: ../../godmode/groups/configure_group.php:237 -#: ../../godmode/groups/configure_modu_group.php:83 -#: ../../godmode/massive/massive_add_profiles.php:171 -#: ../../godmode/modules/manage_nc_groups.php:283 -#: ../../godmode/modules/manage_nc_groups_form.php:93 -#: ../../godmode/modules/manage_network_components.php:795 -#: ../../godmode/modules/manage_network_components_form.php:311 -#: ../../godmode/modules/manage_network_templates.php:284 -#: ../../godmode/modules/manage_network_templates_form.php:168 -#: ../../godmode/netflow/nf_edit_form.php:261 -#: ../../godmode/reporting/create_container.php:294 -#: ../../godmode/reporting/graph_builder.main.php:192 -#: ../../godmode/reporting/map_builder.php:492 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1797 -#: ../../godmode/servers/plugin.php:562 ../../godmode/setup/gis.php:103 -#: ../../godmode/setup/links.php:124 ../../godmode/setup/news.php:221 -#: ../../godmode/setup/os.php:50 ../../godmode/setup/os.php:77 -#: ../../godmode/snmpconsole/snmp_alert.php:1090 -#: ../../godmode/snmpconsole/snmp_alert.php:1446 -#: ../../godmode/snmpconsole/snmp_filters.php:232 -#: ../../godmode/snmpconsole/snmp_filters.php:305 -#: ../../godmode/tag/edit_tag.php:238 -#: ../../godmode/users/configure_user.php:999 -#: ../../godmode/users/profile_list.php:381 -#: ../../include/class/ManageNetScanScripts.class.php:760 -#: ../../include/functions_filemanager.php:797 -#: ../../include/functions_filemanager.php:803 -#: ../../include/functions_visual_map_editor.php:794 -#: ../../operation/gis_maps/gis_map.php:202 -#: ../../operation/incidents/configure_integriaims_incident.php:322 -#: ../../operation/incidents/incident_detail.php:402 -#: ../../operation/incidents/list_integriaims_incidents.php:319 -#: ../../enterprise/extensions/backup/main.php:275 -#: ../../enterprise/extensions/ipam/ipam_editor.php:229 -#: ../../enterprise/extensions/ipam/ipam_list.php:210 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:454 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:697 -#: ../../enterprise/godmode/agentes/collections.agents.php:40 -#: ../../enterprise/godmode/agentes/collections.data.php:58 -#: ../../enterprise/godmode/agentes/collections.data.php:142 -#: ../../enterprise/godmode/agentes/collections.data.php:166 -#: ../../enterprise/godmode/agentes/collections.data.php:183 -#: ../../enterprise/godmode/agentes/collections.data.php:207 -#: ../../enterprise/godmode/agentes/collections.data.php:254 -#: ../../enterprise/godmode/agentes/collections.editor.php:143 -#: ../../enterprise/godmode/agentes/collections.php:388 -#: ../../enterprise/godmode/alerts/alert_events_list.php:753 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:517 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:267 -#: ../../enterprise/godmode/modules/configure_local_component.php:654 -#: ../../enterprise/godmode/modules/local_components.php:631 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:454 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 -#: ../../enterprise/godmode/policies/configure_policy.php:110 -#: ../../enterprise/godmode/policies/policies.php:647 -#: ../../enterprise/godmode/policies/policy_modules.php:423 -#: ../../enterprise/godmode/reporting/aws_view.php:167 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:333 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:237 -#: ../../enterprise/godmode/servers/manage_export.php:130 -#: ../../enterprise/godmode/servers/manage_export.php:169 -#: ../../enterprise/godmode/services/services.elements.php:768 -#: ../../enterprise/godmode/services/services.service.php:562 -#: ../../enterprise/godmode/setup/edit_skin.php:296 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:565 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2800 -#: ../../enterprise/meta/advanced/collections.data.php:44 -#: ../../enterprise/meta/advanced/collections.data.php:73 -#: ../../enterprise/meta/advanced/collections.data.php:95 -#: ../../enterprise/meta/advanced/collections.data.php:112 -#: ../../enterprise/meta/advanced/collections.data.php:134 -#: ../../enterprise/meta/advanced/collections.data.php:174 -#: ../../enterprise/meta/advanced/collections.editor.php:110 -#: ../../enterprise/meta/advanced/collections.php:396 -#: ../../enterprise/meta/advanced/collections.php:414 -#: ../../enterprise/meta/advanced/cron_main.php:439 -#: ../../enterprise/meta/advanced/links.php:133 -#: ../../enterprise/meta/include/functions_autoprovision.php:562 -#: ../../enterprise/meta/include/functions_autoprovision.php:761 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:277 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:348 -msgid "Create" -msgstr "Crear" - -#: ../../godmode/agentes/agent_manager.php:1088 -msgid "Primary group cannot be secondary too." -msgstr "Un grupo primario no puede ser también secundario." - -#: ../../godmode/agentes/agent_manager.php:1218 -msgid "Secondary group cannot be primary too." -msgstr "Un grupo secundario no puede ser también primario." - -#: ../../godmode/agentes/agent_template.php:67 -#: ../../include/functions_api.php:14049 -msgid "Created by template " -msgstr "Creado mediante la plantilla " - -#: ../../godmode/agentes/agent_template.php:154 -#: ../../include/functions_api.php:14136 -msgid "Error adding modules" -msgstr "Error al añadir módulos" - -#: ../../godmode/agentes/agent_template.php:156 -#: ../../include/functions_api.php:14138 -msgid "Error adding modules. The following errors already exists: " -msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: " - -#: ../../godmode/agentes/agent_template.php:161 -#: ../../include/functions_api.php:14143 -msgid "Modules successfully added" -msgstr "Módulos añadidos correctamente" - -#: ../../godmode/agentes/agent_template.php:186 -msgid "Assign" -msgstr "Asignar" - -#: ../../godmode/agentes/agent_template.php:233 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 -#: ../../godmode/alerts/alert_list.list.php:83 -#: ../../godmode/modules/manage_network_components.php:670 -#: ../../godmode/modules/manage_network_templates_form.php:219 -#: ../../include/ajax/custom_fields.php:401 ../../include/ajax/module.php:836 -#: ../../mobile/operation/modules.php:567 -#: ../../mobile/operation/modules.php:818 -#: ../../operation/agentes/status_monitor.php:433 -#: ../../operation/agentes/status_monitor.php:1123 -#: ../../enterprise/include/ajax/clustermap.php:70 -#: ../../enterprise/include/ajax/clustermap.php:289 -#: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/operation/agentes/tag_view.php:177 -msgid "Module name" -msgstr "Nombre del módulo" - -#: ../../godmode/agentes/agent_template.php:234 -#: ../../godmode/agentes/modificar_agente.php:490 -#: ../../godmode/agentes/module_manager.php:647 -#: ../../godmode/agentes/module_manager_editor_common.php:299 -#: ../../godmode/agentes/module_manager_editor_common.php:412 -#: ../../godmode/agentes/module_manager_editor_common.php:1224 -#: ../../godmode/agentes/planned_downtime.editor.php:673 -#: ../../godmode/agentes/planned_downtime.list.php:401 -#: ../../godmode/alerts/alert_templates.php:37 -#: ../../godmode/alerts/alert_templates.php:285 -#: ../../godmode/alerts/alert_templates.php:368 -#: ../../godmode/events/event_responses.editor.php:141 -#: ../../godmode/modules/manage_network_components.php:671 -#: ../../godmode/modules/manage_network_components_form_common.php:75 -#: ../../godmode/modules/manage_network_templates_form.php:220 -#: ../../godmode/reporting/reporting_builder.item_editor.php:798 -#: ../../godmode/reporting/reporting_builder.list_items.php:212 -#: ../../godmode/reporting/reporting_builder.list_items.php:249 -#: ../../godmode/reporting/reporting_builder.list_items.php:372 -#: ../../godmode/reporting/visual_console_builder.wizard.php:135 -#: ../../godmode/reporting/visual_console_builder.wizard.php:303 -#: ../../godmode/servers/modificar_server.php:70 -#: ../../godmode/servers/plugin.php:970 -#: ../../godmode/servers/servers.build_table.php:67 -#: ../../godmode/setup/gis_step_2.php:219 ../../godmode/setup/news.php:237 -#: ../../godmode/setup/setup_integria.php:336 -#: ../../godmode/setup/setup_integria.php:459 ../../include/ajax/module.php:835 -#: ../../include/functions_snmp_browser.php:509 -#: ../../include/functions_events.php:2384 -#: ../../include/functions_events.php:4524 -#: ../../include/functions_events.php.orig:2290 -#: ../../include/functions_events.php.orig:4418 -#: ../../include/functions_visual_map_editor.php:634 -#: ../../include/functions_visual_map_editor.php:652 -#: ../../include/functions_visual_map_editor.php:780 -#: ../../include/functions_reporting_html.php:964 -#: ../../include/functions_reporting_html.php:972 -#: ../../include/functions_reporting_html.php:1184 -#: ../../include/functions_reporting_html.php:1192 -#: ../../include/functions_reporting_html.php:1963 -#: ../../include/functions_reporting_html.php:2660 -#: ../../include/functions_reporting_html.php:4137 -#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 -#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:680 -#: ../../mobile/operation/events.php:681 -#: ../../mobile/operation/visualmaps.php:67 -#: ../../mobile/operation/visualmaps.php:68 -#: ../../operation/agentes/estado_agente.php:713 -#: ../../operation/agentes/ver_agente.php:979 -#: ../../operation/events/sound_events.php:74 -#: ../../operation/incidents/configure_integriaims_incident.php:210 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:377 -#: ../../operation/netflow/nf_live_view.php:311 -#: ../../operation/search_modules.php:33 -#: ../../enterprise/godmode/modules/configure_local_component.php:206 -#: ../../enterprise/godmode/policies/policy_modules.php:1492 -#: ../../enterprise/godmode/reporting/cluster_list.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1496 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:274 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 -#: ../../enterprise/godmode/services/services.elements.php:637 -#: ../../enterprise/godmode/services/services.elements.php:660 -#: ../../enterprise/include/functions_services.php:2466 -#: ../../enterprise/include/functions_reporting_csv.php:1398 -#: ../../enterprise/include/functions_reporting_csv.php:1514 -#: ../../enterprise/include/functions_reporting_csv.php:1714 -#: ../../enterprise/include/functions_reporting_csv.php:1782 -#: ../../enterprise/meta/advanced/servers.build_table.php:60 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 -#: ../../enterprise/operation/agentes/policy_view.php:325 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/operation/agentes/ver_agente.php:29 -msgid "Type" -msgstr "Tipo" - -#: ../../godmode/agentes/agent_template.php:267 -#: ../../mobile/operation/modules.php:736 -msgid "No modules" -msgstr "Sin módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 -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:64 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 -msgid "It is necessary to use some features" -msgstr "Se necesita usar algunas características" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 -msgid "" -"Please, install the SNMP remote plugin (The name of the plugin must be " -"snmp_remote.pl)" -msgstr "" -"Por favor, instala el plugin remoto de SNMP (el nombre del plugin debe ser " -"snmp_remote.pl)" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:286 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:283 -msgid "Remote system doesnt support host SNMP information" -msgstr "El sistema remoto no es compatible la información del host SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:334 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:229 -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:371 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:369 -msgid "The number of bytes read from this device since boot" -msgstr "Número de bytes leídos desde este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:372 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:370 -msgid "The number of bytes written to this device since boot" -msgstr "Número de bytes escritos en este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:373 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:371 -msgid "The number of read accesses from this device since boot" -msgstr "Número de lectura accesible desde este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:374 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:372 -msgid "The number of write accesses from this device since boot" -msgstr "" -"Número de accesos en escritura desde este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:548 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:544 -#, php-format -msgid "Check if the process %s is running or not" -msgstr "Comprueba que el proceso %s se está ejecutando correctamente." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:615 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:611 -msgid "Disk use information" -msgstr "Información de uso del disco" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:676 -#, php-format -msgid "%s modules created succesfully" -msgstr "%s módulos creados correctamente" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:691 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:697 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:682 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:688 -#, php-format -msgid "Error creating %s modules" -msgstr "Error al crear %s módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:694 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:445 -#, php-format -msgid "%s modules already exist" -msgstr "%s módulos ya existen" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:711 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:702 -msgid "Modules created succesfully" -msgstr "Módulos creados correctamente" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:470 -msgid "Use agent ip" -msgstr "Usar IP del agente" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:474 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 -#: ../../godmode/events/event_responses.editor.php:157 -#: ../../include/functions_snmp_browser.php:663 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:743 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:454 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:526 -msgid "Local console" -msgstr "Consola local" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:758 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:495 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:501 -#: ../../godmode/events/event_responses.editor.php:174 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:759 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:470 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:542 -msgid "Server to execute command" -msgstr "Servidor para ejecutar el comando" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:774 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:512 -#: ../../godmode/agentes/module_manager_editor_network.php:149 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:262 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:733 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:444 -msgid "SNMP community" -msgstr "Comunidad SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:777 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:515 -#: ../../godmode/agentes/module_manager_editor_network.php:180 -#: ../../godmode/massive/massive_edit_modules.php:767 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:271 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:736 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:447 -#: ../../enterprise/include/functions_hostdevices.php:61 -msgid "SNMP version" -msgstr "Versión SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:791 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:528 -#: ../../godmode/agentes/module_manager_editor_network.php:336 -#: ../../godmode/massive/massive_edit_modules.php:780 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../include/functions_snmp_browser.php:694 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:298 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:769 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:480 -#: ../../enterprise/include/functions_hostdevices.php:119 -msgid "Auth user" -msgstr "Autentificación de usuario" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:530 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -#: ../../godmode/massive/massive_edit_modules.php:789 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../include/functions_snmp_browser.php:696 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:307 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:771 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:482 -#: ../../enterprise/include/functions_hostdevices.php:130 -msgid "Auth password" -msgstr "Autentificación de contraseña" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:797 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:534 -#: ../../godmode/agentes/module_manager_editor_network.php:369 -#: ../../godmode/massive/massive_edit_modules.php:791 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../include/functions_snmp_browser.php:700 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:323 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:649 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:775 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:486 -#: ../../enterprise/include/functions_hostdevices.php:146 -msgid "Privacy method" -msgstr "Método de privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:535 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -#: ../../godmode/massive/massive_edit_modules.php:792 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../include/functions_snmp_browser.php:701 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:326 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 -#: ../../enterprise/include/functions_hostdevices.php:151 -msgid "DES" -msgstr "DES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:535 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -#: ../../godmode/massive/massive_edit_modules.php:792 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../include/functions_snmp_browser.php:701 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:327 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 -#: ../../enterprise/include/functions_hostdevices.php:152 -msgid "AES" -msgstr "AES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:799 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:536 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:336 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:777 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:488 -msgid "privacy pass" -msgstr "pase privado" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:802 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:539 -#: ../../godmode/agentes/module_manager_editor_network.php:391 -#: ../../godmode/massive/massive_edit_modules.php:795 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../include/functions_snmp_browser.php:705 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:346 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:653 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:780 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:491 -#: ../../enterprise/include/functions_hostdevices.php:177 -msgid "Auth method" -msgstr "Método de autentificación" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 -#: ../../godmode/agentes/module_manager_editor_network.php:394 -#: ../../godmode/massive/massive_edit_modules.php:796 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../include/class/Diagnostics.class.php:2166 -#: ../../include/functions_snmp_browser.php:706 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:349 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 -#: ../../enterprise/include/functions_hostdevices.php:182 -msgid "MD5" -msgstr "MD5" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 -#: ../../godmode/agentes/module_manager_editor_network.php:395 -#: ../../godmode/massive/massive_edit_modules.php:796 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../include/functions_snmp_browser.php:706 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:350 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 -#: ../../enterprise/include/functions_hostdevices.php:183 -msgid "SHA" -msgstr "SHA" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:541 -#: ../../godmode/agentes/module_manager_editor_network.php:408 -#: ../../godmode/massive/massive_edit_modules.php:797 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../include/functions_snmp_browser.php:707 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:359 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:655 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:782 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:493 -#: ../../enterprise/include/functions_hostdevices.php:192 -msgid "Security level" -msgstr "Nivel de seguridad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:807 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:544 -#: ../../godmode/agentes/module_manager_editor_network.php:411 -#: ../../godmode/massive/massive_edit_modules.php:800 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../include/functions_snmp_browser.php:710 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:362 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:785 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:496 -#: ../../enterprise/include/functions_hostdevices.php:197 -msgid "Not auth and not privacy method" -msgstr "Método sin autentificación ni privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:808 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 -#: ../../godmode/agentes/module_manager_editor_network.php:412 -#: ../../godmode/massive/massive_edit_modules.php:801 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../include/functions_snmp_browser.php:711 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:363 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:786 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:497 -#: ../../enterprise/include/functions_hostdevices.php:198 -msgid "Auth and not privacy method" -msgstr "Método con autentificación y sin privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:809 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:546 -#: ../../godmode/agentes/module_manager_editor_network.php:413 -#: ../../godmode/massive/massive_edit_modules.php:802 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../include/functions_snmp_browser.php:712 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:364 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:660 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:787 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:498 -#: ../../enterprise/include/functions_hostdevices.php:199 -msgid "Auth and privacy method" -msgstr "Método con autentificación y privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:830 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:567 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:808 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:519 -msgid "SNMP Walk" -msgstr "Exploración SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 -#: ../../godmode/groups/group_list.php:737 -#: ../../operation/network/network_report.php:333 ../../operation/tree.php:347 -#: ../../enterprise/dashboard/widgets/tree_view.php:232 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 -#: ../../enterprise/include/functions_inventory.php:179 -#: ../../enterprise/operation/services/services.treeview_services.php:171 -msgid "No data found" -msgstr "No se encontraron datos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 -msgid "" -"If the device is a network device, try with the SNMP Interfaces wizard" -msgstr "" -"Si el dispositivo es un dispositivo de red, prueba con el asistente de " -"interfaz SNMP." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:840 -msgid "Devices" -msgstr "Dispositivos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:864 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:556 -#: ../../operation/agentes/ver_agente.php:1314 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:841 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:619 -msgid "Processes" -msgstr "Procesos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:557 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:842 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:620 -msgid "Free space on disk" -msgstr "Espacio libre en disco" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:866 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:843 -msgid "Temperature sensors" -msgstr "Sensores de temperatura" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:867 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:844 -msgid "Other SNMP data" -msgstr "Otros datos SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:869 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:560 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:846 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:623 -msgid "Wizard mode" -msgstr "Modo asistente" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:909 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:914 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:886 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:891 -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:993 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:995 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:999 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:677 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:685 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:693 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:701 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:970 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:972 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:974 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:976 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:979 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:738 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:745 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:752 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:759 -msgid "Add to modules list" -msgstr "Añadir a la lista de módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1005 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:710 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:982 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:767 -msgid "Remove from modules list" -msgstr "Eliminar de la lista de módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1015 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:635 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:739 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:992 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:569 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:796 -msgid "Create modules" -msgstr "Crear módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1074 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1049 -msgid "Device" -msgstr "Dispositivo" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1080 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1096 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1112 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1128 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1144 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:795 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:811 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:827 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:843 -#: ../../godmode/events/event_edit_filter.php:404 -#: ../../include/functions_events.php:4534 -#: ../../include/functions_events.php.orig:4428 -#: ../../mobile/operation/events.php:528 ../../operation/events/events.php:938 -#: ../../operation/events/events_list.php:968 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1055 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1071 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1087 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1103 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1119 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:852 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:868 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:884 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:900 -#: ../../enterprise/include/functions_events.php:198 -msgid "Repeated" -msgstr "Repetido" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1090 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:805 -#: ../../godmode/reporting/visual_console_builder.wizard.php:276 -#: ../../include/functions_visual_map_editor.php:544 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1065 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:862 -msgid "Process" -msgstr "Procesar" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1122 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1097 -msgid "Temperature" -msgstr "Temperatura" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1169 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:865 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1144 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:922 -msgid "Modules list is empty" -msgstr "La lista de módulos está vacía." - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:224 -#: ../../godmode/massive/massive_add_action_alerts.php:122 -#: ../../godmode/massive/massive_delete_action_alerts.php:129 -#: ../../godmode/massive/massive_edit_modules.php:1865 -#: ../../godmode/reporting/visual_console_builder.php:579 -#: ../../include/functions_visual_map.php:2763 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:872 -#: ../../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:411 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 -msgid "Successfully modules created" -msgstr "Módulos creados correctamente" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:416 -#: ../../godmode/agentes/configurar_agente.php:351 -#: ../../godmode/agentes/configurar_agente.php:774 -#: ../../godmode/agentes/planned_downtime.editor.php:510 -#: ../../godmode/alerts/alert_commands.php:326 -#: ../../godmode/alerts/alert_list.php:163 -#: ../../godmode/alerts/alert_special_days.php:159 -#: ../../godmode/alerts/configure_alert_template.php:150 -#: ../../godmode/alerts/configure_alert_template.php:477 -#: ../../godmode/modules/manage_nc_groups.php:83 -#: ../../godmode/modules/manage_network_components.php:201 -#: ../../godmode/modules/manage_network_components.php:306 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4489 -#: ../../godmode/setup/gis.php:55 ../../godmode/setup/news.php:63 -#: ../../godmode/users/configure_user.php:338 -#: ../../include/functions_alerts.php:2825 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:829 -#: ../../operation/agentes/pandora_networkmap.php:126 -#: ../../operation/agentes/pandora_networkmap.php:367 -#: ../../enterprise/extensions/ipam/ipam_action.php:129 -#: ../../enterprise/extensions/ipam/ipam_action.php:138 -#: ../../enterprise/godmode/alerts/alert_events.php:398 -#: ../../enterprise/godmode/modules/local_components.php:123 -#: ../../enterprise/godmode/modules/local_components.php:270 -#: ../../enterprise/godmode/policies/policies.php:209 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:385 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:38 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:78 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:255 -#: ../../enterprise/operation/agentes/transactional_map.php:109 -msgid "Could not be created" -msgstr "No se ha podido crear" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:422 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:391 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2055 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2155 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2644 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2763 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2854 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3049 -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:426 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 -msgid "Some required fields are missed" -msgstr "Faltan campos necesarios por rellenar." - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:426 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 -msgid "name" -msgstr "nombre" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:432 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:401 -msgid "Processing error" -msgstr "Error de procesamiento" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:496 -msgid "" -"In order to use remote executions you need to enable remote execution in " -"satellite server" -msgstr "" -"Para usar ejecuciones remotas, habilite la ejecución remota en el servidor " -"satélite." - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:571 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:523 -msgid "Unable to do SNMP walk" -msgstr "No se pudo realizar el SNMP walk" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:606 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:409 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:557 -msgid "Interfaces" -msgstr "Interfaces" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:612 -msgid "When selecting interfaces" -msgstr "Al seleccionar interfaces" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:200 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:234 -#, php-format -msgid "Free space on %s" -msgstr "Espacio libre en %s" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:353 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:383 -#, php-format -msgid "%s service modules created succesfully" -msgstr "%s módulos de servicio creados correctamente" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:360 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:390 -#, php-format -msgid "Error creating %s service modules" -msgstr "Error al crear %s módulos de servicio" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:399 -#, php-format -msgid "%s process modules created succesfully" -msgstr "%s módulos de proceso creados correctamente" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:376 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:406 -#, php-format -msgid "Error creating %s process modules" -msgstr "Error al crear %s módulos de proceso" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:385 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:415 -#, 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:392 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:422 -#, php-format -msgid "Error creating %s disk space modules" -msgstr "Error al crear %s módulos de espacio en disco" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:401 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:431 -#, 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:408 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:438 -#, 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:450 -#: ../../godmode/agentes/module_manager_editor_wmi.php:47 -#: ../../godmode/modules/manage_network_components_form_wmi.php:41 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:485 -msgid "Namespace" -msgstr "Espacio de nombres" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:518 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:562 -msgid "WMI Explore" -msgstr "Explorador WMI" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:526 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:571 -msgid "Unable to do WMI explorer" -msgstr "Imposible lanzar el Explorador WMI" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:558 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:621 -msgid "WMI components" -msgstr "Componentes WMI" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:580 -#: ../../godmode/agentes/planned_downtime.editor.php:938 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:643 -msgid "Filter by group" -msgstr "Filtrar por grupo" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:648 -#: ../../godmode/agentes/module_manager_editor_common.php:108 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:84 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:710 -msgid "No component was found" -msgstr "No se encontró ningún componente" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:789 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 -#: ../../enterprise/dashboard/widgets/service_map.php:54 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:164 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:846 -#: ../../enterprise/godmode/services/services.elements.php:620 -#: ../../enterprise/godmode/services/services.elements.php:649 -#: ../../enterprise/godmode/services/services.elements.php:657 -#: ../../enterprise/godmode/services/services.elements.php:726 -#: ../../enterprise/include/functions_visual_map.php:538 -#: ../../enterprise/include/functions_visual_map_editor.php:20 -#: ../../enterprise/include/functions_visual_map_editor.php:33 -#: ../../enterprise/include/functions_visual_map_editor.php:64 -#: ../../enterprise/include/functions_services.php:2523 -#: ../../enterprise/include/functions_reporting.php:5704 -msgid "Service" -msgstr "Servicio" - -#: ../../godmode/agentes/configurar_agente.php:230 -#: ../../godmode/agentes/configurar_agente.php:938 -msgid "No agent alias specified" -msgstr "No se ha especificado el alias del agente" - -#: ../../godmode/agentes/configurar_agente.php:353 -#: ../../include/functions_api.php:1639 -msgid "Could not be created, because name already exists" -msgstr "No se pudo crear, el nombre ya existe." - -#: ../../godmode/agentes/configurar_agente.php:355 -#: ../../include/functions_api.php:1641 -msgid "Could not be created, because IP already exists" -msgstr "No se ha podido crear porque la IP ya existe" - -#: ../../godmode/agentes/configurar_agente.php:369 -#: ../../godmode/agentes/modificar_agente.php:54 -#: ../../godmode/agentes/modificar_agente.php:618 -#: ../../godmode/agentes/modificar_agente.php:622 -#: ../../godmode/reporting/visual_console_builder.php:792 -#: ../../godmode/setup/setup_visuals.php:159 -#: ../../godmode/setup/setup_visuals.php:224 -#: ../../godmode/setup/setup_visuals.php:278 -#: ../../godmode/setup/setup_visuals.php:283 -#: ../../godmode/setup/setup_visuals.php:322 -#: ../../godmode/setup/setup_visuals.php:359 -#: ../../godmode/setup/setup_visuals.php:381 -#: ../../godmode/setup/setup_visuals.php:407 -#: ../../godmode/setup/setup_visuals.php:427 -#: ../../godmode/setup/setup_visuals.php:447 -#: ../../godmode/setup/setup_visuals.php:467 -#: ../../godmode/setup/setup_visuals.php:617 -#: ../../operation/agentes/estado_agente.php:793 -#: ../../operation/agentes/estado_agente.php:795 -#: ../../operation/agentes/status_monitor.php:50 -#: ../../operation/agentes/ver_agente.php:1550 -#: ../../operation/visual_console/legacy_view.php:167 -#: ../../operation/visual_console/pure_ajax.php:164 -#: ../../operation/visual_console/view.php:132 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:90 -#: ../../enterprise/meta/screens/screens.visualmap.php:100 -#: ../../enterprise/meta/screens/screens.visualmap.php:119 -#: ../../enterprise/operation/agentes/policy_view.php:53 -msgid "View" -msgstr "Vista" - -#: ../../godmode/agentes/configurar_agente.php:380 -#: ../../godmode/agentes/configurar_agente.php:600 ../../godmode/menu.php:272 -#: ../../godmode/menu.php:279 ../../operation/agentes/estado_agente.php:179 -#: ../../operation/gis_maps/render_view.php:160 -#: ../../enterprise/godmode/policies/configure_policy.php:37 -#: ../../enterprise/godmode/servers/HA_cluster.php:52 -#: ../../enterprise/include/functions_policies.php:3711 -msgid "Setup" -msgstr "Configuración" - -#: ../../godmode/agentes/configurar_agente.php:406 ../../godmode/menu.php:143 -msgid "Module templates" -msgstr "Plantillas de módulos" - -#: ../../godmode/agentes/configurar_agente.php:457 -#: ../../operation/agentes/ver_agente.php:1221 -msgid "GIS data" -msgstr "Datos GIS" - -#: ../../godmode/agentes/configurar_agente.php:467 -#: ../../enterprise/godmode/policies/policy.php:82 -#: ../../enterprise/include/functions_policies.php:3729 -msgid "Agent wizard" -msgstr "Asistente de agente" - -#: ../../godmode/agentes/configurar_agente.php:472 -#: ../../godmode/agentes/configurar_agente.php:659 -#: ../../godmode/setup/snmp_wizard.php:31 -#: ../../enterprise/include/functions_policies.php:3734 -msgid "SNMP Wizard" -msgstr "Asistente SNMP" - -#: ../../godmode/agentes/configurar_agente.php:475 -#: ../../godmode/agentes/configurar_agente.php:665 -#: ../../enterprise/include/functions_policies.php:3737 -msgid "SNMP Interfaces wizard" -msgstr "Asistente de interfaces SNMP" - -#: ../../godmode/agentes/configurar_agente.php:478 -#: ../../godmode/agentes/configurar_agente.php:671 -#: ../../enterprise/include/functions_policies.php:3740 -msgid "WMI Wizard" -msgstr "Asistente WMI" - -#: ../../godmode/agentes/configurar_agente.php:606 -#: ../../enterprise/godmode/agentes/collections.php:321 -#: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/meta/advanced/collections.php:319 -#: ../../enterprise/operation/agentes/ver_agente.php:201 -msgid "Collection" -msgstr "Colección" - -#: ../../godmode/agentes/configurar_agente.php:611 -#: ../../include/functions_reports.php:841 -#: ../../include/functions_reports.php:842 -#: ../../include/functions_reports.php:846 -#: ../../include/functions_reporting.php:2213 -#: ../../enterprise/godmode/agentes/configurar_agente.php:33 -#: ../../enterprise/godmode/policies/policies.php:555 -#: ../../enterprise/include/functions_reporting_csv.php:661 -#: ../../enterprise/operation/agentes/ver_agente.php:184 -#: ../../enterprise/operation/inventory/inventory.php:126 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -msgid "Inventory" -msgstr "Inventario" - -#: ../../godmode/agentes/configurar_agente.php:617 -#: ../../enterprise/godmode/agentes/configurar_agente.php:50 -#: ../../enterprise/godmode/policies/policy.php:71 -#: ../../enterprise/include/functions_policies.php:3808 -msgid "Agent plugins" -msgstr "Plugins del agente" - -#: ../../godmode/agentes/configurar_agente.php:633 -#: ../../godmode/events/custom_events.php:104 ../../include/functions.php:3788 -#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:198 -#: ../../include/functions_events.php:259 -#: ../../include/functions_events.php:2471 -#: ../../include/functions_events.php:6057 -#: ../../include/functions_events.php.orig:196 -#: ../../include/functions_events.php.orig:257 -#: ../../include/functions_events.php.orig:2377 -#: ../../include/functions_events.php.orig:5961 -#: ../../operation/agentes/estado_monitores.php:513 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/snmpconsole/snmp_view.php:519 -#: ../../operation/snmpconsole/snmp_view.php:831 -#: ../../operation/snmpconsole/snmp_view.php:1165 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -msgid "Alert" -msgstr "Alerta" - -#: ../../godmode/agentes/configurar_agente.php:639 ../../godmode/menu.php:197 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:254 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:159 -#: ../../enterprise/include/functions_reporting.php:96 -#: ../../enterprise/include/functions_reporting.php:7307 -#: ../../enterprise/include/functions_reporting.php:7335 -#: ../../enterprise/include/functions_reporting.php:7396 -#: ../../enterprise/meta/include/functions_alerts_meta.php:121 -#: ../../enterprise/meta/include/functions_alerts_meta.php:140 -msgid "Templates" -msgstr "Plantillas" - -#: ../../godmode/agentes/configurar_agente.php:644 -msgid "Gis" -msgstr "GIS" - -#: ../../godmode/agentes/configurar_agente.php:686 -msgid "SNMP explorer" -msgstr "Explorador SNMP" - -#: ../../godmode/agentes/configurar_agente.php:716 -#: ../../godmode/agentes/configurar_agente.php:738 ../../godmode/menu.php:103 -msgid "Resources" -msgstr "Recursos" - -#: ../../godmode/agentes/configurar_agente.php:717 -#: ../../godmode/agentes/configurar_agente.php:739 ../../godmode/menu.php:71 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:216 -msgid "Manage agents" -msgstr "Gestionar agentes" - -#: ../../godmode/agentes/configurar_agente.php:726 -msgid "Agent manager" -msgstr "Administrador de agente" - -#: ../../godmode/agentes/configurar_agente.php:740 -#: ../../godmode/agentes/modificar_agente.php:726 -#: ../../operation/agentes/estado_agente.php:877 -#: ../../operation/agentes/estado_agente.php:888 -#: ../../operation/snmpconsole/snmp_statistics.php:155 -#: ../../operation/snmpconsole/snmp_view.php:901 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:211 -msgid "Create agent" -msgstr "Crear agente" - -#: ../../godmode/agentes/configurar_agente.php:766 -#: ../../godmode/servers/modificar_server.php:180 -msgid "Conf file deleted successfully" -msgstr "Archivo de configuración borrado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:767 -#: ../../godmode/servers/modificar_server.php:181 -msgid "Could not delete conf file" -msgstr "No se puede borrar el archivo de configuración" - -#: ../../godmode/agentes/configurar_agente.php:779 -#: ../../godmode/agentes/planned_downtime.editor.php:517 -#: ../../godmode/alerts/alert_commands.php:339 -#: ../../godmode/alerts/alert_list.php:176 -#: ../../godmode/alerts/alert_special_days.php:164 -#: ../../godmode/alerts/configure_alert_template.php:486 -#: ../../godmode/modules/manage_nc_groups.php:82 ../../godmode/setup/gis.php:53 -#: ../../godmode/setup/links.php:41 ../../godmode/setup/news.php:62 -#: ../../godmode/snmpconsole/snmp_alert.php:258 -#: ../../godmode/snmpconsole/snmp_filters.php:143 -#: ../../godmode/users/configure_user.php:337 -#: ../../godmode/users/profile_list.php:222 -#: ../../include/functions_alerts.php:2824 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:834 -#: ../../enterprise/extensions/ipam/ipam_action.php:135 -#: ../../enterprise/godmode/alerts/alert_events.php:398 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:37 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:77 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:108 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:122 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:207 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:220 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:268 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:281 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:361 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:378 -#: ../../enterprise/meta/advanced/cron_main.php:143 -#: ../../enterprise/meta/advanced/cron_main.php:187 -#: ../../enterprise/meta/advanced/cron_main.php:275 -#: ../../enterprise/meta/advanced/links.php:46 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:254 -#: ../../enterprise/operation/agentes/transactional_map.php:108 -msgid "Successfully created" -msgstr "Creado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:811 -#: ../../godmode/agentes/configurar_agente.php:815 -msgid "No data to normalize" -msgstr "No hay datos para normalizar" - -#: ../../godmode/agentes/configurar_agente.php:820 -#, php-format -msgid "Deleted data above %f" -msgstr "Eliminar datos por encima de %f" - -#: ../../godmode/agentes/configurar_agente.php:821 -#, php-format -msgid "Error normalizing module %s" -msgstr "Error al normalizar el módulo %s" - -#: ../../godmode/agentes/configurar_agente.php:948 -#, php-format -msgid "The group id %d is incorrect." -msgstr "El grupo id %d es incorrecto." - -#: ../../godmode/agentes/configurar_agente.php:950 -msgid "Duplicate main IP address" -msgstr "Duplicar la dirección IP principal" - -#: ../../godmode/agentes/configurar_agente.php:1006 -msgid "There was a problem updating the agent" -msgstr "Hubo un problema al actualizar el agente" - -#: ../../godmode/agentes/configurar_agente.php:1114 -#: ../../godmode/agentes/planned_downtime.editor.php:519 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/alerts/alert_list.php:92 -#: ../../godmode/alerts/alert_list.php:304 -#: ../../godmode/alerts/alert_special_days.php:232 -#: ../../godmode/alerts/alert_templates.php:162 -#: ../../godmode/alerts/configure_alert_command.php:112 -#: ../../godmode/alerts/configure_alert_template.php:504 -#: ../../godmode/events/event_edit_filter.php:191 -#: ../../godmode/massive/massive_edit_modules.php:166 -#: ../../godmode/modules/manage_nc_groups.php:111 -#: ../../godmode/netflow/nf_edit_form.php:139 ../../godmode/setup/gis.php:45 -#: ../../godmode/setup/links.php:60 ../../godmode/setup/news.php:99 -#: ../../godmode/snmpconsole/snmp_alert.php:380 -#: ../../godmode/snmpconsole/snmp_filters.php:89 -#: ../../godmode/users/profile_list.php:205 -#: ../../include/functions_alerts.php:2824 -#: ../../include/functions_planned_downtimes.php:124 -#: ../../operation/incidents/incident.php:157 -#: ../../operation/snmpconsole/snmp_view.php:137 -#: ../../enterprise/extensions/ipam/ipam_action.php:188 -#: ../../enterprise/extensions/ipam/ipam_massive.php:47 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:104 -#: ../../enterprise/godmode/alerts/alert_events.php:426 -#: ../../enterprise/godmode/alerts/alert_events_list.php:99 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:175 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:105 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:288 -#: ../../enterprise/godmode/policies/policy_modules.php:1264 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:59 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:126 -#: ../../enterprise/meta/advanced/links.php:67 -#: ../../enterprise/operation/agentes/transactional_map.php:140 -msgid "Successfully updated" -msgstr "Actualizado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1140 -msgid "There was a problem loading the agent" -msgstr "Hubo un problema al cargar el agente" - -#: ../../godmode/agentes/configurar_agente.php:1625 -msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." -msgstr "" -"Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo " -"nombre." - -#: ../../godmode/agentes/configurar_agente.php:1629 -msgid "" -"There was a problem updating module. Some required fields are missed: (name)" -msgstr "" -"Hubo un problema al actualizar el módulo. Faltan algunos campos requeridos: " -"(nombre)" - -#: ../../godmode/agentes/configurar_agente.php:1633 -msgid "There was a problem updating module. \"No change\"" -msgstr "Hubo un problema al actualizar el módulo. \"Sin cambios\"." - -#: ../../godmode/agentes/configurar_agente.php:1639 -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:1668 -msgid "Module successfully updated" -msgstr "Módulo actualizado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1813 -msgid "" -"There was a problem adding module. Another module already exists with the " -"same name." -msgstr "" -"Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo " -"nombre." - -#: ../../godmode/agentes/configurar_agente.php:1817 -msgid "" -"There was a problem adding module. Some required fields are missed : (name)" -msgstr "" -"Hubo un problema al añadir el módulo. Faltan algunos campos requeridos: " -"(nombre)" - -#: ../../godmode/agentes/configurar_agente.php:1823 -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:1852 -#: ../../godmode/reporting/graph_builder.php:311 -msgid "Module added successfully" -msgstr "Módulo añadido correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1907 -#: ../../godmode/agentes/configurar_agente.php:2188 -#: ../../godmode/agentes/modificar_agente.php:129 -#: ../../godmode/alerts/alert_list.php:356 -#: ../../godmode/massive/massive_enable_disable_alerts.php:87 -#: ../../godmode/users/user_list.php:242 -#: ../../include/ajax/alert_list.ajax.php:91 -#: ../../enterprise/godmode/alerts/alert_events_list.php:252 -#: ../../enterprise/godmode/policies/policy_alerts.php:94 -#: ../../enterprise/godmode/policies/policy_modules.php:491 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:620 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1104 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:144 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:288 -msgid "Successfully enabled" -msgstr "Activado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1908 -#: ../../godmode/agentes/configurar_agente.php:2189 -#: ../../godmode/agentes/modificar_agente.php:130 -#: ../../godmode/alerts/alert_list.php:357 -#: ../../godmode/massive/massive_enable_disable_alerts.php:87 -#: ../../include/ajax/alert_list.ajax.php:93 -#: ../../enterprise/godmode/alerts/alert_events_list.php:253 -#: ../../enterprise/godmode/policies/policy_alerts.php:95 -#: ../../enterprise/godmode/policies/policy_modules.php:492 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:621 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1105 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:145 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:289 -msgid "Could not be enabled" -msgstr "No se pudo activar" - -#: ../../godmode/agentes/configurar_agente.php:1948 -#: ../../godmode/agentes/configurar_agente.php:2207 -#: ../../godmode/agentes/modificar_agente.php:152 -#: ../../godmode/alerts/alert_list.php:387 -#: ../../godmode/massive/massive_enable_disable_alerts.php:105 -#: ../../godmode/users/user_list.php:236 -#: ../../include/ajax/alert_list.ajax.php:112 -#: ../../enterprise/godmode/alerts/alert_events_list.php:272 -#: ../../enterprise/godmode/policies/policy_alerts.php:115 -#: ../../enterprise/godmode/policies/policy_modules.php:507 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:612 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1096 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:153 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:305 -msgid "Successfully disabled" -msgstr "Desactivado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1949 -#: ../../godmode/agentes/configurar_agente.php:2208 -#: ../../godmode/agentes/modificar_agente.php:153 -#: ../../godmode/alerts/alert_list.php:388 -#: ../../godmode/massive/massive_enable_disable_alerts.php:105 -#: ../../include/ajax/alert_list.ajax.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:273 -#: ../../enterprise/godmode/policies/policy_alerts.php:116 -#: ../../enterprise/godmode/policies/policy_modules.php:508 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:613 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1097 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:154 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:306 -msgid "Could not be disabled" -msgstr "No se pudo desactivar" - -#: ../../godmode/agentes/configurar_agente.php:2112 -msgid "There was a problem deleting the module" -msgstr "Hubo un problema al borrar el módulo" - -#: ../../godmode/agentes/configurar_agente.php:2116 -msgid "Module deleted succesfully" -msgstr "Módulo borrado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:2133 -#: ../../enterprise/godmode/policies/policy_modules.php:1389 -#, php-format -msgid "copy of %s" -msgstr "copia de %s" - -#: ../../godmode/agentes/configurar_agente.php:2147 -#: ../../enterprise/godmode/policies/policy_modules.php:1407 -#, php-format -msgid "copy of %s (%d)" -msgstr "copia de %s (%d)" - -#: ../../godmode/agentes/configurar_agente.php:2243 -#: ../../include/functions_api.php:10117 -#, php-format -msgid "Save by %s Console" -msgstr "Guardar por consola de %s" - -#: ../../godmode/agentes/configurar_agente.php:2261 -#: ../../include/functions_api.php:10118 -#, php-format -msgid "Update by %s Console" -msgstr "Actualizar por consola de %s" - -#: ../../godmode/agentes/configurar_agente.php:2277 -#: ../../include/functions_api.php:10119 -#, php-format -msgid "Insert by %s Console" -msgstr "Insertar por consola de %s" - -#: ../../godmode/agentes/configurar_agente.php:2346 -#: ../../godmode/agentes/configurar_agente.php:2358 -msgid "Invalid tab specified" -msgstr "La pestaña no es válida" - -#: ../../godmode/agentes/configure_field.php:38 -msgid "Update agent custom field" -msgstr "Actualizar campo personalizado del agente" - -#: ../../godmode/agentes/configure_field.php:40 -msgid "Create agent custom field" -msgstr "Crear campo personalizado" - -#: ../../godmode/agentes/configure_field.php:52 -#: ../../godmode/agentes/configure_field.php:56 -#: ../../godmode/agentes/configure_field.php:60 -#: ../../godmode/agentes/configure_field.php:64 -msgid "Agent Custom Fields Information" -msgstr "Información de los campos de personalización de agentes" - -#: ../../godmode/agentes/configure_field.php:53 -msgid "" -"You cannot set the Password type until you clear the combo values and click " -"on update button." -msgstr "" -"No puede establecer el tipo de contraseña hasta que elimine los valores del " -"combo y pinche en el botón actualizar." - -#: ../../godmode/agentes/configure_field.php:57 -msgid "" -"You cannot unset the enable combo until you clear the combo values and click " -"on update." -msgstr "" -"No puede desactivar el combo habilitado hasta que elimine los valores del " -"combo y pinche en actualizar." - -#: ../../godmode/agentes/configure_field.php:61 -msgid "If you select Enabled combo the Password type will be disabled." -msgstr "" -"Si selecciona el combo Habilitado, se deshabilitará el tipo de contraseña." - -#: ../../godmode/agentes/configure_field.php:65 -msgid "If you select Passord type the Enabled combo will be disabled." -msgstr "" -"Si selecciona el tipo de Contraseña el combo Habliitado se deshabilitará." - -#: ../../godmode/agentes/configure_field.php:81 -msgid "Pass type" -msgstr "Tipo de contraseña" - -#: ../../godmode/agentes/configure_field.php:82 -msgid "" -"The fields with pass type enabled will be displayed like html input type " -"pass in html" -msgstr "" -"Los campos con el tipo de contraseña habilitado se mostrarán con asteriscos " -"en HTML." - -#: ../../godmode/agentes/configure_field.php:92 -#: ../../godmode/agentes/fields_manager.php:120 -#: ../../operation/agentes/custom_fields.php:67 -msgid "Display on front" -msgstr "Mostrar en la vista principal" - -#: ../../godmode/agentes/configure_field.php:93 -#: ../../godmode/agentes/fields_manager.php:120 -#: ../../operation/agentes/custom_fields.php:67 -msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" -msgstr "" -"Si esta opción está activada, los campos mostrarán la información en la " -"vista principal." - -#: ../../godmode/agentes/configure_field.php:103 -msgid "Enabled combo" -msgstr "Combo habilitado" - -#: ../../godmode/agentes/configure_field.php:115 -msgid "Combo values" -msgstr "Valores de combo" - -#: ../../godmode/agentes/configure_field.php:116 -msgid "Set values separated by comma" -msgstr "Establecer valores separados por coma" - -#: ../../godmode/agentes/fields_manager.php:30 -msgid "Agents custom fields manager" -msgstr "Gestor de campos personalizados del agente" - -#: ../../godmode/agentes/fields_manager.php:46 -#: ../../include/ajax/custom_fields.php:727 -msgid "The name must not be empty" -msgstr "El nombre no puede estar vacío." - -#: ../../godmode/agentes/fields_manager.php:48 -msgid "The name must be unique" -msgstr "El nombre debe ser único." - -#: ../../godmode/agentes/fields_manager.php:59 -msgid "Field successfully created" -msgstr "Se ha creado el campo." - -#: ../../godmode/agentes/fields_manager.php:80 -msgid "Field successfully updated" -msgstr "Se ha actualizado el campo." - -#: ../../godmode/agentes/fields_manager.php:82 -msgid "There was a problem modifying field" -msgstr "Ha habido un problema al modificar el campo." - -#: ../../godmode/agentes/fields_manager.php:94 -msgid "There was a problem deleting field" -msgstr "Ha surgido un problema al borrar el campo." - -#: ../../godmode/agentes/fields_manager.php:96 -msgid "Field successfully deleted" -msgstr "El campo se ha borrado correctamente." - -#: ../../godmode/agentes/fields_manager.php:119 -#: ../../godmode/alerts/alert_view.php:438 -#: ../../godmode/alerts/alert_view.php:526 -#: ../../operation/agentes/custom_fields.php:65 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2360 -msgid "Field" -msgstr "Campo" - -#: ../../godmode/agentes/fields_manager.php:164 -msgid "Create field" -msgstr "Crear campo" - -#: ../../godmode/agentes/modificar_agente.php:63 -#, php-format -msgid "Agents defined in %s" -msgstr "Agentes definidos en %s" - -#: ../../godmode/agentes/modificar_agente.php:99 -msgid "Success deleted agent." -msgstr "Agente eliminado correctamente" - -#: ../../godmode/agentes/modificar_agente.php:99 -msgid "Could not be deleted." -msgstr "No pudo ser borrado." - -#: ../../godmode/agentes/modificar_agente.php:106 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "Los archivos conf o md5 no han podido ser borrados." - -#: ../../godmode/agentes/modificar_agente.php:175 -msgid "Show Agents" -msgstr "Mostrar agentes" - -#: ../../godmode/agentes/modificar_agente.php:177 -msgid "Everyone" -msgstr "Todos" - -#: ../../godmode/agentes/modificar_agente.php:178 -#: ../../operation/agentes/status_monitor.php:543 -#: ../../enterprise/operation/agentes/tag_view.php:280 -msgid "Only disabled" -msgstr "Solo deshabilitados" - -#: ../../godmode/agentes/modificar_agente.php:179 -#: ../../operation/agentes/status_monitor.php:542 -#: ../../enterprise/operation/agentes/tag_view.php:279 -msgid "Only enabled" -msgstr "Solo habilitados" - -#: ../../godmode/agentes/modificar_agente.php:186 -msgid "Operative System" -msgstr "Sistema operativo" - -#: ../../godmode/agentes/modificar_agente.php:207 -msgid "" -"Search filter by alias, name, description, IP address or custom fields " -"content" -msgstr "" -"Buscar filtro por alias, nombre, descripción, dirección IP o contenido de " -"campos personalizados." - -#: ../../godmode/agentes/modificar_agente.php:488 -msgid "Remote agent configuration" -msgstr "Configuración remota del agente" - -#: ../../godmode/agentes/modificar_agente.php:488 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:573 -#: ../../godmode/agentes/module_manager_editor_common.php:238 -#: ../../godmode/agentes/module_manager_editor_common.php:876 -#: ../../godmode/agentes/module_manager_editor_common.php:1025 -#: ../../godmode/alerts/alert_list.list.php:129 -#: ../../godmode/alerts/alert_view.php:512 -#: ../../godmode/alerts/configure_alert_template.php:819 -#: ../../godmode/groups/group_list.php:625 -#: ../../godmode/massive/massive_edit_agents.php:642 -#: ../../godmode/massive/massive_edit_agents.php:718 -#: ../../godmode/massive/massive_edit_modules.php:693 -#: ../../include/functions_treeview.php:72 -#: ../../include/functions_treeview.php:581 -#: ../../include/functions_visual_map_editor.php:758 -#: ../../include/functions_reporting_html.php:2626 -#: ../../include/functions_reporting.php:4724 -#: ../../mobile/operation/agent.php:172 ../../mobile/operation/alerts.php:50 -#: ../../operation/agentes/alerts_status.functions.php:81 -#: ../../operation/agentes/estado_generalagente.php:109 -#: ../../operation/agentes/estado_generalagente.php:111 -#: ../../operation/search_agents.php:77 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:114 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:544 -#: ../../enterprise/godmode/modules/configure_local_component.php:431 -#: ../../enterprise/godmode/policies/policy_agents.php:1399 -#: ../../enterprise/godmode/policies/policy_agents.php:1416 -#: ../../enterprise/godmode/setup/edit_skin.php:273 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2915 -#: ../../enterprise/include/class/DatabaseHA.class.php:207 -#: ../../enterprise/include/class/VMware.app.php:777 -#: ../../enterprise/include/functions_policies.php:4909 -#: ../../enterprise/meta/agentsearch.php:223 -#: ../../enterprise/meta/agentsearch.php:230 -#: ../../enterprise/meta/include/functions_wizard_meta.php:242 -#: ../../enterprise/meta/include/functions_wizard_meta.php:525 -#: ../../enterprise/meta/include/functions_wizard_meta.php:596 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1146 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1531 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1815 -msgid "Disabled" -msgstr "Deshabilitado" - -#: ../../godmode/agentes/modificar_agente.php:586 -#: ../../operation/agentes/estado_agente.php:786 -#: ../../operation/agentes/estado_generalagente.php:125 -#: ../../operation/agentes/estado_generalagente.php:133 -#: ../../operation/search_agents.php:95 -msgid "Agent in planned downtime" -msgstr "Agente en parada programada" - -#: ../../godmode/agentes/modificar_agente.php:634 -msgid "Edit remote config" -msgstr "Editar configuración remota" - -#: ../../godmode/agentes/modificar_agente.php:681 -msgid "You are going to enable a cluster agent. Are you sure?" -msgstr "¿Esta seguro de que desea habilitar el cluster de agentes?" - -#: ../../godmode/agentes/modificar_agente.php:684 -msgid "Enable agent" -msgstr "Habilitar agente" - -#: ../../godmode/agentes/modificar_agente.php:691 -msgid "You are going to disable a cluster agent. Are you sure?" -msgstr "¿Esta seguro de que desea deshabilitar el cluster de agentes?" - -#: ../../godmode/agentes/modificar_agente.php:694 -msgid "Disable agent" -msgstr "Deshabilitar agente" - -#: ../../godmode/agentes/modificar_agente.php:704 -msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" -msgstr "" -"¡ADVERTENCIA! - ¿Esta seguro de que desea eliminar el cluster de agentes?" - -#: ../../godmode/agentes/modificar_agente.php:717 -#: ../../operation/agentes/estado_agente.php:884 -#: ../../operation/agentes/group_view.php:533 -#: ../../enterprise/meta/monitoring/group_view.php:168 -msgid "There are no defined agents" -msgstr "No hay ningún agente definido" - -#: ../../godmode/agentes/module_manager.php:89 -msgid "Create a new data server module" -msgstr "Crear un nuevo módulo de servidor de datos" - -#: ../../godmode/agentes/module_manager.php:91 -msgid "Create a new network server module" -msgstr "Crear un nuevo módulo de servidor de red" - -#: ../../godmode/agentes/module_manager.php:95 -msgid "Create a new plugin server module" -msgstr "Crear un nuevo módulo de servidor de complementos" - -#: ../../godmode/agentes/module_manager.php:99 -msgid "Create a new WMI server module" -msgstr "Crear un nuevo módulo de servidor WMI" - -#: ../../godmode/agentes/module_manager.php:103 -msgid "Create a new prediction server module" -msgstr "Crear un nuevo módulo de servidor de predicción" - -#: ../../godmode/agentes/module_manager.php:147 -#: ../../operation/agentes/estado_monitores.php:573 -msgid "Show in hierachy mode" -msgstr "Mostrar en modo jerarquía" - -#: ../../godmode/agentes/module_manager.php:159 -msgid "

Type

" -msgstr "

Tipo

" - -#: ../../godmode/agentes/module_manager.php:176 -msgid "Get more modules on Monitoring Library" -msgstr "Añadir más módulos de la Librería de módulos" - -#: ../../godmode/agentes/module_manager.php:210 -msgid "Nice try buddy" -msgstr "Buen intento, amigo" - -#: ../../godmode/agentes/module_manager.php:337 -#, 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:343 -msgid "All Modules deleted succesfully" -msgstr "Todos los módulos han sido borrados correctamente." - -#: ../../godmode/agentes/module_manager.php:347 -#, php-format -msgid "There was a problem only deleted %s modules of %s total." -msgstr "Error al borrar %s módulo(s) de %s" - -#: ../../godmode/agentes/module_manager.php:618 -#: ../../godmode/reporting/map_builder.php:403 -#: ../../godmode/reporting/map_builder.php:420 -#: ../../include/ajax/module.php:442 -#: ../../operation/agentes/datos_agente.php:296 -msgid "No available data to show" -msgstr "No hay datos disponibles para mostrar" - -#: ../../godmode/agentes/module_manager.php:643 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/alerts/alert_view.php:115 ../../include/ajax/module.php:832 -#: ../../operation/agentes/alerts_status.php:502 -#: ../../operation/agentes/alerts_status.php:538 -#: ../../operation/agentes/status_monitor.php:1107 -#: ../../enterprise/extensions/resource_exportation/functions.php:18 -#: ../../enterprise/godmode/agentes/collection_manager.php:200 -#: ../../enterprise/godmode/agentes/inventory_manager.php:216 -#: ../../enterprise/godmode/agentes/plugins_manager.php:121 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:84 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:191 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:96 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:348 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:98 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:94 -#: ../../enterprise/godmode/policies/policy_queue.php:404 -#: ../../enterprise/godmode/policies/policy_queue.php:458 -#: ../../enterprise/include/functions_policies.php:4046 -#: ../../enterprise/meta/advanced/policymanager.queue.php:210 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/meta/advanced/policymanager.sync.php:319 -#: ../../enterprise/operation/agentes/collection_view.php:61 -#: ../../enterprise/operation/agentes/policy_view.php:50 -msgid "Policy" -msgstr "Política" - -#: ../../godmode/agentes/module_manager.php:643 -#: ../../godmode/reporting/graph_builder.graph_editor.php:197 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/snmpconsole/snmp_alert.php:1253 -#: ../../include/ajax/module.php:832 -#: ../../operation/agentes/alerts_status.php:502 -#: ../../operation/agentes/alerts_status.php:538 -#: ../../operation/agentes/status_monitor.php:1107 -#: ../../enterprise/godmode/agentes/collection_manager.php:200 -#: ../../enterprise/godmode/agentes/inventory_manager.php:216 -#: ../../enterprise/operation/agentes/collection_view.php:61 -msgid "P." -msgstr "P." - -#: ../../godmode/agentes/module_manager.php:646 -#: ../../include/functions_events.php:2380 -#: ../../include/functions_events.php.orig:2286 -#: ../../mobile/operation/agents.php:396 -#: ../../operation/agentes/alerts_status.php:504 -#: ../../operation/agentes/alerts_status.php:540 -#: ../../operation/agentes/alerts_status.php:575 -#: ../../operation/agentes/alerts_status.php:608 -#: ../../enterprise/godmode/admin_access_logs.php:24 -#: ../../enterprise/godmode/policies/policy_agents.php:711 -#: ../../enterprise/godmode/policies/policy_agents.php:1075 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/policy_view.php:142 -#: ../../enterprise/operation/agentes/policy_view.php:206 -#: ../../enterprise/operation/agentes/policy_view.php:211 -msgid "S." -msgstr "S." - -#: ../../godmode/agentes/module_manager.php:651 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 -#: ../../operation/agentes/status_monitor.php:1150 -#: ../../enterprise/operation/agentes/tag_view.php:655 -msgid "Warn" -msgstr "Advertencia" - -#: ../../godmode/agentes/module_manager.php:655 -msgid "Del." -msgstr "Del." - -#: ../../godmode/agentes/module_manager.php:778 -#: ../../godmode/agentes/module_manager.php:786 -#: ../../include/ajax/module.php:942 ../../include/ajax/module.php:950 -msgid "Adopted" -msgstr "Adoptado" - -#: ../../godmode/agentes/module_manager.php:786 -#: ../../godmode/agentes/module_manager.php:789 -#: ../../godmode/massive/massive_edit_modules.php:995 -#: ../../include/ajax/module.php:950 ../../include/ajax/module.php:953 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 -msgid "Unlinked" -msgstr "Desenlazado" - -#: ../../godmode/agentes/module_manager.php:812 -#: ../../enterprise/operation/agentes/policy_view.php:371 -msgid "Non initialized module" -msgstr "Módulo no iniciado" - -#: ../../godmode/agentes/module_manager.php:830 -#: ../../godmode/agentes/module_manager_editor_common.php:765 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:394 -msgid "" -"The policy modules of data type will only update their intervals when policy " -"is applied." -msgstr "" -"Los módulos de política de tipo dato solo actualizarán sus intervalos cuando " -"la política sea aplicada." - -#: ../../godmode/agentes/module_manager.php:858 -#: ../../godmode/agentes/module_manager.php:859 -#: ../../enterprise/godmode/policies/policy_modules.php:1551 -#: ../../enterprise/godmode/policies/policy_modules.php:1552 -msgid "Enable module" -msgstr "Habilitar el módulo" - -#: ../../godmode/agentes/module_manager.php:867 -#: ../../godmode/agentes/module_manager.php:868 -#: ../../enterprise/godmode/policies/policy_modules.php:1560 -#: ../../enterprise/godmode/policies/policy_modules.php:1561 -msgid "Disable module" -msgstr "Deshabilitar el módulo" - -#: ../../godmode/agentes/module_manager.php:879 -#: ../../godmode/alerts/alert_templates.php:402 -#: ../../godmode/modules/manage_network_components.php:740 -#: ../../godmode/snmpconsole/snmp_alert.php:1319 -#: ../../enterprise/godmode/modules/local_components.php:609 -#: ../../enterprise/godmode/policies/policy_modules.php:1575 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:453 -msgid "Duplicate" -msgstr "Duplicar" - -#: ../../godmode/agentes/module_manager.php:890 -msgid "Normalize" -msgstr "Normalizar" - -#: ../../godmode/agentes/module_manager.php:898 -msgid "Normalize (Disabled)" -msgstr "Normalizar (deshabilitado)" - -#: ../../godmode/agentes/module_manager.php:912 -#: ../../include/functions_snmp_browser.php:580 -msgid "Create network component" -msgstr "Crear componentes de red" - -#: ../../godmode/agentes/module_manager.php:919 -msgid "Create network component (Disabled)" -msgstr "Crear componentes de red (desactivado)" - -#: ../../godmode/agentes/module_manager_editor.php:515 -#: ../../enterprise/godmode/policies/policies.php:283 -#: ../../enterprise/godmode/policies/policy_agents.php:105 -#: ../../enterprise/godmode/policies/policy_alerts.php:67 -#: ../../enterprise/godmode/policies/policy_collections.php:46 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:61 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:79 -#: ../../enterprise/godmode/policies/policy_linking.php:41 -#: ../../enterprise/godmode/policies/policy_modules.php:572 -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:521 -#: ../../enterprise/include/functions_policies.php:3536 -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:535 -#: ../../enterprise/include/functions_policies.php:3542 -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:672 -msgid "Invalid module type" -msgstr "Tipo de módulo no válido" - -#: ../../godmode/agentes/module_manager_editor.php:692 -msgid "Base options" -msgstr "Opciones de base" - -#: ../../godmode/agentes/module_manager_editor.php:704 -#: ../../godmode/agentes/module_manager_editor_common.php:1145 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:514 -#: ../../enterprise/godmode/policies/policy_modules.php:408 -msgid "Custom macros" -msgstr "Macros personalizadas" - -#: ../../godmode/agentes/module_manager_editor.php:716 -msgid "Module relations" -msgstr "Relaciones entre módulos" - -#: ../../godmode/agentes/module_manager_editor.php:776 -#: ../../enterprise/godmode/policies/policy_modules.php:1718 -msgid "No module name provided" -msgstr "No se proporcionó ningún nombre de módulo." - -#: ../../godmode/agentes/module_manager_editor.php:786 -#: ../../enterprise/godmode/policies/policy_modules.php:1719 -msgid "No target IP provided" -msgstr "No se proporcionó ninguna IP de destino." - -#: ../../godmode/agentes/module_manager_editor.php:796 -#: ../../enterprise/godmode/policies/policy_modules.php:1720 -msgid "No SNMP OID provided" -msgstr "No se proporcionó ningún OID de SMTP." - -#: ../../godmode/agentes/module_manager_editor.php:806 -msgid "No module to predict" -msgstr "No existe ningún módulo para predecir." - -#: ../../godmode/agentes/module_manager_editor.php:816 -msgid "No plug-in provided" -msgstr "Plugin no proporcionado" - -#: ../../godmode/agentes/module_manager_editor.php:826 -msgid "No server provided" -msgstr "Ningún servidor especificado" - -#: ../../godmode/agentes/module_manager_editor.php:857 -msgid "" -"Error, The field name and name in module_name in data configuration are " -"different." -msgstr "" -"Error, el nombre del campo y el nombre de module_name en los datos de " -"configuración son diferentes." - -#: ../../godmode/agentes/module_manager_editor.php:895 -msgid "The File APIs are not fully supported in this browser." -msgstr "" -"Las API de archivos no son totalmente compatibles con este navegador." - -#: ../../godmode/agentes/module_manager_editor.php:896 -msgid "Couldn`t find the fileinput element." -msgstr "Elemento de archivo de entrada no encontrado" - -#: ../../godmode/agentes/module_manager_editor.php:897 -msgid "" -"This browser doesn`t seem to support the files property of file inputs." -msgstr "" -"Este navegador parece no ser compatible con los archivos pertenecientes al " -"archivo de entrada." - -#: ../../godmode/agentes/module_manager_editor.php:898 -msgid "Please select a file before clicking Load" -msgstr "Seleccione un archivo antes de hacer clic en Cargar" - -#: ../../godmode/agentes/module_manager_editor_common.php:90 -msgid "Using module component" -msgstr "Utilizar módulo de librería" - -#: ../../godmode/agentes/module_manager_editor_common.php:99 -#: ../../godmode/agentes/module_manager_editor_common.php:116 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:72 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:92 -msgid "Manual setup" -msgstr "Configuración manual" - -#: ../../godmode/agentes/module_manager_editor_common.php:221 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:96 -msgid "Delete module" -msgstr "Eliminar módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:292 -#: ../../godmode/massive/massive_edit_modules.php:820 -#: ../../include/functions_treeview.php:116 -#: ../../include/functions_graph.php:5072 -#: ../../operation/agentes/status_monitor.php:406 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:678 -#: ../../enterprise/operation/agentes/tag_view.php:131 -msgid "Not assigned" -msgstr "Sin asignar" - -#: ../../godmode/agentes/module_manager_editor_common.php:270 -msgid "Module parent" -msgstr "Padre del módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:424 -msgid "Dynamic Threshold Interval" -msgstr "Intervalo de rango dinámico" - -#: ../../godmode/agentes/module_manager_editor_common.php:438 -#: ../../godmode/modules/manage_network_components_form_common.php:159 -#: ../../enterprise/godmode/modules/configure_local_component.php:288 -msgid "Advanced options Dynamic Threshold" -msgstr "Opciones avanzadas rango dinámico" - -#: ../../godmode/agentes/module_manager_editor_common.php:447 -msgid "Dynamic Threshold Min. " -msgstr "Rango dinámico mínimo " - -#: ../../godmode/agentes/module_manager_editor_common.php:460 -msgid "Dynamic Threshold Max. " -msgstr "Rango dinámico máximo " - -#: ../../godmode/agentes/module_manager_editor_common.php:473 -msgid "Dynamic Threshold Two Tailed: " -msgstr "Rango dinámico dos fallido: " - -#: ../../godmode/agentes/module_manager_editor_common.php:476 -#: ../../godmode/massive/massive_edit_modules.php:533 -#: ../../godmode/modules/manage_network_components_form_common.php:168 -#: ../../include/functions_alerts.php:662 -#: ../../include/functions_treeview.php:96 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:384 -#: ../../enterprise/godmode/modules/configure_local_component.php:297 -msgid "Warning status" -msgstr "Estado advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/agentes/module_manager_editor_common.php:531 -msgid "Min. " -msgstr "Min. " - -#: ../../godmode/agentes/module_manager_editor_common.php:491 -#: ../../godmode/agentes/module_manager_editor_common.php:544 -#: ../../godmode/alerts/configure_alert_template.php:770 -#: ../../godmode/massive/massive_edit_modules.php:552 -#: ../../godmode/massive/massive_edit_modules.php:621 -#: ../../godmode/massive/massive_edit_modules.php:815 -#: ../../godmode/modules/manage_network_components_form_common.php:178 -#: ../../godmode/modules/manage_network_components_form_common.php:213 -#: ../../include/functions_alerts.php:658 -#: ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 -#: ../../include/functions_reporting_html.php:4176 -#: ../../enterprise/dashboard/widgets/top_n.php:98 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:277 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:326 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:403 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:472 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:673 -#: ../../enterprise/godmode/modules/configure_local_component.php:307 -#: ../../enterprise/godmode/modules/configure_local_component.php:342 -msgid "Max." -msgstr "Máx." - -#: ../../godmode/agentes/module_manager_editor_common.php:507 -#: ../../godmode/agentes/module_manager_editor_common.php:560 -#: ../../godmode/massive/massive_edit_modules.php:567 -#: ../../godmode/massive/massive_edit_modules.php:636 -#: ../../godmode/modules/manage_network_components_form_common.php:187 -#: ../../godmode/modules/manage_network_components_form_common.php:222 -#: ../../include/functions_treeview.php:90 -#: ../../include/functions_treeview.php:102 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:292 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:341 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:418 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:487 -#: ../../enterprise/godmode/modules/configure_local_component.php:316 -#: ../../enterprise/godmode/modules/configure_local_component.php:351 -msgid "Str." -msgstr "Str." - -#: ../../godmode/agentes/module_manager_editor_common.php:522 -#: ../../godmode/agentes/module_manager_editor_common.php:575 -#: ../../godmode/massive/massive_edit_modules.php:582 -#: ../../godmode/massive/massive_edit_modules.php:651 -#: ../../godmode/modules/manage_network_components_form_common.php:196 -#: ../../godmode/modules/manage_network_components_form_common.php:231 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:433 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 -#: ../../enterprise/godmode/modules/configure_local_component.php:325 -#: ../../enterprise/godmode/modules/configure_local_component.php:360 -#: ../../enterprise/meta/include/functions_wizard_meta.php:979 -#: ../../enterprise/meta/include/functions_wizard_meta.php:988 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1736 -msgid "Inverse interval" -msgstr "Intervalo inverso" - -#: ../../godmode/agentes/module_manager_editor_common.php:529 -#: ../../godmode/massive/massive_edit_modules.php:602 -#: ../../godmode/modules/manage_network_components_form_common.php:203 -#: ../../include/functions_alerts.php:663 -#: ../../include/functions_treeview.php:108 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:307 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:453 -#: ../../enterprise/godmode/modules/configure_local_component.php:332 -msgid "Critical status" -msgstr "Estado crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:579 -#: ../../godmode/massive/massive_edit_modules.php:858 -#: ../../godmode/modules/manage_network_components_form_common.php:234 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:173 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 -#: ../../enterprise/godmode/modules/configure_local_component.php:363 -msgid "FF threshold" -msgstr "Umbral FF" - -#: ../../godmode/agentes/module_manager_editor_common.php:581 -#: ../../godmode/massive/massive_edit_modules.php:922 -#: ../../godmode/modules/manage_network_components_form_common.php:237 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:176 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:784 -#: ../../enterprise/godmode/modules/configure_local_component.php:366 -msgid "Keep counters" -msgstr "Mantener los contadores" - -#: ../../godmode/agentes/module_manager_editor_common.php:598 -#: ../../godmode/massive/massive_edit_modules.php:866 -#: ../../godmode/massive/massive_edit_modules.php:881 -#: ../../godmode/modules/manage_network_components_form_common.php:251 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:193 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:728 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:743 -#: ../../enterprise/godmode/modules/configure_local_component.php:374 -msgid "All state changing" -msgstr "Todos los cambios de estado" - -#: ../../godmode/agentes/module_manager_editor_common.php:620 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/massive/massive_edit_modules.php:891 -#: ../../godmode/modules/manage_network_components_form_common.php:267 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:215 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:727 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 -#: ../../enterprise/godmode/modules/configure_local_component.php:389 -msgid "Each state changing" -msgstr "Cada cambio de estado" - -#: ../../godmode/agentes/module_manager_editor_common.php:621 -#: ../../godmode/massive/massive_edit_modules.php:892 -#: ../../godmode/modules/manage_network_components_form_common.php:268 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:216 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 -#: ../../enterprise/godmode/modules/configure_local_component.php:390 -msgid "To normal" -msgstr "A normal" - -#: ../../godmode/agentes/module_manager_editor_common.php:635 -#: ../../godmode/massive/massive_edit_modules.php:902 -#: ../../godmode/modules/manage_network_components_form_common.php:277 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:230 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:764 -#: ../../enterprise/godmode/modules/configure_local_component.php:399 -msgid "To warning" -msgstr "A advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:649 -#: ../../godmode/massive/massive_edit_modules.php:912 -#: ../../godmode/modules/manage_network_components_form_common.php:286 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:244 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:774 -#: ../../enterprise/godmode/modules/configure_local_component.php:408 -msgid "To critical" -msgstr "A crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:663 -#: ../../godmode/massive/massive_edit_modules.php:970 -#: ../../godmode/modules/manage_network_components_form_common.php:296 -#: ../../include/functions_reporting.php:3143 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:259 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:809 -#: ../../enterprise/godmode/modules/configure_local_component.php:419 -#: ../../enterprise/include/functions_reporting_csv.php:1958 -msgid "Historical data" -msgstr "Histórico de datos" - -#: ../../godmode/agentes/module_manager_editor_common.php:723 -#: ../../godmode/massive/massive_edit_modules.php:853 -#: ../../godmode/modules/manage_network_components_form_common.php:303 -#: ../../include/functions_reporting_html.php:2666 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:711 -#: ../../enterprise/godmode/modules/configure_local_component.php:440 -#: ../../enterprise/meta/include/functions_wizard_meta.php:921 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1040 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1526 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1746 -msgid "Unit" -msgstr "Unidad" - -#: ../../godmode/agentes/module_manager_editor_common.php:754 -#: ../../godmode/agentes/module_manager_editor_common.php:756 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:373 -#: ../../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:778 -#: ../../godmode/massive/massive_edit_modules.php:708 -#: ../../godmode/modules/manage_network_components_form_network.php:178 -#: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:559 -#: ../../enterprise/godmode/modules/configure_local_component.php:445 -msgid "Post process" -msgstr "Posprocesado" - -#: ../../godmode/agentes/module_manager_editor_common.php:793 -#: ../../godmode/modules/manage_network_components_form_common.php:299 -#: ../../include/functions_reports.php:727 -#: ../../include/functions_reporting.php:4823 -#: ../../enterprise/godmode/modules/configure_local_component.php:433 -#: ../../enterprise/include/functions_reporting_csv.php:994 -msgid "Min. Value" -msgstr "Valor mínimo" - -#: ../../godmode/agentes/module_manager_editor_common.php:796 -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:797 -#: ../../godmode/modules/manage_network_components_form_common.php:301 -#: ../../include/functions_reports.php:723 -#: ../../include/functions_reporting.php:4819 -#: ../../enterprise/godmode/modules/configure_local_component.php:438 -#: ../../enterprise/include/functions_reporting_csv.php:1049 -msgid "Max. Value" -msgstr "Valor máximo" - -#: ../../godmode/agentes/module_manager_editor_common.php:798 -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:801 -#: ../../godmode/massive/massive_edit_modules.php:840 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:698 -msgid "Export target" -msgstr "Servidor de exportación" - -#: ../../godmode/agentes/module_manager_editor_common.php:807 -msgid "Not needed" -msgstr "No necesario" - -#: ../../godmode/agentes/module_manager_editor_common.php:822 -msgid "" -"In case you use an Export server you can link this module and export data to " -"one these." -msgstr "" -"Si usas un Export server, puedes enlazar este módulo y exportar los datos " -"con el export server." - -#: ../../godmode/agentes/module_manager_editor_common.php:834 -#: ../../godmode/massive/massive_edit_modules.php:1004 -#: ../../godmode/modules/manage_network_components_form_common.php:306 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:843 -msgid "Discard unknown events" -msgstr "Descartar eventos desconocidos" - -#: ../../godmode/agentes/module_manager_editor_common.php:844 -#: ../../godmode/massive/massive_edit_modules.php:942 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:420 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 -msgid "FF interval" -msgstr "Intervalo FF" - -#: ../../godmode/agentes/module_manager_editor_common.php:856 -#: ../../godmode/massive/massive_edit_modules.php:952 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:436 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:805 -msgid "Module execution flip flop time interval (in secs)." -msgstr "" -"Tiempo del intervalo de flip flop de ejecución del módulo (en segundos)." - -#: ../../godmode/agentes/module_manager_editor_common.php:859 -#: ../../godmode/massive/massive_edit_modules.php:956 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 -#: ../../enterprise/godmode/modules/configure_local_component.php:422 -msgid "FF timeout" -msgstr "FF tiempo de espera" - -#: ../../godmode/agentes/module_manager_editor_common.php:872 -#: ../../godmode/massive/massive_edit_modules.php:966 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../enterprise/godmode/modules/configure_local_component.php:430 -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:876 -#: ../../enterprise/godmode/modules/configure_local_component.php:431 -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:885 -#: ../../godmode/modules/manage_network_components_form_common.php:349 -#: ../../enterprise/godmode/modules/configure_local_component.php:533 -msgid "Tags available" -msgstr "Etiquetas disponibles" - -#: ../../godmode/agentes/module_manager_editor_common.php:975 -#: ../../godmode/modules/manage_network_components_form_common.php:367 -#: ../../enterprise/godmode/modules/configure_local_component.php:551 -msgid "Add tags to module" -msgstr "Añadir etiquetas al módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:977 -#: ../../godmode/modules/manage_network_components_form_common.php:369 -#: ../../enterprise/godmode/modules/configure_local_component.php:553 -msgid "Delete tags to module" -msgstr "Eliminar etiquetas del módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:979 -#: ../../godmode/modules/manage_network_components_form_common.php:371 -#: ../../enterprise/godmode/modules/configure_local_component.php:555 -#: ../../enterprise/godmode/setup/setup_auth.php:169 -#: ../../enterprise/godmode/setup/setup_auth.php:927 -msgid "Tags selected" -msgstr "Etiquetas seleccionadas" - -#: ../../godmode/agentes/module_manager_editor_common.php:1000 -msgid "Tags from policy" -msgstr "Etiquetas desde política" - -#: ../../godmode/agentes/module_manager_editor_common.php:1022 -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:1027 -#: ../../godmode/agentes/module_manager_editor_common.php:1037 -#: ../../godmode/alerts/alert_list.list.php:128 -#: ../../godmode/alerts/configure_alert_template.php:820 -#: ../../godmode/groups/group_list.php:625 -#: ../../godmode/massive/massive_edit_agents.php:717 -#: ../../include/functions_visual_map_editor.php:757 -#: ../../include/functions_reporting_html.php:2624 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 -#: ../../enterprise/extensions/ipam/ipam_massive.php:103 -#: ../../enterprise/extensions/ipam/ipam_network.php:330 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2921 -#: ../../enterprise/include/class/DatabaseHA.class.php:201 -msgid "Enabled" -msgstr "Habilitado" - -#: ../../godmode/agentes/module_manager_editor_common.php:1040 -msgid "Cascade Protection Services" -msgstr "Servicios de protección en cascada" - -#: ../../godmode/agentes/module_manager_editor_common.php:1041 -msgid "" -"Disable the alerts and events of the elements that belong to this service" -msgstr "" -"Deshabilitar as alertas y los eventos de los elementos pertenecientes a este " -"servicio" - -#: ../../godmode/agentes/module_manager_editor_common.php:1045 -#: ../../godmode/massive/massive_edit_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:314 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 -#: ../../enterprise/godmode/modules/configure_local_component.php:495 -msgid "Critical instructions" -msgstr "Instrucciones de crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:1045 -#: ../../godmode/massive/massive_edit_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:314 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 -#: ../../enterprise/godmode/modules/configure_local_component.php:495 -msgid "Instructions when the status is critical" -msgstr "Instrucciones en caso de que se encuentre en estado crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:1050 -#: ../../godmode/massive/massive_edit_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:318 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 -#: ../../enterprise/godmode/modules/configure_local_component.php:500 -msgid "Warning instructions" -msgstr "Instrucciones de advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:1050 -#: ../../godmode/massive/massive_edit_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:318 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 -#: ../../enterprise/godmode/modules/configure_local_component.php:500 -msgid "Instructions when the status is warning" -msgstr "Instrucciones en caso de que se encuentre en estado de advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:1054 -#: ../../godmode/massive/massive_edit_modules.php:1028 -#: ../../godmode/modules/manage_network_components_form_common.php:322 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 -#: ../../enterprise/godmode/modules/configure_local_component.php:505 -msgid "Unknown instructions" -msgstr "Instrucciones de desconocido" - -#: ../../godmode/agentes/module_manager_editor_common.php:1054 -#: ../../godmode/massive/massive_edit_modules.php:1028 -#: ../../godmode/modules/manage_network_components_form_common.php:322 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 -#: ../../enterprise/godmode/modules/configure_local_component.php:505 -msgid "Instructions when the status is unknown" -msgstr "Instrucciones en caso de que se encuentre en estado desconocido" - -#: ../../godmode/agentes/module_manager_editor_common.php:1061 -#: ../../godmode/agentes/module_manager_editor_common.php:1069 -#: ../../godmode/agentes/module_manager_editor_common.php:1078 -msgid "Cron from" -msgstr "Cron desde" - -#: ../../godmode/agentes/module_manager_editor_common.php:1065 -#: ../../godmode/agentes/module_manager_editor_common.php:1073 -#: ../../godmode/agentes/module_manager_editor_common.php:1082 -msgid "Cron to" -msgstr "Cron hasta" - -#: ../../godmode/agentes/module_manager_editor_common.php:1087 -#: ../../godmode/massive/massive_edit_modules.php:1050 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:887 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 -msgid "Timeout" -msgstr "Tiempo de espera" - -#: ../../godmode/agentes/module_manager_editor_common.php:1088 -#: ../../godmode/massive/massive_edit_modules.php:1059 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:896 -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:1090 -#: ../../godmode/massive/massive_edit_modules.php:1063 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:440 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 -msgid "Retries" -msgstr "Reintentos" - -#: ../../godmode/agentes/module_manager_editor_common.php:1091 -#: ../../godmode/massive/massive_edit_modules.php:1065 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:455 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:902 -msgid "Number of retries that the module will attempt to run." -msgstr "Número de intentos que el módulo intentará activar" - -#: ../../godmode/agentes/module_manager_editor_common.php:1095 -#: ../../godmode/massive/massive_edit_modules.php:988 -#: ../../godmode/modules/manage_network_components_form_common.php:329 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 -#: ../../enterprise/godmode/modules/configure_local_component.php:514 -msgid "Category" -msgstr "Categoría" - -#: ../../godmode/agentes/module_manager_editor_common.php:1133 -#: ../../godmode/alerts/configure_alert_template.php:725 -#: ../../godmode/massive/massive_edit_modules.php:812 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2086 -#: ../../godmode/reporting/visual_console_builder.wizard.php:339 -#: ../../godmode/setup/setup_visuals.php:1245 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:102 -#: ../../include/ajax/events.php:1686 -#: ../../include/functions_snmp_browser.php:505 -#: ../../include/functions_graph.php:5209 -#: ../../include/functions_visual_map_editor.php:625 -#: ../../include/functions_netflow.php:212 -#: ../../include/functions_reporting_html.php:856 -#: ../../include/functions_reporting_html.php:1785 -#: ../../include/functions_reporting_html.php:3621 -#: ../../include/functions_reporting_html.php:4139 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:359 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:488 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:670 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266 -#: ../../enterprise/include/functions_reporting_csv.php:951 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1008 -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/meta/include/functions_autoprovision.php:615 -#: ../../enterprise/operation/services/services.list.php:412 -#: ../../enterprise/operation/services/services.service.php:171 -msgid "Value" -msgstr "Valor" - -#: ../../godmode/agentes/module_manager_editor_common.php:1183 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 -msgid "Direct" -msgstr "Directo" - -#: ../../godmode/agentes/module_manager_editor_common.php:1184 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 -#: ../../include/functions_reporting_html.php:3487 -msgid "Failover" -msgstr "Conmutación" - -#: ../../godmode/agentes/module_manager_editor_common.php:1185 -msgid "Rel. type" -msgstr "Rel. tipo" - -#: ../../godmode/agentes/module_manager_editor_common.php:1200 -msgid "Add relationship" -msgstr "Añadir relación" - -#: ../../godmode/agentes/module_manager_editor_common.php:1225 -msgid "Changes" -msgstr "Cambios" - -#: ../../godmode/agentes/module_manager_editor_common.php:1226 -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/module_manager_editor_common.php:1832 -#: ../../godmode/modules/manage_network_components_form_common.php:634 -#: ../../enterprise/godmode/modules/configure_local_component.php:882 -msgid "Normal Status" -msgstr "Estado normal" - -#: ../../godmode/agentes/module_manager_editor_common.php:1833 -#: ../../godmode/modules/manage_network_components_form_common.php:635 -#: ../../enterprise/godmode/modules/configure_local_component.php:883 -msgid "Warning Status" -msgstr "Estado de advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:1834 -#: ../../godmode/modules/manage_network_components_form_common.php:636 -#: ../../enterprise/godmode/modules/configure_local_component.php:884 -msgid "Critical Status" -msgstr "Estado crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:1836 -#: ../../godmode/modules/manage_network_components_form_common.php:638 -#: ../../enterprise/godmode/modules/configure_local_component.php:886 -msgid "Please introduce a maximum warning higher than the minimun warning" -msgstr "" -"Por favor, introduce un máximo de advertencia mayor que el mínimo de " -"advertencia." - -#: ../../godmode/agentes/module_manager_editor_common.php:1837 -#: ../../godmode/modules/manage_network_components_form_common.php:639 -#: ../../enterprise/godmode/modules/configure_local_component.php:887 -msgid "Please introduce a maximum critical higher than the minimun critical" -msgstr "" -"Por favor introduce un máximo de crítico mayor que el mínimo de crítico." - -#: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:511 -#: ../../enterprise/operation/agentes/tag_view.php:252 -msgid "Data server module" -msgstr "Módulo del servidor de datos" - -#: ../../godmode/agentes/module_manager_editor_network.php:77 -#: ../../operation/agentes/status_monitor.php:513 -#: ../../enterprise/operation/agentes/tag_view.php:254 -msgid "Network server module" -msgstr "Módulo del servidor de red" - -#: ../../godmode/agentes/module_manager_editor_network.php:94 -#: ../../godmode/massive/massive_edit_modules.php:745 -#: ../../include/ajax/events.php:1511 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:596 -#: ../../enterprise/godmode/services/services.service.php:400 -#: ../../enterprise/meta/include/functions_wizard_meta.php:492 -#: ../../enterprise/operation/services/services.list.php:228 -#: ../../enterprise/operation/services/services.table_services.php:207 -msgid "Auto" -msgstr "Automático" - -#: ../../godmode/agentes/module_manager_editor_network.php:95 -#: ../../godmode/massive/massive_edit_modules.php:746 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:597 -#: ../../enterprise/meta/include/functions_wizard_meta.php:493 -msgid "Force primary key" -msgstr "Forzar clave primaria" - -#: ../../godmode/agentes/module_manager_editor_network.php:96 -#: ../../godmode/massive/massive_edit_modules.php:747 -#: ../../include/class/CredentialStore.class.php:866 -#: ../../include/functions_html.php:842 ../../include/functions_html.php:843 -#: ../../include/functions_html.php:947 ../../include/functions_html.php:948 -#: ../../include/functions_html.php:1108 ../../include/functions_html.php:1109 -#: ../../operation/netflow/nf_live_view.php:384 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:598 -#: ../../enterprise/godmode/setup/setup_acl.php:373 -#: ../../enterprise/godmode/setup/setup_acl.php:667 -#: ../../enterprise/include/functions_backup.php:492 -#: ../../enterprise/include/functions_backup.php:493 -#: ../../enterprise/include/functions_cron.php:542 -#: ../../enterprise/meta/include/functions_autoprovision.php:388 -#: ../../enterprise/meta/include/functions_wizard_meta.php:494 -msgid "Custom" -msgstr "Personalizado" - -#: ../../godmode/agentes/module_manager_editor_network.php:227 -#: ../../godmode/massive/massive_edit_modules.php:734 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:585 -msgid "SNMP OID" -msgstr "SNMP OID" - -#: ../../godmode/agentes/module_manager_editor_network.php:281 -#: ../../godmode/massive/massive_edit_modules.php:1076 -#: ../../godmode/modules/manage_network_components_form_network.php:196 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 -msgid "TCP send" -msgstr "Enviar TCP" - -#: ../../godmode/agentes/module_manager_editor_network.php:295 -#: ../../godmode/massive/massive_edit_modules.php:1079 -#: ../../godmode/modules/manage_network_components_form_network.php:203 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:916 -msgid "TCP receive" -msgstr "Recibir TCP" - -#: ../../godmode/agentes/module_manager_editor_network.php:349 -#: ../../godmode/agentes/module_manager_editor_network.php:371 -#: ../../godmode/massive/massive_edit_modules.php:789 -#: ../../godmode/massive/massive_edit_modules.php:793 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 -#: ../../enterprise/include/functions_hostdevices.php:132 -#: ../../enterprise/include/functions_hostdevices.php:163 -msgid "The pass length must be eight character minimum." -msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres." - -#: ../../godmode/agentes/module_manager_editor_network.php:371 -#: ../../godmode/massive/massive_edit_modules.php:793 -#: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../include/functions_snmp_browser.php:702 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 -#: ../../enterprise/include/functions_hostdevices.php:161 -msgid "Privacy pass" -msgstr "Conexión privada" - -#: ../../godmode/agentes/module_manager_editor_network.php:433 -#: ../../godmode/alerts/configure_alert_action.php:147 -#: ../../godmode/alerts/configure_alert_command.php:176 -#: ../../godmode/events/event_responses.editor.php:139 -#: ../../godmode/events/event_responses.editor.php:146 -#: ../../godmode/massive/massive_edit_modules.php:1109 -#: ../../godmode/massive/massive_edit_plugins.php:492 -#: ../../godmode/modules/manage_network_components_form_network.php:210 -#: ../../godmode/servers/plugin.php:422 ../../godmode/servers/plugin.php:427 -#: ../../godmode/servers/plugin.php:971 -#: ../../include/class/ManageNetScanScripts.class.php:427 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 -msgid "Command" -msgstr "Comando" - -#: ../../godmode/agentes/module_manager_editor_network.php:452 -#: ../../godmode/massive/massive_edit_modules.php:1126 -#: ../../godmode/modules/manage_network_components_form_network.php:229 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 -msgid "Credential identifier" -msgstr "Credencial" - -#: ../../godmode/agentes/module_manager_editor_network.php:468 -#: ../../godmode/massive/massive_edit_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:245 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 -msgid "Inherited" -msgstr "Heredado" - -#: ../../godmode/agentes/module_manager_editor_network.php:470 -msgid "Windows remote" -msgstr "Windows remoto" - -#: ../../godmode/agentes/module_manager_editor_network.php:473 -msgid "Connection method" -msgstr "Modo de conexión" - -#: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:517 -#: ../../enterprise/operation/agentes/tag_view.php:258 -msgid "Plugin server module" -msgstr "Módulo del servidor de plugin" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:93 -#: ../../operation/agentes/status_monitor.php:525 -#: ../../enterprise/operation/agentes/tag_view.php:266 -msgid "Prediction server module" -msgstr "Módulo del servidor de predicción" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:96 -msgid "Source module" -msgstr "Módulo origen" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:133 -#: ../../godmode/agentes/module_manager_editor_prediction.php:151 -msgid "Select Module" -msgstr "Seleccionar módulo" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:159 -#: ../../godmode/reporting/graph_builder.main.php:141 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1047 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/reporting/visual_console_builder.wizard.php:262 -#: ../../include/functions_visual_map_editor.php:720 -#: ../../enterprise/dashboard/widgets/custom_graph.php:45 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:88 -#: ../../enterprise/dashboard/widgets/single_graph.php:84 -#: ../../enterprise/dashboard/widgets/sla_percent.php:87 -#: ../../enterprise/dashboard/widgets/top_n.php:61 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1603 -#: ../../enterprise/include/functions_reporting_csv.php:455 -#: ../../enterprise/include/functions_reporting_csv.php:458 -#: ../../enterprise/include/functions_reporting_csv.php:738 -#: ../../enterprise/include/functions_reporting_csv.php:769 -#: ../../enterprise/include/functions_reporting_csv.php:801 -#: ../../enterprise/include/functions_reporting_csv.php:861 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1008 -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_reporting_csv.php:1288 -#: ../../enterprise/include/functions_reporting_csv.php:1674 -msgid "Period" -msgstr "Período" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:161 -#: ../../godmode/agentes/planned_downtime.editor.php:734 -#: ../../enterprise/include/functions_cron.php:467 -msgid "Weekly" -msgstr "Semanalmente" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:162 -#: ../../godmode/agentes/planned_downtime.editor.php:735 -#: ../../enterprise/include/functions_cron.php:468 -msgid "Monthly" -msgstr "Mensualmente" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:163 -#: ../../include/functions_netflow.php:1600 -#: ../../enterprise/include/functions_cron.php:466 -msgid "Daily" -msgstr "Diariamente" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:521 -#: ../../enterprise/operation/agentes/tag_view.php:262 -msgid "WMI server module" -msgstr "Módulo del servidor WMI" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:47 -msgid "Optional. WMI namespace. If unsure leave blank." -msgstr "Opcional. Campo de nombre WMI. Ante la duda, dejar en blanco." - -#: ../../godmode/agentes/module_manager_editor_wmi.php:93 -#: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../godmode/modules/manage_network_components_form_wmi.php:31 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:919 -msgid "WMI query" -msgstr "Consulta WMI" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:111 -#: ../../godmode/massive/massive_edit_modules.php:1085 -#: ../../godmode/modules/manage_network_components_form_wmi.php:33 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:922 -msgid "Key string" -msgstr "Cadena clave" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:111 -msgid "" -"Optional. Substring to look for in the WQL query result. The module returns " -"1 if found, 0 if not." -msgstr "" -"Opcional. Subcadena para buscar en los resultados de la consulta WQL. El " -"módulo devuelve 1 si se ha encontrado algún resultado, 0 en caso contrario." - -#: ../../godmode/agentes/module_manager_editor_wmi.php:124 -#: ../../godmode/massive/massive_edit_modules.php:1088 -#: ../../godmode/modules/manage_network_components_form_wmi.php:39 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:925 -msgid "Field number" -msgstr "Campo número" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:124 -msgid "" -"Column number to retrieve from the WQL query result (starting from zero)." -msgstr "" -"Número de columna a obtener del resultado de la consulta WQL (a partir de 0)." - -#: ../../godmode/agentes/planned_downtime.editor.php:56 -#: ../../godmode/alerts/alert_list.php:506 -#: ../../godmode/category/category.php:57 ../../include/functions_html.php:858 -#: ../../include/functions_html.php:859 ../../include/functions_html.php:963 -#: ../../include/functions_html.php:964 ../../include/functions_html.php:1143 -#: ../../include/functions_html.php:1144 ../../operation/events/events.php:784 -#: ../../operation/snmpconsole/snmp_statistics.php:48 -#: ../../operation/snmpconsole/snmp_view.php:81 -#: ../../enterprise/include/functions_backup.php:508 -#: ../../enterprise/include/functions_backup.php:509 -msgid "List" -msgstr "Lista" +#: ../../godmode/agentes/planned_downtime.list.php:561 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "¿Quiere migrar automáticamente los elementos mal formados?" #: ../../godmode/agentes/planned_downtime.editor.php:181 #: ../../godmode/agentes/planned_downtime.editor.php:313 @@ -10799,39 +30545,6 @@ msgid "Cannot be modified while the downtime is being executed" msgstr "" "No pueden ser modificado mientras se está ejecutando la parada de servicio." -#: ../../godmode/agentes/planned_downtime.editor.php:512 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/alerts/alert_list.php:93 -#: ../../godmode/alerts/alert_list.php:305 -#: ../../godmode/alerts/alert_special_days.php:227 -#: ../../godmode/alerts/alert_templates.php:163 -#: ../../godmode/alerts/configure_alert_command.php:113 -#: ../../godmode/alerts/configure_alert_template.php:505 -#: ../../godmode/modules/manage_network_components.php:387 -#: ../../godmode/setup/gis.php:47 ../../include/functions_alerts.php:2825 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../operation/agentes/pandora_networkmap.php:202 -#: ../../operation/agentes/pandora_networkmap.php:500 -#: ../../operation/incidents/incident.php:158 -#: ../../operation/snmpconsole/snmp_view.php:138 -#: ../../enterprise/extensions/ipam/ipam_action.php:186 -#: ../../enterprise/extensions/ipam/ipam_massive.php:48 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:105 -#: ../../enterprise/godmode/alerts/alert_events.php:427 -#: ../../enterprise/godmode/alerts/alert_events_list.php:100 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:176 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 -#: ../../enterprise/godmode/modules/local_components.php:338 -#: ../../enterprise/godmode/policies/policies.php:246 -#: ../../enterprise/godmode/policies/policy_modules.php:1265 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:60 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:109 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:127 -#: ../../enterprise/operation/agentes/transactional_map.php:134 -msgid "Could not be updated" -msgstr "No se pudo actualizar" - #: ../../godmode/agentes/planned_downtime.editor.php:674 msgid "Quiet: Modules will not generate events or fire alerts." msgstr "" @@ -10846,66 +30559,19 @@ 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:680 -#: ../../godmode/agentes/planned_downtime.list.php:438 -msgid "Disabled Agents" -msgstr "Agentes desactivados" - -#: ../../godmode/agentes/planned_downtime.editor.php:681 -#: ../../godmode/agentes/planned_downtime.list.php:439 -msgid "Disabled only Alerts" -msgstr "Deshabilitar solo las alertas" - -#: ../../godmode/agentes/planned_downtime.editor.php:694 -#: ../../godmode/agentes/planned_downtime.list.php:402 -#: ../../include/functions_reporting_html.php:5130 -msgid "Execution" -msgstr "Ejecución" - -#: ../../godmode/agentes/planned_downtime.editor.php:697 -#: ../../godmode/agentes/planned_downtime.list.php:157 -msgid "Once" -msgstr "Una vez" - -#: ../../godmode/agentes/planned_downtime.editor.php:698 -#: ../../godmode/agentes/planned_downtime.list.php:158 -#: ../../godmode/agentes/planned_downtime.list.php:446 -msgid "Periodically" -msgstr "Periódicamente" - #: ../../godmode/agentes/planned_downtime.editor.php:713 msgid "Configure the time" msgstr "Configurar el tiempo" #: ../../godmode/agentes/planned_downtime.editor.php:719 #: ../../include/functions_reporting_html.php:71 -#: ../../include/functions_reporting_html.php:4470 +#: ../../include/functions_reporting_html.php:4514 msgid "From:" msgstr "Desde:" -#: ../../godmode/agentes/planned_downtime.editor.php:720 -#: ../../godmode/agentes/planned_downtime.editor.php:724 -#: ../../operation/netflow/nf_live_view.php:292 -#: ../../enterprise/operation/log/log_viewer.php:507 -#: ../../enterprise/operation/log/log_viewer.php:538 -msgid "Date format is YY/MM/DD" -msgstr "El formato de la fecha es AA/MM/DD" - -#: ../../godmode/agentes/planned_downtime.editor.php:720 -#: ../../godmode/agentes/planned_downtime.editor.php:724 -#: ../../godmode/alerts/configure_alert_template.php:602 -#: ../../godmode/alerts/configure_alert_template.php:611 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1196 -#: ../../operation/netflow/nf_live_view.php:292 -#: ../../enterprise/operation/log/log_viewer.php:518 -#: ../../enterprise/operation/log/log_viewer.php:549 -msgid "Watch format is hours (24h):minutes:seconds" -msgstr "El formato del reloj es horas (24h):minutos:segundos" - #: ../../godmode/agentes/planned_downtime.editor.php:723 #: ../../include/functions_reporting_html.php:71 -#: ../../include/functions_reporting_html.php:4470 +#: ../../include/functions_reporting_html.php:4514 msgid "To:" msgstr "Hasta:" @@ -10913,83 +30579,6 @@ msgstr "Hasta:" msgid "Type Periodicity:" msgstr "Periodicidad del tipo:" -#: ../../godmode/agentes/planned_downtime.editor.php:753 -#: ../../godmode/alerts/alert_special_days.php:357 -#: ../../godmode/alerts/alert_view.php:212 -#: ../../godmode/alerts/configure_alert_template.php:584 -#: ../../include/functions.php:1075 ../../include/functions_reporting.php:11658 -#: ../../enterprise/godmode/alerts/alert_events.php:485 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:864 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1776 -msgid "Mon" -msgstr "Lun" - -#: ../../godmode/agentes/planned_downtime.editor.php:754 -#: ../../godmode/alerts/alert_special_days.php:358 -#: ../../godmode/alerts/alert_view.php:213 -#: ../../godmode/alerts/configure_alert_template.php:586 -#: ../../include/functions.php:1079 ../../include/functions_reporting.php:11663 -#: ../../enterprise/godmode/alerts/alert_events.php:487 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:865 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1777 -msgid "Tue" -msgstr "Mar" - -#: ../../godmode/agentes/planned_downtime.editor.php:755 -#: ../../godmode/alerts/alert_special_days.php:359 -#: ../../godmode/alerts/alert_view.php:214 -#: ../../godmode/alerts/configure_alert_template.php:588 -#: ../../include/functions.php:1083 ../../include/functions_reporting.php:11668 -#: ../../enterprise/godmode/alerts/alert_events.php:489 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:866 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1778 -msgid "Wed" -msgstr "Mié" - -#: ../../godmode/agentes/planned_downtime.editor.php:756 -#: ../../godmode/alerts/alert_special_days.php:360 -#: ../../godmode/alerts/alert_view.php:215 -#: ../../godmode/alerts/configure_alert_template.php:590 -#: ../../include/functions.php:1087 ../../include/functions_reporting.php:11673 -#: ../../enterprise/godmode/alerts/alert_events.php:491 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:867 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1779 -msgid "Thu" -msgstr "Jue" - -#: ../../godmode/agentes/planned_downtime.editor.php:757 -#: ../../godmode/alerts/alert_special_days.php:361 -#: ../../godmode/alerts/alert_view.php:216 -#: ../../godmode/alerts/configure_alert_template.php:592 -#: ../../include/functions.php:1091 ../../include/functions_reporting.php:11678 -#: ../../enterprise/godmode/alerts/alert_events.php:493 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:868 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1780 -msgid "Fri" -msgstr "Vie" - -#: ../../godmode/agentes/planned_downtime.editor.php:758 -#: ../../godmode/alerts/alert_special_days.php:362 -#: ../../godmode/alerts/alert_view.php:217 -#: ../../godmode/alerts/configure_alert_template.php:594 -#: ../../include/functions.php:1095 ../../include/functions_reporting.php:11683 -#: ../../enterprise/godmode/alerts/alert_events.php:495 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:869 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1781 -msgid "Sat" -msgstr "Sáb" - -#: ../../godmode/agentes/planned_downtime.editor.php:759 -#: ../../godmode/alerts/alert_special_days.php:356 -#: ../../godmode/alerts/alert_view.php:218 -#: ../../godmode/alerts/configure_alert_template.php:596 -#: ../../include/functions.php:1099 ../../include/functions_reporting.php:11688 -#: ../../enterprise/godmode/alerts/alert_events.php:497 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:870 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1782 -msgid "Sun" -msgstr "Dom" - #: ../../godmode/agentes/planned_downtime.editor.php:764 msgid "From day:" msgstr "Desde el día:" @@ -11002,20 +30591,10 @@ msgstr "Hasta el día:" msgid "From hour:" msgstr "Desde la hora:" -#: ../../godmode/agentes/planned_downtime.editor.php:807 -#: ../../godmode/agentes/planned_downtime.editor.php:820 -msgid "Watch format is hours (24h):minutes:seconds." -msgstr "El formato del reloj es horas (24h):minutos:segundos" - #: ../../godmode/agentes/planned_downtime.editor.php:810 msgid "To hour:" msgstr "Hasta la hora:" -#: ../../godmode/agentes/planned_downtime.editor.php:941 -#: ../../enterprise/include/class/Omnishell.class.php:812 -msgid "Available agents" -msgstr "Agentes disponibles" - #: ../../godmode/agentes/planned_downtime.editor.php:971 msgid "Available modules:" msgstr "Módulos disponibles:" @@ -11032,28 +30611,6 @@ msgstr "Agentes planificados para esta parada" msgid "There are no agents" msgstr "No hay agentes" -#: ../../godmode/agentes/planned_downtime.editor.php:1038 -#: ../../godmode/users/user_list.php:333 ../../include/ajax/module.php:842 -#: ../../include/functions_events.php:4076 -#: ../../include/functions_events.php.orig:3982 -#: ../../include/functions_treeview.php:631 -#: ../../mobile/operation/agent.php:211 ../../mobile/operation/agents.php:85 -#: ../../mobile/operation/agents.php:407 ../../mobile/operation/agents.php:409 -#: ../../mobile/operation/agents.php:412 -#: ../../operation/agentes/estado_agente.php:725 -#: ../../operation/agentes/estado_generalagente.php:298 -#: ../../operation/agentes/ver_agente.php:858 -#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 -#: ../../operation/gis_maps/ajax.php:466 ../../operation/search_agents.php:55 -#: ../../operation/search_users.php:37 -#: ../../enterprise/godmode/reporting/aws_view.php:61 -#: ../../enterprise/meta/agentsearch.php:120 -#: ../../enterprise/operation/agentes/policy_view.php:328 -#: ../../enterprise/operation/agentes/tag_view.php:582 -#: ../../enterprise/operation/agentes/ver_agente.php:74 -msgid "Last contact" -msgstr "Último contacto" - #: ../../godmode/agentes/planned_downtime.editor.php:1069 msgid "All alerts" msgstr "Todas las alertas" @@ -11078,7 +30635,7 @@ msgid "Add Module:" msgstr "Añadir módulo:" #: ../../godmode/agentes/planned_downtime.editor.php:1365 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 msgid "Please select a module." msgstr "Por favor, seleccione un módulo." @@ -11090,4480 +30647,460 @@ msgstr "" "ADVERTENCIA: si se modifica esta parada planificada, los datos de los " "futuros informes SLA pueden ser alterados." -#: ../../godmode/agentes/planned_downtime.export_csv.php:199 -#: ../../godmode/agentes/planned_downtime.list.php:365 -msgid "No planned downtime" -msgstr "No hay ninguna parada planificada" +#: ../../godmode/agentes/fields_manager.php:30 +msgid "Agents custom fields manager" +msgstr "Gestor de campos personalizados del agente" -#: ../../godmode/agentes/planned_downtime.list.php:47 -msgid "An error occurred while migrating the malformed planned downtimes" -msgstr "" -"Ha ocurrido un error mientras se migraban paradas planificadas mal formadas." +#: ../../godmode/agentes/fields_manager.php:46 +#: ../../include/ajax/custom_fields.php:727 +msgid "The name must not be empty" +msgstr "El nombre no puede estar vacío." -#: ../../godmode/agentes/planned_downtime.list.php:47 -msgid "Please run the migration again or contact with the administrator" -msgstr "" -"Por favor, ejecuta el script de migración de nuevo o contacta con el " -"administrador" +#: ../../godmode/agentes/fields_manager.php:48 +msgid "The name must be unique" +msgstr "El nombre debe ser único." -#: ../../godmode/agentes/planned_downtime.list.php:55 -msgid "Scheduled Downtime" -msgstr "Parada planificada" +#: ../../godmode/agentes/fields_manager.php:59 +msgid "Field successfully created" +msgstr "Se ha creado el campo." -#: ../../godmode/agentes/planned_downtime.list.php:83 -msgid "An error occurred stopping the planned downtime" -msgstr "Se produjo un error al detener la parada planificada." +#: ../../godmode/agentes/fields_manager.php:80 +msgid "Field successfully updated" +msgstr "Se ha actualizado el campo." -#: ../../godmode/agentes/planned_downtime.list.php:106 -msgid "This planned downtime is running" -msgstr "Esta parada planificada se está ejecutando." +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem modifying field" +msgstr "Ha habido un problema al modificar el campo." -#: ../../godmode/agentes/planned_downtime.list.php:113 -#: ../../godmode/events/event_filter.php:55 -#: ../../godmode/events/event_filter.php:82 -#: ../../godmode/modules/manage_nc_groups.php:142 -#: ../../godmode/netflow/nf_edit.php:92 ../../godmode/netflow/nf_edit.php:125 -#: ../../godmode/netflow/nf_item_list.php:123 -#: ../../godmode/netflow/nf_item_list.php:151 -#: ../../godmode/reporting/graphs.php:99 ../../godmode/reporting/graphs.php:110 -#: ../../godmode/reporting/graphs.php:151 -#: ../../godmode/reporting/map_builder.php:166 -#: ../../operation/reporting/graph_viewer.php:41 -#: ../../operation/reporting/graph_viewer.php:49 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:126 -#: ../../enterprise/godmode/reporting/graph_template_list.php:100 -#: ../../enterprise/godmode/reporting/graph_template_list.php:127 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:244 -msgid "Not deleted. Error deleting data" -msgstr "No se pudo borrar. Error al borrar los datos." +#: ../../godmode/agentes/fields_manager.php:94 +msgid "There was a problem deleting field" +msgstr "Ha surgido un problema al borrar el campo." -#: ../../godmode/agentes/planned_downtime.list.php:146 -#: ../../godmode/alerts/alert_list.list.php:600 -#: ../../godmode/alerts/alert_list.list.php:603 -#: ../../godmode/alerts/alert_templates.php:96 -#: ../../include/functions_snmp.php:402 ../../include/functions_snmp.php:410 -#: ../../include/functions_reporting_html.php:125 -#: ../../include/functions_reporting_html.php:2914 -#: ../../operation/agentes/gis_view.php:217 -#: ../../operation/reporting/reporting_viewer.php:212 -#: ../../enterprise/godmode/alerts/alert_events_list.php:645 -#: ../../enterprise/godmode/policies/policy_alerts.php:370 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3034 -#: ../../enterprise/include/functions_reporting_csv.php:806 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -#: ../../enterprise/include/functions_reporting_pdf.php:1516 -#: ../../enterprise/include/functions_reporting_pdf.php:1589 -#: ../../enterprise/include/functions_reporting_pdf.php:1702 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 -msgid "From" -msgstr "De" +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Field successfully deleted" +msgstr "El campo se ha borrado correctamente." -#: ../../godmode/agentes/planned_downtime.list.php:148 -#: ../../include/functions_snmp.php:423 ../../include/functions_snmp.php:431 -#: ../../include/functions_reporting_html.php:2915 -#: ../../operation/agentes/gis_view.php:218 -#: ../../enterprise/include/functions_reporting_csv.php:807 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -#: ../../enterprise/include/functions_reporting_pdf.php:1704 -msgid "To" -msgstr "Para" +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:92 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "Mostrar en la vista principal" -#: ../../godmode/agentes/planned_downtime.list.php:160 -msgid "Execution type" -msgstr "Tipo de ejecución" - -#: ../../godmode/agentes/planned_downtime.list.php:162 -msgid "Show past downtimes" -msgstr "Mostrar paradas antiguas" - -#: ../../godmode/agentes/planned_downtime.list.php:398 -msgid "Name #Ag." -msgstr "Nombre (núm. ag.)" - -#: ../../godmode/agentes/planned_downtime.list.php:403 -#: ../../godmode/menu.php:177 ../../godmode/setup/setup.php:210 -#: ../../include/functions_reports.php:854 -#: ../../include/functions_reports.php:858 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:664 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:244 -#: ../../enterprise/godmode/modules/configure_local_component.php:455 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:169 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 -msgid "Configuration" -msgstr "Configuración" - -#: ../../godmode/agentes/planned_downtime.list.php:404 -#: ../../godmode/agentes/planned_downtime.list.php:470 -#: ../../enterprise/extensions/backup/main.php:164 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:486 -#: ../../enterprise/operation/agentes/transactional_map.php:241 -msgid "Running" -msgstr "Ejecutándose" - -#: ../../godmode/agentes/planned_downtime.list.php:407 -#: ../../godmode/agentes/planned_downtime.list.php:479 -msgid "Stop downtime" -msgstr "Detener parada planificada" - -#: ../../godmode/agentes/planned_downtime.list.php:445 -msgid "once" -msgstr "una vez" - -#: ../../godmode/agentes/planned_downtime.list.php:460 -msgid "Not running" -msgstr "No está en ejecución" - -#: ../../godmode/agentes/planned_downtime.list.php:494 -#: ../../godmode/alerts/alert_view.php:108 ../../godmode/extensions.php:189 -#: ../../godmode/extensions.php:204 -#: ../../godmode/modules/manage_network_components.php:687 -#: ../../godmode/modules/manage_network_components.php:688 -#: ../../godmode/servers/servers.build_table.php:115 -#: ../../godmode/servers/servers.build_table.php:116 -#: ../../godmode/servers/servers.build_table.php:122 -#: ../../include/functions.php:1122 ../../include/functions.php:1128 -#: ../../include/functions.php:1132 ../../include/functions_servers.php:1235 -#: ../../include/functions_db.php:208 ../../include/functions_events.php:3541 -#: ../../include/functions_events.php:3651 -#: ../../include/functions_events.php:3672 -#: ../../include/functions_events.php:3677 -#: ../../include/functions_events.php:3690 -#: ../../include/functions_events.php:3691 -#: ../../include/functions_events.php:3703 -#: ../../include/functions_events.php:3754 -#: ../../include/functions_events.php:3781 -#: ../../include/functions_events.php:3801 -#: ../../include/functions_events.php:3895 -#: ../../include/functions_events.php:4032 -#: ../../include/functions_events.php:4063 -#: ../../include/functions_events.php:4077 -#: ../../include/functions_events.php:4082 -#: ../../include/functions_events.php:4112 -#: ../../include/functions_events.php:4205 -#: ../../include/functions_events.php:4272 -#: ../../include/functions_events.php:4282 -#: ../../include/functions_events.php:4441 -#: ../../include/functions_events.php:4509 -#: ../../include/functions_events.php:4585 -#: ../../include/functions_events.php:4614 -#: ../../include/functions_events.php:4629 -#: ../../include/functions_events.php:4639 -#: ../../include/functions_events.php:6773 -#: ../../include/functions_events.php:6792 -#: ../../include/functions_events.php:6797 -#: ../../include/functions_events.php:6804 -#: ../../include/functions_events.php:6817 -#: ../../include/functions_events.php:6830 -#: ../../include/functions_events.php:6842 -#: ../../include/functions_events.php:6893 -#: ../../include/functions_events.php:6920 -#: ../../include/functions_events.php:6940 -#: ../../include/functions_events.php.orig:3447 -#: ../../include/functions_events.php.orig:3557 -#: ../../include/functions_events.php.orig:3578 -#: ../../include/functions_events.php.orig:3583 -#: ../../include/functions_events.php.orig:3596 -#: ../../include/functions_events.php.orig:3597 -#: ../../include/functions_events.php.orig:3609 -#: ../../include/functions_events.php.orig:3660 -#: ../../include/functions_events.php.orig:3687 -#: ../../include/functions_events.php.orig:3707 -#: ../../include/functions_events.php.orig:3801 -#: ../../include/functions_events.php.orig:3938 -#: ../../include/functions_events.php.orig:3969 -#: ../../include/functions_events.php.orig:3983 -#: ../../include/functions_events.php.orig:3988 -#: ../../include/functions_events.php.orig:4018 -#: ../../include/functions_events.php.orig:4112 -#: ../../include/functions_events.php.orig:4179 -#: ../../include/functions_events.php.orig:4189 -#: ../../include/functions_events.php.orig:4344 -#: ../../include/functions_events.php.orig:4403 -#: ../../include/functions_events.php.orig:4479 -#: ../../include/functions_events.php.orig:4500 -#: ../../include/functions_events.php.orig:4515 -#: ../../include/functions_events.php.orig:4525 -#: ../../include/functions_treeview.php:156 -#: ../../include/functions_treeview.php:413 ../../include/functions_ui.php:2568 -#: ../../include/functions_ui.php:2576 -#: ../../include/functions_reporting_html.php:591 -#: ../../include/functions_reporting_html.php:594 -#: ../../include/functions_reporting_html.php:4211 -#: ../../include/functions_reporting_html.php:4264 -#: ../../mobile/operation/agent.php:205 ../../mobile/operation/agent.php:215 -#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 -#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 -#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 -#: ../../operation/agentes/estado_generalagente.php:204 -#: ../../operation/agentes/estado_generalagente.php:210 -#: ../../operation/agentes/estado_generalagente.php:219 -#: ../../operation/agentes/estado_generalagente.php:347 -#: ../../operation/agentes/estado_generalagente.php:363 -#: ../../operation/snmpconsole/snmp_view.php:919 -#: ../../operation/snmpconsole/snmp_view.php:939 -#: ../../enterprise/dashboard/widget.php:328 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:199 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:220 -#: ../../enterprise/extensions/ipam/ipam_network.php:363 -#: ../../enterprise/extensions/ipam/ipam_network.php:439 -#: ../../enterprise/extensions/visual_console_manager.php:107 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:54 -#: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_aws.php:507 -#: ../../enterprise/include/functions_aws.php:508 -#: ../../enterprise/include/functions_services.php:2043 -#: ../../enterprise/include/functions_services.php:2251 -#: ../../enterprise/include/functions_services.php:2800 -#: ../../enterprise/include/functions_reporting.php:5725 -#: ../../enterprise/include/functions_servicemap.php:385 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 -#: ../../enterprise/meta/advanced/metasetup.visual.php:462 -#: ../../enterprise/meta/advanced/servers.build_table.php:98 -#: ../../enterprise/meta/advanced/servers.build_table.php:99 -#: ../../enterprise/meta/advanced/servers.build_table.php:105 -msgid "N/A" -msgstr "N/A" - -#: ../../godmode/agentes/planned_downtime.list.php:555 +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:93 +#: ../../operation/agentes/custom_fields.php:67 msgid "" -"WARNING: If you delete this planned downtime, it will not be taken into " -"account in future SLA reports" +"The fields with display on front enabled will be displayed into the agent " +"details" msgstr "" -"ADVERTENCIA: si se borra esta parada planificada, no se tendrá en cuenta en " -"futuros informes SLA." +"Si esta opción está activada, los campos mostrarán la información en la " +"vista principal." -#: ../../godmode/agentes/planned_downtime.list.php:561 -msgid "WARNING: There are malformed planned downtimes" -msgstr "ADVERTENCIA: hay paradas planificadas mal formadas." +#: ../../godmode/agentes/fields_manager.php:164 +msgid "Create field" +msgstr "Crear campo" -#: ../../godmode/agentes/planned_downtime.list.php:561 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "¿Quiere migrar automáticamente los elementos mal formados?" +#: ../../godmode/agentes/module_manager_editor_network.php:470 +msgid "Windows remote" +msgstr "Windows remoto" -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -#: ../../operation/agentes/status_monitor.php:556 -#: ../../enterprise/operation/agentes/tag_view.php:293 -#: ../../enterprise/operation/agentes/tag_view.php:651 -msgid "Data type" -msgstr "Tipo de dato" +#: ../../godmode/agentes/module_manager_editor_network.php:473 +msgid "Connection method" +msgstr "Modo de conexión" -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 -#: ../../operation/agentes/status_monitor.php:536 -#: ../../operation/agentes/status_monitor.php:1128 -#: ../../enterprise/operation/agentes/tag_view.php:273 -#: ../../enterprise/operation/agentes/tag_view.php:652 -msgid "Server type" -msgstr "Tipo de servidor" +#: ../../godmode/agentes/agent_manager.php:221 +#: ../../operation/agentes/estado_agente.php:189 ../../operation/menu.php:56 +msgid "Agent detail" +msgstr "Detalle de agente" -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:152 -#: ../../godmode/events/custom_events.php:101 ../../godmode/setup/news.php:239 -#: ../../include/ajax/custom_fields.php:405 ../../include/ajax/events.php:1496 -#: ../../include/ajax/events_extended.php:90 -#: ../../include/functions_events.php:195 -#: ../../include/functions_events.php:250 -#: ../../include/functions_events.php:2398 -#: ../../include/functions_events.php:4495 -#: ../../include/functions_events.php:6020 -#: ../../include/functions_events.php.orig:193 -#: ../../include/functions_events.php.orig:248 -#: ../../include/functions_events.php.orig:2304 -#: ../../include/functions_events.php.orig:4389 -#: ../../include/functions_events.php.orig:5924 -#: ../../include/functions_netflow.php:274 -#: ../../include/functions_reporting_html.php:968 -#: ../../include/functions_reporting_html.php:976 -#: ../../include/functions_reporting_html.php:1187 -#: ../../include/functions_reporting_html.php:1194 -#: ../../include/functions_reporting_html.php:1966 -#: ../../include/functions_reporting_html.php:3953 -#: ../../mobile/operation/events.php:516 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:822 -#: ../../operation/agentes/estado_generalagente.php:567 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1163 -#: ../../operation/events/events.build_table.php:192 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:123 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:297 -#: ../../operation/messages/message_list.php:168 -#: ../../operation/search_modules.php:38 -#: ../../operation/snmpconsole/snmp_view.php:826 -#: ../../enterprise/include/class/Omnishell.class.php:400 -#: ../../enterprise/include/functions_inventory.php:77 -#: ../../enterprise/include/functions_inventory.php:239 -#: ../../enterprise/include/functions_inventory.php:259 -#: ../../enterprise/include/functions_inventory.php:420 -#: ../../enterprise/include/functions_reporting_csv.php:709 -#: ../../enterprise/include/functions_reporting_csv.php:1251 -#: ../../enterprise/include/functions_reporting_csv.php:2058 -#: ../../enterprise/include/functions_reporting_csv.php:2094 -#: ../../enterprise/meta/include/functions_events_meta.php:82 -#: ../../enterprise/operation/agentes/tag_view.php:658 -msgid "Timestamp" -msgstr "Marca temporal" +#: ../../godmode/agentes/agent_manager.php:231 +msgid "Delete agent" +msgstr "Borrar agente" -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:153 -#: ../../operation/agentes/status_monitor.php:1169 -msgid "Last status change" -msgstr "Último cambio de estado" +#: ../../godmode/agentes/agent_manager.php:258 +msgid "QR Code Agent view" +msgstr "Código QR de la vista de agente" -#: ../../godmode/agentes/status_monitor_custom_fields.php:125 -msgid "Show monitor detail fields" -msgstr "Mostrar campo de detalle de monitor" +#: ../../godmode/agentes/agent_manager.php:279 +msgid "Use alias as name" +msgstr "Usar el alias como nombre" -#: ../../godmode/agentes/status_monitor_custom_fields.php:164 -#: ../../godmode/events/custom_events.php:126 -#: ../../enterprise/meta/event/custom_events.php:175 -msgid "Fields available" -msgstr "Campos disponibles" +#: ../../godmode/agentes/agent_manager.php:287 +#: ../../godmode/setup/setup_general.php:338 +msgid "Unique IP" +msgstr "IP única" -#: ../../godmode/agentes/status_monitor_custom_fields.php:171 -#: ../../godmode/events/custom_events.php:133 -#: ../../enterprise/meta/event/custom_events.php:187 -msgid "Add fields to select" -msgstr "Añadir campos para seleccionar" +#: ../../godmode/agentes/agent_manager.php:321 +msgid "Primary group" +msgstr "Grupo primario" -#: ../../godmode/agentes/status_monitor_custom_fields.php:179 -#: ../../godmode/events/custom_events.php:141 -#: ../../enterprise/meta/event/custom_events.php:196 -msgid "Delete fields to select" -msgstr "Eliminar campos para seleccionar" +#: ../../godmode/agentes/agent_manager.php:532 +#: ../../godmode/massive/massive_edit_agents.php:707 +msgid "Safe operation mode" +msgstr "Modo seguro de operación" -#: ../../godmode/agentes/status_monitor_custom_fields.php:184 -#: ../../godmode/events/custom_events.php:146 -#: ../../enterprise/meta/event/custom_events.php:177 -msgid "Fields selected" -msgstr "Campos seleccionados" +#: ../../godmode/agentes/agent_manager.php:554 +#: ../../godmode/massive/massive_edit_agents.php:653 +msgid "Not available" +msgstr "No disponible" -#: ../../godmode/agentes/status_monitor_custom_fields.php:238 -#: ../../godmode/events/custom_events.php:200 -#: ../../enterprise/meta/event/custom_events.php:246 +#: ../../godmode/agentes/agent_manager.php:572 +msgid "Cascade protection services" +msgstr "Servicios de protección en cascada" + +#: ../../godmode/agentes/agent_manager.php:599 +#: ../../godmode/massive/massive_edit_agents.php:535 +msgid "Cascade protection" +msgstr "Protección en cascada" + +#: ../../godmode/agentes/agent_manager.php:615 +#: ../../godmode/massive/massive_edit_agents.php:633 +msgid "Module definition" +msgstr "Definición de módulos" + +#: ../../godmode/agentes/agent_manager.php:620 +#: ../../godmode/massive/massive_edit_agents.php:635 +msgid "Learning mode" +msgstr "Modo de aprendizaje" + +#: ../../godmode/agentes/agent_manager.php:630 +#: ../../godmode/massive/massive_edit_agents.php:636 +msgid "Normal mode" +msgstr "Modo normal" + +#: ../../godmode/agentes/agent_manager.php:640 +#: ../../godmode/massive/massive_edit_agents.php:637 +msgid "Autodisable mode" +msgstr "Modo autodeshabilitado" + +#: ../../godmode/agentes/agent_manager.php:657 +msgid "Disabled mode" +msgstr "Modo deshabilitado" + +#: ../../godmode/agentes/agent_manager.php:662 +#: ../../godmode/agentes/agent_manager.php:679 +#: ../../include/functions_treeview.php:736 +#: ../../operation/agentes/ver_agente.php:1246 +#: ../../operation/agentes/estado_generalagente.php:431 +msgid "Url address" +msgstr "Dirección URL" + +#: ../../godmode/agentes/agent_manager.php:704 +#: ../../godmode/massive/massive_edit_agents.php:681 +msgid "Agent icon" +msgstr "Icono de agente" + +#: ../../godmode/agentes/agent_manager.php:754 +msgid "Update new GIS data:" +msgstr "Actualizar nuevos datos GIS:" + +#: ../../godmode/agentes/agent_manager.php:816 +msgid "Click to display" +msgstr "Pinche para visualizar" + +#: ../../godmode/agentes/agent_manager.php:1069 +msgid "Primary group cannot be secondary too." +msgstr "Un grupo primario no puede ser también secundario." + +#: ../../godmode/agentes/agent_manager.php:1199 +msgid "Secondary group cannot be primary too." +msgstr "Un grupo secundario no puede ser también primario." + +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "No hay incidentes asociados a este agente" + +#: ../../godmode/agentes/agent_incidents.php:90 +#: ../../operation/incidents/incident_detail.php:272 +#: ../../operation/incidents/incident.php:421 +msgid "Incident" +msgstr "Incidente" + +#: ../../godmode/agentes/configure_field.php:38 +msgid "Update agent custom field" +msgstr "Actualizar campo personalizado del agente" + +#: ../../godmode/agentes/configure_field.php:40 +msgid "Create agent custom field" +msgstr "Crear campo personalizado" + +#: ../../godmode/agentes/configure_field.php:52 +#: ../../godmode/agentes/configure_field.php:56 +#: ../../godmode/agentes/configure_field.php:60 +#: ../../godmode/agentes/configure_field.php:64 +msgid "Agent Custom Fields Information" +msgstr "Información de los campos de personalización de agentes" + +#: ../../godmode/agentes/configure_field.php:53 msgid "" -"There must be at least one custom field. Timestamp will be set by default" +"You cannot set the Password type until you clear the combo values and click " +"on update button." msgstr "" -"Debe haber al menos un campo personalizado. La marca horaria está " -"establecida por defecto." +"No puede establecer el tipo de contraseña hasta que elimine los valores del " +"combo y pinche en el botón actualizar." -#: ../../godmode/agentes/status_monitor_custom_fields.php:239 -#: ../../godmode/events/custom_events.php:201 -#: ../../include/class/TreeGroupEdition.class.php:92 -#: ../../enterprise/meta/event/custom_events.php:247 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1098 -msgid "Confirm" -msgstr "Confirmar" - -#: ../../godmode/alerts/alert_actions.php:61 -msgid "Alert actions" -msgstr "Acciones de alerta" - -#: ../../godmode/alerts/alert_actions.php:113 -#: ../../godmode/alerts/alert_commands.php:389 -#: ../../godmode/reporting/map_builder.php:267 -#: ../../godmode/reporting/map_builder.php:274 -#: ../../include/functions_agents.php:894 -#: ../../enterprise/godmode/policies/policies.php:269 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 -msgid "Successfully copied" -msgstr "Copia realizada correctamente" - -#: ../../godmode/alerts/alert_actions.php:114 -#: ../../godmode/alerts/alert_commands.php:390 -#: ../../enterprise/godmode/policies/policies.php:270 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:333 -msgid "Could not be copied" -msgstr "No se ha podido copiar" - -#: ../../godmode/alerts/alert_actions.php:185 -#: ../../godmode/massive/massive_copy_modules.php:300 -#: ../../godmode/reporting/map_builder.php:338 -#: ../../operation/agentes/pandora_networkmap.php:700 -#: ../../operation/agentes/pandora_networkmap.php:794 -#: ../../enterprise/dashboard/dashboards.php:118 -#: ../../enterprise/dashboard/dashboards.php:167 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:213 -#: ../../enterprise/godmode/policies/policies.php:585 -#: ../../enterprise/godmode/policies/policy_modules.php:1685 -msgid "Copy" -msgstr "Copiar" - -#: ../../godmode/alerts/alert_actions.php:234 +#: ../../godmode/agentes/configure_field.php:57 msgid "" -"The action and the command associated with it do not have the same group. " -"Please contact an administrator to fix it." +"You cannot unset the enable combo until you clear the combo values and click " +"on update." msgstr "" -"La acción y el comando asociado no pertenecen al mismo grupo. Póngase en " -"contacto con el administrador para solucionarlo." +"No puede desactivar el combo habilitado hasta que elimine los valores del " +"combo y pinche en actualizar." -#: ../../godmode/alerts/alert_actions.php:260 -msgid "No alert actions configured" -msgstr "Sin acciones de alertas configuradas" +#: ../../godmode/agentes/configure_field.php:61 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "" +"Si selecciona el combo Habilitado, se deshabilitará el tipo de contraseña." -#: ../../godmode/alerts/alert_commands.php:79 -#: ../../godmode/alerts/alert_commands.php:81 -#: ../../godmode/alerts/alert_commands.php:95 -#: ../../godmode/alerts/alert_commands.php:101 -#: ../../godmode/alerts/alert_view.php:466 -#: ../../godmode/alerts/alert_view.php:544 -#: ../../godmode/alerts/configure_alert_template.php:847 -#: ../../enterprise/godmode/alerts/alert_events.php:567 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1642 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2398 +#: ../../godmode/agentes/configure_field.php:65 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "" +"Si selecciona el tipo de Contraseña el combo Habliitado se deshabilitará." + +#: ../../godmode/agentes/configure_field.php:81 +msgid "Pass type" +msgstr "Tipo de contraseña" + +#: ../../godmode/agentes/configure_field.php:82 +msgid "" +"The fields with pass type enabled will be displayed like html input type " +"pass in html" +msgstr "" +"Los campos con el tipo de contraseña habilitado se mostrarán con asteriscos " +"en HTML." + +#: ../../godmode/agentes/configure_field.php:103 +msgid "Enabled combo" +msgstr "Combo habilitado" + +#: ../../godmode/agentes/configure_field.php:115 +msgid "Combo values" +msgstr "Valores de combo" + +#: ../../godmode/agentes/configure_field.php:116 +msgid "Set values separated by comma" +msgstr "Establecer valores separados por coma" + +#: ../../godmode/agentes/module_manager_editor_common.php:90 +msgid "Using module component" +msgstr "Utilizar módulo de librería" + +#: ../../godmode/agentes/module_manager_editor_common.php:387 +#: ../../godmode/agentes/module_manager_editor_common.php:440 +msgid "Min. " +msgstr "Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:614 +msgid "Dynamic Threshold Interval" +msgstr "Intervalo de rango dinámico" + +#: ../../godmode/agentes/module_manager_editor_common.php:634 +msgid "Dynamic Threshold Min. " +msgstr "Rango dinámico mínimo " + +#: ../../godmode/agentes/module_manager_editor_common.php:647 +msgid "Dynamic Threshold Max. " +msgstr "Rango dinámico máximo " + +#: ../../godmode/agentes/module_manager_editor_common.php:660 +msgid "Dynamic Threshold Two Tailed: " +msgstr "Rango dinámico dos fallido: " + +#: ../../godmode/agentes/module_manager_editor_common.php:671 +msgid "Not needed" +msgstr "No necesario" + +#: ../../godmode/agentes/module_manager_editor_common.php:951 +msgid "Tags from policy" +msgstr "Etiquetas desde política" + +#: ../../godmode/agentes/module_manager_editor_common.php:991 +msgid "Cascade Protection Services" +msgstr "Servicios de protección en cascada" + +#: ../../godmode/agentes/module_manager_editor_common.php:1025 +#: ../../godmode/agentes/module_manager_editor_common.php:1033 +#: ../../godmode/agentes/module_manager_editor_common.php:1042 +msgid "Cron from" +msgstr "Cron desde" + +#: ../../godmode/agentes/module_manager_editor_common.php:1029 +#: ../../godmode/agentes/module_manager_editor_common.php:1037 +#: ../../godmode/agentes/module_manager_editor_common.php:1046 +msgid "Cron to" +msgstr "Cron hasta" + +#: ../../godmode/agentes/module_manager_editor_common.php:1082 +msgid "Module parent" +msgstr "Padre del módulo" + +#: ../../godmode/agentes/module_manager_editor_common.php:1180 +#: ../../godmode/agentes/module_manager_editor_common.php:1275 +msgid "Direct" +msgstr "Directo" + +#: ../../godmode/agentes/module_manager_editor_common.php:1181 +#: ../../godmode/agentes/module_manager_editor_common.php:1275 +#: ../../include/functions_reporting_html.php:3028 +#: ../../include/functions_reporting_html.php:3113 +#: ../../include/functions_reporting_html.php:3176 +#: ../../include/functions_reporting_html.php:3531 +msgid "Failover" +msgstr "Conmutación" + +#: ../../godmode/agentes/module_manager_editor_common.php:1182 +msgid "Rel. type" +msgstr "Rel. tipo" + +#: ../../godmode/agentes/module_manager_editor_common.php:1197 +msgid "Add relationship" +msgstr "Añadir relación" + +#: ../../godmode/agentes/module_manager_editor_common.php:1222 +msgid "Changes" +msgstr "Cambios" + +#: ../../godmode/agentes/module_manager.php:89 +msgid "Create a new data server module" +msgstr "Crear un nuevo módulo de servidor de datos" + +#: ../../godmode/agentes/module_manager.php:91 +msgid "Create a new network server module" +msgstr "Crear un nuevo módulo de servidor de red" + +#: ../../godmode/agentes/module_manager.php:95 +msgid "Create a new plugin server module" +msgstr "Crear un nuevo módulo de servidor de complementos" + +#: ../../godmode/agentes/module_manager.php:99 +msgid "Create a new WMI server module" +msgstr "Crear un nuevo módulo de servidor WMI" + +#: ../../godmode/agentes/module_manager.php:103 +msgid "Create a new prediction server module" +msgstr "Crear un nuevo módulo de servidor de predicción" + +#: ../../godmode/agentes/module_manager.php:147 +#: ../../operation/agentes/estado_monitores.php:575 +msgid "Show in hierachy mode" +msgstr "Mostrar en modo jerarquía" + +#: ../../godmode/agentes/module_manager.php:159 +msgid "

Type

" +msgstr "

Tipo

" + +#: ../../godmode/agentes/module_manager.php:176 +msgid "Get more modules on Monitoring Library" +msgstr "Añadir más módulos de la Librería de módulos" + +#: ../../godmode/agentes/module_manager.php:210 +msgid "Nice try buddy" +msgstr "Buen intento, amigo" + +#: ../../godmode/agentes/module_manager.php:337 #, php-format -msgid "Field %s" -msgstr "Campo %s" +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/alerts/alert_commands.php:115 -#: ../../godmode/alerts/alert_commands.php:125 -#: ../../godmode/alerts/configure_alert_template.php:852 -#: ../../godmode/alerts/configure_alert_template.php:866 -#: ../../godmode/alerts/configure_alert_template.php:957 -#: ../../godmode/modules/manage_network_components_form_common.php:65 -#: ../../godmode/users/configure_user.php:897 -#: ../../enterprise/godmode/modules/configure_local_component.php:160 -#: ../../enterprise/meta/advanced/metasetup.setup.php:108 -msgid "Basic" -msgstr "Básico" +#: ../../godmode/agentes/module_manager.php:343 +msgid "All Modules deleted succesfully" +msgstr "Todos los módulos han sido borrados correctamente." -#: ../../godmode/alerts/alert_commands.php:115 -msgid "" -"For sending emails, text must be HTML format, if you want to use plain text, " -"type it between the following labels:
"
-msgstr ""
-"Para envíar emails, el texto debe estar en formato HTML, si quiere usar "
-"texto plano, escríbelo entre las etiquetas: 
"
-
-#: ../../godmode/alerts/alert_commands.php:118
-#: ../../godmode/alerts/alert_commands.php:128
-#: ../../godmode/alerts/configure_alert_template.php:856
-#: ../../godmode/alerts/configure_alert_template.php:870
-#: ../../godmode/alerts/configure_alert_template.php:958
-#: ../../godmode/modules/manage_network_components_form_common.php:66
-#: ../../godmode/netflow/nf_edit_form.php:226
-#: ../../godmode/users/configure_user.php:898
-#: ../../operation/netflow/nf_live_view.php:482
-#: ../../enterprise/godmode/modules/configure_local_component.php:161
-#: ../../enterprise/meta/general/logon_ok.php:99
-#: ../../enterprise/meta/general/main_header.php:298
-#: ../../enterprise/meta/general/main_header.php:386
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245
-msgid "Advanced"
-msgstr "Avanzado"
-
-#: ../../godmode/alerts/alert_commands.php:135
-#: ../../godmode/alerts/alert_commands.php:144
-msgid "Text/plain"
-msgstr "Texto/plano"
-
-#: ../../godmode/alerts/alert_commands.php:135
-#: ../../godmode/alerts/alert_commands.php:144
-msgid "For sending emails only text plain"
-msgstr "Para mandar emails solo en texto plano"
-
-#: ../../godmode/alerts/alert_commands.php:138
-#: ../../godmode/alerts/alert_commands.php:147
-msgid "Text/html"
-msgstr "Texto/HTML"
-
-#: ../../godmode/alerts/alert_commands.php:272
-msgid "Alert commands"
-msgstr "Comandos de alerta"
-
-#: ../../godmode/alerts/alert_commands.php:330
-#: ../../include/functions_alerts.php:2758
-msgid "No name specified"
-msgstr "Ningún nombre especificado"
-
-#: ../../godmode/alerts/alert_commands.php:334
-#: ../../include/functions_alerts.php:2753
-msgid "No command specified"
-msgstr "Ningún comando especificado"
-
-#: ../../godmode/alerts/alert_commands.php:383
-msgid " (copy)"
-msgstr " (copia)"
-
-#: ../../godmode/alerts/alert_commands.php:455
-msgid "No alert commands configured"
-msgstr "Comandos de alertas no configurados"
-
-#: ../../godmode/alerts/alert_list.builder.php:90
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:744
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:816
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1226
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1298
-msgid "Latest value"
-msgstr "Último valor"
-
-#: ../../godmode/alerts/alert_list.builder.php:193
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:907
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1389
-msgid "Finish and view cluster"
-msgstr "Finalizar y ver cluster"
-
-#: ../../godmode/alerts/alert_list.builder.php:285
-#: ../../godmode/alerts/configure_alert_template.php:1106
-#: ../../godmode/modules/manage_network_components_form_network.php:183
-#: ../../godmode/modules/manage_network_components_form_plugin.php:54
-#: ../../godmode/modules/manage_network_components_form_wmi.php:60
-#: ../../include/functions.php:2548
-#: ../../enterprise/godmode/reporting/cluster_builder.php:594
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:96
-#: ../../enterprise/operation/agentes/policy_view.php:157
-#: ../../enterprise/operation/agentes/policy_view.php:223
-#: ../../enterprise/operation/agentes/policy_view.php:465
-msgid "Empty"
-msgstr "Vacío"
-
-#: ../../godmode/alerts/alert_list.list.php:55
-#: ../../enterprise/godmode/reporting/graph_template_list.php:146
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:372
-msgid "Template name"
-msgstr "Nombre de la plantilla"
-
-#: ../../godmode/alerts/alert_list.list.php:117
-msgid "Field content"
-msgstr "Contenido del campo"
-
-#: ../../godmode/alerts/alert_list.list.php:126
-msgid "Enabled / Disabled"
-msgstr "Habilitado/Deshabilitado"
-
-#: ../../godmode/alerts/alert_list.list.php:131
-#: ../../operation/agentes/alerts_status.functions.php:107
-#: ../../operation/agentes/alerts_status.php:504
-#: ../../operation/agentes/alerts_status.php:540
-#: ../../operation/agentes/alerts_status.php:575
-#: ../../operation/agentes/alerts_status.php:608
-#: ../../enterprise/operation/agentes/policy_view.php:206
-msgid "Standby"
-msgstr "Standby"
-
-#: ../../godmode/alerts/alert_list.list.php:133
-#: ../../include/functions_ui.php:1131 ../../mobile/operation/alerts.php:55
-#: ../../operation/agentes/alerts_status.functions.php:85
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2973
-#: ../../enterprise/operation/agentes/policy_view.php:234
-msgid "Standby on"
-msgstr "Modo standby activado"
-
-#: ../../godmode/alerts/alert_list.list.php:134
-#: ../../mobile/operation/alerts.php:56
-#: ../../operation/agentes/alerts_status.functions.php:86
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2967
-msgid "Standby off"
-msgstr "Modo standby desactivado"
-
-#: ../../godmode/alerts/alert_list.list.php:157
-#: ../../operation/agentes/alerts_status.php:465
-msgid "Alert control filter"
-msgstr "Filtro de control de alertas"
-
-#: ../../godmode/alerts/alert_list.list.php:157
-#: ../../godmode/snmpconsole/snmp_alert.php:1129
-#: ../../godmode/users/user_list.php:303
-#: ../../operation/agentes/alerts_status.php:466
-#: ../../operation/agentes/graphs.php:262
-#: ../../operation/snmpconsole/snmp_view.php:682
-#: ../../operation/snmpconsole/snmp_view.php:764
-#: ../../enterprise/godmode/policies/policy_queue.php:342
-#: ../../enterprise/godmode/policies/policy_queue.php:447
-msgid "Toggle filter(s)"
-msgstr "Conmutar filtro(s)"
-
-#: ../../godmode/alerts/alert_list.list.php:448
-#: ../../godmode/massive/massive_copy_modules.php:169
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:415
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:134
-#: ../../enterprise/godmode/alerts/alert_events_list.php:505
-#: ../../enterprise/godmode/alerts/alert_events_rules.php:406
-#: ../../enterprise/godmode/policies/policy_alerts.php:288
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:395
-#: ../../enterprise/include/functions_tasklist.php:173
-msgid "Operations"
-msgstr "Operaciones"
-
-#: ../../godmode/alerts/alert_list.list.php:448
-#: ../../godmode/alerts/alert_templates.php:369
-#: ../../godmode/reporting/graphs.php:276
-#: ../../godmode/reporting/reporting_builder.list_items.php:391
-#: ../../godmode/reporting/reporting_builder.php:838
-#: ../../godmode/reporting/reporting_builder.php:1029
-#: ../../godmode/servers/plugin.php:973
-#: ../../godmode/servers/servers.build_table.php:77
-#: ../../godmode/users/profile_list.php:301
-#: ../../godmode/users/user_list.php:338
-#: ../../include/functions_container.php:158
-#: ../../operation/gis_maps/gis_map.php:109
-#: ../../enterprise/godmode/alerts/alert_events_list.php:505
-#: ../../enterprise/godmode/alerts/alert_events_rules.php:406
-#: ../../enterprise/godmode/modules/local_components.php:561
-#: ../../enterprise/godmode/policies/policies.php:429
-#: ../../enterprise/godmode/policies/policy_alerts.php:288
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316
-#: ../../enterprise/meta/advanced/servers.build_table.php:70
-#: ../../enterprise/meta/include/functions_autoprovision.php:616
-msgid "Op."
-msgstr "Op."
-
-#: ../../godmode/alerts/alert_list.list.php:592
-#: ../../godmode/alerts/alert_view.php:198
-#: ../../include/functions_alerts.php:666
-#: ../../enterprise/godmode/alerts/alert_events_list.php:637
-#: ../../enterprise/godmode/policies/policy_alerts.php:362
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:242
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3025
-msgid "Always"
-msgstr "Siempre"
-
-#: ../../godmode/alerts/alert_list.list.php:594
-#: ../../include/class/Diagnostics.class.php:1172
-#: ../../include/class/Diagnostics.class.php:1176
-#: ../../enterprise/godmode/alerts/alert_events_list.php:639
-#: ../../enterprise/godmode/policies/policy_alerts.php:364
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:244
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3027
-msgid "On"
-msgstr "Activado"
-
-#: ../../godmode/alerts/alert_list.list.php:598
-#: ../../enterprise/godmode/alerts/alert_events_list.php:643
-#: ../../enterprise/godmode/policies/policy_alerts.php:368
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:248
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3031
-msgid "Until"
-msgstr "Hasta"
-
-#: ../../godmode/alerts/alert_list.list.php:618
-#: ../../godmode/alerts/alert_view.php:358
-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:630
-msgid "Delete action"
-msgstr "Eliminar acción"
-
-#: ../../godmode/alerts/alert_list.list.php:645
-#: ../../godmode/alerts/alert_list.list.php:1003
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443
-msgid "Update action"
-msgstr "Actualizar acción"
-
-#: ../../godmode/alerts/alert_list.list.php:816
-#: ../../godmode/alerts/alert_list.list.php:820
-#: ../../godmode/alerts/alert_list.list.php:973
-#: ../../godmode/snmpconsole/snmp_alert.php:1319
-#: ../../enterprise/godmode/alerts/alert_events_list.php:671
-#: ../../enterprise/godmode/alerts/alert_events_list.php:673
-#: ../../enterprise/godmode/policies/policy_alerts.php:688
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:272
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:460
-msgid "Add action"
-msgstr "Añadir acción"
-
-#: ../../godmode/alerts/alert_list.list.php:843
-msgid "View alert advanced details"
-msgstr "Ver detalles avanzados de la alerta"
-
-#: ../../godmode/alerts/alert_list.list.php:859
-#: ../../include/functions_reporting_html.php:2397
-msgid "No alerts defined"
-msgstr "No hay alertas definidas"
-
-#: ../../godmode/alerts/alert_list.list.php:916
-#: ../../godmode/extensions.php:262 ../../godmode/users/user_list.php:538
-#: ../../include/functions.php:3188
-#: ../../enterprise/godmode/agentes/plugins_manager.php:123
-#: ../../enterprise/godmode/agentes/plugins_manager.php:161
-#: ../../enterprise/godmode/alerts/alert_events_list.php:790
-#: ../../enterprise/godmode/policies/policy_alerts.php:648
-#: ../../enterprise/include/functions_HA_cluster.php:58
-msgid "Disable"
-msgstr "Desactivar"
-
-#: ../../godmode/alerts/alert_list.list.php:925
-#: ../../godmode/extensions.php:260 ../../godmode/users/user_list.php:540
-#: ../../operation/users/user_edit_notifications.php:63
-#: ../../enterprise/godmode/agentes/plugins_manager.php:123
-#: ../../enterprise/godmode/agentes/plugins_manager.php:155
-#: ../../enterprise/godmode/alerts/alert_events_list.php:798
-#: ../../enterprise/godmode/policies/policy_alerts.php:656
-#: ../../enterprise/include/functions_HA_cluster.php:61
-msgid "Enable"
-msgstr "Activar"
-
-#: ../../godmode/alerts/alert_list.list.php:934
-#: ../../enterprise/godmode/alerts/alert_events_list.php:807
-#: ../../enterprise/godmode/policies/policy_alerts.php:665
-msgid "Set off standby"
-msgstr "Desactivar modo standby"
-
-#: ../../godmode/alerts/alert_list.list.php:943
-#: ../../enterprise/godmode/alerts/alert_events_list.php:816
-#: ../../enterprise/godmode/policies/policy_alerts.php:674
-msgid "Set standby"
-msgstr "Activar modo standby"
-
-#: ../../godmode/alerts/alert_list.php:113
-msgid "Already added"
-msgstr "Ya añadido"
-
-#: ../../godmode/alerts/alert_list.php:167
-msgid "No template specified"
-msgstr "Ninguna plantilla especificada"
-
-#: ../../godmode/alerts/alert_list.php:171
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:71
-msgid "No module specified"
-msgstr "Ningún módulo especificado"
-
-#: ../../godmode/alerts/alert_list.php:270
-#: ../../godmode/massive/massive_add_action_alerts.php:119
-#: ../../godmode/massive/massive_add_alerts.php:140
-#: ../../operation/incidents/incident_detail.php:75
-#: ../../enterprise/godmode/alerts/alert_events_list.php:211
-#: ../../enterprise/godmode/policies/policy_agents.php:226
-msgid "Successfully added"
-msgstr "Añadido correctamente"
-
-#: ../../godmode/alerts/alert_list.php:271
-#: ../../godmode/massive/massive_add_action_alerts.php:60
-#: ../../godmode/massive/massive_add_action_alerts.php:99
-#: ../../godmode/massive/massive_add_action_alerts.php:119
-#: ../../godmode/massive/massive_add_action_alerts.php:122
-#: ../../godmode/massive/massive_add_action_alerts.php:125
-#: ../../godmode/massive/massive_add_alerts.php:141
-#: ../../godmode/massive/massive_delete_action_alerts.php:129
-#: ../../operation/incidents/incident_detail.php:76
-#: ../../enterprise/godmode/alerts/alert_events_list.php:212
-#: ../../enterprise/godmode/policies/policy_agents.php:227
-#: ../../enterprise/godmode/policies/policy_alerts.php:223
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:156
-msgid "Could not be added"
-msgstr "No se pudo añadir"
-
-#: ../../godmode/alerts/alert_list.php:418
-#: ../../godmode/massive/massive_standby_alerts.php:105
-#: ../../enterprise/godmode/alerts/alert_events_list.php:292
-#: ../../enterprise/godmode/policies/policy_alerts.php:136
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:636
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1120
-msgid "Successfully set standby"
-msgstr "Modo standby activado"
-
-#: ../../godmode/alerts/alert_list.php:419
-#: ../../godmode/massive/massive_standby_alerts.php:105
-#: ../../enterprise/godmode/alerts/alert_events_list.php:293
-#: ../../enterprise/godmode/policies/policy_alerts.php:137
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:637
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1121
-msgid "Could not be set standby"
-msgstr "No se pudo establecer el modo standby"
-
-#: ../../godmode/alerts/alert_list.php:449
-#: ../../godmode/massive/massive_standby_alerts.php:87
-#: ../../enterprise/godmode/alerts/alert_events_list.php:312
-#: ../../enterprise/godmode/policies/policy_alerts.php:157
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:628
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1112
-msgid "Successfully set off standby"
-msgstr "Se ha desactivado el modo standby"
-
-#: ../../godmode/alerts/alert_list.php:450
-#: ../../godmode/massive/massive_standby_alerts.php:87
-#: ../../enterprise/godmode/alerts/alert_events_list.php:313
-#: ../../enterprise/godmode/policies/policy_alerts.php:158
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:629
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1113
-msgid "Could not be set off standby"
-msgstr "No se pudo desactivar el modo standby"
-
-#: ../../godmode/alerts/alert_list.php:492
-#: ../../godmode/alerts/alert_view.php:60
-#: ../../godmode/alerts/alert_view.php:61
-msgid "List alerts"
-msgstr "Lista de alertas"
-
-#: ../../godmode/alerts/alert_list.php:496
-msgid "Builder alert"
-msgstr "Creador de alerta"
-
-#: ../../godmode/alerts/alert_list.php:506
-#: ../../godmode/alerts/alert_list.php:508
-#: ../../godmode/users/configure_profile.php:243
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:478
-msgid "Manage alerts"
-msgstr "Gestionar alertas"
-
-#: ../../godmode/alerts/alert_special_days.php:45 ../../godmode/menu.php:207
-#: ../../godmode/menu.php:208
-msgid "Special days list"
-msgstr "Lista de días especiales"
-
-#: ../../godmode/alerts/alert_special_days.php:91
-msgid "Skipped dates: "
-msgstr "Fechas omitidas: "
-
-#: ../../godmode/alerts/alert_special_days.php:111
-msgid "Success to upload iCalendar"
-msgstr "Éxito al cargar iCalendar"
-
-#: ../../godmode/alerts/alert_special_days.php:111
-msgid "Fail to upload iCalendar"
-msgstr "Error al cargar iCalendar"
-
-#: ../../godmode/alerts/alert_special_days.php:143
-msgid "Could not be created, it already exists"
-msgstr "No se ha podido crear, ya existe"
-
-#: ../../godmode/alerts/alert_special_days.php:207
-msgid "Could not be updated, it already exists"
-msgstr "No se ha podido actualizar, ya existe"
-
-#: ../../godmode/alerts/alert_special_days.php:260
-msgid "iCalendar(.ics) file"
-msgstr "Archivo iCalendar (.ics)"
-
-#: ../../godmode/alerts/alert_special_days.php:263
-#: ../../godmode/alerts/configure_alert_special_days.php:81
-msgid "Same day of the week"
-msgstr "Mismo día de la semana"
-
-#: ../../godmode/alerts/alert_special_days.php:265
-#: ../../godmode/alerts/alert_special_days.php:473
-#: ../../godmode/alerts/alert_templates.php:64
-#: ../../godmode/alerts/configure_alert_special_days.php:83
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1130
-#: ../../include/functions_html.php:1215
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1685
-#: ../../enterprise/include/functions_reporting.php:1571
-#: ../../enterprise/include/functions_reporting.php:2164
-#: ../../enterprise/include/functions_reporting.php:2482
-#: ../../enterprise/include/functions_reporting.php:3112
-#: ../../enterprise/include/functions_reporting.php:4086
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95
-msgid "Monday"
-msgstr "Lunes"
-
-#: ../../godmode/alerts/alert_special_days.php:266
-#: ../../godmode/alerts/alert_special_days.php:477
-#: ../../godmode/alerts/alert_templates.php:65
-#: ../../godmode/alerts/configure_alert_special_days.php:84
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1136
-#: ../../include/functions_html.php:1216
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691
-#: ../../enterprise/include/functions_reporting.php:1572
-#: ../../enterprise/include/functions_reporting.php:2165
-#: ../../enterprise/include/functions_reporting.php:2483
-#: ../../enterprise/include/functions_reporting.php:3113
-#: ../../enterprise/include/functions_reporting.php:4087
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96
-msgid "Tuesday"
-msgstr "Martes"
-
-#: ../../godmode/alerts/alert_special_days.php:267
-#: ../../godmode/alerts/alert_special_days.php:481
-#: ../../godmode/alerts/alert_templates.php:66
-#: ../../godmode/alerts/configure_alert_special_days.php:85
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1142
-#: ../../include/functions_html.php:1217
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1697
-#: ../../enterprise/include/functions_reporting.php:1573
-#: ../../enterprise/include/functions_reporting.php:2166
-#: ../../enterprise/include/functions_reporting.php:2484
-#: ../../enterprise/include/functions_reporting.php:3114
-#: ../../enterprise/include/functions_reporting.php:4088
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97
-msgid "Wednesday"
-msgstr "Miércoles"
-
-#: ../../godmode/alerts/alert_special_days.php:268
-#: ../../godmode/alerts/alert_special_days.php:485
-#: ../../godmode/alerts/alert_templates.php:67
-#: ../../godmode/alerts/configure_alert_special_days.php:86
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1148
-#: ../../include/functions_html.php:1218
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1703
-#: ../../enterprise/include/functions_reporting.php:1574
-#: ../../enterprise/include/functions_reporting.php:2167
-#: ../../enterprise/include/functions_reporting.php:2485
-#: ../../enterprise/include/functions_reporting.php:3115
-#: ../../enterprise/include/functions_reporting.php:4089
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98
-msgid "Thursday"
-msgstr "Jueves"
-
-#: ../../godmode/alerts/alert_special_days.php:269
-#: ../../godmode/alerts/alert_special_days.php:489
-#: ../../godmode/alerts/alert_templates.php:68
-#: ../../godmode/alerts/configure_alert_special_days.php:87
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1154
-#: ../../include/functions_html.php:1219
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1709
-#: ../../enterprise/include/functions_reporting.php:1575
-#: ../../enterprise/include/functions_reporting.php:2168
-#: ../../enterprise/include/functions_reporting.php:2486
-#: ../../enterprise/include/functions_reporting.php:3116
-#: ../../enterprise/include/functions_reporting.php:4090
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99
-msgid "Friday"
-msgstr "Viernes"
-
-#: ../../godmode/alerts/alert_special_days.php:270
-#: ../../godmode/alerts/alert_special_days.php:493
-#: ../../godmode/alerts/alert_templates.php:69
-#: ../../godmode/alerts/configure_alert_special_days.php:88
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1160
-#: ../../include/functions_html.php:1220
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1715
-#: ../../enterprise/include/functions_reporting.php:1576
-#: ../../enterprise/include/functions_reporting.php:2169
-#: ../../enterprise/include/functions_reporting.php:2487
-#: ../../enterprise/include/functions_reporting.php:3117
-#: ../../enterprise/include/functions_reporting.php:4091
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100
-msgid "Saturday"
-msgstr "Sábado"
-
-#: ../../godmode/alerts/alert_special_days.php:271
-#: ../../godmode/alerts/alert_special_days.php:497
-#: ../../godmode/alerts/alert_templates.php:70
-#: ../../godmode/alerts/configure_alert_special_days.php:89
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1166
-#: ../../include/functions_html.php:1214
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1721
-#: ../../enterprise/include/functions_reporting.php:1577
-#: ../../enterprise/include/functions_reporting.php:2170
-#: ../../enterprise/include/functions_reporting.php:2488
-#: ../../enterprise/include/functions_reporting.php:3118
-#: ../../enterprise/include/functions_reporting.php:4092
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101
-msgid "Sunday"
-msgstr "Domingo"
-
-#: ../../godmode/alerts/alert_special_days.php:284
-msgid "Overwrite"
-msgstr "Sobrescribir"
-
-#: ../../godmode/alerts/alert_special_days.php:285
-msgid "Check this box, if you want to overwrite existing same days."
-msgstr "Marca esta casilla si quieres sobrescribir los días existentes."
-
-#: ../../godmode/alerts/alert_special_days.php:304
-msgid "Display range: "
-msgstr "Mostrar rango "
-
-#: ../../godmode/alerts/alert_special_days.php:377
-#: ../../enterprise/include/functions_reporting.php:1614
-#: ../../enterprise/include/functions_reporting.php:2525
-#: ../../enterprise/include/functions_reporting.php:3532
-msgid "January"
-msgstr "Enero"
-
-#: ../../godmode/alerts/alert_special_days.php:381
-#: ../../enterprise/include/functions_reporting.php:1618
-#: ../../enterprise/include/functions_reporting.php:2529
-#: ../../enterprise/include/functions_reporting.php:3536
-msgid "February"
-msgstr "Febrero"
-
-#: ../../godmode/alerts/alert_special_days.php:385
-#: ../../enterprise/include/functions_reporting.php:1622
-#: ../../enterprise/include/functions_reporting.php:2533
-#: ../../enterprise/include/functions_reporting.php:3540
-msgid "March"
-msgstr "Marzo"
-
-#: ../../godmode/alerts/alert_special_days.php:389
-#: ../../enterprise/include/functions_reporting.php:1626
-#: ../../enterprise/include/functions_reporting.php:2537
-#: ../../enterprise/include/functions_reporting.php:3544
-msgid "April"
-msgstr "Abril"
-
-#: ../../godmode/alerts/alert_special_days.php:393
-#: ../../enterprise/include/functions_reporting.php:1630
-#: ../../enterprise/include/functions_reporting.php:2541
-#: ../../enterprise/include/functions_reporting.php:3548
-msgid "May"
-msgstr "Mayo"
-
-#: ../../godmode/alerts/alert_special_days.php:397
-#: ../../enterprise/include/functions_reporting.php:1634
-#: ../../enterprise/include/functions_reporting.php:2545
-#: ../../enterprise/include/functions_reporting.php:3552
-msgid "June"
-msgstr "Junio"
-
-#: ../../godmode/alerts/alert_special_days.php:401
-#: ../../enterprise/include/functions_reporting.php:1638
-#: ../../enterprise/include/functions_reporting.php:2549
-#: ../../enterprise/include/functions_reporting.php:3556
-msgid "July"
-msgstr "Julio"
-
-#: ../../godmode/alerts/alert_special_days.php:405
-#: ../../enterprise/include/functions_reporting.php:1642
-#: ../../enterprise/include/functions_reporting.php:2553
-#: ../../enterprise/include/functions_reporting.php:3560
-msgid "August"
-msgstr "Agosto"
-
-#: ../../godmode/alerts/alert_special_days.php:409
-#: ../../enterprise/include/functions_reporting.php:1646
-#: ../../enterprise/include/functions_reporting.php:2557
-#: ../../enterprise/include/functions_reporting.php:3564
-msgid "September"
-msgstr "Septiembre"
-
-#: ../../godmode/alerts/alert_special_days.php:413
-#: ../../enterprise/include/functions_reporting.php:1650
-#: ../../enterprise/include/functions_reporting.php:2561
-#: ../../enterprise/include/functions_reporting.php:3568
-msgid "October"
-msgstr "Octubre"
-
-#: ../../godmode/alerts/alert_special_days.php:417
-#: ../../enterprise/include/functions_reporting.php:1654
-#: ../../enterprise/include/functions_reporting.php:2565
-#: ../../enterprise/include/functions_reporting.php:3572
-msgid "November"
-msgstr "Noviembre"
-
-#: ../../godmode/alerts/alert_special_days.php:421
-#: ../../enterprise/include/functions_reporting.php:1659
-#: ../../enterprise/include/functions_reporting.php:2570
-#: ../../enterprise/include/functions_reporting.php:3577
-msgid "December"
-msgstr "Diciembre"
-
-#: ../../godmode/alerts/alert_special_days.php:470
-msgid "Same as "
-msgstr "Mismo que "
-
-#: ../../godmode/alerts/alert_special_days.php:507
-#: ../../godmode/events/event_edit_filter.php:503
-#: ../../godmode/events/event_edit_filter.php:556
-#: ../../operation/events/events.php:536 ../../operation/events/events.php:608
-#: ../../operation/events/events_list.php:617
-#: ../../operation/events/events_list.php:689
-#: ../../enterprise/godmode/agentes/collection_manager.php:205
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:158
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:146
-#: ../../enterprise/godmode/policies/policy_collections.php:153
-#: ../../enterprise/include/functions_ui.php:120
-#: ../../enterprise/include/functions_ui.php:168
-msgid "Remove"
-msgstr "Eliminar"
-
-#: ../../godmode/alerts/alert_templates.php:61
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92
-msgid "Everyday"
-msgstr "Cada día"
-
-#: ../../godmode/alerts/alert_templates.php:73
-#: ../../include/functions_config.php:1419
-#: ../../enterprise/extensions/ipam/ipam_editor.php:197
-#: ../../enterprise/godmode/setup/setup_history.php:63
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
-msgid "Days"
-msgstr "Días"
-
-#: ../../godmode/alerts/alert_templates.php:73
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
-msgid "Every"
-msgstr "Cada"
-
-#: ../../godmode/alerts/alert_templates.php:84
-#: ../../enterprise/dashboard/widgets/tactical.php:32
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115
-msgid "and"
-msgstr "y"
-
-#: ../../godmode/alerts/alert_templates.php:91
-#: ../../godmode/alerts/alert_view.php:310
-#: ../../godmode/alerts/configure_alert_template.php:622
-#: ../../godmode/snmpconsole/snmp_alert.php:1014
-#: ../../enterprise/godmode/alerts/alert_events.php:519
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:298
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1931
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
-msgid "Time threshold"
-msgstr "Umbral de tiempo"
-
-#: ../../godmode/alerts/alert_templates.php:320
-#: ../../godmode/modules/manage_network_components.php:614
-#: ../../godmode/reporting/reporting_builder.list_items.php:273
-#: ../../godmode/tag/tag.php:193 ../../godmode/tag/tag.php:302
-#: ../../godmode/users/user_list.php:295
-#: ../../operation/agentes/alerts_status.php:449
-#: ../../operation/agentes/status_monitor.php:715
-#: ../../operation/events/events_list.php:1088 ../../operation/tree.php:238
-#: ../../enterprise/godmode/alerts/alert_events_list.php:451
-#: ../../enterprise/godmode/modules/local_components.php:522
-#: ../../enterprise/meta/advanced/policymanager.queue.php:246
-#: ../../enterprise/meta/agentsearch.php:92
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:324
-msgid "Show Options"
-msgstr "Mostrar opciones"
-
-#: ../../godmode/alerts/alert_templates.php:422
-msgid "No alert templates defined"
-msgstr "No hay plantillas de alerta definidas"
-
-#: ../../godmode/alerts/alert_view.php:49
-#: ../../godmode/alerts/alert_view.php:327
-#: ../../include/functions_events.php:4204
-#: ../../include/functions_events.php.orig:4111
-msgid "Alert details"
-msgstr "Detalles de alerta"
-
-#: ../../godmode/alerts/alert_view.php:101
-#: ../../mobile/operation/alerts.php:107 ../../mobile/operation/alerts.php:108
-#: ../../mobile/operation/alerts.php:237 ../../mobile/operation/alerts.php:238
-msgid "Stand by"
-msgstr "En espera"
-
-#: ../../godmode/alerts/alert_view.php:134
-#: ../../godmode/alerts/configure_alert_template.php:1034
-#: ../../include/functions_ui.php:1310
-msgid ""
-"The alert would fire when the value matches "
-msgstr ""
-"La alerta se disparará cuando el valor coincida con ."
-
-#: ../../godmode/alerts/alert_view.php:136 ../../include/functions_ui.php:1313
-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:143
-#: ../../godmode/alerts/configure_alert_template.php:1036
-#: ../../include/functions_ui.php:1299
-msgid "The alert would fire when the value is "
-msgstr ""
-"La alerta se disparará cuando el valor sea ."
-
-#: ../../godmode/alerts/alert_view.php:148
-#: ../../godmode/alerts/configure_alert_template.php:1037
-#: ../../include/functions_ui.php:1304
-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:154
-#: ../../godmode/alerts/configure_alert_template.php:1038
-#: ../../include/functions_ui.php:1322
-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:156 ../../include/functions_ui.php:1325
-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:164
-#: ../../godmode/alerts/configure_alert_template.php:1040
-msgid "The alert would fire when the value is below "
-msgstr ""
-"La alerta se disparará cuando el valor sea inferior a  ."
-
-#: ../../godmode/alerts/alert_view.php:169
-#: ../../godmode/alerts/configure_alert_template.php:1041
-msgid "The alert would fire when the value is above "
-msgstr ""
-"La alerta se disparará cuando el valor sea superior a ."
-
-#: ../../godmode/alerts/alert_view.php:175
-#: ../../godmode/alerts/configure_alert_template.php:1044
-msgid "The alert would fire when the module value changes"
-msgstr "La alerta se disparará cuando los valores de los módulos cambien."
-
-#: ../../godmode/alerts/alert_view.php:177
-#: ../../godmode/alerts/configure_alert_template.php:1045
-msgid "The alert would fire when the module value does not change"
-msgstr "La alerta se disparará cuando los valores de los módulos no cambien."
-
-#: ../../godmode/alerts/alert_view.php:182
-#: ../../godmode/alerts/configure_alert_template.php:1042
-#: ../../include/functions_ui.php:1341
-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:186
-#: ../../godmode/alerts/configure_alert_template.php:1043
-#: ../../include/functions_ui.php:1346
-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:190
-#: ../../godmode/alerts/configure_alert_template.php:1048
-msgid "The alert would fire when the module is in not normal status"
-msgstr "La alerta se disparará cuando el módulo no esté en estado normal"
-
-#: ../../godmode/alerts/alert_view.php:194
-#: ../../godmode/alerts/configure_alert_template.php:1046
-msgid "The alert would fire when the module is in unknown status"
-msgstr "La alerta se disparará cuando el módulo esté en estado desconocido."
-
-#: ../../godmode/alerts/alert_view.php:306
-#: ../../godmode/alerts/configure_alert_template.php:599
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:891
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1927
-msgid "Use special days list"
-msgstr "Utilizar lista de días especiales"
-
-#: ../../godmode/alerts/alert_view.php:314
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1936
-msgid "Number of alerts"
-msgstr "Número de alertas"
-
-#: ../../godmode/alerts/alert_view.php:314
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1090
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2033
-#: ../../include/functions_ui.php:2563
-#: ../../include/functions_reporting_html.php:3675
-#: ../../include/functions_reporting.php:1391
-#: ../../enterprise/dashboard/widgets/top_n.php:547
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:380
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2217
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:729
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1936
-#: ../../enterprise/include/functions_reporting_csv.php:881
-#: ../../enterprise/meta/include/functions_wizard_meta.php:975
-#: ../../enterprise/meta/include/functions_wizard_meta.php:984
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1062
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1071
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1266
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1275
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1504
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1513
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1588
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1597
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1707
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1716
-msgid "Min"
-msgstr "Mín."
-
-#: ../../godmode/alerts/alert_view.php:314
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1092
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2026
-#: ../../include/functions_ui.php:2563
-#: ../../include/functions_reporting_html.php:3674
-#: ../../include/functions_reporting.php:1387
-#: ../../enterprise/dashboard/widgets/top_n.php:543
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:373
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1646
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2210
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:737
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1936
-#: ../../enterprise/include/functions_reporting_csv.php:881
-#: ../../enterprise/meta/include/functions_wizard_meta.php:977
-#: ../../enterprise/meta/include/functions_wizard_meta.php:986
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1064
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1073
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1268
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1277
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1506
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1515
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1590
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1599
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1709
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1718
-msgid "Max"
-msgstr "Máx."
-
-#: ../../godmode/alerts/alert_view.php:328
-msgid "Firing conditions"
-msgstr "Condiciones de disparo"
-
-#: ../../godmode/alerts/alert_view.php:351
-#: ../../godmode/alerts/alert_view.php:371
-msgid "Every time that the alert is fired"
-msgstr "Cada vez que la alerta es disparada"
-
-#: ../../godmode/alerts/alert_view.php:412
-msgid ""
-"Select the desired action and mode to see the Firing/Recovery fields for "
-"this action"
-msgstr ""
-"Selecciona la acción deseada y el modo para ver los campos de "
-"Disparado/Recuperación para dicha acción."
-
-#: ../../godmode/alerts/alert_view.php:415
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2297
-msgid "Select the action"
-msgstr "Seleccione la acción"
-
-#: ../../godmode/alerts/alert_view.php:418
-#: ../../godmode/alerts/configure_alert_action.php:200
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2262
-msgid "Firing"
-msgstr "Disparado"
-
-#: ../../godmode/alerts/alert_view.php:419
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263
-msgid "Recovering"
-msgstr "Recuperado"
-
-#: ../../godmode/alerts/alert_view.php:421
-#: ../../godmode/massive/massive_edit_modules.php:861
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:723
-#: ../../enterprise/godmode/servers/HA_cluster.php:135
-#: ../../enterprise/godmode/services/services.service.php:395
-#: ../../enterprise/operation/services/services.list.php:231
-#: ../../enterprise/operation/services/services.table_services.php:210
-msgid "Mode"
-msgstr "Modo"
-
-#: ../../godmode/alerts/alert_view.php:436
-#: ../../godmode/alerts/alert_view.php:527
-#: ../../godmode/alerts/configure_alert_template.php:836
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2354
-msgid "Firing fields"
-msgstr "Campos de disparado"
-
-#: ../../godmode/alerts/alert_view.php:436
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2356
-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:438
-#: ../../godmode/alerts/alert_view.php:526
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2362
-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:439
-msgid "Template fields"
-msgstr "Campos de la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:439
-msgid "Triggering fields configured in template"
-msgstr "Campos de disparado configurados en la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:440
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2370
-msgid "Action fields"
-msgstr "Campos de la acción"
-
-#: ../../godmode/alerts/alert_view.php:440
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2372
-msgid "Triggering fields configured in action"
-msgstr "Campos de disparado configurados en la acción"
-
-#: ../../godmode/alerts/alert_view.php:442
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375
-msgid "Executed on firing"
-msgstr "Ejecutado en disparado"
-
-#: ../../godmode/alerts/alert_view.php:442
-#: ../../godmode/alerts/alert_view.php:527
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377
-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:504
-#: ../../godmode/alerts/alert_view.php:591
-#: ../../godmode/alerts/configure_alert_action.php:205
-#: ../../godmode/servers/plugin.php:415
-msgid "Command preview"
-msgstr "Vista previa del comando"
-
-#: ../../godmode/alerts/alert_view.php:512
-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:524
-msgid "Recovering fields"
-msgstr "Campos de recuperación"
-
-#: ../../godmode/alerts/alert_view.php:524
-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:528
-msgid "Template recovery fields"
-msgstr "Campos de recuperación de la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:528
-msgid "Recovery fields configured in alert template"
-msgstr "Campos de recuperación configurados en la plantilla de la alerta"
-
-#: ../../godmode/alerts/alert_view.php:529
-msgid "Action recovery fields"
-msgstr "Acción en campos de recuperación"
-
-#: ../../godmode/alerts/alert_view.php:529
-msgid "Recovery fields configured in alert action"
-msgstr "Campos de recuperación configurados en una acción de alerta"
-
-#: ../../godmode/alerts/alert_view.php:530
-msgid "Executed on recovery"
-msgstr "Ejecutado en recuperación"
-
-#: ../../godmode/alerts/alert_view.php:530
-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:60
-#: ../../godmode/alerts/configure_alert_action.php:73
-msgid "Configure alert action"
-msgstr "Configurar acción de alerta"
-
-#: ../../godmode/alerts/configure_alert_action.php:114
-msgid "Update Action"
-msgstr "Actualizar acción"
-
-#: ../../godmode/alerts/configure_alert_action.php:132
-msgid "This action may stop working, if you change its name."
-msgstr "Esta acción podría dejar de funcionar si cambia el nombre."
-
-#: ../../godmode/alerts/configure_alert_action.php:170
-#: ../../godmode/alerts/configure_alert_command.php:155
-msgid "Create Command"
-msgstr "Crear comando"
-
-#: ../../godmode/alerts/configure_alert_action.php:201
-msgid "Recovery"
-msgstr "Recuperación"
-
-#: ../../godmode/alerts/configure_alert_command.php:43
-msgid "Configure alert command"
-msgstr "Configurar comando de alerta"
-
-#: ../../godmode/alerts/configure_alert_command.php:155
-msgid "Update Command"
-msgstr "Actualizar comando"
-
-#: ../../godmode/alerts/configure_alert_command.php:199
+#: ../../godmode/agentes/module_manager.php:347
 #, php-format
-msgid "Field %s description"
-msgstr "Campo de descripción %s"
-
-#: ../../godmode/alerts/configure_alert_command.php:209
-#, php-format
-msgid "Field %s values"
-msgstr "Campos %s valores"
-
-#: ../../godmode/alerts/configure_alert_command.php:225
-msgid "Hide"
-msgstr "Ocultar"
-
-#: ../../godmode/alerts/configure_alert_special_days.php:55
-msgid "Configure special day"
-msgstr "Configurar día especial"
-
-#: ../../godmode/alerts/configure_alert_template.php:69
-#: ../../godmode/alerts/configure_alert_template.php:93
-#: ../../godmode/alerts/configure_alert_template.php:126
-#: ../../include/functions_menu.php:505
-msgid "Configure alert template"
-msgstr "Configurar plantilla de alerta"
-
-#: ../../godmode/alerts/configure_alert_template.php:149
-#: ../../godmode/modules/manage_network_components.php:198
-#: ../../enterprise/godmode/modules/local_components.php:122
-#, php-format
-msgid "Successfully created from %s"
-msgstr "Creado correctamente desde %s"
-
-#: ../../godmode/alerts/configure_alert_template.php:178
-#: ../../godmode/alerts/configure_alert_template.php:182
-#: ../../godmode/alerts/configure_alert_template.php:199
-#: ../../godmode/alerts/configure_alert_template.php:203
-#: ../../godmode/alerts/configure_alert_template.php:220
-#: ../../godmode/alerts/configure_alert_template.php:224
-#: ../../include/functions_config.php:1435
-#: ../../enterprise/godmode/alerts/alert_events.php:120
-#: ../../enterprise/godmode/alerts/alert_events.php:124
-#: ../../enterprise/godmode/alerts/alert_events.php:141
-#: ../../enterprise/godmode/alerts/alert_events.php:145
-#: ../../enterprise/godmode/alerts/alert_events.php:162
-#: ../../enterprise/godmode/alerts/alert_events.php:166
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:60
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:64
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:68
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:86
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:91
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:95
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:113
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:118
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:122
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:140
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:145
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:149
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:170
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:175
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:179
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:198
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:203
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:207
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:225
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:230
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:234
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:250
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:255
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:259
-#: ../../enterprise/godmode/setup/setup_history.php:66
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413
-msgid "Step"
-msgstr "Paso"
-
-#: ../../godmode/alerts/configure_alert_template.php:179
-#: ../../godmode/alerts/configure_alert_template.php:183
-#: ../../godmode/servers/plugin.php:360 ../../godmode/servers/plugin.php:365
-#: ../../godmode/setup/setup.php:89 ../../godmode/setup/setup.php:149
-#: ../../include/ajax/events.php:1225 ../../include/functions_reports.php:752
-#: ../../include/functions_reporting.php:7211
-#: ../../enterprise/godmode/alerts/alert_events.php:121
-#: ../../enterprise/godmode/alerts/alert_events.php:125
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48
-#: ../../enterprise/include/class/Aws.cloud.php:282
-#: ../../enterprise/include/functions_reporting_csv.php:847
-#: ../../enterprise/meta/include/functions_wizard_meta.php:247
-#: ../../enterprise/meta/include/functions_wizard_meta.php:530
-#: ../../enterprise/meta/include/functions_wizard_meta.php:601
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1151
-msgid "General"
-msgstr "General"
-
-#: ../../godmode/alerts/configure_alert_template.php:200
-#: ../../godmode/alerts/configure_alert_template.php:204
-#: ../../enterprise/godmode/alerts/alert_events.php:142
-#: ../../enterprise/godmode/alerts/alert_events.php:146
-msgid "Conditions"
-msgstr "Condiciones"
-
-#: ../../godmode/alerts/configure_alert_template.php:221
-#: ../../godmode/alerts/configure_alert_template.php:225
-#: ../../enterprise/godmode/alerts/alert_events.php:163
-#: ../../enterprise/godmode/alerts/alert_events.php:167
-msgid "Advanced fields"
-msgstr "Campos avanzados"
-
-#: ../../godmode/alerts/configure_alert_template.php:481
-msgid "No template name specified"
-msgstr "Ningún nombre de plantilla especificado"
-
-#: ../../godmode/alerts/configure_alert_template.php:583
-#: ../../enterprise/godmode/alerts/alert_events.php:484
-msgid "Days of week"
-msgstr "Días de la semana"
-
-#: ../../godmode/alerts/configure_alert_template.php:602
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1174
-#: ../../operation/events/events.php:1171
-#: ../../enterprise/godmode/alerts/alert_events.php:500
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1729
-msgid "Time from"
-msgstr "Hora desde"
-
-#: ../../godmode/alerts/configure_alert_template.php:611
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1195
-#: ../../operation/events/events.php:1222
-#: ../../enterprise/godmode/alerts/alert_events.php:509
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747
-msgid "Time to"
-msgstr "Hora hasta"
-
-#: ../../godmode/alerts/configure_alert_template.php:633
-#: ../../godmode/snmpconsole/snmp_alert.php:1006
-#: ../../enterprise/godmode/alerts/alert_events.php:530
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:294
-msgid "Min. number of alerts"
-msgstr "Número mínimo de alertas"
-
-#: ../../godmode/alerts/configure_alert_template.php:643
-msgid "Reset counter for non-sustained alerts"
-msgstr "Reiniciar el contador para las alertas no sostenidas"
-
-#: ../../godmode/alerts/configure_alert_template.php:643
-msgid ""
-"Enable this option if you want the counter to be reset when the alert is not "
-"being fired consecutively, even if it's within the time threshold"
-msgstr ""
-"Activa esta opción si quieres que el contador se reinicie cuando la alerta "
-"no se dispare de forma consecutiva, incluso si está dentro del umbral."
-
-#: ../../godmode/alerts/configure_alert_template.php:646
-#: ../../godmode/snmpconsole/snmp_alert.php:1009
-#: ../../enterprise/godmode/alerts/alert_events.php:539
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:296
-msgid "Max. number of alerts"
-msgstr "Número máximo de alertas"
-
-#: ../../godmode/alerts/configure_alert_template.php:699
-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:703
-msgid "Condition type"
-msgstr "Tipo de condición"
-
-#: ../../godmode/alerts/configure_alert_template.php:718
-msgid "Trigger when matches the value"
-msgstr "Disparar cuando coincida con el valor"
-
-#: ../../godmode/alerts/configure_alert_template.php:741
-msgid "The regular expression is valid"
-msgstr "La expresión regular es válida."
-
-#: ../../godmode/alerts/configure_alert_template.php:751
-msgid "The regular expression is not valid"
-msgstr "La expresión regular no es válida."
-
-#: ../../godmode/alerts/configure_alert_template.php:759
-#: ../../godmode/massive/massive_edit_modules.php:537
-#: ../../godmode/massive/massive_edit_modules.php:606
-#: ../../godmode/massive/massive_edit_modules.php:813
-#: ../../godmode/modules/manage_network_components_form_common.php:169
-#: ../../godmode/modules/manage_network_components_form_common.php:204
-#: ../../include/functions_alerts.php:659
-#: ../../include/functions_treeview.php:92
-#: ../../include/functions_treeview.php:104
-#: ../../include/functions_reporting_html.php:4175
-#: ../../enterprise/dashboard/widgets/top_n.php:99
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:262
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:311
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:388
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:457
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:671
-#: ../../enterprise/godmode/modules/configure_local_component.php:298
-#: ../../enterprise/godmode/modules/configure_local_component.php:333
-msgid "Min."
-msgstr "Mín."
-
-#: ../../godmode/alerts/configure_alert_template.php:817
-msgid "Alert recovery"
-msgstr "Recuperación de alerta"
-
-#: ../../godmode/alerts/configure_alert_template.php:837
-msgid "Recovery fields"
-msgstr "Campos de recuperación"
-
-#: ../../godmode/alerts/configure_alert_template.php:954
-#: ../../godmode/modules/manage_network_components_form_common.php:63
-#: ../../enterprise/godmode/modules/configure_local_component.php:158
-msgid "Wizard level"
-msgstr "Nivel del asistente"
-
-#: ../../godmode/alerts/configure_alert_template.php:956
-msgid "No wizard"
-msgstr "No hay asistente"
-
-#: ../../godmode/alerts/configure_alert_template.php:999
-#: ../../godmode/wizards/HostDevices.class.php:934
-#: ../../include/class/CustomNetScan.class.php:723
-#: ../../enterprise/godmode/alerts/alert_events.php:667
-#: ../../enterprise/godmode/wizards/Cloud.class.php:535
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1736
-#: ../../enterprise/include/class/Aws.cloud.php:1310
-#: ../../enterprise/include/class/MySQL.app.php:906
-#: ../../enterprise/include/class/Omnishell.class.php:829
-#: ../../enterprise/include/class/Oracle.app.php:943
-#: ../../enterprise/include/class/SAP.app.php:752
-#: ../../enterprise/include/class/VMware.app.php:752
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:91
-msgid "Finish"
-msgstr "Finalizar"
-
-#: ../../godmode/alerts/configure_alert_template.php:1005
-#: ../../godmode/alerts/configure_alert_template.php:1012
-#: ../../godmode/wizards/HostDevices.class.php:665
-#: ../../include/class/CustomNetScan.class.php:548
-#: ../../enterprise/godmode/alerts/alert_events.php:670
-#: ../../enterprise/godmode/wizards/Cloud.class.php:535
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:734
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1011
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1596
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1660
-#: ../../enterprise/include/class/Aws.cloud.php:1310
-#: ../../enterprise/include/class/MySQL.app.php:587
-#: ../../enterprise/include/class/Omnishell.class.php:643
-#: ../../enterprise/include/class/Oracle.app.php:568
-#: ../../enterprise/include/class/SAP.app.php:432
-#: ../../enterprise/include/class/VMware.app.php:489
-#: ../../enterprise/include/functions_dashboard.php:999
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:90
-msgid "Next"
-msgstr "Siguiente"
-
-#: ../../godmode/alerts/configure_alert_template.php:1035
-#, php-format
-msgid "The alert would fire when the value doesn\\'t match %s"
-msgstr "La alerta se disparará cuando el valor no coincida con %s"
-
-#: ../../godmode/alerts/configure_alert_template.php:1039
-msgid ""
-"The alert would fire when the value is not between  and "
-msgstr ""
-"La alerta se disparará cuando no esté entre  y "
-"."
-
-#: ../../godmode/alerts/configure_alert_template.php:1047
-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:41
-#: ../../godmode/category/category.php:48
-#: ../../godmode/category/edit_category.php:40
-#: ../../godmode/category/edit_category.php:47
-msgid "List categories"
-msgstr "Lista de categorías"
-
-#: ../../godmode/category/category.php:57
-#: ../../godmode/category/category.php:59
-#: ../../godmode/category/edit_category.php:56
-#: ../../godmode/category/edit_category.php:58
-msgid "Categories configuration"
-msgstr "Configuración de categorías"
-
-#: ../../godmode/category/category.php:69
-msgid "Error deleting category"
-msgstr "Error al eliminar la categoría"
-
-#: ../../godmode/category/category.php:72
-msgid "Successfully deleted category"
-msgstr "Categoría eliminada correctamente"
-
-#: ../../godmode/category/category.php:111
-msgid "Category name"
-msgstr "Nombre de la categoría"
-
-#: ../../godmode/category/category.php:144
-msgid "No categories found"
-msgstr "Ninguna categoría encontrada"
-
-#: ../../godmode/category/category.php:156
-#: ../../godmode/category/edit_category.php:142
-msgid "Create category"
-msgstr "Crear categoría"
-
-#: ../../godmode/category/edit_category.php:56
-msgid "Editor"
-msgstr "Editor"
-
-#: ../../godmode/category/edit_category.php:75
-msgid "Error updating category"
-msgstr "Error al actualizar categoría"
-
-#: ../../godmode/category/edit_category.php:78
-msgid "Successfully updated category"
-msgstr "Categoría actualizada correctamente"
-
-#: ../../godmode/category/edit_category.php:97
-msgid "Error creating category"
-msgstr "Error al crear categoría"
-
-#: ../../godmode/category/edit_category.php:102
-msgid "Successfully created category"
-msgstr "Categoría creada correctamente"
-
-#: ../../godmode/category/edit_category.php:134
-msgid "Update category"
-msgstr "Actualizar categoría"
-
-#: ../../godmode/db/db_main.php:74
-msgid "Current database maintenance setup"
-msgstr "Configuración actual del mantenimiento de la BD"
-
-#: ../../godmode/db/db_main.php:80
-msgid "Database setup"
-msgstr "Configuración de la base de datos"
-
-#: ../../godmode/db/db_main.php:84
-msgid "Max. time before compact data"
-msgstr "Máx. días antes de comprimir datos"
-
-#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92
-#: ../../godmode/setup/setup_visuals.php:1300 ../../include/functions.php:489
-#: ../../include/functions.php:629 ../../include/functions_html.php:1068
-#: ../../enterprise/meta/advanced/metasetup.visual.php:227
-msgid "days"
-msgstr "días"
-
-#: ../../godmode/db/db_main.php:90
-msgid "Max. time before purge"
-msgstr "Máx. días antes de purga de datos"
-
-#: ../../godmode/db/db_main.php:98
-#: ../../include/class/Diagnostics.class.php:225
-msgid "Database size stats"
-msgstr "Tamaño de estadísticas de la base de datos"
-
-#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:745
-#: ../../include/class/Diagnostics.class.php:540
-#: ../../include/functions_reporting_html.php:4539
-#: ../../include/functions_reporting.php:9105
-#: ../../mobile/operation/groups.php:137 ../../operation/tree.php:355
-#: ../../enterprise/dashboard/widgets/tree_view.php:240
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/operation/services/services.treeview_services.php:179
-msgid "Total agents"
-msgstr "Agentes totales"
-
-#: ../../godmode/db/db_main.php:108
-#: ../../include/class/Diagnostics.class.php:560
-#: ../../include/functions_reporting.php:11514
-msgid "Total events"
-msgstr "Total de eventos"
-
-#: ../../godmode/db/db_main.php:114
-msgid "Total data items (tagente_datos)"
-msgstr "Total de elementos de datos (tagente_datos)"
-
-#: ../../godmode/db/db_main.php:127
-msgid "Total log4x items (tagente_datos_log4x)"
-msgstr "Total elementos Log4x (tagente_datos_log4x)"
-
-#: ../../godmode/db/db_main.php:140
-msgid "Total data string items (tagente_datos_string)"
-msgstr "Total de elementos de cadenas de datos (tagente_datos_string)"
-
-#: ../../godmode/db/db_main.php:146
-msgid "Total modules configured"
-msgstr "Módulos totales configurados"
-
-#: ../../godmode/db/db_main.php:154
-msgid "Total agent access records"
-msgstr "Total de registros de acceso del agente"
-
-#: ../../godmode/db/db_main.php:166
-msgid "Database sanity"
-msgstr "Estado de la BD"
-
-#: ../../godmode/db/db_main.php:170
-msgid "Total uknown agents"
-msgstr "Total de agentes desconocidos"
-
-#: ../../godmode/db/db_main.php:176
-msgid "Total non-init modules"
-msgstr "Total de módulos no iniciados"
-
-#: ../../godmode/db/db_main.php:185
-msgid "Last time on DB maintance"
-msgstr "Última vez en mantenimiento de base de datos"
-
-#: ../../godmode/db/db_main.php:189
-#: ../../godmode/snmpconsole/snmp_alert.php:1316
-#: ../../include/functions_cron.php:686
-#: ../../include/functions_treeview.php:625 ../../include/functions_ui.php:538
-#: ../../operation/agentes/estado_generalagente.php:303
-#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362
-#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479
-#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1772
-#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1773
-#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1774
-#: ../../enterprise/extensions/ipam/ipam_ajax.php:291
-#: ../../enterprise/extensions/ipam/ipam_list.php:169
-#: ../../enterprise/include/functions_tasklist.php:439
-msgid "Never"
-msgstr "Nunca"
-
-#: ../../godmode/db/db_main.php:208
-#, php-format
-msgid ""
-"Please make sure your %s Server settings are correct and that the database "
-"maintenance daemon is running. It's very important to keep your database up "
-"to date in order to get the best performance and results from %s."
-msgstr ""
-"Asegúrese de que la configuración del servidor de %s es correcta y que el "
-"demonio de mantenimiento de la base de datos está en ejecución. Es muy "
-"importante tener la base de datos actualizada para que el funcionamiento y "
-"los resultados de %s sean óptimos."
-
-#: ../../godmode/events/custom_events.php:74
-#: ../../enterprise/meta/event/custom_events.php:205
-msgid "Show event fields"
-msgstr "Mostrar campos de eventos"
-
-#: ../../godmode/events/custom_events.php:76
-msgid "Load the fields from previous events"
-msgstr "Cargar los archivos de eventos previos"
-
-#: ../../godmode/events/custom_events.php:76
-msgid "Event fields will be loaded. Do you want to continue?"
-msgstr "Se cargarán los archivos de eventos. ¿Deseas continuar?"
-
-#: ../../godmode/events/custom_events.php:94
-#: ../../include/functions_events.php:226
-#: ../../include/functions_events.php.orig:224
-msgid "Event Id"
-msgstr "Id de evento"
-
-#: ../../godmode/events/custom_events.php:95
-#: ../../include/functions_events.php:229
-#: ../../include/functions_events.php:6006
-#: ../../include/functions_events.php.orig:227
-#: ../../include/functions_events.php.orig:5910
-#: ../../mobile/operation/events.php:124
-#: ../../operation/events/events.build_table.php:172
-msgid "Event Name"
-msgstr "Nombre del evento"
-
-#: ../../godmode/events/custom_events.php:96
-#: ../../include/functions_events.php:232
-#: ../../include/functions_events.php.orig:230
-#: ../../operation/events/events.php:1606
-msgid "Agent ID"
-msgstr "ID de agente"
-
-#: ../../godmode/events/custom_events.php:97
-msgid "Agent Name"
-msgstr "Nombre de agente"
-
-#: ../../godmode/events/custom_events.php:102
-#: ../../include/functions_events.php:253
-#: ../../include/functions_events.php.orig:251
-#: ../../operation/events/events.build_table.php:232
-msgid "Event Type"
-msgstr "Tipo de evento"
-
-#: ../../godmode/events/custom_events.php:103
-#: ../../include/functions_events.php:256
-#: ../../include/functions_events.php.orig:254
-#: ../../operation/events/events.build_table.php:243
-msgid "Module Name"
-msgstr "Nombre del módulo"
-
-#: ../../godmode/events/custom_events.php:105
-#: ../../godmode/events/event_edit_filter.php:298
-#: ../../godmode/events/event_filter.php:125
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2339
-#: ../../include/functions_snmp.php:335 ../../include/functions_events.php:199
-#: ../../include/functions_events.php:262
-#: ../../include/functions_events.php:2380
-#: ../../include/functions_events.php:4548
-#: ../../include/functions_events.php:6063
-#: ../../include/functions_events.php.orig:197
-#: ../../include/functions_events.php.orig:260
-#: ../../include/functions_events.php.orig:2286
-#: ../../include/functions_events.php.orig:4442
-#: ../../include/functions_events.php.orig:5967
-#: ../../include/functions_reporting_html.php:966
-#: ../../include/functions_reporting_html.php:974
-#: ../../include/functions_reporting_html.php:1185
-#: ../../include/functions_reporting_html.php:1193
-#: ../../include/functions_reporting_html.php:1964
-#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398
-#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:690
-#: ../../mobile/operation/events.php:691
-#: ../../operation/events/events.build_table.php:263
-#: ../../operation/events/events.php:966
-#: ../../operation/events/events_list.php:939
-#: ../../operation/snmpconsole/snmp_view.php:548
-#: ../../enterprise/dashboard/widgets/events_list.php:76
-#: ../../enterprise/godmode/alerts/configure_alert_rule.php:172
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2538
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:595
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:340
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72
-#: ../../enterprise/include/functions_events.php:137
-#: ../../enterprise/include/functions_reporting.php:1849
-#: ../../enterprise/meta/include/functions_events_meta.php:98
-msgid "Severity"
-msgstr "Gravedad"
-
-#: ../../godmode/events/custom_events.php:106
-#: ../../godmode/events/event_edit_filter.php:599
-#: ../../godmode/wizards/HostDevices.class.php:805
-#: ../../include/class/CustomNetScan.class.php:467
-#: ../../include/functions_events.php:200
-#: ../../include/functions_events.php:265
-#: ../../include/functions_events.php:3485
-#: ../../include/functions_events.php:6069
-#: ../../include/functions_events.php:6455
-#: ../../include/functions_events.php.orig:198
-#: ../../include/functions_events.php.orig:263
-#: ../../include/functions_events.php.orig:3391
-#: ../../include/functions_events.php.orig:5973
-#: ../../include/functions_events.php.orig:6359
-#: ../../operation/events/events.build_table.php:273
-#: ../../operation/events/events.build_table.php:699
-#: ../../operation/events/events.php:1017
-#: ../../operation/events/events_list.php:989
-#: ../../enterprise/meta/include/functions_events_meta.php:102
-msgid "Comment"
-msgstr "Comentar"
-
-#: ../../godmode/events/custom_events.php:109
-#: ../../include/functions_events.php:274
-#: ../../include/functions_events.php.orig:272
-msgid "Extra Id"
-msgstr "ID extra"
-
-#: ../../godmode/events/custom_events.php:111
-#: ../../include/functions_events.php:205
-#: ../../include/functions_events.php:280
-#: ../../include/functions_events.php:6093
-#: ../../include/functions_events.php.orig:203
-#: ../../include/functions_events.php.orig:278
-#: ../../include/functions_events.php.orig:5997
-#: ../../operation/events/events.build_table.php:313
-#: ../../enterprise/meta/include/functions_events_meta.php:122
-msgid "ACK Timestamp"
-msgstr "ACK Marca temporal"
-
-#: ../../godmode/events/custom_events.php:112
-#: ../../include/functions_events.php:206
-#: ../../include/functions_events.php:283
-#: ../../include/functions_events.php:4263
-#: ../../include/functions_events.php:6099
-#: ../../include/functions_events.php.orig:204
-#: ../../include/functions_events.php.orig:281
-#: ../../include/functions_events.php.orig:4170
-#: ../../include/functions_events.php.orig:6003
-#: ../../operation/events/events.build_table.php:323
-#: ../../operation/events/events.php:2479
-#: ../../enterprise/meta/include/functions_events_meta.php:126
-msgid "Instructions"
-msgstr "Instrucciones"
-
-#: ../../godmode/events/custom_events.php:113
-#: ../../include/functions_events.php:286
-#: ../../include/functions_events.php.orig:284
-msgid "Server Name"
-msgstr "Nombre del servidor"
-
-#: ../../godmode/events/custom_events.php:115
-#: ../../godmode/massive/massive_delete_modules.php:412
-#: ../../godmode/massive/massive_edit_modules.php:355
-#: ../../include/functions_events.php:292
-#: ../../include/functions_events.php.orig:290
-#: ../../operation/events/events.build_table.php:340
-msgid "Module Status"
-msgstr "Estado de módulo"
-
-#: ../../godmode/events/custom_events.php:116
-#: ../../include/functions_events.php:301
-#: ../../include/functions_events.php.orig:299
-msgid "Severity mini"
-msgstr "Prioridad baja"
-
-#: ../../godmode/events/event_edit_filter.php:181
-#: ../../godmode/modules/manage_nc_groups.php:93
-#: ../../godmode/netflow/nf_edit_form.php:118
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:123
-msgid "Not updated. Blank name"
-msgstr "No actualizado; nombre en blanco"
-
-#: ../../godmode/events/event_edit_filter.php:192
-#: ../../godmode/modules/manage_nc_groups.php:112
-#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:100
-msgid "Not updated. Error updating data"
-msgstr "No se ha podido actualizar. Error al actualizar los datos."
-
-#: ../../godmode/events/event_edit_filter.php:221
-msgid "Update Filter"
-msgstr "Actualizar el filtro"
-
-#: ../../godmode/events/event_edit_filter.php:223
-msgid "Create Filter"
-msgstr "Crear filtro"
-
-#: ../../godmode/events/event_edit_filter.php:233
-#: ../../include/ajax/custom_fields.php:561
-#: ../../include/ajax/custom_fields.php:608
-#: ../../include/ajax/custom_fields.php:652 ../../include/ajax/events.php:556
-#: ../../operation/events/events_list.php:421
-msgid "Filter name"
-msgstr "Nombre del filtro"
-
-#: ../../godmode/events/event_edit_filter.php:236
-msgid "Save in group"
-msgstr "Guardar en grupo"
-
-#: ../../godmode/events/event_edit_filter.php:236
-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:281
-#: ../../godmode/massive/massive_copy_modules.php:103
-#: ../../godmode/massive/massive_copy_modules.php:263
-#: ../../godmode/massive/massive_delete_agents.php:140
-#: ../../godmode/massive/massive_delete_modules.php:398
-#: ../../godmode/massive/massive_delete_modules.php:419
-#: ../../godmode/massive/massive_edit_agents.php:427
-#: ../../godmode/massive/massive_edit_modules.php:362
-#: ../../godmode/massive/massive_edit_modules.php:447
-#: ../../include/functions.php:1274 ../../include/functions_events.php:3051
-#: ../../include/functions_events.php.orig:2957
-#: ../../mobile/operation/modules.php:53
-#: ../../operation/agentes/estado_agente.php:234
-#: ../../operation/agentes/status_monitor.php:384
-#: ../../operation/events/events.php:883
-#: ../../operation/events/events_list.php:928
-#: ../../enterprise/dashboard/widgets/events_list.php:35
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:106
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:223
-#: ../../enterprise/operation/agentes/tag_view.php:109
-msgid "Not normal"
-msgstr "No normal"
-
-#: ../../godmode/events/event_edit_filter.php:283
-#: ../../godmode/events/event_filter.php:123
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2366
-#: ../../include/functions_events.php:196
-#: ../../include/functions_events.php:6044
-#: ../../include/functions_events.php.orig:194
-#: ../../include/functions_events.php.orig:5948
-#: ../../operation/events/events.php:893
-#: ../../operation/events/events_list.php:923
-#: ../../enterprise/dashboard/widgets/events_list.php:39
-#: ../../enterprise/godmode/alerts/configure_alert_rule.php:248
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2565
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:621
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1208
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1006
-#: ../../enterprise/include/functions_events.php:127
-#: ../../enterprise/meta/include/functions_events_meta.php:86
-msgid "Event type"
-msgstr "Tipo de evento"
-
-#: ../../godmode/events/event_edit_filter.php:316
-#: ../../godmode/events/event_filter.php:124
-#: ../../operation/events/events.php:907 ../../operation/events/events.php:1382
-#: ../../operation/events/events_list.php:956
-#: ../../enterprise/dashboard/widgets/events_list.php:60
-#: ../../enterprise/include/functions_events.php:107
-msgid "Event status"
-msgstr "Estado del evento"
-
-#: ../../godmode/events/event_edit_filter.php:327
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2650
-#: ../../godmode/snmpconsole/snmp_alert.php:1109
-#: ../../include/ajax/module.php:247
-#: ../../include/class/CredentialStore.class.php:773
-#: ../../mobile/operation/agents.php:238 ../../mobile/operation/alerts.php:222
-#: ../../mobile/operation/events.php:700 ../../mobile/operation/modules.php:293
-#: ../../operation/events/events.php:944
-#: ../../operation/events/events_list.php:753
-#: ../../operation/snmpconsole/snmp_view.php:576
-#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1446
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:180
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:242
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:718
-#: ../../enterprise/include/functions_events.php:117
-msgid "Free search"
-msgstr "Búsqueda libre"
-
-#: ../../godmode/events/event_edit_filter.php:337
-#: ../../operation/events/events.php:1038
-#: ../../operation/events/events_list.php:755
-#: ../../enterprise/meta/agentsearch.php:33
-#: ../../enterprise/meta/agentsearch.php:39
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:258
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:609
-msgid "Agent search"
-msgstr "Búsqueda de agente"
-
-#: ../../godmode/events/event_edit_filter.php:359
-#: ../../godmode/setup/setup_visuals.php:60
-#: ../../godmode/users/configure_user.php:882
-#: ../../include/functions_config.php:912
-#: ../../operation/events/events_list.php:838
-#: ../../operation/snmpconsole/snmp_view.php:531
-#: ../../operation/users/user_edit.php:290
-#: ../../enterprise/meta/advanced/metasetup.visual.php:140
-#: ../../enterprise/meta/include/functions_meta.php:1388
-msgid "Block size for pagination"
-msgstr "Tamaño de bloque para la paginación"
-
-#: ../../godmode/events/event_edit_filter.php:380
-#: ../../operation/events/events.php:1089
-#: ../../operation/events/events_list.php:776
-#: ../../enterprise/include/functions_events.php:168
-msgid "User ack."
-msgstr "Validación del usuario"
-
-#: ../../godmode/events/event_edit_filter.php:380
-msgid "Choose between the users who have validated an event. "
-msgstr "Escoge entre los usuarios que tienen validado un evento. "
-
-#: ../../godmode/events/event_edit_filter.php:402
-#: ../../operation/events/events.php:927
-#: ../../operation/events/events_list.php:969
-#: ../../enterprise/godmode/setup/setup.php:168
-msgid "All events"
-msgstr "Todos los eventos"
-
-#: ../../godmode/events/event_edit_filter.php:403
-#: ../../operation/events/events.php:928 ../../operation/events/events.php:1432
-#: ../../operation/events/events_list.php:970
-msgid "Group events"
-msgstr "Eventos agrupados"
-
-#: ../../godmode/events/event_edit_filter.php:415
-#: ../../operation/events/events.php:1147
-#: ../../operation/events/events_list.php:857
-#: ../../enterprise/include/functions_events.php:178
-msgid "Date from"
-msgstr "Fecha desde"
-
-#: ../../godmode/events/event_edit_filter.php:418
-#: ../../operation/events/events.php:1198
-#: ../../operation/events/events_list.php:861
-#: ../../enterprise/include/functions_events.php:188
-msgid "Date to"
-msgstr "Fecha hasta"
-
-#: ../../godmode/events/event_edit_filter.php:459
-#: ../../operation/events/events.php:1230
-#: ../../operation/events/events.php:1233
-#: ../../operation/events/events_list.php:878
-#: ../../operation/events/events_list.php:881
-#: ../../enterprise/include/functions_events.php:251
-msgid "Events with following tags"
-msgstr "Eventos con las siguientes etiquetas"
-
-#: ../../godmode/events/event_edit_filter.php:512
-#: ../../operation/events/events.php:1231
-#: ../../operation/events/events.php:1234
-#: ../../operation/events/events_list.php:879
-#: ../../operation/events/events_list.php:882
-#: ../../enterprise/include/functions_events.php:273
-msgid "Events without following tags"
-msgstr "Eventos sin las siguientes etiquetas"
-
-#: ../../godmode/events/event_edit_filter.php:564
-#: ../../operation/events/events.php:1106
-#: ../../operation/events/events_list.php:823
-#: ../../enterprise/include/functions_events.php:208
-msgid "Alert events"
-msgstr "Eventos de la alerta"
-
-#: ../../godmode/events/event_edit_filter.php:568
-#: ../../operation/events/events.php:1096
-#: ../../operation/events/events_list.php:826
-msgid "Filter alert events"
-msgstr "Filtrar eventos de alertas"
-
-#: ../../godmode/events/event_edit_filter.php:569
-#: ../../operation/events/events.php:1097
-#: ../../operation/events/events_list.php:827
-msgid "Only alert events"
-msgstr "Solo eventos de alertas"
-
-#: ../../godmode/events/event_edit_filter.php:580
-#: ../../operation/events/events.php:1055
-#: ../../operation/events/events_list.php:795
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:185
-msgid "Module search"
-msgstr "Búsqueda por módulo"
-
-#: ../../godmode/events/event_edit_filter.php:596
-#: ../../include/functions_events.php:6087
-#: ../../include/functions_events.php.orig:5991
-#: ../../operation/events/events.build_table.php:303
-#: ../../operation/events/events.php:1004
-#: ../../operation/events/events_list.php:987
-msgid "Extra ID"
-msgstr "ID extra"
-
-#: ../../godmode/events/event_edit_filter.php:603
-msgid "Id souce event"
-msgstr "Evento de origen de ID"
-
-#: ../../godmode/events/event_filter.php:179
-#: ../../godmode/netflow/nf_edit.php:187
-msgid "There are no defined filters"
-msgstr "No hay filtros definidos"
-
-#: ../../godmode/events/event_filter.php:189
-#: ../../godmode/netflow/nf_edit.php:192
-#: ../../godmode/netflow/nf_edit_form.php:189
-#: ../../godmode/snmpconsole/snmp_filters.php:37
-#: ../../include/ajax/custom_fields.php:642
-#: ../../enterprise/meta/event/custom_events.php:44
-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:105
-#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1217
-#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1679
-#: ../../enterprise/extensions/ipam/ipam_editor.php:137
-#: ../../enterprise/extensions/ipam/ipam_list.php:137
-msgid "Location"
-msgstr "Ubicación"
-
-#: ../../godmode/events/event_responses.editor.php:105
-msgid "For Command type Modal Window mode is enforced"
-msgstr "Para tipo comando, se aplica el modo ventana modal"
-
-#: ../../godmode/events/event_responses.editor.php:107
-msgid "Modal window"
-msgstr "Ventana modal"
-
-#: ../../godmode/events/event_responses.editor.php:108
-msgid "New window"
-msgstr "Nueva ventana"
-
-#: ../../godmode/events/event_responses.editor.php:121
-#: ../../godmode/reporting/visual_console_builder.wizard.php:180
-#: ../../godmode/setup/gis_step_2.php:278
-#: ../../include/functions_visual_map_editor.php:98
-#: ../../include/functions_visual_map_editor.php:600
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:176
-msgid "Width"
-msgstr "Anchura"
-
-#: ../../godmode/events/event_responses.editor.php:123
-#: ../../godmode/reporting/visual_console_builder.wizard.php:181
-#: ../../godmode/setup/gis_step_2.php:278
-#: ../../include/functions_visual_map_editor.php:605
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:180
-msgid "Height"
-msgstr "Altura"
-
-#: ../../godmode/events/event_responses.editor.php:128
-#: ../../include/ajax/events.php:1681 ../../include/functions_events.php:3593
-#: ../../include/functions_events.php.orig:3499
-#: ../../operation/events/events.php:1569
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:532
-#: ../../enterprise/meta/advanced/cron_main.php:412
-msgid "Parameters"
-msgstr "Parámetros"
-
-#: ../../godmode/events/event_responses.editor.php:180
-msgid "Command timeout (s)"
-msgstr "Límite(s) de tiempo del comando"
-
-#: ../../godmode/events/event_responses.list.php:32
-msgid "No responses found"
-msgstr "No se encontraron respuestas"
-
-#: ../../godmode/events/event_responses.list.php:73
-msgid "Create response"
-msgstr "Crear respuesta"
-
-#: ../../godmode/events/event_responses.php:50
-msgid "Response added succesfully"
-msgstr "Respuesta añadida correctamente"
-
-#: ../../godmode/events/event_responses.php:52
-msgid "Response cannot be added"
-msgstr "La respuesta no se puede añadir."
-
-#: ../../godmode/events/event_responses.php:75
-msgid "Response updated succesfully"
-msgstr "Repuesta actualizada correctamente"
-
-#: ../../godmode/events/event_responses.php:77
-msgid "Response cannot be updated"
-msgstr "La respuesta no se puede actualizar."
-
-#: ../../godmode/events/event_responses.php:87
-msgid "Response deleted succesfully"
-msgstr "Respuesta eliminada correctamente"
-
-#: ../../godmode/events/event_responses.php:89
-msgid "Response cannot be deleted"
-msgstr "La respuesta no se puede eliminar."
-
-#: ../../godmode/events/events.php:37
-#: ../../godmode/users/configure_user.php:841
-#: ../../operation/events/events.php:714
-#: ../../operation/users/user_edit.php:340
-msgid "Event list"
-msgstr "Lista de eventos"
-
-#: ../../godmode/events/events.php:43 ../../godmode/netflow/nf_edit_form.php:53
-msgid "Filter list"
-msgstr "Lista de filtros"
-
-#: ../../godmode/events/events.php:50 ../../godmode/menu.php:230
-#: ../../enterprise/meta/event/custom_events.php:50
-msgid "Event responses"
-msgstr "Respuestas de evento"
-
-#: ../../godmode/events/events.php:72 ../../include/ajax/events.php:1249
-#: ../../enterprise/meta/event/custom_events.php:79
-msgid "Responses"
-msgstr "Respuestas"
-
-#: ../../godmode/events/events.php:88 ../../godmode/events/events.php:96
-#: ../../godmode/users/configure_profile.php:258
-#: ../../operation/events/events.php:740
-msgid "Manage events"
-msgstr "Gestionar eventos"
-
-#: ../../godmode/extensions.php:26
-#: ../../enterprise/meta/general/main_header.php:404
-msgid "Extensions"
-msgstr "Extensiones"
-
-#: ../../godmode/extensions.php:26
-msgid "Defined extensions"
-msgstr "Extensiones definidas"
-
-#: ../../godmode/extensions.php:31
-msgid "There are no extensions defined"
-msgstr "No hay extensiones definidas"
-
-#: ../../godmode/extensions.php:138 ../../godmode/setup/setup.php:199
-#: ../../enterprise/godmode/menu.php:275
-#: ../../enterprise/include/functions_setup.php:40
-#: ../../enterprise/include/functions_setup.php:79
-msgid "Enterprise"
-msgstr "Enterprise"
-
-#: ../../godmode/extensions.php:139
-msgid "Godmode Function"
-msgstr "Función Administrador"
-
-#: ../../godmode/extensions.php:140
-msgid "Godmode Menu"
-msgstr "Menú Administrador"
-
-#: ../../godmode/extensions.php:141
-msgid "Operation Menu"
-msgstr "Menú Operación"
-
-#: ../../godmode/extensions.php:142
-msgid "Operation Function"
-msgstr "Función Operación"
-
-#: ../../godmode/extensions.php:143
-msgid "Login Function"
-msgstr "Función Conexión"
-
-#: ../../godmode/extensions.php:144
-msgid "Agent operation tab"
-msgstr "Pestaña Operaciones de agente"
-
-#: ../../godmode/extensions.php:145
-msgid "Agent godmode tab"
-msgstr "Pestaña Administración de agente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:143
-msgid "Map successfully created"
-msgstr "Mapa creado correctamente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:144
-msgid "Map could not be created"
-msgstr "No se pudo crear el mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:246
-msgid "Map successfully update"
-msgstr "Mapa actualizado correctamente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:247
-msgid "Map could not be updated"
-msgstr "No se pudo actualizar el mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:262
-#: ../../operation/gis_maps/gis_map.php:30
-msgid "GIS Maps list"
-msgstr "Lista de mapas GIS"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:271
-msgid "View GIS"
-msgstr "Ver GIS"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:277
-msgid "GIS Maps builder"
-msgstr "Creador de mapas GIS"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:326
-msgid "Do you want to use the default data from the connection?"
-msgstr "¿Quieres usar los datos que vienen por defecto de la conexión?"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:360
-msgid "The connection"
-msgstr "La conexión"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:360
-msgid "just added previously."
-msgstr "ya ha sido añadido."
-
-#: ../../godmode/gis_maps/configure_gis_map.php:423
-msgid "Map Name"
-msgstr "Nombre del mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:423
-msgid "Descriptive name for the map"
-msgstr "Nombre descriptivo para el mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:442
-msgid "Add Map connection"
-msgstr "Añadir conexión al mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:442
-msgid ""
-"At least one map connection must be defined, it will be possible to change "
-"between the connections in the map"
-msgstr ""
-"Se tiene que definir por lo menos una conexión al mapa. Será posible "
-"intercambiar las conexiones del mapa."
-
-#: ../../godmode/gis_maps/configure_gis_map.php:462
-msgid "Group that owns the map"
-msgstr "Grupo propietario del mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:465
-msgid "Default zoom"
-msgstr "Zoom por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:465
-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:468
-msgid "Center Latitude"
-msgstr "Latitud central"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:471
-msgid "Center Longitude"
-msgstr "Longitud central"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:474
-msgid "Center Altitude"
-msgstr "Altitud central"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:477
-msgid "Default Latitude"
-msgstr "Latitud por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:480
-msgid "Default Longitude"
-msgstr "Longitud por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:483
-msgid "Default Altitude"
-msgstr "Altitud por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:488
-#: ../../godmode/setup/gis_step_2.php:281
-msgid "Layers"
-msgstr "Capas"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:488
-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:497
-msgid "List of layers"
-msgstr "Lista de capas"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:497
-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:498
-msgid "New layer"
-msgstr "Nueva capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:504
-msgid "Layer name"
-msgstr "Nombre de la capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:506
-msgid "Visible"
-msgstr "Visible"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:510
-msgid "Show agents from group"
-msgstr "Mostrar agentes del grupo"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:522
-msgid "Add agent"
-msgstr "Añadir agente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:541
-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:570
-msgid "Use the data of this agent"
-msgstr "Utilice los datos de este agente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:578
-msgid "List of groups to be shown in the layer"
-msgstr "Lista de grupos a mostrar en la capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:585
-msgid "Save Layer"
-msgstr "Guardar capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:601
-#: ../../godmode/gis_maps/configure_gis_map.php:608
-msgid "Save map"
-msgstr "Guardar mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:603
-msgid "Update map"
-msgstr "Actualizar mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:975
-msgid "Using data from"
-msgstr "Utilizando los datos de"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:1133
-msgid "Empty layer names are not supported"
-msgstr "No se admiten nombres de capa vacíos"
-
-#: ../../godmode/groups/configure_group.php:66
-#: ../../godmode/groups/configure_modu_group.php:46
-msgid "There was a problem loading group"
-msgstr "Hubo un error al cargar la configuración del grupo"
-
-#: ../../godmode/groups/configure_group.php:85
-msgid "Update group"
-msgstr "Actualizar grupo"
-
-#: ../../godmode/groups/configure_group.php:87
-#: ../../godmode/groups/group_list.php:683
-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:121
-#: ../../godmode/groups/group_list.php:580
-#: ../../godmode/modules/module_list.php:57
-#: ../../godmode/reporting/visual_console_builder.elements.php:254
-#: ../../godmode/setup/os.builder.php:37
-#: ../../include/functions_visual_map.php:4308
-#: ../../include/functions_visual_map_editor.php:68
-#: ../../include/functions_visual_map_editor.php:1305
-#: ../../enterprise/dashboard/widgets/module_icon.php:110
-#: ../../enterprise/dashboard/widgets/module_status.php:97
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:87
-msgid "Icon"
-msgstr "Icono"
-
-#: ../../godmode/groups/configure_group.php:146
-msgid "You have not access to the parent."
-msgstr "No tienes acceso al padre"
-
-#: ../../godmode/groups/configure_group.php:180
-msgid "Group Password"
-msgstr "Contraseña del grupo"
-
-#: ../../godmode/groups/configure_group.php:188
-msgid "Propagate ACL"
-msgstr "Propagar ACL"
-
-#: ../../godmode/groups/configure_group.php:188
-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:200
-#: ../../include/functions_events.php:4610
-#: ../../include/functions_events.php.orig:4496
-msgid "Contact"
-msgstr "Contacto"
-
-#: ../../godmode/groups/configure_group.php:200
-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:204
-msgid "Information accessible through the _group_other_ macro"
-msgstr "Información accesible a través de  _group_other_ macro"
-
-#: ../../godmode/groups/configure_group.php:210
-#: ../../godmode/users/configure_user.php:807
-#: ../../operation/users/user_edit.php:386
-msgid "Skin"
-msgstr "Apariencia"
-
-#: ../../godmode/groups/configure_group.php:251
-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:28
-msgid "Module group management"
-msgstr "Gestión del grupo de módulos"
-
-#: ../../godmode/groups/group_list.php:259
-msgid "Tree Group view"
-msgstr "Vista de árbol de grupos"
-
-#: ../../godmode/groups/group_list.php:270
-#: ../../godmode/users/configure_user.php:842
-#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:46
-#: ../../operation/users/user_edit.php:341
-#: ../../enterprise/meta/monitoring/group_view.php:55
-msgid "Group view"
-msgstr "Vista de grupo"
-
-#: ../../godmode/groups/group_list.php:281
-msgid "Credential Store"
-msgstr "Almacén de credenciales"
-
-#: ../../godmode/groups/group_list.php:288
-#, php-format
-msgid "Groups defined in %s"
-msgstr "Grupos definidos en %s"
-
-#: ../../godmode/groups/group_list.php:297
-msgid "Credential store"
-msgstr "Almacén de credenciales"
-
-#: ../../godmode/groups/group_list.php:310
-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:369
-#: ../../godmode/groups/modu_group_list.php:101
-msgid "Group successfully created"
-msgstr "Grupo creado correctamente"
-
-#: ../../godmode/groups/group_list.php:371
-#: ../../godmode/groups/modu_group_list.php:104
-msgid "There was a problem creating group"
-msgstr "Ha habido un problema al crear el grupo."
-
-#: ../../godmode/groups/group_list.php:374
-msgid "Each group must have a different name"
-msgstr "Cada grupo debe tener un nombre diferente"
-
-#: ../../godmode/groups/group_list.php:377
-msgid "Group must have a name"
-msgstr "El grupo debe tener un nombre"
-
-#: ../../godmode/groups/group_list.php:433
-#: ../../godmode/groups/modu_group_list.php:137
-msgid "Group successfully updated"
-msgstr "Grupo actualizado correctamente"
-
-#: ../../godmode/groups/group_list.php:435
-#: ../../godmode/groups/modu_group_list.php:140
-msgid "There was a problem modifying group"
-msgstr "Ha habido un problema al modificar el grupo"
-
-#: ../../godmode/groups/group_list.php:468
-#, 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:473
-#: ../../godmode/groups/modu_group_list.php:211
-msgid "Group successfully deleted"
-msgstr "Grupo eliminado correctamente"
-
-#: ../../godmode/groups/group_list.php:475
-#: ../../godmode/groups/modu_group_list.php:209
-msgid "There was a problem deleting group"
-msgstr "Ha habido un problema al borrar el grupo."
-
-#: ../../godmode/groups/group_list.php:518
-#: ../../godmode/groups/group_list.php:676
-msgid "There are no defined groups"
-msgstr "No hay grupos definidos"
-
-#: ../../godmode/groups/group_list.php:641
-msgid ""
-"The child groups will be updated to use the parent id of the deleted group"
-msgstr ""
-"Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado"
-
-#: ../../godmode/groups/group_list.php:738 ../../operation/tree.php:348
-#: ../../enterprise/dashboard/widgets/tree_view.php:233
-#: ../../enterprise/operation/services/services.treeview_services.php:172
-msgid "Found groups"
-msgstr "Grupos encontrados"
-
-#: ../../godmode/groups/group_list.php:746
-#: ../../include/class/Diagnostics.class.php:544 ../../operation/tree.php:356
-#: ../../enterprise/dashboard/widgets/tree_view.php:241
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/operation/services/services.treeview_services.php:180
-msgid "Total modules"
-msgstr "Módulos totales"
-
-#: ../../godmode/groups/group_list.php:747
-#: ../../include/functions_reporting_html.php:1886
-#: ../../include/functions_reporting_html.php:1896
-#: ../../operation/agentes/group_view.php:194 ../../operation/tree.php:357
-#: ../../enterprise/dashboard/widgets/tree_view.php:242
-#: ../../enterprise/include/functions_inventory.php:350
-#: ../../enterprise/include/functions_inventory.php:489
-#: ../../enterprise/meta/monitoring/group_view.php:188
-#: ../../enterprise/operation/agentes/agent_inventory.php:240
-#: ../../enterprise/operation/services/services.treeview_services.php:181
-msgid "Total"
-msgstr "Total"
-
-#: ../../godmode/groups/group_list.php:750
-#: ../../godmode/groups/group_list.php:751
-#: ../../godmode/groups/group_list.php:752
-#: ../../include/functions_graph.php:2466
-#: ../../include/functions_reporting.php:8973
-#: ../../include/functions_reporting.php:8989 ../../operation/tree.php:360
-#: ../../operation/tree.php:361 ../../operation/tree.php:362
-#: ../../enterprise/dashboard/widgets/tree_view.php:245
-#: ../../enterprise/dashboard/widgets/tree_view.php:246
-#: ../../enterprise/dashboard/widgets/tree_view.php:247
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/operation/services/services.treeview_services.php:184
-#: ../../enterprise/operation/services/services.treeview_services.php:185
-#: ../../enterprise/operation/services/services.treeview_services.php:186
-msgid "Fired alerts"
-msgstr "Alertas disparadas"
-
-#: ../../godmode/groups/group_list.php:755 ../../operation/tree.php:365
-#: ../../enterprise/dashboard/widgets/tree_view.php:250
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:523
-#: ../../enterprise/operation/services/services.treeview_services.php:189
-msgid "Critical agents"
-msgstr "Agentes críticos"
-
-#: ../../godmode/groups/group_list.php:756
-#: ../../mobile/operation/groups.php:161 ../../operation/tree.php:366
-#: ../../enterprise/dashboard/widgets/tree_view.php:251
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:592
-#: ../../enterprise/operation/services/services.treeview_services.php:190
-msgid "Critical modules"
-msgstr "Módulos críticos"
-
-#: ../../godmode/groups/group_list.php:760 ../../operation/tree.php:370
-#: ../../enterprise/dashboard/widgets/tree_view.php:255
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:533
-#: ../../enterprise/operation/services/services.treeview_services.php:194
-msgid "Warning agents"
-msgstr "Agentes en estado de advertencia"
-
-#: ../../godmode/groups/group_list.php:761
-#: ../../mobile/operation/groups.php:158 ../../operation/tree.php:371
-#: ../../enterprise/dashboard/widgets/tree_view.php:256
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:602
-#: ../../enterprise/operation/services/services.treeview_services.php:195
-msgid "Warning modules"
-msgstr "Módulos de advertencia"
-
-#: ../../godmode/groups/group_list.php:762
-#: ../../godmode/massive/massive_copy_modules.php:100
-#: ../../godmode/massive/massive_copy_modules.php:260
-#: ../../godmode/massive/massive_delete_agents.php:137
-#: ../../godmode/massive/massive_delete_modules.php:395
-#: ../../godmode/massive/massive_delete_modules.php:416
-#: ../../godmode/massive/massive_edit_agents.php:424
-#: ../../godmode/massive/massive_edit_agents.php:682
-#: ../../godmode/massive/massive_edit_modules.php:359
-#: ../../godmode/massive/massive_edit_modules.php:444
-#: ../../godmode/servers/plugin.php:602
-#: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/class/Diagnostics.class.php:1800
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:388
-#: ../../include/functions.php:1033 ../../include/functions.php:1270
-#: ../../include/functions.php:1273 ../../include/functions.php:1312
-#: ../../include/functions_events.php:3095
-#: ../../include/functions_events.php.orig:3001
-#: ../../include/functions_ui.php:291 ../../include/functions_ui.php:2563
-#: ../../include/functions_graph.php:3482
-#: ../../include/functions_graph.php:3483
-#: ../../include/functions_graph.php:4883
-#: ../../include/functions_reporting_html.php:1899
-#: ../../mobile/operation/agents.php:41 ../../mobile/operation/modules.php:50
-#: ../../operation/agentes/estado_agente.php:231
-#: ../../operation/agentes/estado_monitores.php:516
-#: ../../operation/agentes/group_view.php:198
-#: ../../operation/agentes/group_view.php:203
-#: ../../operation/agentes/status_monitor.php:381
-#: ../../operation/agentes/tactical.php:148
-#: ../../operation/gis_maps/render_view.php:152
-#: ../../operation/netflow/nf_live_view.php:451 ../../operation/tree.php:160
-#: ../../operation/tree.php:204 ../../operation/tree.php:372
-#: ../../enterprise/dashboard/widgets/tree_view.php:70
-#: ../../enterprise/dashboard/widgets/tree_view.php:88
-#: ../../enterprise/dashboard/widgets/tree_view.php:257
-#: ../../enterprise/dashboard/widgets/service_map.php:101
-#: ../../enterprise/dashboard/widgets/system_group_status.php:49
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:48
-#: ../../enterprise/godmode/reporting/cluster_list.php:132
-#: ../../enterprise/godmode/reporting/cluster_list.php:247
-#: ../../enterprise/godmode/reporting/cluster_view.php:344
-#: ../../enterprise/godmode/reporting/cluster_view.php:430
-#: ../../enterprise/godmode/services/services.service.php:415
-#: ../../enterprise/godmode/services/services.service.php:573
-#: ../../enterprise/include/functions_services.php:2316
-#: ../../enterprise/include/functions_login.php:23
-#: ../../enterprise/include/functions_reporting.php:4812
-#: ../../enterprise/meta/advanced/collections.php:51
-#: ../../enterprise/meta/include/functions_wizard_meta.php:974
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1061
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1265
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1285
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1503
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1587
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1706
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1726
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:123
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:220
-#: ../../enterprise/meta/monitoring/group_view.php:192
-#: ../../enterprise/meta/monitoring/group_view.php:198
-#: ../../enterprise/meta/monitoring/tactical.php:240
-#: ../../enterprise/operation/agentes/tag_view.php:106
-#: ../../enterprise/operation/agentes/transactional_map.php:324
-#: ../../enterprise/operation/services/services.list.php:190
-#: ../../enterprise/operation/services/services.list.php:411
-#: ../../enterprise/operation/services/services.list.php:478
-#: ../../enterprise/operation/services/services.service.php:170
-#: ../../enterprise/operation/services/services.service.php:225
-#: ../../enterprise/operation/services/services.service_map.php:171
-#: ../../enterprise/operation/services/services.table_services.php:169
-#: ../../enterprise/operation/services/services.treeview_services.php:196
-msgid "Warning"
-msgstr "Advertencia"
-
-#: ../../godmode/groups/group_list.php:765 ../../operation/tree.php:375
-#: ../../enterprise/dashboard/widgets/tree_view.php:260
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:553
-#: ../../enterprise/operation/services/services.treeview_services.php:199
-msgid "Unknown agents"
-msgstr "Agentes en desconocido"
-
-#: ../../godmode/groups/group_list.php:766
-#: ../../mobile/operation/groups.php:149 ../../operation/tree.php:376
-#: ../../enterprise/dashboard/widgets/tree_view.php:261
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:622
-#: ../../enterprise/operation/services/services.treeview_services.php:200
-msgid "Unknown modules"
-msgstr "Módulos desconocidos"
-
-#: ../../godmode/groups/group_list.php:770 ../../operation/tree.php:380
-#: ../../enterprise/dashboard/widgets/tree_view.php:265
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:563
-#: ../../enterprise/operation/services/services.treeview_services.php:204
-msgid "Not init agents"
-msgstr "Agentes no iniciados"
-
-#: ../../godmode/groups/group_list.php:771
-#: ../../mobile/operation/groups.php:152 ../../operation/tree.php:381
-#: ../../enterprise/dashboard/widgets/tree_view.php:266
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:632
-#: ../../enterprise/operation/services/services.treeview_services.php:205
-msgid "Not init modules"
-msgstr "Módulos no iniciados"
-
-#: ../../godmode/groups/group_list.php:772
-#: ../../godmode/massive/massive_copy_modules.php:104
-#: ../../godmode/massive/massive_copy_modules.php:264
-#: ../../godmode/massive/massive_delete_agents.php:141
-#: ../../godmode/massive/massive_delete_modules.php:399
-#: ../../godmode/massive/massive_delete_modules.php:420
-#: ../../godmode/massive/massive_edit_agents.php:428
-#: ../../godmode/massive/massive_edit_modules.php:363
-#: ../../godmode/massive/massive_edit_modules.php:448
-#: ../../include/functions_reporting_html.php:592
-#: ../../include/functions_reporting_html.php:1901
-#: ../../include/functions_reporting_html.php:3408
-#: ../../mobile/operation/modules.php:55
-#: ../../operation/agentes/estado_agente.php:235
-#: ../../operation/agentes/group_view.php:196
-#: ../../operation/agentes/group_view.php:201
-#: ../../operation/agentes/status_monitor.php:386
-#: ../../operation/agentes/tactical.php:151 ../../operation/tree.php:163
-#: ../../operation/tree.php:207 ../../operation/tree.php:382
-#: ../../enterprise/dashboard/widgets/tree_view.php:73
-#: ../../enterprise/dashboard/widgets/tree_view.php:91
-#: ../../enterprise/dashboard/widgets/tree_view.php:267
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:107
-#: ../../enterprise/godmode/reporting/cluster_list.php:135
-#: ../../enterprise/godmode/reporting/cluster_list.php:256
-#: ../../enterprise/godmode/reporting/cluster_view.php:299
-#: ../../enterprise/godmode/reporting/cluster_view.php:362
-#: ../../enterprise/godmode/reporting/cluster_view.php:463
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:225
-#: ../../enterprise/meta/monitoring/group_view.php:190
-#: ../../enterprise/meta/monitoring/group_view.php:196
-#: ../../enterprise/meta/monitoring/tactical.php:243
-#: ../../enterprise/operation/agentes/tag_view.php:111
-#: ../../enterprise/operation/agentes/transactional_map.php:336
-#: ../../enterprise/operation/services/services.treeview_services.php:206
-msgid "Not init"
-msgstr "No iniciados"
-
-#: ../../godmode/groups/group_list.php:775 ../../operation/tree.php:385
-#: ../../enterprise/dashboard/widgets/tree_view.php:270
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:543
-#: ../../enterprise/operation/services/services.treeview_services.php:209
-msgid "Normal agents"
-msgstr "Agentes en normal"
-
-#: ../../godmode/groups/group_list.php:776
-#: ../../mobile/operation/groups.php:155 ../../operation/tree.php:386
-#: ../../enterprise/dashboard/widgets/tree_view.php:271
-#: ../../enterprise/include/functions_reporting_csv.php:838
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:612
-#: ../../enterprise/operation/services/services.treeview_services.php:210
-msgid "Normal modules"
-msgstr "Módulos normales"
-
-#: ../../godmode/groups/group_list.php:777
-#: ../../godmode/massive/massive_copy_modules.php:99
-#: ../../godmode/massive/massive_copy_modules.php:259
-#: ../../godmode/massive/massive_delete_agents.php:136
-#: ../../godmode/massive/massive_delete_modules.php:394
-#: ../../godmode/massive/massive_delete_modules.php:415
-#: ../../godmode/massive/massive_edit_agents.php:423
-#: ../../godmode/massive/massive_edit_modules.php:358
-#: ../../godmode/massive/massive_edit_modules.php:443
-#: ../../godmode/netflow/nf_edit_form.php:225
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:393
-#: ../../include/functions.php:1029 ../../include/functions.php:1268
-#: ../../include/functions.php:1275 ../../include/functions.php:1308
-#: ../../include/functions_events.php:3091
-#: ../../include/functions_events.php.orig:2997
-#: ../../include/functions_graph.php:3472
-#: ../../include/functions_graph.php:3473
-#: ../../include/functions_graph.php:4879
-#: ../../include/functions_reporting_html.php:1897
-#: ../../mobile/operation/agents.php:40 ../../mobile/operation/modules.php:49
-#: ../../operation/agentes/estado_agente.php:230
-#: ../../operation/agentes/estado_monitores.php:514
-#: ../../operation/agentes/group_view.php:197
-#: ../../operation/agentes/group_view.php:202
-#: ../../operation/agentes/status_monitor.php:380
-#: ../../operation/agentes/tactical.php:149
-#: ../../operation/netflow/nf_live_view.php:384 ../../operation/tree.php:159
-#: ../../operation/tree.php:203 ../../operation/tree.php:387
-#: ../../enterprise/dashboard/widgets/tree_view.php:69
-#: ../../enterprise/dashboard/widgets/tree_view.php:87
-#: ../../enterprise/dashboard/widgets/tree_view.php:272
-#: ../../enterprise/dashboard/widgets/system_group_status.php:48
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102
-#: ../../enterprise/godmode/reporting/cluster_list.php:131
-#: ../../enterprise/godmode/reporting/cluster_list.php:251
-#: ../../enterprise/godmode/reporting/cluster_view.php:368
-#: ../../enterprise/godmode/reporting/cluster_view.php:474
-#: ../../enterprise/include/functions_services.php:2304
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:113
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:219
-#: ../../enterprise/meta/monitoring/group_view.php:191
-#: ../../enterprise/meta/monitoring/group_view.php:197
-#: ../../enterprise/meta/monitoring/tactical.php:241
-#: ../../enterprise/operation/agentes/tag_view.php:105
-#: ../../enterprise/operation/services/services.treeview_services.php:211
-msgid "Normal"
-msgstr "Normal"
-
-#: ../../godmode/groups/modu_group_list.php:71
-#, php-format
-msgid "Module groups defined in %s"
-msgstr "Grupos de módulos definidos en %s"
-
-#: ../../godmode/groups/modu_group_list.php:109
-#: ../../godmode/groups/modu_group_list.php:145
-#: ../../include/functions_api.php:9510
-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:113
-#: ../../godmode/groups/modu_group_list.php:149
-#: ../../include/functions_api.php:9503
-msgid "Module group must have a name"
-msgstr "El grupo de módulos debe tener un nombre"
-
-#: ../../godmode/groups/modu_group_list.php:265
-msgid "There are no defined module groups"
-msgstr "No hay grupos de módulos definidos"
-
-#: ../../godmode/groups/modu_group_list.php:273
-msgid "Create module group"
-msgstr "Crear grupo de módulos"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:60
-#: ../../godmode/massive/massive_add_alerts.php:100
-#: ../../godmode/massive/massive_delete_agents.php:35
-#: ../../godmode/massive/massive_delete_alerts.php:98
-#: ../../godmode/massive/massive_delete_modules.php:72
-#: ../../godmode/massive/massive_edit_agents.php:136
-#: ../../include/functions_visual_map.php:2655
-#: ../../include/functions_visual_map.php:3042
-#: ../../enterprise/godmode/policies/policy_agents.php:930
-msgid "No agents selected"
-msgstr "No se seleccionó ningún agente"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:99
-msgid "No alerts selected"
-msgstr "No se seleccionó ninguna alerta"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:125
-msgid "No actions selected"
-msgstr "No hay acciones seleccionadas"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:168
-#: ../../godmode/massive/massive_add_alerts.php:200
-#: ../../godmode/massive/massive_copy_modules.php:96
-#: ../../godmode/massive/massive_copy_modules.php:249
-#: ../../godmode/massive/massive_delete_action_alerts.php:175
-#: ../../godmode/massive/massive_delete_agents.php:126
-#: ../../godmode/massive/massive_delete_alerts.php:268
-#: ../../godmode/massive/massive_delete_modules.php:362
-#: ../../godmode/massive/massive_edit_agents.php:412
-#: ../../godmode/massive/massive_edit_modules.php:343
-#: ../../godmode/massive/massive_enable_disable_alerts.php:148
-#: ../../godmode/massive/massive_standby_alerts.php:161
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:98
-#: ../../enterprise/godmode/policies/policy_agents.php:470
-#: ../../enterprise/godmode/policies/policy_agents.php:503
-#: ../../enterprise/godmode/policies/policy_agents.php:542
-#: ../../enterprise/godmode/policies/policy_agents.php:687
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:385
-msgid "Group recursion"
-msgstr "Recursión de grupos"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:171
-#: ../../godmode/massive/massive_delete_action_alerts.php:184
-msgid "Agents with templates"
-msgstr "Agentes con plantillas"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:182
-#: ../../godmode/massive/massive_add_alerts.php:232
-#: ../../godmode/massive/massive_delete_action_alerts.php:195
-#: ../../godmode/massive/massive_delete_alerts.php:298
-#: ../../godmode/massive/massive_delete_modules.php:526
-#: ../../godmode/massive/massive_edit_modules.php:496
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:230
-msgid "When select agents"
-msgstr "Al seleccionar agentes"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:188
-#: ../../godmode/massive/massive_delete_action_alerts.php:201
-#: ../../godmode/massive/massive_delete_modules.php:532
-#: ../../godmode/massive/massive_edit_modules.php:502
-msgid "Show unknown and not init modules"
-msgstr "Mostrar módulos desconocidos y no iniciados"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:259
-#: ../../godmode/massive/massive_add_alerts.php:295
-#: ../../godmode/massive/massive_copy_modules.php:525
-#: ../../godmode/massive/massive_delete_agents.php:215
-#: ../../godmode/massive/massive_delete_alerts.php:347
-#: ../../godmode/massive/massive_delete_modules.php:802
-#: ../../godmode/massive/massive_edit_agents.php:918
-#: ../../godmode/massive/massive_edit_modules.php:1211
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:342
-msgid ""
-"Unsucessful sending the data, please contact with your administrator or make "
-"with less elements."
-msgstr ""
-"Error al enviar los datos. Por favor, contacta con el administrador o "
-"inténtalo con menos elementos."
-
-#: ../../godmode/massive/massive_add_alerts.php:105
-#: ../../godmode/massive/massive_delete_alerts.php:93
-msgid "No alert selected"
-msgstr "No se seleccionó ninguna alerta"
-
-#: ../../godmode/massive/massive_add_alerts.php:249
-#: ../../godmode/massive/massive_delete_alerts.php:234
-#: ../../godmode/massive/massive_enable_disable_alerts.php:166
-#: ../../godmode/massive/massive_standby_alerts.php:178
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:97
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:109
-#: ../../enterprise/godmode/policies/policy_alerts.php:576
-msgid "Alert template"
-msgstr "Plantilla de alerta"
-
-#: ../../godmode/massive/massive_add_profiles.php:82
-msgid "Profiles added successfully"
-msgstr "Perfiles agregados correctamente"
-
-#: ../../godmode/massive/massive_add_profiles.php:83
-msgid "Profiles cannot be added"
-msgstr "Los perfiles no se han podido agregar"
-
-#: ../../godmode/massive/massive_add_profiles.php:101
-#: ../../godmode/massive/massive_delete_profiles.php:108
-#: ../../godmode/users/configure_profile.php:217
-#: ../../include/functions_profile.php:211
-#: ../../operation/users/user_edit.php:753
-#: ../../enterprise/godmode/setup/setup_acl.php:493
-msgid "Profile name"
-msgstr "Nombre del perfil"
-
-#: ../../godmode/massive/massive_add_profiles.php:103
-#: ../../godmode/massive/massive_delete_profiles.php:110
-#: ../../include/functions_reporting.php:9169
-#: ../../operation/search_results.php:92
-#: ../../enterprise/meta/advanced/synchronizing.user.php:586
-msgid "Users"
-msgstr "Usuarios"
-
-#: ../../godmode/massive/massive_copy_modules.php:172
-#: ../../enterprise/godmode/policies/policy_modules.php:1655
-msgid "Copy modules"
-msgstr "Copiar módulos"
-
-#: ../../godmode/massive/massive_copy_modules.php:177
-msgid "Copy alerts"
-msgstr "Copiar alertas"
-
-#: ../../godmode/massive/massive_copy_modules.php:180
-#: ../../godmode/massive/massive_delete_modules.php:434
-#: ../../godmode/massive/massive_edit_modules.php:393
-msgid "Filter Modules"
-msgstr "Filtrar módulos"
-
-#: ../../godmode/massive/massive_copy_modules.php:197
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:173
-msgid "No modules for this agent"
-msgstr "No existen módulos para este agente"
-
-#: ../../godmode/massive/massive_copy_modules.php:214
-msgid "No alerts for this agent"
-msgstr "Ninguna alerta para este agente"
-
-#: ../../godmode/massive/massive_copy_modules.php:223
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:182
-#: ../../enterprise/meta/advanced/policymanager.sync.php:321
-#: ../../enterprise/meta/advanced/synchronizing.alert.php:333
-#: ../../enterprise/meta/advanced/synchronizing.component.php:311
-#: ../../enterprise/meta/advanced/synchronizing.group.php:216
-#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:86
-#: ../../enterprise/meta/advanced/synchronizing.os.php:82
-#: ../../enterprise/meta/advanced/synchronizing.tag.php:99
-msgid "Targets"
-msgstr "Destinos"
-
-#: ../../godmode/massive/massive_copy_modules.php:276
-#: ../../godmode/massive/massive_delete_modules.php:506
-msgid "Filter Agents"
-msgstr "Filtrar agentes"
-
-#: ../../godmode/massive/massive_copy_modules.php:293
-msgid "To agent(s)"
-msgstr "A los agentes"
-
-#: ../../godmode/massive/massive_copy_modules.php:535
-#: ../../include/functions_agents.php:716
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:349
-msgid "No source agent to copy"
-msgstr "No hay agente de origen del que copiar"
-
-#: ../../godmode/massive/massive_copy_modules.php:543
-msgid "No operation selected"
-msgstr "No se seleccionó ninguna operación"
-
-#: ../../godmode/massive/massive_copy_modules.php:548
-#: ../../include/functions_agents.php:747
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:354
-msgid "No modules have been selected"
-msgstr "No se ha seleccionado ningún módulo"
-
-#: ../../godmode/massive/massive_copy_modules.php:553
-#: ../../include/functions_agents.php:721
-msgid "No destiny agent(s) to copy"
-msgstr "No hay agentes destino a los que copiar"
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:60
-msgid "Could not be deleted. No agents selected"
-msgstr "No se puede borrar. Ningún agente seleccionado"
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:88
-msgid "Could not be deleted. No alerts selected"
-msgstr "No se puede borrar. No hay alertas seleccionadas"
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:135
-msgid "Could not be deleted. No action selected"
-msgstr "No se puede eliminar. No hay acciones seleccionadas"
-
-#: ../../godmode/massive/massive_delete_agents.php:60
-#, php-format
-msgid ""
-"There was an error deleting the agent, the operation has been cancelled "
-"Could not delete agent %s"
-msgstr ""
-"Se produjo un error al eliminar el agente. La operación ha sido cancelada. "
-"No se pudo eliminar el agente %s."
-
-#: ../../godmode/massive/massive_delete_agents.php:70
-#, php-format
-msgid "Successfully deleted (%s)"
-msgstr "Borrado correctamente (%s)"
-
-#: ../../godmode/massive/massive_delete_agents.php:153
-#: ../../godmode/massive/massive_edit_agents.php:439
-msgid "Show agents"
-msgstr "Mostrar agentes"
-
-#: ../../godmode/massive/massive_delete_alerts.php:264
-msgid "Show alerts on disabled modules"
-msgstr "Mostrar alertas de módulos deshabilitados"
-
-#: ../../godmode/massive/massive_delete_modules.php:67
-msgid "No module selected"
-msgstr "No se seleccionó ningún módulo"
-
-#: ../../godmode/massive/massive_delete_modules.php:137
-msgid ""
-"There was an error deleting the modules, the operation has been cancelled"
-msgstr "Hubo un error al borrar los módulos, se canceló la operación"
-
-#: ../../godmode/massive/massive_delete_modules.php:294
-#: ../../godmode/massive/massive_edit_modules.php:274
-msgid "Selection mode"
-msgstr "Modo de selección"
-
-#: ../../godmode/massive/massive_delete_modules.php:295
-#: ../../godmode/massive/massive_edit_modules.php:275
-msgid "Select modules first "
-msgstr "Seleccionar primero los módulos "
-
-#: ../../godmode/massive/massive_delete_modules.php:296
-#: ../../godmode/massive/massive_edit_modules.php:276
-msgid "Select agents first "
-msgstr "Seleccionar primero los agentes "
-
-#: ../../godmode/massive/massive_delete_modules.php:299
-#: ../../godmode/massive/massive_edit_modules.php:279
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
-msgid "Module type"
-msgstr "Tipo módulo"
-
-#: ../../godmode/massive/massive_delete_modules.php:319
-#: ../../godmode/massive/massive_edit_modules.php:298
-msgid "Select all modules of this type"
-msgstr "Seleccionar todos los módulos de este tipo"
-
-#: ../../godmode/massive/massive_delete_modules.php:348
-#: ../../godmode/massive/massive_edit_modules.php:329
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:189
-msgid "Agent group"
-msgstr "Grupo de agentes"
-
-#: ../../godmode/massive/massive_delete_modules.php:363
-#: ../../godmode/massive/massive_edit_modules.php:344
-msgid "Select all modules of this group"
-msgstr "Seleccionar todos los módulos de este grupo"
-
-#: ../../godmode/massive/massive_delete_modules.php:455
-#: ../../godmode/massive/massive_edit_modules.php:410
-msgid "When select modules"
-msgstr "Cuando se seleccionan módulos"
-
-#: ../../godmode/massive/massive_delete_modules.php:459
-#: ../../godmode/massive/massive_edit_modules.php:414
-msgid "Show common agents"
-msgstr "Mostrar agentes comunes"
-
-#: ../../godmode/massive/massive_delete_modules.php:460
-#: ../../godmode/massive/massive_edit_modules.php:415
-msgid "Show all agents"
-msgstr "Mostrar todos los agentes"
-
-#: ../../godmode/massive/massive_delete_modules.php:572
-#: ../../godmode/massive/massive_edit_modules.php:1182
-msgid "Please, select an agent first"
-msgstr "Primero seleccione un agente"
-
-#: ../../godmode/massive/massive_delete_profiles.php:60
-msgid "Not deleted. You must select an existing user"
-msgstr "No borrado. Selecciona un usuario existente."
-
-#: ../../godmode/massive/massive_delete_profiles.php:90
-msgid "Profiles deleted successfully"
-msgstr "Perfiles borrados correctamente"
-
-#: ../../godmode/massive/massive_delete_profiles.php:91
-msgid "Profiles cannot be deleted"
-msgstr "No se pudieron borrar los perfiles."
-
-#: ../../godmode/massive/massive_edit_agents.php:140
-msgid "No values changed"
-msgstr "No se han cambiado los valores."
-
-#: ../../godmode/massive/massive_edit_agents.php:185
-msgid "Configuration files deleted successfully"
-msgstr "Los archivos de configuración se borraron correctamente."
-
-#: ../../godmode/massive/massive_edit_agents.php:186
-msgid "Configuration files cannot be deleted"
-msgstr "Los archivos de configuración no se pudieron borrar."
-
-#: ../../godmode/massive/massive_edit_agents.php:376
-msgid "Agents updated successfully"
-msgstr "Los agentes se actualizaron correctamente."
-
-#: ../../godmode/massive/massive_edit_agents.php:377
-msgid "Agents cannot be updated (maybe there was no field to update)"
-msgstr ""
-"Los agentes no se pueden actualizar (puede que no hubiera ningún campo para "
-"actualizar)."
-
-#: ../../godmode/massive/massive_edit_agents.php:543
-#: ../../godmode/massive/massive_edit_agents.php:551
-#: ../../godmode/massive/massive_edit_agents.php:555
-#: ../../godmode/massive/massive_edit_agents.php:563
-#: ../../godmode/massive/massive_edit_agents.php:587
-#: ../../godmode/massive/massive_edit_agents.php:634
-#: ../../godmode/massive/massive_edit_agents.php:641
-#: ../../godmode/massive/massive_edit_agents.php:682
-#: ../../godmode/massive/massive_edit_agents.php:686
-#: ../../godmode/massive/massive_edit_agents.php:695
-#: ../../godmode/massive/massive_edit_agents.php:723
-#: ../../godmode/massive/massive_edit_agents.php:794
-#: ../../godmode/massive/massive_edit_modules.php:587
-#: ../../godmode/massive/massive_edit_modules.php:656
-#: ../../godmode/massive/massive_edit_modules.php:687
-#: ../../godmode/massive/massive_edit_modules.php:696
-#: ../../godmode/massive/massive_edit_modules.php:755
-#: ../../godmode/massive/massive_edit_modules.php:773
-#: ../../godmode/massive/massive_edit_modules.php:792
-#: ../../godmode/massive/massive_edit_modules.php:796
-#: ../../godmode/massive/massive_edit_modules.php:807
-#: ../../godmode/massive/massive_edit_modules.php:827
-#: ../../godmode/massive/massive_edit_modules.php:852
-#: ../../godmode/massive/massive_edit_modules.php:864
-#: ../../godmode/massive/massive_edit_modules.php:925
-#: ../../godmode/massive/massive_edit_modules.php:971
-#: ../../godmode/massive/massive_edit_modules.php:989
-#: ../../godmode/massive/massive_edit_modules.php:995
-#: ../../godmode/massive/massive_edit_modules.php:1008
-#: ../../godmode/massive/massive_edit_modules.php:1036
-#: ../../include/functions_html.php:802 ../../include/functions_html.php:903
-#: ../../include/functions_html.php:1035
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:493
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:507
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:438
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:507
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:538
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:606
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:629
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:685
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:710
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:726
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:787
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:847
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:875
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:300
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
-msgid "No change"
-msgstr "Sin cambios"
-
-#: ../../godmode/massive/massive_edit_agents.php:643
-msgid "Active"
-msgstr "Activo"
-
-#: ../../godmode/massive/massive_edit_agents.php:649
-msgid "Delete available remote configurations"
-msgstr "Borrar las configuraciones remotas disponibles"
-
-#: ../../godmode/massive/massive_edit_agents.php:682
-msgid "Without status"
-msgstr "Sin estado"
-
-#: ../../godmode/massive/massive_edit_agents.php:682
-#: ../../godmode/update_manager/update_manager.offline.php:95
-#: ../../include/functions_config.php:1167
-#: ../../include/functions_config.php:2796
-#: ../../include/functions_update_manager.php:1399
-#: ../../operation/gis_maps/render_view.php:153
-#: ../../enterprise/dashboard/widgets/service_map.php:102
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:415
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2722
-#: ../../enterprise/include/class/Omnishell.class.php:1446
-#: ../../enterprise/include/functions_update_manager.php:245
-#: ../../enterprise/load_enterprise.php:424
-#: ../../enterprise/load_enterprise.php:919
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:47
-#: ../../enterprise/operation/agentes/transactional_map.php:312
-#: ../../enterprise/operation/services/services.list.php:189
-#: ../../enterprise/operation/services/services.list.php:466
-#: ../../enterprise/operation/services/services.service.php:212
-#: ../../enterprise/operation/services/services.service_map.php:172
-#: ../../enterprise/operation/services/services.table_services.php:168
-msgid "Ok"
-msgstr "Bien"
-
-#: ../../godmode/massive/massive_edit_agents.php:682
-#: ../../enterprise/dashboard/widgets/maps_status.php:90
-msgid "Bad"
-msgstr "Mal"
-
-#: ../../godmode/massive/massive_edit_agents.php:709
-#, php-format
-msgid ""
-"This mode allow %s to disable all modules \n"
-"of this agent while the selected module is on CRITICAL status"
-msgstr ""
-"Este modo permite que %s deshabilite todos los módulos \n"
-"de este agente mientras el módulo seleccionado esté en estado CRÍTICO"
-
-#: ../../godmode/massive/massive_edit_modules.php:119
-msgid "Error updating the modules from a module type"
-msgstr "Error al actualizar los módulos desde un tipo de módulos"
-
-#: ../../godmode/massive/massive_edit_modules.php:142
-msgid "Error updating the modules from an agent group"
-msgstr "Error al actualizar los módulos desde un grupo de agentes"
-
-#: ../../godmode/massive/massive_edit_modules.php:160
-msgid "Error updating the modules (maybe there was no field to update)"
-msgstr ""
-"Error al actualizar los módulos (puede que no hubiera ningún campo para "
-"actualizar)"
-
-#: ../../godmode/massive/massive_edit_modules.php:440
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:98
-msgid "Agent Status"
-msgstr "Estado de agente"
-
-#: ../../godmode/massive/massive_edit_modules.php:478
-#: ../../enterprise/dashboard/widgets/tree_view.php:80
-msgid "Filter agents"
-msgstr "Filtrar agentes"
-
-#: ../../godmode/massive/massive_edit_modules.php:524
-#: ../../godmode/modules/manage_network_components_form_common.php:157
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:375
-#: ../../enterprise/godmode/modules/configure_local_component.php:286
-msgid "Dynamic Interval"
-msgstr "Intervalo dinámico"
-
-#: ../../godmode/massive/massive_edit_modules.php:526
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:377
-msgid "Dynamic Min."
-msgstr "Mínimo dinámico"
-
-#: ../../godmode/massive/massive_edit_modules.php:528
-#: ../../godmode/modules/manage_network_components_form_common.php:163
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:379
-#: ../../enterprise/godmode/modules/configure_local_component.php:292
-msgid "Dynamic Max."
-msgstr "Dinámico máximo"
-
-#: ../../godmode/massive/massive_edit_modules.php:530
-#: ../../godmode/modules/manage_network_components_form_common.php:165
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:381
-#: ../../enterprise/godmode/modules/configure_local_component.php:294
-msgid "Dynamic Two Tailed: "
-msgstr "El segundo rango dínámico falla: "
-
-#: ../../godmode/massive/massive_edit_modules.php:724
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575
-msgid "SMNP community"
-msgstr "Comunidad SMNP"
-
-#: ../../godmode/massive/massive_edit_modules.php:926
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:788
-msgid "Active Counters"
-msgstr "Contadores activos"
-
-#: ../../godmode/massive/massive_edit_modules.php:927
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:789
-msgid "Inactive Counters"
-msgstr "Contadores inactivos"
-
-#: ../../godmode/massive/massive_edit_modules.php:994
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833
-msgid "Policy linking status"
-msgstr "Estado de enlaces de la política"
-
-#: ../../godmode/massive/massive_edit_modules.php:994
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833
-msgid "This field only has sense in modules adopted by a policy."
-msgstr ""
-"Este campo solo tiene sentido en los módulos aprobados por una política."
-
-#: ../../godmode/massive/massive_edit_modules.php:995
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834
-msgid "Linked"
-msgstr "Enlazado"
-
-#: ../../godmode/massive/massive_edit_modules.php:1033
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:872
-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_modules.php:1069
-#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:63
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:909
-#: ../../enterprise/include/functions_enterprise.php:321
-#: ../../enterprise/meta/include/functions_wizard_meta.php:609
-#: ../../enterprise/meta/include/functions_wizard_meta.php:666
-msgid "Web checks"
-msgstr "Comprobaciones web"
-
-#: ../../godmode/massive/massive_edit_modules.php:1141
-#: ../../godmode/modules/manage_network_components_form_network.php:246
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:978
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../godmode/massive/massive_edit_modules.php:1142
-#: ../../godmode/modules/manage_network_components_form_network.php:247
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:979
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../godmode/massive/massive_edit_modules.php:1145
-#: ../../godmode/modules/manage_network_components_form_network.php:250
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:982
-msgid "Target OS"
-msgstr "SO objetivo"
-
-#: ../../godmode/massive/massive_edit_plugins.php:162
-msgid "Error retrieving the plugin macros"
-msgstr "Error al recuperar las macros de plugin"
-
-#: ../../godmode/massive/massive_edit_plugins.php:170
-msgid "Error retrieving the modified macros"
-msgstr "Error al recuperar las macros modificadas"
-
-#: ../../godmode/massive/massive_edit_plugins.php:193
-msgid "Error retrieving the module plugin macros"
-msgstr "Error al recuperar las macros del módulo de plugin"
-
-#: ../../godmode/massive/massive_edit_plugins.php:211
-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:249
-msgid "Error building the new macros"
-msgstr "Error al crear las nuevas macros"
-
-#: ../../godmode/massive/massive_edit_plugins.php:278
-#, php-format
-msgid "%d modules updated"
-msgstr "%d módulos actualizados"
-
-#: ../../godmode/massive/massive_edit_plugins.php:299
-msgid "There are not registered plugins"
-msgstr "No hay plugins registrados"
-
-#: ../../godmode/massive/massive_edit_plugins.php:476
-msgid "Invalid plugin data"
-msgstr "Dato de plugin no válido"
-
-#: ../../godmode/massive/massive_edit_plugins.php:583
-msgid "Clear"
-msgstr "Vaciar"
-
-#: ../../godmode/massive/massive_edit_plugins.php:611
-msgid "Invalid macros array"
-msgstr "Matriz de macros no válida"
-
-#: ../../godmode/massive/massive_edit_plugins.php:636
-msgid "Multiple values"
-msgstr "Valores múltiples"
-
-#: ../../godmode/massive/massive_edit_plugins.php:668
-#: ../../godmode/massive/massive_edit_plugins.php:804
-#: ../../godmode/massive/massive_edit_plugins.php:820
-msgid "Invalid agents array"
-msgstr "Matriz de agentes no válida"
-
-#: ../../godmode/massive/massive_edit_plugins.php:684
-msgid "Invalid agent element"
-msgstr "Elemento de agente no válido"
-
-#: ../../godmode/massive/massive_edit_plugins.php:695
-msgid "Invalid modules array"
-msgstr "Matriz de módulos no válida"
-
-#: ../../godmode/massive/massive_edit_plugins.php:723
-msgid "Invalid module element"
-msgstr "Elemento de módulo no válido"
-
-#: ../../godmode/massive/massive_edit_plugins.php:867
-#: ../../godmode/massive/massive_edit_plugins.php:868
-#: ../../include/ajax/double_auth.ajax.php:246
-#: ../../include/ajax/double_auth.ajax.php:343
-#: ../../include/ajax/double_auth.ajax.php:388
-#: ../../include/ajax/double_auth.ajax.php:503
-#: ../../include/class/Diagnostics.class.php:1818
-#: ../../include/functions.php:1234 ../../include/functions_events.php:2693
-#: ../../include/functions_events.php:3043
-#: ../../include/functions_events.php.orig:2599
-#: ../../include/functions_events.php.orig:2949
-#: ../../include/functions_ui.php:283 ../../operation/users/user_edit.php:980
-#: ../../operation/users/user_edit.php:1046
-#: ../../enterprise/dashboard/main_dashboard.php:421
-#: ../../enterprise/dashboard/main_dashboard.php:509
-#: ../../enterprise/include/functions_login.php:104
-#: ../../enterprise/meta/include/functions_ui_meta.php:875
-msgid "Error"
-msgstr "Error"
-
-#: ../../godmode/massive/massive_edit_plugins.php:930
-msgid "There are no modules using this plugin"
-msgstr "Ningún módulo está usando este plugin"
-
-#: ../../godmode/massive/massive_edit_plugins.php:1013
-msgid "There was a problem loading the module plugin macros data"
-msgstr ""
-"Surgió un problema al cargar los datos de las macros del módulo de plugin."
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:172
-msgid "Enabled alerts"
-msgstr "Alertas activadas"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:172
-#: ../../godmode/massive/massive_enable_disable_alerts.php:207
-#: ../../godmode/massive/massive_standby_alerts.php:184
-#: ../../godmode/massive/massive_standby_alerts.php:219
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121
-msgid "Format"
-msgstr "Formato"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:201
-msgid "Disable selected alerts"
-msgstr "Desactivar alertas seleccionadas"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:205
-msgid "Enable selected alerts"
-msgstr "Activar alertas seleccionadas"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:207
-msgid "Disabled alerts"
-msgstr "Deshabilitar alertas"
-
-#: ../../godmode/massive/massive_operations.php:37
-msgid "Bulk alert add"
-msgstr "Añadir alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:38
-msgid "Bulk alert delete"
-msgstr "Eliminar alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:39
-msgid "Bulk alert actions add"
-msgstr "Añadir acciones de alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:40
-msgid "Bulk alert actions delete"
-msgstr "Eliminar acciones de alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:41
-msgid "Bulk alert enable/disable"
-msgstr "Habilitar/Deshabilitar alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:42
-msgid "Bulk alert setting standby"
-msgstr "Configuración standby de alertas masivas"
-
-#: ../../godmode/massive/massive_operations.php:46
-msgid "Bulk agent edit"
-msgstr "Edición agentes masiva"
-
-#: ../../godmode/massive/massive_operations.php:47
-msgid "Bulk agent delete"
-msgstr "Eliminar agentes de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:52
-msgid "Bulk profile add"
-msgstr "Añadir perfiles de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:53
-msgid "Bulk profile delete"
-msgstr "Eliminar perfiles de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:60
-msgid "Bulk module edit"
-msgstr "Editar módulos de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:61
-msgid "Bulk module copy"
-msgstr "Copiar módulos de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:62
-msgid "Bulk module delete"
-msgstr "Eliminar módulos de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:66
-msgid "Bulk plugin edit"
-msgstr "Editar plugins de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:165 ../../godmode/menu.php:168
-msgid "Alerts operations"
-msgstr "Operaciones sobre alertas"
-
-#: ../../godmode/massive/massive_operations.php:173 ../../godmode/menu.php:165
-msgid "Users operations"
-msgstr "Operaciones sobre usuarios"
-
-#: ../../godmode/massive/massive_operations.php:181 ../../godmode/menu.php:161
-msgid "Agents operations"
-msgstr "Operaciones sobre agentes"
-
-#: ../../godmode/massive/massive_operations.php:189 ../../godmode/menu.php:162
-msgid "Modules operations"
-msgstr "Operaciones sobre módulos"
-
-#: ../../godmode/massive/massive_operations.php:197 ../../godmode/menu.php:163
-msgid "Plugins operations"
-msgstr "Operaciones de plugins"
-
-#: ../../godmode/massive/massive_operations.php:243 ../../godmode/menu.php:156
-msgid "Bulk operations"
-msgstr "Operaciones masivas"
-
-#: ../../godmode/massive/massive_operations.php:258
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200
-msgid ""
-"In order to perform massive operations, PHP needs a correct configuration in "
-"timeout parameters. Please, open your PHP configuration file (php.ini) for "
-"example: sudo vi /etc/php5/apache2/php.ini;
And set your timeout " -"parameters to a correct value:
max_execution_time = 0 and " -"max_input_time = -1" -msgstr "" -"Para poder realizar operaciones masivas, PHP necesitas una configuración " -"correcta de los parámetros de tiempo de espera. Por favor, abre el archivo " -"de configuración PHP (php.ini), por ejemplo: sudo vi " -"/etc/php5/apache2/php.ini;
y fija los parámetros del tiempo de espera " -"en un valor correcto:
max_execution_time = 0 y max_input_time " -"= -1" - -#: ../../godmode/massive/massive_operations.php:263 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:25 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:27 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:28 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:25 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:27 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:27 -#: ../../enterprise/godmode/policies/policies.php:292 -msgid "" -"This node is configured with centralized mode. All policies information is " -"read only. Go to metaconsole to manage it." -msgstr "" -"Este nodo esta configurado con el modo centralizado. Toda la información de " -"las políticas está en modo lectura. Vaya a la metaconsola para administrarlo." - -#: ../../godmode/massive/massive_operations.php:279 -msgid "Please wait..." -msgstr "Por favor, espere..." - -#: ../../godmode/massive/massive_operations.php:325 -msgid "The blank fields will not be updated" -msgstr "Los campos en blanco no se actualizarán." - -#: ../../godmode/massive/massive_standby_alerts.php:184 -msgid "Not standby alerts" -msgstr "Alertas sin standby" - -#: ../../godmode/massive/massive_standby_alerts.php:213 -#: ../../godmode/massive/massive_standby_alerts.php:217 -msgid "Set standby selected alerts" -msgstr "Poner en standby las alertas seleccionadas" - -#: ../../godmode/massive/massive_standby_alerts.php:219 -msgid "Standby alerts" -msgstr "Alertas en standby" - -#: ../../godmode/menu.php:31 ../../godmode/setup/setup_ehorus.php:111 -#: ../../godmode/setup/setup_integria.php:496 -#: ../../operation/users/user_edit.php:700 -#: ../../enterprise/dashboard/main_dashboard.php:554 -#: ../../enterprise/include/functions_dashboard.php:1122 -#: ../../enterprise/operation/agentes/transactional_map.php:361 -msgid "Start" -msgstr "Inicio" - -#: ../../godmode/menu.php:33 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:101 -msgid "Task list" -msgstr "Lista de tareas" - -#: ../../godmode/menu.php:41 -msgid "Network scan" -msgstr "Escaneado de red" - -#: ../../godmode/menu.php:43 -msgid "Custom network scan" -msgstr "Escaneo de red personalizado" - -#: ../../godmode/menu.php:47 -msgid "Manage scan scripts" -msgstr "Gestionar guiones de escaneo" - -#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:203 -msgid "Host & devices" -msgstr "Host & devices" - -#: ../../godmode/menu.php:62 ../../godmode/servers/discovery.php:54 -#: ../../godmode/wizards/HostDevices.class.php:189 -#: ../../enterprise/godmode/wizards/Applications.class.php:148 -#: ../../enterprise/godmode/wizards/Cloud.class.php:178 -#: ../../enterprise/include/class/Aws.cloud.php:137 -#: ../../enterprise/include/class/Azure.cloud.php:179 -#: ../../enterprise/include/class/DeploymentCenter.class.php:549 -msgid "Discovery" -msgstr "Discovery" - -#: ../../godmode/menu.php:80 -#: ../../enterprise/meta/include/functions_components_meta.php:56 -#: ../../enterprise/meta/include/functions_components_meta.php:80 -msgid "Component groups" -msgstr "Grupos de componentes" - -#: ../../godmode/menu.php:83 -msgid "Module categories" -msgstr "Categorías de módulos" - -#: ../../godmode/menu.php:87 -msgid "Module types" -msgstr "Tipos de módulos" - -#: ../../godmode/menu.php:97 ../../godmode/netflow/nf_edit.php:57 -#: ../../godmode/netflow/nf_edit.php:63 -#: ../../godmode/netflow/nf_edit_form.php:73 -#: ../../godmode/netflow/nf_edit_form.php:83 -msgid "Netflow filters" -msgstr "Filtros Netflow" - -#: ../../godmode/menu.php:111 -msgid "Manage agents groups" -msgstr "Configuración de grupos de agentes" - -#: ../../godmode/menu.php:117 -#: ../../enterprise/extensions/disabled/check_acls.php:140 -msgid "Module tags" -msgstr "Etiquetas de módulos" - -#: ../../godmode/menu.php:125 ../../godmode/users/profile_list.php:286 -#: ../../enterprise/extensions/disabled/check_acls.php:56 -#: ../../enterprise/extensions/disabled/check_acls.php:149 -msgid "Users management" -msgstr "Gestión de usuarios" - -#: ../../godmode/menu.php:127 ../../godmode/users/configure_profile.php:44 -#: ../../godmode/users/configure_user.php:87 -#: ../../godmode/users/profile_list.php:48 -#: ../../godmode/users/user_list.php:139 -#: ../../enterprise/meta/include/functions_users_meta.php:186 -#: ../../enterprise/meta/include/functions_users_meta.php:212 -msgid "Profile management" -msgstr "Gestionar perfiles" - -#: ../../godmode/menu.php:133 ../../godmode/users/profile_list.php:276 -#: ../../enterprise/godmode/setup/setup_auth.php:224 -#: ../../enterprise/godmode/setup/setup_auth.php:977 -#: ../../enterprise/meta/advanced/synchronizing.user.php:635 -msgid "Profiles" -msgstr "Perfiles" - -#: ../../godmode/menu.php:140 -#: ../../enterprise/meta/include/functions_components_meta.php:64 -#: ../../enterprise/meta/include/functions_components_meta.php:88 -msgid "Network components" -msgstr "Componentes de red" - -#: ../../godmode/menu.php:192 -msgid "List of Alerts" -msgstr "Lista de alertas" - -#: ../../godmode/menu.php:204 -#: ../../enterprise/meta/include/functions_alerts_meta.php:129 -#: ../../enterprise/meta/include/functions_alerts_meta.php:148 -msgid "Commands" -msgstr "Comandos" - -#: ../../godmode/menu.php:212 ../../include/functions_menu.php:544 -msgid "SNMP alerts" -msgstr "Alertas SNMP" - -#: ../../godmode/menu.php:223 -msgid "Event filters" -msgstr "Filtro de eventos" - -#: ../../godmode/menu.php:228 -msgid "Custom events" -msgstr "Eventos personalizados" - -#: ../../godmode/menu.php:235 ../../include/functions.php:3781 -#: ../../include/functions_reports.php:827 -#: ../../include/functions_reports.php:831 -#: ../../include/functions_reports.php:835 -#: ../../include/functions_reporting_html.php:1927 -#: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/events.php:609 ../../mobile/operation/home.php:51 -#: ../../operation/events/events.php:791 ../../operation/events/events.php:806 -#: ../../operation/menu.php:360 -#: ../../enterprise/extensions/ipam/ipam_massive.php:103 -#: ../../enterprise/extensions/ipam/ipam_network.php:327 -#: ../../enterprise/godmode/reporting/cluster_view.php:504 -#: ../../enterprise/meta/general/logon_ok.php:57 -#: ../../enterprise/meta/general/main_header.php:145 -#: ../../enterprise/meta/monitoring/tactical.php:272 -msgid "Events" -msgstr "Eventos" - -#: ../../godmode/menu.php:244 -#: ../../godmode/reporting/visual_console_builder.wizard.php:353 -#: ../../mobile/include/functions_web.php:26 -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -msgid "Servers" -msgstr "Servidores" - -#: ../../godmode/menu.php:251 -msgid "Manage servers" -msgstr "Gestionar servidores" - -#: ../../godmode/menu.php:259 -#: ../../enterprise/godmode/agentes/plugins_manager.php:120 -#: ../../enterprise/godmode/policies/policies.php:551 -#: ../../enterprise/godmode/policies/policy_plugins.php:119 -msgid "Plugins" -msgstr "Plugins" - -#: ../../godmode/menu.php:285 -#: ../../include/class/OrderInterpreter.class.php:141 -msgid "General Setup" -msgstr "Configuración general" - -#: ../../godmode/menu.php:294 ../../godmode/setup/setup.php:98 -#: ../../godmode/setup/setup.php:155 -#: ../../enterprise/meta/advanced/metasetup.php:74 -#: ../../enterprise/meta/advanced/metasetup.php:168 -msgid "Authentication" -msgstr "Autentificación" - -#: ../../godmode/menu.php:297 ../../godmode/setup/setup.php:103 -#: ../../godmode/setup/setup.php:160 -#: ../../enterprise/meta/advanced/metasetup.performance.php:71 -msgid "Performance" -msgstr "Rendimiento" - -#: ../../godmode/menu.php:300 ../../godmode/setup/setup.php:108 -#: ../../godmode/setup/setup.php:166 -#: ../../enterprise/meta/advanced/metasetup.visual.php:90 -msgid "Visual styles" -msgstr "Estilos visuales" - -#: ../../godmode/menu.php:305 ../../godmode/setup/setup.php:115 -#: ../../godmode/setup/setup.php:171 ../../include/functions_reports.php:862 -#: ../../include/functions_reports.php:866 -#: ../../include/functions_reports.php:870 -#: ../../enterprise/include/functions_enterprise.php:313 -#: ../../enterprise/meta/general/main_header.php:264 -msgid "Netflow" -msgstr "Netflow" - -#: ../../godmode/menu.php:310 ../../godmode/setup/setup.php:127 -#: ../../godmode/setup/setup.php:176 -#: ../../operation/agentes/ver_agente.php:1301 -msgid "eHorus" -msgstr "eHorus" - -#: ../../godmode/menu.php:313 ../../godmode/setup/setup.php:122 -#: ../../godmode/setup/setup.php:182 ../../godmode/setup/setup_integria.php:510 -msgid "Integria IMS" -msgstr "Integria IMS" - -#: ../../godmode/menu.php:316 ../../godmode/setup/setup.php:133 -#: ../../godmode/setup/setup.php:188 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../godmode/menu.php:319 -msgid "Websocket Engine" -msgstr "Websocket Engine" - -#: ../../godmode/menu.php:323 ../../godmode/setup/gis.php:33 -msgid "Map conections GIS" -msgstr "Conexión de mapa GIS" - -#: ../../godmode/menu.php:327 ../../godmode/setup/os.php:147 -msgid "Edit OS" -msgstr "Editar SO" - -#: ../../godmode/menu.php:329 ../../enterprise/meta/general/main_header.php:364 -msgid "License" -msgstr "Licencia" - -#: ../../godmode/menu.php:338 -msgid "Admin tools" -msgstr "Herramientas administrativas" - -#: ../../godmode/menu.php:346 -msgid "System audit log" -msgstr "Logs de auditoría del sistema" - -#: ../../godmode/menu.php:350 -msgid "Diagnostic info" -msgstr "Información de diagnóstico" - -#: ../../godmode/menu.php:354 -msgid "Site news" -msgstr "Noticias del sistema" - -#: ../../godmode/menu.php:356 ../../godmode/setup/file_manager.php:28 -#: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:180 -msgid "File manager" -msgstr "Gestor de archivos" - -#: ../../godmode/menu.php:360 -msgid "DB Schema Check" -msgstr "Comprobación del esquema de la BD" - -#: ../../godmode/menu.php:363 -msgid "DB Interface" -msgstr "Interfaz de la BBDD" - -#: ../../godmode/menu.php:448 -msgid "Extension manager view" -msgstr "Vista del gestor de extensiones" - -#: ../../godmode/menu.php:452 -msgid "Extension manager" -msgstr "Gestor de extensión" - -#: ../../godmode/menu.php:483 -msgid "Update manager" -msgstr "Administrador de actualizaciones" - -#: ../../godmode/menu.php:489 -msgid "Update Manager offline" -msgstr "Administrador de actualizaciones sin conexión" - -#: ../../godmode/menu.php:493 -msgid "Update Manager online" -msgstr "Administrador de actualizaciones con conexión" - -#: ../../godmode/menu.php:495 -msgid "Update Manager options" -msgstr "Opciones del Administrador de actualizaciones" - -#: ../../godmode/modules/manage_nc_groups.php:40 -#: ../../godmode/modules/manage_network_components.php:69 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/module_list.php:26 -#: ../../enterprise/godmode/modules/local_components.php:99 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 -#: ../../enterprise/meta/general/main_header.php:322 -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:63 -msgid "Could not be created. Blank name" -msgstr "No pudo ser creado. Nombre en blanco" - -#: ../../godmode/modules/manage_nc_groups.php:184 -#: ../../godmode/modules/manage_network_components.php:449 -#: ../../godmode/modules/manage_network_templates.php:95 -#: ../../enterprise/godmode/modules/local_components.php:385 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:207 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:240 -msgid "Successfully multiple deleted" -msgstr "Supresión múltiple correcta" - -#: ../../godmode/modules/manage_nc_groups.php:185 -#: ../../godmode/modules/manage_network_components.php:450 -#: ../../godmode/modules/manage_network_templates.php:96 -#: ../../enterprise/godmode/modules/local_components.php:386 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:208 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:241 -msgid "Not deleted. Error deleting multiple data" -msgstr "No borrado. Error al borrar datos múltiples." - -#: ../../godmode/modules/manage_nc_groups.php:276 -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:56 -msgid "Create Group Component" -msgstr "Crear componentes de grupo" - -#: ../../godmode/modules/manage_network_components.php:69 -msgid "Network component management" -msgstr "Gestión de los componentes de red" - -#: ../../godmode/modules/manage_network_components.php:312 -#: ../../include/class/ManageNetScanScripts.class.php:216 -#: ../../enterprise/godmode/modules/local_components.php:276 -msgid "Created successfully" -msgstr "Creado correctamente" - -#: ../../godmode/modules/manage_network_components.php:393 -#: ../../include/class/ManageNetScanScripts.class.php:303 -#: ../../enterprise/godmode/modules/local_components.php:344 -msgid "Updated successfully" -msgstr "Actualizado correctamente" - -#: ../../godmode/modules/manage_network_components.php:583 -#: ../../enterprise/godmode/modules/local_components.php:485 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2536 -msgid "Free Search" -msgstr "Búsqueda libre" - -#: ../../godmode/modules/manage_network_components.php:584 -msgid "Search by name, description, tcp send or tcp rcv, list matches." -msgstr "" -"Búsqueda por nombre, descripción, envío TCP o TCP RCV, lista las " -"coincidencias." - -#: ../../godmode/modules/manage_network_components.php:674 -msgid "Max/Min" -msgstr "Máx/Mín" - -#: ../../godmode/modules/manage_network_components.php:710 -msgid "Network module" -msgstr "Módulo de red" - -#: ../../godmode/modules/manage_network_components.php:718 -msgid "WMI module" -msgstr "Módulo WMI" - -#: ../../godmode/modules/manage_network_components.php:726 -msgid "Plug-in module" -msgstr "Módulo de plugin" - -#: ../../godmode/modules/manage_network_components.php:773 -msgid "There are no defined network components" -msgstr "No hay componentes de red definidos" - -#: ../../godmode/modules/manage_network_components.php:783 -msgid "Create a new network component" -msgstr "Crear un componente de red nuevo" - -#: ../../godmode/modules/manage_network_components.php:784 -msgid "Create a new plugin component" -msgstr "Crear un componente de plugin nuevo" - -#: ../../godmode/modules/manage_network_components.php:785 -msgid "Create a new WMI component" -msgstr "Crear un componente WMI nuevo" - -#: ../../godmode/modules/manage_network_components_form.php:285 -msgid "Update Network Component" -msgstr "Actualización de componente de red" - -#: ../../godmode/modules/manage_network_components_form.php:287 -msgid "Create Network Component" -msgstr "Crear componente de red" - -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../enterprise/godmode/modules/configure_local_component.php:290 -msgid "Dynamic Min. " -msgstr "Dinámico mínimo " - -#: ../../godmode/modules/manage_network_components_form_common.php:300 -#: ../../enterprise/godmode/modules/configure_local_component.php:433 -msgid "Any value below this number is discarted" -msgstr "Cualquier valor por debajo de este número será descartado." - -#: ../../godmode/modules/manage_network_components_form_common.php:302 -#: ../../enterprise/godmode/modules/configure_local_component.php:438 -msgid "Any value over this number is discarted" -msgstr "Cualquier valor por encima de este número será descartado." - -#: ../../godmode/modules/manage_network_components_form_network.php:72 -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:70 -msgid "Template successfully deleted" -msgstr "Plantilla borrada correctamente" - -#: ../../godmode/modules/manage_network_templates.php:71 -msgid "Error deleting template" -msgstr "Error al borrar la plantilla" - -#: ../../godmode/modules/manage_network_templates.php:105 -msgid "This template does not exist" -msgstr "Esta plantilla no existe." - -#: ../../godmode/modules/manage_network_templates.php:279 -msgid "There are no defined network profiles" -msgstr "No hay ningún perfil de red definido" - -#: ../../godmode/modules/manage_network_templates_form.php:59 -msgid "Successfully deleted module from profile" -msgstr "Módulo borrado del perfil correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:60 -msgid "Error deleting module from profile" -msgstr "Error al borrar el módulo del perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:79 -msgid "Successfully added module to profile" -msgstr "Módulo añadido correctamente al perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:80 -msgid "Error adding module to profile" -msgstr "Error al añadir el módulo al perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:107 -msgid "Successfully updated network profile" -msgstr "Perfil de red actualizado correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:108 -msgid "Error updating network profile" -msgstr "Error al actualizar el perfil de red" - -#: ../../godmode/modules/manage_network_templates_form.php:126 -msgid "Successfully added network profile" -msgstr "Perfil de red añadido correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:127 -msgid "Error adding network profile" -msgstr "Error al añadir el perfil de red" - -#: ../../godmode/modules/manage_network_templates_form.php:133 -msgid "Cannot create a template without name" -msgstr "No se puede crear una plantilla sin nombre" - -#: ../../godmode/modules/manage_network_templates_form.php:207 -msgid "No modules for this profile" -msgstr "No existen módulos para este perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:248 -#: ../../enterprise/dashboard/widgets/top_n.php:411 -msgid "Add modules" -msgstr "Añadir módulos" - -#: ../../godmode/modules/manage_network_templates_form.php:329 -#: ../../enterprise/meta/include/functions_wizard_meta.php:307 -msgid "Components" -msgstr "Componentes" - -#: ../../godmode/modules/module_list.php:26 -msgid "Defined modules" -msgstr "Módulos definidos" - -#: ../../godmode/modules/module_list.php:48 -msgid "Problem modifying module" -msgstr "Problema al modificar los módulos" - -#: ../../godmode/modules/module_list.php:50 -msgid "Module updated successfully" -msgstr "Actualización de módulos correcta" +msgid "There was a problem only deleted %s modules of %s total." +msgstr "Error al borrar %s módulo(s) de %s" + +#: ../../godmode/agentes/module_manager.php:618 +#: ../../godmode/reporting/map_builder.php:403 +#: ../../godmode/reporting/map_builder.php:420 +#: ../../include/ajax/module.php:442 +#: ../../operation/agentes/datos_agente.php:296 +msgid "No available data to show" +msgstr "No hay datos disponibles para mostrar" + +#: ../../godmode/agentes/module_manager.php:655 +msgid "Del." +msgstr "Del." + +#: ../../godmode/agentes/module_manager.php:782 +#: ../../godmode/agentes/module_manager.php:790 +#: ../../include/ajax/module.php:949 ../../include/ajax/module.php:957 +msgid "Adopted" +msgstr "Adoptado" + +#: ../../godmode/agentes/module_manager.php:894 +msgid "Normalize" +msgstr "Normalizar" + +#: ../../godmode/agentes/module_manager.php:902 +msgid "Normalize (Disabled)" +msgstr "Normalizar (deshabilitado)" + +#: ../../godmode/agentes/module_manager.php:916 +#: ../../include/functions_snmp_browser.php:602 +msgid "Create network component" +msgstr "Crear componentes de red" + +#: ../../godmode/agentes/module_manager.php:923 +msgid "Create network component (Disabled)" +msgstr "Crear componentes de red (desactivado)" + +#: ../../godmode/netflow/nf_item_list.php:36 +#: ../../operation/reporting/reporting_viewer.php:79 +msgid "Report list" +msgstr "Lista de informes" + +#: ../../godmode/netflow/nf_item_list.php:39 +#: ../../godmode/netflow/nf_item_list.php:46 +msgid "Report items" +msgstr "Elementos de informe" + +#: ../../godmode/netflow/nf_item_list.php:42 +msgid "Edit report" +msgstr "Editar informe" + +#: ../../godmode/netflow/nf_item_list.php:55 +msgid "Netflow reports" +msgstr "Informes Netflow" + +#: ../../godmode/netflow/nf_item_list.php:59 +msgid "Item list" +msgstr "Lista de elementos" + +#: ../../godmode/netflow/nf_item_list.php:178 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2000 +#: ../../operation/netflow/nf_live_view.php:322 +msgid "Max. values" +msgstr "Valores máximos" + +#: ../../godmode/netflow/nf_item_list.php:179 +#: ../../operation/agentes/graphs.php:226 +msgid "Chart type" +msgstr "Tipo de gráfico" + +#: ../../godmode/netflow/nf_item_list.php:279 +msgid "There are no defined items" +msgstr "No hay elementos definidos" #: ../../godmode/netflow/nf_edit.php:38 msgid "Manage Netflow Filter" msgstr "Filtro de gestión Netflow" -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../godmode/setup/setup_general.php:174 -#: ../../operation/netflow/nf_live_view.php:133 -#: ../../enterprise/extensions/backup/main.php:85 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:82 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../enterprise/operation/log/log_viewer.php:320 -msgid "Not supported in Windows systems" -msgstr "No compatible con sistemas Windows" +#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 +#: ../../godmode/netflow/nf_edit_form.php:73 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:97 +msgid "Netflow filters" +msgstr "Filtros Netflow" -#: ../../godmode/netflow/nf_edit.php:53 -#: ../../godmode/netflow/nf_edit_form.php:69 -#: ../../godmode/netflow/nf_item_list.php:51 -#: ../../operation/agentes/ver_agente.php:1162 -#: ../../operation/netflow/nf_live_view.php:141 -#: ../../enterprise/meta/advanced/agents_setup.php:34 -#: ../../enterprise/meta/advanced/policymanager.php:54 -#: ../../enterprise/meta/advanced/synchronizing.php:32 -#: ../../enterprise/meta/agentsearch.php:29 -#: ../../enterprise/meta/general/logon_ok.php:16 -#: ../../enterprise/meta/index.php:790 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:44 -#: ../../enterprise/meta/monitoring/group_view.php:34 -#: ../../enterprise/meta/monitoring/tactical.php:36 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:38 -msgid "Main" -msgstr "Principal" +#: ../../godmode/netflow/nf_edit.php:187 +#: ../../godmode/events/event_filter.php:179 +msgid "There are no defined filters" +msgstr "No hay filtros definidos" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:43 +msgid "Filter list" +msgstr "Lista de filtros" #: ../../godmode/netflow/nf_edit_form.php:55 #: ../../godmode/netflow/nf_edit_form.php:77 @@ -15667,2669 +31204,1427 @@ msgstr "Dirección IP origen" msgid "Dst Ip Address" msgstr "Dirección IP destino" -#: ../../godmode/netflow/nf_item_list.php:36 -#: ../../operation/reporting/reporting_viewer.php:79 -msgid "Report list" -msgstr "Lista de informes" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 +msgid "SNMP Trap generator" +msgstr "Generador de traps SNMP" -#: ../../godmode/netflow/nf_item_list.php:39 -#: ../../godmode/netflow/nf_item_list.php:46 -msgid "Report items" -msgstr "Elementos de informe" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:55 +msgid "Empty parameters" +msgstr "Parámetros vacíos" -#: ../../godmode/netflow/nf_item_list.php:42 -msgid "Edit report" -msgstr "Editar informe" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:61 +msgid "Successfully generated" +msgstr "Generado correctamente" -#: ../../godmode/netflow/nf_item_list.php:55 -msgid "Netflow reports" -msgstr "Informes Netflow" - -#: ../../godmode/netflow/nf_item_list.php:59 -msgid "Item list" -msgstr "Lista de elementos" - -#: ../../godmode/netflow/nf_item_list.php:175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1964 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 -#: ../../enterprise/dashboard/widgets/top_n.php:81 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2163 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2686 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 -msgid "Order" -msgstr "Orden" - -#: ../../godmode/netflow/nf_item_list.php:178 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2008 -#: ../../operation/netflow/nf_live_view.php:322 -msgid "Max. values" -msgstr "Valores máximos" - -#: ../../godmode/netflow/nf_item_list.php:179 -#: ../../operation/agentes/graphs.php:226 -msgid "Chart type" -msgstr "Tipo de gráfico" - -#: ../../godmode/netflow/nf_item_list.php:228 -#: ../../godmode/netflow/nf_item_list.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:372 -msgid "Move to down" -msgstr "Bajar" - -#: ../../godmode/netflow/nf_item_list.php:230 -#: ../../godmode/netflow/nf_item_list.php:232 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:362 -msgid "Move to up" -msgstr "Subir" - -#: ../../godmode/netflow/nf_item_list.php:279 -msgid "There are no defined items" -msgstr "No hay elementos definidos" - -#: ../../godmode/netflow/nf_item_list.php:284 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2796 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3096 -msgid "Create item" -msgstr "Crear elemento" - -#: ../../godmode/reporting/create_container.php:176 -#: ../../godmode/reporting/graph_container.php:72 -#: ../../godmode/reporting/graph_container.php:75 -#: ../../enterprise/godmode/reporting/graph_template_list.php:75 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:100 -msgid "Graph container" -msgstr "Contenedor de gráfica" - -#: ../../godmode/reporting/create_container.php:180 -#: ../../godmode/reporting/graph_container.php:84 -msgid "Create container" -msgstr "Crear contenedor" - -#: ../../godmode/reporting/create_container.php:183 -msgid "Container stored successfully" -msgstr "Contenedor guardado correctamente" - -#: ../../godmode/reporting/create_container.php:183 -msgid "There was a problem storing container" -msgstr "Hubo un problema al guardar el contenedor" - -#: ../../godmode/reporting/create_container.php:187 -msgid "Update the container" -msgstr "Actualizar contenedor" - -#: ../../godmode/reporting/create_container.php:187 -msgid "Bad update the container" -msgstr "Mala actualización del contenedor" - -#: ../../godmode/reporting/create_container.php:248 -msgid "Parent container" -msgstr "Contenedor padre" - -#: ../../godmode/reporting/create_container.php:255 -#: ../../godmode/reporting/create_container.php:271 -#: ../../godmode/setup/setup_general.php:385 ../../include/ajax/events.php:799 -#: ../../include/ajax/graph.ajax.php:141 ../../include/functions_html.php:799 -#: ../../operation/events/events_list.php:1592 -#: ../../operation/events/events_list.php:1683 -msgid "none" -msgstr "ninguno" - -#: ../../godmode/reporting/create_container.php:306 -#: ../../include/functions.php:2524 -msgid "custom" -msgstr "personalizado" - -#: ../../godmode/reporting/create_container.php:307 -#: ../../godmode/setup/performance.php:589 -#: ../../include/ajax/graph.ajax.php:142 ../../include/ajax/module.php:165 -#: ../../include/functions.php:2535 ../../include/functions.php:3198 -#: ../../operation/gis_maps/render_view.php:143 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:80 -#: ../../enterprise/dashboard/widgets/sla_percent.php:79 -#: ../../enterprise/dashboard/widgets/top_n.php:65 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 -msgid "1 hour" -msgstr "1 hora" - -#: ../../godmode/reporting/create_container.php:308 -#: ../../godmode/reporting/create_container.php:309 -#: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/graph.ajax.php:143 ../../include/ajax/graph.ajax.php:144 -#: ../../include/ajax/graph.ajax.php:145 ../../include/functions.php:2536 -#: ../../include/functions.php:2537 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:62 #, php-format -msgid "%s hours" -msgstr "%s horas" +msgid "Could not be generated: %s" +msgstr "No se pudo generar: %s" -#: ../../godmode/reporting/create_container.php:311 -#: ../../include/ajax/graph.ajax.php:146 ../../include/ajax/module.php:168 -#: ../../include/functions.php:2538 -#: ../../include/functions_notifications.php:724 -#: ../../enterprise/dashboard/widgets/top_n.php:69 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 -msgid "1 day" -msgstr "1 día" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 +msgid "Host address" +msgstr "Dirección del host" -#: ../../godmode/reporting/create_container.php:312 -#: ../../godmode/reporting/create_container.php:313 -#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148 -#, php-format -msgid "%s days" -msgstr "%s días" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:92 +#: ../../godmode/snmpconsole/snmp_alert.php:760 +#: ../../godmode/snmpconsole/snmp_alert.php:1272 +#: ../../operation/snmpconsole/snmp_view.php:804 +msgid "Enterprise String" +msgstr "Cadena Enterprise" -#: ../../godmode/reporting/create_container.php:314 -#: ../../include/ajax/graph.ajax.php:149 ../../include/ajax/module.php:169 -#: ../../include/functions.php:2539 -#: ../../include/functions_notifications.php:725 -msgid "1 week" -msgstr "1 semana" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:122 +msgid "SNMP Type" +msgstr "Tipo de SNMP" -#: ../../godmode/reporting/create_container.php:315 -#: ../../include/ajax/graph.ajax.php:150 ../../include/ajax/module.php:170 -#: ../../include/functions.php:2540 -#: ../../include/functions_notifications.php:726 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 -msgid "15 days" -msgstr "15 días" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:155 +msgid "Generate trap" +msgstr "Generar trap" -#: ../../godmode/reporting/create_container.php:316 -#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/module.php:171 -#: ../../include/functions.php:2541 -#: ../../include/functions_notifications.php:727 -msgid "1 month" -msgstr "1 mes" +#: ../../godmode/snmpconsole/snmp_alert.php:76 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +#: ../../godmode/snmpconsole/snmp_alert.php:92 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/snmpconsole/snmp_filters.php:41 +#: ../../operation/snmpconsole/snmp_statistics.php:57 +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:750 +msgid "SNMP Console" +msgstr "Consola SNMP" -#: ../../godmode/reporting/create_container.php:319 -#: ../../godmode/reporting/graph_builder.main.php:151 -#: ../../godmode/setup/setup_visuals.php:829 -#: ../../godmode/setup/setup_visuals.php:846 -#: ../../include/functions_visual_map_editor.php:502 -#: ../../operation/agentes/graphs.php:229 -#: ../../operation/agentes/graphs.php:236 -#: ../../operation/agentes/graphs.php:402 -#: ../../operation/agentes/graphs.php:421 -#: ../../operation/reporting/graph_viewer.php:262 -#: ../../enterprise/dashboard/widgets/custom_graph.php:48 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:213 -#: ../../enterprise/meta/advanced/metasetup.visual.php:205 -msgid "Area" -msgstr "Área" +#: ../../godmode/snmpconsole/snmp_alert.php:76 +msgid "Update alert" +msgstr "Actualizar alerta" -#: ../../godmode/reporting/create_container.php:320 -#: ../../godmode/reporting/graph_builder.main.php:153 -#: ../../godmode/reporting/visual_console_builder.elements.php:278 -#: ../../godmode/setup/setup_visuals.php:836 -#: ../../godmode/setup/setup_visuals.php:853 -#: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:501 -#: ../../include/functions_visual_map_editor.php:1309 -#: ../../operation/agentes/graphs.php:231 -#: ../../operation/agentes/graphs.php:237 -#: ../../operation/agentes/graphs.php:410 -#: ../../operation/agentes/graphs.php:425 -#: ../../operation/reporting/graph_viewer.php:264 -#: ../../enterprise/dashboard/widgets/custom_graph.php:50 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:215 -#: ../../enterprise/meta/advanced/metasetup.visual.php:212 -msgid "Line" -msgstr "Línea" +#: ../../godmode/snmpconsole/snmp_alert.php:92 +msgid "Alert overview" +msgstr "Vista general de alertas" -#: ../../godmode/reporting/create_container.php:325 -#: ../../godmode/reporting/create_container.php:434 -#: ../../godmode/reporting/create_container.php:488 -#: ../../godmode/reporting/reporting_builder.item_editor.php:984 -#: ../../godmode/reporting/reporting_builder.list_items.php:388 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1560 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:313 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 -msgid "Time lapse" -msgstr "Intervalo de tiempo" +#: ../../godmode/snmpconsole/snmp_alert.php:257 +msgid "There was a problem creating the alert" +msgstr "Hubo un problema al crear la alerta" -#: ../../godmode/reporting/create_container.php:326 -#: ../../godmode/reporting/create_container.php:435 -#: ../../godmode/reporting/create_container.php:489 -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. " +#: ../../godmode/snmpconsole/snmp_alert.php:380 +msgid "There was a problem updating the alert" +msgstr "Hubo un problema al actualizar la alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:662 +msgid "There was a problem duplicating the alert" +msgstr "Hubo un problema al duplicar la alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:665 +msgid "Successfully Duplicate" +msgstr "Duplicada correctamente" + +#: ../../godmode/snmpconsole/snmp_alert.php:683 +msgid "There was a problem deleting the alert" +msgstr "Error al borrar la alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:760 +msgid "Matches substrings. End the string with $ for exact matches." msgstr "" -"Este es el intervalo o período de tiempo en el que se obtendrán los datos de " -"la gráfica. Por ejemplo, una semana significa que habrá datos desde hace una " -"semana hasta ahora. " +"Coincide con las subcadenas. Escriba $ al final de la cadena para encontrar " +"coincidencias exactas." -#: ../../godmode/reporting/create_container.php:379 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3149 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3453 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 -#: ../../enterprise/dashboard/widgets/top_n.php:202 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3571 -msgid "Select an Agent first" -msgstr "Debe seleccionar primero un agente" +#: ../../godmode/snmpconsole/snmp_alert.php:812 +#: ../../godmode/snmpconsole/snmp_alert.php:819 +#: ../../godmode/snmpconsole/snmp_alert.php:828 +#: ../../godmode/snmpconsole/snmp_alert.php:837 +#: ../../godmode/snmpconsole/snmp_alert.php:846 +#: ../../godmode/snmpconsole/snmp_alert.php:855 +#: ../../godmode/snmpconsole/snmp_alert.php:864 +#: ../../godmode/snmpconsole/snmp_alert.php:872 +#: ../../godmode/snmpconsole/snmp_alert.php:880 +#: ../../godmode/snmpconsole/snmp_alert.php:888 +#: ../../godmode/snmpconsole/snmp_alert.php:896 +#: ../../godmode/snmpconsole/snmp_alert.php:904 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:920 +#: ../../godmode/snmpconsole/snmp_alert.php:928 +#: ../../godmode/snmpconsole/snmp_alert.php:936 +#: ../../godmode/snmpconsole/snmp_alert.php:944 +#: ../../godmode/snmpconsole/snmp_alert.php:952 +#: ../../godmode/snmpconsole/snmp_alert.php:960 +#: ../../godmode/snmpconsole/snmp_alert.php:968 +msgid "Variable bindings/Data" +msgstr "Enlaces variables/Datos" -#: ../../godmode/reporting/create_container.php:389 -#: ../../godmode/reporting/create_container.php:544 -#: ../../godmode/reporting/graph_builder.main.php:145 -#: ../../include/functions_visual_map_editor.php:498 -msgid "Type of graph" -msgstr "Tipo de gráfica" - -#: ../../godmode/reporting/create_container.php:398 -#: ../../godmode/reporting/create_container.php:455 -#: ../../godmode/reporting/create_container.php:550 -#: ../../godmode/reporting/graph_builder.main.php:184 -#: ../../operation/agentes/interface_traffic_graph_win.php:222 -#: ../../operation/agentes/stat_win.php:367 -msgid "Show full scale graph (TIP)" -msgstr "Mostrar gráfica a escala completa (TIP)" - -#: ../../godmode/reporting/create_container.php:409 -#: ../../godmode/reporting/create_container.php:462 -#: ../../godmode/reporting/create_container.php:557 -msgid "Add item" -msgstr "Añadir elemento" - -#: ../../godmode/reporting/create_container.php:441 -#: ../../godmode/reporting/create_container.php:583 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1720 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.elements.php:481 -#: ../../include/functions_reports.php:554 -#: ../../include/functions_reports.php:641 -#: ../../include/functions_reports.php:647 -#: ../../include/functions_visual_map_editor.php:363 -#: ../../include/functions_visual_map_editor.php:366 -#: ../../include/functions_reporting.php:7568 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1954 -msgid "Custom graph" -msgstr "Gráfica personalizada" - -#: ../../godmode/reporting/create_container.php:527 -#: ../../godmode/reporting/create_container.php:588 -#: ../../mobile/operation/modules.php:170 -#: ../../mobile/operation/modules.php:171 -#: ../../mobile/operation/modules.php:283 -#: ../../mobile/operation/modules.php:284 -#: ../../operation/agentes/group_view.php:283 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:404 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:175 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:324 -msgid "Tag" -msgstr "Etiqueta" - -#: ../../godmode/reporting/create_container.php:573 -msgid "There are no defined item container" -msgstr "No hay un contenedor de elementos definido" - -#: ../../godmode/reporting/create_container.php:582 -msgid "Agent/Module" -msgstr "Agente/módulo" - -#: ../../godmode/reporting/create_container.php:585 -msgid "M.Group" -msgstr "M.Grupo" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:200 -#: ../../godmode/reporting/reporting_builder.item_editor.php:933 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:246 -#: ../../godmode/reporting/visual_console_builder.wizard.php:466 -#: ../../include/functions_visual_map.php:4293 -#: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:194 -#: ../../include/functions_visual_map_editor.php:711 -#: ../../include/functions_visual_map_editor.php:1304 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:41 -#: ../../enterprise/dashboard/widgets/module_icon.php:54 -#: ../../enterprise/dashboard/widgets/module_status.php:41 -#: ../../enterprise/dashboard/widgets/module_value.php:54 -#: ../../enterprise/dashboard/widgets/sla_percent.php:40 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1547 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:519 -#: ../../enterprise/include/functions_reporting_csv.php:951 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:622 -msgid "Label" -msgstr "Etiqueta" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:201 -#: ../../godmode/reporting/graph_builder.graph_editor.php:370 -#: ../../enterprise/extensions/visual_console_manager.php:263 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:154 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:208 -msgid "Weight" -msgstr "Peso" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:203 -#: ../../godmode/reporting/graph_builder.graph_editor.php:304 -#: ../../godmode/reporting/reporting_builder.list_items.php:404 -#: ../../godmode/reporting/reporting_builder.list_items.php:639 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1434 -#: ../../enterprise/godmode/alerts/alert_events_list.php:499 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2622 -#: ../../enterprise/meta/include/functions_autoprovision.php:447 -#: ../../enterprise/meta/include/functions_autoprovision.php:612 -msgid "Sort" -msgstr "Ordenar" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:270 -#: ../../godmode/reporting/graph_builder.graph_editor.php:274 -#: ../../godmode/reporting/reporting_builder.list_items.php:605 -#: ../../godmode/reporting/reporting_builder.list_items.php:609 -msgid "Sort items" -msgstr "Ordenar elementos" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:277 -msgid "Sort selected items" -msgstr "Ordenar elementos seleccionados" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:280 -msgid "before to" -msgstr "antes de" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:281 -msgid "after to" -msgstr "después de" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:320 -#: ../../include/ajax/events.php:561 ../../operation/events/events_list.php:426 -#: ../../enterprise/godmode/policies/policy_agents.php:448 -#: ../../enterprise/godmode/policies/policy_agents.php:482 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:391 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:159 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:543 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:117 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 -msgid "Filter group" -msgstr "Filtrar grupo" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:334 -#: ../../godmode/reporting/visual_console_builder.wizard.php:428 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../godmode/snmpconsole/snmp_alert.php:1120 msgid "" -"If you select several agents, only the common modules will be displayed" -msgstr "Si selecciona varios agentes, solo se mostrarán los módulos comunes" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Variable bindings/Datas." +msgstr "" +"Búsqueda por estos campos de descripción: OID, Valor personalizado, Agente " +"SNMP (IP), Valor individual, cada Enlace Variable/Datos." -#: ../../godmode/reporting/graph_builder.graph_editor.php:399 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:359 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 -msgid "Please, select a module" -msgstr "Por favor, selecciona un módulo." +#: ../../godmode/snmpconsole/snmp_alert.php:1139 +msgid "Alert SNMP control filter" +msgstr "Filtro de control de alerta SNMP" -#: ../../godmode/reporting/graph_builder.graph_editor.php:450 -#: ../../godmode/reporting/reporting_builder.list_items.php:743 -msgid "Please select any item to order" -msgstr "Por favor, selecciona cualquier elemento para ordenar." +#: ../../godmode/snmpconsole/snmp_alert.php:1224 +msgid "There are no SNMP alerts" +msgstr "Ninguna alerta SNMP definida" -#: ../../godmode/reporting/graph_builder.main.php:152 -#: ../../operation/reporting/graph_viewer.php:263 -#: ../../enterprise/dashboard/widgets/custom_graph.php:49 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:214 -msgid "Stacked area" -msgstr "Área apilada" +#: ../../godmode/snmpconsole/snmp_alert.php:1275 +msgid "Custom Value/Enterprise String" +msgstr "Valor personalizado/Cadena Enterprise" -#: ../../godmode/reporting/graph_builder.main.php:154 -#: ../../operation/reporting/graph_viewer.php:265 -#: ../../enterprise/dashboard/widgets/custom_graph.php:51 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:216 -msgid "Stacked line" -msgstr "Línea apilada" +#: ../../godmode/snmpconsole/snmp_alert.php:1280 +#: ../../include/functions_reporting_html.php:4064 +#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_treeview.php:458 +msgid "Times fired" +msgstr "Nº de veces disparada" -#: ../../godmode/reporting/graph_builder.main.php:155 -#: ../../operation/reporting/graph_viewer.php:266 -#: ../../enterprise/dashboard/widgets/custom_graph.php:52 -msgid "Bullet chart" -msgstr "Gráfico de puntos" +#: ../../godmode/snmpconsole/snmp_alert.php:1280 +msgid "TF." +msgstr "TF." -#: ../../godmode/reporting/graph_builder.main.php:156 -#: ../../operation/reporting/graph_viewer.php:267 -#: ../../enterprise/dashboard/widgets/custom_graph.php:53 -msgid "Gauge" -msgstr "Calibrador" +#: ../../godmode/snmpconsole/snmp_alert.php:1356 +msgid "ID Alert SNMP" +msgstr "ID alerta SNMP" -#: ../../godmode/reporting/graph_builder.main.php:157 -#: ../../enterprise/operation/log/log_viewer.php:607 -msgid "Horizontal bars" -msgstr "Barras horizontales" +#: ../../godmode/snmpconsole/snmp_alert.php:1602 +msgid "Add action " +msgstr "Añadir acción " -#: ../../godmode/reporting/graph_builder.main.php:158 -#: ../../enterprise/operation/log/log_viewer.php:608 -msgid "Vertical bars" -msgstr "Barras verticales" +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "Revisión del filtro" -#: ../../godmode/reporting/graph_builder.main.php:159 -#: ../../operation/reporting/graph_viewer.php:270 -#: ../../enterprise/dashboard/widgets/custom_graph.php:56 -msgid "Pie" -msgstr "Gráfico circular" +#: ../../godmode/snmpconsole/snmp_filters.php:87 +msgid "There was a problem updating the filter" +msgstr "Error al actualizar el filtro" -#: ../../godmode/reporting/graph_builder.main.php:165 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2081 -#: ../../include/functions.php:3803 ../../include/functions.php:3811 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2249 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:568 -msgid "Percentil" -msgstr "Percentil" +#: ../../godmode/snmpconsole/snmp_filters.php:105 +#: ../../godmode/snmpconsole/snmp_filters.php:131 +msgid "Description is empty" +msgstr "La descripción está vacía" -#: ../../godmode/reporting/graph_builder.main.php:167 -#: ../../operation/reporting/graph_viewer.php:275 -msgid "Equalize maximum thresholds" -msgstr "Igualar umbrales máximos" +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "Filter is empty" +msgstr "El filtro está vacío" -#: ../../godmode/reporting/graph_builder.main.php:167 -#: ../../operation/reporting/graph_viewer.php:275 +#: ../../godmode/snmpconsole/snmp_filters.php:128 +msgid "Filters are empty" +msgstr "Los filtros están vacíos" + +#: ../../godmode/snmpconsole/snmp_filters.php:138 +msgid "There was a problem creating the filter" +msgstr "Error al crear el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:157 +msgid "There was a problem deleting the filter" +msgstr "Error al borrar el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:200 +#: ../../godmode/snmpconsole/snmp_filters.php:210 msgid "" -"If an option is selected, all graphs will have the highest value from all " -"modules included in the graph as a maximum threshold" +"This field contains a substring, could be part of a IP address, a numeric " +"OID, or a plain substring" 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." +"Este campo contiene una subcadena que podría ser parte de una dirección IP, " +"un OID numérico o una subcadena simple." -#: ../../godmode/reporting/graph_builder.main.php:170 -msgid "Add summatory series" -msgstr "Añadir series sumatorias" +#: ../../godmode/snmpconsole/snmp_filters.php:202 +msgid "Click to remove the filter" +msgstr "Haz clic para quitar el filtro" -#: ../../godmode/reporting/graph_builder.main.php:172 -msgid "" -"Adds synthetic series to the graph, using all module \n" -"\tvalues to calculate the summation and/or average in each time interval. \n" -"\tThis feature could be used instead of synthetic modules if you only want " -"to see a graph." -msgstr "" -"Añade series sintéticas a la gráfica, usando todos los valores\n" -"\tdel módulo para calcular el sumatorio y/o el promedio en cada intervalo " -"de tiempo. \n" -"\tSe puede usar esta característica en lugar de los módulos sintéticos si " -"solo se quiere ver una gráfica." +#: ../../godmode/snmpconsole/snmp_filters.php:228 +msgid "Click to add new filter" +msgstr "Haz clic para añadir filtro nuevo" -#: ../../godmode/reporting/graph_builder.main.php:179 -msgid "Add average series" -msgstr "Añadir series de promedios" +#: ../../godmode/menu.php:33 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "Lista de tareas" -#: ../../godmode/reporting/graph_builder.main.php:181 -msgid "Modules and series" -msgstr "Módulos y series" +#: ../../godmode/menu.php:41 +msgid "Network scan" +msgstr "Escaneado de red" -#: ../../godmode/reporting/graph_builder.main.php:184 -#: ../../godmode/setup/setup_visuals.php:868 -#: ../../operation/agentes/interface_traffic_graph_win.php:223 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2239 -#: ../../enterprise/meta/advanced/metasetup.visual.php:153 -msgid "This option may cause performance issues" -msgstr "Esta opción puede generar problemas de rendimiento" +#: ../../godmode/menu.php:43 +msgid "Custom network scan" +msgstr "Escaneo de red personalizado" -#: ../../godmode/reporting/graph_builder.php:249 -#: ../../godmode/reporting/graph_container.php:55 -#: ../../godmode/reporting/graphs.php:45 ../../godmode/reporting/graphs.php:56 -#: ../../operation/reporting/graph_viewer.php:152 -#: ../../enterprise/godmode/reporting/graph_template_list.php:32 -#: ../../enterprise/godmode/reporting/graph_template_list.php:44 -#: ../../enterprise/godmode/reporting/graph_template_list.php:55 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:90 -msgid "Graph list" -msgstr "Lista de la gráfica" +#: ../../godmode/menu.php:47 +msgid "Manage scan scripts" +msgstr "Gestionar guiones de escaneo" -#: ../../godmode/reporting/graph_builder.php:253 -#: ../../godmode/reporting/reporting_builder.main.php:63 -#: ../../godmode/reporting/reporting_builder.php:3068 -#: ../../godmode/reporting/visual_console_builder.php:768 -#: ../../operation/reporting/graph_viewer.php:156 -#: ../../operation/reporting/reporting_viewer.php:87 -#: ../../operation/visual_console/legacy_view.php:139 -#: ../../operation/visual_console/pure_ajax.php:136 -#: ../../operation/visual_console/view.php:101 -#: ../../enterprise/meta/screens/screens.visualmap.php:151 -msgid "Main data" -msgstr "Datos principales" +#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "Host & devices" -#: ../../godmode/reporting/graph_builder.php:257 -#: ../../operation/reporting/graph_viewer.php:160 -msgid "Graph editor" -msgstr "Editor de gráficas" +#: ../../godmode/menu.php:83 +msgid "Module categories" +msgstr "Categorías de módulos" -#: ../../godmode/reporting/graph_builder.php:261 -#: ../../operation/reporting/graph_viewer.php:168 -msgid "View graph" -msgstr "Ver gráfica" +#: ../../godmode/menu.php:87 +msgid "Module types" +msgstr "Tipos de módulos" -#: ../../godmode/reporting/graph_builder.php:273 -msgid "Graph builder" -msgstr "Creador de gráficos" +#: ../../godmode/menu.php:111 +msgid "Manage agents groups" +msgstr "Configuración de grupos de agentes" -#: ../../godmode/reporting/graph_builder.php:307 -msgid "Graph stored successfully" -msgstr "Gráfica almacenada correctamente" +#: ../../godmode/menu.php:148 ../../include/class/ConfigPEN.class.php:331 +#: ../../include/class/ConfigPEN.class.php:339 +msgid "Private Enterprise Numbers" +msgstr "Números privados de empresa" -#: ../../godmode/reporting/graph_builder.php:307 -msgid "There was a problem storing Graph" -msgstr "Error al almacenar el gráfico" +#: ../../godmode/menu.php:152 +msgid "Remote components" +msgstr "Componentes remotos" -#: ../../godmode/reporting/graph_builder.php:311 -msgid "There was a problem adding Module" -msgstr "Ha surgido un problema al añadir el módulo." +#: ../../godmode/menu.php:176 ../../godmode/massive/massive_operations.php:268 +msgid "Bulk operations" +msgstr "Operaciones masivas" -#: ../../godmode/reporting/graph_builder.php:315 -msgid "Update the graph" -msgstr "Actualizar el gráfico" +#: ../../godmode/menu.php:181 ../../godmode/massive/massive_operations.php:206 +msgid "Agents operations" +msgstr "Operaciones sobre agentes" -#: ../../godmode/reporting/graph_builder.php:315 -msgid "Bad update the graph" -msgstr "No se pudo actualizar el gráfico." +#: ../../godmode/menu.php:182 ../../godmode/massive/massive_operations.php:214 +msgid "Modules operations" +msgstr "Operaciones sobre módulos" -#: ../../godmode/reporting/graph_builder.php:319 -msgid "Graph deleted successfully" -msgstr "Gráfico borrado correctamente" +#: ../../godmode/menu.php:183 ../../godmode/massive/massive_operations.php:222 +msgid "Plugins operations" +msgstr "Operaciones de plugins" -#: ../../godmode/reporting/graph_builder.php:319 -msgid "There was a problem deleting Graph" -msgstr "Ha surgido un problema al borrar el gráfico." +#: ../../godmode/menu.php:185 ../../godmode/massive/massive_operations.php:198 +msgid "Users operations" +msgstr "Operaciones sobre usuarios" -#: ../../godmode/reporting/graphs.php:77 -msgid "Graphs containers" -msgstr "Contenedores de gráficos" +#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:190 +msgid "Alerts operations" +msgstr "Operaciones sobre alertas" -#: ../../godmode/reporting/graphs.php:87 -#: ../../godmode/reporting/map_builder.php:84 -#: ../../godmode/reporting/reporting_builder.php:529 -#: ../../godmode/reporting/reporting_builder.php:536 -#: ../../godmode/reporting/reporting_builder.php:3025 -#: ../../godmode/reporting/reporting_builder.php:3032 -#: ../../godmode/reporting/reporting_builder.php:3114 -#: ../../godmode/reporting/reporting_builder.php:3121 -#: ../../godmode/reporting/visual_console_favorite.php:78 -#: ../../operation/menu.php:323 -#: ../../operation/reporting/custom_reporting.php:23 -#: ../../operation/reporting/graph_viewer.php:362 -#: ../../operation/reporting/reporting_viewer.php:129 -#: ../../operation/reporting/reporting_viewer.php:134 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:232 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:273 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:276 -#: ../../enterprise/meta/general/logon_ok.php:66 -msgid "Reporting" -msgstr "Informes" +#: ../../godmode/menu.php:212 +msgid "List of Alerts" +msgstr "Lista de alertas" -#: ../../godmode/reporting/graphs.php:87 ../../operation/menu.php:339 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 -msgid "Custom graphs" -msgstr "Gráficos personalizados" +#: ../../godmode/menu.php:227 ../../godmode/menu.php:228 +#: ../../godmode/alerts/alert_special_days.php:45 +msgid "Special days list" +msgstr "Lista de días especiales" -#: ../../godmode/reporting/graphs.php:172 -#: ../../godmode/reporting/reporting_builder.php:665 -msgid "Free text for search: " -msgstr "Texto libre de búsqueda " +#: ../../godmode/menu.php:232 ../../include/functions_menu.php:543 +msgid "SNMP alerts" +msgstr "Alertas SNMP" -#: ../../godmode/reporting/graphs.php:173 -#: ../../godmode/reporting/reporting_builder.php:667 -msgid "Search by report name or description, list matches." -msgstr "" -"Búsqueda por nombre del informe o descripción, lista de coincidencias" +#: ../../godmode/menu.php:243 +msgid "Event filters" +msgstr "Filtro de eventos" -#: ../../godmode/reporting/graphs.php:185 -#: ../../godmode/reporting/reporting_builder.php:693 -msgid "Show Option" -msgstr "Mostrar opciones" +#: ../../godmode/menu.php:248 +msgid "Custom events" +msgstr "Eventos personalizados" -#: ../../godmode/reporting/graphs.php:263 -#: ../../include/functions_container.php:147 -#: ../../operation/reporting/graph_viewer.php:373 -#: ../../operation/search_graphs.php:29 -msgid "Graph name" -msgstr "Nombre del gráfico" +#: ../../godmode/menu.php:271 +msgid "Manage servers" +msgstr "Gestionar servidores" -#: ../../godmode/reporting/graphs.php:265 -#: ../../include/functions_container.php:149 -msgid "Number of Graphs" -msgstr "Número de gráficos" +#: ../../godmode/menu.php:305 +#: ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" +msgstr "Configuración general" -#: ../../godmode/reporting/graphs.php:334 -msgid "Create graph" -msgstr "Crear gráfico" +#: ../../godmode/menu.php:330 ../../godmode/setup/setup.php:127 +#: ../../godmode/setup/setup.php:191 +#: ../../operation/agentes/ver_agente.php:1301 +msgid "eHorus" +msgstr "eHorus" -#: ../../godmode/reporting/map_builder.php:56 -#: ../../godmode/reporting/visual_console_favorite.php:49 -#: ../../enterprise/extensions/visual_console_manager.php:150 -#: ../../enterprise/godmode/reporting/visual_console_template.php:58 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:57 -msgid "Visual Console List" -msgstr "Lista de la consola visual" +#: ../../godmode/menu.php:333 ../../godmode/setup/setup.php:122 +#: ../../godmode/setup/setup.php:197 ../../godmode/setup/setup_integria.php:507 +msgid "Integria IMS" +msgstr "Integria IMS" -#: ../../godmode/reporting/map_builder.php:61 -#: ../../godmode/reporting/visual_console_favorite.php:54 -#: ../../godmode/reporting/visual_console_favorite.php:78 -#: ../../enterprise/extensions/visual_console_manager.php:155 -#: ../../enterprise/godmode/reporting/visual_console_template.php:63 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 -msgid "Visual Favourite Console" -msgstr "Consola visual favorita" +#: ../../godmode/menu.php:338 ../../godmode/setup/setup.php:140 +#: ../../godmode/setup/setup.php:214 +msgid "Notifications" +msgstr "Notificaciones" -#: ../../godmode/reporting/map_builder.php:67 -#: ../../godmode/reporting/visual_console_favorite.php:60 -#: ../../enterprise/extensions/visual_console_manager.php:161 -#: ../../enterprise/godmode/reporting/visual_console_template.php:69 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:68 -msgid "Visual Console Template" -msgstr "Plantilla de la consola visual" +#: ../../godmode/menu.php:341 +msgid "Websocket Engine" +msgstr "Websocket Engine" -#: ../../godmode/reporting/map_builder.php:72 -#: ../../godmode/reporting/visual_console_favorite.php:65 -#: ../../enterprise/extensions/visual_console_manager.php:166 -#: ../../enterprise/godmode/reporting/visual_console_template.php:74 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:73 -msgid "Visual Console Template Wizard" -msgstr "Asistente de plantilla de consola visual" +#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:209 +msgid "Map conections GIS" +msgstr "Conexión de mapa GIS" -#: ../../godmode/reporting/map_builder.php:77 -#: ../../godmode/reporting/visual_console_favorite.php:71 -#: ../../enterprise/extensions/visual_console_manager.php:171 -#: ../../enterprise/extensions/visual_console_manager.php:182 -#: ../../enterprise/extensions/visual_console_manager.php:426 -#: ../../enterprise/extensions/visual_console_manager.php:429 -#: ../../enterprise/godmode/reporting/visual_console_template.php:80 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:79 -msgid "Visual Console Manager" -msgstr "Gestor de consola visual" +#: ../../godmode/menu.php:349 ../../godmode/setup/os.php:147 +msgid "Edit OS" +msgstr "Editar SO" -#: ../../godmode/reporting/map_builder.php:270 -#: ../../godmode/reporting/map_builder.php:278 -msgid "Not copied. Error copying data" -msgstr "Se ha producido un error al copiar los datos." +#: ../../godmode/menu.php:360 +msgid "Admin tools" +msgstr "Herramientas administrativas" -#: ../../godmode/reporting/map_builder.php:319 -#: ../../godmode/reporting/visual_console_favorite.php:135 -msgid "Group Recursion" -msgstr "Recursividad de grupo" +#: ../../godmode/menu.php:368 +msgid "System audit log" +msgstr "Logs de auditoría del sistema" -#: ../../godmode/reporting/map_builder.php:335 -msgid "Map name" +#: ../../godmode/menu.php:372 +msgid "Diagnostic info" +msgstr "Información de diagnóstico" + +#: ../../godmode/menu.php:376 +msgid "Site news" +msgstr "Noticias del sistema" + +#: ../../godmode/menu.php:382 +msgid "DB Schema Check" +msgstr "Comprobación del esquema de la BD" + +#: ../../godmode/menu.php:385 +msgid "DB Interface" +msgstr "Interfaz de la BBDD" + +#: ../../godmode/menu.php:471 +msgid "Extension manager view" +msgstr "Vista del gestor de extensiones" + +#: ../../godmode/menu.php:475 +msgid "Extension manager" +msgstr "Gestor de extensión" + +#: ../../godmode/menu.php:506 +msgid "Update manager" +msgstr "Administrador de actualizaciones" + +#: ../../godmode/menu.php:512 +msgid "Update Manager offline" +msgstr "Administrador de actualizaciones sin conexión" + +#: ../../godmode/menu.php:516 +msgid "Update Manager online" +msgstr "Administrador de actualizaciones con conexión" + +#: ../../godmode/menu.php:518 +msgid "Update Manager options" +msgstr "Opciones del Administrador de actualizaciones" + +#: ../../godmode/menu.php:526 +msgid "Module library" +msgstr "Librería de módulos" + +#: ../../godmode/menu.php:534 +#: ../../godmode/module_library/module_library_view.php:51 +#: ../../godmode/module_library/module_library_view.php:86 +msgid "Categories" +msgstr "Categorías" + +#: ../../godmode/gis_maps/configure_gis_map.php:143 +msgid "Map successfully created" +msgstr "Mapa creado correctamente" + +#: ../../godmode/gis_maps/configure_gis_map.php:144 +msgid "Map could not be created" +msgstr "No se pudo crear el mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:246 +msgid "Map successfully update" +msgstr "Mapa actualizado correctamente" + +#: ../../godmode/gis_maps/configure_gis_map.php:247 +msgid "Map could not be updated" +msgstr "No se pudo actualizar el mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:262 +#: ../../operation/gis_maps/gis_map.php:30 +msgid "GIS Maps list" +msgstr "Lista de mapas GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:271 +msgid "View GIS" +msgstr "Ver GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:277 +msgid "GIS Maps builder" +msgstr "Creador de mapas GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:326 +msgid "Do you want to use the default data from the connection?" +msgstr "¿Quieres usar los datos que vienen por defecto de la conexión?" + +#: ../../godmode/gis_maps/configure_gis_map.php:360 +msgid "The connection" +msgstr "La conexión" + +#: ../../godmode/gis_maps/configure_gis_map.php:360 +msgid "just added previously." +msgstr "ya ha sido añadido." + +#: ../../godmode/gis_maps/configure_gis_map.php:423 +msgid "Map Name" msgstr "Nombre del mapa" -#: ../../godmode/reporting/map_builder.php:337 -#: ../../enterprise/dashboard/widgets/top_n.php:106 -msgid "Items" -msgstr "Elementos" +#: ../../godmode/gis_maps/configure_gis_map.php:442 +msgid "Add Map connection" +msgstr "Añadir conexión al mapa" -#: ../../godmode/reporting/reporting_builder.item_editor.php:55 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:55 -msgid "Only table" -msgstr "Solo tabla" +#: ../../godmode/gis_maps/configure_gis_map.php:465 +msgid "Default zoom" +msgstr "Zoom por defecto" -#: ../../godmode/reporting/reporting_builder.item_editor.php:56 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:56 -msgid "Table & Graph" -msgstr "Tabla y gráfico" +#: ../../godmode/gis_maps/configure_gis_map.php:468 +msgid "Center Latitude" +msgstr "Latitud central" -#: ../../godmode/reporting/reporting_builder.item_editor.php:57 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 -msgid "Only graph" -msgstr "Solo gráfico" +#: ../../godmode/gis_maps/configure_gis_map.php:471 +msgid "Center Longitude" +msgstr "Longitud central" -#: ../../godmode/reporting/reporting_builder.item_editor.php:61 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1967 -#: ../../enterprise/dashboard/widgets/top_n.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:378 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:61 -msgid "Ascending" -msgstr "Ascendente" +#: ../../godmode/gis_maps/configure_gis_map.php:474 +msgid "Center Altitude" +msgstr "Altitud central" -#: ../../godmode/reporting/reporting_builder.item_editor.php:62 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1974 -#: ../../enterprise/dashboard/widgets/top_n.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2173 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:62 -msgid "Descending" -msgstr "Descendente" +#: ../../godmode/gis_maps/configure_gis_map.php:477 +msgid "Default Latitude" +msgstr "Latitud por defecto" -#: ../../godmode/reporting/reporting_builder.item_editor.php:789 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1487 -msgid "Item Editor" -msgstr "Editor de elemento" +#: ../../godmode/gis_maps/configure_gis_map.php:480 +msgid "Default Longitude" +msgstr "Longitud por defecto" -#: ../../godmode/reporting/reporting_builder.item_editor.php:810 -msgid "Not valid" -msgstr "No válido" +#: ../../godmode/gis_maps/configure_gis_map.php:483 +msgid "Default Altitude" +msgstr "Altitud por defecto" -#: ../../godmode/reporting/reporting_builder.item_editor.php:818 +#: ../../godmode/gis_maps/configure_gis_map.php:488 +#: ../../godmode/setup/gis_step_2.php:287 +msgid "Layers" +msgstr "Capas" + +#: ../../godmode/gis_maps/configure_gis_map.php:497 +msgid "List of layers" +msgstr "Lista de capas" + +#: ../../godmode/gis_maps/configure_gis_map.php:498 +msgid "New layer" +msgstr "Nueva capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:504 +msgid "Layer name" +msgstr "Nombre de la capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:506 +msgid "Visible" +msgstr "Visible" + +#: ../../godmode/gis_maps/configure_gis_map.php:510 +msgid "Show agents from group" +msgstr "Mostrar agentes del grupo" + +#: ../../godmode/gis_maps/configure_gis_map.php:522 +msgid "Add agent" +msgstr "Añadir agente" + +#: ../../godmode/gis_maps/configure_gis_map.php:541 +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:570 +msgid "Use the data of this agent" +msgstr "Utilice los datos de este agente" + +#: ../../godmode/gis_maps/configure_gis_map.php:578 +msgid "List of groups to be shown in the layer" +msgstr "Lista de grupos a mostrar en la capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:585 +msgid "Save Layer" +msgstr "Guardar capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:601 +#: ../../godmode/gis_maps/configure_gis_map.php:608 +msgid "Save map" +msgstr "Guardar mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:603 +msgid "Update map" +msgstr "Actualizar mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:975 +msgid "Using data from" +msgstr "Utilizando los datos de" + +#: ../../godmode/gis_maps/configure_gis_map.php:1133 +msgid "Empty layer names are not supported" +msgstr "No se admiten nombres de capa vacíos" + +#: ../../godmode/massive/massive_copy_modules.php:177 +msgid "Copy alerts" +msgstr "Copiar alertas" + +#: ../../godmode/massive/massive_copy_modules.php:180 +#: ../../godmode/massive/massive_delete_modules.php:434 +#: ../../godmode/massive/massive_edit_modules.php:393 +msgid "Filter Modules" +msgstr "Filtrar módulos" + +#: ../../godmode/massive/massive_copy_modules.php:214 +msgid "No alerts for this agent" +msgstr "Ninguna alerta para este agente" + +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:506 +msgid "Filter Agents" +msgstr "Filtrar agentes" + +#: ../../godmode/massive/massive_copy_modules.php:293 +msgid "To agent(s)" +msgstr "A los agentes" + +#: ../../godmode/massive/massive_copy_modules.php:543 +msgid "No operation selected" +msgstr "No se seleccionó ninguna operación" + +#: ../../godmode/massive/massive_copy_modules.php:553 +#: ../../include/functions_agents.php:768 +msgid "No destiny agent(s) to copy" +msgstr "No hay agentes destino a los que copiar" + +#: ../../godmode/massive/massive_operations.php:37 +msgid "Bulk alert add" +msgstr "Añadir alerta masiva" + +#: ../../godmode/massive/massive_operations.php:38 +msgid "Bulk alert delete" +msgstr "Eliminar alerta masiva" + +#: ../../godmode/massive/massive_operations.php:39 +msgid "Bulk alert actions add" +msgstr "Añadir acciones de alerta masiva" + +#: ../../godmode/massive/massive_operations.php:40 +msgid "Bulk alert actions delete" +msgstr "Eliminar acciones de alerta masiva" + +#: ../../godmode/massive/massive_operations.php:41 +msgid "Bulk alert enable/disable" +msgstr "Habilitar/Deshabilitar alerta masiva" + +#: ../../godmode/massive/massive_operations.php:42 +msgid "Bulk alert setting standby" +msgstr "Configuración standby de alertas masivas" + +#: ../../godmode/massive/massive_operations.php:46 +msgid "Bulk agent edit" +msgstr "Edición agentes masiva" + +#: ../../godmode/massive/massive_operations.php:47 +msgid "Bulk agent delete" +msgstr "Eliminar agentes de forma masiva" + +#: ../../godmode/massive/massive_operations.php:52 +msgid "Bulk profile add" +msgstr "Añadir perfiles de forma masiva" + +#: ../../godmode/massive/massive_operations.php:53 +msgid "Bulk profile delete" +msgstr "Eliminar perfiles de forma masiva" + +#: ../../godmode/massive/massive_operations.php:60 +msgid "Bulk module edit" +msgstr "Editar módulos de forma masiva" + +#: ../../godmode/massive/massive_operations.php:61 +msgid "Bulk module copy" +msgstr "Copiar módulos de forma masiva" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk module delete" +msgstr "Eliminar módulos de forma masiva" + +#: ../../godmode/massive/massive_operations.php:66 +msgid "Bulk plugin edit" +msgstr "Editar plugins de forma masiva" + +#: ../../godmode/massive/massive_operations.php:304 +msgid "Please wait..." +msgstr "Por favor, espere..." + +#: ../../godmode/massive/massive_operations.php:354 +msgid "The blank fields will not be updated" +msgstr "Los campos en blanco no se actualizarán." + +#: ../../godmode/massive/massive_standby_alerts.php:184 +msgid "Not standby alerts" +msgstr "Alertas sin standby" + +#: ../../godmode/massive/massive_standby_alerts.php:213 +#: ../../godmode/massive/massive_standby_alerts.php:217 +msgid "Set standby selected alerts" +msgstr "Poner en standby las alertas seleccionadas" + +#: ../../godmode/massive/massive_standby_alerts.php:219 +msgid "Standby alerts" +msgstr "Alertas en standby" + +#: ../../godmode/massive/massive_delete_action_alerts.php:60 +msgid "Could not be deleted. No agents selected" +msgstr "No se puede borrar. Ningún agente seleccionado" + +#: ../../godmode/massive/massive_delete_action_alerts.php:88 +msgid "Could not be deleted. No alerts selected" +msgstr "No se puede borrar. No hay alertas seleccionadas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:135 +msgid "Could not be deleted. No action selected" +msgstr "No se puede eliminar. No hay acciones seleccionadas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:184 +#: ../../godmode/massive/massive_add_action_alerts.php:171 +msgid "Agents with templates" +msgstr "Agentes con plantillas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:201 +#: ../../godmode/massive/massive_delete_modules.php:532 +#: ../../godmode/massive/massive_add_action_alerts.php:188 +#: ../../godmode/massive/massive_edit_modules.php:502 +msgid "Show unknown and not init modules" +msgstr "Mostrar módulos desconocidos y no iniciados" + +#: ../../godmode/massive/massive_delete_modules.php:67 +msgid "No module selected" +msgstr "No se seleccionó ningún módulo" + +#: ../../godmode/massive/massive_delete_modules.php:137 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." +"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/reporting/reporting_builder.item_editor.php:920 -msgid "Local metaconsole" -msgstr "Metaconsola local" +#: ../../godmode/massive/massive_delete_modules.php:294 +#: ../../godmode/massive/massive_edit_modules.php:274 +msgid "Selection mode" +msgstr "Modo de selección" -#: ../../godmode/reporting/reporting_builder.item_editor.php:968 -msgid "Log number" -msgstr "Número de logs" +#: ../../godmode/massive/massive_delete_modules.php:295 +#: ../../godmode/massive/massive_edit_modules.php:275 +msgid "Select modules first " +msgstr "Seleccionar primero los módulos " -#: ../../godmode/reporting/reporting_builder.item_editor.php:970 +#: ../../godmode/massive/massive_delete_modules.php:296 +#: ../../godmode/massive/massive_edit_modules.php:276 +msgid "Select agents first " +msgstr "Seleccionar primero los agentes " + +#: ../../godmode/massive/massive_delete_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:298 +msgid "Select all modules of this type" +msgstr "Seleccionar todos los módulos de este tipo" + +#: ../../godmode/massive/massive_delete_modules.php:363 +#: ../../godmode/massive/massive_edit_modules.php:344 +msgid "Select all modules of this group" +msgstr "Seleccionar todos los módulos de este grupo" + +#: ../../godmode/massive/massive_delete_modules.php:412 +#: ../../godmode/massive/massive_edit_modules.php:355 +#: ../../godmode/events/custom_events.php:115 +#: ../../include/functions_events.php:292 +#: ../../operation/events/events.build_table.php:340 +msgid "Module Status" +msgstr "Estado de módulo" + +#: ../../godmode/massive/massive_delete_modules.php:455 +#: ../../godmode/massive/massive_edit_modules.php:410 +msgid "When select modules" +msgstr "Cuando se seleccionan módulos" + +#: ../../godmode/massive/massive_delete_modules.php:459 +#: ../../godmode/massive/massive_edit_modules.php:414 +msgid "Show common agents" +msgstr "Mostrar agentes comunes" + +#: ../../godmode/massive/massive_delete_modules.php:460 +#: ../../godmode/massive/massive_edit_modules.php:415 +msgid "Show all agents" +msgstr "Mostrar todos los agentes" + +#: ../../godmode/massive/massive_delete_modules.php:572 +#: ../../godmode/massive/massive_edit_modules.php:1182 +msgid "Please, select an agent first" +msgstr "Primero seleccione un agente" + +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:93 +msgid "No alert selected" +msgstr "No se seleccionó ninguna alerta" + +#: ../../godmode/massive/massive_delete_agents.php:60 +#, php-format msgid "" -"Warning: this parameter limits the contents of the logs and affects the " -"performance." +"There was an error deleting the agent, the operation has been cancelled " +"Could not delete agent %s" msgstr "" -"Advertencia: este parámetro limita los contenidos de los logs y afecta al " -"rendimiento." +"Se produjo un error al eliminar el agente. La operación ha sido cancelada. " +"No se pudo eliminar el agente %s." -#: ../../godmode/reporting/reporting_builder.item_editor.php:986 +#: ../../godmode/massive/massive_delete_agents.php:70 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "Borrado correctamente (%s)" + +#: ../../godmode/massive/massive_delete_agents.php:153 +#: ../../godmode/massive/massive_edit_agents.php:439 +msgid "Show agents" +msgstr "Mostrar agentes" + +#: ../../godmode/massive/massive_edit_plugins.php:162 +msgid "Error retrieving the plugin macros" +msgstr "Error al recuperar las macros de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:170 +msgid "Error retrieving the modified macros" +msgstr "Error al recuperar las macros modificadas" + +#: ../../godmode/massive/massive_edit_plugins.php:193 +msgid "Error retrieving the module plugin macros" +msgstr "Error al recuperar las macros del módulo de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:211 +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:249 +msgid "Error building the new macros" +msgstr "Error al crear las nuevas macros" + +#: ../../godmode/massive/massive_edit_plugins.php:278 +#, php-format +msgid "%d modules updated" +msgstr "%d módulos actualizados" + +#: ../../godmode/massive/massive_edit_plugins.php:299 +msgid "There are not registered plugins" +msgstr "No hay plugins registrados" + +#: ../../godmode/massive/massive_edit_plugins.php:476 +msgid "Invalid plugin data" +msgstr "Dato de plugin no válido" + +#: ../../godmode/massive/massive_edit_plugins.php:583 +msgid "Clear" +msgstr "Vaciar" + +#: ../../godmode/massive/massive_edit_plugins.php:611 +msgid "Invalid macros array" +msgstr "Matriz de macros no válida" + +#: ../../godmode/massive/massive_edit_plugins.php:636 +msgid "Multiple values" +msgstr "Valores múltiples" + +#: ../../godmode/massive/massive_edit_plugins.php:668 +#: ../../godmode/massive/massive_edit_plugins.php:804 +#: ../../godmode/massive/massive_edit_plugins.php:820 +msgid "Invalid agents array" +msgstr "Matriz de agentes no válida" + +#: ../../godmode/massive/massive_edit_plugins.php:684 +msgid "Invalid agent element" +msgstr "Elemento de agente no válido" + +#: ../../godmode/massive/massive_edit_plugins.php:695 +msgid "Invalid modules array" +msgstr "Matriz de módulos no válida" + +#: ../../godmode/massive/massive_edit_plugins.php:723 +msgid "Invalid module element" +msgstr "Elemento de módulo no válido" + +#: ../../godmode/massive/massive_edit_plugins.php:930 +msgid "There are no modules using this plugin" +msgstr "Ningún módulo está usando este plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:1013 +msgid "There was a problem loading the module plugin macros data" +msgstr "" +"Surgió un problema al cargar los datos de las macros del módulo de plugin." + +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +msgid "Enabled alerts" +msgstr "Alertas activadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:201 +msgid "Disable selected alerts" +msgstr "Desactivar alertas seleccionadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:205 +msgid "Enable selected alerts" +msgstr "Activar alertas seleccionadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +msgid "Disabled alerts" +msgstr "Deshabilitar alertas" + +#: ../../godmode/massive/massive_edit_agents.php:140 +msgid "No values changed" +msgstr "No se han cambiado los valores." + +#: ../../godmode/massive/massive_edit_agents.php:185 +msgid "Configuration files deleted successfully" +msgstr "Los archivos de configuración se borraron correctamente." + +#: ../../godmode/massive/massive_edit_agents.php:186 +msgid "Configuration files cannot be deleted" +msgstr "Los archivos de configuración no se pudieron borrar." + +#: ../../godmode/massive/massive_edit_agents.php:376 +msgid "Agents updated successfully" +msgstr "Los agentes se actualizaron correctamente." + +#: ../../godmode/massive/massive_edit_agents.php:377 +msgid "Agents cannot be updated (maybe there was no field to update)" +msgstr "" +"Los agentes no se pueden actualizar (puede que no hubiera ningún campo para " +"actualizar)." + +#: ../../godmode/massive/massive_edit_agents.php:642 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. " +"If the remote configuration is enabled, it will also go into standby mode " +"when disabling it." 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. " +"Si la configuración remota está habilitada, también entrará en modo de " +"espera cuando se deshabilite." -#: ../../godmode/reporting/reporting_builder.item_editor.php:1007 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1580 -msgid "Last value" -msgstr "Último valor" +#: ../../godmode/massive/massive_edit_agents.php:643 +#: ../../include/class/AgentWizard.class.php:444 +msgid "Active" +msgstr "Activo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1009 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5420 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:792 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1582 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4563 -msgid "" -"Warning: period 0 reports cannot be used to show information back in time. " -"Information contained in this kind of reports will be always reporting the " -"most recent information" -msgstr "" -"Advertencia: los informes en período 0 no pueden mostrar la información " -"pasada. La información contenida en este tipo de informes mostrará siempre " -"la información más reciente." +#: ../../godmode/massive/massive_edit_agents.php:649 +msgid "Delete available remote configurations" +msgstr "Borrar las configuraciones remotas disponibles" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1030 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:374 -#: ../../operation/incidents/integriaims_export_csv.php:92 -#: ../../operation/incidents/list_integriaims_incidents.php:148 -#: ../../operation/netflow/nf_live_view.php:295 -msgid "Resolution" -msgstr "Resolución" +#: ../../godmode/massive/massive_edit_agents.php:682 +msgid "Without status" +msgstr "Sin estado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1066 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:751 -msgid "Projection period" -msgstr "Período de proyección" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:726 -msgid "Data range" -msgstr "Rango de datos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1098 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341 -msgid "Only display wrong SLAs" -msgstr "Mostrar solo los SLA incorrectos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1112 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1668 -msgid "Current month" -msgstr "Mes actual" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1678 -msgid "Working time" -msgstr "Tiempo de trabajo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1532 -msgid "Show modules" -msgstr "Mostrar módulos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1705 -#: ../../enterprise/operation/inventory/inventory.php:245 -msgid "Last" -msgstr "Último" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1784 -msgid "Target server" -msgstr "Servidor Target" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1816 -#: ../../godmode/setup/news.php:195 ../../godmode/setup/setup_visuals.php:1246 -#: ../../include/functions_reports.php:804 -#: ../../include/functions_reporting.php:5080 -#: ../../enterprise/dashboard/widgets/post.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1989 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:341 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/include/functions_reporting_csv.php:2143 -#: ../../enterprise/include/functions_reporting_csv.php:2157 -msgid "Text" -msgstr "Texto" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1832 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2046 -msgid "Custom SQL template" -msgstr "Plantilla SQL personalizada" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1850 -#: ../../include/functions_reports.php:785 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:495 -msgid "SQL query" -msgstr "Consulta SQL" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1860 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2013 -msgid "Max items" -msgstr "Número máximo de elementos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1872 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2030 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:762 -msgid "Serialized header" -msgstr "Cabecera serializada" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1873 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:762 -msgid "The separator character is |" -msgstr "El carácter separador es |" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1908 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2085 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 -msgid "Field separator" -msgstr "Separador de campo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1909 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2086 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 -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:1929 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2106 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 -msgid "Line separator" -msgstr "Separador de línea" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1930 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2107 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 -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:1950 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:308 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2127 -msgid "Group by agent" -msgstr "Agrupar por agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1981 -#: ../../enterprise/dashboard/widgets/top_n.php:87 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:342 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2180 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:392 -msgid "By agent name" -msgstr "Por nombre de agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1993 -#: ../../enterprise/dashboard/widgets/top_n.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:350 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 -msgid "Quantity (n)" -msgstr "Cantidad (n)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2023 -#: ../../operation/agentes/ver_agente.php:1310 -#: ../../enterprise/dashboard/widgets/top_n.php:93 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:362 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2207 -msgid "Display" -msgstr "Mostrar" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2040 -#: ../../include/functions_reporting_html.php:3673 -#: ../../include/functions_reporting.php:1397 -#: ../../enterprise/dashboard/widgets/top_n.php:553 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2224 -#: ../../enterprise/include/functions_reporting_csv.php:881 -msgid "Avg" -msgstr "Media" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2054 -#: ../../mobile/operation/module_graph.php:437 -#: ../../operation/agentes/stat_win.php:347 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:542 -msgid "Time compare (Overlapped)" -msgstr "Comparación de tiempo (solapado)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2071 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2238 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:556 -msgid "Full resolution graph (TIP)" -msgstr "Gráfica a resolución completa (TIP)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2072 -msgid "This option may cause performance issues." -msgstr "Esta opción puede causar problemas de rendimiento." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2101 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:412 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2280 -msgid "Condition" -msgstr "Condición" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 -#: ../../include/functions_reporting.php:2391 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -msgid "Everything" -msgstr "Todo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2106 -msgid "Greater or equal (>=)" -msgstr "Mayor o igual (>=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2107 -msgid "Less or equal (<=)" -msgstr "Menor o igual (<=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2108 -msgid "Less (<)" -msgstr "Menor a (<)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2109 -msgid "Greater (>)" -msgstr "Mayor a (>)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2110 -msgid "Equal (=)" -msgstr "Igual a (=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2111 -msgid "Not equal (!=)" -msgstr "No igual a (!=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2113 -#: ../../include/functions_reporting_html.php:2535 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2311 -msgid "Not OK" +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:321 +msgid "Bad" msgstr "Mal" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2125 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:433 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2323 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:347 -msgid "Show graph" -msgstr "Mostrar gráfico" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2337 -msgid "Select fields to show" -msgstr "Seleccionar campos a mostrar" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2147 -#: ../../include/functions_reporting_html.php:3041 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2345 -#: ../../enterprise/include/functions_reporting_csv.php:466 -msgid "Total time" -msgstr "Tiempo total" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2155 -#: ../../include/functions_reporting_html.php:3047 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2353 -#: ../../enterprise/include/functions_reporting_csv.php:470 -msgid "Time failed" -msgstr "Tiempo en fallo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2163 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2361 -#: ../../enterprise/include/functions_reporting_csv.php:474 -msgid "Time in OK status" -msgstr "Tiempo en estado OK" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2171 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2369 -#: ../../enterprise/include/functions_reporting_csv.php:478 -msgid "Time in unknown status" -msgstr "Tiempo en estado desconocido" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2183 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2381 -#: ../../enterprise/include/functions_reporting_csv.php:482 -msgid "Time of not initialized module" -msgstr "Tiempo de módulo no inicializado" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2195 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2393 -#: ../../enterprise/include/functions_reporting_csv.php:486 -msgid "Time of downtime" -msgstr "Tiempo de parada" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:429 -msgid "Show address instead module name" -msgstr "Mostrar la dirección en lugar del nombre del módulo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2208 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2409 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:430 -msgid "Show the main address of agent." -msgstr "Mostrar la dirección principal del agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2227 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2428 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:407 -msgid "Show resume" -msgstr "Mostrar resumen" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2228 -msgid "" -"Show a summary chart with max, min and average number of total modules at " -"the end of the report and Checks." +#: ../../godmode/massive/massive_edit_agents.php:692 +msgid "The agent still runs but the alerts and events will be stop" 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." +"El agente seguirá ejecutándose, pero las alertas y eventos se detendrán." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2247 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2295 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2495 -msgid "

Select fields to show

" -msgstr "

Seleccionar campos a mostrar

" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2255 -#: ../../include/functions_reporting_html.php:3114 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 -#: ../../enterprise/include/functions_reporting_csv.php:494 -msgid "Total checks" -msgstr "Comprobaciones totales" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2263 -#: ../../include/functions_reporting_html.php:3120 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2463 -msgid "Checks failed" -msgstr "Comprobaciones fallidas" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2471 -#: ../../enterprise/include/functions_reporting_csv.php:502 -msgid "Checks in OK status" -msgstr "Comprobaciones en estado OK" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2283 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2483 -#: ../../enterprise/include/functions_reporting_csv.php:506 -msgid "Unknown checks" -msgstr "Comprobaciones desconocidas" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2303 -#: ../../include/functions_reporting_html.php:3294 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503 -#: ../../enterprise/include/functions_reporting_csv.php:614 -msgid "Agent max value" -msgstr "Valor máximo del agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2311 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2511 -msgid "Agent min values" -msgstr "Valores mínimos de agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2324 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2523 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:583 -msgid "Show Summary group" -msgstr "Mostrar el resumen del grupo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2393 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2592 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:647 -msgid "Event Status" -msgstr "Estado del evento" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 -msgid "Include extended events" -msgstr "Incluir eventos ampliados" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2437 -#: ../../operation/agentes/tactical.php:223 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2619 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 -msgid "Event graphs" -msgstr "Gráficos de eventos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2623 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:677 -msgid "By agent" -msgstr "Por agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2451 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:687 -msgid "By user validator" -msgstr "Por usuario que validó" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2461 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2643 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:697 -msgid "By criticity" -msgstr "Por gravedad" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2653 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:707 -msgid "Validated vs unvalidated" -msgstr "Validados vs sin validar" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2485 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2707 -msgid "Query History Database" -msgstr "Base de datos histórica de consultas" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2486 -msgid "" -"With the token enabled the query will affect the Historical Database, which " -"may mean a small drop in performance." -msgstr "" -"Con el token habilitado, la consulta afectará a la base de datos de " -"histórico, que puede acarrear una bajada del rendimiento." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2501 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2667 -msgid "Height (dynamic graphs)" -msgstr "Altura (gráficos dinámicos)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2520 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:320 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2143 -msgid "Show in the same row" -msgstr "Mostrar en la misma fila" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2145 -msgid "Show one module per row with all its operations" -msgstr "Mostrar un módulo por fila con todas sus operaciones" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2544 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2687 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 -msgid "SLA items sorted by fulfillment value" -msgstr "Elementos de SLA ordenados por valor rellenado" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2566 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2719 -msgid "Priority mode" -msgstr "Modo de prioridad" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2571 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724 -msgid "Priority ok mode" -msgstr "Modo de prioridad ok" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2736 -msgid "Priority unknown mode" -msgstr "Modo de prioridad desconocido" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2599 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2752 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:288 -msgid "Failover mode" -msgstr "Modo conmutación" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2600 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2753 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:289 -msgid "" -"SLA calculation must be performed taking into account the failover modules " -"assigned to the primary module" -msgstr "" -"El SLA debe calcularse teniendo en cuenta los módulos de conmutación " -"asignados al módulo primario" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2619 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:306 -msgid "Failover type" -msgstr "Tipo de conmutación" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2624 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2777 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -msgid "Failover normal" -msgstr "Conmutación normal" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2636 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2789 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:323 -msgid "Failover simple" -msgstr "Conmutación simple" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2955 -msgid "Calculate for custom intervals" -msgstr "Calcular intervalos personalizados" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2672 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2967 -msgid "Time lapse intervals" -msgstr "Intervalos de tiempo transcurrido" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2675 -msgid "" -"Lapses of time in which the period is divided to make more precise " -"calculations\n" -msgstr "" -"Tiempos en los que el período se divide para hacer cálculos más precisos.\n" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014 -msgid "Table only" -msgstr "Solo tabla" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3024 -msgid "Graph only" -msgstr "Solo gráfico" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3034 -msgid "Graph and table" -msgstr "Gráfico y tabla" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3051 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:808 -msgid "Uncompress module" -msgstr "Descomprimir módulo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2757 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3052 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:809 -msgid "Use uncompressed module data." -msgstr "Utilizar datos de módulos descomprimidos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2772 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:460 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:775 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361 -msgid "Show item in landscape format (only PDF)" -msgstr "Mostrar elemento en formato apaisado (solo PDF)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2781 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:476 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3076 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:791 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 -msgid "Page break at the end of the item (only PDF)" -msgstr "Salto de página después del elemento (solo PDF)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2872 -msgid "Agent Failover" -msgstr "Conmutación de agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 -msgid "Module Failover" -msgstr "Conmutación de módulo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2890 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3154 -msgid "SLA Min. (value)" -msgstr "Valor mínimo para el SLA" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2895 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3159 -msgid "SLA Max. (value)" -msgstr "Valor máximo para el SLA" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2900 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3164 -msgid "SLA Limit (%)" -msgstr "Límite (%) para el SLA" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2917 -msgid "Please save the SLA for start to add items in this list." -msgstr "" -"Por favor, guarda primero el SLA antes de intentar añadir elementos al mismo." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3267 -msgid "rate" -msgstr "tasa" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 -#: ../../enterprise/dashboard/widgets/top_n.php:139 -#: ../../enterprise/dashboard/widgets/top_n.php:329 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:89 -msgid "max" -msgstr "máx" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3269 -#: ../../enterprise/dashboard/widgets/top_n.php:140 -#: ../../enterprise/dashboard/widgets/top_n.php:330 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:90 -msgid "min" -msgstr "mín" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3270 -#: ../../enterprise/dashboard/widgets/top_n.php:141 -#: ../../enterprise/dashboard/widgets/top_n.php:331 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:91 -msgid "sum" -msgstr "suma" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3303 -msgid "" -"Please be careful, when the module have diferent intervals in their life, " -"the summatory maybe get bad result." -msgstr "" -"Por favor, ten en cuenta que cuando el módulo tiene diferentes intervalos a " -"lo largo de su historia, el sumatorio puede obtener resultados incorrectos." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3323 -msgid "Please save the report to start adding items into the list." -msgstr "" -"Por favor, guarda el informe para empezar a añadir elementos a la lista." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3513 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3529 -msgid "Item Editor Information" -msgstr "Información de editor de elemento" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3510 -msgid "Please select a name." -msgstr "Seleccione un nombre." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3514 -msgid "Please select an agent." -msgstr "Seleccione un agente." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3522 -msgid "Please insert a SQL query." -msgstr "Inserte una consulta SQL." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3526 -msgid "Please insert a URL." -msgstr "Inserte una URL." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3530 -msgid "Please checked a custom interval option." -msgstr "Compruebe la opción de intervalo personalizado" - -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/snmpconsole/snmp_alert.php:1079 -#: ../../godmode/snmpconsole/snmp_alert.php:1253 -#: ../../include/functions_visual_map_editor.php:832 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:317 -msgid "Position" -msgstr "Posición" - -#: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.list_items.php:379 -#: ../../godmode/reporting/reporting_builder.list_items.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:279 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:292 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:305 -msgid "Ascendent" -msgstr "Ascencente" - -#: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.list_items.php:379 -#: ../../godmode/reporting/reporting_builder.list_items.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:283 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:309 -msgid "Descent" -msgstr "Descendente" - -#: ../../godmode/reporting/reporting_builder.list_items.php:389 -msgid "Name or Description" -msgstr "Nombre o descripción" - -#: ../../godmode/reporting/reporting_builder.list_items.php:409 -#: ../../include/functions_graph.php:1373 -msgid "No items." -msgstr "Sin elementos" - -#: ../../godmode/reporting/reporting_builder.list_items.php:612 -msgid "Sort selected items from position: " -msgstr "Ordenar elementos desde posición: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:615 -msgid "Move before to" -msgstr "Mover antes de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:616 -msgid "Move after to" -msgstr "Mover después de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:656 -#: ../../godmode/reporting/reporting_builder.list_items.php:660 -msgid "Delete items" -msgstr "Borrar elementos" - -#: ../../godmode/reporting/reporting_builder.list_items.php:663 -msgid "Delete selected items from position: " -msgstr "Borrar los elementos seleccionados desde la posición: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:666 -msgid "Delete above to" -msgstr "Borrar lo que está encima de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:667 -msgid "Delete below to" -msgstr "Borrar lo que está debajo de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:723 -msgid "" -"Are you sure to sort the items into the report?\\n. This action change the " -"sorting of items into data base." -msgstr "" -"¿Está seguro de que quiere clasificar los elementos en el informe?\\n. Esta " -"acción podría cambiar la clasificación de los elementos en la base de datos." - -#: ../../godmode/reporting/reporting_builder.list_items.php:773 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "¿Estás seguro de que quieres borrar los elementos en el informe?\\n" - -#: ../../godmode/reporting/reporting_builder.list_items.php:800 -msgid "Please select any item to delete" -msgstr "Por favor, selecciona cualquier elemento para borrarlo." - -#: ../../godmode/reporting/reporting_builder.main.php:130 -msgid "Only the group can view the report" -msgstr "Solo el grupo puede ver el informe." - -#: ../../godmode/reporting/reporting_builder.main.php:131 -msgid "The next group can edit the report" -msgstr "El siguiente grupo puede editar el informe." - -#: ../../godmode/reporting/reporting_builder.main.php:132 -msgid "Only the user and admin user can edit the report" -msgstr "Solo el usuario y el usuario administrador pueden editar el informe." - -#: ../../godmode/reporting/reporting_builder.main.php:134 -msgid "Write Access" -msgstr "Permisos de escritura" - -#: ../../godmode/reporting/reporting_builder.main.php:134 -msgid "" -"For example, you want a report that the people of \"All\" groups can see but " -"you want to edit only for you or your group." -msgstr "" -"Por ejemplo, quieres un informe que las personas de \"Todos\" los grupos " -"pueden ver, pero quieres que solo tú o tu grupo podáis editarlo." - -#: ../../godmode/reporting/reporting_builder.main.php:171 -msgid "Non interactive report" -msgstr "Informe no interactivo" - -#: ../../godmode/reporting/reporting_builder.php:185 -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:186 -msgid "An error has ocurred" -msgstr "Ha ocurrido un error" - -#: ../../godmode/reporting/reporting_builder.php:495 -#: ../../godmode/reporting/reporting_builder.php:2993 -#: ../../godmode/reporting/reporting_builder.php:3064 -#: ../../godmode/reporting/reporting_builder.php:3102 -msgid "Reports list" -msgstr "Lista de informes" - -#: ../../godmode/reporting/reporting_builder.php:508 -#: ../../godmode/reporting/reporting_builder.php:540 -#: ../../godmode/reporting/reporting_builder.php:3004 -#: ../../operation/menu.php:330 -#: ../../operation/reporting/custom_reporting.php:23 -msgid "Custom reporting" -msgstr "Informes personalizados" - -#: ../../godmode/reporting/reporting_builder.php:791 -#: ../../include/functions_cron.php:559 -#: ../../operation/reporting/custom_reporting.php:34 -#: ../../operation/search_reports.php:34 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 -#: ../../enterprise/include/functions_cron.php:223 -#: ../../enterprise/include/functions_reporting_csv.php:1996 -#: ../../enterprise/include/functions_reporting_csv.php:2000 -#: ../../enterprise/include/functions_tasklist.php:280 -msgid "Report name" -msgstr "Nombre del informe" - -#: ../../godmode/reporting/reporting_builder.php:793 -#: ../../operation/reporting/custom_reporting.php:36 -#: ../../operation/search_reports.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:376 -msgid "HTML" -msgstr "HTML" - -#: ../../godmode/reporting/reporting_builder.php:794 -#: ../../operation/reporting/custom_reporting.php:37 -#: ../../operation/search_reports.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:377 -msgid "XML" -msgstr "XML" - -#: ../../godmode/reporting/reporting_builder.php:819 -#: ../../enterprise/dashboard/main_dashboard.php:328 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 -msgid "Private" -msgstr "Privado" - -#: ../../godmode/reporting/reporting_builder.php:925 -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:933 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:433 -msgid "HTML view" -msgstr "Vista HTML" - -#: ../../godmode/reporting/reporting_builder.php:940 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:434 -msgid "Export to XML" -msgstr "Exportar a XML" - -#: ../../godmode/reporting/reporting_builder.php:1120 -#: ../../include/functions_reporting.php:2265 -#: ../../enterprise/godmode/agentes/collection_manager.php:191 -#: ../../enterprise/operation/agentes/agent_inventory.php:254 -#: ../../enterprise/operation/inventory/inventory.php:282 -#: ../../enterprise/operation/log/log_viewer.php:853 -#: ../../enterprise/operation/log/log_viewer.php:861 -msgid "No data found." -msgstr "No se encontraron datos." - -#: ../../godmode/reporting/reporting_builder.php:1136 -msgid "Create report" -msgstr "Crear informe" - -#: ../../godmode/reporting/reporting_builder.php:3072 -#: ../../operation/reporting/reporting_viewer.php:93 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:133 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:158 -msgid "List items" -msgstr "Listado de elementos" - -#: ../../godmode/reporting/reporting_builder.php:3076 -#: ../../operation/reporting/reporting_viewer.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:122 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:164 -#: ../../enterprise/include/functions_reporting.php:7350 -#: ../../enterprise/include/functions_reporting.php:7406 -msgid "Item editor" -msgstr "Editor de elementos" - -#: ../../godmode/reporting/reporting_builder.php:3089 -#: ../../operation/reporting/reporting_viewer.php:109 -msgid "View report" -msgstr "Ver informe" - -#: ../../godmode/reporting/reporting_builder.php:3105 -msgid "Create Custom Report" -msgstr "Crear informa personalizado" - -#: ../../godmode/reporting/reporting_builder.php:3164 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1469 -msgid "Successfull action" -msgstr "Acción completada" - -#: ../../godmode/reporting/reporting_builder.php:3165 -msgid "Unsuccessful action

" -msgstr "Acción fallida

" - -#: ../../godmode/reporting/visual_console_builder.data.php:94 -msgid "Create visual console" -msgstr "Crear consola visual" - -#: ../../godmode/reporting/visual_console_builder.data.php:106 -#: ../../godmode/setup/os.builder.php:32 -#: ../../enterprise/godmode/agentes/collections.data.php:355 -#: ../../enterprise/meta/advanced/collections.data.php:307 -#: ../../enterprise/meta/include/functions_autoprovision.php:540 -msgid "Name:" -msgstr "Nombre:" - -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "" -"Use [ or ( as first character, for example '[*] Map name', to render this " -"map name in main menu" -msgstr "" -"Usa [ o ( como primer carácter. Por ejemplo \"[*] Nombre de mapa\", para " -"renderizar este nombre de mapa en el menú principal." - -#: ../../godmode/reporting/visual_console_builder.data.php:136 -#: ../../enterprise/godmode/agentes/collections.data.php:421 -#: ../../enterprise/meta/advanced/collections.data.php:371 -msgid "Group:" -msgstr "Grupo:" - -#: ../../godmode/reporting/visual_console_builder.data.php:160 -#: ../../godmode/reporting/visual_console_builder.elements.php:144 -#: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:564 -#: ../../enterprise/dashboard/widget.php:111 -msgid "Background" -msgstr "Imagen de fondo" - -#: ../../godmode/reporting/visual_console_builder.data.php:170 -msgid "Background image" -msgstr "Imagen de fondo" - -#: ../../godmode/reporting/visual_console_builder.data.php:172 -#: ../../include/functions_visual_map_editor.php:325 -msgid "Background color" -msgstr "Color de fondo" - -#: ../../godmode/reporting/visual_console_builder.data.php:202 -msgid "Layout size" -msgstr "Tamaño del diseño" - -#: ../../godmode/reporting/visual_console_builder.data.php:205 -msgid "Set custom size" -msgstr "Especificar tamaño personalizado" - -#: ../../godmode/reporting/visual_console_builder.data.php:211 -msgid "Get default image size" -msgstr "Establecer el tamaño de imagen por defecto" - -#: ../../godmode/reporting/visual_console_builder.data.php:213 -msgid "Favourite visual console" -msgstr "Consola visual favorita" - -#: ../../godmode/reporting/visual_console_builder.editor.php:162 -msgid "Min allowed size is 1024x768" -msgstr "El tamaño mínimo permitido es 1024x768" - -#: ../../godmode/reporting/visual_console_builder.editor.php:166 -#: ../../godmode/reporting/visual_console_builder.editor.php:168 -#: ../../godmode/reporting/visual_console_builder.editor.php:170 -#: ../../enterprise/dashboard/main_dashboard.php:418 -msgid "Action in progress" -msgstr "Acción en curso" - -#: ../../godmode/reporting/visual_console_builder.editor.php:166 -#: ../../enterprise/dashboard/main_dashboard.php:418 -msgid "Loading in progress" -msgstr "Cargando" - -#: ../../godmode/reporting/visual_console_builder.editor.php:168 -msgid "Saving in progress" -msgstr "Guardando" - -#: ../../godmode/reporting/visual_console_builder.editor.php:170 -msgid "Deletion in progress" -msgstr "Eliminando" - -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.wizard.php:151 -#: ../../include/functions_filemanager.php:654 -#: ../../include/functions_visual_map_editor.php:228 -msgid "Image" -msgstr "Imagen" - -#: ../../godmode/reporting/visual_console_builder.elements.php:106 -msgid "Width x Height
Max value" -msgstr "Ancho x Alto
Valor máximo" - -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -msgid "Map linked" -msgstr "Mapa enlazado" - -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../mobile/operation/agents.php:397 -#: ../../enterprise/godmode/admin_access_logs.php:28 -#: ../../enterprise/godmode/policies/policy_agents.php:713 -#: ../../enterprise/godmode/policies/policy_agents.php:1076 -msgid "A." -msgstr "A." - -#: ../../godmode/reporting/visual_console_builder.elements.php:174 -#: ../../godmode/setup/gis_step_2.php:217 -#: ../../include/functions_visual_map.php:4283 -#: ../../include/functions_visual_map_editor.php:1297 -msgid "Static Image" -msgstr "Imagen estática" - -#: ../../godmode/reporting/visual_console_builder.elements.php:182 -msgid "Percentile Bar" -msgstr "Barra de percentil" - -#: ../../godmode/reporting/visual_console_builder.elements.php:190 -msgid "Percentile Bubble" -msgstr "Burbuja percentil" - -#: ../../godmode/reporting/visual_console_builder.elements.php:198 -#: ../../include/functions_visual_map_editor.php:1299 -#: ../../mobile/operation/events.php:549 -msgid "Module Graph" -msgstr "Gráfico de módulo" - -#: ../../godmode/reporting/visual_console_builder.elements.php:206 -#: ../../include/functions_visual_map.php:4263 -#: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1302 -msgid "Auto SLA Graph" -msgstr "Gráfico SLA automático" - -#: ../../godmode/reporting/visual_console_builder.elements.php:214 -#: ../../include/functions_visual_map.php:4288 -#: ../../include/functions_visual_map_editor.php:1303 -msgid "Simple Value" -msgstr "Valor simple" - -#: ../../godmode/reporting/visual_console_builder.elements.php:222 -msgid "Simple Value (Process Max)" -msgstr "Valor simple (máximo)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:230 -msgid "Simple Value (Process Min)" -msgstr "Valor simple (mínimo)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:238 -msgid "Simple Value (Process Avg)" -msgstr "Valor simple (media)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:262 -#: ../../include/functions_visual_map.php:4243 -#: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1308 -msgid "Box" -msgstr "Caja" - -#: ../../godmode/reporting/visual_console_builder.elements.php:286 -#: ../../include/functions_visual_map.php:4303 -#: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1310 -msgid "Color cloud" -msgstr "Nube de color" - -#: ../../godmode/reporting/visual_console_builder.elements.php:312 -#: ../../godmode/reporting/visual_console_builder.elements.php:758 -msgid "Edit label" -msgstr "Editar etiqueta" - -#: ../../godmode/reporting/visual_console_builder.php:185 -msgid "This file isn't image" -msgstr "El archivo no es una imagen." - -#: ../../godmode/reporting/visual_console_builder.php:188 -msgid "This file isn't image." -msgstr "El archivo no es una imagen." - -#: ../../godmode/reporting/visual_console_builder.php:194 -#: ../../godmode/reporting/visual_console_builder.php:197 -msgid "File already are exists." -msgstr "El archivo ya existe." - -#: ../../godmode/reporting/visual_console_builder.php:205 -#: ../../godmode/reporting/visual_console_builder.php:208 -msgid "The file have not image extension." -msgstr "El archivo no tiene una extensión válida." - -#: ../../godmode/reporting/visual_console_builder.php:220 -#: ../../godmode/reporting/visual_console_builder.php:223 -#: ../../godmode/reporting/visual_console_builder.php:233 -#: ../../godmode/reporting/visual_console_builder.php:239 -msgid "Problems with move file to target." -msgstr "Error al mover el archivo al objetivo" - -#: ../../godmode/reporting/visual_console_builder.php:270 -msgid "Successfully update." -msgstr "Actualizado correctamente" - -#: ../../godmode/reporting/visual_console_builder.php:286 -msgid "Could not be update." -msgstr "No se puede actualizar" - -#: ../../godmode/reporting/visual_console_builder.php:303 -msgid "Successfully created." -msgstr "Creado correctamente" - -#: ../../godmode/reporting/visual_console_builder.php:319 -msgid "Could not be created." -msgstr "No se pudo crear" - -#: ../../godmode/reporting/visual_console_builder.php:366 -msgid "Successfully multiple delete." -msgstr "Supresión múltiple realizada correctamente" - -#: ../../godmode/reporting/visual_console_builder.php:367 -msgid "Unsuccessful multiple delete." -msgstr "Error de supresión múltiple" - -#: ../../godmode/reporting/visual_console_builder.php:469 -msgid "Successfully delete." -msgstr "Borrado satisfactoriamente" - -#: ../../godmode/reporting/visual_console_builder.php:760 -#: ../../operation/visual_console/legacy_view.php:119 -#: ../../operation/visual_console/pure_ajax.php:118 -#: ../../operation/visual_console/view.php:69 -#: ../../enterprise/meta/screens/screens.visualmap.php:169 -msgid "Visual consoles list" -msgstr "Lista de consolas visuales" - -#: ../../godmode/reporting/visual_console_builder.php:764 -#: ../../operation/gis_maps/render_view.php:132 -#: ../../operation/visual_console/legacy_view.php:132 -#: ../../operation/visual_console/pure_ajax.php:129 -#: ../../operation/visual_console/view.php:94 -#: ../../enterprise/meta/screens/screens.visualmap.php:159 -msgid "Show link to public Visual Console" -msgstr "Mostrar enlace a la Consola Visual pública" - -#: ../../godmode/reporting/visual_console_builder.php:772 -#: ../../operation/visual_console/legacy_view.php:144 -#: ../../operation/visual_console/pure_ajax.php:141 -#: ../../operation/visual_console/view.php:106 -#: ../../enterprise/meta/screens/screens.visualmap.php:143 -msgid "List elements" -msgstr "Lista de elementos" - -#: ../../godmode/reporting/visual_console_builder.php:778 -#: ../../operation/visual_console/legacy_view.php:151 -#: ../../operation/visual_console/pure_ajax.php:148 -#: ../../operation/visual_console/view.php:113 -msgid "Services wizard" -msgstr "Asistente de servicios" - -#: ../../godmode/reporting/visual_console_builder.php:784 -#: ../../godmode/reporting/visual_console_builder.wizard.php:538 -#: ../../operation/visual_console/legacy_view.php:158 -#: ../../operation/visual_console/pure_ajax.php:155 -#: ../../operation/visual_console/view.php:120 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:92 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:86 -#: ../../enterprise/include/functions_reporting.php:34 -#: ../../enterprise/include/functions_reporting.php:7314 -#: ../../enterprise/include/functions_reporting.php:7340 -#: ../../enterprise/meta/general/logon_ok.php:48 -#: ../../enterprise/meta/general/main_header.php:134 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:44 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:81 -#: ../../enterprise/meta/screens/screens.visualmap.php:135 -msgid "Wizard" -msgstr "Asistente" - -#: ../../godmode/reporting/visual_console_builder.php:788 -#: ../../operation/visual_console/legacy_view.php:163 -#: ../../operation/visual_console/pure_ajax.php:160 -#: ../../operation/visual_console/view.php:125 -#: ../../enterprise/meta/screens/screens.visualmap.php:127 -msgid "Builder" -msgstr "Creador" - -#: ../../godmode/reporting/visual_console_builder.php:800 -#: ../../enterprise/meta/screens/screens.visualmap.php:180 -msgid "New visual console" -msgstr "Nueva consola visual" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:127 -#: ../../include/functions_visual_map_editor.php:56 -msgid "Static Graph" -msgstr "Gráfico estático" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:128 -#: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1298 -msgid "Percentile Item" -msgstr "Elemento percentil" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:129 -#: ../../include/functions_visual_map.php:4248 -#: ../../include/functions_visual_map_editor.php:363 -#: ../../mobile/operation/home.php:98 -msgid "Module graph" -msgstr "Gráfico de módulo" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:130 -#: ../../include/functions_visual_map_editor.php:60 -msgid "Simple value" -msgstr "Valor simple" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:165 -msgid "Range between elements (px)" -msgstr "Rango entre elementos (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -msgid "Size (px)" -msgstr "Tamaño (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:235 -#: ../../enterprise/extensions/vmware/vmware_view.php:1662 -msgid "Font" -msgstr "Fuente" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:248 -#: ../../include/functions_config.php:932 -msgid "Font size" -msgstr "Tamaño de fuente" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:279 -#: ../../include/functions_visual_map_editor.php:547 -msgid "Min value" -msgstr "Valor mínimo" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:280 -#: ../../godmode/reporting/visual_console_builder.wizard.php:298 -#: ../../include/functions_visual_map_editor.php:548 -#: ../../include/functions_visual_map_editor.php:614 -msgid "Max value" -msgstr "Valor máx." - -#: ../../godmode/reporting/visual_console_builder.wizard.php:281 -#: ../../include/functions_visual_map_editor.php:549 -msgid "Avg value" -msgstr "Valor medio" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:293 -msgid "Width (px)" -msgstr "Ancho (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:305 -#: ../../godmode/setup/setup_visuals.php:862 -#: ../../include/functions_visual_map_editor.php:618 -#: ../../enterprise/meta/advanced/metasetup.visual.php:133 -#: ../../enterprise/meta/include/functions_meta.php:1331 -msgid "Percentile" -msgstr "Percentil" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:315 -#: ../../include/functions_visual_map_editor.php:619 -msgid "Bubble" -msgstr "Burbuja" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:327 -#: ../../include/functions_visual_map_editor.php:643 -#: ../../include/functions_visual_map_editor.php:661 -msgid "Value to show" -msgstr "Valor para mostrar" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:329 -#: ../../include/functions_visual_map_editor.php:624 -msgid "Percent" -msgstr "Porcentaje" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:398 -msgid "One item per agent" -msgstr "Un elemento por agente" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:468 -#: ../../godmode/reporting/visual_console_builder.wizard.php:785 -msgid "Agent - Module" -msgstr "Agente-Módulo" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:485 -msgid "Enable link agent" -msgstr "Habilitar el enlace del agente" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:496 -msgid "Set Parent" -msgstr "Establecer padre" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:499 -msgid "Item created in the visualmap" -msgstr "Elemento creado en el mapa visual" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:500 -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:509 -msgid "Item in the map" -msgstr "Elemento en el mapa" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#: ../../godmode/massive/massive_edit_agents.php:709 #, php-format -msgid "The parenting relationships in %s will be drawn on the map." -msgstr "Las relaciones de jerarquía de %s se muestran en el mapa." - -#: ../../godmode/reporting/visual_console_builder.wizard.php:530 -#: ../../godmode/reporting/visual_console_builder.wizard.php:534 -msgid "Are you sure to add many elements\\nin visual map?" +msgid "" +"This mode allow %s to disable all modules \n" +"of this agent while the selected module is on CRITICAL status" msgstr "" -"¿Estás seguro de que quieres añadir tantos elementos en la consola visual?" +"Este modo permite que %s deshabilite todos los módulos \n" +"de este agente mientras el módulo seleccionado esté en estado CRÍTICO" -#: ../../godmode/reporting/visual_console_builder.wizard.php:558 -#: ../../mobile/operation/agent.php:385 ../../mobile/operation/agents.php:453 -#: ../../mobile/operation/events.php:864 -#: ../../mobile/operation/module_graph.php:478 -#: ../../mobile/operation/modules.php:769 -#: ../../mobile/operation/tactical.php:239 -#: ../../mobile/operation/visualmap.php:143 -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:103 -#: ../../enterprise/mobile/operation/dashboard.php:133 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 -msgid "Loading..." -msgstr "Cargando…" +#: ../../godmode/massive/massive_delete_profiles.php:60 +msgid "Not deleted. You must select an existing user" +msgstr "No borrado. Selecciona un usuario existente." -#: ../../godmode/reporting/visual_console_builder.wizard.php:706 -msgid "Please select any module or modules." -msgstr "Por favor, selecciona cualquier módulo o módulos." +#: ../../godmode/massive/massive_delete_profiles.php:90 +msgid "Profiles deleted successfully" +msgstr "Perfiles borrados correctamente" -#: ../../godmode/reporting/visual_console_favorite.php:167 -msgid "No favourite consoles defined" -msgstr "No hay consolas favoritas" +#: ../../godmode/massive/massive_delete_profiles.php:91 +msgid "Profiles cannot be deleted" +msgstr "No se pudieron borrar los perfiles." -#: ../../godmode/servers/discovery.php:162 -msgid "You must create a task first" -msgstr "Primero debe crear una tarea" +#: ../../godmode/massive/massive_delete_alerts.php:271 +msgid "Show alerts on disabled modules" +msgstr "Mostrar alertas de módulos deshabilitados" -#: ../../godmode/servers/modificar_server.php:34 -msgid "Update Server" -msgstr "Actualizar el servidor" +#: ../../godmode/massive/massive_add_action_alerts.php:99 +msgid "No alerts selected" +msgstr "No se seleccionó ninguna alerta" -#: ../../godmode/servers/modificar_server.php:40 -#: ../../godmode/servers/plugin.php:335 ../../godmode/servers/plugin.php:999 -msgid "Standard" -msgstr "Estándar" +#: ../../godmode/massive/massive_add_action_alerts.php:125 +msgid "No actions selected" +msgstr "No hay acciones seleccionadas" -#: ../../godmode/servers/modificar_server.php:42 -#: ../../godmode/setup/license.php:131 -#: ../../include/class/Diagnostics.class.php:1175 -#: ../../include/functions_servers.php:1232 ../../include/functions_ui.php:849 -msgid "Satellite" -msgstr "Satélite" +#: ../../godmode/massive/massive_add_profiles.php:82 +msgid "Profiles added successfully" +msgstr "Perfiles agregados correctamente" -#: ../../godmode/servers/modificar_server.php:75 -msgid "Exec Server" -msgstr "Ejecutar el servidor" +#: ../../godmode/massive/massive_add_profiles.php:83 +msgid "Profiles cannot be added" +msgstr "Los perfiles no se han podido agregar" -#: ../../godmode/servers/modificar_server.php:83 -msgid "Leave blank to use SSH default port (22)" -msgstr "Dejar en blanco para usar el puerto SSH por defecto (22)" +#: ../../godmode/massive/massive_edit_modules.php:119 +msgid "Error updating the modules from a module type" +msgstr "Error al actualizar los módulos desde un tipo de módulos" -#: ../../godmode/servers/modificar_server.php:88 -msgid "Check Exec Server" -msgstr "Comprobar ejecución del servidor" +#: ../../godmode/massive/massive_edit_modules.php:142 +msgid "Error updating the modules from an agent group" +msgstr "Error al actualizar los módulos desde un grupo de agentes" -#: ../../godmode/servers/modificar_server.php:104 -msgid "Remote Configuration" -msgstr "Configuración remota" +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules (maybe there was no field to update)" +msgstr "" +"Error al actualizar los módulos (puede que no hubiera ningún campo para " +"actualizar)" -#: ../../godmode/servers/modificar_server.php:108 +#: ../../godmode/massive/massive_edit_modules.php:478 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:392 +msgid "Filter agents" +msgstr "Filtrar agentes" + +#: ../../godmode/admin_access_logs.php:47 #, php-format -msgid "%s servers" -msgstr "Servidores de %s" +msgid "%s audit" +msgstr "Adiitoría %s" -#: ../../godmode/servers/modificar_server.php:115 -#: ../../godmode/servers/modificar_server.php:126 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1470 -msgid "Unsuccessfull action" -msgstr "No se pudo completar la acción" +#: ../../godmode/admin_access_logs.php:47 +msgid "Review Logs" +msgstr "Revisar logs" -#: ../../godmode/servers/modificar_server.php:117 -#: ../../godmode/servers/modificar_server.php:128 -#: ../../enterprise/godmode/alerts/alert_events_list.php:380 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 -msgid "Successfully action" -msgstr "Acción procesada satisfactoriamente" +#: ../../godmode/admin_access_logs.php:199 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:4691 +#: ../../include/functions.php:2889 +#: ../../operation/snmpconsole/snmp_statistics.php:144 +#: ../../general/logon_ok.php:248 +msgid "Source IP" +msgstr "IP origen" -#: ../../godmode/servers/modificar_server.php:138 -#: ../../enterprise/meta/advanced/servers.php:39 -msgid "Server deleted successfully" -msgstr "Servidor eliminado correctamente" +#: ../../godmode/alerts/configure_alert_command.php:43 +msgid "Configure alert command" +msgstr "Configurar comando de alerta" -#: ../../godmode/servers/modificar_server.php:140 -#: ../../enterprise/meta/advanced/servers.php:41 -msgid "There was a problem deleting the server" -msgstr "Hubo un problema al eliminar el servidor" +#: ../../godmode/alerts/configure_alert_command.php:155 +msgid "Update Command" +msgstr "Actualizar comando" -#: ../../godmode/servers/modificar_server.php:159 -msgid "Server updated successfully" -msgstr "Servidor actualizado correctamente" +#: ../../godmode/alerts/configure_alert_command.php:155 +#: ../../godmode/alerts/configure_alert_action.php:170 +msgid "Create Command" +msgstr "Crear comando" -#: ../../godmode/servers/modificar_server.php:161 -msgid "There was a problem updating the server" -msgstr "Hubo un problema al actualizar el servidor" - -#: ../../godmode/servers/plugin.php:56 -msgid "Network Components" -msgstr "Componentes de red" - -#: ../../godmode/servers/plugin.php:157 -#: ../../include/functions_filemanager.php:749 -#: ../../enterprise/godmode/agentes/collections.editor.php:132 -#: ../../enterprise/godmode/agentes/collections.editor.php:197 -#: ../../enterprise/meta/advanced/collections.editor.php:99 -#: ../../enterprise/meta/advanced/collections.editor.php:165 -msgid "Edit file" -msgstr "Editar archivo" - -#: ../../godmode/servers/plugin.php:176 -#: ../../enterprise/godmode/agentes/collections.editor.php:221 -#: ../../enterprise/meta/advanced/collections.editor.php:190 -msgid "Compatibility mode" -msgstr "Modo de compatibilidad" - -#: ../../godmode/servers/plugin.php:238 ../../godmode/setup/file_manager.php:67 -#: ../../include/functions_filemanager.php:598 -#: ../../include/functions_filemanager.php:603 +#: ../../godmode/alerts/configure_alert_command.php:199 #, php-format -msgid "Index of %s" -msgstr "Índice de %s" +msgid "Field %s description" +msgstr "Campo de descripción %s" -#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:582 -msgid "To manage plugin you must activate centralized management" -msgstr "Active la gestión centralizada para gestionar el plugin" - -#: ../../godmode/servers/plugin.php:291 -msgid "Plugin update" -msgstr "Actualización de plugin" - -#: ../../godmode/servers/plugin.php:303 ../../godmode/servers/plugin.php:630 -msgid "" -"This console is not manager of this environment,\n" -" \t\tplease manage this feature from centralized manager console " -"(Metaconsole)." -msgstr "" -"Esta consola no administra este entorno,\n" -" \t\tadministre esta funcionalidad desde el administrador " -"centralizado de la consola (Metaconsola)." - -#: ../../godmode/servers/plugin.php:334 -msgid "Plugin type" -msgstr "Tipo de plugin" - -#: ../../godmode/servers/plugin.php:336 ../../godmode/servers/plugin.php:1001 -msgid "Nagios" -msgstr "Nagios" - -#: ../../godmode/servers/plugin.php:341 -msgid "Max. timeout" -msgstr "Máx. tiempo de espera" - -#: ../../godmode/servers/plugin.php:341 -msgid "" -"This value only will be applied if is minor than the server general " -"configuration plugin timeout" -msgstr "" -"Este valor solo se aplicará si es menor que el tiempo de espera del plugin " -"de la configuración general del servidor." - -#: ../../godmode/servers/plugin.php:341 -msgid "" -"If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "" -"Si configuras en 0 segundos el tiempo de espera, se utilizará el tiempo de " -"espera del plugin del servidor." - -#: ../../godmode/servers/plugin.php:394 -msgid "Plugin command" -msgstr "Comando del plugin" - -#: ../../godmode/servers/plugin.php:406 -msgid "Plug-in parameters" -msgstr "Parámetros del plugin" - -#: ../../godmode/servers/plugin.php:485 -#: ../../include/class/ManageNetScanScripts.class.php:634 -#: ../../enterprise/godmode/modules/configure_local_component.php:613 -msgid "Default value" -msgstr "Valor por defecto" - -#: ../../godmode/servers/plugin.php:498 -#: ../../include/class/ManageNetScanScripts.class.php:665 -msgid "Hide value" -msgstr "Ocultar valor" - -#: ../../godmode/servers/plugin.php:498 -#: ../../include/class/ManageNetScanScripts.class.php:667 -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:507 -#: ../../include/class/ManageNetScanScripts.class.php:688 -#: ../../include/functions_ui.php:1422 -#: ../../enterprise/godmode/modules/configure_local_component.php:619 -#: ../../enterprise/meta/general/login_page.php:75 -#: ../../enterprise/meta/include/process_reset_pass.php:58 -#: ../../enterprise/meta/include/reset_pass.php:58 -msgid "Help" -msgstr "Ayuda" - -#: ../../godmode/servers/plugin.php:524 -#: ../../include/class/ManageNetScanScripts.class.php:722 -#: ../../enterprise/godmode/modules/configure_local_component.php:629 -msgid "Add macro" -msgstr "Añadir macro" - -#: ../../godmode/servers/plugin.php:534 -#: ../../include/class/ManageNetScanScripts.class.php:740 -#: ../../enterprise/godmode/modules/configure_local_component.php:637 -msgid "Delete macro" -msgstr "Eliminar macro" - -#: ../../godmode/servers/plugin.php:547 ../../godmode/servers/plugin.php:552 -msgid "Parameters macros" -msgstr "Macros de los parámetros" - -#: ../../godmode/servers/plugin.php:589 -msgid "" -"The previous configuration of plugins has been imported from the nodes. " -"Please check that the definitions are correct." -msgstr "" -"Se ha importado la configuración previa de los plugins de los nodos. " -"Compruebe que las definiciones son correctas." - -#: ../../godmode/servers/plugin.php:589 -#: ../../enterprise/meta/advanced/collections.php:28 -msgid "Note:" -msgstr "Nota:" - -#: ../../godmode/servers/plugin.php:590 -msgid "" -"These definitions will not be operational until you manually \n" -" \t\t\tcopy the files from the nodes to the atachment/plugin/ directory " -"of the meta console." -msgstr "" -"Estas definiciones no estarán operativas hasta que \n" -" \t\t\tcopie los archivos de los nodos al directorio atachment/plugin/ de " -"la Metaconsola manualmente." - -#: ../../godmode/servers/plugin.php:592 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:466 -#: ../../enterprise/meta/advanced/collections.php:31 -msgid "You can find more information at:" -msgstr "Encontrará más información en:" - -#: ../../godmode/servers/plugin.php:617 +#: ../../godmode/alerts/configure_alert_command.php:209 #, php-format -msgid "Plug-ins registered on %s" -msgstr "Plugins registrados en %s" +msgid "Field %s values" +msgstr "Campos %s valores" -#: ../../godmode/servers/plugin.php:639 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "Necesitas crear tus propios plugins compatibles con Windows." +#: ../../godmode/alerts/configure_alert_command.php:209 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "valor1,etiqueta1;valor2,etiqueta2;valor3,etiqueta3" -#: ../../godmode/servers/plugin.php:705 -msgid "Problem updating plugin" -msgstr "Problema al actualizar el plugin" +#: ../../godmode/alerts/configure_alert_command.php:225 +msgid "Hide" +msgstr "Ocultar" -#: ../../godmode/servers/plugin.php:707 -msgid "Plugin updated successfully" -msgstr "Plugin actualizado correctamente" +#: ../../godmode/alerts/alert_actions.php:52 +msgid "Alert actions" +msgstr "Acciones de alerta" -#: ../../godmode/servers/plugin.php:765 -msgid "Problem creating plugin" -msgstr "Error al crear plugin" +#: ../../godmode/alerts/alert_actions.php:290 +msgid "" +"The action and the command associated with it do not have the same group. " +"Please contact an administrator to fix it." +msgstr "" +"La acción y el comando asociado no pertenecen al mismo grupo. Póngase en " +"contacto con el administrador para solucionarlo." -#: ../../godmode/servers/plugin.php:767 -msgid "Plugin created successfully" -msgstr "Plugin creado correctamente" +#: ../../godmode/alerts/alert_actions.php:318 +msgid "No alert actions configured" +msgstr "Sin acciones de alertas configuradas" -#: ../../godmode/servers/plugin.php:779 ../../godmode/servers/plugin.php:813 -msgid "Problem deleting plugin" -msgstr "Error al borrar plugin" +#: ../../godmode/alerts/alert_list.list.php:117 +msgid "Field content" +msgstr "Contenido del campo" -#: ../../godmode/servers/plugin.php:781 ../../godmode/servers/plugin.php:815 -msgid "Plugin deleted successfully" -msgstr "Plugin borrado correctamente" +#: ../../godmode/alerts/alert_list.list.php:126 +msgid "Enabled / Disabled" +msgstr "Habilitado/Deshabilitado" -#: ../../godmode/servers/plugin.php:826 -msgid "Problem deploying plugin" -msgstr "Problema de despliegue de plugins" +#: ../../godmode/alerts/alert_list.list.php:167 +#: ../../operation/agentes/alerts_status.php:474 +msgid "Alert control filter" +msgstr "Filtro de control de alertas" -#: ../../godmode/servers/plugin.php:828 -msgid "Plugin deployed successfully" -msgstr "Plugin desplegado correctamente" +#: ../../godmode/alerts/alert_list.list.php:630 +#: ../../godmode/alerts/alert_view.php:358 +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/servers/plugin.php:1031 -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/alerts/alert_list.list.php:642 +msgid "Delete action" +msgstr "Eliminar acción" -#: ../../godmode/servers/plugin.php:1033 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1729 -#: ../../enterprise/include/functions_HA_cluster.php:46 -msgid "Deploy" -msgstr "Desplegar" +#: ../../godmode/alerts/alert_list.list.php:855 +msgid "View alert advanced details" +msgstr "Ver detalles avanzados de la alerta" -#: ../../godmode/servers/plugin.php:1044 -msgid "There are no plugins in the system" -msgstr "No hay plugins en el sistema" +#: ../../godmode/alerts/alert_list.list.php:871 +#: ../../include/functions_reporting_html.php:2393 +msgid "No alerts defined" +msgstr "No hay alertas definidas" -#: ../../godmode/servers/plugin.php:1058 +#: ../../godmode/alerts/alert_commands.php:127 +msgid "" +"For sending emails, text must be HTML format, if you want to use plain text, " +"type it between the following labels:
"
+msgstr ""
+"Para envíar emails, el texto debe estar en formato HTML, si quiere usar "
+"texto plano, escríbelo entre las etiquetas: 
"
+
+#: ../../godmode/alerts/alert_commands.php:147
+#: ../../godmode/alerts/alert_commands.php:156
+msgid "Text/plain"
+msgstr "Texto/plano"
+
+#: ../../godmode/alerts/alert_commands.php:147
+#: ../../godmode/alerts/alert_commands.php:156
+msgid "For sending emails only text plain"
+msgstr "Para mandar emails solo en texto plano"
+
+#: ../../godmode/alerts/alert_commands.php:150
+#: ../../godmode/alerts/alert_commands.php:159
+msgid "Text/html"
+msgstr "Texto/HTML"
+
+#: ../../godmode/alerts/alert_commands.php:284
+msgid "Alert commands"
+msgstr "Comandos de alerta"
+
+#: ../../godmode/alerts/alert_commands.php:342
+#: ../../include/functions_alerts.php:2758
+msgid "No name specified"
+msgstr "Ningún nombre especificado"
+
+#: ../../godmode/alerts/alert_commands.php:346
+#: ../../include/functions_alerts.php:2753
+msgid "No command specified"
+msgstr "Ningún comando especificado"
+
+#: ../../godmode/alerts/alert_commands.php:395
+msgid " (copy)"
+msgstr " (copia)"
+
+#: ../../godmode/alerts/alert_commands.php:475
+msgid "No alert commands configured"
+msgstr "Comandos de alertas no configurados"
+
+#: ../../godmode/alerts/configure_alert_special_days.php:55
+msgid "Configure special day"
+msgstr "Configurar día especial"
+
+#: ../../godmode/alerts/configure_alert_special_days.php:81
+#: ../../godmode/alerts/alert_special_days.php:263
+msgid "Same day of the week"
+msgstr "Mismo día de la semana"
+
+#: ../../godmode/alerts/alert_templates.php:422
+msgid "No alert templates defined"
+msgstr "No hay plantillas de alerta definidas"
+
+#: ../../godmode/alerts/configure_alert_action.php:60
+#: ../../godmode/alerts/configure_alert_action.php:73
+msgid "Configure alert action"
+msgstr "Configurar acción de alerta"
+
+#: ../../godmode/alerts/configure_alert_action.php:114
+msgid "Update Action"
+msgstr "Actualizar acción"
+
+#: ../../godmode/alerts/configure_alert_action.php:132
+msgid "This action may stop working, if you change its name."
+msgstr "Esta acción podría dejar de funcionar si cambia el nombre."
+
+#: ../../godmode/alerts/configure_alert_action.php:201
+msgid "Recovery"
+msgstr "Recuperación"
+
+#: ../../godmode/alerts/configure_alert_action.php:205
+#: ../../godmode/alerts/alert_view.php:504
+#: ../../godmode/alerts/alert_view.php:591 ../../godmode/servers/plugin.php:415
+msgid "Command preview"
+msgstr "Vista previa del comando"
+
+#: ../../godmode/alerts/configure_alert_template.php:69
+#: ../../godmode/alerts/configure_alert_template.php:93
+#: ../../godmode/alerts/configure_alert_template.php:126
+#: ../../include/functions_menu.php:506
+msgid "Configure alert template"
+msgstr "Configurar plantilla de alerta"
+
+#: ../../godmode/alerts/configure_alert_template.php:483
+msgid "No template name specified"
+msgstr "Ningún nombre de plantilla especificado"
+
+#: ../../godmode/alerts/configure_alert_template.php:645
+msgid "Reset counter for non-sustained alerts"
+msgstr "Reiniciar el contador para las alertas no sostenidas"
+
+#: ../../godmode/alerts/configure_alert_template.php:645
+msgid ""
+"Enable this option if you want the counter to be reset when the alert is not "
+"being fired consecutively, even if it's within the time threshold"
+msgstr ""
+"Activa esta opción si quieres que el contador se reinicie cuando la alerta "
+"no se dispare de forma consecutiva, incluso si está dentro del umbral."
+
+#: ../../godmode/alerts/configure_alert_template.php:704
+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:708
+msgid "Condition type"
+msgstr "Tipo de condición"
+
+#: ../../godmode/alerts/configure_alert_template.php:723
+msgid "Trigger when matches the value"
+msgstr "Disparar cuando coincida con el valor"
+
+#: ../../godmode/alerts/configure_alert_template.php:746
+msgid "The regular expression is valid"
+msgstr "La expresión regular es válida."
+
+#: ../../godmode/alerts/configure_alert_template.php:756
+msgid "The regular expression is not valid"
+msgstr "La expresión regular no es válida."
+
+#: ../../godmode/alerts/configure_alert_template.php:822
+msgid "Alert recovery"
+msgstr "Recuperación de alerta"
+
+#: ../../godmode/alerts/configure_alert_template.php:842
+msgid "Recovery fields"
+msgstr "Campos de recuperación"
+
+#: ../../godmode/alerts/configure_alert_template.php:961
+msgid "No wizard"
+msgstr "No hay asistente"
+
+#: ../../godmode/alerts/configure_alert_template.php:1039
+#: ../../godmode/alerts/alert_view.php:134 ../../include/functions_ui.php:1310
+msgid ""
+"The alert would fire when the value matches "
+msgstr ""
+"La alerta se disparará cuando el valor coincida con ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1040
 #, php-format
-msgid "List of modules and components created by \"%s\" "
-msgstr "Lista de los módulos y componentes creados por '%s' "
+msgid "The alert would fire when the value doesn\\'t match %s"
+msgstr "La alerta se disparará cuando el valor no coincida con %s"
 
-#: ../../godmode/servers/plugin.php:1164 ../../godmode/servers/plugin.php:1180
-msgid "Some modules or components are using the plugin"
-msgstr "Algunos módulos o componentes están usando el plugin."
+#: ../../godmode/alerts/configure_alert_template.php:1041
+#: ../../godmode/alerts/alert_view.php:143 ../../include/functions_ui.php:1299
+msgid "The alert would fire when the value is "
+msgstr ""
+"La alerta se disparará cuando el valor sea ."
 
-#: ../../godmode/servers/plugin.php:1165
+#: ../../godmode/alerts/configure_alert_template.php:1042
+#: ../../godmode/alerts/alert_view.php:148 ../../include/functions_ui.php:1304
+msgid "The alert would fire when the value is not "
+msgstr ""
+"La alerta se disparará cuando el valor no sea ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1043
+#: ../../godmode/alerts/alert_view.php:154 ../../include/functions_ui.php:1322
 msgid ""
-"The modules or components should be updated manually or using the bulk "
-"operations for plugins after this change"
+"The alert would fire when the value is between  and "
+""
 msgstr ""
-"Los módulos o componentes deberían ser actualizados manualmente o usando las "
-"operaciones masivas para los plugins después de este cambio."
+"La alerta se disparará cuando el valor esté entre  y "
+"."
 
-#: ../../godmode/servers/plugin.php:1167
-msgid "Are you sure you want to perform this action?"
-msgstr "¿Estás seguro de que quieres realizar esta acción?"
-
-#: ../../godmode/servers/plugin.php:1181
-msgid "Are you sure you want to unlock this item?"
-msgstr "¿Estás seguro de que quieres desbloquear este elemento?"
-
-#: ../../godmode/servers/plugin.php:1201
+#: ../../godmode/alerts/configure_alert_template.php:1044
 msgid ""
-"The plugin command cannot be updated because some modules or components are "
-"using the plugin."
+"The alert would fire when the value is not between  and "
 msgstr ""
-"No se puede actualizar el comando. Este plugin está siendo utilizado por "
-"módulos o componentes."
+"La alerta se disparará cuando no esté entre  y "
+"."
 
-#: ../../godmode/servers/plugin.php:1207
+#: ../../godmode/alerts/configure_alert_template.php:1045
+#: ../../godmode/alerts/alert_view.php:164
+msgid "The alert would fire when the value is below "
+msgstr ""
+"La alerta se disparará cuando el valor sea inferior a  ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1046
+#: ../../godmode/alerts/alert_view.php:169
+msgid "The alert would fire when the value is above "
+msgstr ""
+"La alerta se disparará cuando el valor sea superior a ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1047
+#: ../../godmode/alerts/alert_view.php:182 ../../include/functions_ui.php:1341
+msgid "The alert would fire when the module is in warning status"
+msgstr "La alerta se disparará cuando el módulo esté en estado advertencia."
+
+#: ../../godmode/alerts/configure_alert_template.php:1048
+#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1346
+msgid "The alert would fire when the module is in critical status"
+msgstr "La alerta se disparará cuando el módulo esté en estado crítico."
+
+#: ../../godmode/alerts/configure_alert_template.php:1049
+#: ../../godmode/alerts/alert_view.php:175
+msgid "The alert would fire when the module value changes"
+msgstr "La alerta se disparará cuando los valores de los módulos cambien."
+
+#: ../../godmode/alerts/configure_alert_template.php:1050
+#: ../../godmode/alerts/alert_view.php:177
+msgid "The alert would fire when the module value does not change"
+msgstr "La alerta se disparará cuando los valores de los módulos no cambien."
+
+#: ../../godmode/alerts/configure_alert_template.php:1051
+#: ../../godmode/alerts/alert_view.php:194
+msgid "The alert would fire when the module is in unknown status"
+msgstr "La alerta se disparará cuando el módulo esté en estado desconocido."
+
+#: ../../godmode/alerts/configure_alert_template.php:1052
 msgid ""
-"The plugin macros cannot be updated because some modules or components are "
-"using the plugin"
+"The alert template cannot have the same value for min and max thresholds."
 msgstr ""
-"Las macros del plugin no pueden ser actualizadas porque algunos módulos o "
-"componentes están usando el plugin."
+"La plantilla de alerta no puede tener el mismo valor para los umbrales max y "
+"min."
 
-#: ../../godmode/servers/servers.build_table.php:37
-#: ../../enterprise/meta/advanced/servers.build_table.php:32
-msgid "There are no servers configured into the database"
-msgstr "No hay ningún servidor configurado en la base de datos"
+#: ../../godmode/alerts/configure_alert_template.php:1053
+#: ../../godmode/alerts/alert_view.php:190
+msgid "The alert would fire when the module is in not normal status"
+msgstr "La alerta se disparará cuando el módulo no esté en estado normal"
 
-#: ../../godmode/servers/servers.build_table.php:70
-#: ../../enterprise/meta/advanced/servers.build_table.php:63
-msgid "Lag"
-msgstr "Retraso"
+#: ../../godmode/alerts/alert_special_days.php:91
+msgid "Skipped dates: "
+msgstr "Fechas omitidas: "
 
-#: ../../godmode/servers/servers.build_table.php:70
-#: ../../enterprise/meta/advanced/servers.build_table.php:63
-msgid "Avg. Delay(sec)/Modules delayed"
-msgstr "Media de retraso (seg.)/Módulos retrasados"
+#: ../../godmode/alerts/alert_special_days.php:111
+msgid "Success to upload iCalendar"
+msgstr "Éxito al cargar iCalendar"
 
-#: ../../godmode/servers/servers.build_table.php:71
-#: ../../enterprise/meta/advanced/servers.build_table.php:64
-msgid "T/Q"
-msgstr "H/C"
+#: ../../godmode/alerts/alert_special_days.php:111
+msgid "Fail to upload iCalendar"
+msgstr "Error al cargar iCalendar"
 
-#: ../../godmode/servers/servers.build_table.php:71
-#: ../../enterprise/meta/advanced/servers.build_table.php:64
-msgid "Threads / Queued modules currently"
-msgstr "Hilos/Cola actual de módulos"
+#: ../../godmode/alerts/alert_special_days.php:143
+msgid "Could not be created, it already exists"
+msgstr "No se ha podido crear, ya existe"
 
-#: ../../godmode/servers/servers.build_table.php:101
-#: ../../enterprise/meta/advanced/servers.build_table.php:89
-msgid "This is a master server"
-msgstr "Este es un servidor maestro"
+#: ../../godmode/alerts/alert_special_days.php:207
+msgid "Could not be updated, it already exists"
+msgstr "No se ha podido actualizar, ya existe"
 
-#: ../../godmode/servers/servers.build_table.php:105
-msgid "Exec server enabled"
-msgstr "Servidor de ejecución habilitado"
+#: ../../godmode/alerts/alert_special_days.php:260
+msgid "iCalendar(.ics) file"
+msgstr "Archivo iCalendar (.ics)"
 
-#: ../../godmode/servers/servers.build_table.php:121
-#: ../../godmode/servers/servers.build_table.php:127
-#: ../../enterprise/meta/advanced/servers.build_table.php:104
-#: ../../enterprise/meta/advanced/servers.build_table.php:110
-msgid "of"
-msgstr "de"
+#: ../../godmode/alerts/alert_special_days.php:284
+msgid "Overwrite"
+msgstr "Sobrescribir"
 
-#: ../../godmode/servers/servers.build_table.php:164
-msgid "Manage Discovery tasks"
-msgstr "Gestionar las tareas de Discovery"
+#: ../../godmode/alerts/alert_special_days.php:285
+msgid "Check this box, if you want to overwrite existing same days."
+msgstr "Marca esta casilla si quieres sobrescribir los días existentes."
 
-#: ../../godmode/servers/servers.build_table.php:176
-msgid "Reset module status and fired alert counts"
-msgstr ""
-"Reiniciar el estado de los módulos y el conteo de las alertas disparadas"
+#: ../../godmode/alerts/alert_special_days.php:304
+msgid "Display range: "
+msgstr "Mostrar rango "
 
-#: ../../godmode/servers/servers.build_table.php:184
-msgid "Claim back SNMP modules"
-msgstr "Recuperar módulos SNMP"
+#: ../../godmode/alerts/alert_special_days.php:470
+msgid "Same as "
+msgstr "Mismo que "
 
-#: ../../godmode/servers/servers.build_table.php:214
-#: ../../enterprise/meta/advanced/servers.build_table.php:136
+#: ../../godmode/alerts/alert_view.php:49
+#: ../../godmode/alerts/alert_view.php:327
+#: ../../include/functions_events.php:4217
+msgid "Alert details"
+msgstr "Detalles de alerta"
+
+#: ../../godmode/alerts/alert_view.php:60
+#: ../../godmode/alerts/alert_view.php:61
+#: ../../godmode/alerts/alert_list.php:433
+msgid "List alerts"
+msgstr "Lista de alertas"
+
+#: ../../godmode/alerts/alert_view.php:101
+#: ../../mobile/operation/alerts.php:107 ../../mobile/operation/alerts.php:108
+#: ../../mobile/operation/alerts.php:237 ../../mobile/operation/alerts.php:238
+msgid "Stand by"
+msgstr "En espera"
+
+#: ../../godmode/alerts/alert_view.php:136 ../../include/functions_ui.php:1313
 msgid ""
-"Modules run by this server will stop working. Do you want to continue?"
+"The alert would fire when the value doesn't match "
 msgstr ""
-"Los módulos ejecutados por este servidor podrían dejar de funcionar. "
-"¿Quieres continuar?"
+"La alerta se disparará cuando el valor no coincida con ."
 
-#: ../../godmode/servers/servers.build_table.php:240
-#: ../../enterprise/meta/advanced/servers.build_table.php:162
-msgid "Tactical server information"
-msgstr "Vista táctica del servidor"
-
-#: ../../godmode/setup/gis.php:74
-msgid "Map connection name"
-msgstr "Nombre de la conexión"
-
-#: ../../godmode/setup/gis.php:92
-msgid "Do you wan delete this connection?"
-msgstr "¿Deseas borrar esta conexión?"
-
-#: ../../godmode/setup/gis_step_2.php:40
-msgid "Create new map connection"
-msgstr "Crear nueva conexión de mapas"
-
-#: ../../godmode/setup/gis_step_2.php:66
-msgid "Edit map connection"
-msgstr "Editar la conexión de mapas"
-
-#: ../../godmode/setup/gis_step_2.php:197
-msgid "Connection Name"
-msgstr "Nombre de conexión"
-
-#: ../../godmode/setup/gis_step_2.php:197
-msgid "Descriptive name for the connection"
-msgstr "Descripción para la conexión"
-
-#: ../../godmode/setup/gis_step_2.php:200
-msgid "Group that owns the connection"
-msgstr "Grupo asignado a la conexión"
-
-#: ../../godmode/setup/gis_step_2.php:203
-msgid "Number of zoom levels"
-msgstr "Número de niveles de zoom"
-
-#: ../../godmode/setup/gis_step_2.php:207
-msgid "Default zoom level"
-msgstr "Nivel de zoom por defecto"
-
-#: ../../godmode/setup/gis_step_2.php:207
-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:210
-msgid "Basic configuration"
-msgstr "Configuración básica"
-
-#: ../../godmode/setup/gis_step_2.php:215
-msgid "Open Street Maps"
-msgstr "OpenStreetMaps"
-
-#: ../../godmode/setup/gis_step_2.php:216
-msgid "Google Maps"
-msgstr "Google Maps"
-
-#: ../../godmode/setup/gis_step_2.php:218
-msgid "WMS Server"
-msgstr "Servidor WMS"
-
-#: ../../godmode/setup/gis_step_2.php:220
-msgid "Please select the connection type"
-msgstr "Tipo de conexión"
-
-#: ../../godmode/setup/gis_step_2.php:222
-msgid "Map connection type"
-msgstr "Tipo de conexión de mapa"
-
-#: ../../godmode/setup/gis_step_2.php:269
-msgid "Tile Server URL"
-msgstr "URL del servidor tile"
-
-#: ../../godmode/setup/gis_step_2.php:272
-msgid "Google Physical"
-msgstr "Google Physical"
-
-#: ../../godmode/setup/gis_step_2.php:273
-msgid "Google Hybrid"
-msgstr "Google Hybrid"
-
-#: ../../godmode/setup/gis_step_2.php:274
-msgid "Google Satelite"
-msgstr "Google Satélite"
-
-#: ../../godmode/setup/gis_step_2.php:276
-msgid "Google Map Type"
-msgstr "Tipo de mapa de Google"
-
-#: ../../godmode/setup/gis_step_2.php:276
-msgid "Google Maps Key"
-msgstr "Clave de Google Maps"
-
-#: ../../godmode/setup/gis_step_2.php:278
-msgid "Image URL"
-msgstr "URL de la imagen"
-
-#: ../../godmode/setup/gis_step_2.php:278
-msgid "Corners of the area of the image"
-msgstr "Esquinas del área de la imagen"
-
-#: ../../godmode/setup/gis_step_2.php:278
-msgid "Left"
-msgstr "Izquierda"
-
-#: ../../godmode/setup/gis_step_2.php:278
-#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:62
-#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:62
-msgid "Bottom"
-msgstr "Inferior"
-
-#: ../../godmode/setup/gis_step_2.php:278
-msgid "Right"
-msgstr "Derecha"
-
-#: ../../godmode/setup/gis_step_2.php:278
-msgid "Top"
-msgstr "Superior"
-
-#: ../../godmode/setup/gis_step_2.php:278
-msgid "Image Size"
-msgstr "Tamaño de imagen"
-
-#: ../../godmode/setup/gis_step_2.php:281
-msgid "WMS Server URL"
-msgstr "URL del servidor WMS"
-
-#: ../../godmode/setup/gis_step_2.php:281
-msgid "Enter a single element or a comma separated list"
-msgstr "Añada un solo elemento o una lista separada por comas."
-
-#: ../../godmode/setup/gis_step_2.php:309
+#: ../../godmode/alerts/alert_view.php:156 ../../include/functions_ui.php:1325
 msgid ""
-"Preview to select the center of the map and the default position of an agent "
-"without gis data"
+"The alert would fire when the value is not between  "
+"and "
 msgstr ""
-"Vista previa para elegir el centro del mapa y la posición por defecto de un "
-"agente sin información GIS"
+"La alerta se disparará cuando el valor no esté entre  y ."
 
-#: ../../godmode/setup/gis_step_2.php:310
-msgid "Load preview map"
-msgstr "Vista previa del mapa"
+#: ../../godmode/alerts/alert_view.php:328
+msgid "Firing conditions"
+msgstr "Condiciones de disparo"
 
-#: ../../godmode/setup/gis_step_2.php:319
-msgid "Map Center"
-msgstr "Centro del mapa"
+#: ../../godmode/alerts/alert_view.php:351
+#: ../../godmode/alerts/alert_view.php:371
+msgid "Every time that the alert is fired"
+msgstr "Cada vez que la alerta es disparada"
 
-#: ../../godmode/setup/gis_step_2.php:319
-msgid "Position to center the map when the map is opened"
-msgstr "Posición para centrar el mapa cuando se abra"
+#: ../../godmode/alerts/alert_view.php:412
+msgid ""
+"Select the desired action and mode to see the Firing/Recovery fields for "
+"this action"
+msgstr ""
+"Selecciona la acción deseada y el modo para ver los campos de "
+"Disparado/Recuperación para dicha acción."
 
-#: ../../godmode/setup/gis_step_2.php:320
-msgid "Default position for agents without GIS data"
-msgstr "Posición por defecto para agentes sin información GIS"
+#: ../../godmode/alerts/alert_view.php:439
+msgid "Template fields"
+msgstr "Campos de la plantilla"
 
-#: ../../godmode/setup/gis_step_2.php:322
-msgid "Change in the map"
-msgstr "Cambiar en el mapa"
+#: ../../godmode/alerts/alert_view.php:439
+msgid "Triggering fields configured in template"
+msgstr "Campos de disparado configurados en la plantilla"
 
-#: ../../godmode/setup/gis_step_2.php:322
-msgid "This selects what to change by clicking on the map"
-msgstr "Seleccionar qué cambia cuando se pincha en el mapa"
+#: ../../godmode/alerts/alert_view.php:512
+msgid "The alert recovering is disabled on this template."
+msgstr "La recuperación de la alerta está desactivada en esta plantilla"
 
-#: ../../godmode/setup/gis_step_2.php:326
-#: ../../operation/agentes/gis_view.php:215
-msgid "Latitude"
-msgstr "Latitud"
+#: ../../godmode/alerts/alert_view.php:524
+msgid "Recovering fields"
+msgstr "Campos de recuperación"
 
-#: ../../godmode/setup/gis_step_2.php:330
-#: ../../operation/agentes/gis_view.php:214
-msgid "Longitude"
-msgstr "Longitud"
+#: ../../godmode/alerts/alert_view.php:524
+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/setup/gis_step_2.php:334
-#: ../../operation/agentes/gis_view.php:216
-msgid "Altitude"
-msgstr "Altitud"
+#: ../../godmode/alerts/alert_view.php:528
+msgid "Template recovery fields"
+msgstr "Campos de recuperación de la plantilla"
 
-#: ../../godmode/setup/gis_step_2.php:383
-#: ../../godmode/setup/gis_step_2.php:478
-msgid "Center"
-msgstr "Centro"
+#: ../../godmode/alerts/alert_view.php:528
+msgid "Recovery fields configured in alert template"
+msgstr "Campos de recuperación configurados en la plantilla de la alerta"
 
-#: ../../godmode/setup/gis_step_2.php:443
-msgid "Refresh preview map"
-msgstr "Actualizar vista previa"
+#: ../../godmode/alerts/alert_view.php:529
+msgid "Action recovery fields"
+msgstr "Acción en campos de recuperación"
+
+#: ../../godmode/alerts/alert_view.php:529
+msgid "Recovery fields configured in alert action"
+msgstr "Campos de recuperación configurados en una acción de alerta"
+
+#: ../../godmode/alerts/alert_view.php:530
+msgid "Executed on recovery"
+msgstr "Ejecutado en recuperación"
+
+#: ../../godmode/alerts/alert_view.php:530
+msgid "Fields used on execution when the alert is recovered"
+msgstr "Campos usados en la ejecución cuando la alerta es recuperada"
+
+#: ../../godmode/alerts/alert_list.builder.php:90
+msgid "Latest value"
+msgstr "Último valor"
+
+#: ../../godmode/alerts/alert_list.builder.php:193
+msgid "Finish and view cluster"
+msgstr "Finalizar y ver cluster"
+
+#: ../../godmode/alerts/alert_list.php:114
+msgid "Already added"
+msgstr "Ya añadido"
+
+#: ../../godmode/alerts/alert_list.php:168
+msgid "No template specified"
+msgstr "Ninguna plantilla especificada"
+
+#: ../../godmode/alerts/alert_list.php:437
+msgid "Builder alert"
+msgstr "Creador de alerta"
 
 #: ../../godmode/setup/license.php:48
 msgid "License management"
@@ -18396,27 +32691,18 @@ msgstr "activado"
 msgid "disabled"
 msgstr "desactivado"
 
+#: ../../godmode/setup/license.php:131
+#: ../../godmode/servers/modificar_server.php:42
+#: ../../include/functions_servers.php:1232 ../../include/functions_ui.php:849
+#: ../../include/class/Diagnostics.class.php:1175
+msgid "Satellite"
+msgstr "Satélite"
+
 #: ../../godmode/setup/license.php:134
 #: ../../include/class/Diagnostics.class.php:1179
 msgid "Licensed to"
 msgstr "Con licencia para"
 
-#: ../../godmode/setup/license.php:143 ../../mobile/operation/events.php:570
-#: ../../operation/agentes/alerts_status.php:532
-#: ../../operation/agentes/alerts_status.php:569
-#: ../../operation/agentes/alerts_status.php:602
-#: ../../operation/agentes/alerts_status.php:679
-#: ../../operation/snmpconsole/snmp_view.php:972
-#: ../../operation/snmpconsole/snmp_view.php:1133
-#: ../../operation/snmpconsole/snmp_view.php:1186
-#: ../../enterprise/godmode/alerts/alert_events_list.php:758
-#: ../../enterprise/godmode/reporting/aws_view.php:154
-#: ../../enterprise/godmode/wizards/Cloud.class.php:305
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2835
-#: ../../enterprise/load_enterprise.php:538
-msgid "Validate"
-msgstr "Validar"
-
 #: ../../godmode/setup/license.php:145 ../../godmode/setup/license.php:160
 msgid "Request new license"
 msgstr "Solicitar nueva licencia"
@@ -18453,55 +32739,13 @@ msgstr ""
 "Haz clic aquí, "
 "introduce la clave de licencia generada y pulsa en Validar."
 
-#: ../../godmode/setup/links.php:25
-msgid "Link management"
-msgstr "Gestionar enlaces"
-
-#: ../../godmode/setup/links.php:39 ../../enterprise/meta/advanced/links.php:44
-msgid "There was a problem creating link"
-msgstr "Error al crear el enlace"
-
-#: ../../godmode/setup/links.php:58 ../../enterprise/meta/advanced/links.php:65
-msgid "There was a problem modifying link"
-msgstr "Error al modificar el enlace"
-
-#: ../../godmode/setup/links.php:71 ../../enterprise/meta/advanced/links.php:79
-msgid "There was a problem deleting link"
-msgstr "Error al borrar el enlace"
-
-#: ../../godmode/setup/links.php:89 ../../godmode/setup/news.php:144
-msgid "Name error"
-msgstr "Error de nombre"
-
-#: ../../godmode/setup/links.php:113 ../../godmode/setup/links.php:142
-#: ../../enterprise/meta/advanced/links.php:124
-#: ../../enterprise/meta/advanced/links.php:151
-msgid "Link name"
-msgstr "Nombre del enlace"
-
-#: ../../godmode/setup/links.php:116
-#: ../../enterprise/godmode/policies/policy_linking.php:170
-#: ../../enterprise/meta/advanced/links.php:127
-msgid "Link"
-msgstr "Enlace"
-
-#: ../../godmode/setup/links.php:138
-#: ../../enterprise/meta/advanced/links.php:147
-msgid "There isn't links"
-msgstr "No hay enlaces"
-
 #: ../../godmode/setup/news.php:29
 msgid "Site news management"
 msgstr "Gestionar noticias del sitio"
 
-#: ../../godmode/setup/news.php:175 ../../godmode/setup/news.php:236
-#: ../../operation/messages/message_edit.php:331
-#: ../../operation/messages/message_list.php:167
-#: ../../enterprise/include/functions_cron.php:186
-#: ../../enterprise/include/functions_cron.php:231
-#: ../../enterprise/operation/reporting/custom_reporting.php:104
-msgid "Subject"
-msgstr "Asunto"
+#: ../../godmode/setup/news.php:144 ../../godmode/setup/links.php:89
+msgid "Name error"
+msgstr "Error de nombre"
 
 #: ../../godmode/setup/news.php:181
 msgid "Modal screen"
@@ -18520,7 +32764,7 @@ msgid "There are no defined news"
 msgstr "No hay noticias definidas"
 
 #: ../../godmode/setup/news.php:238
-#: ../../operation/agentes/estado_generalagente.php:565
+#: ../../operation/agentes/estado_generalagente.php:577
 #: ../../operation/incidents/incident_detail.php:440
 msgid "Author"
 msgstr "Autor"
@@ -18537,6 +32781,131 @@ msgstr "Tablero"
 msgid "Expired"
 msgstr "Caducado"
 
+#: ../../godmode/setup/gis.php:65
+msgid "Map connection name"
+msgstr "Nombre de la conexión"
+
+#: ../../godmode/setup/gis.php:83
+msgid "Do you wan delete this connection?"
+msgstr "¿Deseas borrar esta conexión?"
+
+#: ../../godmode/setup/setup.php:145
+msgid "Websocket engine"
+msgstr "Motor websocket"
+
+#: ../../godmode/setup/setup.php:151
+msgid "GIS Map connection"
+msgstr "Conexión mapa GIS"
+
+#: ../../godmode/setup/setup.php:219
+msgid "Pandora Websocket Engine"
+msgstr "Motor Websocket Pandora"
+
+#: ../../godmode/setup/setup.php:248
+msgid "Correct update the setup options"
+msgstr "Actualización correcta de las opciones de configuración"
+
+#: ../../godmode/setup/setup_ehorus.php:55
+#: ../../include/functions_config.php:1472
+msgid "Enable eHorus"
+msgstr "Activar eHorus"
+
+#: ../../godmode/setup/setup_ehorus.php:89
+#: ../../godmode/setup/setup_integria.php:228
+msgid "API Hostname"
+msgstr "Nombre del propietario de la API"
+
+#: ../../godmode/setup/setup_ehorus.php:95
+msgid "API Port"
+msgstr "Puerto de la API"
+
+#: ../../godmode/setup/setup_ehorus.php:101
+#: ../../godmode/setup/setup_integria.php:240
+msgid "Request timeout"
+msgstr "Tiempo de espera excedido para la petición"
+
+#: ../../godmode/setup/setup_ehorus.php:107
+#: ../../godmode/setup/setup_integria.php:492
+#: ../../operation/users/user_edit.php:694
+msgid "Test"
+msgstr "Probar"
+
+#: ../../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:134
+msgid "eHorus has his own agent identifiers"
+msgstr "eHorus tiene sus propios identificadores de agente"
+
+#: ../../godmode/setup/setup_ehorus.php:135
+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:136
+msgid ""
+"Possibly the eHorus id will have to be filled in by hand for every agent"
+msgstr ""
+"Es posible que el ID de eHorus tenga que ser introducido a mano por cada "
+"agente"
+
+#: ../../godmode/setup/setup_ehorus.php:141
+msgid "The custom field does not exists already"
+msgstr "El campo personalizado no existe aún"
+
+#: ../../godmode/setup/setup_ehorus.php:155
+msgid "eHorus API"
+msgstr "API eHorus"
+
+#: ../../godmode/setup/setup_ehorus.php:237
+#: ../../godmode/setup/setup_integria.php:618
+msgid "Connection timeout"
+msgstr "La sesión ha caducado."
+
+#: ../../godmode/setup/setup_ehorus.php:238
+#: ../../godmode/setup/setup_integria.php:619
+#: ../../operation/users/user_edit.php:1154
+msgid "Empty user or password"
+msgstr "Usuario o contraseña vacío"
+
+#: ../../godmode/setup/setup_ehorus.php:239
+#: ../../godmode/setup/setup_integria.php:620
+#: ../../operation/users/user_edit.php:1155
+msgid "User not found"
+msgstr "Usuario no encontrado"
+
+#: ../../godmode/setup/setup_ehorus.php:240
+#: ../../godmode/setup/setup_integria.php:621
+#: ../../operation/users/user_edit.php:1156
+msgid "Invalid password"
+msgstr "Contraseña incorrecta"
+
+#: ../../godmode/setup/setup_websocket_engine.php:38
+msgid "WebSocket settings"
+msgstr "Ajustes de WebSocket"
+
+#: ../../godmode/setup/setup_websocket_engine.php:47
+msgid "Bind address"
+msgstr "Dirección de enlace"
+
+#: ../../godmode/setup/setup_websocket_engine.php:57
+msgid "Bind port"
+msgstr "Puerto de enlace"
+
+#: ../../godmode/setup/setup_websocket_engine.php:67
+#: ../../include/functions_config.php:367
+msgid "WebSocket proxy url"
+msgstr "URL del proxy de WebSocket"
+
 #: ../../godmode/setup/os.list.php:90
 msgid "There are no defined operating systems"
 msgstr "No hay sistemas operativos definidos"
@@ -18549,7 +32918,7 @@ msgstr "Crear SO"
 msgid "Fail creating OS"
 msgstr "Error al crear SO"
 
-#: ../../godmode/setup/os.php:80 ../../include/functions_api.php:1684
+#: ../../godmode/setup/os.php:80 ../../include/functions_api.php:1689
 msgid "Success creating OS"
 msgstr "SO creado correctamente"
 
@@ -18557,7 +32926,7 @@ msgstr "SO creado correctamente"
 msgid "Success updatng OS"
 msgstr "SO actualizado correctamente"
 
-#: ../../godmode/setup/os.php:103 ../../include/functions_api.php:1717
+#: ../../godmode/setup/os.php:103 ../../include/functions_api.php:1722
 msgid "Error updating OS"
 msgstr "Error al actualizar SO"
 
@@ -18581,2241 +32950,216 @@ msgstr "Lista de sistemas operativos"
 msgid "Builder OS"
 msgstr "Creador de SO"
 
-#: ../../godmode/setup/performance.php:172
-msgid "Pandora_db running in active database."
-msgstr "Pandora_db en ejecución en la base de datos activa."
+#: ../../godmode/setup/gis_step_2.php:30
+msgid "GIS Maps connections"
+msgstr "Conexiones mapas GIS"
 
-#: ../../godmode/setup/performance.php:173
-#: ../../godmode/setup/performance.php:229
-msgid "Executed:"
-msgstr "Ejectuado:"
+#: ../../godmode/setup/gis_step_2.php:44
+msgid "Create new map connection"
+msgstr "Crear nueva conexión de mapas"
 
-#: ../../godmode/setup/performance.php:228
-msgid "Pandora_db running in historical database."
-msgstr "Pandora_db en ejecución en la base de datos de histórico."
+#: ../../godmode/setup/gis_step_2.php:71
+msgid "Edit map connection"
+msgstr "Editar la conexión de mapas"
 
-#: ../../godmode/setup/performance.php:236
-msgid "not executed"
-msgstr "No ejecutado"
+#: ../../godmode/setup/gis_step_2.php:203
+msgid "Connection Name"
+msgstr "Nombre de conexión"
 
-#: ../../godmode/setup/performance.php:251
-#: ../../godmode/setup/performance.php:494
-#: ../../include/functions_config.php:737
-#: ../../enterprise/meta/advanced/metasetup.performance.php:76
-#: ../../enterprise/meta/include/functions_meta.php:1709
-msgid "Max. days before delete events"
-msgstr "Nº max. de días antes de borrar eventos"
+#: ../../godmode/setup/gis_step_2.php:209
+msgid "Number of zoom levels"
+msgstr "Número de niveles de zoom"
 
-#: ../../godmode/setup/performance.php:253
-#: ../../godmode/setup/performance.php:496
+#: ../../godmode/setup/gis_step_2.php:213
+msgid "Default zoom level"
+msgstr "Nivel de zoom por defecto"
+
+#: ../../godmode/setup/gis_step_2.php:216
+msgid "Basic configuration"
+msgstr "Configuración básica"
+
+#: ../../godmode/setup/gis_step_2.php:221
+msgid "Open Street Maps"
+msgstr "OpenStreetMaps"
+
+#: ../../godmode/setup/gis_step_2.php:222
+msgid "Google Maps"
+msgstr "Google Maps"
+
+#: ../../godmode/setup/gis_step_2.php:223
+#: ../../godmode/reporting/visual_console_builder.elements.php:174
+#: ../../include/functions_visual_map_editor.php:1297
+#: ../../include/functions_visual_map.php:4200
+#: ../../operation/visual_console/view.php:215
+msgid "Static Image"
+msgstr "Imagen estática"
+
+#: ../../godmode/setup/gis_step_2.php:224
+msgid "WMS Server"
+msgstr "Servidor WMS"
+
+#: ../../godmode/setup/gis_step_2.php:226
+msgid "Please select the connection type"
+msgstr "Tipo de conexión"
+
+#: ../../godmode/setup/gis_step_2.php:228
+msgid "Map connection type"
+msgstr "Tipo de conexión de mapa"
+
+#: ../../godmode/setup/gis_step_2.php:275
+msgid "Tile Server URL"
+msgstr "URL del servidor tile"
+
+#: ../../godmode/setup/gis_step_2.php:278
+msgid "Google Physical"
+msgstr "Google Physical"
+
+#: ../../godmode/setup/gis_step_2.php:279
+msgid "Google Hybrid"
+msgstr "Google Hybrid"
+
+#: ../../godmode/setup/gis_step_2.php:280
+msgid "Google Satelite"
+msgstr "Google Satélite"
+
+#: ../../godmode/setup/gis_step_2.php:282
+msgid "Google Map Type"
+msgstr "Tipo de mapa de Google"
+
+#: ../../godmode/setup/gis_step_2.php:282
+msgid "Google Maps Key"
+msgstr "Clave de Google Maps"
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Image URL"
+msgstr "URL de la imagen"
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Corners of the area of the image"
+msgstr "Esquinas del área de la imagen"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1842
+msgid "Left"
+msgstr "Izquierda"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1839
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:296
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:296
+msgid "Bottom"
+msgstr "Inferior"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1841
+msgid "Right"
+msgstr "Derecha"
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1840
+msgid "Top"
+msgstr "Superior"
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Image Size"
+msgstr "Tamaño de imagen"
+
+#: ../../godmode/setup/gis_step_2.php:287
+msgid "WMS Server URL"
+msgstr "URL del servidor WMS"
+
+#: ../../godmode/setup/gis_step_2.php:315
 msgid ""
-"If the compaction or purge of the data is more frequent than the events "
-"deletion, anomalies in module graphs could appear"
+"Preview to select the center of the map and the default position of an agent "
+"without gis data"
 msgstr ""
-"Si la compactación o purga de datos es más frecuente que el borrado de "
-"eventos, pueden surgir anomalías en los gráficos de módulo."
-
-#: ../../godmode/setup/performance.php:266
-#: ../../include/functions_config.php:742
-msgid "Max. days before delete traps"
-msgstr "Nº max. de días antes de borrar traps SNMP"
-
-#: ../../godmode/setup/performance.php:276
-#: ../../include/functions_config.php:750
-#: ../../enterprise/meta/advanced/metasetup.performance.php:83
-#: ../../enterprise/meta/include/functions_meta.php:1727
-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:286
-#: ../../godmode/setup/performance.php:509
-#: ../../include/functions_config.php:746
-msgid "Max. days before delete string data"
-msgstr "Nº max. de días antes de borrar datos de tipo texto"
-
-#: ../../godmode/setup/performance.php:296
-#: ../../include/functions_config.php:754
-msgid "Max. days before delete GIS data"
-msgstr "Nº max. de días antes de borrar información GIS"
-
-#: ../../godmode/setup/performance.php:306
-#: ../../godmode/setup/performance.php:456
-#: ../../include/functions_config.php:758
-msgid "Max. days before purge"
-msgstr "Máx. días antes de purga de datos"
-
-#: ../../godmode/setup/performance.php:308
-#: ../../godmode/setup/performance.php:458
-msgid ""
-"Configure a purge period more frequent than a compact data period has no "
-"sense"
-msgstr ""
-"No tiene sentido configurar un período de purga más frecuente que el período "
-"de compactación de datos."
-
-#: ../../godmode/setup/performance.php:320
-#: ../../godmode/setup/performance.php:470
-#: ../../include/functions_config.php:766
-msgid "Max. days before compact data"
-msgstr "Máx. días antes de comprimir datos"
-
-#: ../../godmode/setup/performance.php:330
-#: ../../include/functions_config.php:762
-msgid "Max. days before delete unknown modules"
-msgstr "Máximo de días antes de borrar módulos desconocidos"
-
-#: ../../godmode/setup/performance.php:340
-msgid "Max. days before delete autodisabled agents"
-msgstr ""
-"Nº máximo de días antes de la eliminación de los agentes deshabilitados"
-
-#: ../../godmode/setup/performance.php:350
-#: ../../include/functions_config.php:814
-msgid "Retention period of past special days"
-msgstr "Período de retención de días especiales pasados"
-
-#: ../../godmode/setup/performance.php:352
-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 borran nunca."
-
-#: ../../godmode/setup/performance.php:364
-#: ../../include/functions_config.php:818
-msgid "Max. macro data fields"
-msgstr "Nº máx. de campos de macro de datos"
-
-#: ../../godmode/setup/performance.php:366
-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 estar entre 1 y 15"
-
-#: ../../godmode/setup/performance.php:382
-#: ../../include/functions_config.php:823
-msgid "Max. days before delete inventory data"
-msgstr "Nº de días máximo antes del borrado de datos de inventario"
-
-#: ../../godmode/setup/performance.php:431
-msgid "The tconfig table does not exist in the historical database"
-msgstr "La tabla tconfig no existe en la base de datos de histórico"
-
-#: ../../godmode/setup/performance.php:480
-#: ../../godmode/setup/performance.php:574
-#: ../../include/functions_config.php:778
-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:482
-#: ../../godmode/setup/performance.php:576
-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:527
-#: ../../include/functions_config.php:828
-msgid "Max. days before delete old messages"
-msgstr "Núm. máx. de días antes de borrar mensajes antiguos"
-
-#: ../../godmode/setup/performance.php:540
-#: ../../include/functions_config.php:832
-msgid "Max. days before delete old network matrix data"
-msgstr "Núm. máx. de días antes de borrar datos de matriz antiguos"
-
-#: ../../godmode/setup/performance.php:560
-msgid "Item limit for realtime reports"
-msgstr "Límite del elemento para informes en tiempo real"
-
-#: ../../godmode/setup/performance.php:562
-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 ralentización en la consola y "
-"un problema de rendimiento en el sistema."
-
-#: ../../godmode/setup/performance.php:590 ../../include/ajax/module.php:167
-#: ../../include/functions_notifications.php:723
-#: ../../enterprise/dashboard/widgets/top_n.php:68
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:189
-msgid "12 hours"
-msgstr "12 horas"
-
-#: ../../godmode/setup/performance.php:591
-msgid "Last day"
-msgstr "Último día"
-
-#: ../../godmode/setup/performance.php:592
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:191
-msgid "2 days"
-msgstr "2 días"
-
-#: ../../godmode/setup/performance.php:593
-msgid "10 days"
-msgstr "10 días"
-
-#: ../../godmode/setup/performance.php:594
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:193
-msgid "Last week"
-msgstr "Última semana"
-
-#: ../../godmode/setup/performance.php:595
-msgid "2 weeks"
-msgstr "2 semanas"
-
-#: ../../godmode/setup/performance.php:596
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:195
-msgid "Last month"
-msgstr "Último mes"
-
-#: ../../godmode/setup/performance.php:598
-#: ../../include/functions_config.php:782
-#: ../../enterprise/meta/advanced/metasetup.performance.php:86
-#: ../../enterprise/meta/include/functions_meta.php:1736
-msgid "Default hours for event view"
-msgstr "Nº de horas predeterminado para la visualización de eventos"
-
-#: ../../godmode/setup/performance.php:608
-#: ../../include/functions_config.php:786
-msgid "Use realtime statistics"
-msgstr "Usar estadísticas en tiempo real"
-
-#: ../../godmode/setup/performance.php:616
-#: ../../include/functions_config.php:790
-msgid "Batch statistics period (secs)"
-msgstr "Período de las estadísticas programadas (seg.)"
-
-#: ../../godmode/setup/performance.php:618
-msgid ""
-"If realtime statistics are disabled, statistics interval resfresh will be "
-"set here."
-msgstr ""
-"Si se deshabilitan las estadísticas en tiempo real, el intervalo de refresco "
-"de las estadísticas será definido aquí."
-
-#: ../../godmode/setup/performance.php:630
-#: ../../include/functions_config.php:794
-#: ../../enterprise/meta/include/functions_meta.php:1745
-msgid "Use agent access graph"
-msgstr "Usar la gráfica de acceso del agente"
-
-#: ../../godmode/setup/performance.php:633
-#: ../../include/functions_config.php:798
-msgid "Max. recommended number of files in attachment directory"
-msgstr "Max. número de archivos recomendado para el directorio de adjuntos"
-
-#: ../../godmode/setup/performance.php:635
-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º máximo de archivos en el directorio de adjuntos. Si se alcanza el número "
-"se mostrará un mensaje en el área de notificaciones de la cabecera."
-
-#: ../../godmode/setup/performance.php:647
-#: ../../include/functions_config.php:802
-msgid "Delete not init modules"
-msgstr "Borrar módulos no iniciados"
-
-#: ../../godmode/setup/performance.php:650
-msgid "Big Operation Step to purge old data"
-msgstr "Gran operación para la purga de datos antiguos"
-
-#: ../../godmode/setup/performance.php:652
-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 ""
-"Nº 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 la base de "
-"datos. El valor predeterminado es 100."
-
-#: ../../godmode/setup/performance.php:664
-#: ../../include/functions_config.php:810
-msgid "Small Operation Step to purge old data"
-msgstr "Operación menor para la purga de datos antiguos"
-
-#: ../../godmode/setup/performance.php:666
-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. Auméntalo a 3000-5000 en sistemas rápidos. "
-"Disminuir a 500 ó 250 en sistemas con bloqueo."
-
-#: ../../godmode/setup/performance.php:678
-#: ../../include/functions_config.php:836
-msgid "Graph container - Max. Items"
-msgstr "Contenedor de gráficas - Máx. elementos"
-
-#: ../../godmode/setup/performance.php:680
-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 ven en un contenedor. 10 por defecto. Aumentar "
-"este número podría ocasionar problemas de rendimiento."
-
-#: ../../godmode/setup/performance.php:692
-#: ../../enterprise/meta/advanced/metasetup.performance.php:99
-msgid "Events response max. execution"
-msgstr "Máx. tiempo de ejecución de respuesta de eventos"
-
-#: ../../godmode/setup/performance.php:694
-#: ../../enterprise/meta/advanced/metasetup.performance.php:101
-msgid ""
-"Number of events that will perform the desired action at the same time"
-msgstr "Número de eventos que llevarán a cabo la acción deseada a la vez."
-
-#: ../../godmode/setup/performance.php:709
-msgid "Database maintenance status"
-msgstr "Estado de mantenimiento de la base de datos"
-
-#: ../../godmode/setup/performance.php:714
-msgid "Database maintenance options"
-msgstr "Opciones de mantenimiento de la base de datos"
-
-#: ../../godmode/setup/performance.php:720
-msgid "Historical database maintenance options"
-msgstr "Opciones de mantenimiento de la base de datos de histórico"
-
-#: ../../godmode/setup/performance.php:726
-#: ../../include/functions_network.php:242
-#: ../../include/functions_visual_map.php:2962
-#: ../../include/functions_netflow.php:1826
-#: ../../operation/network/network_report.php:344
-msgid "Others"
-msgstr "Otros"
-
-#: ../../godmode/setup/setup.php:138
-msgid "Websocket engine"
-msgstr "Motor websocket"
-
-#: ../../godmode/setup/setup.php:193
-msgid "Pandora Websocket Engine"
-msgstr "Motor Websocket Pandora"
-
-#: ../../godmode/setup/setup.php:222
-msgid "Correct update the setup options"
-msgstr "Actualización correcta de las opciones de configuración"
-
-#: ../../godmode/setup/setup_auth.php:46 ../../include/functions_config.php:616
-#: ../../enterprise/meta/include/functions_meta.php:683
-msgid "Fallback to local authentication"
-msgstr "Alternativa si falla la autentificación"
-
-#: ../../godmode/setup/setup_auth.php:46
-msgid ""
-"Enable this option if you want to fallback to local authentication when "
-"remote (ldap etc...) authentication failed. Only available when 'Save "
-"password' is enabled."
-msgstr ""
-"Habilite esta opción si quiere volver a la autenticación local si la "
-"autenticación remota (ldap, etc.) falla. Solo disponible cuando la opción "
-"\"guardar contraseña\" está habilitada."
-
-#: ../../godmode/setup/setup_auth.php:53 ../../include/functions_config.php:528
-#: ../../enterprise/meta/include/functions_meta.php:692
-#: ../../enterprise/meta/include/functions_meta.php:864
-msgid "Autocreate remote users"
-msgstr "Crear usuarios remotos automáticamente"
-
-#: ../../godmode/setup/setup_auth.php:68 ../../include/functions_config.php:584
-#: ../../enterprise/meta/include/functions_meta.php:1019
-msgid "LDAP server"
-msgstr "Servidor LDAP"
-
-#: ../../godmode/setup/setup_auth.php:74 ../../include/functions_config.php:588
-#: ../../enterprise/meta/include/functions_meta.php:1028
-msgid "LDAP port"
-msgstr "Puerto LDAP"
-
-#: ../../godmode/setup/setup_auth.php:85 ../../include/functions_config.php:592
-#: ../../enterprise/meta/include/functions_meta.php:1037
-msgid "LDAP version"
-msgstr "Versión LDAP"
-
-#: ../../godmode/setup/setup_auth.php:91 ../../include/functions_config.php:560
-#: ../../include/functions_config.php:596
-#: ../../enterprise/godmode/setup/setup_auth.php:1057
-#: ../../enterprise/meta/include/functions_meta.php:786
-#: ../../enterprise/meta/include/functions_meta.php:1046
-msgid "Start TLS"
-msgstr "Start TLS"
-
-#: ../../godmode/setup/setup_auth.php:97 ../../include/functions_config.php:600
-#: ../../enterprise/meta/include/functions_meta.php:1055
-msgid "Base DN"
-msgstr "DN base"
-
-#: ../../godmode/setup/setup_auth.php:103
-#: ../../include/functions_config.php:604
-#: ../../enterprise/meta/include/functions_meta.php:1064
-msgid "Login attribute"
-msgstr "Atributo de acceso"
-
-#: ../../godmode/setup/setup_auth.php:109
-#: ../../include/functions_config.php:608
-#: ../../enterprise/meta/include/functions_meta.php:1073
-msgid "Admin LDAP login"
-msgstr "Inicio de sesión de administrador LDAP"
-
-#: ../../godmode/setup/setup_auth.php:115
-#: ../../include/functions_config.php:612
-#: ../../enterprise/meta/include/functions_meta.php:1082
-msgid "Admin LDAP password"
-msgstr "Contraseña de administrador LDAP"
-
-#: ../../godmode/setup/setup_auth.php:136
-#: ../../include/functions_config.php:720
-#: ../../operation/users/user_edit.php:402
-#: ../../enterprise/meta/include/functions_meta.php:746
-#: ../../enterprise/meta/include/functions_meta.php:996
-msgid "Double authentication"
-msgstr "Doble autentificación"
-
-#: ../../godmode/setup/setup_auth.php:136
-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 "
-"autentificación con sus cuentas."
-
-#: ../../godmode/setup/setup_auth.php:144
+"Vista previa para elegir el centro del mapa y la posición por defecto de un "
+"agente sin información GIS"
+
+#: ../../godmode/setup/gis_step_2.php:316
+msgid "Load preview map"
+msgstr "Vista previa del mapa"
+
+#: ../../godmode/setup/gis_step_2.php:325
+msgid "Map Center"
+msgstr "Centro del mapa"
+
+#: ../../godmode/setup/gis_step_2.php:326
+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:328
+msgid "Change in the map"
+msgstr "Cambiar en el mapa"
+
+#: ../../godmode/setup/gis_step_2.php:332
+#: ../../operation/agentes/gis_view.php:215
+msgid "Latitude"
+msgstr "Latitud"
+
+#: ../../godmode/setup/gis_step_2.php:336
+#: ../../operation/agentes/gis_view.php:214
+msgid "Longitude"
+msgstr "Longitud"
+
+#: ../../godmode/setup/gis_step_2.php:340
+#: ../../operation/agentes/gis_view.php:216
+msgid "Altitude"
+msgstr "Altitud"
+
+#: ../../godmode/setup/gis_step_2.php:389
+#: ../../godmode/setup/gis_step_2.php:484
+msgid "Center"
+msgstr "Centro"
+
+#: ../../godmode/setup/gis_step_2.php:449
+msgid "Refresh preview map"
+msgstr "Actualizar vista previa"
+
+#: ../../godmode/setup/setup_auth.php:228
 msgid "Session timeout (mins)"
 msgstr "Fin de la sesión (minutos)"
 
-#: ../../godmode/setup/setup_auth.php:144
-#: ../../godmode/users/configure_user.php:918
-msgid ""
-"This is defined in minutes, If you wish a permanent session should putting -"
-"1 in this field."
-msgstr ""
-"Esto está definido en minutos; si quieres una sesión permanente, pon -1 en "
-"este campo."
-
-#: ../../godmode/setup/setup_auth.php:180
+#: ../../godmode/setup/setup_auth.php:271
 #, php-format
 msgid "Local %s"
 msgstr "%s local"
 
-#: ../../godmode/setup/setup_auth.php:181
+#: ../../godmode/setup/setup_auth.php:272
 msgid "ldap"
 msgstr "LDAP"
 
-#: ../../godmode/setup/setup_auth.php:188
-#: ../../include/functions_config.php:524
-#: ../../enterprise/meta/include/functions_meta.php:674
-msgid "Authentication method"
-msgstr "Método de autentificación"
-
-#: ../../godmode/setup/setup_ehorus.php:55
-#: ../../include/functions_config.php:1449
-msgid "Enable eHorus"
-msgstr "Activar eHorus"
-
-#: ../../godmode/setup/setup_ehorus.php:89
-#: ../../godmode/setup/setup_integria.php:228
-msgid "API Hostname"
-msgstr "Nombre del propietario de la API"
-
-#: ../../godmode/setup/setup_ehorus.php:91
-msgid "Hostname of the eHorus API"
-msgstr "Nombre del propietario de la API de eHorus"
-
-#: ../../godmode/setup/setup_ehorus.php:91
-msgid "Without protocol and port"
-msgstr "Sin protocolo y puerto"
-
-#: ../../godmode/setup/setup_ehorus.php:91
-msgid "e.g., portal.ehorus.com"
-msgstr "ej. portal.ehorus.com"
-
-#: ../../godmode/setup/setup_ehorus.php:96
-msgid "API Port"
-msgstr "Puerto de la API"
-
-#: ../../godmode/setup/setup_ehorus.php:98
-msgid "e.g., 18080"
-msgstr "ej. 18080"
-
-#: ../../godmode/setup/setup_ehorus.php:103
-#: ../../godmode/setup/setup_integria.php:242
-msgid "Request timeout"
-msgstr "Tiempo de espera excedido para la petición"
-
-#: ../../godmode/setup/setup_ehorus.php:105
-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:105
-#: ../../godmode/setup/setup_integria.php:244
-msgid "0 to disable"
-msgstr "0 para deshabilitar"
-
-#: ../../godmode/setup/setup_ehorus.php:110
-#: ../../godmode/setup/setup_integria.php:495
-#: ../../operation/users/user_edit.php:699
-msgid "Test"
-msgstr "Probar"
-
-#: ../../godmode/setup/setup_ehorus.php:125
-msgid "Remote Management System"
-msgstr "Sistema de gestión remota"
-
-#: ../../godmode/setup/setup_ehorus.php:133
-msgid "Custom field eHorusID created"
-msgstr "Campo personalizado eHorusID creado"
-
-#: ../../godmode/setup/setup_ehorus.php:133
-msgid "Error creating custom field"
-msgstr "Error al crear campo personalizado"
-
-#: ../../godmode/setup/setup_ehorus.php:137
-msgid "eHorus has his own agent identifiers"
-msgstr "eHorus tiene sus propios identificadores de agente"
-
-#: ../../godmode/setup/setup_ehorus.php:138
-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:139
-msgid ""
-"Possibly the eHorus id will have to be filled in by hand for every agent"
-msgstr ""
-"Es posible que el ID de eHorus tenga que ser introducido a mano por cada "
-"agente"
-
-#: ../../godmode/setup/setup_ehorus.php:144
-msgid "The custom field does not exists already"
-msgstr "El campo personalizado no existe aún"
-
-#: ../../godmode/setup/setup_ehorus.php:158
-msgid "eHorus API"
-msgstr "API eHorus"
-
-#: ../../godmode/setup/setup_ehorus.php:240
-#: ../../godmode/setup/setup_integria.php:621
-msgid "Connection timeout"
-msgstr "La sesión ha caducado."
-
-#: ../../godmode/setup/setup_ehorus.php:241
-#: ../../godmode/setup/setup_integria.php:622
-#: ../../operation/users/user_edit.php:1159
-msgid "Empty user or password"
-msgstr "Usuario o contraseña vacío"
-
-#: ../../godmode/setup/setup_ehorus.php:242
-#: ../../godmode/setup/setup_integria.php:623
-#: ../../operation/users/user_edit.php:1160
-msgid "User not found"
-msgstr "Usuario no encontrado"
-
-#: ../../godmode/setup/setup_ehorus.php:243
-#: ../../godmode/setup/setup_integria.php:624
-#: ../../operation/users/user_edit.php:1161
-msgid "Invalid password"
-msgstr "Contraseña incorrecta"
-
-#: ../../godmode/setup/setup_general.php:70
-msgid ""
-"This is an email test sent from Pandora FMS. If you can read this, your "
-"configuration works."
-msgstr ""
-"Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido "
-"significa que la configuración funciona."
-
-#: ../../godmode/setup/setup_general.php:71
-msgid "Testing Pandora FMS email"
-msgstr "Probando el email de Pandora FMS"
-
-#: ../../godmode/setup/setup_general.php:109
-#: ../../include/functions_update_manager.php:147
-msgid "Language code"
-msgstr "Codigo de idioma"
-
-#: ../../godmode/setup/setup_general.php:120
-#: ../../include/functions_config.php:164
-msgid "Remote config directory"
-msgstr "Directorio remoto de configuración"
-
-#: ../../godmode/setup/setup_general.php:120
-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:123
-#: ../../enterprise/meta/advanced/metasetup.setup.php:152
-#: ../../enterprise/meta/include/functions_meta.php:424
-msgid "Phantomjs bin directory"
-msgstr "Directorio Phantomjs bin"
-
-#: ../../godmode/setup/setup_general.php:123
-#: ../../enterprise/meta/advanced/metasetup.setup.php:152
-msgid ""
-"Directory where phantomjs binary file exists and has execution grants."
-msgstr ""
-"Directorio que contiene en archivo binario phantomjs con permisos de "
-"ejecución."
-
-#: ../../godmode/setup/setup_general.php:126
-#: ../../include/functions_config.php:172
-#: ../../enterprise/meta/advanced/metasetup.setup.php:126
-#: ../../enterprise/meta/include/functions_meta.php:379
-msgid "Auto login (hash) password"
-msgstr "Contraseña («hash») de inicio de sesión automático"
-
-#: ../../godmode/setup/setup_general.php:129
-#: ../../include/functions_config.php:176
-#: ../../enterprise/meta/advanced/metasetup.setup.php:136
-#: ../../enterprise/meta/include/functions_meta.php:388
-msgid "Time source"
-msgstr "Hora de referencia"
-
-#: ../../godmode/setup/setup_general.php:130 ../../include/functions.php:1233
-#: ../../include/functions_events.php:2469
-#: ../../include/functions_events.php:3039
-#: ../../include/functions_events.php.orig:2375
-#: ../../include/functions_events.php.orig:2945
-#: ../../include/functions_graph.php:2681
-#: ../../include/functions_graph.php:3098
-#: ../../include/functions_graph.php:3559
-#: ../../include/functions_graph.php:3561
-#: ../../include/functions_reporting_html.php:1039
-#: ../../include/functions_reporting_html.php:2020
-#: ../../include/functions_reporting.php:8353
-#: ../../mobile/operation/events.php:127 ../../operation/events/events.php:1982
-#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:157
-#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:154
-#: ../../enterprise/meta/advanced/metasetup.setup.php:137
-msgid "System"
-msgstr "Sistema"
-
-#: ../../godmode/setup/setup_general.php:131
-#: ../../enterprise/meta/advanced/metasetup.setup.php:138
-msgid "Database"
-msgstr "Base de datos"
-
-#: ../../godmode/setup/setup_general.php:134
-#: ../../include/functions_config.php:180
-msgid "Automatic check for updates"
-msgstr "Comprobación automática de actualizaciones"
-
-#: ../../godmode/setup/setup_general.php:137
-msgid "Enforce https Information"
-msgstr "Aplicar la información http"
-
-#: ../../godmode/setup/setup_general.php:138
-msgid "If SSL is not properly configured you will lose access to "
-msgstr "Si SSL no está configurado adecuadamente, perderá acceso a "
-
-#: ../../godmode/setup/setup_general.php:138
-#: ../../godmode/setup/setup_general.php:272
-msgid " Console"
-msgstr " Consola"
-
-#: ../../godmode/setup/setup_general.php:141
-#: ../../include/functions_config.php:188
-#: ../../enterprise/meta/advanced/metasetup.setup.php:141
-#: ../../enterprise/meta/include/functions_meta.php:397
-msgid "Enforce https"
-msgstr "Forzar https"
-
-#: ../../godmode/setup/setup_general.php:144
-msgid "Use cert of SSL"
-msgstr "Usar el certificado SSL"
-
-#: ../../godmode/setup/setup_general.php:149
-msgid "Path of SSL Cert."
-msgstr "Ruta del certificado SSL"
-
-#: ../../godmode/setup/setup_general.php:149
-msgid ""
-"Path where you put your cert and name of this cert. Remember your cert only "
-"in .pem extension."
-msgstr ""
-"Ruta donde se ubica el certificado y el nombre del mismo. Recuerda que el "
-"certificado debe ir únicamente con la extensión .pem"
-
-#: ../../godmode/setup/setup_general.php:152
-#: ../../include/functions_config.php:196
-#: ../../enterprise/meta/advanced/metasetup.setup.php:149
-#: ../../enterprise/meta/include/functions_meta.php:415
-msgid "Attachment store"
-msgstr "Almacenamiento de adjuntos"
-
-#: ../../godmode/setup/setup_general.php:152
-#: ../../enterprise/meta/advanced/metasetup.setup.php:149
-msgid "Directory where temporary data is stored."
-msgstr "Directorio donde se almacenan los datos temporales"
-
-#: ../../godmode/setup/setup_general.php:155
-#: ../../include/functions_config.php:200
-#: ../../enterprise/meta/advanced/metasetup.setup.php:263
-#: ../../enterprise/meta/include/functions_meta.php:505
-msgid "IP list with API access"
-msgstr "Lista de IPs con acceso a la API"
-
-#: ../../godmode/setup/setup_general.php:164
-#: ../../include/functions_config.php:204
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:207
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:398
-#: ../../enterprise/meta/advanced/metasetup.setup.php:261
-#: ../../enterprise/meta/include/functions_meta.php:487
-#: ../../enterprise/meta/include/functions_meta.php:496
-msgid "API password"
-msgstr "Contraseña de la API"
-
-#: ../../godmode/setup/setup_general.php:164
-#: ../../enterprise/meta/advanced/metasetup.setup.php:261
-msgid "Please be careful if you put a password put https access."
-msgstr ""
-"Por favor, ten cuidado. Si tienes que introducir una contraseña pon acceso "
-"https."
-
-#: ../../godmode/setup/setup_general.php:167
-#: ../../include/functions_config.php:208
-msgid "Enable GIS features"
-msgstr "Habilitar funcionalidades GIS"
-
-#: ../../godmode/setup/setup_general.php:170
-#: ../../include/functions_config.php:224
-msgid "Enable Netflow"
-msgstr "Activar Netflow"
-
-#: ../../godmode/setup/setup_general.php:179
-#: ../../include/functions_config.php:228
-msgid "Enable Network Traffic Analyzer"
-msgstr "Habilitar el analizador de tráfico de red"
-
-#: ../../godmode/setup/setup_general.php:189
-#: ../../include/functions_update_manager.php:159
-#: ../../include/functions_visual_map_editor.php:268
-#: ../../enterprise/meta/advanced/metasetup.setup.php:156
-msgid "Africa"
-msgstr "África"
-
-#: ../../godmode/setup/setup_general.php:190
-#: ../../include/functions_update_manager.php:160
-#: ../../include/functions_visual_map_editor.php:269
-#: ../../enterprise/meta/advanced/metasetup.setup.php:157
-msgid "America"
-msgstr "América"
-
-#: ../../godmode/setup/setup_general.php:191
-#: ../../include/functions_update_manager.php:161
-#: ../../include/functions_visual_map_editor.php:270
-#: ../../enterprise/meta/advanced/metasetup.setup.php:158
-msgid "Antarctica"
-msgstr "Antártida"
-
-#: ../../godmode/setup/setup_general.php:192
-#: ../../include/functions_update_manager.php:162
-#: ../../include/functions_visual_map_editor.php:271
-#: ../../enterprise/meta/advanced/metasetup.setup.php:159
-msgid "Arctic"
-msgstr "Ártico"
-
-#: ../../godmode/setup/setup_general.php:193
-#: ../../include/functions_update_manager.php:163
-#: ../../include/functions_visual_map_editor.php:272
-#: ../../enterprise/meta/advanced/metasetup.setup.php:160
-msgid "Asia"
-msgstr "Asia"
-
-#: ../../godmode/setup/setup_general.php:194
-#: ../../include/functions_update_manager.php:164
-#: ../../include/functions_visual_map_editor.php:273
-#: ../../enterprise/meta/advanced/metasetup.setup.php:161
-msgid "Atlantic"
-msgstr "Atlántico"
-
-#: ../../godmode/setup/setup_general.php:195
-#: ../../include/functions_update_manager.php:165
-#: ../../include/functions_visual_map_editor.php:274
-#: ../../enterprise/meta/advanced/metasetup.setup.php:162
-msgid "Australia"
-msgstr "Australia"
-
-#: ../../godmode/setup/setup_general.php:196
-#: ../../include/functions_update_manager.php:166
-#: ../../include/functions_visual_map_editor.php:275
-#: ../../enterprise/meta/advanced/metasetup.setup.php:163
-msgid "Europe"
-msgstr "Europa"
-
-#: ../../godmode/setup/setup_general.php:197
-#: ../../include/functions_update_manager.php:167
-#: ../../include/functions_visual_map_editor.php:276
-#: ../../enterprise/meta/advanced/metasetup.setup.php:164
-msgid "Indian"
-msgstr "Índico"
-
-#: ../../godmode/setup/setup_general.php:198
-#: ../../include/functions_update_manager.php:168
-#: ../../include/functions_visual_map_editor.php:277
-#: ../../enterprise/meta/advanced/metasetup.setup.php:165
-msgid "Pacific"
-msgstr "Pacífico"
-
-#: ../../godmode/setup/setup_general.php:199
-#: ../../include/functions_update_manager.php:169
-#: ../../include/functions_visual_map_editor.php:278
-#: ../../enterprise/meta/advanced/metasetup.setup.php:166
-msgid "UTC"
-msgstr "UTC"
-
-#: ../../godmode/setup/setup_general.php:219
-#: ../../include/functions_config.php:234
-#: ../../include/functions_update_manager.php:189
-#: ../../enterprise/meta/advanced/metasetup.setup.php:185
-#: ../../enterprise/meta/include/functions_meta.php:433
-msgid "Timezone setup"
-msgstr "Configuración de zona horaria"
-
-#: ../../godmode/setup/setup_general.php:220
-#: ../../include/functions_update_manager.php:190
-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."
-
-#: ../../godmode/setup/setup_general.php:235
-#: ../../enterprise/meta/advanced/metasetup.setup.php:187
-msgid "Change timezone"
-msgstr "Cambiar zona horaria"
-
-#: ../../godmode/setup/setup_general.php:240
-#: ../../include/functions_config.php:239
-msgid "Sound for Alert fired"
-msgstr "Sonido para alertas disparadas"
-
-#: ../../godmode/setup/setup_general.php:242
-#: ../../godmode/setup/setup_general.php:247
-#: ../../godmode/setup/setup_general.php:252
-msgid "Play sound"
-msgstr "Reproducir sonido"
-
-#: ../../godmode/setup/setup_general.php:245
-#: ../../include/functions_config.php:243
-msgid "Sound for Monitor critical"
-msgstr "Sonido para monitores en estado crítico"
-
-#: ../../godmode/setup/setup_general.php:250
-#: ../../include/functions_config.php:247
-msgid "Sound for Monitor warning"
-msgstr "Sonido para monitores en estado de advertencia"
-
-#: ../../godmode/setup/setup_general.php:255
-#: ../../include/functions_config.php:266
-#: ../../enterprise/meta/advanced/metasetup.setup.php:191
-#: ../../enterprise/meta/include/functions_meta.php:442
-msgid "Public URL"
-msgstr "URL pública"
-
-#: ../../godmode/setup/setup_general.php:257
-#, php-format
-msgid ""
-"Set this value when your %s across inverse proxy or for example with "
-"mod_proxy of Apache."
-msgstr ""
-"Establezca este valor cuando el servidor %s use un proxy inverso o por "
-"ejemplo con  mod_proxy de Apache."
-
-#: ../../godmode/setup/setup_general.php:257
-msgid "Without the index.php such as http://domain/console_url/"
-msgstr "Sin index.php como http://domain/console_url/"
-
-#: ../../godmode/setup/setup_general.php:262
-#: ../../include/functions_config.php:270
-#: ../../enterprise/meta/advanced/metasetup.setup.php:195
-#: ../../enterprise/meta/include/functions_meta.php:451
-msgid "Force use Public URL"
-msgstr "Forzar el uso de la URL pública"
-
-#: ../../godmode/setup/setup_general.php:263
-#: ../../enterprise/meta/advanced/metasetup.setup.php:196
-msgid "Force using defined public URL)."
-msgstr "Forzar usando la URL pública definida."
-
-#: ../../godmode/setup/setup_general.php:271
-msgid "Enforce public URL usage information"
-msgstr "Aplicar la información de uso de la URL pública"
-
-#: ../../godmode/setup/setup_general.php:272
-msgid "If public URL is not properly configured you will lose access to "
-msgstr ""
-"Si la URL pública no está configurada correctamente, perderá acceso a "
-
-#: ../../godmode/setup/setup_general.php:275
-#: ../../include/functions_config.php:274
-#: ../../enterprise/meta/advanced/metasetup.setup.php:209
-#: ../../enterprise/meta/include/functions_meta.php:460
-msgid "Public URL host exclusions"
-msgstr "Exclusiones del host de URL pública"
-
-#: ../../godmode/setup/setup_general.php:278
-#: ../../include/functions_config.php:278
-msgid "Referer security"
-msgstr "Seguridad de Referer"
-
-#: ../../godmode/setup/setup_general.php:279
-#, php-format
-msgid "If enabled, actively checks if the user comes from %s's URL"
-msgstr ""
-"Si está habilitado, comprueba activamente que el usuario provenga de la URL "
-"de %s"
-
-#: ../../godmode/setup/setup_general.php:282
-#: ../../include/functions_config.php:282
-msgid "Event storm protection"
-msgstr "Protección de tormenta de eventos"
-
-#: ../../godmode/setup/setup_general.php:283
-msgid ""
-"If set to yes no events or alerts will be generated, but agents will "
-"continue receiving data."
-msgstr ""
-"Si se configura como afirmativo ningún evento o alerta se generará, pero los "
-"agentes continuarán recibiendo datos."
-
-#: ../../godmode/setup/setup_general.php:287
-#: ../../include/functions_config.php:286
-#: ../../enterprise/meta/advanced/metasetup.setup.php:216
-#: ../../enterprise/meta/include/functions_meta.php:478
-msgid "Command Snapshot"
-msgstr "Salida de comandos como capturas"
-
-#: ../../godmode/setup/setup_general.php:287
-#: ../../enterprise/meta/advanced/metasetup.setup.php:216
-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:290
-#: ../../include/functions_config.php:290
-msgid "Server logs directory"
-msgstr "Directorio de logs del servidor"
-
-#: ../../godmode/setup/setup_general.php:290
-msgid "Directory where the server logs are stored."
-msgstr "Directorio donde se guardan los logs del servidor"
-
-#: ../../godmode/setup/setup_general.php:300
-#: ../../include/functions_config.php:294
-msgid "Log size limit in system logs viewer extension"
-msgstr ""
-"Límite de tamaño de logs en la extensión del visor de logs del sistema"
-
-#: ../../godmode/setup/setup_general.php:300
-msgid "Max size (in bytes) for the logs to be shown."
-msgstr "Tamaño máximo de logs (en bytes)"
-
-#: ../../godmode/setup/setup_general.php:311
-msgid "Full mode"
-msgstr "Modo total"
-
-#: ../../godmode/setup/setup_general.php:312
-msgid "On demand"
-msgstr "Por demanda"
-
-#: ../../godmode/setup/setup_general.php:313
-msgid "Expert"
-msgstr "Experta/o"
-
-#: ../../godmode/setup/setup_general.php:315
-#: ../../include/functions_config.php:298
-msgid "Tutorial mode"
-msgstr "Modo tutorial"
-
-#: ../../godmode/setup/setup_general.php:315
-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 ""
-"Configuración del asistente. El \"modo total\" muestra el icono en la "
-"cabecera y en las ayudas contextuales con sonido. \"Bajo demanda\" es igual "
-"que el modo total pero sin sonido. En el \"modo experto\" no se mostrarán "
-"los iconos ni en la cabecera ni como ayuda contextual."
-
-#: ../../godmode/setup/setup_general.php:327
-#: ../../include/functions_config.php:302
-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:327
-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:330
-msgid "Limit for bulk operations"
-msgstr "Límite de operaciones en bloque"
-
-#: ../../godmode/setup/setup_general.php:330
-msgid ""
-"Your PHP environment is set to 1000 max_input_vars. This parameter should "
-"have the same value or lower."
-msgstr ""
-"Su entorno PHP está configurado en 1000 max_imput_vars. Este parámetro "
-"debería tener el mismo valor o menor."
-
-#: ../../godmode/setup/setup_general.php:340
-msgid "Include agents manually disabled"
-msgstr "Incluir agentes deshabilitados manualmente"
-
-#: ../../godmode/setup/setup_general.php:343
-#: ../../include/functions_config.php:322
-#: ../../enterprise/meta/advanced/metasetup.setup.php:278
-#: ../../enterprise/meta/include/functions_meta.php:559
-msgid "Audit log directory"
-msgstr "Directorio de log de auditoría"
-
-#: ../../godmode/setup/setup_general.php:343
-#: ../../enterprise/meta/advanced/metasetup.setup.php:278
-msgid "Directory where audit log is stored."
-msgstr "Directorio donde se guarda el log"
-
-#: ../../godmode/setup/setup_general.php:346
-msgid "Set alias as name by default in agent creation"
-msgstr "Poner alias como nombre por defecto en la creación de agente"
-
-#: ../../godmode/setup/setup_general.php:355
-msgid "General options"
-msgstr "Opciones generales"
-
-#: ../../godmode/setup/setup_general.php:370
-#: ../../enterprise/meta/advanced/metasetup.mail.php:96
-msgid "Mail configuration"
-msgstr "Configuración de email"
-
-#: ../../godmode/setup/setup_general.php:372
-msgid "From address"
-msgstr "De"
-
-#: ../../godmode/setup/setup_general.php:375
-#: ../../include/functions_config.php:338
-#: ../../enterprise/meta/advanced/metasetup.mail.php:104
-msgid "From name"
-msgstr "Desde nombre"
-
-#: ../../godmode/setup/setup_general.php:378
-msgid "SMTP Server"
-msgstr "Servidor SMTP"
-
-#: ../../godmode/setup/setup_general.php:381
-msgid "SMTP Port"
-msgstr "Puerto SMTP"
-
-#: ../../godmode/setup/setup_general.php:384
-#: ../../include/functions_config.php:346
-msgid "Encryption"
-msgstr "Encriptación"
-
-#: ../../godmode/setup/setup_general.php:387
-#: ../../include/functions_config.php:350
-#: ../../enterprise/meta/advanced/metasetup.mail.php:113
-msgid "Email user"
-msgstr "Usuario de email"
-
-#: ../../godmode/setup/setup_general.php:390
-#: ../../include/functions_config.php:354
-#: ../../enterprise/meta/advanced/metasetup.mail.php:116
-msgid "Email password"
-msgstr "Contraseña de email"
-
-#: ../../godmode/setup/setup_general.php:395
-msgid "Email test"
-msgstr "Prueba de email"
-
-#: ../../godmode/setup/setup_general.php:395
-msgid ""
-"Check the current saved email configuration by sending a test email to a "
-"desired account."
-msgstr ""
-"Comprueba la configuración actual guardada enviando un email de prueba a la "
-"cuenta deseada"
-
-#: ../../godmode/setup/setup_general.php:423
-#: ../../operation/agentes/ver_agente.php:995
-#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1732
-#: ../../enterprise/extensions/ipam/ipam_ajax.php:192
-#: ../../enterprise/extensions/ipam/ipam_calculator.php:42
-#: ../../enterprise/extensions/ipam/ipam_excel.php:107
-#: ../../enterprise/extensions/ipam/ipam_network.php:323
-#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:276
-#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52
-#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:253
-#: ../../enterprise/godmode/servers/manage_export.php:140
-#: ../../enterprise/godmode/servers/manage_export_form.php:93
-msgid "Address"
-msgstr "Dirección"
-
-#: ../../godmode/setup/setup_general.php:423
-msgid ""
-"Email address to which the test email will be sent. Please check your inbox "
-"after email is sent."
-msgstr ""
-"Dirección a la que se enviará el el email. Revise su bandeja después de que "
-"se envíe el email."
-
-#: ../../godmode/setup/setup_general.php:428
-msgid "Check mail configuration"
-msgstr "Revisar configuración de correo"
-
 #: ../../godmode/setup/setup_integria.php:53
 #: ../../operation/incidents/configure_integriaims_incident.php:48
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:38
-#: ../../operation/incidents/list_integriaims_incidents.php:42
+#: ../../operation/incidents/list_integriaims_incidents.php:49
 msgid "Integria IMS API is not reachable"
 msgstr "API de Integria IMS no accesible"
 
 #: ../../godmode/setup/setup_integria.php:200
-#: ../../include/functions_config.php:1483
+#: ../../include/functions_config.php:1506
 msgid "Enable Integria IMS"
 msgstr "Habilitar Integria IMS"
 
-#: ../../godmode/setup/setup_integria.php:230
-msgid ""
-"Hostname of Integria IMS' API (scheme must be specified. Example: "
-"http://192.168.0.0)"
-msgstr ""
-"Nombre del host de la API de Integria IMS (especificar el esquema. Ej.: "
-"http://192.168.0.0)"
-
-#: ../../godmode/setup/setup_integria.php:235
+#: ../../godmode/setup/setup_integria.php:234
 msgid "API Password"
 msgstr "Contraseña de la API"
 
-#: ../../godmode/setup/setup_integria.php:237
-msgid "Password of Integria IMS' API"
-msgstr "Contraseña de la API de Integria IMS"
-
-#: ../../godmode/setup/setup_integria.php:244
-msgid ""
-"Time in seconds to set the maximum time of the requests to the Integria API"
-msgstr ""
-"Tiempo en segundos para fijar el tiempo máximo de peticiones a la API de "
-"Integria"
-
-#: ../../godmode/setup/setup_integria.php:259
-#: ../../godmode/setup/setup_integria.php:382
-#: ../../operation/agentes/estado_generalagente.php:572
-#: ../../operation/incidents/configure_integriaims_incident.php:194
-#: ../../operation/incidents/integriaims_export_csv.php:89
-#: ../../enterprise/dashboard/widget.php:105
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:31
-#: ../../enterprise/include/functions_reporting_csv.php:393
-#: ../../enterprise/include/functions_reporting_csv.php:415
-#: ../../enterprise/include/functions_reporting_csv.php:446
-#: ../../enterprise/include/functions_reporting_csv.php:648
-#: ../../enterprise/include/functions_reporting_csv.php:662
-#: ../../enterprise/include/functions_reporting_csv.php:676
-#: ../../enterprise/include/functions_reporting_csv.php:696
-#: ../../enterprise/include/functions_reporting_csv.php:725
-#: ../../enterprise/include/functions_reporting_csv.php:756
-#: ../../enterprise/include/functions_reporting_csv.php:788
-#: ../../enterprise/include/functions_reporting_csv.php:825
-#: ../../enterprise/include/functions_reporting_csv.php:848
-#: ../../enterprise/include/functions_reporting_csv.php:900
-#: ../../enterprise/include/functions_reporting_csv.php:937
-#: ../../enterprise/include/functions_reporting_csv.php:964
-#: ../../enterprise/include/functions_reporting_csv.php:995
-#: ../../enterprise/include/functions_reporting_csv.php:1050
-#: ../../enterprise/include/functions_reporting_csv.php:1105
-#: ../../enterprise/include/functions_reporting_csv.php:1154
-#: ../../enterprise/include/functions_reporting_csv.php:1209
-#: ../../enterprise/include/functions_reporting_csv.php:1238
-#: ../../enterprise/include/functions_reporting_csv.php:1275
-#: ../../enterprise/include/functions_reporting_csv.php:1401
-#: ../../enterprise/include/functions_reporting_csv.php:1517
-#: ../../enterprise/include/functions_reporting_csv.php:1661
-#: ../../enterprise/include/functions_reporting_csv.php:1717
-#: ../../enterprise/include/functions_reporting_csv.php:1785
-#: ../../enterprise/include/functions_reporting_csv.php:1933
-#: ../../enterprise/include/functions_reporting_csv.php:1959
-#: ../../enterprise/include/functions_reporting_csv.php:2045
-#: ../../enterprise/include/functions_reporting_csv.php:2076
-#: ../../enterprise/include/functions_reporting_csv.php:2112
-#: ../../enterprise/include/functions_reporting_csv.php:2144
-#: ../../enterprise/include/functions_reporting_csv.php:2166
-#: ../../enterprise/include/functions_reporting_csv.php:2197
-#: ../../enterprise/include/functions_reporting_csv.php:2226
-#: ../../enterprise/include/functions_reporting_csv.php:2259
-msgid "Title"
-msgstr "Título"
-
-#: ../../godmode/setup/setup_integria.php:528
+#: ../../godmode/setup/setup_integria.php:525
 msgid "Integria API settings"
 msgstr "Ajustes de la API de Integria"
 
-#: ../../godmode/setup/setup_integria.php:539
+#: ../../godmode/setup/setup_integria.php:536
 msgid "Alert default values"
 msgstr "Valores por defecto de la API"
 
-#: ../../godmode/setup/setup_integria.php:549
+#: ../../godmode/setup/setup_integria.php:546
 msgid "Event custom response default values"
 msgstr "Valores por defecto de respuesta de evento personalizados"
 
-#: ../../godmode/setup/setup_integria.php:561
-#: ../../godmode/wizards/HostDevices.class.php:668
-#: ../../include/class/CustomNetScan.class.php:551
-#: ../../enterprise/include/class/MySQL.app.php:589
-#: ../../enterprise/include/class/Oracle.app.php:570
-#: ../../enterprise/include/class/SAP.app.php:434
-#: ../../enterprise/include/class/VMware.app.php:491
-msgid "Update and continue"
-msgstr "Actualizar y continuar"
-
-#: ../../godmode/setup/setup_netflow.php:46
-#: ../../include/functions_config.php:1331
-msgid "Data storage path"
-msgstr "Ruta de almacenamiento de datos"
-
-#: ../../godmode/setup/setup_netflow.php:46
-msgid "Directory where netflow data will be stored."
-msgstr "Directorio donde los datos Netflow se almacenarán"
-
-#: ../../godmode/setup/setup_netflow.php:49
-#: ../../include/functions_config.php:1335
-msgid "Daemon interval"
-msgstr "Intervalo del demonio"
-
-#: ../../godmode/setup/setup_netflow.php:49
-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:52
-#: ../../include/functions_config.php:1339
-msgid "Daemon binary path"
-msgstr "Ruta de demonio binario"
-
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../include/functions_config.php:1343
-msgid "Nfdump binary path"
-msgstr "Ruta binaria Nfdump"
-
-#: ../../godmode/setup/setup_netflow.php:58
-#: ../../include/functions_config.php:1347
-msgid "Nfexpire binary path"
-msgstr "Ruta binaria Nfexpire"
-
-#: ../../godmode/setup/setup_netflow.php:61
-#: ../../include/functions_config.php:1351
-msgid "Maximum chart resolution"
-msgstr "Máxima resolución del gráfico"
-
-#: ../../godmode/setup/setup_netflow.php:61
-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 área Netflow puede mostrar. Cuanto "
-"más alta sea la resolución, mejor será la ejecución. Se recomiendan los "
-"valores entre 50 y 100."
-
-#: ../../godmode/setup/setup_netflow.php:64
-#: ../../include/functions_config.php:1355
-#: ../../enterprise/meta/advanced/metasetup.setup.php:212
-msgid "Disable custom live view filters"
-msgstr "Desactiva los filtros de vista activa personalizados"
-
-#: ../../godmode/setup/setup_netflow.php:64
-#: ../../enterprise/meta/advanced/metasetup.setup.php:212
-msgid ""
-"Disable the definition of custom filters in the live view. Only existing "
-"filters can be used."
-msgstr ""
-"Desactiva la definición de filtros personalizados en la vista activa. Solo "
-"pueden usarse los filtros existentes."
-
-#: ../../godmode/setup/setup_netflow.php:66
-#: ../../include/functions_config.php:1359
-msgid "Netflow max lifetime"
-msgstr "Tiempo  máximo del Netflow"
-
-#: ../../godmode/setup/setup_netflow.php:66
-msgid "Sets the maximum lifetime for netflow data in days."
-msgstr "Fijar el tiempo máximo para los datos Netflow en días"
-
-#: ../../godmode/setup/setup_netflow.php:69
-#: ../../include/functions_config.php:1363
-msgid "Name resolution for IP address"
-msgstr "Habilitar la resolución de nombre con IP"
-
-#: ../../godmode/setup/setup_netflow.php:69
-#: ../../operation/netflow/nf_live_view.php:469
-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:451
-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:73
-msgid "Paginated module view"
-msgstr "Vista del módulo paginada"
-
-#: ../../godmode/setup/setup_visuals.php:82
-#: ../../include/functions_config.php:1164
-#: ../../enterprise/meta/advanced/metasetup.visual.php:258
-#: ../../enterprise/meta/include/functions_meta.php:1672
-msgid "Display data of proc modules in other format"
-msgstr "Mostrar los datos de los módulos proc en otro formato"
-
-#: ../../godmode/setup/setup_visuals.php:91
-#: ../../include/functions_config.php:1168
-#: ../../enterprise/meta/advanced/metasetup.visual.php:266
-#: ../../enterprise/meta/include/functions_meta.php:1677
-msgid "Display text proc modules have state is ok"
-msgstr "Texto mostrado cuando el estado del módulo proc es OK"
-
-#: ../../godmode/setup/setup_visuals.php:95
-#: ../../include/functions_config.php:1172
-#: ../../enterprise/meta/advanced/metasetup.visual.php:269
-#: ../../enterprise/meta/include/functions_meta.php:1682
-msgid "Display text when proc modules have state critical"
-msgstr "Texto mostrado cuando el estado del módulo proc es Crítico"
-
-#: ../../godmode/setup/setup_visuals.php:100
-msgid "Click to display lateral menus"
-msgstr "Haz clic para mostrar el menú lateral"
-
-#: ../../godmode/setup/setup_visuals.php:100
-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:110
-#: ../../include/functions_config.php:1183
-msgid "Service label font size"
-msgstr "Tamaño de fuente para el mapa de servicios"
-
-#: ../../godmode/setup/setup_visuals.php:114
-msgid "Space between items in Service maps"
-msgstr "Espacio entre nodos para el mapa de servicios"
-
-#: ../../godmode/setup/setup_visuals.php:114
-msgid "It must be bigger than 80"
-msgstr "Debe ser más grande que 80"
-
-#: ../../godmode/setup/setup_visuals.php:120
-msgid "Behaviour configuration"
-msgstr "Configuración del comportamiento"
-
-#: ../../godmode/setup/setup_visuals.php:134
-#: ../../include/functions_config.php:908
-msgid "Style template"
-msgstr "Plantilla de estilo"
-
-#: ../../godmode/setup/setup_visuals.php:146
-#: ../../include/functions_config.php:924
-msgid "Status icon set"
-msgstr "Icono de estado en"
-
-#: ../../godmode/setup/setup_visuals.php:147
-msgid "Colors"
-msgstr "Colores"
-
-#: ../../godmode/setup/setup_visuals.php:148
-msgid "Faces"
-msgstr "Caras"
-
-#: ../../godmode/setup/setup_visuals.php:149
-msgid "Colors and text"
-msgstr "Colores y texto"
-
-#: ../../godmode/setup/setup_visuals.php:172
-#: ../../include/functions_config.php:992
-#: ../../enterprise/meta/advanced/metasetup.visual.php:282
-msgid "Login background"
-msgstr "Imagen de fondo de la pantalla de inicio de sesión"
-
-#: ../../godmode/setup/setup_visuals.php:172
-#: ../../enterprise/meta/advanced/metasetup.visual.php:282
-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:186
-#: ../../include/functions_config.php:936
-#: ../../enterprise/meta/advanced/metasetup.visual.php:295
-#: ../../enterprise/meta/include/functions_meta.php:1505
-msgid "Custom favicon"
-msgstr "Personalizar favicon"
-
-#: ../../godmode/setup/setup_visuals.php:187
-#: ../../enterprise/meta/advanced/metasetup.visual.php:296
-msgid ""
-"You can place your favicon into the folder images/custom_favicon/. This file "
-"should be in .ico format with a size of 16x16."
-msgstr ""
-"Puede poner su favicon en la carpeta images/custom_favicon/. Este archivo "
-"debe estar en formato .ico y tener un tamaño de 16x16."
-
-#: ../../godmode/setup/setup_visuals.php:209
-msgid "Custom background logo"
-msgstr "Fondo del logo personalizable"
-
-#: ../../godmode/setup/setup_visuals.php:276
-msgid "Custom logo (menu)"
-msgstr "Logo personalizable (menu)"
-
-#: ../../godmode/setup/setup_visuals.php:281
-msgid "Custom logo collapsed (menu)"
-msgstr "El logo personalizado se ha caído (menú)"
-
-#: ../../godmode/setup/setup_visuals.php:286
-#: ../../enterprise/meta/advanced/metasetup.visual.php:323
-msgid "Custom logo (header white background)"
-msgstr "Logo personalizado (fondo blanco de cabecera)"
-
-#: ../../godmode/setup/setup_visuals.php:325
-#: ../../enterprise/meta/advanced/metasetup.visual.php:328
-msgid "Custom logo (login)"
-msgstr "Logo personalizado (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:364
-#: ../../enterprise/meta/advanced/metasetup.visual.php:346
-msgid "Custom Splash (login)"
-msgstr "Splash personalizado (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:390
-#: ../../include/functions_config.php:960
-msgid "Custom documentation logo"
-msgstr "Logo de documentación personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:391
-#: ../../godmode/setup/setup_visuals.php:412
-#: ../../godmode/setup/setup_visuals.php:432
-#: ../../godmode/setup/setup_visuals.php:452
-msgid ""
-"You can place your custom logos into the folder "
-"enterprise/images/custom_general_logos/"
-msgstr ""
-"Puede añadir sus logos personalizados a la carpeta "
-"enterprise/images/custom_general_logos/"
-
-#: ../../godmode/setup/setup_visuals.php:411
-#: ../../include/functions_config.php:964
-msgid "Custom support logo"
-msgstr "Logo de soporte personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:431
-#: ../../include/functions_config.php:968
-#: ../../include/functions_config.php:972
-msgid "Custom networkmap center logo"
-msgstr "Logo central del mapa de red personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:451
-msgid "Custom mobile console icon"
-msgstr "Icono de la consola móvil personalizable"
-
-#: ../../godmode/setup/setup_visuals.php:473
-msgid "Title (header)"
-msgstr "Título (encabezado)"
-
-#: ../../godmode/setup/setup_visuals.php:480
-msgid "Subtitle (header)"
-msgstr "Subtítulo (encabezado)"
-
-#: ../../godmode/setup/setup_visuals.php:487
-#: ../../enterprise/meta/advanced/metasetup.visual.php:372
-msgid "Title 1 (login)"
-msgstr "Título 1 (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:494
-#: ../../enterprise/meta/advanced/metasetup.visual.php:376
-msgid "Title 2 (login)"
-msgstr "Título 2 (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:500
-#: ../../enterprise/meta/advanced/metasetup.visual.php:379
-#: ../../enterprise/meta/include/functions_meta.php:1568
-msgid "Docs URL (login)"
-msgstr "URL de documentos (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:506
-#: ../../enterprise/meta/advanced/metasetup.visual.php:382
-#: ../../enterprise/meta/include/functions_meta.php:1577
-msgid "Support URL (login)"
-msgstr "URL soporte (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:512
-#: ../../include/functions_config.php:1004
-#: ../../enterprise/meta/advanced/metasetup.visual.php:364
-#: ../../enterprise/meta/include/functions_meta.php:1532
-msgid "Product name"
-msgstr "Nombre del producto"
-
-#: ../../godmode/setup/setup_visuals.php:518
-#: ../../include/functions_config.php:1008
-#: ../../enterprise/meta/advanced/metasetup.visual.php:368
-#: ../../enterprise/meta/include/functions_meta.php:1541
-msgid "Copyright notice"
-msgstr "Aviso de copyright"
-
-#: ../../godmode/setup/setup_visuals.php:524
-msgid "Disable logo in graphs"
-msgstr "Deshabilitar el logo en los gráficos"
-
-#: ../../godmode/setup/setup_visuals.php:540
-msgid "Disable helps"
-msgstr "Deshabilitar ayudas"
-
-#: ../../godmode/setup/setup_visuals.php:549
-#: ../../include/functions_config.php:1128
-msgid "Fixed header"
-msgstr "Cabecera fija"
-
-#: ../../godmode/setup/setup_visuals.php:560
-msgid "Automatically hide submenu"
-msgstr "Ocultar submenú automáticamente"
-
-#: ../../godmode/setup/setup_visuals.php:568
-#: ../../enterprise/meta/advanced/metasetup.visual.php:398
-#: ../../enterprise/meta/include/functions_meta.php:1451
-msgid "Visual effects and animation"
-msgstr "Efectos visuales y animación"
-
-#: ../../godmode/setup/setup_visuals.php:578
-msgid "Style configuration"
-msgstr "Configuración de estilo"
-
-#: ../../godmode/setup/setup_visuals.php:592
-#: ../../include/functions_config.php:1100
-msgid "GIS Labels"
-msgstr "Etiquetas GIS"
-
-#: ../../godmode/setup/setup_visuals.php:592
-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 ""
-"Al habilitarlo, se obtiene una etiqueta con el nombre del agente en los "
-"mapas GIS. Si hay muchos agentes en el mapa, podría ser ilegible. "
-"Deshabilitado por defecto."
-
-#: ../../godmode/setup/setup_visuals.php:607
-#: ../../include/functions_config.php:1108
-msgid "Default icon in GIS"
-msgstr "Icono GIS por defecto"
-
-#: ../../godmode/setup/setup_visuals.php:607
-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:613
-msgid "Agent icon group"
-msgstr "Grupo de iconos de agente"
-
-#: ../../godmode/setup/setup_visuals.php:621
-msgid "GIS configuration"
-msgstr "Configuración GIS"
-
-#: ../../godmode/setup/setup_visuals.php:635
-#: ../../enterprise/meta/advanced/metasetup.visual.php:385
-msgid "Graphs font family"
-msgstr "Familia tipográfica de las gráficas"
-
-#: ../../godmode/setup/setup_visuals.php:665
-msgid "Graphs font size"
-msgstr "Tamaño de fuente de las gráficas"
-
-#: ../../godmode/setup/setup_visuals.php:696
-#: ../../include/functions_config.php:1076
-#: ../../include/functions_config.php:1080
-msgid "Agent size text"
-msgstr "Tamaño del texto del agente"
-
-#: ../../godmode/setup/setup_visuals.php:696
-#, php-format
-msgid ""
-"When the agent name has a lot of characters, it is needed to truncate it "
-"into N characters in some sections in %s Console"
-msgstr ""
-"Cuando el nombre de un agente tiene muchos caracteres, se debe cambiar a N "
-"caracteres en algunas secciones de la consola de %s"
-
-#: ../../godmode/setup/setup_visuals.php:697
-#: ../../godmode/setup/setup_visuals.php:702
-msgid "Small:"
-msgstr "Pequeño:"
-
-#: ../../godmode/setup/setup_visuals.php:698
-#: ../../godmode/setup/setup_visuals.php:703
-msgid "Normal:"
-msgstr "Normal:"
-
-#: ../../godmode/setup/setup_visuals.php:701
-#: ../../include/functions_config.php:1084
-msgid "Module size text"
-msgstr "Tamaño del nombre del módulo"
-
-#: ../../godmode/setup/setup_visuals.php:701
-#, php-format
-msgid ""
-"When the module name has a lot of characters, it is needed to truncate it "
-"into N characters in some sections in %s Console"
-msgstr ""
-"Cuando el nombre de un módulo tiene muchos caracteres, se debe cambiar a N "
-"caracteres en algunas secciones de la consola de %s"
-
-#: ../../godmode/setup/setup_visuals.php:706
-#: ../../include/functions_config.php:1088
-#: ../../include/functions_config.php:1092
-msgid "Description size text"
-msgstr "Tamaño del texto de la descripción"
-
-#: ../../godmode/setup/setup_visuals.php:706
-#, php-format
-msgid ""
-"If the description name has a lot of characters, in some places in %s "
-"Console it is necessary to truncate it to N characters."
-msgstr ""
-"Cuando el nombre de una descripción tiene muchos caracteres, se debe cambiar "
-"a N caracteres en algunas secciones de la consola de %s"
-
-#: ../../godmode/setup/setup_visuals.php:710
-#: ../../include/functions_config.php:1096
-msgid "Item title size text"
-msgstr "Tamaño del texto de los títulos de elementos"
-
-#: ../../godmode/setup/setup_visuals.php:710
-#, php-format
-msgid ""
-"When the item title name has a lot of characters, it is needed to truncate "
-"it into N characters in some sections in %s Console."
-msgstr ""
-"Cuando el nombre del título de un elemento tiene muchos caracteres, se debe "
-"cambiar a N caracteres en algunas secciones de la consola de %s"
-
-#: ../../godmode/setup/setup_visuals.php:721
-msgid "Show unit along with value in reports"
-msgstr "Mostrar la unidad junto con el valor en los informes"
-
-#: ../../godmode/setup/setup_visuals.php:721
-msgid "This enabling this, max, min and avg values will be shown with units."
-msgstr ""
-"Si activas esta opción, el máximo, el mínimo y la media aparecerán con "
-"unidades."
-
-#: ../../godmode/setup/setup_visuals.php:731
-msgid "Font and Text configuration"
-msgstr "Configuración de fuente y texto"
-
-#: ../../godmode/setup/setup_visuals.php:745
-#: ../../include/functions_config.php:855
-#: ../../enterprise/meta/advanced/metasetup.visual.php:121
-msgid "Graph color #1"
-msgstr "Color de la gráfica #1"
-
-#: ../../godmode/setup/setup_visuals.php:749
-#: ../../include/functions_config.php:859
-#: ../../enterprise/meta/advanced/metasetup.visual.php:124
-msgid "Graph color #2"
-msgstr "Color de la gráfica #2"
-
-#: ../../godmode/setup/setup_visuals.php:753
-#: ../../include/functions_config.php:863
-#: ../../enterprise/meta/advanced/metasetup.visual.php:127
-msgid "Graph color #3"
-msgstr "Color de la gráfica #3"
-
-#: ../../godmode/setup/setup_visuals.php:757
-#: ../../include/functions_config.php:867
-msgid "Graph color #4"
-msgstr "Color del gráfico #4"
-
-#: ../../godmode/setup/setup_visuals.php:761
-#: ../../include/functions_config.php:871
-msgid "Graph color #5"
-msgstr "Color del gráfico #5"
-
-#: ../../godmode/setup/setup_visuals.php:765
-#: ../../include/functions_config.php:875
-msgid "Graph color #6"
-msgstr "Color del gráfico #6"
-
-#: ../../godmode/setup/setup_visuals.php:769
-#: ../../include/functions_config.php:879
-msgid "Graph color #7"
-msgstr "Color del gráfico #7"
-
-#: ../../godmode/setup/setup_visuals.php:773
-#: ../../include/functions_config.php:883
-msgid "Graph color #8"
-msgstr "Color del gráfico #8"
-
-#: ../../godmode/setup/setup_visuals.php:777
-#: ../../include/functions_config.php:887
-msgid "Graph color #9"
-msgstr "Color del gráfico #9"
-
-#: ../../godmode/setup/setup_visuals.php:781
-#: ../../include/functions_config.php:891
-msgid "Graph color #10"
-msgstr "Color del gráfico #10"
-
-#: ../../godmode/setup/setup_visuals.php:785
-#: ../../include/functions_config.php:895
-#: ../../enterprise/meta/advanced/metasetup.visual.php:137
-#: ../../enterprise/meta/include/functions_meta.php:1376
-msgid "Value to interface graphics"
-msgstr "Valor para la interfaz gráfica"
-
-#: ../../godmode/setup/setup_visuals.php:794
-msgid "Data precision"
-msgstr "Precisión de datos"
-
-#: ../../godmode/setup/setup_visuals.php:795
-msgid ""
-"Number of decimals shown. It must be a number between 0 and 5, except in "
-"graphs."
-msgstr ""
-"Nº de decimales mostrados. Debe ser un número entre 0 y 5, excepto en los "
-"gráficos."
-
-#: ../../godmode/setup/setup_visuals.php:803
-msgid "Data precision in graphs"
-msgstr "Precisión de datos en los gráficos"
-
-#: ../../godmode/setup/setup_visuals.php:804
-msgid ""
-"Number of decimals shown. If the field is empty, it will show all the "
-"decimals"
-msgstr ""
-"Nº de decimales mostrados. Si el campo está vacío, se mostrarán todos los "
-"decimales."
-
-#: ../../godmode/setup/setup_visuals.php:808
-#: ../../include/functions_config.php:1152
-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:819
-#: ../../include/functions_config.php:916
-#: ../../enterprise/meta/advanced/metasetup.visual.php:143
-#: ../../enterprise/meta/include/functions_meta.php:1397
-msgid "Use round corners"
-msgstr "Usar bordes redondeados"
-
-#: ../../godmode/setup/setup_visuals.php:828
-#: ../../enterprise/meta/advanced/metasetup.visual.php:204
-msgid "Type of module charts"
-msgstr "Tipo de gráficos de módulos"
-
-#: ../../godmode/setup/setup_visuals.php:845
-msgid "Type of interface charts"
-msgstr "Tipo de las gráficos de interfaces"
-
-#: ../../godmode/setup/setup_visuals.php:863
-#: ../../enterprise/meta/advanced/metasetup.visual.php:134
-msgid "Show percentile 95 in graphs"
-msgstr "Mostrar el percentil 95 en los gráficos"
-
-#: ../../godmode/setup/setup_visuals.php:867
-msgid "Graph TIP view:"
-msgstr "Vista TIP de la gráfica:"
-
-#: ../../godmode/setup/setup_visuals.php:873
-#: ../../enterprise/meta/advanced/metasetup.visual.php:151
-msgid "On Boolean graphs"
-msgstr "En gráficos booleanos"
-
-#: ../../godmode/setup/setup_visuals.php:879
-msgid "Show only average"
-msgstr "Mostrar solo la media"
-
-#: ../../godmode/setup/setup_visuals.php:880
-msgid ""
-"If enabled, the module graphs will only show the average value, otherwise it "
-"will show three sets of data showing maximums, averages and minimums."
-msgstr ""
-"Si se habilita, las gráficas de módulos solo mostrarán el valor medio, si no "
-"aparecerán tres conjuntos de datos que muestren los valores máximos, mínimos "
-"y medios."
-
-#: ../../godmode/setup/setup_visuals.php:883
-#: ../../enterprise/meta/advanced/metasetup.visual.php:167
-msgid "Standard mode"
-msgstr "Modo estándar"
-
-#: ../../godmode/setup/setup_visuals.php:884
-#: ../../enterprise/meta/advanced/metasetup.visual.php:168
-msgid "Classic mode"
-msgstr "Modo clásico"
-
-#: ../../godmode/setup/setup_visuals.php:889
-#: ../../enterprise/meta/advanced/metasetup.visual.php:190
-msgid "Zoom graphs:"
-msgstr "Gráficas ampliadas:"
-
-#: ../../godmode/setup/setup_visuals.php:911
-msgid "Charts configuration"
-msgstr "Configuración de gráficos"
-
-#: ../../godmode/setup/setup_visuals.php:926
-#: ../../enterprise/meta/advanced/metasetup.visual.php:403
-msgid "Legacy Visual Console View"
-msgstr "Vista de la consola visual heredada"
-
-#: ../../godmode/setup/setup_visuals.php:928
-#: ../../enterprise/meta/advanced/metasetup.visual.php:405
-msgid "To use the old view when using the Visual Console visor"
-msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual"
-
-#: ../../godmode/setup/setup_visuals.php:942
-#: ../../godmode/setup/setup_visuals.php:943
-#: ../../godmode/setup/setup_visuals.php:944
-#: ../../godmode/setup/setup_visuals.php:945
-#: ../../godmode/setup/setup_visuals.php:1298 ../../include/functions.php:492
-#: ../../include/functions.php:632 ../../include/functions_html.php:1066
-#: ../../include/functions_visual_map_editor.php:1135
-#: ../../include/functions_visual_map_editor.php:1136
-#: ../../include/functions_visual_map_editor.php:1137
-#: ../../include/functions_visual_map_editor.php:1138
-#: ../../enterprise/meta/advanced/metasetup.visual.php:225
-#: ../../enterprise/meta/advanced/metasetup.visual.php:418
-#: ../../enterprise/meta/advanced/metasetup.visual.php:419
-#: ../../enterprise/meta/advanced/metasetup.visual.php:420
-#: ../../enterprise/meta/advanced/metasetup.visual.php:421
-msgid "minutes"
-msgstr "minutos"
-
-#: ../../godmode/setup/setup_visuals.php:946
-#: ../../include/functions_visual_map_editor.php:1139
-#: ../../enterprise/meta/advanced/metasetup.visual.php:422
-msgid "hour"
-msgstr "hora"
-
-#: ../../godmode/setup/setup_visuals.php:948
-#: ../../enterprise/meta/advanced/metasetup.visual.php:424
-msgid "Default cache expiration"
-msgstr "Caducidad del caché por defecto"
-
-#: ../../godmode/setup/setup_visuals.php:953
-#: ../../include/functions_visual_map_editor.php:1165
-#: ../../enterprise/meta/advanced/metasetup.visual.php:429
-msgid "No cache"
-msgstr "No hay chaché"
-
-#: ../../godmode/setup/setup_visuals.php:965
-#: ../../include/functions_config.php:1056
-#: ../../enterprise/meta/advanced/metasetup.visual.php:441
-#: ../../enterprise/meta/include/functions_meta.php:1697
-msgid "Default interval for refresh on Visual Console"
-msgstr "Intervalo de actualización por defecto en la consola visual"
-
-#: ../../godmode/setup/setup_visuals.php:965
-#: ../../enterprise/meta/advanced/metasetup.visual.php:444
-msgid "This interval will affect to Visual Console pages"
-msgstr "Este intervalo afectará todas las páginas de la consola visual."
-
-#: ../../godmode/setup/setup_visuals.php:969
-msgid "Classic view"
-msgstr "Vista clásica"
-
-#: ../../godmode/setup/setup_visuals.php:970
-msgid "View of favorites"
-msgstr "Vista de favoritos"
-
-#: ../../godmode/setup/setup_visuals.php:971
-msgid "Type of view of visual consoles"
-msgstr "Tipo de vista de las consolas visuales"
-
-#: ../../godmode/setup/setup_visuals.php:971
-msgid "Allows you to directly display the list of favorite visual consoles"
-msgstr ""
-"Permite visualizar directamente la lista de consolas visuales favoritas"
-
-#: ../../godmode/setup/setup_visuals.php:975
-msgid "Number of favorite visual consoles to show in the menu"
-msgstr "Nº de consolas visuales favoritas mostradas en el menú"
-
-#: ../../godmode/setup/setup_visuals.php:975
-msgid ""
-"If the number is 0 it will not show the pull-down menu and maximum 25 "
-"favorite consoles"
-msgstr ""
-"Si el número es 0, no mostrará el menú desplegable y se mostrarán un máximo "
-"de 25 consolas favoritas."
-
-#: ../../godmode/setup/setup_visuals.php:979
-#: ../../include/functions_config.php:1068
-msgid "Default line thickness for the Visual Console"
-msgstr "Grosor de línea por defecto en las consolas visuales"
-
-#: ../../godmode/setup/setup_visuals.php:979
-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:984
-msgid "Visual consoles configuration"
-msgstr "Configuración de las consolas visuales"
-
-#: ../../godmode/setup/setup_visuals.php:998
-msgid "Number of favorite services to show in the menu"
-msgstr "Número de servicios favoritos a mostrar en el menú"
-
-#: ../../godmode/setup/setup_visuals.php:998
-msgid ""
-"If the number is 0 it will not show the pull-down menu and maximum 25 "
-"favorite services"
-msgstr ""
-"Si el número es 0, no mostrará el menú desplegable y el máximo de 25 "
-"servicios favoritos"
-
-#: ../../godmode/setup/setup_visuals.php:1002
-msgid "Services configuration"
-msgstr "Configuración de servicios"
-
-#: ../../godmode/setup/setup_visuals.php:1016
-#: ../../enterprise/meta/advanced/metasetup.visual.php:487
-msgid "Show report info with description"
-msgstr "Mostrar la información del informe con la descripción"
-
-#: ../../godmode/setup/setup_visuals.php:1017
-#: ../../enterprise/meta/advanced/metasetup.visual.php:488
-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:1028
-#: ../../enterprise/meta/advanced/metasetup.visual.php:499
-msgid "Custom report front page"
-msgstr "Portada de informe personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:1029
-#: ../../enterprise/meta/advanced/metasetup.visual.php:500
-msgid ""
-"Custom report front page. It will be applied to all reports and templates by "
-"default."
-msgstr ""
-"Portada de informe personalizado. Se aplicará por defecto a todos los "
-"informes y plantillas."
-
-#: ../../godmode/setup/setup_visuals.php:1041
-#: ../../include/functions_config.php:1293
-#: ../../enterprise/meta/advanced/metasetup.visual.php:511
-#: ../../enterprise/meta/include/functions_meta.php:1358
-msgid "PDF font size (px)"
-msgstr "Tamaño de fuente de PDF (px)"
-
-#: ../../godmode/setup/setup_visuals.php:1046
-#: ../../include/functions_config.php:1289
-#: ../../enterprise/meta/advanced/metasetup.visual.php:514
-#: ../../enterprise/meta/include/functions_meta.php:1349
-msgid "HTML font size for SLA (em)"
-msgstr "Tamaño de fuente en SLA (em)"
-
-#: ../../godmode/setup/setup_visuals.php:1051
-#: ../../enterprise/meta/advanced/metasetup.visual.php:517
-msgid "PDF font family"
-msgstr "Familia tipográfica PDF"
-
-#: ../../godmode/setup/setup_visuals.php:1065
-#: ../../enterprise/meta/advanced/metasetup.visual.php:520
-#: ../../enterprise/meta/include/functions_meta.php:1433
-msgid "Graph image height for HTML reports"
-msgstr "Altura de la imagen de la gráfica en informes HTML"
-
-#: ../../godmode/setup/setup_visuals.php:1067
-#: ../../enterprise/meta/advanced/metasetup.visual.php:522
-msgid ""
-"This is the height in pixels of the module graph or custom graph in the "
-"reports (only: HTML)"
-msgstr ""
-"Esta es la altura en pixeles de la gráfica de módulos o la gráfica "
-"personalizada en los informes (solo HTML)"
-
-#: ../../godmode/setup/setup_visuals.php:1078
-#: ../../include/functions_config.php:1297
-#: ../../enterprise/meta/advanced/metasetup.visual.php:538
-#: ../../enterprise/meta/include/functions_meta.php:1367
-msgid "Interval description"
-msgstr "Descripción del intervalo"
-
-#: ../../godmode/setup/setup_visuals.php:1080
-#: ../../enterprise/meta/advanced/metasetup.visual.php:540
-msgid ""
-"A long interval description is for example 10 hours, 20 minutes 33 "
-"seconds”, a short one is 10h 20m 33s"
-msgstr ""
-"Una descripción larga del intervalo dura por ejemplo 10 horas, 20 minutos 33 "
-"segundos”, una corta es 10h 20m 33s"
-
-#: ../../godmode/setup/setup_visuals.php:1096
-#: ../../godmode/setup/setup_visuals.php:1110
-#: ../../godmode/setup/setup_visuals.php:1118
-#: ../../godmode/setup/setup_visuals.php:1129
-#: ../../godmode/setup/setup_visuals.php:1145
-#: ../../include/functions_config.php:1301
-#: ../../include/functions_config.php:1305
-#: ../../include/functions_config.php:1309
-#: ../../include/functions_config.php:1313
-#: ../../include/functions_config.php:1317
-#: ../../include/functions_config.php:1321
-#: ../../enterprise/meta/advanced/metasetup.visual.php:545
-#: ../../enterprise/meta/advanced/metasetup.visual.php:550
-#: ../../enterprise/meta/advanced/metasetup.visual.php:557
-#: ../../enterprise/meta/advanced/metasetup.visual.php:567
-#: ../../enterprise/meta/advanced/metasetup.visual.php:582
-#: ../../enterprise/meta/include/functions_meta.php:1636
-#: ../../enterprise/meta/include/functions_meta.php:1647
-#: ../../enterprise/meta/include/functions_meta.php:1652
-#: ../../enterprise/meta/include/functions_meta.php:1657
-#: ../../enterprise/meta/include/functions_meta.php:1662
-#: ../../enterprise/meta/include/functions_meta.php:1667
-msgid "Custom report front"
-msgstr "Portada de informe personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:1096
-#: ../../include/functions_config.php:940
-#: ../../include/functions_config.php:1309
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:103
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130
-#: ../../enterprise/meta/advanced/metasetup.visual.php:545
-#: ../../enterprise/meta/include/functions_meta.php:1487
-#: ../../enterprise/meta/include/functions_meta.php:1652
-msgid "Custom logo"
-msgstr "Logo personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:1097
-msgid ""
-"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
-"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
-msgstr ""
-"El directorio de los logos personalizados está en la consola www en "
-"'images/custom_logo'. Puede añadir más archivos (SOLO JPEG Y PNG) en la "
-"herramienta de añadir en la consola."
-
-#: ../../godmode/setup/setup_visuals.php:1118
-#: ../../include/functions_config.php:1313
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142
-#: ../../enterprise/meta/advanced/metasetup.visual.php:557
-#: ../../enterprise/meta/include/functions_meta.php:1657
-msgid "Header"
-msgstr "Encabezado"
-
-#: ../../godmode/setup/setup_visuals.php:1129
-#: ../../include/functions_config.php:1317
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:119
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152
-#: ../../enterprise/meta/advanced/metasetup.visual.php:567
-#: ../../enterprise/meta/include/functions_meta.php:1662
-msgid "First page"
-msgstr "Primera página"
-
-#: ../../godmode/setup/setup_visuals.php:1145
-#: ../../include/functions_config.php:1321
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162
-#: ../../enterprise/meta/advanced/metasetup.visual.php:582
-#: ../../enterprise/meta/include/functions_meta.php:1667
-msgid "Footer"
-msgstr "Pie de página"
-
-#: ../../godmode/setup/setup_visuals.php:1156
-#: ../../enterprise/meta/advanced/metasetup.visual.php:481
-msgid "Reports configuration"
-msgstr "Configuración de informes"
-
-#: ../../godmode/setup/setup_visuals.php:1174
-#: ../../include/functions_config.php:1136
-msgid "Custom graphviz directory"
-msgstr "Directorio personalizado graphviz"
-
-#: ../../godmode/setup/setup_visuals.php:1174
-msgid "Custom directory where the graphviz binaries are stored."
-msgstr ""
-"Directorio personalizado donde se almacenan los archivos binarios de graphviz"
-
-#: ../../godmode/setup/setup_visuals.php:1186
-#: ../../include/functions_config.php:1140
-msgid "Networkmap max width"
-msgstr "Máximo ancho de Networkmap"
-
-#: ../../godmode/setup/setup_visuals.php:1199
-#: ../../enterprise/meta/advanced/metasetup.visual.php:246
-#: ../../enterprise/meta/include/functions_meta.php:1478
-msgid "Show only the group name"
-msgstr "Mostrar solo el nombre del grupo"
-
-#: ../../godmode/setup/setup_visuals.php:1201
-#: ../../include/functions_config.php:1148
-#: ../../enterprise/meta/advanced/metasetup.visual.php:248
-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:1212
-#: ../../include/functions_config.php:847
-#: ../../enterprise/meta/advanced/metasetup.visual.php:95
-#: ../../enterprise/meta/include/functions_meta.php:1286
-msgid "Date format string"
-msgstr "Formato de fecha a mostrar"
-
-#: ../../godmode/setup/setup_visuals.php:1213
-#: ../../enterprise/meta/advanced/metasetup.visual.php:96
-msgid "Example"
-msgstr "Ejemplo"
-
-#: ../../godmode/setup/setup_visuals.php:1231
-#: ../../enterprise/meta/advanced/metasetup.visual.php:113
-msgid "Timestamp, time comparison, or compact mode"
-msgstr "Marca horaria, comparación horaria o modo compacto"
-
-#: ../../godmode/setup/setup_visuals.php:1233
-#: ../../enterprise/meta/advanced/metasetup.visual.php:114
-msgid "Comparation in rollover"
-msgstr "Fecha en comparación"
-
-#: ../../godmode/setup/setup_visuals.php:1234
-#: ../../enterprise/meta/advanced/metasetup.visual.php:116
-msgid "Timestamp in rollover"
-msgstr "Fecha literal"
-
-#: ../../godmode/setup/setup_visuals.php:1235
-#: ../../enterprise/meta/advanced/metasetup.visual.php:118
-msgid "Compact mode"
-msgstr "Modo compacto"
-
-#: ../../godmode/setup/setup_visuals.php:1243
-msgid "Custom values post process"
-msgstr "Valores personalizados para postprocesado"
-
-#: ../../godmode/setup/setup_visuals.php:1264
-msgid "Delete custom values"
-msgstr "Eliminar valores personalizados"
-
-#: ../../godmode/setup/setup_visuals.php:1295
-msgid "Interval values"
-msgstr "Valores del intervalo"
-
-#: ../../godmode/setup/setup_visuals.php:1299 ../../include/functions.php:493
-#: ../../include/functions.php:633 ../../include/functions_html.php:1067
-#: ../../enterprise/meta/advanced/metasetup.visual.php:226
-msgid "hours"
-msgstr "horas"
-
-#: ../../godmode/setup/setup_visuals.php:1301 ../../include/functions.php:490
-#: ../../include/functions.php:630 ../../include/functions_html.php:1070
-#: ../../enterprise/meta/advanced/metasetup.visual.php:228
-msgid "months"
-msgstr "meses"
-
-#: ../../godmode/setup/setup_visuals.php:1302 ../../include/functions.php:491
-#: ../../include/functions.php:631 ../../include/functions_html.php:1071
-#: ../../enterprise/meta/advanced/metasetup.visual.php:229
-msgid "years"
-msgstr "años"
-
-#: ../../godmode/setup/setup_visuals.php:1304
-#: ../../enterprise/meta/advanced/metasetup.visual.php:232
-msgid "Add new custom value to intervals"
-msgstr "Añadir nuevo valor personalizado para intervalos"
-
-#: ../../godmode/setup/setup_visuals.php:1310
-#: ../../include/functions_config.php:1279
-#: ../../enterprise/meta/advanced/metasetup.visual.php:238
-#: ../../enterprise/meta/include/functions_meta.php:1625
-msgid "Delete interval"
-msgstr "Borrar intervalo"
-
-#: ../../godmode/setup/setup_visuals.php:1325
-#: ../../include/functions_config.php:1325
-msgid "CSV divider"
-msgstr "Separador CSV"
-
-#: ../../godmode/setup/setup_visuals.php:1338
-msgid "Other configuration"
-msgstr "Otra configuración"
-
-#: ../../godmode/setup/setup_visuals.php:1579
-#: ../../enterprise/meta/advanced/metasetup.visual.php:744
-msgid "Logo preview"
-msgstr "Logo de vista previa"
-
-#: ../../godmode/setup/setup_visuals.php:1609
-#: ../../enterprise/meta/advanced/metasetup.visual.php:766
-msgid "Splash Preview"
-msgstr "Vista previa de Splash"
-
-#: ../../godmode/setup/setup_visuals.php:1628
-msgid "Mobile console logo preview"
-msgstr "Vista previa del logo de la consola móvil"
-
-#: ../../godmode/setup/setup_visuals.php:1633
-#: ../../enterprise/meta/advanced/metasetup.visual.php:771
-msgid "Background preview"
-msgstr "Vista previa del fondo"
-
-#: ../../godmode/setup/setup_visuals.php:1663
-msgid "Gis icons preview"
-msgstr "Vista previa de los iconos GIS"
-
-#: ../../godmode/setup/setup_visuals.php:1729
-msgid "Status set preview"
-msgstr "Vista previa del estado"
-
-#: ../../godmode/setup/setup_websocket_engine.php:38
-msgid "WebSocket settings"
-msgstr "Ajustes de WebSocket"
-
-#: ../../godmode/setup/setup_websocket_engine.php:47
-msgid "Bind address"
-msgstr "Dirección de enlace"
-
-#: ../../godmode/setup/setup_websocket_engine.php:57
-msgid "Bind port"
-msgstr "Puerto de enlace"
-
-#: ../../godmode/setup/setup_websocket_engine.php:67
-#: ../../include/functions_config.php:366
-msgid "WebSocket proxy url"
-msgstr "URL del proxy de WebSocket"
-
-#: ../../godmode/setup/setup_websocket_engine.php:68
-msgid ""
-"If you had configured a wsproxy set here target URL (for instance "
-"ws://your.public.fqdn/ws)."
-msgstr ""
-"Si ha configurado un wsproxy, indique aquí la URL de destino (Ej.: "
-"ws://your.public.fqdn/ws)."
-
-#: ../../godmode/setup/snmp_wizard.php:44
-#: ../../enterprise/godmode/setup/setup_auth.php:172
-#: ../../enterprise/godmode/setup/setup_auth.php:229
-#: ../../enterprise/godmode/setup/setup_auth.php:929
-#: ../../enterprise/godmode/setup/setup_auth.php:981
-msgid "OP"
-msgstr "OP"
+#: ../../godmode/setup/links.php:25
+msgid "Link management"
+msgstr "Gestionar enlaces"
 
 #: ../../godmode/setup/snmp_wizard.php:155
 msgid "Unsucessful update the snmp translation"
@@ -20841,304 +33185,2517 @@ msgstr "No se pudo guardar la traducción de SNMP"
 msgid "Unsucessful save the snmp translation."
 msgstr "No se pudo guardar la traducción de SNMP"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:26
-#: ../../operation/snmpconsole/snmp_view.php:606
-#: ../../operation/snmpconsole/snmp_view.php:1031
-#: ../../operation/snmpconsole/snmp_view.php:1045
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30
-msgid "Cold start (0)"
-msgstr "Inicio cero (0)"
+#: ../../godmode/setup/setup_netflow.php:46
+#: ../../include/functions_config.php:1354
+msgid "Data storage path"
+msgstr "Ruta de almacenamiento de datos"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:27
-#: ../../operation/snmpconsole/snmp_view.php:607
-#: ../../operation/snmpconsole/snmp_view.php:1032
-#: ../../operation/snmpconsole/snmp_view.php:1049
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31
-msgid "Warm start (1)"
-msgstr "Comienzo de inicio (1)"
+#: ../../godmode/setup/setup_netflow.php:49
+#: ../../include/functions_config.php:1358
+msgid "Daemon interval"
+msgstr "Intervalo del demonio"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:28
-#: ../../operation/snmpconsole/snmp_view.php:608
-#: ../../operation/snmpconsole/snmp_view.php:1033
-#: ../../operation/snmpconsole/snmp_view.php:1053
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32
-msgid "Link down (2)"
-msgstr "Enlace interrumpido (2)"
+#: ../../godmode/setup/setup_netflow.php:52
+#: ../../include/functions_config.php:1362
+msgid "Daemon binary path"
+msgstr "Ruta de demonio binario"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:29
-#: ../../operation/snmpconsole/snmp_view.php:609
-#: ../../operation/snmpconsole/snmp_view.php:1034
-#: ../../operation/snmpconsole/snmp_view.php:1057
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33
-msgid "Link up (3)"
-msgstr "Enlace activo  (3)"
+#: ../../godmode/setup/setup_netflow.php:55
+#: ../../include/functions_config.php:1366
+msgid "Nfdump binary path"
+msgstr "Ruta binaria Nfdump"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:30
-#: ../../operation/snmpconsole/snmp_view.php:610
-#: ../../operation/snmpconsole/snmp_view.php:1035
-#: ../../operation/snmpconsole/snmp_view.php:1061
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34
-msgid "Authentication failure (4)"
-msgstr "Fallo de autentificación (4)"
+#: ../../godmode/setup/setup_netflow.php:58
+#: ../../include/functions_config.php:1370
+msgid "Nfexpire binary path"
+msgstr "Ruta binaria Nfexpire"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:76
-#: ../../godmode/snmpconsole/snmp_alert.php:84
-#: ../../godmode/snmpconsole/snmp_alert.php:92
-#: ../../godmode/snmpconsole/snmp_filters.php:35
-#: ../../godmode/snmpconsole/snmp_filters.php:37
-#: ../../godmode/snmpconsole/snmp_filters.php:41
-#: ../../operation/snmpconsole/snmp_statistics.php:57
-#: ../../operation/snmpconsole/snmp_view.php:659
-#: ../../operation/snmpconsole/snmp_view.php:750
-msgid "SNMP Console"
-msgstr "Consola SNMP"
+#: ../../godmode/setup/setup_netflow.php:61
+#: ../../include/functions_config.php:1374
+msgid "Maximum chart resolution"
+msgstr "Máxima resolución del gráfico"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:76
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:790
-#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1272
-msgid "Update alert"
-msgstr "Actualizar alerta"
+#: ../../godmode/setup/setup_netflow.php:66
+#: ../../include/functions_config.php:1382
+msgid "Netflow max lifetime"
+msgstr "Tiempo  máximo del Netflow"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:92
-msgid "Alert overview"
-msgstr "Vista general de alertas"
+#: ../../godmode/setup/setup_netflow.php:69
+#: ../../include/functions_config.php:1386
+msgid "Name resolution for IP address"
+msgstr "Habilitar la resolución de nombre con IP"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:255
-msgid "There was a problem creating the alert"
-msgstr "Hubo un problema al crear la alerta"
+#: ../../godmode/setup/setup_netflow.php:70
+#: ../../operation/netflow/nf_live_view.php:451
+msgid "IP address resolution can take a lot of time"
+msgstr "La resolución de direcciones IP puede tardar mucho tiempo."
 
-#: ../../godmode/snmpconsole/snmp_alert.php:377
-msgid "There was a problem updating the alert"
-msgstr "Hubo un problema al actualizar la alerta"
+#: ../../godmode/setup/setup_visuals.php:73
+msgid "Paginated module view"
+msgstr "Vista del módulo paginada"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:656
-msgid "There was a problem duplicating the alert"
-msgstr "Hubo un problema al duplicar la alerta"
+#: ../../godmode/setup/setup_visuals.php:100
+msgid "Click to display lateral menus"
+msgstr "Haz clic para mostrar el menú lateral"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:659
-msgid "Successfully Duplicate"
-msgstr "Duplicada correctamente"
+#: ../../godmode/setup/setup_visuals.php:110
+#: ../../include/functions_config.php:1184
+msgid "Service label font size"
+msgstr "Tamaño de fuente para el mapa de servicios"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:677
-msgid "There was a problem deleting the alert"
-msgstr "Error al borrar la alerta"
+#: ../../godmode/setup/setup_visuals.php:114
+msgid "Space between items in Service maps"
+msgstr "Espacio entre nodos para el mapa de servicios"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:706
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:145
-#, php-format
-msgid "Successfully deleted alerts (%s / %s)"
-msgstr "Alertas eliminadas correctamente (%s / %s)"
+#: ../../godmode/setup/setup_visuals.php:120
+msgid "Behaviour configuration"
+msgstr "Configuración del comportamiento"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:710
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:153
-#, php-format
-msgid "Unsuccessfully deleted alerts (%s / %s)"
-msgstr "Error al eliminar las alertas (%s / %s)"
+#: ../../godmode/setup/setup_visuals.php:134
+#: ../../include/functions_config.php:909
+msgid "Style template"
+msgstr "Plantilla de estilo"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:754
-#: ../../godmode/snmpconsole/snmp_alert.php:1262
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:92
-#: ../../operation/snmpconsole/snmp_view.php:804
-msgid "Enterprise String"
-msgstr "Cadena Enterprise"
+#: ../../godmode/setup/setup_visuals.php:146
+#: ../../include/functions_config.php:925
+msgid "Status icon set"
+msgstr "Icono de estado en"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:754
-msgid "Matches substrings. End the string with $ for exact matches."
-msgstr ""
-"Coincide con las subcadenas. Escriba $ al final de la cadena para encontrar "
-"coincidencias exactas."
+#: ../../godmode/setup/setup_visuals.php:147
+msgid "Colors"
+msgstr "Colores"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:759
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:286
-msgid "Custom Value/OID"
-msgstr "Valor/OID personalizado"
+#: ../../godmode/setup/setup_visuals.php:148
+msgid "Faces"
+msgstr "Caras"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:767
-#: ../../godmode/snmpconsole/snmp_alert.php:1258
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:112
-#: ../../operation/snmpconsole/snmp_view.php:799
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:288
-msgid "SNMP Agent"
-msgstr "Agente SNMP"
+#: ../../godmode/setup/setup_visuals.php:149
+msgid "Colors and text"
+msgstr "Colores y texto"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:796
-#: ../../godmode/snmpconsole/snmp_alert.php:1114
-#: ../../include/functions_snmp.php:443
-#: ../../operation/snmpconsole/snmp_view.php:603
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:185
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:290
-msgid "Trap type"
-msgstr "Clase de trap"
+#: ../../godmode/setup/setup_visuals.php:208
+msgid "Custom background logo"
+msgstr "Fondo del logo personalizable"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:801
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:292
-msgid "Single value"
-msgstr "Valor único"
+#: ../../godmode/setup/setup_visuals.php:275
+msgid "Custom logo (menu)"
+msgstr "Logo personalizable (menu)"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:806
-#: ../../godmode/snmpconsole/snmp_alert.php:813
-#: ../../godmode/snmpconsole/snmp_alert.php:822
-#: ../../godmode/snmpconsole/snmp_alert.php:831
-#: ../../godmode/snmpconsole/snmp_alert.php:840
-#: ../../godmode/snmpconsole/snmp_alert.php:849
-#: ../../godmode/snmpconsole/snmp_alert.php:858
-#: ../../godmode/snmpconsole/snmp_alert.php:866
-#: ../../godmode/snmpconsole/snmp_alert.php:874
-#: ../../godmode/snmpconsole/snmp_alert.php:882
-#: ../../godmode/snmpconsole/snmp_alert.php:890
-#: ../../godmode/snmpconsole/snmp_alert.php:898
-#: ../../godmode/snmpconsole/snmp_alert.php:906
-#: ../../godmode/snmpconsole/snmp_alert.php:914
-#: ../../godmode/snmpconsole/snmp_alert.php:922
-#: ../../godmode/snmpconsole/snmp_alert.php:930
-#: ../../godmode/snmpconsole/snmp_alert.php:938
-#: ../../godmode/snmpconsole/snmp_alert.php:946
-#: ../../godmode/snmpconsole/snmp_alert.php:954
-#: ../../godmode/snmpconsole/snmp_alert.php:962
-msgid "Variable bindings/Data"
-msgstr "Enlaces variables/Datos"
+#: ../../godmode/setup/setup_visuals.php:280
+msgid "Custom logo collapsed (menu)"
+msgstr "El logo personalizado se ha caído (menú)"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1028
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311
-msgid "Other value"
-msgstr "Otros valores"
+#: ../../godmode/setup/setup_visuals.php:389
+#: ../../include/functions_config.php:961
+msgid "Custom documentation logo"
+msgstr "Logo de documentación personalizado"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1041
-#: ../../godmode/snmpconsole/snmp_alert.php:1256
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:411
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:520
-msgid "Alert action"
-msgstr "Acción de alerta"
+#: ../../godmode/setup/setup_visuals.php:409
+#: ../../include/functions_config.php:965
+msgid "Custom support logo"
+msgstr "Logo de soporte personalizado"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1110
+#: ../../godmode/setup/setup_visuals.php:428
+#: ../../include/functions_config.php:969
+#: ../../include/functions_config.php:973
+msgid "Custom networkmap center logo"
+msgstr "Logo central del mapa de red personalizado"
+
+#: ../../godmode/setup/setup_visuals.php:447
+msgid "Custom mobile console icon"
+msgstr "Icono de la consola móvil personalizable"
+
+#: ../../godmode/setup/setup_visuals.php:468
+msgid "Title (header)"
+msgstr "Título (encabezado)"
+
+#: ../../godmode/setup/setup_visuals.php:475
+msgid "Subtitle (header)"
+msgstr "Subtítulo (encabezado)"
+
+#: ../../godmode/setup/setup_visuals.php:519
+msgid "Disable logo in graphs"
+msgstr "Deshabilitar el logo en los gráficos"
+
+#: ../../godmode/setup/setup_visuals.php:535
+msgid "Disable helps"
+msgstr "Deshabilitar ayudas"
+
+#: ../../godmode/setup/setup_visuals.php:544
+#: ../../include/functions_config.php:1129
+msgid "Fixed header"
+msgstr "Cabecera fija"
+
+#: ../../godmode/setup/setup_visuals.php:555
+msgid "Automatically hide submenu"
+msgstr "Ocultar submenú automáticamente"
+
+#: ../../godmode/setup/setup_visuals.php:573
+msgid "Style configuration"
+msgstr "Configuración de estilo"
+
+#: ../../godmode/setup/setup_visuals.php:587
+#: ../../include/functions_config.php:1101
+msgid "GIS Labels"
+msgstr "Etiquetas GIS"
+
+#: ../../godmode/setup/setup_visuals.php:602
+#: ../../include/functions_config.php:1109
+msgid "Default icon in GIS"
+msgstr "Icono GIS por defecto"
+
+#: ../../godmode/setup/setup_visuals.php:608
+msgid "Agent icon group"
+msgstr "Grupo de iconos de agente"
+
+#: ../../godmode/setup/setup_visuals.php:616
+msgid "GIS configuration"
+msgstr "Configuración GIS"
+
+#: ../../godmode/setup/setup_visuals.php:660
+msgid "Graphs font size"
+msgstr "Tamaño de fuente de las gráficas"
+
+#: ../../godmode/setup/setup_visuals.php:691
+#: ../../include/functions_config.php:1077
+#: ../../include/functions_config.php:1081
+msgid "Agent size text"
+msgstr "Tamaño del texto del agente"
+
+#: ../../godmode/setup/setup_visuals.php:692
+#: ../../godmode/setup/setup_visuals.php:697
+msgid "Small:"
+msgstr "Pequeño:"
+
+#: ../../godmode/setup/setup_visuals.php:693
+#: ../../godmode/setup/setup_visuals.php:698
+msgid "Normal:"
+msgstr "Normal:"
+
+#: ../../godmode/setup/setup_visuals.php:696
+#: ../../include/functions_config.php:1085
+msgid "Module size text"
+msgstr "Tamaño del nombre del módulo"
+
+#: ../../godmode/setup/setup_visuals.php:701
+#: ../../include/functions_config.php:1089
+#: ../../include/functions_config.php:1093
+msgid "Description size text"
+msgstr "Tamaño del texto de la descripción"
+
+#: ../../godmode/setup/setup_visuals.php:705
+#: ../../include/functions_config.php:1097
+msgid "Item title size text"
+msgstr "Tamaño del texto de los títulos de elementos"
+
+#: ../../godmode/setup/setup_visuals.php:716
+msgid "Show unit along with value in reports"
+msgstr "Mostrar la unidad junto con el valor en los informes"
+
+#: ../../godmode/setup/setup_visuals.php:726
+msgid "Font and Text configuration"
+msgstr "Configuración de fuente y texto"
+
+#: ../../godmode/setup/setup_visuals.php:752
+#: ../../include/functions_config.php:868
+msgid "Graph color #4"
+msgstr "Color del gráfico #4"
+
+#: ../../godmode/setup/setup_visuals.php:756
+#: ../../include/functions_config.php:872
+msgid "Graph color #5"
+msgstr "Color del gráfico #5"
+
+#: ../../godmode/setup/setup_visuals.php:760
+#: ../../include/functions_config.php:876
+msgid "Graph color #6"
+msgstr "Color del gráfico #6"
+
+#: ../../godmode/setup/setup_visuals.php:764
+#: ../../include/functions_config.php:880
+msgid "Graph color #7"
+msgstr "Color del gráfico #7"
+
+#: ../../godmode/setup/setup_visuals.php:768
+#: ../../include/functions_config.php:884
+msgid "Graph color #8"
+msgstr "Color del gráfico #8"
+
+#: ../../godmode/setup/setup_visuals.php:772
+#: ../../include/functions_config.php:888
+msgid "Graph color #9"
+msgstr "Color del gráfico #9"
+
+#: ../../godmode/setup/setup_visuals.php:776
+#: ../../include/functions_config.php:892
+msgid "Graph color #10"
+msgstr "Color del gráfico #10"
+
+#: ../../godmode/setup/setup_visuals.php:789
+msgid "Data precision"
+msgstr "Precisión de datos"
+
+#: ../../godmode/setup/setup_visuals.php:797
+msgid "Data precision in graphs"
+msgstr "Precisión de datos en los gráficos"
+
+#: ../../godmode/setup/setup_visuals.php:801
+#: ../../include/functions_config.php:1153
+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:838
+msgid "Type of interface charts"
+msgstr "Tipo de las gráficos de interfaces"
+
+#: ../../godmode/setup/setup_visuals.php:859
+msgid "Graph TIP view:"
+msgstr "Vista TIP de la gráfica:"
+
+#: ../../godmode/setup/setup_visuals.php:870
+msgid "Show only average"
+msgstr "Mostrar solo la media"
+
+#: ../../godmode/setup/setup_visuals.php:901
+msgid "Charts configuration"
+msgstr "Configuración de gráficos"
+
+#: ../../godmode/setup/setup_visuals.php:955
+msgid "Classic view"
+msgstr "Vista clásica"
+
+#: ../../godmode/setup/setup_visuals.php:956
+msgid "View of favorites"
+msgstr "Vista de favoritos"
+
+#: ../../godmode/setup/setup_visuals.php:957
+msgid "Type of view of visual consoles"
+msgstr "Tipo de vista de las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:961
+msgid "Number of favorite visual consoles to show in the menu"
+msgstr "Nº de consolas visuales favoritas mostradas en el menú"
+
+#: ../../godmode/setup/setup_visuals.php:965
+#: ../../include/functions_config.php:1069
+msgid "Default line thickness for the Visual Console"
+msgstr "Grosor de línea por defecto en las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:970
+msgid "Visual consoles configuration"
+msgstr "Configuración de las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:984
+msgid "Number of favorite services to show in the menu"
+msgstr "Número de servicios favoritos a mostrar en el menú"
+
+#: ../../godmode/setup/setup_visuals.php:988
+msgid "Services configuration"
+msgstr "Configuración de servicios"
+
+#: ../../godmode/setup/setup_visuals.php:1126
+msgid "Reports configuration "
+msgstr "Configuración de informes "
+
+#: ../../godmode/setup/setup_visuals.php:1143
+#: ../../include/functions_config.php:1137
+msgid "Custom graphviz directory"
+msgstr "Directorio personalizado graphviz"
+
+#: ../../godmode/setup/setup_visuals.php:1155
+#: ../../include/functions_config.php:1141
+msgid "Networkmap max width"
+msgstr "Máximo ancho de Networkmap"
+
+#: ../../godmode/setup/setup_visuals.php:1206
+msgid "Custom values post process"
+msgstr "Valores personalizados para postprocesado"
+
+#: ../../godmode/setup/setup_visuals.php:1227
+#: ../../godmode/setup/setup_visuals.php:1295
+msgid "Delete custom values"
+msgstr "Eliminar valores personalizados"
+
+#: ../../godmode/setup/setup_visuals.php:1259
+msgid "Interval values"
+msgstr "Valores del intervalo"
+
+#: ../../godmode/setup/setup_visuals.php:1287
+msgid "Module units"
+msgstr "Unidades de módulo"
+
+#: ../../godmode/setup/setup_visuals.php:1340
+msgid "Other configuration"
+msgstr "Otra configuración"
+
+#: ../../godmode/setup/setup_visuals.php:1643
+msgid "Mobile console logo preview"
+msgstr "Vista previa del logo de la consola móvil"
+
+#: ../../godmode/setup/setup_visuals.php:1678
+msgid "Gis icons preview"
+msgstr "Vista previa de los iconos GIS"
+
+#: ../../godmode/setup/setup_visuals.php:1744
+msgid "Status set preview"
+msgstr "Vista previa del estado"
+
+#: ../../godmode/setup/setup_general.php:70
 msgid ""
-"Search by these fields description, OID, Custom Value, SNMP Agent (IP), "
-"Single value, each Variable bindings/Datas."
+"This is an email test sent from Pandora FMS. If you can read this, your "
+"configuration works."
 msgstr ""
-"Búsqueda por estos campos de descripción: OID, Valor personalizado, Agente "
-"SNMP (IP), Valor individual, cada Enlace Variable/Datos."
+"Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido "
+"significa que la configuración funciona."
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1129
-msgid "Alert SNMP control filter"
-msgstr "Filtro de control de alerta SNMP"
+#: ../../godmode/setup/setup_general.php:71
+msgid "Testing Pandora FMS email"
+msgstr "Probando el email de Pandora FMS"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1214
-msgid "There are no SNMP alerts"
-msgstr "Ninguna alerta SNMP definida"
+#: ../../godmode/setup/setup_general.php:109
+#: ../../include/functions_update_manager.php:147
+msgid "Language code"
+msgstr "Codigo de idioma"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1265
-msgid "Custom Value/Enterprise String"
-msgstr "Valor personalizado/Cadena Enterprise"
+#: ../../godmode/setup/setup_general.php:120
+#: ../../include/functions_config.php:165
+msgid "Remote config directory"
+msgstr "Directorio remoto de configuración"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1270
-#: ../../include/functions_treeview.php:444
-#: ../../include/functions_reporting_html.php:4020
-#: ../../include/functions_reporting_html.php:4142
-msgid "Times fired"
-msgstr "Nº de veces disparada"
+#: ../../godmode/setup/setup_general.php:134
+#: ../../include/functions_config.php:181
+msgid "Automatic check for updates"
+msgstr "Comprobación automática de actualizaciones"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1270
-msgid "TF."
-msgstr "TF."
+#: ../../godmode/setup/setup_general.php:137
+msgid "Enforce https Information"
+msgstr "Aplicar la información http"
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1346
-msgid "ID Alert SNMP"
-msgstr "ID alerta SNMP"
+#: ../../godmode/setup/setup_general.php:138
+msgid "If SSL is not properly configured you will lose access to "
+msgstr "Si SSL no está configurado adecuadamente, perderá acceso a "
 
-#: ../../godmode/snmpconsole/snmp_alert.php:1592
-msgid "Add action "
-msgstr "Añadir acción "
+#: ../../godmode/setup/setup_general.php:138
+#: ../../godmode/setup/setup_general.php:263
+msgid " Console"
+msgstr " Consola"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:41
-msgid "Filter overview"
-msgstr "Revisión del filtro"
+#: ../../godmode/setup/setup_general.php:144
+msgid "Use cert of SSL"
+msgstr "Usar el certificado SSL"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:87
-msgid "There was a problem updating the filter"
-msgstr "Error al actualizar el filtro"
+#: ../../godmode/setup/setup_general.php:149
+msgid "Path of SSL Cert."
+msgstr "Ruta del certificado SSL"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:105
-#: ../../godmode/snmpconsole/snmp_filters.php:131
-msgid "Description is empty"
-msgstr "La descripción está vacía"
+#: ../../godmode/setup/setup_general.php:167
+#: ../../include/functions_config.php:209
+msgid "Enable GIS features"
+msgstr "Habilitar funcionalidades GIS"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:108
-msgid "Filter is empty"
-msgstr "El filtro está vacío"
+#: ../../godmode/setup/setup_general.php:170
+#: ../../include/functions_config.php:225
+msgid "Enable Netflow"
+msgstr "Activar Netflow"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:128
-msgid "Filters are empty"
-msgstr "Los filtros están vacíos"
+#: ../../godmode/setup/setup_general.php:178
+#: ../../include/functions_config.php:229
+msgid "Enable Network Traffic Analyzer"
+msgstr "Habilitar el analizador de tráfico de red"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:138
-msgid "There was a problem creating the filter"
-msgstr "Error al crear el filtro"
+#: ../../godmode/setup/setup_general.php:236
+#: ../../include/functions_config.php:240
+msgid "Sound for Alert fired"
+msgstr "Sonido para alertas disparadas"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:157
-msgid "There was a problem deleting the filter"
-msgstr "Error al borrar el filtro"
+#: ../../godmode/setup/setup_general.php:238
+#: ../../godmode/setup/setup_general.php:243
+#: ../../godmode/setup/setup_general.php:248
+msgid "Play sound"
+msgstr "Reproducir sonido"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:200
-#: ../../godmode/snmpconsole/snmp_filters.php:210
-msgid ""
-"This field contains a substring, could be part of a IP address, a numeric "
-"OID, or a plain substring"
+#: ../../godmode/setup/setup_general.php:241
+#: ../../include/functions_config.php:244
+msgid "Sound for Monitor critical"
+msgstr "Sonido para monitores en estado crítico"
+
+#: ../../godmode/setup/setup_general.php:246
+#: ../../include/functions_config.php:248
+msgid "Sound for Monitor warning"
+msgstr "Sonido para monitores en estado de advertencia"
+
+#: ../../godmode/setup/setup_general.php:262
+msgid "Enforce public URL usage information"
+msgstr "Aplicar la información de uso de la URL pública"
+
+#: ../../godmode/setup/setup_general.php:263
+msgid "If public URL is not properly configured you will lose access to "
 msgstr ""
-"Este campo contiene una subcadena que podría ser parte de una dirección IP, "
-"un OID numérico o una subcadena simple."
+"Si la URL pública no está configurada correctamente, perderá acceso a "
 
-#: ../../godmode/snmpconsole/snmp_filters.php:202
-msgid "Click to remove the filter"
-msgstr "Haz clic para quitar el filtro"
+#: ../../godmode/setup/setup_general.php:269
+#: ../../include/functions_config.php:279
+msgid "Referer security"
+msgstr "Seguridad de Referer"
 
-#: ../../godmode/snmpconsole/snmp_filters.php:228
-msgid "Click to add new filter"
-msgstr "Haz clic para añadir filtro nuevo"
+#: ../../godmode/setup/setup_general.php:272
+#: ../../include/functions_config.php:283
+msgid "Event storm protection"
+msgstr "Protección de tormenta de eventos"
 
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:37
-msgid "SNMP Trap generator"
-msgstr "Generador de traps SNMP"
+#: ../../godmode/setup/setup_general.php:279
+#: ../../include/functions_config.php:291
+msgid "Server logs directory"
+msgstr "Directorio de logs del servidor"
 
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:55
-msgid "Empty parameters"
-msgstr "Parámetros vacíos"
+#: ../../godmode/setup/setup_general.php:289
+#: ../../include/functions_config.php:295
+msgid "Log size limit in system logs viewer extension"
+msgstr ""
+"Límite de tamaño de logs en la extensión del visor de logs del sistema"
 
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:61
-msgid "Successfully generated"
-msgstr "Generado correctamente"
+#: ../../godmode/setup/setup_general.php:300
+msgid "Full mode"
+msgstr "Modo total"
 
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:62
+#: ../../godmode/setup/setup_general.php:301
+msgid "On demand"
+msgstr "Por demanda"
+
+#: ../../godmode/setup/setup_general.php:302
+msgid "Expert"
+msgstr "Experta/o"
+
+#: ../../godmode/setup/setup_general.php:304
+#: ../../include/functions_config.php:299
+msgid "Tutorial mode"
+msgstr "Modo tutorial"
+
+#: ../../godmode/setup/setup_general.php:316
+#: ../../include/functions_config.php:303
+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:319
+msgid "Limit for bulk operations"
+msgstr "Límite de operaciones en bloque"
+
+#: ../../godmode/setup/setup_general.php:329
+msgid "Include agents manually disabled"
+msgstr "Incluir agentes deshabilitados manualmente"
+
+#: ../../godmode/setup/setup_general.php:335
+msgid "Set alias as name by default in agent creation"
+msgstr "Poner alias como nombre por defecto en la creación de agente"
+
+#: ../../godmode/setup/setup_general.php:344
+msgid "General options"
+msgstr "Opciones generales"
+
+#: ../../godmode/setup/setup_general.php:361
+msgid "From address"
+msgstr "De"
+
+#: ../../godmode/setup/setup_general.php:367
+msgid "SMTP Server"
+msgstr "Servidor SMTP"
+
+#: ../../godmode/setup/setup_general.php:370
+msgid "SMTP Port"
+msgstr "Puerto SMTP"
+
+#: ../../godmode/setup/setup_general.php:373
+#: ../../include/functions_config.php:347
+msgid "Encryption"
+msgstr "Encriptación"
+
+#: ../../godmode/setup/setup_general.php:374
+#: ../../godmode/reporting/create_container.php:262
+#: ../../godmode/reporting/create_container.php:278
+#: ../../include/ajax/events.php:799 ../../include/ajax/graph.ajax.php:139
+#: ../../include/functions_html.php:1161
+#: ../../operation/events/events_list.php:1592
+#: ../../operation/events/events_list.php:1683
+msgid "none"
+msgstr "ninguno"
+
+#: ../../godmode/setup/setup_general.php:384
+msgid "Email test"
+msgstr "Prueba de email"
+
+#: ../../godmode/setup/setup_general.php:415 ../../general/header.php:784
+msgid "Send"
+msgstr "Enviar"
+
+#: ../../godmode/setup/setup_general.php:417
+msgid "Check mail configuration"
+msgstr "Revisar configuración de correo"
+
+#: ../../godmode/setup/performance.php:172
+msgid "Pandora_db running in active database."
+msgstr "Pandora_db en ejecución en la base de datos activa."
+
+#: ../../godmode/setup/performance.php:173
+#: ../../godmode/setup/performance.php:229
+msgid "Executed:"
+msgstr "Ejectuado:"
+
+#: ../../godmode/setup/performance.php:228
+msgid "Pandora_db running in historical database."
+msgstr "Pandora_db en ejecución en la base de datos de histórico."
+
+#: ../../godmode/setup/performance.php:236
+msgid "not executed"
+msgstr "No ejecutado"
+
+#: ../../godmode/setup/performance.php:262
+#: ../../include/functions_config.php:743
+msgid "Max. days before delete traps"
+msgstr "Nº max. de días antes de borrar traps SNMP"
+
+#: ../../godmode/setup/performance.php:282
+#: ../../godmode/setup/performance.php:480
+#: ../../include/functions_config.php:747
+msgid "Max. days before delete string data"
+msgstr "Nº max. de días antes de borrar datos de tipo texto"
+
+#: ../../godmode/setup/performance.php:292
+#: ../../include/functions_config.php:755
+msgid "Max. days before delete GIS data"
+msgstr "Nº max. de días antes de borrar información GIS"
+
+#: ../../godmode/setup/performance.php:302
+#: ../../godmode/setup/performance.php:440
+#: ../../include/functions_config.php:759
+msgid "Max. days before purge"
+msgstr "Máx. días antes de purga de datos"
+
+#: ../../godmode/setup/performance.php:312
+#: ../../godmode/setup/performance.php:450
+#: ../../include/functions_config.php:767
+msgid "Max. days before compact data"
+msgstr "Máx. días antes de comprimir datos"
+
+#: ../../godmode/setup/performance.php:322
+#: ../../include/functions_config.php:763
+msgid "Max. days before delete unknown modules"
+msgstr "Máximo de días antes de borrar módulos desconocidos"
+
+#: ../../godmode/setup/performance.php:332
+msgid "Max. days before delete autodisabled agents"
+msgstr ""
+"Nº máximo de días antes de la eliminación de los agentes deshabilitados"
+
+#: ../../godmode/setup/performance.php:342
+#: ../../include/functions_config.php:815
+msgid "Retention period of past special days"
+msgstr "Período de retención de días especiales pasados"
+
+#: ../../godmode/setup/performance.php:352
+#: ../../include/functions_config.php:819
+msgid "Max. macro data fields"
+msgstr "Nº máx. de campos de macro de datos"
+
+#: ../../godmode/setup/performance.php:366
+#: ../../include/functions_config.php:824
+msgid "Max. days before delete inventory data"
+msgstr "Nº de días máximo antes del borrado de datos de inventario"
+
+#: ../../godmode/setup/performance.php:415
+msgid "The tconfig table does not exist in the historical database"
+msgstr "La tabla tconfig no existe en la base de datos de histórico"
+
+#: ../../godmode/setup/performance.php:460
+#: ../../godmode/setup/performance.php:541
+#: ../../include/functions_config.php:779
+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:498
+#: ../../include/functions_config.php:829
+msgid "Max. days before delete old messages"
+msgstr "Núm. máx. de días antes de borrar mensajes antiguos"
+
+#: ../../godmode/setup/performance.php:511
+#: ../../include/functions_config.php:833
+msgid "Max. days before delete old network matrix data"
+msgstr "Núm. máx. de días antes de borrar datos de matriz antiguos"
+
+#: ../../godmode/setup/performance.php:531
+msgid "Item limit for realtime reports"
+msgstr "Límite del elemento para informes en tiempo real"
+
+#: ../../godmode/setup/performance.php:554
+msgid "Last day"
+msgstr "Último día"
+
+#: ../../godmode/setup/performance.php:556
+msgid "10 days"
+msgstr "10 días"
+
+#: ../../godmode/setup/performance.php:558
+msgid "2 weeks"
+msgstr "2 semanas"
+
+#: ../../godmode/setup/performance.php:571
+#: ../../include/functions_config.php:787
+msgid "Use realtime statistics"
+msgstr "Usar estadísticas en tiempo real"
+
+#: ../../godmode/setup/performance.php:579
+#: ../../include/functions_config.php:791
+msgid "Batch statistics period (secs)"
+msgstr "Período de las estadísticas programadas (seg.)"
+
+#: ../../godmode/setup/performance.php:592
+#: ../../include/functions_config.php:799
+msgid "Max. recommended number of files in attachment directory"
+msgstr "Max. número de archivos recomendado para el directorio de adjuntos"
+
+#: ../../godmode/setup/performance.php:602
+#: ../../include/functions_config.php:803
+msgid "Delete not init modules"
+msgstr "Borrar módulos no iniciados"
+
+#: ../../godmode/setup/performance.php:605
+msgid "Big Operation Step to purge old data"
+msgstr "Gran operación para la purga de datos antiguos"
+
+#: ../../godmode/setup/performance.php:615
+#: ../../include/functions_config.php:811
+msgid "Small Operation Step to purge old data"
+msgstr "Operación menor para la purga de datos antiguos"
+
+#: ../../godmode/setup/performance.php:625
+#: ../../include/functions_config.php:837
+msgid "Graph container - Max. Items"
+msgstr "Contenedor de gráficas - Máx. elementos"
+
+#: ../../godmode/setup/performance.php:648
+msgid "Database maintenance status"
+msgstr "Estado de mantenimiento de la base de datos"
+
+#: ../../godmode/setup/performance.php:653
+msgid "Database maintenance options"
+msgstr "Opciones de mantenimiento de la base de datos"
+
+#: ../../godmode/setup/performance.php:659
+msgid "Historical database maintenance options"
+msgstr "Opciones de mantenimiento de la base de datos de histórico"
+
+#: ../../godmode/setup/performance.php:665
+#: ../../include/functions_network.php:242
+#: ../../include/functions_visual_map.php:2873
+#: ../../include/functions_netflow.php:1819
+#: ../../operation/network/network_report.php:344
+msgid "Others"
+msgstr "Otros"
+
+#: ../../godmode/setup/file_manager.php:67 ../../godmode/servers/plugin.php:238
+#: ../../include/functions_filemanager.php:598
+#: ../../include/functions_filemanager.php:603
 #, php-format
-msgid "Could not be generated: %s"
-msgstr "No se pudo generar: %s"
+msgid "Index of %s"
+msgstr "Índice de %s"
 
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:72
-msgid "Host address"
-msgstr "Dirección del host"
+#: ../../godmode/reporting/visual_console_builder.data.php:94
+msgid "Create visual console"
+msgstr "Crear consola visual"
 
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:122
-msgid "SNMP Type"
-msgstr "Tipo de SNMP"
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid ""
+"Use [ or ( as first character, for example '[*] Map name', to render this "
+"map name in main menu"
+msgstr ""
+"Usa [ o ( como primer carácter. Por ejemplo \"[*] Nombre de mapa\", para "
+"renderizar este nombre de mapa en el menú principal."
 
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:155
-msgid "Generate trap"
-msgstr "Generar trap"
+#: ../../godmode/reporting/visual_console_builder.data.php:160
+#: ../../godmode/reporting/visual_console_builder.elements.php:144
+#: ../../include/functions_visual_map_editor.php:55
+#: ../../include/functions_visual_map_editor.php:564
+#: ../../include/lib/Dashboard/Widget.php:508
+msgid "Background"
+msgstr "Imagen de fondo"
 
-#: ../../godmode/tag/edit_tag.php:51 ../../godmode/tag/edit_tag.php:62
-#: ../../godmode/tag/tag.php:113
+#: ../../godmode/reporting/visual_console_builder.data.php:170
+msgid "Background image"
+msgstr "Imagen de fondo"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:172
+#: ../../include/functions_visual_map_editor.php:325
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:450
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:511
+msgid "Background color"
+msgstr "Color de fondo"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:202
+msgid "Layout size"
+msgstr "Tamaño del diseño"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:205
+msgid "Set custom size"
+msgstr "Especificar tamaño personalizado"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:211
+msgid "Get default image size"
+msgstr "Establecer el tamaño de imagen por defecto"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:213
+msgid "Favourite visual console"
+msgstr "Consola visual favorita"
+
+#: ../../godmode/reporting/visual_console_builder.php:185
+msgid "This file isn't image"
+msgstr "El archivo no es una imagen."
+
+#: ../../godmode/reporting/visual_console_builder.php:188
+msgid "This file isn't image."
+msgstr "El archivo no es una imagen."
+
+#: ../../godmode/reporting/visual_console_builder.php:194
+#: ../../godmode/reporting/visual_console_builder.php:197
+msgid "File already are exists."
+msgstr "El archivo ya existe."
+
+#: ../../godmode/reporting/visual_console_builder.php:205
+#: ../../godmode/reporting/visual_console_builder.php:208
+msgid "The file have not image extension."
+msgstr "El archivo no tiene una extensión válida."
+
+#: ../../godmode/reporting/visual_console_builder.php:220
+#: ../../godmode/reporting/visual_console_builder.php:223
+#: ../../godmode/reporting/visual_console_builder.php:233
+#: ../../godmode/reporting/visual_console_builder.php:239
+msgid "Problems with move file to target."
+msgstr "Error al mover el archivo al objetivo"
+
+#: ../../godmode/reporting/visual_console_builder.php:270
+msgid "Successfully update."
+msgstr "Actualizado correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:286
+msgid "Could not be update."
+msgstr "No se puede actualizar"
+
+#: ../../godmode/reporting/visual_console_builder.php:303
+msgid "Successfully created."
+msgstr "Creado correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:319
+msgid "Could not be created."
+msgstr "No se pudo crear"
+
+#: ../../godmode/reporting/visual_console_builder.php:366
+msgid "Successfully multiple delete."
+msgstr "Supresión múltiple realizada correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:367
+msgid "Unsuccessful multiple delete."
+msgstr "Error de supresión múltiple"
+
+#: ../../godmode/reporting/visual_console_builder.php:469
+msgid "Successfully delete."
+msgstr "Borrado satisfactoriamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:778
+#: ../../operation/visual_console/pure_ajax.php:148
+#: ../../operation/visual_console/view.php:161
+#: ../../operation/visual_console/legacy_view.php:151
+msgid "Services wizard"
+msgstr "Asistente de servicios"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:389
+msgid "Name or Description"
+msgstr "Nombre o descripción"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:409
+#: ../../include/functions_graph.php:1377
+msgid "No items."
+msgstr "Sin elementos"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:605
+#: ../../godmode/reporting/reporting_builder.list_items.php:609
+#: ../../godmode/reporting/graph_builder.graph_editor.php:270
+#: ../../godmode/reporting/graph_builder.graph_editor.php:274
+msgid "Sort items"
+msgstr "Ordenar elementos"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:612
+msgid "Sort selected items from position: "
+msgstr "Ordenar elementos desde posición: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:615
+msgid "Move before to"
+msgstr "Mover antes de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:616
+msgid "Move after to"
+msgstr "Mover después de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:656
+#: ../../godmode/reporting/reporting_builder.list_items.php:660
+msgid "Delete items"
+msgstr "Borrar elementos"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:663
+msgid "Delete selected items from position: "
+msgstr "Borrar los elementos seleccionados desde la posición: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:666
+msgid "Delete above to"
+msgstr "Borrar lo que está encima de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:667
+msgid "Delete below to"
+msgstr "Borrar lo que está debajo de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:723
+msgid ""
+"Are you sure to sort the items into the report?\\n. This action change the "
+"sorting of items into data base."
+msgstr ""
+"¿Está seguro de que quiere clasificar los elementos en el informe?\\n. Esta "
+"acción podría cambiar la clasificación de los elementos en la base de datos."
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:743
+#: ../../godmode/reporting/graph_builder.graph_editor.php:450
+msgid "Please select any item to order"
+msgstr "Por favor, selecciona cualquier elemento para ordenar."
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:773
+msgid "Are you sure to delete the items into the report?\\n"
+msgstr "¿Estás seguro de que quieres borrar los elementos en el informe?\\n"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:800
+msgid "Please select any item to delete"
+msgstr "Por favor, selecciona cualquier elemento para borrarlo."
+
+#: ../../godmode/reporting/create_container.php:181
+#: ../../godmode/reporting/graph_container.php:84
+msgid "Create container"
+msgstr "Crear contenedor"
+
+#: ../../godmode/reporting/create_container.php:190
+msgid "Container stored successfully"
+msgstr "Contenedor guardado correctamente"
+
+#: ../../godmode/reporting/create_container.php:190
+msgid "There was a problem storing container"
+msgstr "Hubo un problema al guardar el contenedor"
+
+#: ../../godmode/reporting/create_container.php:194
+msgid "Update the container"
+msgstr "Actualizar contenedor"
+
+#: ../../godmode/reporting/create_container.php:194
+msgid "Bad update the container"
+msgstr "Mala actualización del contenedor"
+
+#: ../../godmode/reporting/create_container.php:255
+msgid "Parent container"
+msgstr "Contenedor padre"
+
+#: ../../godmode/reporting/create_container.php:313
+#: ../../include/functions.php:2529
+msgid "custom"
+msgstr "personalizado"
+
+#: ../../godmode/reporting/create_container.php:315
+#: ../../godmode/reporting/create_container.php:316
+#: ../../godmode/reporting/create_container.php:317
+#: ../../include/functions.php:2541 ../../include/functions.php:2542
+#: ../../include/ajax/graph.ajax.php:141 ../../include/ajax/graph.ajax.php:142
+#: ../../include/ajax/graph.ajax.php:143
+#, php-format
+msgid "%s hours"
+msgstr "%s horas"
+
+#: ../../godmode/reporting/create_container.php:319
+#: ../../godmode/reporting/create_container.php:320
+#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/graph.ajax.php:146
+#, php-format
+msgid "%s days"
+msgstr "%s días"
+
+#: ../../godmode/reporting/create_container.php:321
+#: ../../include/functions.php:2544 ../../include/ajax/module.php:169
+#: ../../include/ajax/graph.ajax.php:147
+msgid "1 week"
+msgstr "1 semana"
+
+#: ../../godmode/reporting/create_container.php:323
+#: ../../include/functions.php:2546 ../../include/ajax/module.php:171
+#: ../../include/ajax/graph.ajax.php:149
+msgid "1 month"
+msgstr "1 mes"
+
+#: ../../godmode/reporting/create_container.php:333
+#: ../../godmode/reporting/create_container.php:442
+#: ../../godmode/reporting/create_container.php:496
+msgid ""
+"This is the interval or period of time with which the graph data will be "
+"obtained. For example, a week means data from a week ago from now. "
+msgstr ""
+"Este es el intervalo o período de tiempo en el que se obtendrán los datos de "
+"la gráfica. Por ejemplo, una semana significa que habrá datos desde hace una "
+"semana hasta ahora. "
+
+#: ../../godmode/reporting/create_container.php:396
+#: ../../godmode/reporting/create_container.php:551
+#: ../../godmode/reporting/graph_builder.main.php:145
+#: ../../include/functions_visual_map_editor.php:498
+msgid "Type of graph"
+msgstr "Tipo de gráfica"
+
+#: ../../godmode/reporting/create_container.php:405
+#: ../../godmode/reporting/create_container.php:462
+#: ../../godmode/reporting/create_container.php:557
+#: ../../godmode/reporting/graph_builder.main.php:177
+#: ../../operation/agentes/stat_win.php:367
+#: ../../operation/agentes/interface_traffic_graph_win.php:222
+msgid "Show full scale graph (TIP)"
+msgstr "Mostrar gráfica a escala completa (TIP)"
+
+#: ../../godmode/reporting/create_container.php:416
+#: ../../godmode/reporting/create_container.php:469
+#: ../../godmode/reporting/create_container.php:564
+msgid "Add item"
+msgstr "Añadir elemento"
+
+#: ../../godmode/reporting/create_container.php:580
+msgid "There are no defined item container"
+msgstr "No hay un contenedor de elementos definido"
+
+#: ../../godmode/reporting/create_container.php:589
+msgid "Agent/Module"
+msgstr "Agente/módulo"
+
+#: ../../godmode/reporting/create_container.php:592
+msgid "M.Group"
+msgstr "M.Grupo"
+
+#: ../../godmode/reporting/map_builder.php:270
+#: ../../godmode/reporting/map_builder.php:278
+msgid "Not copied. Error copying data"
+msgstr "Se ha producido un error al copiar los datos."
+
+#: ../../godmode/reporting/map_builder.php:319
+#: ../../godmode/reporting/visual_console_favorite.php:135
+msgid "Group Recursion"
+msgstr "Recursividad de grupo"
+
+#: ../../godmode/reporting/map_builder.php:335
+msgid "Map name"
+msgstr "Nombre del mapa"
+
+#: ../../godmode/reporting/map_builder.php:337
+msgid "Items"
+msgstr "Elementos"
+
+#: ../../godmode/reporting/map_builder.php:413
+#: ../../general/first_task/map_builder.php:23
+msgid "There are no visual console defined yet."
+msgstr "No hay consola visual definida todavía"
+
+#: ../../godmode/reporting/graph_builder.php:257
+#: ../../operation/reporting/graph_viewer.php:160
+msgid "Graph editor"
+msgstr "Editor de gráficas"
+
+#: ../../godmode/reporting/graph_builder.php:261
+#: ../../operation/reporting/graph_viewer.php:168
+msgid "View graph"
+msgstr "Ver gráfica"
+
+#: ../../godmode/reporting/graph_builder.php:273
+msgid "Graph builder"
+msgstr "Creador de gráficos"
+
+#: ../../godmode/reporting/graph_builder.php:307
+msgid "Graph stored successfully"
+msgstr "Gráfica almacenada correctamente"
+
+#: ../../godmode/reporting/graph_builder.php:307
+msgid "There was a problem storing Graph"
+msgstr "Error al almacenar el gráfico"
+
+#: ../../godmode/reporting/graph_builder.php:311
+msgid "There was a problem adding Module"
+msgstr "Ha surgido un problema al añadir el módulo."
+
+#: ../../godmode/reporting/graph_builder.php:315
+msgid "Update the graph"
+msgstr "Actualizar el gráfico"
+
+#: ../../godmode/reporting/graph_builder.php:315
+msgid "Bad update the graph"
+msgstr "No se pudo actualizar el gráfico."
+
+#: ../../godmode/reporting/graph_builder.php:319
+msgid "Graph deleted successfully"
+msgstr "Gráfico borrado correctamente"
+
+#: ../../godmode/reporting/graph_builder.php:319
+msgid "There was a problem deleting Graph"
+msgstr "Ha surgido un problema al borrar el gráfico."
+
+#: ../../godmode/reporting/graphs.php:77
+msgid "Graphs containers"
+msgstr "Contenedores de gráficos"
+
+#: ../../godmode/reporting/graphs.php:172
+#: ../../godmode/reporting/reporting_builder.php:665
+msgid "Free text for search: "
+msgstr "Texto libre de búsqueda "
+
+#: ../../godmode/reporting/graphs.php:173
+#: ../../godmode/reporting/reporting_builder.php:667
+msgid "Search by report name or description, list matches."
+msgstr ""
+"Búsqueda por nombre del informe o descripción, lista de coincidencias"
+
+#: ../../godmode/reporting/graphs.php:185
+#: ../../godmode/reporting/reporting_builder.php:693
+msgid "Show Option"
+msgstr "Mostrar opciones"
+
+#: ../../godmode/reporting/graphs.php:263
+#: ../../include/functions_container.php:147
+#: ../../operation/search_graphs.php:29
+#: ../../operation/reporting/graph_viewer.php:376
+msgid "Graph name"
+msgstr "Nombre del gráfico"
+
+#: ../../godmode/reporting/graphs.php:265
+#: ../../include/functions_container.php:149
+msgid "Number of Graphs"
+msgstr "Número de gráficos"
+
+#: ../../godmode/reporting/graphs.php:334
+msgid "Create graph"
+msgstr "Crear gráfico"
+
+#: ../../godmode/reporting/visual_console_favorite.php:167
+msgid "No favourite consoles defined"
+msgstr "No hay consolas favoritas"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:277
+msgid "Sort selected items"
+msgstr "Ordenar elementos seleccionados"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:280
+msgid "before to"
+msgstr "antes de"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:281
+msgid "after to"
+msgstr "después de"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:808
+msgid "Not valid"
+msgstr "No válido"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:816
+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:918
+msgid "Local metaconsole"
+msgstr "Metaconsola local"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:966
+msgid "Log number"
+msgstr "Número de logs"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:968
+msgid ""
+"Warning: this parameter limits the contents of the logs and affects the "
+"performance."
+msgstr ""
+"Advertencia: este parámetro limita los contenidos de los logs y afecta al "
+"rendimiento."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:984
+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:1028
+#: ../../operation/netflow/nf_live_view.php:295
+#: ../../operation/incidents/integriaims_export_csv.php:92
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:374
+#: ../../operation/incidents/list_integriaims_incidents.php:155
+msgid "Resolution"
+msgstr "Resolución"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1524
+msgid "Show modules"
+msgstr "Mostrar módulos"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1776
+msgid "Target server"
+msgstr "Servidor Target"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2064
+msgid "This option may cause performance issues."
+msgstr "Esta opción puede causar problemas de rendimiento."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2098
+msgid "Greater or equal (>=)"
+msgstr "Mayor o igual (>=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2099
+msgid "Less or equal (<=)"
+msgstr "Menor o igual (<=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2100
+msgid "Less (<)"
+msgstr "Menor a (<)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2101
+msgid "Greater (>)"
+msgstr "Mayor a (>)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2102
+msgid "Equal (=)"
+msgstr "Igual a (=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2103
+msgid "Not equal (!=)"
+msgstr "No igual a (!=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2220
+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:2414
+msgid "Include extended events"
+msgstr "Incluir eventos ampliados"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2478
+msgid ""
+"With the token enabled the query will affect the Historical Database, which "
+"may mean a small drop in performance."
+msgstr ""
+"Con el token habilitado, la consulta afectará a la base de datos de "
+"histórico, que puede acarrear una bajada del rendimiento."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2667
+msgid ""
+"Lapses of time in which the period is divided to make more precise "
+"calculations\n"
+msgstr ""
+"Tiempos en los que el período se divide para hacer cálculos más precisos.\n"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2864
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3290
+msgid "Agent Failover"
+msgstr "Conmutación de agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2869
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3293
+msgid "Module Failover"
+msgstr "Conmutación de módulo"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2909
+msgid "Please save the SLA for start to add items in this list."
+msgstr ""
+"Por favor, guarda primero el SLA antes de intentar añadir elementos al mismo."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3266
+msgid "rate"
+msgstr "tasa"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3314
+msgid ""
+"Please be careful, when the module have diferent intervals in their life, "
+"the summatory maybe get bad result."
+msgstr ""
+"Por favor, ten en cuenta que cuando el módulo tiene diferentes intervalos a "
+"lo largo de su historia, el sumatorio puede obtener resultados incorrectos."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3334
+msgid "Please save the report to start adding items into the list."
+msgstr ""
+"Por favor, guarda el informe para empezar a añadir elementos a la lista."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3597
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3601
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3605
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3609
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3613
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3617
+msgid "Item Editor Information"
+msgstr "Información de editor de elemento"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3598
+msgid "Please select a name."
+msgstr "Seleccione un nombre."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3602
+msgid "Please select an agent."
+msgstr "Seleccione un agente."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3610
+msgid "Please insert a SQL query."
+msgstr "Inserte una consulta SQL."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3614
+msgid "Please insert a URL."
+msgstr "Inserte una URL."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3618
+msgid "Please checked a custom interval option."
+msgstr "Compruebe la opción de intervalo personalizado"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:106
+msgid "Width x Height
Max value" +msgstr "Ancho x Alto
Valor máximo" + +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "Mapa enlazado" + +#: ../../godmode/reporting/visual_console_builder.elements.php:182 +msgid "Percentile Bar" +msgstr "Barra de percentil" + +#: ../../godmode/reporting/visual_console_builder.elements.php:190 +msgid "Percentile Bubble" +msgstr "Burbuja percentil" + +#: ../../godmode/reporting/visual_console_builder.elements.php:198 +#: ../../mobile/operation/events.php:549 +#: ../../include/functions_visual_map_editor.php:1299 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:542 +#: ../../operation/visual_console/view.php:225 +msgid "Module Graph" +msgstr "Gráfico de módulo" + +#: ../../godmode/reporting/visual_console_builder.elements.php:206 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:1302 +#: ../../include/functions_visual_map.php:4180 +#: ../../operation/visual_console/view.php:240 +msgid "Event history graph" +msgstr "Gráfica de histórico de eventos" + +#: ../../godmode/reporting/visual_console_builder.elements.php:214 +#: ../../include/functions_visual_map_editor.php:1303 +#: ../../include/functions_visual_map.php:4205 +#: ../../include/rest-api/models/VisualConsole/Item.php:2013 +#: ../../operation/visual_console/view.php:245 +msgid "Simple Value" +msgstr "Valor simple" + +#: ../../godmode/reporting/visual_console_builder.elements.php:222 +msgid "Simple Value (Process Max)" +msgstr "Valor simple (máximo)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:230 +msgid "Simple Value (Process Min)" +msgstr "Valor simple (mínimo)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:238 +msgid "Simple Value (Process Avg)" +msgstr "Valor simple (media)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:262 +#: ../../include/functions_visual_map_editor.php:71 +#: ../../include/functions_visual_map_editor.php:1308 +#: ../../include/functions_visual_map.php:4160 +#: ../../operation/visual_console/view.php:270 +msgid "Box" +msgstr "Caja" + +#: ../../godmode/reporting/visual_console_builder.elements.php:286 +#: ../../include/functions_visual_map_editor.php:73 +#: ../../include/functions_visual_map_editor.php:1310 +#: ../../include/functions_visual_map.php:4220 +#: ../../include/rest-api/models/VisualConsole/Item.php:2025 +#: ../../operation/visual_console/view.php:280 +msgid "Color cloud" +msgstr "Nube de color" + +#: ../../godmode/reporting/visual_console_builder.elements.php:312 +#: ../../godmode/reporting/visual_console_builder.elements.php:758 +msgid "Edit label" +msgstr "Editar etiqueta" + +#: ../../godmode/reporting/reporting_builder.main.php:130 +msgid "Only the group can view the report" +msgstr "Solo el grupo puede ver el informe." + +#: ../../godmode/reporting/reporting_builder.main.php:131 +msgid "The next group can edit the report" +msgstr "El siguiente grupo puede editar el informe." + +#: ../../godmode/reporting/reporting_builder.main.php:132 +msgid "Only the user and admin user can edit the report" +msgstr "Solo el usuario y el usuario administrador pueden editar el informe." + +#: ../../godmode/reporting/reporting_builder.main.php:134 +msgid "Write Access" +msgstr "Permisos de escritura" + +#: ../../godmode/reporting/reporting_builder.main.php:134 +msgid "" +"For example, you want a report that the people of \"All\" groups can see but " +"you want to edit only for you or your group." +msgstr "" +"Por ejemplo, quieres un informe que las personas de \"Todos\" los grupos " +"pueden ver, pero quieres que solo tú o tu grupo podáis editarlo." + +#: ../../godmode/reporting/reporting_builder.main.php:171 +msgid "Non interactive report" +msgstr "Informe no interactivo" + +#: ../../godmode/reporting/reporting_builder.php:185 +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:186 +msgid "An error has ocurred" +msgstr "Ha ocurrido un error" + +#: ../../godmode/reporting/reporting_builder.php:495 +#: ../../godmode/reporting/reporting_builder.php:3001 +#: ../../godmode/reporting/reporting_builder.php:3072 +#: ../../godmode/reporting/reporting_builder.php:3110 +msgid "Reports list" +msgstr "Lista de informes" + +#: ../../godmode/reporting/reporting_builder.php:508 +#: ../../godmode/reporting/reporting_builder.php:540 +#: ../../godmode/reporting/reporting_builder.php:3012 +#: ../../operation/menu.php:334 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "Informes personalizados" + +#: ../../godmode/reporting/reporting_builder.php:925 +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:1136 +msgid "Create report" +msgstr "Crear informe" + +#: ../../godmode/reporting/reporting_builder.php:3097 +#: ../../operation/reporting/reporting_viewer.php:109 +msgid "View report" +msgstr "Ver informe" + +#: ../../godmode/reporting/reporting_builder.php:3113 +msgid "Create Custom Report" +msgstr "Crear informa personalizado" + +#: ../../godmode/reporting/reporting_builder.php:3165 +msgid "Unsuccessful action

" +msgstr "Acción fallida

" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 +msgid "Static Graph" +msgstr "Gráfico estático" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1298 +#: ../../operation/visual_console/view.php:220 +msgid "Percentile Item" +msgstr "Elemento percentil" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:129 +#: ../../mobile/operation/home.php:98 +#: ../../include/functions_visual_map_editor.php:363 +#: ../../include/functions_visual_map.php:4165 +#: ../../include/rest-api/models/VisualConsole/Item.php:1981 +msgid "Module graph" +msgstr "Gráfico de módulo" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 +msgid "Simple value" +msgstr "Valor simple" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "Rango entre elementos (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "Tamaño (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:248 +#: ../../include/functions_config.php:933 +msgid "Font size" +msgstr "Tamaño de fuente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:279 +#: ../../include/functions_visual_map_editor.php:547 +msgid "Min value" +msgstr "Valor mínimo" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:280 +#: ../../godmode/reporting/visual_console_builder.wizard.php:298 +#: ../../include/functions_visual_map_editor.php:548 +#: ../../include/functions_visual_map_editor.php:614 +msgid "Max value" +msgstr "Valor máx." + +#: ../../godmode/reporting/visual_console_builder.wizard.php:281 +#: ../../include/functions_visual_map_editor.php:549 +msgid "Avg value" +msgstr "Valor medio" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:293 +msgid "Width (px)" +msgstr "Ancho (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:315 +#: ../../include/functions_visual_map_editor.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:453 +msgid "Bubble" +msgstr "Burbuja" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:327 +#: ../../include/functions_visual_map_editor.php:643 +#: ../../include/functions_visual_map_editor.php:661 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:503 +msgid "Value to show" +msgstr "Valor para mostrar" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:329 +#: ../../include/functions_visual_map_editor.php:624 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:498 +msgid "Percent" +msgstr "Porcentaje" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:398 +msgid "One item per agent" +msgstr "Un elemento por agente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/reporting/visual_console_builder.wizard.php:785 +msgid "Agent - Module" +msgstr "Agente-Módulo" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +msgid "Enable link agent" +msgstr "Habilitar el enlace del agente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:496 +msgid "Set Parent" +msgstr "Establecer padre" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:499 +msgid "Item created in the visualmap" +msgstr "Elemento creado en el mapa visual" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:500 +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:509 +msgid "Item in the map" +msgstr "Elemento en el mapa" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "Las relaciones de jerarquía de %s se muestran en el mapa." + +#: ../../godmode/reporting/visual_console_builder.wizard.php:530 +#: ../../godmode/reporting/visual_console_builder.wizard.php:534 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "" +"¿Estás seguro de que quieres añadir tantos elementos en la consola visual?" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:706 +msgid "Please select any module or modules." +msgstr "Por favor, selecciona cualquier módulo o módulos." + +#: ../../godmode/reporting/visual_console_builder.editor.php:162 +msgid "Min allowed size is 1024x768" +msgstr "El tamaño mínimo permitido es 1024x768" + +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +#: ../../godmode/reporting/visual_console_builder.editor.php:168 +#: ../../godmode/reporting/visual_console_builder.editor.php:170 +#: ../../operation/snmpconsole/snmp_browser.php:208 +msgid "Action in progress" +msgstr "Acción en curso" + +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +msgid "Loading in progress" +msgstr "Cargando" + +#: ../../godmode/reporting/visual_console_builder.editor.php:168 +msgid "Saving in progress" +msgstr "Guardando" + +#: ../../godmode/reporting/visual_console_builder.editor.php:170 +msgid "Deletion in progress" +msgstr "Eliminando" + +#: ../../godmode/reporting/graph_builder.main.php:155 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:265 +#: ../../operation/reporting/graph_viewer.php:269 +msgid "Bullet chart" +msgstr "Gráfico de puntos" + +#: ../../godmode/reporting/graph_builder.main.php:156 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:266 +#: ../../operation/reporting/graph_viewer.php:270 +msgid "Gauge" +msgstr "Calibrador" + +#: ../../godmode/reporting/graph_builder.main.php:159 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:269 +#: ../../operation/reporting/graph_viewer.php:273 +msgid "Pie" +msgstr "Gráfico circular" + +#: ../../godmode/reporting/graph_builder.main.php:167 +#: ../../operation/reporting/graph_viewer.php:278 +msgid "Equalize maximum thresholds" +msgstr "Igualar umbrales máximos" + +#: ../../godmode/reporting/graph_builder.main.php:170 +msgid "Add summatory series" +msgstr "Añadir series sumatorias" + +#: ../../godmode/reporting/graph_builder.main.php:172 +msgid "Add average series" +msgstr "Añadir series de promedios" + +#: ../../godmode/reporting/graph_builder.main.php:174 +msgid "Modules and series" +msgstr "Módulos y series" + +#: ../../godmode/events/event_responses.editor.php:63 +msgid "Edit event responses" +msgstr "Editar respuestas de eventos" + +#: ../../godmode/events/event_responses.editor.php:105 +msgid "For Command type Modal Window mode is enforced" +msgstr "Para tipo comando, se aplica el modo ventana modal" + +#: ../../godmode/events/event_responses.editor.php:107 +msgid "Modal window" +msgstr "Ventana modal" + +#: ../../godmode/events/event_responses.editor.php:108 +msgid "New window" +msgstr "Nueva ventana" + +#: ../../godmode/events/event_responses.editor.php:180 +msgid "Command timeout (s)" +msgstr "Límite(s) de tiempo del comando" + +#: ../../godmode/events/event_edit_filter.php:221 +msgid "Update Filter" +msgstr "Actualizar el filtro" + +#: ../../godmode/events/event_edit_filter.php:223 +msgid "Create Filter" +msgstr "Crear filtro" + +#: ../../godmode/events/event_edit_filter.php:233 +#: ../../include/ajax/custom_fields.php:561 +#: ../../include/ajax/custom_fields.php:608 +#: ../../include/ajax/custom_fields.php:652 ../../include/ajax/events.php:556 +#: ../../operation/events/events_list.php:421 +msgid "Filter name" +msgstr "Nombre del filtro" + +#: ../../godmode/events/event_edit_filter.php:236 +msgid "Save in group" +msgstr "Guardar en grupo" + +#: ../../godmode/events/event_edit_filter.php:236 +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:380 +msgid "Choose between the users who have validated an event. " +msgstr "Escoge entre los usuarios que tienen validado un evento. " + +#: ../../godmode/events/event_edit_filter.php:403 +#: ../../operation/events/events_list.php:970 +#: ../../operation/events/events.php:936 ../../operation/events/events.php:1440 +msgid "Group events" +msgstr "Eventos agrupados" + +#: ../../godmode/events/event_edit_filter.php:568 +#: ../../operation/events/events_list.php:826 +#: ../../operation/events/events.php:1104 +msgid "Filter alert events" +msgstr "Filtrar eventos de alertas" + +#: ../../godmode/events/event_edit_filter.php:569 +#: ../../operation/events/events_list.php:827 +#: ../../operation/events/events.php:1105 +msgid "Only alert events" +msgstr "Solo eventos de alertas" + +#: ../../godmode/events/event_edit_filter.php:596 +#: ../../include/functions_events.php:6100 +#: ../../operation/events/events_list.php:987 +#: ../../operation/events/events.php:1012 +#: ../../operation/events/events.build_table.php:303 +msgid "Extra ID" +msgstr "ID extra" + +#: ../../godmode/events/event_edit_filter.php:603 +msgid "Id souce event" +msgstr "Evento de origen de ID" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "No se encontraron respuestas" + +#: ../../godmode/events/event_responses.list.php:73 +msgid "Create response" +msgstr "Crear respuesta" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "Cargar los archivos de eventos previos" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "Se cargarán los archivos de eventos. ¿Deseas continuar?" + +#: ../../godmode/events/custom_events.php:94 +#: ../../include/functions_events.php:226 +msgid "Event Id" +msgstr "Id de evento" + +#: ../../godmode/events/custom_events.php:95 +#: ../../mobile/operation/events.php:124 ../../include/functions_events.php:229 +#: ../../include/functions_events.php:6019 +#: ../../operation/events/events.build_table.php:172 +msgid "Event Name" +msgstr "Nombre del evento" + +#: ../../godmode/events/custom_events.php:96 +#: ../../include/functions_events.php:232 +#: ../../operation/events/events.php:1614 +msgid "Agent ID" +msgstr "ID de agente" + +#: ../../godmode/events/custom_events.php:97 +msgid "Agent Name" +msgstr "Nombre de agente" + +#: ../../godmode/events/custom_events.php:102 +#: ../../include/functions_events.php:253 +#: ../../operation/events/events.build_table.php:232 +msgid "Event Type" +msgstr "Tipo de evento" + +#: ../../godmode/events/custom_events.php:103 +#: ../../include/class/ModuleTemplates.class.php:1112 +#: ../../include/class/AgentWizard.class.php:439 +#: ../../include/functions_events.php:256 +#: ../../operation/events/events.build_table.php:243 +msgid "Module Name" +msgstr "Nombre del módulo" + +#: ../../godmode/events/custom_events.php:109 +#: ../../include/functions_events.php:274 +msgid "Extra Id" +msgstr "ID extra" + +#: ../../godmode/events/custom_events.php:113 +#: ../../include/functions_events.php:286 +msgid "Server Name" +msgstr "Nombre del servidor" + +#: ../../godmode/events/custom_events.php:116 +#: ../../include/functions_events.php:301 +msgid "Severity mini" +msgstr "Prioridad baja" + +#: ../../godmode/events/event_responses.php:50 +msgid "Response added succesfully" +msgstr "Respuesta añadida correctamente" + +#: ../../godmode/events/event_responses.php:52 +msgid "Response cannot be added" +msgstr "La respuesta no se puede añadir." + +#: ../../godmode/events/event_responses.php:75 +msgid "Response updated succesfully" +msgstr "Repuesta actualizada correctamente" + +#: ../../godmode/events/event_responses.php:77 +msgid "Response cannot be updated" +msgstr "La respuesta no se puede actualizar." + +#: ../../godmode/events/event_responses.php:87 +msgid "Response deleted succesfully" +msgstr "Respuesta eliminada correctamente" + +#: ../../godmode/events/event_responses.php:89 +msgid "Response cannot be deleted" +msgstr "La respuesta no se puede eliminar." + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "Net Scan" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "NetScan personalizado" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "Administrar guiones de NetScan" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "Mimetype no válido para el archivo CSV: %s" + +#: ../../godmode/wizards/HostDevices.class.php:342 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "Lector de contenido del archivo CSV no válido: %s" + +#: ../../godmode/wizards/HostDevices.class.php:385 +msgid "" +"This network scan task has been already defined. Please edit it or create a " +"new one." +msgstr "" +"Esta tarea de escaneo de red ya ha sido definida, Edítela o cree una nueva." + +#: ../../godmode/wizards/HostDevices.class.php:427 +msgid "You must provide a valid network." +msgstr "Añada una red válida." + +#: ../../godmode/wizards/HostDevices.class.php:477 +#: ../../godmode/wizards/HostDevices.class.php:589 +#: ../../include/class/CustomNetScan.class.php:221 +msgid "Failed to find network scan task." +msgstr "No se ha encontrado tarea de escaneo de red." + +#: ../../godmode/wizards/HostDevices.class.php:694 +#, php-format +msgid "\"%s\" features" +msgstr "Funcionalidades \"%s\"" + +#: ../../godmode/wizards/HostDevices.class.php:724 +#: ../../include/class/CustomNetScan.class.php:402 +msgid "Internal error, please re-run this wizard." +msgstr "Error interno, vuelva a ejecutar el asistente." + +#: ../../godmode/wizards/HostDevices.class.php:809 +#: ../../include/class/CustomNetScan.class.php:543 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos." + +#: ../../godmode/wizards/HostDevices.class.php:864 +msgid "Use CSV file definition" +msgstr "Usar definición del archivo CSV" + +#: ../../godmode/wizards/HostDevices.class.php:865 +msgid "Define targets using csv o network definition." +msgstr "Definir objetivos utilizando la definición de CSV o red." + +#: ../../godmode/wizards/HostDevices.class.php:883 +msgid "Networks (csv)" +msgstr "Redes (CSV)" + +#: ../../godmode/wizards/HostDevices.class.php:884 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK " +"format. For instance: 192.168.1.1/32" +msgstr "" +"Puede subir un archivo CSV. Cada línea debe contener una red en formato " +"IP/MASK. Por ejemplo: 192.168.1.1/32" + +#: ../../godmode/wizards/HostDevices.class.php:896 +msgid "Networks (current)" +msgstr "Redes (actual)" + +#: ../../godmode/wizards/HostDevices.class.php:897 +msgid "Plese upload a new file to overwrite this content." +msgstr "Añada un archivo nuevo para sobrescribir este contenido." + +#: ../../godmode/wizards/HostDevices.class.php:913 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "" +"Puedes especificar varias redes, separadas por comas, por ejemplo: " +"192.168.50.0/24,192.168.60.0/24" + +#: ../../godmode/wizards/HostDevices.class.php:1044 +msgid "Filter by opened ports" +msgstr "Filtrar por puertos abiertos" + +#: ../../godmode/wizards/HostDevices.class.php:1046 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) " +"is open." +msgstr "" +"Los objetivos se escanearán si al menos uno de los puertos definidos " +"(separados por comas) está abierto." + +#: ../../godmode/wizards/HostDevices.class.php:1059 +msgid "Auto discover known hardware" +msgstr "Auto descubrir el hardware conocido" + +#: ../../godmode/wizards/HostDevices.class.php:1061 +msgid "" +"Targets will be monitorized based on its Private Enterprise Number. " +"Requires SNMP." +msgstr "" +"Los objetivos se monitorizarán en base a su Número de empresa " +"privado. Precisa de SNMP." + +#: ../../godmode/wizards/HostDevices.class.php:1076 +msgid "" +"Module Host Alive will be added to discovered agents by default." +msgstr "" +"El módulo Host Alive se añadirá a los agentes descubiertos por " +"defecto." + +#: ../../godmode/wizards/HostDevices.class.php:1124 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, " +"'review results' is mandatory." +msgstr "" +"Las redes configuradas pueden generar %d agentes, su licencia solo permite " +"%d, 'revisar resultados' es obligatorio." + +#: ../../godmode/wizards/HostDevices.class.php:1132 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:708 +msgid "Review results" +msgstr "Revisar resultados" + +#: ../../godmode/wizards/HostDevices.class.php:1134 +msgid "Targets must be validated by user before create agents." +msgstr "El usuario debe validar los objetivos antes de crear agentes" + +#: ../../godmode/wizards/HostDevices.class.php:1160 +msgid "Apply autoconfiguration rules" +msgstr "Aplicar normas de autoconfiguración" + +#: ../../godmode/wizards/HostDevices.class.php:1162 +msgid "" +"System is able to auto configure detected host & devices by applying your " +"defined configuration rules." +msgstr "" +"El sistema puede auto configurar el host y los dispositivos detectados " +"aplicando las normas de configuración." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:238 +msgid "Task successfully deleted" +msgstr "Tarea eliminada" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:342 +msgid "Console Task successfully deleted" +msgstr "Tarea de la consola eliminada" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:374 +#: ../../operation/servers/recon_view.php:33 +msgid "Discovery Server is disabled" +msgstr "El servidor discovery está deshabilitado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:438 +msgid "Task type" +msgstr "Tipo de tarea" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:506 +msgid "This task has not been completely defined, please edit it" +msgstr "La tarea no se ha definido por completo, edítela." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:544 +msgid "Cancelled" +msgstr "Cancelado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:545 +msgid "Server has been restarted while executing this task, please retry." +msgstr "" +"El servidor se ha reiniciado mientras ejecutaba esta tarea, vuelva a " +"intentarlo." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:552 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../operation/servers/recon_view.php:140 +msgid "Done" +msgstr "Hecho" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:556 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:571 +msgid "Not started" +msgstr "No iniciado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:566 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1034 +msgid "Review" +msgstr "Revisar" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:576 +msgid "Searching" +msgstr "Buscando" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:587 +msgid "Discovery Cloud Azure Compute" +msgstr "Discovery Cloud Azure Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:589 +msgid "Cloud.Azure.Compute" +msgstr "Cloud.Azure.Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 +msgid "Discovery Cloud AWS EC2" +msgstr "Discovery Cloud AWS EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:599 +msgid "Cloud.AWS.EC2" +msgstr "Cloud.AWS.EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:607 +msgid "Discovery Cloud RDS" +msgstr "Discovery Cloud RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:609 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "Discovery.Cloud.Aws.RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:617 +msgid "Discovery Applications MySQL" +msgstr "Aplicaciones MySQL de Discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:619 +msgid "Discovery.App.MySQL" +msgstr "Discovery.App.MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:627 +msgid "Discovery Applications Oracle" +msgstr "Aplicaciones de Discovery de Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:629 +msgid "Discovery.App.Oracle" +msgstr "Discovery.App.Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:640 +msgid "Discovery.Agent.Deployment" +msgstr "Discovery.Agent.Deployment" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:650 +msgid "Discovery NetScan" +msgstr "Discovery NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:652 +msgid "Discovery.NetScan" +msgstr "Discovery.NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:697 +msgid "Not executed yet" +msgstr "Aún no ejecutado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:717 +msgid "View summary" +msgstr "Ver el resumen" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 +msgid "View map" +msgstr "Ver el mapa" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:753 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:773 +msgid "Edit task" +msgstr "Editar tarea" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:760 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:780 +msgid "Delete task" +msgstr "Eliminar tarea" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +msgid "has no discovery tasks assigned" +msgstr "No tiene tareas de discovery asignadas" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:806 +msgid "Server Tasks" +msgstr "Tareas de servidor" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:942 +msgid "Overall Progress" +msgstr "Progreso total" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:961 +msgid "Scanning network" +msgstr "Escaneando red" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 +msgid "Checking" +msgstr "Comprobando" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:969 +msgid "Finding AFT connectivity" +msgstr "Buscando conexión AFT" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:973 +msgid "Finding traceroute connectivity" +msgstr "Buscando conexión traceroute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:977 +msgid "Finding gateway connectivity" +msgstr "Buscando conexión de entrada" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:981 +msgid "Searching for devices..." +msgstr "Buscando dispositivos..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:985 +msgid "Analyzing application..." +msgstr "Analizando aplicación..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:989 +msgid "Executing custom queries..." +msgstr "Ejecutando consultas personalizadas..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:993 +msgid "Testing modules..." +msgstr "Probando módulos..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 +msgid "Processing results..." +msgstr "Procesando resultados..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 +msgid "Processing..." +msgstr "Procesando…" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1111 +msgid "Host&devices total" +msgstr "Total Host&devices" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1116 +msgid "Agents monitored" +msgstr "Agentes monitorizados" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1121 +msgid "Agents pending" +msgstr "Agentes pendientes" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1127 +msgid "Hosts discovered" +msgstr "Hosts encontrados" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1143 +msgid "Responding SNMP" +msgstr "SNMP disponible" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1148 +msgid "Responding WMI" +msgstr "WMI disponible" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1155 +#: ../../include/functions_reporting_html.php:3827 +#: ../../include/functions_reporting_html.php:3964 +#: ../../include/functions_netflow.php:1028 +#: ../../include/lib/Dashboard/Widgets/tactical.php:286 +msgid "Summary" +msgstr "Lista de agentes" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1190 +msgid "This task has never executed" +msgstr "Esta tarea nunca se ha ejecutado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1198 +msgid "Task queued, please wait." +msgstr "Tarea encolada, espere." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1249 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1388 +msgid "Invalid task" +msgstr "Tarea no válida" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1345 +msgid "Please select devices to be monitored" +msgstr "Seleccione los dispositivos que desee monitorizar" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1348 +msgid "select all" +msgstr "seleccionar todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1351 +msgid "deselect all" +msgstr "deseleccionar todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1354 +msgid "expand all" +msgstr "expandir todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1357 +msgid "collapse all" +msgstr "Plegar todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1371 +msgid "No devices found in temporary resources, please re-launch." +msgstr "" +"No se han encontrado dispositivos en los recursos temporales, por favor " +"vuelva a lanzarlo." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1438 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "" +"La selección excede el número de agentes disponibles en la licencia. Límite " +"%d" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1462 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1481 +msgid "Removed" +msgstr "Eliminado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1518 +msgid "No changes. Re-Scheduled" +msgstr "No hay cambios. Reprogramado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1520 +msgid "Scheduled for creation" +msgstr "Programa de creación" + +#: ../../godmode/servers/servers.build_table.php:105 +msgid "Exec server enabled" +msgstr "Servidor de ejecución habilitado" + +#: ../../godmode/servers/servers.build_table.php:164 +msgid "Manage Discovery tasks" +msgstr "Gestionar las tareas de Discovery" + +#: ../../godmode/servers/servers.build_table.php:176 +msgid "Reset module status and fired alert counts" +msgstr "" +"Reiniciar el estado de los módulos y el conteo de las alertas disparadas" + +#: ../../godmode/servers/servers.build_table.php:184 +msgid "Claim back SNMP modules" +msgstr "Recuperar módulos SNMP" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "Actualizar el servidor" + +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:335 ../../godmode/servers/plugin.php:999 +msgid "Standard" +msgstr "Estándar" + +#: ../../godmode/servers/modificar_server.php:75 +msgid "Exec Server" +msgstr "Ejecutar el servidor" + +#: ../../godmode/servers/modificar_server.php:83 +msgid "Leave blank to use SSH default port (22)" +msgstr "Dejar en blanco para usar el puerto SSH por defecto (22)" + +#: ../../godmode/servers/modificar_server.php:88 +msgid "Check Exec Server" +msgstr "Comprobar ejecución del servidor" + +#: ../../godmode/servers/modificar_server.php:104 +msgid "Remote Configuration" +msgstr "Configuración remota" + +#: ../../godmode/servers/modificar_server.php:108 +#, php-format +msgid "%s servers" +msgstr "Servidores de %s" + +#: ../../godmode/servers/modificar_server.php:159 +msgid "Server updated successfully" +msgstr "Servidor actualizado correctamente" + +#: ../../godmode/servers/modificar_server.php:161 +msgid "There was a problem updating the server" +msgstr "Hubo un problema al actualizar el servidor" + +#: ../../godmode/servers/plugin.php:56 +msgid "Network Components" +msgstr "Componentes de red" + +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:582 +msgid "To manage plugin you must activate centralized management" +msgstr "Active la gestión centralizada para gestionar el plugin" + +#: ../../godmode/servers/plugin.php:291 +msgid "Plugin update" +msgstr "Actualización de plugin" + +#: ../../godmode/servers/plugin.php:303 ../../godmode/servers/plugin.php:630 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" +"Esta consola no administra este entorno,\n" +" \t\tadministre esta funcionalidad desde el administrador " +"centralizado de la consola (Metaconsola)." + +#: ../../godmode/servers/plugin.php:334 +msgid "Plugin type" +msgstr "Tipo de plugin" + +#: ../../godmode/servers/plugin.php:336 ../../godmode/servers/plugin.php:1001 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:341 +msgid "Max. timeout" +msgstr "Máx. tiempo de espera" + +#: ../../godmode/servers/plugin.php:341 +msgid "" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" +"Este valor solo se aplicará si es menor que el tiempo de espera del plugin " +"de la configuración general del servidor." + +#: ../../godmode/servers/plugin.php:341 +msgid "" +"If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" +"Si configuras en 0 segundos el tiempo de espera, se utilizará el tiempo de " +"espera del plugin del servidor." + +#: ../../godmode/servers/plugin.php:394 +msgid "Plugin command" +msgstr "Comando del plugin" + +#: ../../godmode/servers/plugin.php:394 +msgid "" +"Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" +"Especifique el intérprete y la ruta del plugin. El servidor necesita " +"permisos para ejecutarlo." + +#: ../../godmode/servers/plugin.php:406 +msgid "Plug-in parameters" +msgstr "Parámetros del plugin" + +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:671 +msgid "Hide value" +msgstr "Ocultar valor" + +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:673 +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:547 ../../godmode/servers/plugin.php:552 +msgid "Parameters macros" +msgstr "Macros de los parámetros" + +#: ../../godmode/servers/plugin.php:589 +msgid "" +"The previous configuration of plugins has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" +"Se ha importado la configuración previa de los plugins de los nodos. " +"Compruebe que las definiciones son correctas." + +#: ../../godmode/servers/plugin.php:590 +msgid "" +"These definitions will not be operational until you manually \n" +" \t\t\tcopy the files from the nodes to the atachment/plugin/ directory " +"of the meta console." +msgstr "" +"Estas definiciones no estarán operativas hasta que \n" +" \t\t\tcopie los archivos de los nodos al directorio atachment/plugin/ de " +"la Metaconsola manualmente." + +#: ../../godmode/servers/plugin.php:617 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "Plugins registrados en %s" + +#: ../../godmode/servers/plugin.php:639 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "Necesitas crear tus propios plugins compatibles con Windows." + +#: ../../godmode/servers/plugin.php:705 +msgid "Problem updating plugin" +msgstr "Problema al actualizar el plugin" + +#: ../../godmode/servers/plugin.php:707 +msgid "Plugin updated successfully" +msgstr "Plugin actualizado correctamente" + +#: ../../godmode/servers/plugin.php:765 +msgid "Problem creating plugin" +msgstr "Error al crear plugin" + +#: ../../godmode/servers/plugin.php:767 +msgid "Plugin created successfully" +msgstr "Plugin creado correctamente" + +#: ../../godmode/servers/plugin.php:779 ../../godmode/servers/plugin.php:813 +msgid "Problem deleting plugin" +msgstr "Error al borrar plugin" + +#: ../../godmode/servers/plugin.php:781 ../../godmode/servers/plugin.php:815 +msgid "Plugin deleted successfully" +msgstr "Plugin borrado correctamente" + +#: ../../godmode/servers/plugin.php:826 +msgid "Problem deploying plugin" +msgstr "Problema de despliegue de plugins" + +#: ../../godmode/servers/plugin.php:828 +msgid "Plugin deployed successfully" +msgstr "Plugin desplegado correctamente" + +#: ../../godmode/servers/plugin.php:1031 +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:1044 +msgid "There are no plugins in the system" +msgstr "No hay plugins en el sistema" + +#: ../../godmode/servers/plugin.php:1058 +#, 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:1164 ../../godmode/servers/plugin.php:1180 +msgid "Some modules or components are using the plugin" +msgstr "Algunos módulos o componentes están usando el plugin." + +#: ../../godmode/servers/plugin.php:1165 +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:1167 +msgid "Are you sure you want to perform this action?" +msgstr "¿Estás seguro de que quieres realizar esta acción?" + +#: ../../godmode/servers/plugin.php:1181 +msgid "Are you sure you want to unlock this item?" +msgstr "¿Estás seguro de que quieres desbloquear este elemento?" + +#: ../../godmode/servers/plugin.php:1201 +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:1207 +msgid "" +"The plugin macros cannot be updated because some modules or components are " +"using the plugin" +msgstr "" +"Las macros del plugin no pueden ser actualizadas porque algunos módulos o " +"componentes están usando el plugin." + +#: ../../godmode/servers/discovery.php:182 +msgid "You must create a task first" +msgstr "Primero debe crear una tarea" + +#: ../../godmode/tag/tag.php:93 +msgid "Number of modules" +msgstr "Número de módulos" + +#: ../../godmode/tag/tag.php:95 +msgid "Number of policy modules" +msgstr "Número de módulos de política" + +#: ../../godmode/tag/tag.php:113 ../../godmode/tag/edit_tag.php:51 +#: ../../godmode/tag/edit_tag.php:62 msgid "List tags" msgstr "Listar etiquetas" -#: ../../godmode/tag/edit_tag.php:68 ../../godmode/tag/tag.php:125 +#: ../../godmode/tag/tag.php:125 ../../godmode/tag/edit_tag.php:68 msgid "Tags configuration" msgstr "Configuración de etiquetas" +#: ../../godmode/tag/tag.php:141 +msgid "Error deleting tag" +msgstr "Error al eliminar la etiqueta" + +#: ../../godmode/tag/tag.php:144 +msgid "Successfully deleted tag" +msgstr "Etiqueta eliminada correctamente" + +#: ../../godmode/tag/tag.php:224 +msgid "Tag name" +msgstr "Nombre de etiqueta" + +#: ../../godmode/tag/tag.php:226 +msgid "Detail information" +msgstr "Información de los detalles" + +#: ../../godmode/tag/tag.php:227 +msgid "Number of modules affected" +msgstr "Número de módulos afectados" + +#: ../../godmode/tag/tag.php:229 ../../godmode/tag/edit_tag.php:208 +msgid "Phone" +msgstr "Teléfono" + +#: ../../godmode/tag/tag.php:249 +msgid "Tag details" +msgstr "Detalles de la etiqueta" + +#: ../../godmode/tag/tag.php:277 +#, php-format +msgid "Emails for the tag: %s" +msgstr "Correos para la etiqueta: %s" + +#: ../../godmode/tag/tag.php:287 +#, php-format +msgid "Phones for the tag: %s" +msgstr "Teléfonos par la etiqueta: %s" + +#: ../../godmode/tag/tag.php:303 +msgid "No tags defined" +msgstr "Etiquetas no definidas" + +#: ../../godmode/tag/tag.php:317 +msgid "Create tag" +msgstr "Crear etiqueta" + #: ../../godmode/tag/edit_tag.php:91 msgid "Error updating tag" msgstr "Error al actualizar la etiqueta" @@ -21163,1489 +35720,3088 @@ msgstr "Actualizar etiqueta" msgid "Create Tag" msgstr "Crear etiqueta" -#: ../../godmode/tag/edit_tag.php:184 -#: ../../include/functions_reporting.php:5041 -#: ../../enterprise/meta/include/functions_wizard_meta.php:641 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 -msgid "Url" -msgstr "URL" - #: ../../godmode/tag/edit_tag.php:186 msgid "Hyperlink to help information that has to exist previously." msgstr "Hipervínculo a la información de ayuda que debe existir previamente" -#: ../../godmode/tag/edit_tag.php:196 ../../godmode/tag/tag.php:228 -#: ../../include/functions_cron.php:508 ../../include/functions_cron.php:560 -#: ../../include/functions_update_manager.php:744 -#: ../../operation/search_users.php:36 -#: ../../enterprise/godmode/setup/setup_auth.php:96 -#: ../../enterprise/include/functions_tasklist.php:224 -#: ../../enterprise/include/functions_tasklist.php:281 -#: ../../enterprise/operation/reporting/custom_reporting.php:20 -msgid "Email" -msgstr "Correo electrónico" - #: ../../godmode/tag/edit_tag.php:198 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" "Direccion de email asociada para utilizarla después en alertas asociadas a " "etiquetas" -#: ../../godmode/tag/edit_tag.php:208 ../../godmode/tag/tag.php:229 -#: ../../godmode/users/user_list.php:476 -msgid "Phone" -msgstr "Teléfono" - #: ../../godmode/tag/edit_tag.php:210 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" "Número de teléfono asociado para usar posteriormente en alertas asociadas a " "etiquetas" -#: ../../godmode/tag/tag.php:93 -msgid "Number of modules" -msgstr "Número de módulos" +#: ../../godmode/category/category.php:41 +#: ../../godmode/category/category.php:48 +#: ../../godmode/category/edit_category.php:40 +#: ../../godmode/category/edit_category.php:47 +msgid "List categories" +msgstr "Lista de categorías" -#: ../../godmode/tag/tag.php:95 -msgid "Number of policy modules" -msgstr "Número de módulos de política" +#: ../../godmode/category/category.php:57 +#: ../../godmode/category/category.php:59 +#: ../../godmode/category/edit_category.php:56 +#: ../../godmode/category/edit_category.php:58 +msgid "Categories configuration" +msgstr "Configuración de categorías" -#: ../../godmode/tag/tag.php:141 -msgid "Error deleting tag" -msgstr "Error al eliminar la etiqueta" +#: ../../godmode/category/category.php:69 +msgid "Error deleting category" +msgstr "Error al eliminar la categoría" -#: ../../godmode/tag/tag.php:144 -msgid "Successfully deleted tag" -msgstr "Etiqueta eliminada correctamente" +#: ../../godmode/category/category.php:72 +msgid "Successfully deleted category" +msgstr "Categoría eliminada correctamente" -#: ../../godmode/tag/tag.php:224 -msgid "Tag name" -msgstr "Nombre de etiqueta" +#: ../../godmode/category/category.php:111 +msgid "Category name" +msgstr "Nombre de la categoría" -#: ../../godmode/tag/tag.php:226 -msgid "Detail information" -msgstr "Información de los detalles" +#: ../../godmode/category/category.php:144 +msgid "No categories found" +msgstr "Ninguna categoría encontrada" -#: ../../godmode/tag/tag.php:227 -msgid "Number of modules affected" -msgstr "Número de módulos afectados" +#: ../../godmode/category/category.php:156 +#: ../../godmode/category/edit_category.php:142 +msgid "Create category" +msgstr "Crear categoría" -#: ../../godmode/tag/tag.php:249 -msgid "Tag details" -msgstr "Detalles de la etiqueta" +#: ../../godmode/category/edit_category.php:56 +msgid "Editor" +msgstr "Editor" -#: ../../godmode/tag/tag.php:277 +#: ../../godmode/category/edit_category.php:75 +msgid "Error updating category" +msgstr "Error al actualizar categoría" + +#: ../../godmode/category/edit_category.php:78 +msgid "Successfully updated category" +msgstr "Categoría actualizada correctamente" + +#: ../../godmode/category/edit_category.php:97 +msgid "Error creating category" +msgstr "Error al crear categoría" + +#: ../../godmode/category/edit_category.php:102 +msgid "Successfully created category" +msgstr "Categoría creada correctamente" + +#: ../../godmode/category/edit_category.php:134 +msgid "Update category" +msgstr "Actualizar categoría" + +#: ../../godmode/module_library/module_library_view.php:129 +msgid "View all categories" +msgstr "Ver todas las categorías" + +#: ../../godmode/module_library/module_library_view.php:140 +msgid "More details" +msgstr "Más detalles" + +#: ../../godmode/module_library/module_library_view.php:142 +msgid "View in Module Library" +msgstr "Ver en Biblioteca de módulos" + +#: ../../godmode/module_library/module_library_view.php:143 +msgid "No module found" +msgstr "No se ha encontrado el módulo" + +#: ../../godmode/module_library/module_library_view.php:146 +msgid "Error loading Module Library" +msgstr "Error al cargar la Biblioteca de módulos" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "Error loading category" +msgstr "Error al cargar la categoría" + +#: ../../godmode/module_library/module_library_view.php:148 +msgid "Error loading categories" +msgstr "Error al cargar las categorías" + +#: ../../godmode/module_library/module_library_view.php:149 +msgid "There is no such category" +msgstr "La categoría no existe" + +#: ../../godmode/module_library/module_library_view.php:150 +msgid "Error loading results" +msgstr "Error al cargar los resultados" + +#: ../../mobile/include/functions_web.php:81 #, php-format -msgid "Emails for the tag: %s" -msgstr "Correos para la etiqueta: %s" +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - Revisión %s" -#: ../../godmode/tag/tag.php:287 -#, php-format -msgid "Phones for the tag: %s" -msgstr "Teléfonos par la etiqueta: %s" +#: ../../mobile/include/system.class.php:156 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"your system administrator if you should need help." +msgstr "" +"El acceso a esta página está restringido únicamente a los usuarios " +"autorizados. Póngase en contacto con el administrador de sistemas si " +"necesita ayuda." -#: ../../godmode/tag/tag.php:303 -msgid "No tags defined" -msgstr "Etiquetas no definidas" - -#: ../../godmode/tag/tag.php:317 -msgid "Create tag" -msgstr "Crear etiqueta" - -#: ../../godmode/update_manager/update_manager.offline.php:56 -msgid "Drop the package here or" -msgstr "Arrastre el paquete hasta aquí o" - -#: ../../godmode/update_manager/update_manager.offline.php:57 -msgid "browse it" -msgstr "navegue hasta él" - -#: ../../godmode/update_manager/update_manager.offline.php:58 -msgid "The package has been uploaded successfully." -msgstr "Se ha subido correctamente el paquete." - -#: ../../godmode/update_manager/update_manager.offline.php:59 +#: ../../mobile/include/system.class.php:156 #, php-format msgid "" -"Please keep in mind that this package is going to override your actual %s " -"files and that it's recommended to conduct a backup before continuing the " -"updating process." +"Please remember that any attempts to access this page will be recorded on " +"the %s System Database." msgstr "" -"Tenga en cuenta que este paquete anulará los archivos de %s actuales, por lo " -"que se recomienda hacer una copia de seguridad antes de continuar con el " -"proceso de actualización." +"Recuerde que cualquier intento de acceso a esta página quedara grabado en la " +"base de datos del sistema de %s." -#: ../../godmode/update_manager/update_manager.offline.php:60 -msgid "Click on the file below to begin." -msgstr "Haz clic en el archivo de abajo para comenzar." - -#: ../../godmode/update_manager/update_manager.offline.php:61 -msgid "Updating" -msgstr "Actualizando" - -#: ../../godmode/update_manager/update_manager.offline.php:62 -msgid "Package updated successfully." -msgstr "Paquete actualizado correctamente" - -#: ../../godmode/update_manager/update_manager.offline.php:63 -msgid "If there are any database change, it will be applied." -msgstr "Si hay algún cambio en la base de datos, se aplicará." - -#: ../../godmode/update_manager/update_manager.offline.php:64 -#: ../../include/functions_update_manager.php:1367 -#: ../../enterprise/include/functions_update_manager.php:214 -msgid "Minor release available" -msgstr "Actualización menor disponible" - -#: ../../godmode/update_manager/update_manager.offline.php:65 -#: ../../include/functions_update_manager.php:1368 -#: ../../enterprise/include/functions_update_manager.php:215 -msgid "New package available" -msgstr "Nuevo paquete disponible" - -#: ../../godmode/update_manager/update_manager.offline.php:66 -#: ../../godmode/update_manager/update_manager.offline.php:68 -#: ../../include/functions_update_manager.php:1369 -#: ../../include/functions_update_manager.php:1371 -#: ../../enterprise/include/functions_update_manager.php:216 -#: ../../enterprise/include/functions_update_manager.php:218 -msgid "Minor release rejected. Changes will not apply." -msgstr "Actualización menor rechazada. No se aplicarán los cambios." - -#: ../../godmode/update_manager/update_manager.offline.php:67 -#: ../../include/functions_update_manager.php:1370 -#: ../../enterprise/include/functions_update_manager.php:217 -msgid "" -"Minor release rejected. The database will not be updated and the package " -"will apply." -msgstr "" -"Actualización menor rechazada. La base de datos no se actualizará y el " -"paquete no se aplicará." - -#: ../../godmode/update_manager/update_manager.offline.php:69 -#: ../../include/functions_update_manager.php:1372 -#: ../../enterprise/include/functions_update_manager.php:219 -msgid "These package changes will not apply." -msgstr "Los cambios de este paquete no se aplicarán." - -#: ../../godmode/update_manager/update_manager.offline.php:70 -#: ../../include/functions_update_manager.php:1373 -#: ../../enterprise/include/functions_update_manager.php:220 -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:71 -#: ../../include/functions_update_manager.php:1374 -#: ../../enterprise/include/functions_update_manager.php:221 -msgid "Database successfully updated" -msgstr "Base de datos actualizada correctamente" - -#: ../../godmode/update_manager/update_manager.offline.php:72 -#: ../../include/functions_update_manager.php:1375 -#: ../../enterprise/include/functions_update_manager.php:222 -msgid "Error in MR file" -msgstr "Error en el archivo MR" - -#: ../../godmode/update_manager/update_manager.offline.php:73 -#: ../../include/functions_update_manager.php:1376 -#: ../../enterprise/include/functions_update_manager.php:223 -msgid "Package updated successfully" -msgstr "Paquete actualizado correctamente" - -#: ../../godmode/update_manager/update_manager.offline.php:74 -#: ../../include/functions_update_manager.php:1377 -#: ../../enterprise/include/functions_update_manager.php:224 -msgid "Error in package updated" -msgstr "Error al actualizar el paquete" - -#: ../../godmode/update_manager/update_manager.offline.php:75 -#: ../../include/functions_update_manager.php:1378 -#: ../../enterprise/include/functions_update_manager.php:225 -msgid "" -"Database MR version is inconsistent, do you want to apply the package?" -msgstr "" -"La actualización menor de la base de datos es inconsistente, ¿quieres " -"aplicar el paquete?" - -#: ../../godmode/update_manager/update_manager.offline.php:76 -#: ../../include/functions_update_manager.php:1379 -#: ../../enterprise/include/functions_update_manager.php:226 -msgid "There are db changes" -msgstr "Hay cambios en la BD" - -#: ../../godmode/update_manager/update_manager.offline.php:77 -#: ../../include/functions_update_manager.php:1380 -#: ../../enterprise/include/functions_update_manager.php:227 -msgid "" -"There are new database changes available to apply. Do you want to start the " -"DB update process?" -msgstr "" -"Hay nuevos cambios disponibles para aplicar a la base de datos. ¿Quieres " -"comenzar el proceso de actualización de la BD?" - -#: ../../godmode/update_manager/update_manager.offline.php:78 -#: ../../include/functions_update_manager.php:1381 -#: ../../enterprise/include/functions_update_manager.php:228 -msgid "We recommend launching " -msgstr "Se recomienda lanzar " - -#: ../../godmode/update_manager/update_manager.offline.php:79 -#: ../../include/functions_update_manager.php:1382 -#: ../../enterprise/include/functions_update_manager.php:229 -msgid "planned downtime" -msgstr "parada programada" - -#: ../../godmode/update_manager/update_manager.offline.php:85 -#: ../../include/functions_update_manager.php:1389 -#: ../../enterprise/include/functions_update_manager.php:236 -msgid " to this process" -msgstr " para este proceso" - -#: ../../godmode/update_manager/update_manager.offline.php:91 -#: ../../include/functions_update_manager.php:1395 -#: ../../enterprise/include/functions_update_manager.php:241 -msgid "There is a new update available" -msgstr "Hay una nueva actualización disponible" - -#: ../../godmode/update_manager/update_manager.offline.php:92 -#: ../../include/functions_update_manager.php:1396 -#: ../../enterprise/include/functions_update_manager.php:242 -msgid "" -"There is a new update available to apply. Do you want to start the update " -"process?" -msgstr "" -"Hay una nueva actualización disponible para aplicar. ¿Quieres comenzar el " -"proceso de actualización?" - -#: ../../godmode/update_manager/update_manager.offline.php:93 -#: ../../include/functions_update_manager.php:1397 -#: ../../enterprise/include/functions_update_manager.php:243 -msgid "Applying DB MR" -msgstr "Aplicando actualización menor a la base de datos" - -#: ../../godmode/update_manager/update_manager.offline.php:96 -#: ../../include/functions_update_manager.php:1400 -#: ../../enterprise/include/functions_update_manager.php:246 -msgid "Apply MR" -msgstr "Aplicar actualización menor" - -#: ../../godmode/update_manager/update_manager.offline.php:97 -#: ../../include/functions_update_manager.php:1401 -#: ../../include/functions_visual_map_editor.php:573 -#: ../../enterprise/godmode/policies/policy_agents.php:713 -#: ../../enterprise/godmode/policies/policy_agents.php:1076 -#: ../../enterprise/godmode/policies/policy_queue.php:507 -#: ../../enterprise/include/functions_update_manager.php:247 -#: ../../enterprise/meta/advanced/policymanager.apply.php:213 -#: ../../enterprise/meta/advanced/policymanager.queue.php:307 -msgid "Apply" -msgstr "Aplicar" - -#: ../../godmode/update_manager/update_manager.online.php:62 +#: ../../mobile/include/ui.class.php:105 #, php-format -msgid "" -"Your PHP has set memory limit in %s. To use Update Manager Online, please " -"set it to %s" -msgstr "" -"PHP ha fijado el límite de memoria en %s. Para utilizar Update Manager " -"Online, configúrelo a %s." +msgid "%s mobile" +msgstr "%s móvil" -#: ../../godmode/update_manager/update_manager.online.php:75 +#: ../../mobile/include/ui.class.php:202 #, php-format -msgid "" -"Your PHP has post_max_size limited to %s. To use Update Manager Online, " -"please set it to %s" -msgstr "" -"PHP tiene post_max_size limitado a %s. Para usar Update Manager Online, " -"configúrelo a %s." +msgid "%s : Mobile" +msgstr "%s : Móvil" -#: ../../godmode/update_manager/update_manager.online.php:88 +#: ../../mobile/include/ui.class.php:223 ../../mobile/operation/home.php:162 +msgid "Home" +msgstr "Inicio" + +#: ../../mobile/include/ui.class.php:306 #, php-format -msgid "" -"Your PHP has set maximum allowed size for uploaded files limit in %s. To use " -"Update Manager Online, please set it to %s" +msgid "%s %s - Build %s" +msgstr "%s %s - Desarrollo %s" + +#: ../../mobile/include/ui.class.php:752 +msgid "Not found header." +msgstr "Encabezado no encontrado" + +#: ../../mobile/include/ui.class.php:754 +msgid "Not found content." +msgstr "Contenido no encontrado" + +#: ../../mobile/include/ui.class.php:756 +msgid "Not found footer." +msgstr "Pie de página no encontrado" + +#: ../../mobile/include/ui.class.php:758 +msgid "Incorrect form." +msgstr "Forma incorrecta" + +#: ../../mobile/include/ui.class.php:760 +msgid "Incorrect grid." +msgstr "Matriz incorrecta" + +#: ../../mobile/include/ui.class.php:762 +msgid "Incorrect collapsible." +msgstr "Plegable incorrecto" + +#: ../../mobile/include/user.class.php:173 +#: ../../mobile/include/user.class.php:188 +#: ../../mobile/include/user.class.php:195 +msgid "Double authentication failed" +msgstr "Fallo en la doble autentificación" + +#: ../../mobile/include/user.class.php:174 +msgid "Secret code not found" +msgstr "Código secreto no encontrado" + +#: ../../mobile/include/user.class.php:174 +msgid "Please contact the administrator to reset your double authentication" msgstr "" -"PHP ha establecido un límite de tamaño máximo para los archivos subidos en " -"%s. Para usar Update Manager Online, configúrelo a %s." +"Por favor, contacta con el administrador para restablecer la doble " +"autentificación." -#: ../../godmode/update_manager/update_manager.online.php:102 -msgid "Update Manager Online requires registration" -msgstr "Debe registrarse en Update Manager Online" +#: ../../mobile/include/user.class.php:196 +msgid "There was an error checking the code" +msgstr "Error al comprobar el código" -#: ../../godmode/update_manager/update_manager.online.php:133 -msgid "The latest version of package installed is:" -msgstr "La última versión instalada del paquete es:" +#: ../../mobile/include/user.class.php:232 +msgid "Login Failed" +msgstr "Error de identificación" -#: ../../godmode/update_manager/update_manager.online.php:141 -msgid "Checking for the newest package." -msgstr "Buscando el paquete más reciente" +#: ../../mobile/include/user.class.php:233 +msgid "User not found in database or incorrect password." +msgstr "Usuario no encontrado en la base de datos o contraseña incorrecta" -#: ../../godmode/update_manager/update_manager.online.php:145 -msgid "Downloading for the newest package." -msgstr "Descargando nuevos paquetes" +#: ../../mobile/include/user.class.php:240 +msgid "Login out" +msgstr "Cerrar sesión" -#: ../../godmode/update_manager/update_manager.php:41 -msgid "Offline update manager" -msgstr "Administrador de actualizaciones offline" +#: ../../mobile/include/user.class.php:271 +msgid "user" +msgstr "Usuario" -#: ../../godmode/update_manager/update_manager.php:47 -msgid "Online update manager" -msgstr "Administrador de actualizaciones online" +#: ../../mobile/include/user.class.php:278 +msgid "password" +msgstr "contraseña" -#: ../../godmode/update_manager/update_manager.php:53 -msgid "Update manager » Setup" -msgstr "Configuración del Administrador de actualizaciones" +#: ../../mobile/include/user.class.php:344 +#: ../../mobile/include/user.class.php:345 +msgid "Authenticator code" +msgstr "Código de autentificación" -#: ../../godmode/update_manager/update_manager.php:57 -msgid "Update manager » Offline" -msgstr "Administrador de actualizaciones » Offline" +#: ../../mobile/include/user.class.php:349 ../../general/login_page.php:286 +msgid "Check code" +msgstr "Código de comprobación" -#: ../../godmode/update_manager/update_manager.php:62 -msgid "Update manager » Online" -msgstr "Administrador de actualizaciones » Online" - -#: ../../godmode/update_manager/update_manager.setup.php:124 -#: ../../godmode/update_manager/update_manager.setup.php:175 -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 -msgid "Succesful Update the url config vars." -msgstr "Variables de configuración de la URL actualizadas correctamente" - -#: ../../godmode/update_manager/update_manager.setup.php:125 -#: ../../godmode/update_manager/update_manager.setup.php:176 -#: ../../enterprise/meta/advanced/metasetup.mail.php:80 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:89 -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:189 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:101 -msgid "URL update manager:" -msgstr "URL Administrador de actualizaciones:" - -#: ../../godmode/update_manager/update_manager.setup.php:193 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:105 -msgid "URL update manager" -msgstr "URL Administrador de actualizaciones" - -#: ../../godmode/update_manager/update_manager.setup.php:199 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:111 -msgid "Proxy server:" -msgstr "Servidor Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:203 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:115 -msgid "Proxy server" -msgstr "Servidor proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:209 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:121 -msgid "Proxy port:" -msgstr "Puerto Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:213 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:125 -msgid "Proxy port" -msgstr "Puerto del Proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:219 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:131 -msgid "Proxy user:" -msgstr "Usuario del Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:223 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:135 -msgid "Proxy user" -msgstr "Usuario del Proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:229 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:141 -msgid "Proxy password:" -msgstr "Contraseña del Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:233 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:145 -msgid "Proxy password" -msgstr "Contraseña del Proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:240 -msgid "Registration ID:" -msgstr "ID de registro:" - -#: ../../godmode/update_manager/update_manager.setup.php:244 -msgid "Cancel registration:" -msgstr "Cancelar registro:" - -#: ../../godmode/update_manager/update_manager.setup.php:249 -msgid "Unregister" -msgstr "Cerrar cuenta" - -#: ../../godmode/update_manager/update_manager.setup.php:256 -msgid "Pandora FMS community reminder" -msgstr "Recordatorio de la comunidad de Pandora FMS" - -#: ../../godmode/update_manager/update_manager.setup.php:256 -msgid "" -"Every 8 days, a message is displayed to admin users to remember to register " -"this Pandora instance" -msgstr "" -"Cada 8 días, se mostrará un mensaje al administrador para que recuerde " -"registrar esta instancia de Pandora FMS." - -#: ../../godmode/users/configure_profile.php:40 -#: ../../godmode/users/configure_profile.php:51 -#: ../../godmode/users/configure_user.php:83 -#: ../../godmode/users/profile_list.php:44 -#: ../../godmode/users/profile_list.php:55 -#: ../../godmode/users/user_list.php:135 ../../godmode/users/user_list.php:145 -#: ../../operation/users/user_edit_header.php:90 -#: ../../enterprise/meta/general/main_header.php:310 -#: ../../enterprise/meta/general/main_header.php:392 -#: ../../enterprise/meta/include/functions_users_meta.php:182 -#: ../../enterprise/meta/include/functions_users_meta.php:204 -msgid "User management" -msgstr "Gestión de usuarios" - -#: ../../godmode/users/configure_profile.php:51 -#: ../../godmode/users/profile_list.php:55 +#: ../../mobile/operation/agents.php:203 #, php-format -msgid "Profiles defined on %s" -msgstr "Perfiles definidos en %s." +msgid "Filter Agents by %s" +msgstr "Filtros de agentes por %s" -#: ../../godmode/users/configure_profile.php:117 -msgid "Create profile" -msgstr "Crear perfil" +#: ../../mobile/operation/agents.php:245 ../../mobile/operation/modules.php:300 +#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/events.php:717 +msgid "Apply Filter" +msgstr "Aplicar el filtro" -#: ../../godmode/users/configure_profile.php:122 -msgid "There was a problem loading profile" -msgstr "Error al cargar el perfil" +#: ../../mobile/operation/agents.php:444 +msgid "No agents" +msgstr "Sin agentes" -#: ../../godmode/users/configure_profile.php:191 -msgid "Update profile" -msgstr "Actualizar perfil" +#: ../../mobile/operation/agents.php:539 ../../mobile/operation/modules.php:855 +#: ../../mobile/operation/alerts.php:360 ../../mobile/operation/events.php:1148 +msgid "(Default)" +msgstr "(Por defecto)" -#: ../../godmode/users/configure_profile.php:201 -msgid "Update Profile" -msgstr "Actualizar perfil" - -#: ../../godmode/users/configure_profile.php:203 -msgid "Create Profile" -msgstr "Crear perfil" - -#: ../../godmode/users/configure_profile.php:224 -msgid "View agents" -msgstr "Ver agentes" - -#: ../../godmode/users/configure_profile.php:228 -msgid "Disable agents" -msgstr "Desactivar agentes" - -#: ../../godmode/users/configure_profile.php:232 -msgid "Edit agents" -msgstr "Editar agentes" - -#: ../../godmode/users/configure_profile.php:239 -msgid "Edit alerts" -msgstr "Editar alertas" - -#: ../../godmode/users/configure_profile.php:250 ../../operation/menu.php:366 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 -#: ../../enterprise/meta/event/custom_events.php:38 -msgid "View events" -msgstr "Ver eventos" - -#: ../../godmode/users/configure_profile.php:254 -msgid "Edit events" -msgstr "Editar eventos" - -#: ../../godmode/users/configure_profile.php:265 -msgid "View reports" -msgstr "Ver informes" - -#: ../../godmode/users/configure_profile.php:269 -msgid "Edit reports" -msgstr "Editar informes" - -#: ../../godmode/users/configure_profile.php:273 -msgid "Manage reports" -msgstr "Gestionar informes" - -#: ../../godmode/users/configure_profile.php:280 -msgid "View network maps" -msgstr "Ver mapas de red" - -#: ../../godmode/users/configure_profile.php:284 -msgid "Edit network maps" -msgstr "Editar mapas de red" - -#: ../../godmode/users/configure_profile.php:288 -msgid "Manage network maps" -msgstr "Gestionar mapas de red" - -#: ../../godmode/users/configure_profile.php:295 -#: ../../include/functions_menu.php:508 -msgid "View visual console" -msgstr "Ver consola visual" - -#: ../../godmode/users/configure_profile.php:299 -msgid "Edit visual console" -msgstr "Editar consola visual" - -#: ../../godmode/users/configure_profile.php:303 -msgid "Manage visual console" -msgstr "Gestionar consolas visuales" - -#: ../../godmode/users/configure_profile.php:310 -msgid "View incidents" -msgstr "Ver incidentes" - -#: ../../godmode/users/configure_profile.php:314 -msgid "Edit incidents" -msgstr "Editar incidentes" - -#: ../../godmode/users/configure_profile.php:318 -msgid "Manage incidents" -msgstr "Gestionar incidentes" - -#: ../../godmode/users/configure_profile.php:330 -msgid "Manage users" -msgstr "Gestionar usuarios" - -#: ../../godmode/users/configure_profile.php:337 -msgid "Manage database" -msgstr "Gestionar la base de datos" - -#: ../../godmode/users/configure_profile.php:344 +#: ../../mobile/operation/agents.php:545 ../../mobile/operation/modules.php:861 +#: ../../mobile/operation/alerts.php:373 ../../mobile/operation/events.php:1181 #, php-format -msgid "%s management" -msgstr "Gestión %s." +msgid "Group: %s" +msgstr "Grupo: %s" -#: ../../godmode/users/configure_user.php:94 -#: ../../operation/users/user_edit_header.php:111 -msgid "User detail editor" -msgstr "Editor de detalles de usuario" - -#: ../../godmode/users/configure_user.php:166 -#: ../../godmode/users/user_list.php:568 +#: ../../mobile/operation/agents.php:552 ../../mobile/operation/modules.php:883 +#: ../../mobile/operation/alerts.php:380 ../../mobile/operation/events.php:1201 #, php-format +msgid "Status: %s" +msgstr "Estado: %s" + +#: ../../mobile/operation/agents.php:559 ../../mobile/operation/modules.php:890 +#: ../../mobile/operation/alerts.php:387 +#, php-format +msgid "Free Search: %s" +msgstr "Búsqueda libre: %s" + +#: ../../mobile/operation/modules.php:225 +#, php-format +msgid "Filter Modules by %s" +msgstr "Filtrar módulos por %s" + +#: ../../mobile/operation/modules.php:632 +msgid "Interval." +msgstr "Intervalo" + +#: ../../mobile/operation/modules.php:634 +msgid "Last update." +msgstr "Última actualización" + +#: ../../mobile/operation/modules.php:876 +#, php-format +msgid "Module group: %s" +msgstr "Grupos de módulos: %s" + +#: ../../mobile/operation/modules.php:898 +#, php-format +msgid "Tag: %s" +msgstr "Etiqueta: %s" + +#: ../../mobile/operation/home.php:84 ../../mobile/operation/visualmaps.php:109 +msgid "Visual consoles" +msgstr "Consola visual" + +#: ../../mobile/operation/home.php:104 +msgid "Visualmap" +msgstr "Mapa visual" + +#: ../../mobile/operation/home.php:169 ../../operation/search_results.php:66 +msgid "Global search" +msgstr "Búsqueda global" + +#: ../../mobile/operation/agent.php:167 +msgid "No agent found" +msgstr "No se han encontrado agentes" + +#: ../../mobile/operation/agent.php:260 +msgid "Modules by status" +msgstr "Módulos por estado" + +#: ../../mobile/operation/agent.php:275 +#: ../../include/functions_treeview.php:808 +msgid "Events (24h)" +msgstr "Eventos (24h)" + +#: ../../mobile/operation/agent.php:348 +#, php-format +msgid "Last %s Events" +msgstr "Últimos %s eventos" + +#: ../../mobile/operation/alerts.php:46 +#: ../../operation/agentes/alerts_status.functions.php:77 +msgid "All (Enabled)" +msgstr "Todos (Habilitados)" + +#: ../../mobile/operation/alerts.php:49 +#: ../../operation/agentes/alerts_status.functions.php:80 +#: ../../operation/snmpconsole/snmp_view.php:207 +#: ../../operation/snmpconsole/snmp_view.php:1182 +msgid "Not fired" +msgstr "No disparadas" + +#: ../../mobile/operation/alerts.php:189 +#, php-format +msgid "Filter Alerts by %s" +msgstr "Filtros de alertas por %s" + +#: ../../mobile/operation/alerts.php:327 +msgid "Last Fired" +msgstr "Última vez que se disparó" + +#: ../../mobile/operation/alerts.php:338 +msgid "No alerts" +msgstr "Sin alertas" + +#: ../../mobile/operation/alerts.php:366 +#, php-format +msgid "Standby: %s" +msgstr "Standby: %s" + +#: ../../mobile/operation/visualmaps.php:169 +msgid "No maps defined" +msgstr "No hay mapas definidos" + +#: ../../mobile/operation/module_graph.php:362 +#: ../../mobile/operation/module_graph.php:374 +#, php-format +msgid "%s: %s" +msgstr "%s: %s" + +#: ../../mobile/operation/module_graph.php:406 +#, php-format +msgid "Options for %s : %s" +msgstr "Opciones para %s: %s" + +#: ../../mobile/operation/module_graph.php:413 +msgid "Show Alerts" +msgstr "Mostrar alertas" + +#: ../../mobile/operation/module_graph.php:421 +msgid "Show Events" +msgstr "Mostrar eventos" + +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:353 +msgid "Time compare (Separated)" +msgstr "Comparación de tiempo (por separado)" + +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:359 +msgid "Show unknown graph" +msgstr "Mostrar gráficos desconocidos" + +#: ../../mobile/operation/module_graph.php:450 +msgid "Time range (hours)" +msgstr "Rango de tiempo (horas)" + +#: ../../mobile/operation/module_graph.php:462 +#: ../../operation/agentes/stat_win.php:257 +#: ../../operation/agentes/interface_traffic_graph_win.php:197 +#: ../../operation/agentes/graphs.php:207 +#: ../../operation/agentes/exportdata.php:317 +msgid "Begin date" +msgstr "Fecha de inicio" + +#: ../../mobile/operation/module_graph.php:469 +msgid "Update graph" +msgstr "Actualizar gráfico" + +#: ../../mobile/operation/module_graph.php:479 +msgid "Error get the graph" +msgstr "Error al obtener el gráfico" + +#: ../../mobile/operation/events.php:267 +#: ../../include/functions_reporting_html.php:993 +#: ../../include/functions_reporting_html.php:1216 +#: ../../include/functions_reporting_html.php:1977 +#: ../../include/ajax/events.php:1475 +#: ../../include/functions_reporting.php:8437 +#: ../../include/functions_events.php:2442 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:6173 +#: ../../operation/events/events.php:1932 +#: ../../operation/events/events.build_table.php:413 +msgid "New event" +msgstr "Nuevo evento" + +#: ../../mobile/operation/events.php:272 +#: ../../include/functions_reporting_html.php:998 +#: ../../include/functions_reporting_html.php:1221 +#: ../../include/functions_reporting_html.php:1982 +#: ../../include/ajax/events.php:1480 +#: ../../include/functions_reporting.php:8442 +#: ../../include/functions_events.php:2447 +#: ../../include/functions_events.php:4384 +#: ../../include/functions_events.php:6178 +#: ../../operation/events/events.php:1936 +#: ../../operation/events/events.build_table.php:418 +msgid "Event validated" +msgstr "Evento validado" + +#: ../../mobile/operation/events.php:277 +#: ../../include/functions_reporting_html.php:1003 +#: ../../include/functions_reporting_html.php:1226 +#: ../../include/functions_reporting_html.php:1987 +#: ../../include/ajax/events.php:1485 +#: ../../include/functions_reporting.php:8447 +#: ../../include/functions_events.php:2452 +#: ../../include/functions_events.php:4390 +#: ../../include/functions_events.php:6183 +#: ../../operation/events/events.php:1940 +#: ../../operation/events/events.build_table.php:423 +msgid "Event in process" +msgstr "Evento en proceso" + +#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 +#: ../../mobile/operation/events.php:642 ../../mobile/operation/events.php:643 +msgid "Preset Filters" +msgstr "Fijar los filtros" + +#: ../../mobile/operation/events.php:485 +msgid "ERROR: Event detail" +msgstr "ERROR: detalles del evento" + +#: ../../mobile/operation/events.php:486 +msgid "Error connecting to DB." +msgstr "Error al conectar con la base de datos" + +#: ../../mobile/operation/events.php:501 +msgid "Event detail" +msgstr "Detalles del evento" + +#: ../../mobile/operation/events.php:512 +#: ../../include/functions_events.php:4498 +#: ../../include/functions_events.php:6013 +#: ../../operation/events/events.build_table.php:162 +msgid "Event ID" +msgstr "ID del evento" + +#: ../../mobile/operation/events.php:540 +#: ../../include/functions_events.php:4587 +msgid "Acknowledged by" +msgstr "Admitido por" + +#: ../../mobile/operation/events.php:584 +msgid "Sucessful validate" +msgstr "Validación correcta" + +#: ../../mobile/operation/events.php:586 +msgid "Fail validate" +msgstr "Validación fallida" + +#: ../../mobile/operation/events.php:624 +#, php-format +msgid "Filter Events by %s" +msgstr "Filtrar eventos por %s" + +#: ../../mobile/operation/events.php:858 +#: ../../include/functions_reporting_html.php:4893 +#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting.php:1834 +#: ../../include/functions_reporting.php:2124 +#: ../../include/functions_events.php:2366 +#: ../../include/functions_events.php:2369 +#: ../../operation/events/events.build_table.php:134 +#: ../../operation/events/events.build_table.php:1142 +msgid "No events" +msgstr "No hay eventos" + +#: ../../mobile/operation/events.php:1153 +#, php-format +msgid "Filter: %s" +msgstr "Filtro: %s" + +#: ../../mobile/operation/events.php:1165 +#, php-format +msgid "Severity: %s" +msgstr "Gravedad: %s" + +#: ../../mobile/operation/events.php:1194 +#, php-format +msgid "Type: %s" +msgstr "Tipo: %s" + +#: ../../mobile/operation/events.php:1208 +#, php-format +msgid "Free search: %s" +msgstr "Búsqueda libre: %s" + +#: ../../mobile/operation/events.php:1215 +#, php-format +msgid "Hours: %s" +msgstr "Horas: %s" + +#: ../../mobile/operation/tactical.php:216 +msgid "Last activity" +msgstr "Última actividad" + +#: ../../include/functions_visual_map_editor.php:62 msgid "" -"The current authentication scheme doesn't support creating users on %s" -msgstr "El sistema de autenticación no permite crear usuarios en %s." - -#: ../../godmode/users/configure_user.php:241 -msgid "User ID cannot be empty" -msgstr "El ID de usuario no puede estar vacío." - -#: ../../godmode/users/configure_user.php:247 -msgid "Invalid user ID: leading or trailing blank spaces not allowed" +"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 "" -"ID de usuario no válido: no están permitidos los espacios en blanco al " -"principio o al final" +"Para usar el campo \"etiqueta\", debe escribir\n" +"\t\t\t\t\tun texto para reemplazar '(_VALUE_)' y el valor del módulo se " +"grabará al final." -#: ../../godmode/users/configure_user.php:253 -msgid "Passwords cannot be empty" -msgstr "Las contraseñas no pueden estar vacías." +#: ../../include/functions_visual_map_editor.php:69 +#: ../../include/functions_visual_map_editor.php:1306 +#: ../../include/functions_visual_map.php:4170 +#: ../../include/rest-api/models/VisualConsole/Item.php:1985 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:260 +msgid "Clock" +msgstr "Reloj" -#: ../../godmode/users/configure_user.php:259 -msgid "Passwords didn't match" -msgstr "Las contraseñas no coinciden." +#: ../../include/functions_visual_map_editor.php:108 +#: ../../include/functions_visual_map_editor.php:134 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 +msgid "Border color" +msgstr "Color del borde" -#: ../../godmode/users/configure_user.php:271 -#: ../../enterprise/include/functions_login.php:288 -msgid "Password must contain numbers" -msgstr "La contraseña tiene que contener números." +#: ../../include/functions_visual_map_editor.php:152 +msgid "Border width" +msgstr "Ancho del borde" -#: ../../godmode/users/configure_user.php:284 -#: ../../enterprise/include/functions_login.php:301 -msgid "Password must contain symbols" -msgstr "La contraseña tiene que contener símbolos." +#: ../../include/functions_visual_map_editor.php:161 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 +msgid "Fill color" +msgstr "Color de relleno" -#: ../../godmode/users/configure_user.php:347 +#: ../../include/functions_visual_map_editor.php:217 msgid "" -"Strict ACL is not recommended for admin users because performance could be " -"affected." +"Scroll the mouse wheel over the label editor to change the background color" msgstr "" -"ACL estricto no está recomendado para usuarios administradores porque el " -"rendimiento podría verse afectado." +"Desliza la rueda del ratón sobre el editor de etiquetas para cambiar el " +"color de fondo." -#: ../../godmode/users/configure_user.php:449 -#: ../../godmode/users/configure_user.php:473 -#: ../../godmode/users/configure_user.php:536 -#: ../../godmode/users/configure_user.php:543 -#: ../../godmode/users/configure_user.php:574 -#: ../../operation/users/user_edit.php:190 -#: ../../operation/users/user_edit.php:233 -msgid "User info successfully updated" -msgstr "Información del usuario actualizada correctamente" +#: ../../include/functions_visual_map_editor.php:233 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 +msgid "Clock animation" +msgstr "Animación de reloj" -#: ../../godmode/users/configure_user.php:450 -#: ../../godmode/users/configure_user.php:474 -#: ../../godmode/users/configure_user.php:537 -#: ../../godmode/users/configure_user.php:544 -#: ../../godmode/users/configure_user.php:575 -msgid "Error updating user info (no change?)" -msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)" +#: ../../include/functions_visual_map_editor.php:236 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 +msgid "Simple analogic" +msgstr "Analógico" -#: ../../godmode/users/configure_user.php:490 -msgid "Passwords does not match" -msgstr "Las contraseñas no coinciden." +#: ../../include/functions_visual_map_editor.php:237 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 +msgid "Simple digital" +msgstr "Digital" -#: ../../godmode/users/configure_user.php:564 -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." +#: ../../include/functions_visual_map_editor.php:251 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 +msgid "Time format" +msgstr "Formato de hora" -#: ../../godmode/users/configure_user.php:604 -msgid "Profile added successfully" -msgstr "Perfil añadido correctamente" +#: ../../include/functions_visual_map_editor.php:254 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 +msgid "Only time" +msgstr "Solo la hora" -#: ../../godmode/users/configure_user.php:605 -msgid "Profile cannot be added" -msgstr "El perfil no se puede añadir." +#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 +msgid "Time and date" +msgstr "Hora y fecha" -#: ../../godmode/users/configure_user.php:643 -msgid "Update User" -msgstr "Actualizar usuario" - -#: ../../godmode/users/configure_user.php:645 -msgid "Create User" -msgstr "Crear usuario" - -#: ../../godmode/users/configure_user.php:660 -#: ../../godmode/users/user_list.php:331 -#: ../../include/functions_reporting_html.php:3952 -#: ../../operation/search_users.php:34 -#: ../../operation/snmpconsole/snmp_view.php:821 -#: ../../operation/users/user_edit.php:243 -msgid "User ID" -msgstr "ID usuario" - -#: ../../godmode/users/configure_user.php:674 -#: ../../operation/users/user_edit.php:257 -msgid "Full (display) name" -msgstr "Nombre completo" - -#: ../../godmode/users/configure_user.php:688 -#: ../../operation/users/user_edit.php:307 -#: ../../enterprise/extensions/translate_string.php:302 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:171 -msgid "Language" -msgstr "Idioma" - -#: ../../godmode/users/configure_user.php:699 -#: ../../operation/users/user_edit.php:395 -msgid "Timezone" +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 +msgid "Time zone" msgstr "Zona horaria" -#: ../../godmode/users/configure_user.php:717 -#: ../../operation/users/user_edit.php:283 -msgid "Password confirmation" -msgstr "Confirmar contraseña" +#: ../../include/functions_visual_map_editor.php:307 +msgid "Enable link" +msgstr "Activar enlace" -#: ../../godmode/users/configure_user.php:735 -msgid "Global Profile" -msgstr "Perfil global" +#: ../../include/functions_visual_map_editor.php:328 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:444 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:505 +msgid "White" +msgstr "Blanco" -#: ../../godmode/users/configure_user.php:739 -#: ../../godmode/users/user_list.php:487 ../../operation/search_users.php:52 -msgid "Administrator" -msgstr "Administrador" +#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:445 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:506 +msgid "Black" +msgstr "Negro" -#: ../../godmode/users/configure_user.php:740 +#: ../../include/functions_visual_map_editor.php:330 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:446 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:507 +msgid "Transparent" +msgstr "Transparente" + +#: ../../include/functions_visual_map_editor.php:344 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:480 +msgid "Grid color" +msgstr "Color de cuadrícula" + +#: ../../include/functions_visual_map_editor.php:464 +msgid "Data image" +msgstr "Datos en imagen" + +#: ../../include/functions_visual_map_editor.php:469 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 +msgid "Resume data color" +msgstr "Color de la leyenda" + +#: ../../include/functions_visual_map_editor.php:483 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:228 +msgid "24h" +msgstr "24h" + +#: ../../include/functions_visual_map_editor.php:484 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:230 +msgid "8h" +msgstr "8h" + +#: ../../include/functions_visual_map_editor.php:485 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:231 +msgid "2h" +msgstr "2h" + +#: ../../include/functions_visual_map_editor.php:486 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:232 +msgid "1h" +msgstr "1h" + +#: ../../include/functions_visual_map_editor.php:490 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:236 +msgid "Max. Time" +msgstr "Tiempo máximo" + +#: ../../include/functions_visual_map_editor.php:572 +msgid "Original Size" +msgstr "Tamaño original" + +#: ../../include/functions_visual_map_editor.php:580 +msgid "Aspect ratio" +msgstr "Relación de aspecto" + +#: ../../include/functions_visual_map_editor.php:581 +msgid "Proportional Width" +msgstr "Ancho proporcional" + +#: ../../include/functions_visual_map_editor.php:589 +msgid "Height proportional" +msgstr "Altura proporcional" + +#: ../../include/functions_visual_map_editor.php:620 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:454 +msgid "Circular porgress bar" +msgstr "Barra de progreso circular" + +#: ../../include/functions_visual_map_editor.php:621 +#: ../../include/functions_visual_map.php:4195 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:456 +#: ../../include/rest-api/models/VisualConsole/Item.php:2009 +msgid "Circular progress bar (interior)" +msgstr "Barra de progreso circular (interior)" + +#: ../../include/functions_visual_map_editor.php:671 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:516 +msgid "Element color" +msgstr "Color del elemento" + +#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:528 +msgid "Value color" +msgstr "Color del valor" + +#: ../../include/functions_visual_map_editor.php:733 +msgid "Diameter" +msgstr "Diámetro" + +#: ../../include/functions_visual_map_editor.php:740 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:425 +msgid "Default color" +msgstr "Color predeterminado" + +#: ../../include/functions_visual_map_editor.php:744 msgid "" -"This user has permissions to manage all. An admin user should not requiere " -"additional group permissions, except for using Enterprise ACL." +"The color of the element will be the one selected in the first range created " +"in which the value of the module is found (with the initial and final values " +"of the range included)" msgstr "" -"Este usuario tiene permisos para configurar todo. Un usuario administrador " -"no debería requerir permisos adicionales de grupo, excepto para usar ACL " -"Enterprise." +"El color del elemento será el seleccionado en el primer intervalo creado, en " +"el que se encuentra el valor del módulo (con los valores iniciales y finales " +"del intervalo incluidos)" -#: ../../godmode/users/configure_user.php:745 -#: ../../operation/search_users.php:61 -msgid "Standard User" -msgstr "Usuario estándar" +#: ../../include/functions_visual_map_editor.php:747 +msgid "Ranges" +msgstr "Intervalos" -#: ../../godmode/users/configure_user.php:746 +#: ../../include/functions_visual_map_editor.php:747 +msgid "From value" +msgstr "Desde el valor" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "To value" +msgstr "Hasta el valor" + +#: ../../include/functions_visual_map_editor.php:747 +#: ../../include/rest-api/index.php:322 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:470 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:529 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:481 +msgid "Color" +msgstr "Color" + +#: ../../include/functions_visual_map_editor.php:752 +msgid "Always show on top" +msgstr "Mostrar siempre arriba" + +#: ../../include/functions_visual_map_editor.php:753 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" +"It allows the element to be superimposed to the rest of items of the visual " +"console" 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." +"Permite que el elemento se superponga al resto de los elementos de la " +"consola visual" -#: ../../godmode/users/configure_user.php:749 -#: ../../godmode/users/user_list.php:477 -#: ../../operation/users/user_edit.php:276 -msgid "E-mail" -msgstr "Correo electrónico" +#: ../../include/functions_visual_map_editor.php:756 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:341 +msgid "Hide last value on boolean modules" +msgstr "Ocultar el último valor en módulos boleanos" -#: ../../godmode/users/configure_user.php:763 -#: ../../operation/users/user_edit.php:278 -msgid "Phone number" -msgstr "Número de teléfono" +#: ../../include/functions_visual_map_editor.php:762 +msgid "Show last value" +msgstr "Mostrar último valor" -#: ../../godmode/users/configure_user.php:815 -msgid "Search custom field view" -msgstr "Buscar vista de campo personalizado" - -#: ../../godmode/users/configure_user.php:815 -msgid "Load by default the selected view in custom field view" +#: ../../include/functions_visual_map_editor.php:844 +msgid "For use the original image file size, set 0 width and 0 height." msgstr "" -"Cargar por defecto la vista seleccionada en la vista de campo personalizado" +"Para usar el tamaño original de la imagen, configura en 0 el ancho y en 0 el " +"alto." -#: ../../godmode/users/configure_user.php:832 -msgid "Use global conf" -msgstr "Usar configuración global" +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/rest-api/models/VisualConsole/Item.php:2303 +msgid "Linked visual console" +msgstr "Consola visual enlazada" -#: ../../godmode/users/configure_user.php:837 -#: ../../operation/users/user_edit.php:336 -msgid "Home screen" -msgstr "Pantalla de inicio" +#: ../../include/functions_visual_map_editor.php:1007 +#: ../../include/rest-api/models/VisualConsole/Item.php:2362 +msgid "Type of the status calculation of the linked visual console" +msgstr "Tipo de cálculo de estado de la consola visual enlazada" -#: ../../godmode/users/configure_user.php:837 -#: ../../operation/users/user_edit.php:336 +#: ../../include/functions_visual_map_editor.php:1032 +#: ../../include/rest-api/models/VisualConsole/Item.php:2378 +msgid "Linked visual console weight" +msgstr "Peso de la consola visual enlazada" + +#: ../../include/functions_visual_map_editor.php:1099 +msgid "Lines haven't advanced options" +msgstr "Las líneas no tienen opciones avanzadas." + +#: ../../include/functions_visual_map_editor.php:1116 +#: ../../include/rest-api/models/VisualConsole/Item.php:2062 +msgid "Restrict access to group" +msgstr "Restringir acceso al grupo" + +#: ../../include/functions_visual_map_editor.php:1127 msgid "" -"User can customize the home page. By default, will display 'Agent Detail'. " -"Example: Select 'Other' and type " -"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 to show " -"agent detail view" +"If selected, restrict visualization of this item in the visual console to " +"users who have access to selected group. This is also used on calculating " +"child visual consoles." msgstr "" -"El usuario puede personalizar la página de inicio. Mostrará \"Detalle de " -"agente\" por defecto. Ejemplo: seleccionar \"otro\" y escribir " -"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para " -"mostrar la vista de detalle de agente" +"Si se selecciona, se restringirá la visualización de este elemento en la " +"consola visual a los usuarios que tengan acceso al grupo seleccionado. " +"También se utiliza para calcular consolas visuales de los hijos." -#: ../../godmode/users/configure_user.php:843 -#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:99 -#: ../../operation/agentes/tactical.php:54 ../../operation/menu.php:43 -#: ../../operation/users/user_edit.php:342 -#: ../../enterprise/dashboard/widgets/tactical.php:28 -#: ../../enterprise/dashboard/widgets/tactical.php:203 -#: ../../enterprise/meta/general/main_header.php:103 -#: ../../enterprise/meta/monitoring/tactical.php:63 -msgid "Tactical view" -msgstr "Vista táctica" +#: ../../include/functions_visual_map_editor.php:1158 +#: ../../include/rest-api/models/VisualConsole/Item.php:2075 +msgid "Cache expiration" +msgstr "Caducidad del caché" -#: ../../godmode/users/configure_user.php:844 -#: ../../operation/agentes/alerts_status.php:177 ../../operation/menu.php:61 -#: ../../operation/users/user_edit.php:343 -msgid "Alert detail" -msgstr "Detalle de alertas" +#: ../../include/functions_visual_map_editor.php:1197 +msgid "Click start point
of the line" +msgstr "Haz clic en el punto de inicio
de la línea" -#: ../../godmode/users/configure_user.php:845 -msgid "External link" -msgstr "Enlace externo" +#: ../../include/functions_visual_map_editor.php:1200 +msgid "Click end point
of the line" +msgstr "Haz clic en el punto final
de la línea" -#: ../../godmode/users/configure_user.php:849 -#: ../../include/class/OrderInterpreter.class.php:219 -#: ../../mobile/include/functions_web.php:20 -#: ../../operation/users/user_edit.php:347 -#: ../../enterprise/extensions/vmware/vmware_view.php:1284 -#: ../../enterprise/extensions/vmware/vmware_view.php:1304 -#: ../../enterprise/mobile/operation/dashboard.php:247 -#: ../../enterprise/operation/menu.php:143 -msgid "Dashboard" -msgstr "Dashboard" +#: ../../include/functions_visual_map_editor.php:1300 +#: ../../operation/visual_console/view.php:230 +msgid "Serialized pie graph" +msgstr "Gráfico circular serializado" -#: ../../godmode/users/configure_user.php:895 -msgid "Metaconsole access" -msgstr "Acceso a la Metaconsola" +#: ../../include/functions_visual_map_editor.php:1301 +#: ../../operation/visual_console/view.php:235 +msgid "Bars Graph" +msgstr "Gráfico de barras" -#: ../../godmode/users/configure_user.php:913 -msgid "Not Login" -msgstr "No se inicia la sesión" +#: ../../include/functions_visual_map_editor.php:1323 +msgid "Show grid" +msgstr "Mostrar cuadrícula" -#: ../../godmode/users/configure_user.php:914 -msgid "The user with not login set only can access to API." -msgstr "El usuario sin permiso de acceso solo puede tener acceso a la API." +#: ../../include/functions_visual_map_editor.php:1325 +msgid "Delete item" +msgstr "Borrar elemento" -#: ../../godmode/users/configure_user.php:917 -msgid "Session Time" -msgstr "TIempo de sesión" +#: ../../include/functions_visual_map_editor.php:1326 +msgid "Copy item" +msgstr "Copiar elemento" -#: ../../godmode/users/configure_user.php:932 -msgid "Default event filter" -msgstr "Filtro de evento por defecto" +#: ../../include/functions_visual_map_editor.php:1366 +#: ../../include/functions_visual_map_editor.php:1370 +#: ../../include/functions_visual_map_editor.php:1374 +#: ../../include/functions_visual_map_editor.php:1378 +#: ../../include/functions_visual_map_editor.php:1382 +#: ../../include/functions_visual_map_editor.php:1386 +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../include/functions_visual_map_editor.php:1394 +#: ../../include/functions_visual_map_editor.php:1398 +#: ../../include/functions_visual_map_editor.php:1402 +#: ../../include/functions_visual_map_editor.php:1406 +#: ../../include/functions_visual_map_editor.php:1410 +#: ../../include/functions_visual_map_editor.php:1414 +#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1422 +#: ../../include/functions_visual_map_editor.php:1426 +#: ../../include/functions_visual_map_editor.php:1430 +#: ../../include/functions_visual_map_editor.php:1434 +#: ../../include/functions_visual_map_editor.php:1438 +msgid "Visual Console Builder Information" +msgstr "Información del desarrollador de la consola visual" -#: ../../godmode/users/configure_user.php:935 -#: ../../include/functions_config.php:447 -msgid "Disabled newsletter" -msgstr "Newsletter deshabilitada" +#: ../../include/functions_visual_map_editor.php:1367 +msgid "Min allowed size is 1024x768." +msgstr "El tamaño mín. permitido es 1024x768." -#: ../../godmode/users/configure_user.php:950 -#: ../../operation/users/user_edit.php:678 -msgid "eHorus user acces enabled" -msgstr "Acceso de usuario eHorus habilitado" +#: ../../include/functions_visual_map_editor.php:1371 +#: ../../include/functions_visual_map_editor.php:1439 +msgid "No custom graph defined." +msgstr "No hay gráfica personalizada definida." -#: ../../godmode/users/configure_user.php:952 -#: ../../include/functions_config.php:1457 -msgid "eHorus user" -msgstr "Usuario de eHorus" +#: ../../include/functions_visual_map_editor.php:1375 +msgid "No image or name defined." +msgstr "No se ha definido ningún nombre o imagen." -#: ../../godmode/users/configure_user.php:953 -#: ../../include/functions_config.php:1461 -msgid "eHorus password" -msgstr "Contraseña de eHorus" +#: ../../include/functions_visual_map_editor.php:1379 +msgid "No label defined." +msgstr "No se ha definido ninguna etiqueta." -#: ../../godmode/users/configure_user.php:963 -msgid "Enable agents managment" -msgstr "Habilitar gestión de agentes" +#: ../../include/functions_visual_map_editor.php:1383 +msgid "No service defined." +msgstr "No hay servicio definido." -#: ../../godmode/users/configure_user.php:970 -msgid "Assigned node" -msgstr "Nodo asignado" +#: ../../include/functions_visual_map_editor.php:1387 +msgid "No image defined." +msgstr "No se ha definido ninguna imagen." -#: ../../godmode/users/configure_user.php:970 -msgid "Server where the agents created of this user will be placed" -msgstr "Servidor donde se ubicarán los agentes creados por este usuario" +#: ../../include/functions_visual_map_editor.php:1391 +msgid "No process defined." +msgstr "No hay ningún proceso definido." -#: ../../godmode/users/configure_user.php:983 -msgid "Enable node access" -msgstr "Habilitar el acceso al nodo" +#: ../../include/functions_visual_map_editor.php:1395 +msgid "No Max value defined." +msgstr "No hay ningún valor máximo definido." -#: ../../godmode/users/configure_user.php:983 -msgid "With this option enabled, the user will can access to nodes console" +#: ../../include/functions_visual_map_editor.php:1399 +msgid "No width defined." +msgstr "No hay margen definido." + +#: ../../include/functions_visual_map_editor.php:1403 +msgid "No height defined." +msgstr "Altura sin definir" + +#: ../../include/functions_visual_map_editor.php:1407 +msgid "The width must not exceed the size of the visual console container." msgstr "" -"Con esta opción habilitada, el usuario podrá tener acceso a los nodos de la " -"consola." +"El ancho no debe exceder el tamaño del contenedor de la consola visual." -#: ../../godmode/users/profile_list.php:80 -#: ../../godmode/users/user_list.php:221 -msgid "There was a problem deleting the profile" -msgstr "Error al borrar el perfil" +#: ../../include/functions_visual_map_editor.php:1411 +msgid "The height must not exceed the size of the visual console container." +msgstr "" +"La altura no debe exceder el tamaño del contenedor de la consola visual." -#: ../../godmode/users/profile_list.php:207 -msgid "There was a problem updating this profile" -msgstr "Error al borrar el perfil" +#: ../../include/functions_visual_map_editor.php:1415 +msgid "No period defined." +msgstr "No hay ningún período definido." -#: ../../godmode/users/profile_list.php:210 -msgid "Profile name cannot be empty" -msgstr "El nombre de perfil no puede estar vacío." +#: ../../include/functions_visual_map_editor.php:1419 +msgid "No agent defined." +msgstr "No hay ningún agente definido." -#: ../../godmode/users/profile_list.php:256 -#: ../../godmode/users/profile_list.php:259 -msgid "There was a problem creating this profile" -msgstr "Error al crear el perfil" +#: ../../include/functions_visual_map_editor.php:1423 +msgid "No module defined." +msgstr "No hay ningún módulo definido." -#: ../../godmode/users/profile_list.php:278 -#: ../../enterprise/extensions/disabled/check_acls.php:49 -#: ../../enterprise/extensions/disabled/check_acls.php:142 -msgid "System incidents reading" -msgstr "Lectura de incidentes del sistema" +#: ../../include/functions_visual_map_editor.php:1427 +msgid "No module defined. This module must be string type." +msgstr "No hay módulo definido. Este módulo debe ser del tipo cadena." -#: ../../godmode/users/profile_list.php:279 -#: ../../enterprise/extensions/disabled/check_acls.php:50 -#: ../../enterprise/extensions/disabled/check_acls.php:143 -msgid "System incidents writing" -msgstr "Escritura de incidentes del sistema" +#: ../../include/functions_visual_map_editor.php:1431 +msgid "Successfully save the changes." +msgstr "Cambios guardados con éxito" -#: ../../godmode/users/profile_list.php:280 -#: ../../enterprise/extensions/disabled/check_acls.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:144 -msgid "System incidents management" -msgstr "Gestión de incidentes del sistema" +#: ../../include/functions_visual_map_editor.php:1435 +msgid "Could not be save." +msgstr "No se ha podido guardar." -#: ../../godmode/users/profile_list.php:281 -#: ../../enterprise/extensions/disabled/check_acls.php:52 -#: ../../enterprise/extensions/disabled/check_acls.php:145 -msgid "Agents reading" -msgstr "Lectura de agentes" +#: ../../include/graphs/export_data.php:68 +#: ../../include/graphs/export_data.php:128 +msgid "An error occured exporting the data" +msgstr "Error al exportar los datos" -#: ../../godmode/users/profile_list.php:282 -#: ../../include/functions_menu.php:501 -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:146 -msgid "Agents management" -msgstr "Gestión de agentes" +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2717 +#: ../../include/functions_graph.php:2765 +msgid "Out of limits" +msgstr "Fuera de límites" -#: ../../godmode/users/profile_list.php:283 -#: ../../enterprise/extensions/disabled/check_acls.php:54 -#: ../../enterprise/extensions/disabled/check_acls.php:147 -msgid "Agents disable" -msgstr "Deshabilitar agentes" +#: ../../include/graphs/functions_flot.php:347 +msgid "Cancel zoom" +msgstr "Cancelar el zoom" -#: ../../godmode/users/profile_list.php:284 -#: ../../enterprise/extensions/disabled/check_acls.php:55 -#: ../../enterprise/extensions/disabled/check_acls.php:148 -msgid "Alerts editing" -msgstr "Edición de alertas" +#: ../../include/graphs/functions_flot.php:349 +msgid "Warning and Critical thresholds" +msgstr "Umbrales de advertencia y crítico" -#: ../../godmode/users/profile_list.php:285 -#: ../../enterprise/extensions/disabled/check_acls.php:58 -#: ../../enterprise/extensions/disabled/check_acls.php:151 -msgid "Alerts management" -msgstr "Gestión de alertas" +#: ../../include/graphs/functions_flot.php:354 +msgid "Overview graph" +msgstr "Gráfico de vista general" -#: ../../godmode/users/profile_list.php:287 -#: ../../enterprise/extensions/disabled/check_acls.php:57 -#: ../../enterprise/extensions/disabled/check_acls.php:150 -msgid "Database management" -msgstr "Gestión de la BD" +#: ../../include/graphs/functions_flot.php:468 +#: ../../include/functions_reporting_html.php:595 +#: ../../include/functions_reporting_html.php:3448 +#: ../../include/functions_treeview.php:319 +#: ../../include/functions_visual_map.php:2854 +#: ../../include/functions_visual_map.php:2869 +msgid "No data" +msgstr "Sin datos" -#: ../../godmode/users/profile_list.php:288 -#: ../../enterprise/extensions/disabled/check_acls.php:62 -#: ../../enterprise/extensions/disabled/check_acls.php:155 -msgid "Events reading" -msgstr "Lectura de eventos" +#: ../../include/functions_servers.php:560 +#: ../../include/functions_servers.php:1187 +msgid "Data server" +msgstr "Servidor de datos" -#: ../../godmode/users/profile_list.php:289 -#: ../../enterprise/extensions/disabled/check_acls.php:63 -#: ../../enterprise/extensions/disabled/check_acls.php:156 -msgid "Events writing" -msgstr "Escritura de eventos" +#: ../../include/functions_servers.php:570 +#: ../../include/functions_servers.php:1190 +msgid "Network server" +msgstr "Servidor de red" -#: ../../godmode/users/profile_list.php:290 -#: ../../enterprise/extensions/disabled/check_acls.php:64 -#: ../../enterprise/extensions/disabled/check_acls.php:157 -msgid "Events management" -msgstr "Gestión de eventos" +#: ../../include/functions_servers.php:580 +msgid "SNMP Trap server" +msgstr "Servidor de traps SNMP" -#: ../../godmode/users/profile_list.php:291 -#: ../../enterprise/extensions/disabled/check_acls.php:59 -#: ../../enterprise/extensions/disabled/check_acls.php:152 -msgid "Reports reading" -msgstr "Lectura de informes" +#: ../../include/functions_servers.php:600 +#: ../../include/functions_servers.php:1202 +msgid "Plugin server" +msgstr "Servidor de plugins" -#: ../../godmode/users/profile_list.php:292 -#: ../../enterprise/extensions/disabled/check_acls.php:60 -#: ../../enterprise/extensions/disabled/check_acls.php:153 -msgid "Reports writing" -msgstr "Escritura de informes" +#: ../../include/functions_servers.php:620 +#: ../../include/functions_servers.php:1208 +msgid "WMI server" +msgstr "Servidor WMI" -#: ../../godmode/users/profile_list.php:293 -#: ../../enterprise/extensions/disabled/check_acls.php:61 -#: ../../enterprise/extensions/disabled/check_acls.php:154 -msgid "Reports management" -msgstr "Gestión de informes" +#: ../../include/functions_servers.php:640 +#: ../../include/functions_servers.php:1217 +msgid "Inventory server" +msgstr "Servidor de inventario" -#: ../../godmode/users/profile_list.php:294 -msgid "Network maps reading" -msgstr "Lectura de mapas de red" +#: ../../include/functions_servers.php:650 +#: ../../include/functions_servers.php:1211 +msgid "Web server" +msgstr "Servidor web" -#: ../../godmode/users/profile_list.php:295 -msgid "Network maps writing" -msgstr "Escritura de mapas de red" +#: ../../include/functions_servers.php:660 +#: ../../include/functions_servers.php:1220 +msgid "Event server" +msgstr "Servidor de eventos" -#: ../../godmode/users/profile_list.php:296 -msgid "Network maps management" -msgstr "Gestión de mapas de red" +#: ../../include/functions_servers.php:670 +#: ../../include/functions_servers.php:1196 +msgid "Enterprise ICMP server" +msgstr "Servidor ICMP Enterprise" -#: ../../godmode/users/profile_list.php:297 -msgid "Visual console reading" -msgstr "Lectura de consola visual" +#: ../../include/functions_servers.php:680 +#: ../../include/functions_servers.php:1199 +msgid "Enterprise SNMP server" +msgstr "Servidor SNMP Enterprise" -#: ../../godmode/users/profile_list.php:298 -msgid "Visual console writing" -msgstr "Escritura de consola visual" +#: ../../include/functions_servers.php:690 +msgid "Enterprise Satellite server" +msgstr "Servidor Enterprise Satélite" -#: ../../godmode/users/profile_list.php:299 -msgid "Visual console management" -msgstr "Gestión de consola visual" +#: ../../include/functions_servers.php:700 +msgid "Enterprise Transactional server" +msgstr "Servidor transaccional Enterprise" -#: ../../godmode/users/profile_list.php:300 -#: ../../enterprise/extensions/disabled/check_acls.php:65 -#: ../../enterprise/extensions/disabled/check_acls.php:158 -msgid "Systems management" -msgstr "Gestión de sistemas" +#: ../../include/functions_servers.php:710 +msgid "Mainframe server" +msgstr "Servidor mainframe" -#: ../../godmode/users/profile_list.php:375 -msgid "There are no defined profiles" -msgstr "No hay perfiles definidos" +#: ../../include/functions_servers.php:720 +msgid "Sync server" +msgstr "Servidor sync" -#: ../../godmode/users/user_list.php:145 +#: ../../include/functions_servers.php:730 +msgid "Wux server" +msgstr "Servidor WUX" + +#: ../../include/functions_servers.php:740 +#: ../../include/functions_servers.php:1226 +msgid "Log server" +msgstr "Servidor de registros" + +#: ../../include/functions_servers.php:750 +msgid "Autoprovision server" +msgstr "Servidor de auto aprovisionamiento" + +#: ../../include/functions_servers.php:760 +msgid "Migration server" +msgstr "Servidor de migración" + +#: ../../include/functions_servers.php:1193 +msgid "SNMP server" +msgstr "Servidor SNMP" + +#: ../../include/functions_servers.php:1205 +msgid "Prediction Server" +msgstr "Servidor de predicción" + +#: ../../include/functions_servers.php:1229 +msgid "WUX server" +msgstr "Servidor WUX" + +#: ../../include/functions_reporting_html.php:94 +msgid "Label: " +msgstr "Etiqueta: " + +#: ../../include/functions_reporting_html.php:526 +msgid "Global Time" +msgstr "Tiempo global" + +#: ../../include/functions_reporting_html.php:528 +msgid "Time Failed" +msgstr "Tiempo en fallo" + +#: ../../include/functions_reporting_html.php:532 +msgid "Downtime" +msgstr "Parada planificada" + +#: ../../include/functions_reporting_html.php:557 +msgid "Checks Time" +msgstr "Tiempo de comprobaciones" + +#: ../../include/functions_reporting_html.php:725 +#: ../../include/functions_reporting_html.php:3297 +#: ../../include/functions_reporting_html.php:3785 +#: ../../include/functions_reporting_html.php:3788 +#: ../../include/functions_reporting.php:1449 +#: ../../include/functions_reporting.php:2490 +msgid "There are no Agent/Modules defined" +msgstr "No hay Agentes/Módulos definidos" + +#: ../../include/functions_reporting_html.php:911 +#: ../../include/functions_reporting_html.php:1838 +#: ../../include/functions_reporting_html.php:3334 +#: ../../include/functions_reporting_html.php:3812 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Min Value" +msgstr "Valor mínimo" + +#: ../../include/functions_reporting_html.php:912 +#: ../../include/functions_reporting_html.php:1839 +#: ../../include/functions_reporting_html.php:3335 +#: ../../include/functions_reporting_html.php:3813 +msgid "Average Value" +msgstr "Valor medio" + +#: ../../include/functions_reporting_html.php:913 +#: ../../include/functions_reporting_html.php:1840 +#: ../../include/functions_reporting_html.php:3332 +#: ../../include/functions_reporting_html.php:3815 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Max Value" +msgstr "Valor máximo" + +#: ../../include/functions_reporting_html.php:967 +#: ../../include/functions_reporting_html.php:975 +#: ../../include/functions_reporting_html.php:1961 +msgid "Val. by" +msgstr "Val. por" + +#: ../../include/functions_reporting_html.php:1034 #, php-format -msgid "Users defined on %s" -msgstr "Usuarios definidos en %s" +msgid "%s System" +msgstr "Sistema %s" -#: ../../godmode/users/user_list.php:167 +#: ../../include/functions_reporting_html.php:1082 +#: ../../include/functions_reporting_html.php:1282 +msgid "Events by agent" +msgstr "Eventos por agente" + +#: ../../include/functions_reporting_html.php:1099 +#: ../../include/functions_reporting_html.php:1299 +msgid "Events by user validator" +msgstr "Eventos por usuario validador" + +#: ../../include/functions_reporting_html.php:1116 +#: ../../include/functions_reporting_html.php:1316 +msgid "Events by Severity" +msgstr "Eventos por gravedad" + +#: ../../include/functions_reporting_html.php:1133 +#: ../../include/functions_reporting_html.php:1333 +msgid "Events validated vs unvalidated" +msgstr "Eventos validados vs no validados" + +#: ../../include/functions_reporting_html.php:1734 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "Celda gris cuando el módulo está en estado \"no iniciado\"" + +#: ../../include/functions_reporting_html.php:1904 +#: ../../include/functions_reporting_html.php:4382 +msgid "Monitors" +msgstr "Monitores" + +#: ../../include/functions_reporting_html.php:1923 +msgid "Events (not validated)" +msgstr "Eventos (no validados)" + +#: ../../include/functions_reporting_html.php:2060 +msgid "Events validated by user" +msgstr "Eventos validados por el usuario" + +#: ../../include/functions_reporting_html.php:2077 +#: ../../include/functions_reporting_html.php:4657 +msgid "Events by severity" +msgstr "Eventos por gravedad" + +#: ../../include/functions_reporting_html.php:2094 +#: ../../operation/events/event_statistics.php:75 +msgid "Amount events validated" +msgstr "Cantidad de eventos validados" + +#: ../../include/functions_reporting_html.php:2321 #, php-format -msgid "Deleted user %s" -msgstr "Usuario eliminado %s" +msgid "Interface '%s' throughput graph" +msgstr "Interfaz '%s' gráfico de rendimiento" -#: ../../godmode/users/user_list.php:174 ../../godmode/users/user_list.php:212 -msgid "There was a problem deleting the user" -msgstr "Error al borrar el usuario" +#: ../../include/functions_reporting_html.php:2325 +msgid "Mac" +msgstr "Mac" -#: ../../godmode/users/user_list.php:189 +#: ../../include/functions_reporting_html.php:2326 +msgid "Actual status" +msgstr "Estado actual" + +#: ../../include/functions_reporting_html.php:2648 +#: ../../include/functions_reporting_html.php:2650 +msgid "Empty modules" +msgstr "Módulos vacíos" + +#: ../../include/functions_reporting_html.php:2657 +msgid "Warning
Critical" +msgstr "Advertencia
Crítico" + +#: ../../include/functions_reporting_html.php:3065 +msgid "Time Not Init Module" +msgstr "Tiempo en módulo no iniciado" + +#: ../../include/functions_reporting_html.php:3076 +msgid "% Ok" +msgstr "% OK" + +#: ../../include/functions_reporting_html.php:3144 +msgid "Checks Uknown" +msgstr "Comprobaciones en desconocido" + +#: ../../include/functions_reporting_html.php:3525 +msgid "Primary" +msgstr "Primario" + +#: ../../include/functions_reporting_html.php:3927 +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:9040 +msgid "Alert level" +msgstr "Nivel de alerta" + +#: ../../include/functions_reporting_html.php:4156 #, php-format -msgid "Deleted user %s from metaconsole" -msgstr "Usuario %s eliminado de la Metaconsola" +msgid "Agents in group: %s" +msgstr "Agentes en el grupo: %s" -#: ../../godmode/users/user_list.php:200 +#: ../../include/functions_reporting_html.php:4258 +msgid "Last failure" +msgstr "Último fallo" + +#: ../../include/functions_reporting_html.php:4348 +msgid "N/A(*)" +msgstr "N/A(*)" + +#: ../../include/functions_reporting_html.php:4585 +#: ../../include/functions_reporting.php:9240 +msgid "Monitor checks" +msgstr "Comprobaciones de monitores" + +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting.php:9259 +msgid "Total agents and monitors" +msgstr "Total de agentes y monitores" + +#: ../../include/functions_reporting_html.php:4608 +#: ../../include/functions_reporting_html.php:4613 +msgid "Node overview" +msgstr "Resumen de nodos" + +#: ../../include/functions_reporting_html.php:4633 +#: ../../include/functions_reporting_html.php:4645 +msgid "Critical events" +msgstr "Eventos en estado crítico" + +#: ../../include/functions_reporting_html.php:4636 +#: ../../include/functions_reporting_html.php:4647 +msgid "Warning events" +msgstr "Eventos en estado de advertencia" + +#: ../../include/functions_reporting_html.php:4639 +#: ../../include/functions_reporting_html.php:4649 +msgid "OK events" +msgstr "Eventos OK" + +#: ../../include/functions_reporting_html.php:4642 +#: ../../include/functions_reporting_html.php:4651 +msgid "Unknown events" +msgstr "Eventos desconocidos" + +#: ../../include/functions_reporting_html.php:4667 +msgid "Important Events by Criticity" +msgstr "Eventos importantes por gravedad" + +#: ../../include/functions_reporting_html.php:4693 #, php-format -msgid "Deleted user %s from %s" -msgstr "Usuario %s eliminado de %s" +msgid "Last activity in %s console" +msgstr "Última actividad en la consola %s" -#: ../../godmode/users/user_list.php:206 +#: ../../include/functions_reporting_html.php:4784 +#: ../../include/functions_reporting_html.php:4925 +msgid "Events info (1hr.)" +msgstr "Información de eventos (1h)" + +#: ../../include/functions_reporting_html.php:5114 +msgid "Kilobytes" +msgstr "Kilobytes" + +#: ../../include/functions_reporting_html.php:5119 +msgid "No network traffic sent data" +msgstr "Datos de tráfico de red no enviado" + +#: ../../include/functions_reporting_html.php:5129 +msgid "Network traffic sent" +msgstr "Tráfico de red enviado" + +#: ../../include/functions_reporting_html.php:5136 +msgid "No network traffic received data" +msgstr "Datos de tráfico de red no recibido" + +#: ../../include/functions_reporting_html.php:5146 +msgid "Network traffic received" +msgstr "Tráfico de red recibido" + +#: ../../include/functions_reporting_html.php:5167 +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:5168 +msgid "" +"If the duration of the planned downtime is less than 5 minutes it will not " +"be represented in the graph" +msgstr "" +"Si la duración de la parada planificada es de menos de 5 minutos, no se " +"representará en el gráfico" + +#: ../../include/functions_reporting_html.php:5175 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:431 +msgid "Dates" +msgstr "Fechas" + +#: ../../include/functions_reporting_html.php:5206 +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:5206 +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.php:233 +msgid "," +msgstr "," + +#: ../../include/functions.php:503 ../../include/functions.php:643 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:504 ../../include/functions.php:644 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:505 ../../include/functions.php:645 +msgid "M" +msgstr "M" + +#: ../../include/functions.php:506 ../../include/functions.php:646 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 +#: ../../include/rest-api/models/VisualConsole/Item.php:1918 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:507 ../../include/functions.php:647 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:508 ../../include/functions.php:648 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:509 ../../include/functions.php:649 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1026 ../../include/functions.php:1271 +#: ../../include/functions.php:1305 ../../include/functions_graph.php:2883 +#: ../../include/functions_graph.php:3465 +#: ../../include/functions_graph.php:3466 +#: ../../include/functions_graph.php:4947 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:3096 +msgid "Maintenance" +msgstr "Mantenimiento" + +#: ../../include/functions.php:1030 ../../include/functions.php:1272 +#: ../../include/functions.php:1309 ../../include/functions_graph.php:3470 +#: ../../include/functions_graph.php:3471 +#: ../../include/functions_graph.php:4951 +#: ../../include/functions_events.php:3100 +msgid "Informational" +msgstr "Informativo" + +#: ../../include/functions.php:1046 ../../include/functions.php:1274 +#: ../../include/functions.php:1325 ../../include/functions_graph.php:3480 +#: ../../include/functions_graph.php:3481 +#: ../../include/functions_graph.php:4967 +msgid "Minor" +msgstr "Menor" + +#: ../../include/functions.php:1050 ../../include/functions.php:1276 +#: ../../include/functions.php:1329 ../../include/functions_graph.php:3490 +#: ../../include/functions_graph.php:3491 +#: ../../include/functions_graph.php:4971 +msgid "Major" +msgstr "Principal" + +#: ../../include/functions.php:1225 ../../include/functions_events.php:3020 +msgid "Monitor Critical" +msgstr "Monitor en estado crítico" + +#: ../../include/functions.php:1226 ../../include/functions_events.php:3024 +msgid "Monitor Warning" +msgstr "Monitor en estado de advertencia" + +#: ../../include/functions.php:1227 ../../include/functions_events.php:3028 +msgid "Monitor Normal" +msgstr "Monitor en estado normal" + +#: ../../include/functions.php:1229 +msgid "Monitor Unknown" +msgstr "Monitor en estado desconocido" + +#: ../../include/functions.php:1232 ../../include/functions_events.php:2654 +#: ../../include/functions_events.php:3036 +msgid "Alert recovered" +msgstr "Alerta recuperada" + +#: ../../include/functions.php:1233 ../../include/functions_events.php:2702 +#: ../../include/functions_events.php:3040 +msgid "Alert ceased" +msgstr "Alerta finalizada" + +#: ../../include/functions.php:1234 ../../include/functions_events.php:3044 +msgid "Alert manual validation" +msgstr "Validación manual de alerta" + +#: ../../include/functions.php:1236 +msgid "Agent created" +msgstr "Agente creado" + +#: ../../include/functions.php:1237 ../../include/functions_events.php:3048 +msgid "Recon host detected" +msgstr "Equipo de red detectado con recon" + +#: ../../include/functions.php:1240 ../../include/functions_events.php:2698 +#: ../../include/functions_events.php:3060 +msgid "Configuration change" +msgstr "Cambio de configuración" + +#: ../../include/functions.php:2535 #, php-format -msgid "Successfully deleted from %s" -msgstr "Eliminado correctamente de %s" +msgid "%s seconds" +msgstr "%s segundos" -#: ../../godmode/users/user_list.php:207 +#: ../../include/functions.php:2538 ../../include/functions.php:2539 #, php-format -msgid "There was a problem deleting the user from %s" -msgstr "Error al eliminar al usuario de %s" +msgid "%s minutes" +msgstr "%s minutos" -#: ../../godmode/users/user_list.php:237 -msgid "There was a problem disabling user" -msgstr "Error al deshabilitar el usuario" - -#: ../../godmode/users/user_list.php:243 -msgid "There was a problem enabling user" -msgstr "Error al habilitar el usuario" - -#: ../../godmode/users/user_list.php:272 ../../godmode/users/user_list.php:276 -msgid "Search by username, fullname or email" -msgstr "Buscar por nombre de usuario, nombre completo o email" - -#: ../../godmode/users/user_list.php:302 -msgid "Users control filter" -msgstr "Filtro de control de usuarios" - -#: ../../godmode/users/user_list.php:335 ../../godmode/users/user_list.php:486 -#: ../../operation/search_users.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:66 -#: ../../enterprise/extensions/disabled/check_acls.php:159 -#: ../../enterprise/godmode/servers/HA_cluster.php:137 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:626 -msgid "Admin" -msgstr "Administrador" - -#: ../../godmode/users/user_list.php:336 -msgid "Profile / Group" -msgstr "Perfil/Grupo" - -#: ../../godmode/users/user_list.php:531 ../../operation/search_users.php:75 -msgid "The user doesn't have any assigned profile/group" -msgstr "El usuario no tiene ningún perfil asignado." - -#: ../../godmode/users/user_list.php:545 -msgid "Deleting User" -msgstr "Borrando usuario" - -#: ../../godmode/users/user_list.php:547 -msgid "Delete from all consoles" -msgstr "Eliminar de todas las consolas" - -#: ../../godmode/users/user_list.php:547 +#: ../../include/functions.php:2547 ../../include/functions.php:2548 #, php-format -msgid "Deleting User %s from all consoles" -msgstr "Eliminando usuario %s de todas las consolas" +msgid "%s months" +msgstr "%s meses" -#: ../../godmode/users/user_list.php:565 -msgid "Create user" +#: ../../include/functions.php:2550 ../../include/functions.php:2551 +#, php-format +msgid "%s years" +msgstr "%s años" + +#: ../../include/functions.php:2553 +msgid "Default values will be used" +msgstr "Se usarán los valores por defecto" + +#: ../../include/functions.php:2742 +msgid "The uploaded file was only partially uploaded" +msgstr "El archivo se ha subido parcialmente." + +#: ../../include/functions.php:2746 +msgid "No file was uploaded" +msgstr "No se subió ningún archivo." + +#: ../../include/functions.php:2750 +msgid "Missing a temporary folder" +msgstr "El directorio temporal no existe." + +#: ../../include/functions.php:2754 +msgid "Failed to write file to disk" +msgstr "No se pudo escribir el archivo al disco." + +#: ../../include/functions.php:2758 +msgid "File upload stopped by extension" +msgstr "Subida de archivo cancelada por la extensión" + +#: ../../include/functions.php:2762 +msgid "Unknown upload error" +msgstr "Error desconocido al subir el archivo" + +#: ../../include/functions.php:2873 +msgid "No data found to export" +msgstr "Datos no encontrados para exportar" + +#: ../../include/functions.php:3192 +#: ../../operation/gis_maps/render_view.php:136 +msgid "5 seconds" +msgstr "5 segundos" + +#: ../../include/functions.php:3193 +#: ../../operation/gis_maps/render_view.php:137 +msgid "10 seconds" +msgstr "10 segundos" + +#: ../../include/functions.php:3194 +msgid "15 seconds" +msgstr "15 segundos" + +#: ../../include/functions.php:3195 +#: ../../operation/gis_maps/render_view.php:138 +msgid "30 seconds" +msgstr "30 segundos" + +#: ../../include/functions.php:3199 +msgid "15 minutes" +msgstr "15 minutos" + +#: ../../include/functions.php:3200 ../../include/ajax/module.php:164 +msgid "30 minutes" +msgstr "30 minutos" + +#: ../../include/functions.php:3671 +msgid "Summatory series" +msgstr "Series sumatorias" + +#: ../../include/functions.php:3675 +msgid "Average series" +msgstr "Series de media" + +#: ../../include/functions.php:3699 ../../include/functions.php:3700 +#: ../../include/functions.php:3708 ../../include/functions.php:3714 +#: ../../include/functions.php:3750 ../../include/functions.php:3811 +msgid "Unit " +msgstr "Unidad " + +#: ../../include/functions.php:3721 ../../include/functions.php:3757 +msgid "Min:" +msgstr "Mín.:" + +#: ../../include/functions.php:3726 ../../include/functions.php:3762 +msgid "Max:" +msgstr "Máx.:" + +#: ../../include/functions.php:3731 ../../include/functions.php:3767 +msgid "Avg:" +msgstr "Media:" + +#: ../../include/functions.php:3808 ../../include/functions.php:3816 +msgid "of module" +msgstr "de módulo" + +#: ../../include/functions.php:3833 +msgid "Projection" +msgstr "Proyección" + +#: ../../include/functions_cron.php:446 +msgid "Scheduled jobs" +msgstr "Tareas programadas" + +#: ../../include/functions_api.php:93 +msgid "No set or get or help operation." +msgstr "Sin acceso a operaciones de tipo SET, GET o HELP" + +#: ../../include/functions_api.php:103 +msgid "This operation does not exist." +msgstr "Esta operación no existe." + +#: ../../include/functions_api.php:113 +msgid "Id does not exist in BD." +msgstr "ID no existe en la BD" + +#: ../../include/functions_api.php:123 +msgid "This operation can not be used in cluster elements." +msgstr "Esta operación no es posible en elementos de un cluster." + +#: ../../include/functions_api.php:133 +msgid "The user has not enough permission to make this action." +msgstr "El usuario no tiene permisos para realizar esta acción." + +#: ../../include/functions_api.php:1083 +msgid "Does not exist agent with this name." +msgstr "No existe un agente con este nombre." + +#: ../../include/functions_api.php:1093 +msgid "Does not exist module with this name." +msgstr "No existen módulos con este nombre." + +#: ../../include/functions_api.php:1158 +msgid "Does not exist the pair alias/module required." +msgstr "El conjunto alias/module requerido no existe." + +#: ../../include/functions_api.php:1357 +msgid "The agent parent don`t exist." +msgstr "El agente padre no existe." + +#: ../../include/functions_api.php:1362 +msgid "The user cannot access to parent agent." +msgstr "El usuario no puede acceder al agente padre." + +#: ../../include/functions_api.php:1648 +msgid "Could not be created for unknown reason" +msgstr "No se ha podido crear por razones desconocidas" + +#: ../../include/functions_api.php:1691 +msgid "Error creating OS" +msgstr "Error al crear el SO" + +#: ../../include/functions_api.php:1720 +msgid "Success updating OS" +msgstr "SO creado correctamente" + +#: ../../include/functions_api.php:1909 ../../include/functions_api.php:8250 +#: ../../include/functions_api.php:14010 +msgid "Correct Delete" +msgstr "Borrado correctamente" + +#: ../../include/functions_api.php:3126 +msgid "" +"Error in creation network module. Id_module_type is not correct for network " +"modules." +msgstr "" +"Error al crear el módulo de red. Id_module_type no es correcto para los " +"módulos de red." + +#: ../../include/functions_api.php:3205 +msgid "Error in creation network module." +msgstr "Error al crear el módulo de red" + +#: ../../include/functions_api.php:3238 +msgid "Error updating network module. Module name cannot be left blank." +msgstr "" +"Error al actualizar el módulo de red. El nombre del módulo no puede dejarse " +"en blanco." + +#: ../../include/functions_api.php:3257 +msgid "Error updating network module. Id_module doesn't exist." +msgstr "Error al actualizar el módulo de red. El Id_modulo no existe." + +#: ../../include/functions_api.php:3283 +msgid "Error updating network module. Id_module exists in the new agent." +msgstr "" +"Error al actualizar el módulo de red. El id_module existe en el nuevo agente." + +#: ../../include/functions_api.php:3341 +msgid "Network module updated." +msgstr "Módulo de red actualizado" + +#: ../../include/functions_api.php:3371 +msgid "Error in creation plugin module. Id_plugin cannot be left blank." +msgstr "" +"Error al crear el módulo plugin. Id_plugin no puede dejarse en blanco." + +#: ../../include/functions_api.php:3472 +msgid "Error in creation plugin module." +msgstr "Error al crear el módulo plugin" + +#: ../../include/functions_api.php:3504 +msgid "Error updating plugin module. Id_module cannot be left blank." +msgstr "" +"Error al actualizar el módulo del plugin. Id_module no se puede dejar en " +"blanco." + +#: ../../include/functions_api.php:3529 +msgid "Error updating plugin module. Id_module exists in the new agent." +msgstr "" +"Error al actualizar el módulo plugin. Id_module existe en el nuevo agente." + +#: ../../include/functions_api.php:3537 +msgid "Error updating plugin module. Id_agent doesn't exist." +msgstr "Error al actualizar el módulo plugin. El ID de agente no existe." + +#: ../../include/functions_api.php:3601 +msgid "Plugin module updated." +msgstr "Módulo de plugin actualizado" + +#: ../../include/functions_api.php:3631 +msgid "Error in creation data module. Module_name cannot be left blank." +msgstr "" +"Error al crear los datos del módulo. Module_name no puede dejarse en blanco." + +#: ../../include/functions_api.php:3723 ../../include/functions_api.php:3814 +#: ../../include/functions_api.php:3967 +msgid "Error in creation data module." +msgstr "Error al crear datos del módulo" + +#: ../../include/functions_api.php:3755 +msgid "Error in creation synthetic module. Module_name cannot be left blank." +msgstr "" +"Error al crear un módulo sintético. El nombre del módulo no puede estar " +"vacío." + +#: ../../include/functions_api.php:3778 ../../include/functions_api.php:3784 +msgid "Error in creation synthetic module. Agent name doesn't exist." +msgstr "Error al crear un módulo sintético. El nombre del agente no existe." + +#: ../../include/functions_api.php:3957 ../../include/functions_api.php:4110 +msgid "Synthetic module created ID: " +msgstr "ID del módulo sintético creado: " + +#: ../../include/functions_api.php:4143 +msgid "Error updating data module. Id_module cannot be left blank." +msgstr "" +"Error al actualizar los datos del módulo. Id_module no se puede dejar en " +"blanco." + +#: ../../include/functions_api.php:4168 +msgid "Error updating data module. Id_module exists in the new agent." +msgstr "" +"Error al actualizar los datos del módulo. Id_module existe en el nuevo " +"agente." + +#: ../../include/functions_api.php:4176 +msgid "Error updating data module. Id_agent doesn't exist." +msgstr "Error al actualizar los datos del módulo. El ID de agente no existe." + +#: ../../include/functions_api.php:4227 +msgid "Data module updated." +msgstr "Datos del módulo actualizado" + +#: ../../include/functions_api.php:4263 +msgid "Error in creation SNMP module. Module_name cannot be left blank." +msgstr "" +"Error al crear el módulo SNMP. Id_module no se puede dejar en blanco." + +#: ../../include/functions_api.php:4268 +msgid "" +"Error in creation SNMP module. Invalid id_module_type for a SNMP module." +msgstr "Error al crear el módulo SNMP. Id_module_type" + +#: ../../include/functions_api.php:4299 ../../include/functions_api.php:4490 +#: ../../include/functions_api.php:7686 +msgid "" +"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "" +"Error al crear módulo SNMP. El método snmp3_priv_method no existe. Cambia a " +"'AES' o 'DES'. " + +#: ../../include/functions_api.php:4304 ../../include/functions_api.php:4501 +#: ../../include/functions_api.php:7691 +msgid "" +"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"Error al crear módulo SNMP. snmp3_sec_level no existe. Cambia a 'authNoPriv' " +"o 'authPriv' o 'noAuthNoPriv'. " + +#: ../../include/functions_api.php:4309 ../../include/functions_api.php:4509 +#: ../../include/functions_api.php:7696 +msgid "" +"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "" +"Error al crear módulo SNMP. snmp3_auth_method no existe. Cambia a 'MD5' o " +"'SHA'. " + +#: ../../include/functions_api.php:4413 +msgid "Error in creation SNMP module." +msgstr "Error al crear módulo SNMP" + +#: ../../include/functions_api.php:4447 +msgid "Error updating SNMP module. Id_module cannot be left blank." +msgstr "" +"Error al actualizar el módulo SNMP. Id_module no se puede dejar en blanco." + +#: ../../include/functions_api.php:4472 +msgid "Error updating SNMP module. Id_module exists in the new agent." +msgstr "" +"Error al actualizar el módulo SNMP. Id_module existe en el nuevo agente" + +#: ../../include/functions_api.php:4480 +msgid "Error updating snmp module. Id_agent doesn't exist." +msgstr "Error al actualizar el módulo SNMP. El ID de agente no existe." + +#: ../../include/functions_api.php:4601 +msgid "SNMP module updated." +msgstr "Módulo SNMP actualizado" + +#: ../../include/functions_api.php:4637 +msgid "" +"Error creating network component. Network component name cannot be left " +"blank." +msgstr "" +"Error al crear el componente de red. El nombre del componente de red no " +"puede dejarse en blanco." + +#: ../../include/functions_api.php:4642 +msgid "" +"Error creating network component. Incorrect value for Network component type " +"field." +msgstr "" +"Error al crear componente de red. Valor incorrecto para el campo de tipo de " +"componente de red." + +#: ../../include/functions_api.php:4647 +msgid "" +"Error creating network component. Network component group cannot be left " +"blank." +msgstr "" +"Error al crear componente de red. El grupo del componente de red no puede " +"estar vacío." + +#: ../../include/functions_api.php:4685 +msgid "" +"Error creating network component. This network component already exists." +msgstr "Error al crear componente de red. El componente de red ya existe." + +#: ../../include/functions_api.php:4733 +msgid "" +"Error creating plugin component. Plugin component name cannot be left blank." +msgstr "" +"Error al crear componente plugin. El nombre del componente plugin no puede " +"estar en blanco." + +#: ../../include/functions_api.php:4739 +msgid "Error creating plugin component. Incorrect value for Id plugin." +msgstr "" +"Error al crear componente plugin. Valor incorrecto para el ID del plugin." + +#: ../../include/functions_api.php:4744 +msgid "" +"Error creating plugin component. Plugin component group cannot be left blank." +msgstr "" +"Error al crear componente plugin. El grupo del componente plugin no puede " +"estar en blanco." + +#: ../../include/functions_api.php:4786 +msgid "" +"Error creating plugin component. This plugin component already exists." +msgstr "Error al crear componente plugin. El componente plugin ya existe." + +#: ../../include/functions_api.php:4828 +msgid "" +"Error creating SNMP component. SNMP component name cannot be left blank." +msgstr "" +"Error al crear componente SNMP. El nombre del componente SNMP no puede estar " +"en blanco." + +#: ../../include/functions_api.php:4838 +msgid "" +"Error creating SNMP component. Incorrect value for Snmp component type field." +msgstr "" +"Error al crear componente SNMP. Valor incorrecto para el tipo de campo del " +"componente SNMP." + +#: ../../include/functions_api.php:4843 +msgid "" +"Error creating SNMP component. Snmp component group cannot be left blank." +msgstr "" +"Error al crear componente SNMP. El grupo del componente SNMP no puede estar " +"en blanco." + +#: ../../include/functions_api.php:4854 +msgid "" +"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "" +"Error al crear componente SNMP. snmp3_priv_method no existe. Cambia a 'AES' " +"o 'DES'. " + +#: ../../include/functions_api.php:4864 +msgid "" +"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"Error al crear componente SNMP. snmp3_sec_level no existe. Cambia a " +"'authNoPriv' o 'authPriv' o 'noAuthNoPriv'. " + +#: ../../include/functions_api.php:4872 +msgid "" +"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "" +"Error al crear componente SNMP. snmp3_auth_method no existe. Cambia a 'MD5' " +"o 'SHA'. " + +#: ../../include/functions_api.php:4955 +msgid "Error creating SNMP component. This SNMP component already exists." +msgstr "Error al crear componente SNMP. El componente SNMP ya existe." + +#: ../../include/functions_api.php:4997 +msgid "" +"Error creating local component. Local component name cannot be left blank." +msgstr "" +"Error al crear componente local. El nombre del componente local no puede " +"estar en blanco." + +#: ../../include/functions_api.php:5010 +msgid "" +"Error creating local component. Local component group cannot be left blank." +msgstr "" +"Error al crear el componente local. El grupo del componente local no puede " +"estar en blanco." + +#: ../../include/functions_api.php:5043 +msgid "Error creating local component." +msgstr "Error al crear el componente local" + +#: ../../include/functions_api.php:5051 +msgid "Error creating local component. This local component already exists." +msgstr "Error al crear el componente local. El componente local ya existe." + +#: ../../include/functions_api.php:5096 +msgid "" +"Error getting module value from all agents. Module name cannot be left blank." +msgstr "" +"Error al obtener el valor del módulo para todos los agentes. El nombre del " +"módulo no puede estar en blanco." + +#: ../../include/functions_api.php:5106 +msgid "" +"Error getting module value from all agents. Module name doesn't exist." +msgstr "" +"Error al obtener el valor del módulo para todos los agentes. El nombre del " +"módulo no existe." + +#: ../../include/functions_api.php:5169 +msgid "Error creating alert template. Template name cannot be left blank." +msgstr "" +"Error al crear la plantilla de alerta. El nombre de plantilla no puede estar " +"en blanco." + +#: ../../include/functions_api.php:5241 +msgid "Error creating alert template." +msgstr "Error al crear plantilla de alerta" + +#: ../../include/functions_api.php:5281 +msgid "Error updating alert template. Id_template cannot be left blank." +msgstr "" +"Error al actualizar plantilla de alerta. Id_template no puede estar en " +"blanco." + +#: ../../include/functions_api.php:5291 +msgid "Error updating alert template. Id_template doesn't exist." +msgstr "Error al actualizar plantilla de alerta. Id_template no existe." + +#: ../../include/functions_api.php:5342 +msgid "Error updating alert template." +msgstr "Error al actualizar plantilla de alerta" + +#: ../../include/functions_api.php:5349 +msgid "Correct updating of alert template" +msgstr "Plantilla de alerta actualizada correctamente" + +#: ../../include/functions_api.php:5378 +msgid "Error deleting alert template. Id_template cannot be left blank." +msgstr "" +"Error al borrar plantilla de alerta. Id_template no puede dejarse en blanco." + +#: ../../include/functions_api.php:5389 +msgid "Error deleting alert template." +msgstr "Error al borrar plantilla de alerta" + +#: ../../include/functions_api.php:5396 +msgid "Correct deleting of alert template." +msgstr "Plantilla de alerta borrada correctamente" + +#: ../../include/functions_api.php:5447 +msgid "Error getting all alert templates." +msgstr "Error al obtener todas las plantillas de alerta" + +#: ../../include/functions_api.php:5492 +msgid "Error getting all alert commands." +msgstr "Error al obtener todos los comandos de alertas." + +#: ../../include/functions_api.php:5527 +msgid "Error getting alert template. Id_template doesn't exist." +msgstr "Error al obtener plantilla de alerta. Id_template no existe." + +#: ../../include/functions_api.php:5555 +msgid "Error getting alert template." +msgstr "Error al obtener plantilla de alerta" + +#: ../../include/functions_api.php:5669 +msgid "Error getting module groups." +msgstr "Error al obtener grupos de módulo" + +#: ../../include/functions_api.php:5733 +msgid "Error getting plugins." +msgstr "Error al obtener plugins" + +#: ../../include/functions_api.php:5781 ../../include/functions_api.php:5787 +msgid "Error creating module from network component. Agent doesn't exist." +msgstr "" +"Error al crear módulo desde el componente de red. El agente no existe." + +#: ../../include/functions_api.php:5795 +msgid "" +"Error creating module from network component. Network component doesn't " +"exist." +msgstr "" +"Error al crear el módulo desde un componente de red. El componente de red no " +"existe." + +#: ../../include/functions_api.php:5821 ../../include/functions_api.php:11296 +#: ../../include/functions_api.php:11362 ../../include/functions_api.php:11643 +#: ../../include/functions_api.php:11724 +#, php-format +msgid "%d agents affected" +msgstr "%d agentes afectados" + +#: ../../include/functions_api.php:5827 +msgid "Error creating module from network component. Error creating module." +msgstr "Error al crear módulo desde componente de red" + +#: ../../include/functions_api.php:5858 +msgid "Error assigning module to template. Id_template cannot be left blank." +msgstr "" +"Error al asignar módulo a plantilla. Id_template no puede estar en blanco." + +#: ../../include/functions_api.php:5866 +msgid "Error assigning module to template. Id_module cannot be left blank." +msgstr "" +"Error al asignar módulo a plantilla. Id_module no puede estar en blanco." + +#: ../../include/functions_api.php:5874 +msgid "Error assigning module to template. Id_agent cannot be left blank." +msgstr "" +"Error al asignar módulo a plantilla. Id_agent no puede estar en blanco." + +#: ../../include/functions_api.php:5891 +msgid "Error assigning module to template. Id_template doensn't exists." +msgstr "Error al asignar módulo a plantilla. Id_template no existe." + +#: ../../include/functions_api.php:5899 +msgid "Error assigning module to template. Id_agent doesn't exist." +msgstr "Error al asignar módulo a plantilla. Id_agent no existe." + +#: ../../include/functions_api.php:5906 +msgid "Error assigning module to template. Id_module doesn't exist." +msgstr "Error al asignar módulo a plantilla. Id_module no existe." + +#: ../../include/functions_api.php:5914 +msgid "Error assigning module to template." +msgstr "Error al asignar módulo a plantilla" + +#: ../../include/functions_api.php:5948 +msgid "" +"Error deleting module template. Id_module_template cannot be left blank." +msgstr "" +"Error al borrar módulo de plantilla. Id_module_template no puede estar en " +"blanco." + +#: ../../include/functions_api.php:5955 +msgid "Error deleting module template. Id_module_template doesn't exist." +msgstr "Error al borrar módulo de plantilla. Id_module_template no existe." + +#: ../../include/functions_api.php:5963 ../../include/functions_api.php:6071 +msgid "Error deleting module template." +msgstr "Error al borrar módulo de plantilla" + +#: ../../include/functions_api.php:5965 ../../include/functions_api.php:6073 +msgid "Correct deleting of module template." +msgstr "Plantilla de módulo borrada correctamente" + +#: ../../include/functions_api.php:6053 +#, php-format +msgid "Module template has been deleted in %d agents." +msgstr "La plantilla de módulo se ha borrado en %d agentes." + +#: ../../include/functions_api.php:6146 +msgid "Error validate all alerts. Failed " +msgstr "Error al validar todas las alertas " + +#: ../../include/functions_api.php:6148 +#, php-format +msgid "Correct validating of all alerts (total %d)." +msgstr "Se han validado correctamente todas las alertas (total %d)" + +#: ../../include/functions_api.php:6183 +msgid "Error validating all alert policies." +msgstr "Error al validar todas las alertas de políticas" + +#: ../../include/functions_api.php:6240 +msgid "Error validate all policy alerts. Failed " +msgstr "Error validar todas las alertas de políticas " + +#: ../../include/functions_api.php:6242 +msgid "Correct validating of all policy alerts." +msgstr "Todas las alertas de políticas se validaron correctamente" + +#: ../../include/functions_api.php:6274 +msgid "Error stopping downtime. Id_downtime cannot be left blank." +msgstr "" +"Error al parar el tiempo de inactividad. Id_downtime no puede estar en " +"blanco." + +#: ../../include/functions_api.php:6285 +msgid "No action has been taken." +msgstr "No se ha realizado ninguna acción." + +#: ../../include/functions_api.php:6287 +msgid "Error stopping downtime." +msgstr "Error al detener la parada." + +#: ../../include/functions_api.php:6289 +msgid "Downtime stopped." +msgstr "Tiempo de inactividad interrumpido" + +#: ../../include/functions_api.php:6416 +msgid "Error set tag." +msgstr "Error al asignar etiqueta." + +#: ../../include/functions_api.php:6478 +msgid "No planned downtime retrieved" +msgstr "No se han obtenido paradas planificadas" + +#: ../../include/functions_api.php:6765 +msgid "and this modules are doesn't exists or not applicable a this agents: " +msgstr "y este módulo no existe o no es aplicable a estos agentes: " + +#: ../../include/functions_api.php:6769 +msgid "and this agents are generate problems: " +msgstr "y estos agentes generan problemas: " + +#: ../../include/functions_api.php:6773 +msgid "and this agents with ids are doesn't exists: " +msgstr "y estos agentes con los identificadores no existen: " + +#: ../../include/functions_api.php:6813 +msgid "Error adding data module to policy. Id_policy cannot be left blank." +msgstr "" +"Error al añadir los datos de módulo a la política. Id_policy no puede estar " +"en blanco." + +#: ../../include/functions_api.php:6823 +msgid "Error adding data module to policy. Module_name cannot be left blank." +msgstr "" +"Error al añadir los datos de módulo a la política. Module_name no puede " +"estar en blanco." + +#: ../../include/functions_api.php:6831 +msgid "Error adding data module to policy." +msgstr "Error al añadir los datos de módulo a la política" + +#: ../../include/functions_api.php:6869 +msgid "" +"Error adding data module to policy. The module is already in the policy." +msgstr "" +"Error al añadir los datos de módulo a la política. El módulo ya existe en la " +"política." + +#: ../../include/functions_api.php:6921 +msgid "Error updating data module in policy. Id_policy cannot be left blank." +msgstr "" +"Error al actualizar los datos del módulo en la política. Id_policy no puede " +"estar en blanco." + +#: ../../include/functions_api.php:6930 +msgid "" +"Error updating data module in policy. Id_policy_module cannot be left blank." +msgstr "" +"Error al actualizar datos del módulo en la política. Id_policy_module no " +"puede estar en blanco." + +#: ../../include/functions_api.php:6938 +msgid "Error updating data module in policy. Module doesn't exist." +msgstr "" +"Error al actualizar datos de módulo en la política. El módulo no existe." + +#: ../../include/functions_api.php:6945 +msgid "" +"Error updating data module in policy. Module type is not network type." +msgstr "" +"Error al actualizar datos de módulo en política. El tipo de módulo no es de " +"red." + +#: ../../include/functions_api.php:6995 +msgid "Data policy module updated." +msgstr "Política de módulo de datos actualizado" + +#: ../../include/functions_api.php:7030 +msgid "" +"Error adding network module to policy. Id_policy cannot be left blank." +msgstr "" +"Error al añadir módulos de red a la política. Id_policy no puede estar en " +"blanco." + +#: ../../include/functions_api.php:7043 +msgid "" +"Error adding network module to policy. Module_name cannot be left blank." +msgstr "" +"Error al añadir módulos de red a la política. Module_name no puede estar en " +"blanco." + +#: ../../include/functions_api.php:7051 +msgid "" +"Error adding network module to policy. Id_module_type is not correct for " +"network modules." +msgstr "" +"Error al añadir módulos de red a la política. Id_module_type no es correcto " +"para módulos de red." + +#: ../../include/functions_api.php:7069 +msgid "Error adding network module to policy." +msgstr "Error al añadir módulos de red a la política" + +#: ../../include/functions_api.php:7109 +msgid "" +"Error adding network module to policy. The module is already in the policy." +msgstr "" +"Error al añadir módulos de red a la política. El módulo ya existe en la " +"política." + +#: ../../include/functions_api.php:7151 +msgid "" +"Error updating network module in policy. Id_policy cannot be left blank." +msgstr "" +"Error al actualizar módulo de red en la política. Id_policy no puede estar " +"en blanco." + +#: ../../include/functions_api.php:7159 +msgid "" +"Error updating network module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" +"Error al actualizar módulo de red en la política. Id_policy_module no puede " +"estar en blanco." + +#: ../../include/functions_api.php:7170 +msgid "Error updating network module in policy. Module doesn't exist." +msgstr "" +"Error al actualizar el módulo de red en la política. El módulo no existe." + +#: ../../include/functions_api.php:7178 +msgid "" +"Error updating network module in policy. Module type is not network type." +msgstr "" +"Error al actualizar módulo de red en la política. El tipo de módulo no es de " +"red." + +#: ../../include/functions_api.php:7222 +msgid "Network policy module updated." +msgstr "Módulo de red de la política actualizado" + +#: ../../include/functions_api.php:7252 +msgid "Error adding plugin module to policy. Id_policy cannot be left blank." +msgstr "" +"Error al añadir módulo de plugin a la política. Id_policy no puede estar en " +"blanco." + +#: ../../include/functions_api.php:7262 +msgid "" +"Error adding plugin module to policy. Module_name cannot be left blank." +msgstr "" +"Error al añadir módulo de plugin a la política. Module_name no puede estar " +"en blanco." + +#: ../../include/functions_api.php:7267 +msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." +msgstr "" +"Error al añadir módulo de plugin a la política. Id_plugin no puede estar en " +"blanco." + +#: ../../include/functions_api.php:7275 +msgid "Error adding plugin module to policy." +msgstr "Error al añadir módulo de plugin a la política" + +#: ../../include/functions_api.php:7319 +msgid "" +"Error adding plugin module to policy. The module is already in the policy." +msgstr "" +"Error al añadir el módulo de plugin a la política. El módulo ya existe en la " +"política." + +#: ../../include/functions_api.php:7362 +msgid "" +"Error updating plugin module in policy. Id_policy cannot be left blank." +msgstr "" +"Error al actualizar el módulo de plugin en la política. Id_policy no puede " +"estar en blanco." + +#: ../../include/functions_api.php:7370 +msgid "" +"Error updating plugin module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" +"Error al actualizar módulo de plugin en la política. Id_policy_module no " +"puede estar en blanco." + +#: ../../include/functions_api.php:7381 +msgid "Error updating plugin module in policy. Module doesn't exist." +msgstr "" +"Error al actualizar módulo de plugin en la política. El módulo no existe." + +#: ../../include/functions_api.php:7389 +msgid "" +"Error updating plugin module in policy. Module type is not network type." +msgstr "" +"Error al actualizar módulo de plugin en la política. El tipo de módulo no es " +"de tipo red." + +#: ../../include/functions_api.php:7449 +msgid "Plugin policy module updated." +msgstr "Módulo de plugin de la política actualizado" + +#: ../../include/functions_api.php:7535 +#, php-format +msgid "Remote config of module %s not available" +msgstr "La configuración remota de los módulos %s no está disponible" + +#: ../../include/functions_api.php:7652 +msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." +msgstr "" +"Error al añadir módulo SNMP a la política. Id_policy no puede estar en " +"blanco." + +#: ../../include/functions_api.php:7662 +msgid "Error adding SNMP module to policy. Module_name cannot be left blank." +msgstr "" +"Error al añadir módulo SNMP a la política. Module_name no puede estar en " +"blanco." + +#: ../../include/functions_api.php:7670 +msgid "Error adding SNMP module to policy." +msgstr "Error al añadir módulo SNMP a la política" + +#: ../../include/functions_api.php:7675 +msgid "" +"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " +"modules." +msgstr "" +"Error al añadir módulo SNMP a la política. Id_module_type no es correcto " +"para módulos SNMP." + +#: ../../include/functions_api.php:7769 +msgid "" +"Error adding SNMP module to policy. The module is already in the policy." +msgstr "" +"Error al añadir módulo SNMP a la política. El módulo ya existe en la " +"política." + +#: ../../include/functions_api.php:7811 +msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." +msgstr "" +"Error al actualizar módulo SNMP de la política. Id_policy no puede estar en " +"blanco." + +#: ../../include/functions_api.php:7816 +msgid "" +"Error updating SNMP module in policy. Id_policy_module cannot be left blank." +msgstr "" +"Error al actualizar módulo SNMP de la política. Id_policy_module no puede " +"estar en blanco." + +#: ../../include/functions_api.php:7824 +msgid "Error updating SNMP module in policy. Module doesn't exist." +msgstr "Error al actualizar módulo SNMP de la política. El módulo no existe." + +#: ../../include/functions_api.php:7829 +msgid "Error updating SNMP module in policy. Module type is not SNMP type." +msgstr "" +"Error al actualizar módulo SNMP de la política. El tipo de módulo no es SNMP." + +#: ../../include/functions_api.php:7838 +msgid "" +"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " +"or 'DES'. " +msgstr "" +"Error al actualizar módulo SNMP. snmp3_priv_method no existe. Cambia a 'AES' " +"o 'DES'. " + +#: ../../include/functions_api.php:7850 +msgid "" +"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"Error al actualizar módulo SNMP. snmp3_sec_level no existe. Cambia a " +"'authNoPriv' o 'authPriv' o 'noAuthNoPriv'. " + +#: ../../include/functions_api.php:7859 +msgid "" +"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " +"or 'SHA'. " +msgstr "" +"Error al actualizar módulo SNMP. snmp3_auth_method no existe. Cambia a 'MD5' " +"o 'SHA'. " + +#: ../../include/functions_api.php:7945 +msgid "SNMP policy module updated." +msgstr "Módulo SNMP de la política actualizado" + +#: ../../include/functions_api.php:7966 ../../include/functions_api.php:7999 +msgid "Error deleting agent from policy. Policy cannot be left blank." +msgstr "" +"Error al eliminar el agente de la política. La política no puede estar vacía." + +#: ../../include/functions_api.php:7971 +msgid "Error deleting agent from policy. Agent cannot be left blank." +msgstr "" +"Error al eliminar el agente de la política. El agente no puede estar vacío." + +#: ../../include/functions_api.php:7977 +msgid "Error deleting agent from policy. Node ID cannot be left blank." +msgstr "" +"Error al eliminar el agente de la política. El ID del nodo no puede estar " +"vacío." + +#: ../../include/functions_api.php:8049 +msgid "Error in group creation. Group_name cannot be left blank." +msgstr "Error al crear el grupo. Group_name no puede estar en blanco." + +#: ../../include/functions_api.php:8057 +msgid "Error in group creation. Icon_name cannot be left blank." +msgstr "Error al crear el grupo. Icon_name no puede estar en blanco." + +#: ../../include/functions_api.php:8070 +msgid "Error in group creation. Id_parent_group doesn't exist." +msgstr "Error al crear grupo. Id_parent_group no existe." + +#: ../../include/functions_api.php:8099 +msgid "Error in group creation." +msgstr "Error al crear el grupo" + +#: ../../include/functions_api.php:8156 ../../include/functions_api.php:10856 +#: ../../include/functions_api.php:10909 +msgid "There is not any group with the id provided" +msgstr "No hay grupos con este ID" + +#: ../../include/functions_api.php:8286 +msgid "Error in netflow filter creation. Filter name cannot be left blank." +msgstr "" +"Error al crear el filtro Netflow. El nombre del filtro no puede estar en " +"blanco." + +#: ../../include/functions_api.php:8291 +msgid "Error in netflow filter creation. Group id cannot be left blank." +msgstr "" +"Error al crear filtro Netflow. El ID de grupo no puede estar en blanco." + +#: ../../include/functions_api.php:8297 +msgid "Error in netflow filter creation. Id_group doesn't exist." +msgstr "Error al crear el filtro de netflow. Id_grupo no existe." + +#: ../../include/functions_api.php:8308 +msgid "Error in netflow filter creation. Filter cannot be left blank." +msgstr "" +"Error al crear el filtro Netflow. El filtro no puede estar en blanco." + +#: ../../include/functions_api.php:8313 +msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." +msgstr "" +"Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." + +#: ../../include/functions_api.php:8318 +msgid "Error in netflow filter creation. Output_format cannot be left blank." +msgstr "" +"Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." + +#: ../../include/functions_api.php:8336 +msgid "Error in netflow filter creation." +msgstr "Error al crear el filtro Netflow" + +#: ../../include/functions_api.php:8553 +msgid "Create user." msgstr "Crear usuario" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:161 -#: ../../godmode/wizards/HostDevices.class.php:553 -#: ../../godmode/wizards/HostDevices.class.php:643 -#: ../../godmode/wizards/Wizard.main.php:392 -#: ../../include/class/CustomNetScan.class.php:313 -#: ../../include/class/CustomNetScan.class.php:421 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:445 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:231 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 -#: ../../enterprise/include/class/Aws.cloud.php:1011 -#: ../../enterprise/include/class/Azure.cloud.php:661 -#: ../../enterprise/include/class/MySQL.app.php:370 -#: ../../enterprise/include/class/Omnishell.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:930 -#: ../../enterprise/include/class/Omnishell.class.php:1296 -#: ../../enterprise/include/class/Oracle.app.php:356 -#: ../../enterprise/include/class/SAP.app.php:380 -#: ../../enterprise/include/class/VMware.app.php:410 -msgid "Go back" -msgstr "Volver" +#: ../../include/functions_api.php:8607 +msgid "Error updating user. Id_user cannot be left blank." +msgstr "Error al actualizar el usuario. Id_user no puede estar en blanco." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:223 -msgid "Task successfully deleted" -msgstr "Tarea eliminada" +#: ../../include/functions_api.php:8617 +msgid "Error updating user. Id_user doesn't exist." +msgstr "Error al actualizar el usuario. Id_user no existe." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:293 -msgid "Console Task successfully deleted" -msgstr "Tarea de la consola eliminada" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:325 -#: ../../operation/servers/recon_view.php:33 -msgid "Discovery Server is disabled" -msgstr "El servidor discovery está deshabilitado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:387 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:460 -#: ../../include/ajax/module.php:910 ../../include/functions_ui.php:1138 -#: ../../operation/agentes/group_view.php:192 -#: ../../operation/agentes/group_view.php:242 -#: ../../operation/servers/recon_view.php:91 -#: ../../operation/servers/recon_view.php:123 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1232 -#: ../../enterprise/godmode/agentes/inventory_manager.php:254 -#: ../../enterprise/operation/services/services.list.php:538 -msgid "Force" -msgstr "Forzar" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:391 -#: ../../godmode/wizards/HostDevices.class.php:733 -#: ../../include/class/CustomNetScan.class.php:445 -#: ../../operation/servers/recon_view.php:94 -#: ../../enterprise/include/class/Aws.cloud.php:1086 -#: ../../enterprise/include/class/Azure.cloud.php:734 -#: ../../enterprise/include/class/MySQL.app.php:441 -#: ../../enterprise/include/class/Oracle.app.php:439 -#: ../../enterprise/include/class/SAP.app.php:459 -#: ../../enterprise/include/class/VMware.app.php:518 -msgid "Task name" -msgstr "Nombre de la tarea" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:394 -#: ../../include/functions_events.php:207 -#: ../../include/functions_events.php.orig:205 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:50 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:207 -#: ../../enterprise/meta/include/functions_events_meta.php:130 -msgid "Server name" -msgstr "Nombre del servidor" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:400 -#: ../../godmode/wizards/HostDevices.class.php:763 -#: ../../include/functions_ui.php:853 ../../operation/menu.php:70 -#: ../../operation/servers/recon_view.php:100 -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:160 -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:180 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1676 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:146 -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 -#: ../../enterprise/extensions/ipam/ipam_list.php:134 -#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:41 -#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:65 -#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:65 -msgid "Network" -msgstr "Red" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:406 -msgid "Task type" -msgstr "Tipo de tarea" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:409 -#: ../../operation/servers/recon_view.php:109 -#: ../../operation/servers/recon_view.php:158 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1254 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1259 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1264 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:673 -#: ../../enterprise/godmode/policies/policy_queue.php:461 -#: ../../enterprise/include/class/Omnishell.class.php:401 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -msgid "Progress" -msgstr "Progreso" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:412 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:418 -#: ../../operation/incidents/incident_detail.php:289 -#: ../../operation/servers/recon_view.php:112 -#: ../../enterprise/operation/agentes/transactional_map.php:186 -msgid "Updated at" -msgstr "Actualizado el" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:465 -msgid "This task has not been completely defined, please edit it" -msgstr "La tarea no se ha definido por completo, edítela." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:490 -#: ../../godmode/wizards/HostDevices.class.php:703 -#: ../../include/class/CustomNetScan.class.php:527 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1206 -#: ../../enterprise/extensions/ipam/ipam_list.php:164 -#: ../../enterprise/godmode/services/services.service.php:397 -#: ../../enterprise/include/class/Aws.cloud.php:1212 -#: ../../enterprise/include/class/MySQL.app.php:565 -#: ../../enterprise/include/class/Oracle.app.php:546 -#: ../../enterprise/include/class/SAP.app.php:502 -#: ../../enterprise/include/class/VMware.app.php:569 -#: ../../enterprise/operation/services/services.list.php:227 -#: ../../enterprise/operation/services/services.table_services.php:206 -msgid "Manual" -msgstr "Manual" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:500 -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 -#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 -#: ../../operation/servers/recon_view.php:140 -msgid "Done" -msgstr "Hecho" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:502 -#: ../../operation/servers/recon_view.php:142 -#: ../../enterprise/include/class/DatabaseHA.class.php:210 -#: ../../enterprise/include/class/Omnishell.class.php:363 -#: ../../enterprise/include/class/Omnishell.class.php:1037 -msgid "Pending" -msgstr "Pendiente" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:511 -msgid "Discovery Cloud Azure Compute" -msgstr "Discovery Cloud Azure Compute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:513 -msgid "Cloud.Azure.Compute" -msgstr "Cloud.Azure.Compute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:521 -msgid "Discovery Cloud AWS EC2" -msgstr "Discovery Cloud AWS EC2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:523 -msgid "Cloud.AWS.EC2" -msgstr "Cloud.AWS.EC2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:531 -msgid "Discovery Cloud RDS" -msgstr "Discovery Cloud RDS" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:533 -msgid "Discovery.Cloud.Aws.RDS" -msgstr "Discovery.Cloud.Aws.RDS" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:541 -msgid "Discovery Applications MySQL" -msgstr "Aplicaciones MySQL de Discovery" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:543 -msgid "Discovery.App.MySQL" -msgstr "Discovery.App.MySQL" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:551 -msgid "Discovery Applications Oracle" -msgstr "Aplicaciones de Discovery de Oracle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:553 -msgid "Discovery.App.Oracle" -msgstr "Discovery.App.Oracle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:562 -#: ../../godmode/wizards/HostDevices.class.php:164 -#: ../../enterprise/godmode/menu.php:142 -#: ../../enterprise/include/class/DeploymentCenter.class.php:572 -msgid "Agent deployment" -msgstr "Despliegue de agentes" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:564 -msgid "Discovery.Agent.Deployment" -msgstr "Discovery.Agent.Deployment" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:574 -msgid "Discovery NetScan" -msgstr "Discovery NetScan" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:582 -msgid "Discovery.NetScan" -msgstr "Discovery.NetScan" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:607 -msgid "Not executed yet" -msgstr "Aún no ejecutado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:692 -msgid "has no discovery tasks assigned" -msgstr "No tiene tareas de discovery asignadas" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:699 -msgid "Server Tasks" -msgstr "Tareas de servidor" - -#: ../../godmode/wizards/HostDevices.class.php:151 -msgid "Net Scan" -msgstr "Net Scan" - -#: ../../godmode/wizards/HostDevices.class.php:158 -#: ../../enterprise/godmode/menu.php:138 -#: ../../enterprise/include/class/CSVImportAgents.class.php:114 -msgid "Import CSV" -msgstr "Importar CSV" - -#: ../../godmode/wizards/HostDevices.class.php:171 -msgid "Custom NetScan" -msgstr "NetScan personalizado" - -#: ../../godmode/wizards/HostDevices.class.php:179 -msgid "Manage NetScan scripts" -msgstr "Administrar guiones de NetScan" - -#: ../../godmode/wizards/HostDevices.class.php:195 -#: ../../include/class/CustomNetScan.class.php:351 -#: ../../include/class/ManageNetScanScripts.class.php:104 -#: ../../enterprise/include/class/CSVImportAgents.class.php:98 -#: ../../enterprise/include/class/DeploymentCenter.class.php:553 -msgid "Host & Devices" -msgstr "Host y dispositivos" - -#: ../../godmode/wizards/HostDevices.class.php:328 -msgid "" -"This network scan task has been already defined. Please edit it or create a " -"new one." +#: ../../include/functions_api.php:8634 +msgid "Error updating user. Password info incorrect." msgstr "" -"Esta tarea de escaneo de red ya ha sido definida, Edítela o cree una nueva." +"Error al actualizar el usuario. La información de contraseña es incorrecta." -#: ../../godmode/wizards/HostDevices.class.php:352 -#: ../../include/class/CustomNetScan.class.php:158 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 -#: ../../enterprise/include/class/Aws.cloud.php:792 -#: ../../enterprise/include/class/Azure.cloud.php:409 -#: ../../enterprise/include/class/MySQL.app.php:195 -#: ../../enterprise/include/class/Oracle.app.php:187 -#: ../../enterprise/include/class/SAP.app.php:176 -#: ../../enterprise/include/class/VMware.app.php:231 -msgid "You have no access to edit this task." -msgstr "No tiene permisos para editar esta tarea." +#: ../../include/functions_api.php:8642 +msgid "Updated user." +msgstr "Usuario actualizado" -#: ../../godmode/wizards/HostDevices.class.php:362 -#: ../../include/class/CustomNetScan.class.php:168 -#: ../../enterprise/include/class/Aws.cloud.php:802 -#: ../../enterprise/include/class/MySQL.app.php:205 -#: ../../enterprise/include/class/Oracle.app.php:197 -#: ../../enterprise/include/class/SAP.app.php:186 -#: ../../enterprise/include/class/VMware.app.php:241 -msgid "You must provide a task name." -msgstr "Añada un nombre a la tarea" - -#: ../../godmode/wizards/HostDevices.class.php:367 -#: ../../include/class/CustomNetScan.class.php:173 -#: ../../enterprise/include/class/Aws.cloud.php:807 -#: ../../enterprise/include/class/MySQL.app.php:210 -#: ../../enterprise/include/class/Oracle.app.php:202 -#: ../../enterprise/include/class/SAP.app.php:191 -#: ../../enterprise/include/class/VMware.app.php:246 -msgid "You must select a Discovery Server." -msgstr "Seleccione un servidor de Discovery" - -#: ../../godmode/wizards/HostDevices.class.php:373 -msgid "You must provide a valid network." -msgstr "Añada una red válida." - -#: ../../godmode/wizards/HostDevices.class.php:378 -#: ../../include/class/CustomNetScan.class.php:178 -#: ../../enterprise/include/class/Aws.cloud.php:812 -#: ../../enterprise/include/class/MySQL.app.php:225 -#: ../../enterprise/include/class/Oracle.app.php:212 -#: ../../enterprise/include/class/SAP.app.php:201 -#: ../../enterprise/include/class/VMware.app.php:256 -msgid "You must select a valid group." -msgstr "Seleccione un grupo válido." - -#: ../../godmode/wizards/HostDevices.class.php:422 -#: ../../godmode/wizards/HostDevices.class.php:500 -#: ../../include/class/CustomNetScan.class.php:221 -msgid "Failed to find network scan task." -msgstr "No se ha encontrado tarea de escaneo de red." - -#: ../../godmode/wizards/HostDevices.class.php:604 -#: ../../enterprise/include/class/Aws.cloud.php:398 -msgid "NetScan" -msgstr "NetScan" - -#: ../../godmode/wizards/HostDevices.class.php:624 -#: ../../include/class/CustomNetScan.class.php:402 -msgid "Internal error, please re-run this wizard." -msgstr "Error interno, vuelva a ejecutar el asistente." - -#: ../../godmode/wizards/HostDevices.class.php:695 -#: ../../include/class/CustomNetScan.class.php:519 -#: ../../enterprise/include/class/Aws.cloud.php:1204 -#: ../../enterprise/include/class/MySQL.app.php:557 -#: ../../enterprise/include/class/Oracle.app.php:538 -#: ../../enterprise/include/class/SAP.app.php:494 -#: ../../enterprise/include/class/VMware.app.php:561 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "Intervalo manual significa que será ejecutado solo bajo demanda." - -#: ../../godmode/wizards/HostDevices.class.php:702 -#: ../../include/class/CustomNetScan.class.php:526 -#: ../../include/functions_reporting_html.php:1914 -#: ../../enterprise/include/class/Aws.cloud.php:1211 -#: ../../enterprise/include/class/MySQL.app.php:564 -#: ../../enterprise/include/class/Oracle.app.php:545 -#: ../../enterprise/include/class/SAP.app.php:501 -#: ../../enterprise/include/class/VMware.app.php:568 -#: ../../enterprise/include/class/VMware.app.php:776 -msgid "Defined" -msgstr "Definido" - -#: ../../godmode/wizards/HostDevices.class.php:719 -#: ../../include/class/CustomNetScan.class.php:543 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos." - -#: ../../godmode/wizards/HostDevices.class.php:744 -#: ../../include/class/CustomNetScan.class.php:479 -#: ../../enterprise/include/class/Aws.cloud.php:1098 -#: ../../enterprise/include/class/MySQL.app.php:453 -#: ../../enterprise/include/class/Oracle.app.php:451 -#: ../../enterprise/include/class/SAP.app.php:472 -#: ../../enterprise/include/class/VMware.app.php:529 -msgid "" -"You must select a Discovery Server to run the Task, otherwise the Recon Task " -"will never run" +#: ../../include/functions_api.php:8684 +msgid "Error enable/disable user. Id_user cannot be left blank." msgstr "" -"Seleccione un servidos de Discovery para ejecutar la tarea, si no la tarea " -"de reconocimiento no se ejecutará" +"Error al habilitar/deshabilitar el usuario. Id_user no puede estar en blanco." -#: ../../godmode/wizards/HostDevices.class.php:764 -msgid "" -"You can specify several networks, separated by commas, for example: " -"192.168.50.0/24,192.168.60.0/24" +#: ../../include/functions_api.php:8692 +msgid "Error enable/disable user. Enable/disable value cannot be left blank." msgstr "" -"Puedes especificar varias redes, separadas por comas, por ejemplo: " -"192.168.50.0/24,192.168.60.0/24" +"Error al habilitar/deshabilitar el usuario. El valor de " +"habilitar/deshabilitar no puede estar en blanco." -#: ../../godmode/wizards/HostDevices.class.php:885 -msgid "Module template" -msgstr "Plantilla de módulos" +#: ../../include/functions_api.php:8700 +msgid "Error enable/disable user. The user doesn't exist." +msgstr "Error al habilitar/deshabilitar el usuario. El usuario no existe." -#: ../../godmode/wizards/HostDevices.class.php:902 -msgid "Apply autoconfiguration rules" -msgstr "Aplicar normas de autoconfiguración" +#: ../../include/functions_api.php:8711 +msgid "Error in user enabling/disabling." +msgstr "Error al habilitar/deshabilitar el usuario" -#: ../../godmode/wizards/HostDevices.class.php:904 -msgid "" -"System is able to auto configure detected host & devices by applying your " -"defined configuration rules." +#: ../../include/functions_api.php:8719 +msgid "Enabled user." +msgstr "Usuario habilitado" + +#: ../../include/functions_api.php:8727 +msgid "Disabled user." +msgstr "Usuario deshabilitado" + +#: ../../include/functions_api.php:9005 +#, php-format +msgid "Template have been inserted in %d agents." +msgstr "Las plantillas se han insertado en %d agentes." + +#: ../../include/functions_api.php:9177 +msgid "XML file was generated successfully in path: " +msgstr "El archivo XML se ha creado correctamente en la ruta: " + +#: ../../include/functions_api.php:9317 +#, php-format +msgid "Module has been created in %d agents." +msgstr "El módulo se ha cread en %d agentes." + +#: ../../include/functions_api.php:9439 +#, php-format +msgid "Action has been set for %d agents." +msgstr "La acción se ha asignado a %d agentes." + +#: ../../include/functions_api.php:9569 +#, php-format +msgid "Created/Updated %s/%s module groups" +msgstr "Creados/Actualizados %s/%s grupos de módulos" + +#: ../../include/functions_api.php:9573 +#, php-format +msgid "Error creating/updating %s/%s module groups
" +msgstr "Error al crear/actualizar los grupos de módulos %s/%s
" + +#: ../../include/functions_api.php:9580 ../../include/functions_api.php:13615 +msgid "This function is only for metaconsole" +msgstr "Función solo válida para la Metaconsola" + +#: ../../include/functions_api.php:9627 +msgid "Name cannot be empty." +msgstr "El nombre no puede estar vacío." + +#: ../../include/functions_api.php:9632 +msgid "Command cannot be empty." +msgstr "El comando no puede estar vacío." + +#: ../../include/functions_api.php:9637 +msgid "Name already exist" +msgstr "El nombre ya existe." + +#: ../../include/functions_api.php:9642 +msgid "Group does not exist" +msgstr "El grupo no existe." + +#: ../../include/functions_api.php:10073 +msgid "There is not gis data for the agent" +msgstr "No hay datos GIS para el agente" + +#: ../../include/functions_api.php:10114 ../../include/functions_api.php:10232 +msgid "Gis not activated" +msgstr "GIS no activado" + +#: ../../include/functions_api.php:10133 ../../include/functions_api.php:10251 +msgid "Missing parameters" +msgstr "Faltan parámetros" + +#: ../../include/functions_api.php:10820 +msgid "Delete user." +msgstr "Borrar usuario" + +#: ../../include/functions_api.php:10861 ../../include/functions_api.php:10914 +msgid "There is not any profile with the id provided" +msgstr "No hay perfiles con este ID" + +#: ../../include/functions_api.php:10873 +msgid "Add user profile." +msgstr "Añadir perfil de usuario" + +#: ../../include/functions_api.php:10932 +msgid "Delete user profile." +msgstr "Borrar perfil de usuario" + +#: ../../include/functions_api.php:10989 +msgid "Error retrieving profiles" +msgstr "Error al obtener los perfiles" + +#: ../../include/functions_api.php:11045 +msgid "Error creating user profile" +msgstr "Error al crear el perfil de usuario" + +#: ../../include/functions_api.php:11107 +msgid "Error updating user profile" +msgstr "Error al actualizar el perfil de usuario" + +#: ../../include/functions_api.php:11142 +msgid "Error deleting user profile" +msgstr "Error al eliminar el perfil de usuario" + +#: ../../include/functions_api.php:11303 +msgid "Correct module disable" +msgstr "Módulo deshabilitado correctamente" + +#: ../../include/functions_api.php:11305 +msgid "Error disabling module" +msgstr "Error al deshabilitar el módulo" + +#: ../../include/functions_api.php:11369 +msgid "Correct module enable" +msgstr "Módulo habilitado correctamente" + +#: ../../include/functions_api.php:11371 +msgid "Error enabling module" +msgstr "Error al habilitar el módulo" + +#: ../../include/functions_api.php:11419 ../../include/functions_api.php:11472 +msgid "Error alert disable" +msgstr "Error al deshabilitar la alerta" + +#: ../../include/functions_api.php:11519 ../../include/functions_api.php:11572 +msgid "Error alert enable" +msgstr "Error al habilitar la alerta" + +#: ../../include/functions_api.php:12037 +msgid "No alert found" +msgstr "No se han encontrado alertas" + +#: ../../include/functions_api.php:12211 +msgid "Cannot connect with the agent node." +msgstr "No se ha podido conectar con el nodo del agente." + +#: ../../include/functions_api.php:12457 +msgid "Error adding event comment." +msgstr "Error al añadir el comentario en el evento" + +#: ../../include/functions_api.php:12740 +msgid "Error enable/disable agent. Id_agent cannot be left blank." msgstr "" -"El sistema puede auto configurar el host y los dispositivos detectados " -"aplicando las normas de configuración." +"Error al habilitar/deshabilitar el agente. Id_agent no puede estar en blanco." -#: ../../godmode/wizards/HostDevices.class.php:954 -#: ../../include/class/CustomNetScan.class.php:756 -#: ../../enterprise/include/class/Aws.cloud.php:1494 -#: ../../enterprise/include/class/Azure.cloud.php:914 -#: ../../enterprise/include/class/MySQL.app.php:942 -#: ../../enterprise/include/class/Oracle.app.php:971 -#: ../../enterprise/include/class/SAP.app.php:844 -#: ../../enterprise/include/class/VMware.app.php:897 -msgid "Task configured." -msgstr "Tarea configurada." +#: ../../include/functions_api.php:12752 +msgid "" +"Error enable/disable agent. Enable/disable value cannot be left blank." +msgstr "" +"Error al habilitar/deshabilitar el agente. El valor de " +"habilitar/deshabilitar no puede estar en blanco." -#: ../../godmode/wizards/HostDevices.class.php:958 -#: ../../include/class/CustomNetScan.class.php:760 -#: ../../enterprise/include/class/Azure.cloud.php:918 -#: ../../enterprise/include/class/MySQL.app.php:946 -#: ../../enterprise/include/class/Oracle.app.php:975 -#: ../../enterprise/include/class/SAP.app.php:848 -#: ../../enterprise/include/class/VMware.app.php:901 -msgid "Wizard failed. Cannot configure task." -msgstr "Error del asistente. No puede configurar la tarea." +#: ../../include/functions_api.php:12760 +msgid "Error enable/disable agent. The agent doesn't exist." +msgstr "Error al habilitar/deshabilitar el agente. El agente no existe." -#: ../../include/ajax/custom_fields.php:403 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2025 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2213 -msgid "Treshold" -msgstr "Umbral" +#: ../../include/functions_api.php:12784 +msgid "Error in agent enabling/disabling." +msgstr "Error al activar/desactivar el agente" + +#: ../../include/functions_api.php:12791 +msgid "Enabled agent." +msgstr "Agente habilitado" + +#: ../../include/functions_api.php:12799 +msgid "Disabled agent." +msgstr "Agente deshabilitado" + +#: ../../include/functions_api.php:12914 +msgid "Error getting special_days." +msgstr "Error al obtener días especiales" + +#: ../../include/functions_api.php:12954 +msgid "Error creating special day. Specified day already exists." +msgstr "Error al crear el día especial. El día especificado ya existe." + +#: ../../include/functions_api.php:12959 +msgid "Error creating special day. Invalid date format." +msgstr "Error al crear el día especial. Formato de fecha no válida." + +#: ../../include/functions_api.php:12964 +msgid "Error creating special day. Group id cannot be left blank." +msgstr "Error al crear el día especia. El ID de grupo no puede estar vacío." + +#: ../../include/functions_api.php:12970 +msgid "Error creating special day. Id_group doesn't exist." +msgstr "Error al crear el día especia. Id_grupo no existe." + +#: ../../include/functions_api.php:12988 +msgid "Error in creation special day." +msgstr "Error al crear el día especial" + +#: ../../include/functions_api.php:13038 +msgid "Error in creation service. No name" +msgstr "Error al crear el servicio. No hay nombre." + +#: ../../include/functions_api.php:13061 +msgid "Error in creation service. No agent id" +msgstr "Error al crear el servicio. No hay ID de agente." + +#: ../../include/functions_api.php:13125 +msgid "Error in creation service" +msgstr "Error al crear el servicio" + +#: ../../include/functions_api.php:13157 +msgid "Error in update service. No service id" +msgstr "Error al actualizar el servicio. No hay ID de servicio." + +#: ../../include/functions_api.php:13279 +msgid "Error in update service" +msgstr "Error al actualizar el servicio" + +#: ../../include/functions_api.php:13312 +msgid "Error adding elements to service. No service id" +msgstr "Error al añadir elementos al servicio. No hay ID de servicio." + +#: ../../include/functions_api.php:13389 +msgid "Error adding elements to service" +msgstr "Error al añadir elementos al servicio" + +#: ../../include/functions_api.php:13426 +msgid "Error updating special day. Id cannot be left blank." +msgstr "" +"Error al actualizar el día especial. El campo ID no puede estar vacío." + +#: ../../include/functions_api.php:13433 +msgid "Error updating special day. Id doesn't exist." +msgstr "Error al actualizar el día especial. El ID no existe." + +#: ../../include/functions_api.php:13438 +msgid "Error updating special day. Invalid date format." +msgstr "Error al actualizar el día especial. Formato de fecha no válido." + +#: ../../include/functions_api.php:13488 +msgid "Error deleting special day. Id cannot be left blank." +msgstr "Error al eliminar el día especial. El campo ID no puede estar vacío." + +#: ../../include/functions_api.php:13495 +msgid "Error deleting special day. Id doesn't exist." +msgstr "Error al eliminar el día especial" + +#: ../../include/functions_api.php:13502 +msgid "Error in deletion special day." +msgstr "Error al eliminar el día especial" + +#: ../../include/functions_api.php:13641 +msgid "A cluster with this name already exists." +msgstr "Ya existe un cluster con este nombre." + +#: ../../include/functions_api.php:13723 +msgid "Failed to create cluster." +msgstr "Error al crear el cluster." + +#: ../../include/functions_api.php:13726 +msgid "Agent name cannot be empty." +msgstr "El nombre de agente no puede estar vacío." + +#: ../../include/functions_api.php:13759 ../../include/functions_api.php:13892 +msgid "Error adding elements to cluster" +msgstr "Error al añadir elementos al cluster." + +#: ../../include/functions_api.php:13908 ../../include/functions_api.php:13953 +#: ../../include/functions_api.php:13999 ../../include/functions_api.php:14174 +#: ../../include/functions_api.php:14212 ../../include/functions_api.php:14235 +#: ../../include/functions_api.php:14269 ../../include/functions_api.php:14338 +#: ../../include/functions_api.php:14373 ../../include/functions_api.php:14566 +msgid "The user cannot access to the cluster" +msgstr "El usuario no puede acceder al cluster" + +#: ../../include/functions_api.php:14605 +msgid "Error creating event filter. Event filter name cannot be left blank." +msgstr "" +"Error al crear el filtro de evento. El nombre de filtro de evento no puede " +"estar vacío." + +#: ../../include/functions_api.php:14745 +msgid "Error creating event filter." +msgstr "Error al crear filtro de evento." + +#: ../../include/functions_api.php:14751 +msgid "Event filter successfully created." +msgstr "Filtro de evento creado correctamente." + +#: ../../include/functions_api.php:14788 +msgid "Error updating event filter. Event filter ID cannot be left blank." +msgstr "" +"Error al actualizar el filtro de evento. El ID de filtro de evento no puede " +"estar vacío." + +#: ../../include/functions_api.php:14799 +msgid "Error updating event filter. Event filter ID doesn't exist." +msgstr "" +"Error al actualizar el filtro de evento. El ID de filtro de evento no existe." + +#: ../../include/functions_api.php:14980 +msgid "Error updating event filter." +msgstr "Error al actualizar el filtro de evento." + +#: ../../include/functions_api.php:14986 +msgid "Event filter successfully updated." +msgstr "Filtro de evento creado correctamente." + +#: ../../include/functions_api.php:15012 +msgid "Error deleting event_filter. Event filter ID cannot be left blank." +msgstr "" +"Error al borrar el evento_filtro. El ID de filtro de evento no puede estar " +"vacío." + +#: ../../include/functions_api.php:15022 +msgid "Error deleting event filter." +msgstr "Error al eliminar el filtro de evento." + +#: ../../include/functions_api.php:15029 +msgid "Event filter successfully deleted." +msgstr "Filtro de evento borrado correctamente." + +#: ../../include/functions_api.php:15077 +msgid "Error getting all event filters." +msgstr "Error al obtener todos los filtros de eventos." + +#: ../../include/functions_api.php:15307 +msgid "Error in trap update." +msgstr "Error al actualizar el trap." + +#: ../../include/functions_api.php:15313 +msgid "Validated traps." +msgstr "Traps validados." + +#: ../../include/functions_api.php:15334 +msgid "Error in trap delete." +msgstr "Error al eliminar el trap." + +#: ../../include/functions_api.php:15340 +msgid "Deleted traps." +msgstr "Traps eliminados." + +#: ../../include/functions_api.php:15498 +msgid "Error. Agent cannot be left blank." +msgstr "Error. El agente no puede estar vacío." + +#: ../../include/functions_api.php:15505 ../../include/functions_api.php:15955 +msgid "This agent does not exist." +msgstr "El agente no existe." + +#: ../../include/functions_api.php:15527 +#, php-format +msgid "Successfully updated module/alert count in id agent %d." +msgstr "" +"Recuento de módulos/alertas en ID de agente %d actualizado correctamente." + +#: ../../include/functions_api.php:15529 +msgid "Successfully updated module/alert count in all agents" +msgstr "" +"Recuento de módulos/alertas actualizado correctamente en todos los agentes" + +#: ../../include/functions_api.php:15603 +msgid "Users could not be found." +msgstr "No se han encontrado usuarios." + +#: ../../include/functions_api.php:15807 ../../include/functions_api.php:15814 +msgid "User profile could not be deleted." +msgstr "No se ha podido eliminar el perfil de usuario." + +#: ../../include/functions_api.php:15862 ../../include/functions_api.php:15889 +msgid "User profile could not be available." +msgstr "Perfil de usuario no disponible." + +#: ../../include/functions_api.php:15950 +msgid "This policy does not exist." +msgstr "Esta política no existe." + +#: ../../include/functions_api.php:15960 +msgid "This agent does not exist in this policy." +msgstr "Este agente no existe en esta politica." + +#: ../../include/functions_api.php:15965 +#, php-format +msgid "Successfully added to delete pending id agent %d to id policy %d." +msgstr "" +"Se ha añadido correctamente el agente %d a pendiente de eliminación en la " +"política %d." + +#: ../../include/functions_networkmap.php:1291 +msgid "Radial dynamic" +msgstr "Dinámico radial" + +#: ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:38 +msgid "Topology" +msgstr "Topología" + +#: ../../include/functions_networkmap.php:1313 +msgid "Create a new topology map" +msgstr "Crear nuevo mapa topológico" + +#: ../../include/functions_networkmap.php:1314 +msgid "Create a new group map" +msgstr "Crear nuevo mapa de grupo" + +#: ../../include/functions_networkmap.php:1315 +msgid "Create a new dynamic map" +msgstr "Crear un nuevo mapa dinámico" + +#: ../../include/functions_networkmap.php:1317 +msgid "Create a new radial dynamic map" +msgstr "Crear un nuevo mapa dinámico radial" + +#: ../../include/functions_networkmap.php:2032 +#: ../../include/functions_maps.php:73 +msgid "Copy of " +msgstr "Copiar de " + +#: ../../include/ajax/double_auth.ajax.php:140 +msgid "" +"This is the private code that you should use with your authenticator app" +msgstr "" +"Esta es la clave privada que deberías usar con la aplicación de " +"autentificación." + +#: ../../include/ajax/double_auth.ajax.php:141 +#: ../../include/ajax/double_auth.ajax.php:279 +msgid "" +"You could enter the code manually or use the QR code to add it automatically" +msgstr "" +"Puedes introducir el código manualmente o usar el código QR para añadirlo " +"automáticamente." + +#: ../../include/ajax/double_auth.ajax.php:147 +#: ../../include/ajax/double_auth.ajax.php:285 +msgid "QR" +msgstr "QR" + +#: ../../include/ajax/double_auth.ajax.php:183 +msgid "You are about to activate the double authentication" +msgstr "Estás a punto de activar la doble autentificación." + +#: ../../include/ajax/double_auth.ajax.php:185 +msgid "" +"With this option enabled, your account access will be more secure, \n" +"\t\tcause a code generated by other application will be required after the " +"login" +msgstr "" +"Con esta opción habilitada, el acceso a tu cuenta será más seguro,\n" +"\t\tporque el código generado por otra aplicación se generará después de " +"conectarse." + +#: ../../include/ajax/double_auth.ajax.php:190 +msgid "" +"You will need to install the app from the following link before continue" +msgstr "" +"Tienes que instalar la aplicación desde el siguiente vínculo antes de " +"continuar." + +#: ../../include/ajax/double_auth.ajax.php:195 +msgid "Download the app" +msgstr "Descargue la aplicación" + +#: ../../include/ajax/double_auth.ajax.php:199 +#: ../../include/ajax/double_auth.ajax.php:290 +#: ../../include/functions_update_manager.php:213 +msgid "Continue" +msgstr "Continuar" + +#: ../../include/ajax/double_auth.ajax.php:215 +msgid "Are you installed the app yet?" +msgstr "¿Ya has instalado la aplicación?" + +#: ../../include/ajax/double_auth.ajax.php:243 +#: ../../include/ajax/double_auth.ajax.php:340 +#: ../../include/ajax/double_auth.ajax.php:385 +#: ../../include/ajax/double_auth.ajax.php:499 +#: ../../operation/users/user_edit.php:972 +#: ../../operation/users/user_edit.php:1038 +#: ../../operation/users/user_edit.php:1109 ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "Error de autentificación" + +#: ../../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 +#: ../../operation/users/user_edit.php:979 +#: ../../operation/users/user_edit.php:1045 +msgid "There was an error loading the data" +msgstr "Error al cargar los datos" + +#: ../../include/ajax/double_auth.ajax.php:273 +msgid "A private code has been generated" +msgstr "Un código privado ha sido generado." + +#: ../../include/ajax/double_auth.ajax.php:278 +msgid "" +"Before continue, you should create a new entry into the authenticator app" +msgstr "" +"Antes de continuar, deberías crear una nueva entrada dentro de la aplicación " +"de autentificación." + +#: ../../include/ajax/double_auth.ajax.php:288 +msgid "Refresh code" +msgstr "Actualizar el código" + +#: ../../include/ajax/double_auth.ajax.php:356 +msgid "Are you introduced the code in the authenticator app yet?" +msgstr "¿Ya has introducido el código en la aplicación de autentificación?" + +#: ../../include/ajax/double_auth.ajax.php:418 +msgid "Introduce a code generated by the app" +msgstr "Introduce el código generado por la aplicación." + +#: ../../include/ajax/double_auth.ajax.php:419 +msgid "If the code is valid, the double authentication will be activated" +msgstr "Si el código es válido, se activará la doble autentificación." + +#: ../../include/ajax/double_auth.ajax.php:428 +msgid "Validate code" +msgstr "Validar código" + +#: ../../include/ajax/double_auth.ajax.php:479 +msgid "The code is valid, you can exit now" +msgstr "El código es válido, puedes salir ahora." + +#: ../../include/ajax/double_auth.ajax.php:495 +msgid "The code is valid, but it was an error saving the data" +msgstr "El código es válido, pero hubo un error al guardar los datos." + +#: ../../include/ajax/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:835 +#: ../../operation/agentes/alerts_status.php:517 +#: ../../operation/agentes/alerts_status.php:553 +#: ../../operation/agentes/alerts_status.php:587 +#: ../../operation/agentes/alerts_status.php:620 +msgid "Force execution" +msgstr "Forzar ejecución" + +#: ../../include/ajax/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:835 +#: ../../operation/agentes/alerts_status.php:517 +#: ../../operation/agentes/alerts_status.php:553 +#: ../../operation/agentes/alerts_status.php:587 +#: ../../operation/agentes/alerts_status.php:620 +msgid "F." +msgstr "F." + +#: ../../include/ajax/alert_list.ajax.php:327 +#: ../../operation/agentes/alerts_status.php:706 +msgid "No alerts found" +msgstr "No se encontró ninguna alerta" + +#: ../../include/ajax/snmp_browser.ajax.php:95 +#: ../../include/ajax/snmp_browser.ajax.php:106 +msgid "SNMP modules" +msgstr "Módulos SNMP" + +#: ../../include/ajax/snmp_browser.ajax.php:99 +msgid "Error creating the following modules:" +msgstr "Error al crear los siguientes módulos:" + +#: ../../include/ajax/snmp_browser.ajax.php:110 +msgid "Modules successfully created" +msgstr "Módulos creados correctamente" + +#: ../../include/ajax/snmp_browser.ajax.php:223 +msgid "Failed to create policy" +msgstr "Error al crear política" + +#: ../../include/ajax/snmp_browser.ajax.php:224 +msgid "Policy created succesfully" +msgstr "Política creada con éxito" + +#: ../../include/ajax/module.php:172 +msgid "3 months" +msgstr "3 meses" + +#: ../../include/ajax/module.php:175 +msgid "2 years" +msgstr "2 años" + +#: ../../include/ajax/module.php:176 +msgid "3 years" +msgstr "3 años" + +#: ../../include/ajax/module.php:188 +#: ../../operation/agentes/datos_agente.php:194 +msgid "Choose a time from now" +msgstr "Elija un tiempo a partir de ahora" + +#: ../../include/ajax/module.php:204 +#: ../../operation/agentes/datos_agente.php:197 +msgid "Specify time range" +msgstr "Especificar rango de tiempo" + +#: ../../include/ajax/module.php:250 +msgid "Exact phrase" +msgstr "Frase exacta" + +#: ../../include/ajax/module.php:1128 +msgid "Any monitors aren't with this filter." +msgstr "No todos los monitores llevan este filtro" + +#: ../../include/ajax/module.php:1130 +msgid "This agent doesn't have any active monitors." +msgstr "Este agente no tiene ningún monitor activo." #: ../../include/ajax/custom_fields.php:404 msgid "Current interval" @@ -22680,19 +38836,6 @@ msgstr "Nuevo filtro" msgid "Existing Filter" msgstr "Filtro existente" -#: ../../include/ajax/custom_fields.php:577 ../../include/ajax/events.php:387 -#: ../../include/ajax/events.php:403 ../../operation/events/events.php:975 -#: ../../operation/events/events_list.php:372 -#: ../../operation/events/events_list.php:512 -#: ../../operation/events/events_list.php:523 -#: ../../operation/events/events_list.php:1039 -#: ../../operation/netflow/nf_live_view.php:389 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:281 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:287 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:288 -msgid "Load filter" -msgstr "Cargar filtro" - #: ../../include/ajax/custom_fields.php:690 msgid "Delete filter" msgstr "Eliminar filtro" @@ -22738,120 +38881,61 @@ msgstr "Se ha eliminado el filtro." msgid "Error delete filter." msgstr "Error al eliminar el filtro." -#: ../../include/ajax/double_auth.ajax.php:140 -msgid "" -"This is the private code that you should use with your authenticator app" -msgstr "" -"Esta es la clave privada que deberías usar con la aplicación de " -"autentificación." +#: ../../include/ajax/update_manager.ajax.php:119 +msgid "Invalid extension. The package must have the extension .oum." +msgstr "Extensión no válida. El paquete debe tener la extensión .oum" -#: ../../include/ajax/double_auth.ajax.php:141 -#: ../../include/ajax/double_auth.ajax.php:279 -msgid "" -"You could enter the code manually or use the QR code to add it automatically" -msgstr "" -"Puedes introducir el código manualmente o usar el código QR para añadirlo " -"automáticamente." +#: ../../include/ajax/update_manager.ajax.php:126 +msgid "The file was not uploaded succesfully." +msgstr "El archivo no se pudo subir correctamente." -#: ../../include/ajax/double_auth.ajax.php:145 -#: ../../include/ajax/double_auth.ajax.php:283 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 -msgid "Code" -msgstr "Código" +#: ../../include/ajax/update_manager.ajax.php:280 +msgid "Package rejected." +msgstr "Paquete rechazado" -#: ../../include/ajax/double_auth.ajax.php:147 -#: ../../include/ajax/double_auth.ajax.php:285 -msgid "QR" -msgstr "QR" +#: ../../include/ajax/update_manager.ajax.php:596 +msgid "The package is extracted." +msgstr "Paquete extraído" -#: ../../include/ajax/double_auth.ajax.php:183 -msgid "You are about to activate the double authentication" -msgstr "Estás a punto de activar la doble autentificación." +#: ../../include/ajax/update_manager.ajax.php:599 +msgid "Error in package extraction." +msgstr "Error al extraer el paquete" -#: ../../include/ajax/double_auth.ajax.php:185 -msgid "" -"With this option enabled, your account access will be more secure, \n" -"\t\tcause a code generated by other application will be required after the " -"login" -msgstr "" -"Con esta opción habilitada, el acceso a tu cuenta será más seguro,\n" -"\t\tporque el código generado por otra aplicación se generará después de " -"conectarse." +#: ../../include/ajax/update_manager.ajax.php:620 +msgid "An error ocurred in the installation process." +msgstr "Error durante el proceso de instalación" -#: ../../include/ajax/double_auth.ajax.php:190 -msgid "" -"You will need to install the app from the following link before continue" -msgstr "" -"Tienes que instalar la aplicación desde el siguiente vínculo antes de " -"continuar." +#: ../../include/ajax/update_manager.ajax.php:749 +msgid "Delete files" +msgstr "Borrar archivos" -#: ../../include/ajax/double_auth.ajax.php:195 -msgid "Download the app" -msgstr "Descargue la aplicación" +#: ../../include/ajax/update_manager.ajax.php:750 +msgid "The oum has no files to remove" +msgstr "Oum no tiene archivos que eliminar" -#: ../../include/ajax/double_auth.ajax.php:199 -#: ../../include/ajax/double_auth.ajax.php:290 -#: ../../include/functions_update_manager.php:213 -msgid "Continue" -msgstr "Continuar" +#: ../../include/ajax/update_manager.ajax.php:752 +msgid "Not deleted" +msgstr "No eliminado" -#: ../../include/ajax/double_auth.ajax.php:215 -msgid "Are you installed the app yet?" -msgstr "¿Ya has instalado la aplicación?" +#: ../../include/ajax/update_manager.ajax.php:753 +msgid "The file delete_file.txt can not be read" +msgstr "No se ha podido leer el archivo delete_file.txt" -#: ../../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 -#: ../../operation/users/user_edit.php:984 -#: ../../operation/users/user_edit.php:1050 -msgid "There was an error loading the data" -msgstr "Error al cargar los datos" +#: ../../include/ajax/update_manager.ajax.php:754 +msgid "'deleted' folder could not be created" +msgstr "No se ha podido crear la carpeta \"eliminado\"" -#: ../../include/ajax/double_auth.ajax.php:273 -msgid "A private code has been generated" -msgstr "Un código privado ha sido generado." +#: ../../include/ajax/update_manager.ajax.php:755 +msgid "'deleted' folder was created" +msgstr "Se ha creado la carpeta \"eliminado\"" -#: ../../include/ajax/double_auth.ajax.php:278 -msgid "" -"Before continue, you should create a new entry into the authenticator app" -msgstr "" -"Antes de continuar, deberías crear una nueva entrada dentro de la aplicación " -"de autentificación." +#: ../../include/ajax/update_manager.ajax.php:757 +msgid "The \"delete files\" could not be the \"delete\" folder" +msgstr "\"Eliminar archivos\" no ha podido ser la carpeta \"eliminar\"" -#: ../../include/ajax/double_auth.ajax.php:288 -msgid "Refresh code" -msgstr "Actualizar el código" - -#: ../../include/ajax/double_auth.ajax.php:356 -msgid "Are you introduced the code in the authenticator app yet?" -msgstr "¿Ya has introducido el código en la aplicación de autentificación?" - -#: ../../include/ajax/double_auth.ajax.php:418 -msgid "Introduce a code generated by the app" -msgstr "Introduce el código generado por la aplicación." - -#: ../../include/ajax/double_auth.ajax.php:419 -msgid "If the code is valid, the double authentication will be activated" -msgstr "Si el código es válido, se activará la doble autentificación." - -#: ../../include/ajax/double_auth.ajax.php:428 -msgid "Validate code" -msgstr "Validar código" - -#: ../../include/ajax/double_auth.ajax.php:479 -msgid "The code is valid, you can exit now" -msgstr "El código es válido, puedes salir ahora." - -#: ../../include/ajax/double_auth.ajax.php:487 -#: ../../mobile/include/user.class.php:189 ../../enterprise/meta/index.php:262 -#: ../../index.php:320 -msgid "Invalid code" -msgstr "Código no válido" - -#: ../../include/ajax/double_auth.ajax.php:495 -msgid "The code is valid, but it was an error saving the data" -msgstr "El código es válido, pero hubo un error al guardar los datos." +#: ../../include/ajax/update_manager.ajax.php:760 +msgid "The \"delete files\" is moved to the \"delete\" folder" +msgstr "\"Eliminar archivos\" se ha movido a la carpeta \"eliminar\"" #: ../../include/ajax/events.php:93 msgid "Failed to retrieve comments" @@ -22869,252 +38953,75 @@ msgstr "Guardar en el grupo" msgid "Overwrite filter" msgstr "Sobrescribir filtro" -#: ../../include/ajax/events.php:622 ../../operation/events/events.php:983 -#: ../../operation/events/events_list.php:364 -#: ../../operation/events/events_list.php:481 -#: ../../operation/events/events_list.php:1036 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:267 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:273 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:274 -msgid "Save filter" -msgstr "Guardar filtro" - #: ../../include/ajax/events.php:666 #: ../../operation/events/events_list.php:1518 msgid "Filter name cannot be left blank" msgstr "El nombre del filtro no se puede dejar en blanco." -#: ../../include/ajax/events.php:1002 +#: ../../include/ajax/events.php:1004 msgid "Error executing response" msgstr "Error al ejecutar respuesta" -#: ../../include/ajax/events.php:1030 ../../include/ajax/events.php:1063 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:329 -#, php-format -msgid "Executing command: %s" -msgstr "Ejecutar comando: %s" - -#: ../../include/ajax/events.php:1047 ../../include/ajax/events.php:1070 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:336 -msgid "Execute again" -msgstr "Ejecutar de nuevo" - -#: ../../include/ajax/events.php:1227 +#: ../../include/ajax/events.php:1231 msgid "Related" msgstr "Relacionado" -#: ../../include/ajax/events.php:1230 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:66 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:429 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1191 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:272 -msgid "Details" -msgstr "Detalles" - -#: ../../include/ajax/events.php:1231 +#: ../../include/ajax/events.php:1235 msgid "Agent fields" msgstr "Campos de agente" -#: ../../include/ajax/events.php:1253 +#: ../../include/ajax/events.php:1257 msgid "Custom data" msgstr "Datos personalizados" -#: ../../include/ajax/events.php:1339 +#: ../../include/ajax/events.php:1343 msgid "Error adding comment" msgstr "Error al añadir el comentario" -#: ../../include/ajax/events.php:1340 +#: ../../include/ajax/events.php:1344 msgid "Comment added successfully" msgstr "Comentario añadido correctamente" -#: ../../include/ajax/events.php:1341 +#: ../../include/ajax/events.php:1345 msgid "Error changing event status" msgstr "Error al cambiar el estado del evento" -#: ../../include/ajax/events.php:1342 +#: ../../include/ajax/events.php:1346 msgid "Event status changed successfully" msgstr "Estado del evento cambiado correctamente" -#: ../../include/ajax/events.php:1343 +#: ../../include/ajax/events.php:1347 msgid "Error changing event owner" msgstr "Error al cambiar el propietario del evento" -#: ../../include/ajax/events.php:1344 +#: ../../include/ajax/events.php:1348 msgid "Event owner changed successfully" msgstr "Propietario del evento cambiado correctamente" -#: ../../include/ajax/events.php:1471 ../../include/functions_events.php:2429 -#: ../../include/functions_events.php:4365 -#: ../../include/functions_events.php:6160 -#: ../../include/functions_events.php.orig:2335 -#: ../../include/functions_events.php.orig:4268 -#: ../../include/functions_events.php.orig:6064 -#: ../../include/functions_reporting_html.php:993 -#: ../../include/functions_reporting_html.php:1216 -#: ../../include/functions_reporting_html.php:1981 -#: ../../include/functions_reporting.php:8316 -#: ../../mobile/operation/events.php:267 -#: ../../operation/events/events.build_table.php:413 -#: ../../operation/events/events.php:1921 -msgid "New event" -msgstr "Nuevo evento" - -#: ../../include/ajax/events.php:1476 ../../include/functions_events.php:2434 -#: ../../include/functions_events.php:4371 -#: ../../include/functions_events.php:6165 -#: ../../include/functions_events.php.orig:2340 -#: ../../include/functions_events.php.orig:4274 -#: ../../include/functions_events.php.orig:6069 -#: ../../include/functions_reporting_html.php:998 -#: ../../include/functions_reporting_html.php:1221 -#: ../../include/functions_reporting_html.php:1986 -#: ../../include/functions_reporting.php:8321 -#: ../../mobile/operation/events.php:272 -#: ../../operation/events/events.build_table.php:418 -#: ../../operation/events/events.php:1925 -msgid "Event validated" -msgstr "Evento validado" - -#: ../../include/ajax/events.php:1481 ../../include/functions_events.php:2439 -#: ../../include/functions_events.php:4377 -#: ../../include/functions_events.php:6170 -#: ../../include/functions_events.php.orig:2345 -#: ../../include/functions_events.php.orig:4280 -#: ../../include/functions_events.php.orig:6074 -#: ../../include/functions_reporting_html.php:1003 -#: ../../include/functions_reporting_html.php:1226 -#: ../../include/functions_reporting_html.php:1991 -#: ../../include/functions_reporting.php:8326 -#: ../../mobile/operation/events.php:277 -#: ../../operation/events/events.build_table.php:423 -#: ../../operation/events/events.php:1929 -msgid "Event in process" -msgstr "Evento en proceso" - -#: ../../include/ajax/events.php:1550 +#: ../../include/ajax/events.php:1554 msgid "Show all Events 24h" msgstr "Mostrar todos los eventos en las últimas 24h" -#: ../../include/ajax/events.php:1683 +#: ../../include/ajax/events.php:1687 msgid "These commands will apply to all selected events" msgstr "Estos comandos se aplicarán en todos los eventos seleccionados" -#: ../../include/ajax/events.php:1784 +#: ../../include/ajax/events.php:1788 msgid "Alert fired in module " msgstr "Alerta disparada en el módulo " -#: ../../include/ajax/events.php:1798 ../../include/ajax/events.php:1812 -#: ../../include/ajax/events.php:1826 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 -msgid "Module " -msgstr "Módulo " - -#: ../../include/ajax/events.php:1799 +#: ../../include/ajax/events.php:1803 msgid " is going to critical" msgstr " cambiando a CRÍTICO" -#: ../../include/ajax/events.php:1813 +#: ../../include/ajax/events.php:1817 msgid " is going to warning" msgstr " cambiando a ADVERTENCIA" -#: ../../include/ajax/events.php:1827 +#: ../../include/ajax/events.php:1831 msgid " is going to unknown" msgstr " cambiando a DESCONOCIDO" -#: ../../include/ajax/graph.ajax.php:157 -msgid "Time container lapse" -msgstr "Lapso del contenedor de tiempo" - -#: ../../include/ajax/module.php:164 ../../include/functions.php:3197 -msgid "30 minutes" -msgstr "30 minutos" - -#: ../../include/ajax/module.php:166 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 -msgid "6 hours" -msgstr "6 horas" - -#: ../../include/ajax/module.php:172 -msgid "3 months" -msgstr "3 meses" - -#: ../../include/ajax/module.php:173 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:197 -msgid "6 months" -msgstr "6 meses" - -#: ../../include/ajax/module.php:174 ../../include/functions.php:2544 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 -msgid "1 year" -msgstr "1 año" - -#: ../../include/ajax/module.php:175 -msgid "2 years" -msgstr "2 años" - -#: ../../include/ajax/module.php:176 -msgid "3 years" -msgstr "3 años" - -#: ../../include/ajax/module.php:188 -#: ../../operation/agentes/datos_agente.php:194 -msgid "Choose a time from now" -msgstr "Elija un tiempo a partir de ahora" - -#: ../../include/ajax/module.php:204 -#: ../../operation/agentes/datos_agente.php:197 -msgid "Specify time range" -msgstr "Especificar rango de tiempo" - -#: ../../include/ajax/module.php:205 -#: ../../operation/agentes/datos_agente.php:198 -#: ../../operation/events/events_list.php:867 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:598 -msgid "Timestamp from:" -msgstr "Marca temporal desde:" - -#: ../../include/ajax/module.php:225 -#: ../../operation/agentes/datos_agente.php:204 -#: ../../operation/events/events_list.php:870 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:616 -msgid "Timestamp to:" -msgstr "Marca temporal hasta:" - -#: ../../include/ajax/module.php:250 -msgid "Exact phrase" -msgstr "Frase exacta" - -#: ../../include/ajax/module.php:828 -#: ../../operation/agentes/alerts_status.php:508 -#: ../../operation/agentes/alerts_status.php:544 -#: ../../operation/agentes/alerts_status.php:578 -#: ../../operation/agentes/alerts_status.php:611 -msgid "Force execution" -msgstr "Forzar ejecución" - -#: ../../include/ajax/module.php:828 -#: ../../operation/agentes/alerts_status.php:508 -#: ../../operation/agentes/alerts_status.php:544 -#: ../../operation/agentes/alerts_status.php:578 -#: ../../operation/agentes/alerts_status.php:611 -msgid "F." -msgstr "F." - -#: ../../include/ajax/module.php:839 -#: ../../enterprise/meta/include/functions_wizard_meta.php:993 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1080 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -msgid "Thresholds" -msgstr "Umbrales" - -#: ../../include/ajax/module.php:1197 -msgid "Any monitors aren't with this filter." -msgstr "No todos los monitores llevan este filtro" - -#: ../../include/ajax/module.php:1199 -msgid "This agent doesn't have any active monitors." -msgstr "Este agente no tiene ningún monitor activo." - #: ../../include/ajax/rolling_release.ajax.php:55 msgid "The sql file contains a dangerous query" msgstr "El archivo SQL contiene una consulta peligrosa." @@ -23141,214 +39048,109 @@ msgstr "" msgid " does not exist" msgstr " no existe" -#: ../../include/ajax/task_list.ajax.php:50 -msgid "Overall Progress" -msgstr "Progreso total" +#: ../../include/ajax/graph.ajax.php:155 +msgid "Time container lapse" +msgstr "Lapso del contenedor de tiempo" -#: ../../include/ajax/task_list.ajax.php:70 -msgid "Scanning network" -msgstr "Escaneando red" - -#: ../../include/ajax/task_list.ajax.php:74 -msgid "Finding AFT connectivity" -msgstr "Buscando conexión AFT" - -#: ../../include/ajax/task_list.ajax.php:78 -msgid "Finding traceroute connectivity" -msgstr "Buscando conexión traceroute" - -#: ../../include/ajax/task_list.ajax.php:82 -msgid "Finding gateway connectivity" -msgstr "Buscando conexión de entrada" - -#: ../../include/ajax/task_list.ajax.php:86 -msgid "Searching for devices..." -msgstr "Buscando dispositivos..." - -#: ../../include/ajax/task_list.ajax.php:122 -msgid "Hosts discovered" -msgstr "Hosts encontrados" - -#: ../../include/ajax/task_list.ajax.php:127 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1734 -#: ../../enterprise/extensions/ipam/ipam_network.php:342 -msgid "Alive" -msgstr "Activo" - -#: ../../include/ajax/task_list.ajax.php:132 -#: ../../enterprise/extensions/ipam/ipam_network.php:351 -msgid "Not alive" -msgstr "Inactivo" - -#: ../../include/ajax/task_list.ajax.php:137 -msgid "Responding SNMP" -msgstr "SNMP disponible" - -#: ../../include/ajax/task_list.ajax.php:142 -msgid "Responding WMI" -msgstr "WMI disponible" - -#: ../../include/ajax/task_list.ajax.php:147 -#: ../../include/functions_netflow.php:1034 -#: ../../include/functions_reporting_html.php:3783 -#: ../../include/functions_reporting_html.php:3920 -#: ../../enterprise/dashboard/widgets/tactical.php:50 -msgid "Summary" -msgstr "Lista de agentes" - -#: ../../include/ajax/task_list.ajax.php:152 -#: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2922 -#: ../../enterprise/godmode/reporting/visual_console_template.php:227 -#: ../../enterprise/godmode/setup/setup_acl.php:693 -#: ../../enterprise/operation/agentes/wux_console_view.php:558 -msgid "No data to show" -msgstr "No hay datos que mostrar" - -#: ../../include/ajax/update_manager.ajax.php:96 -#: ../../enterprise/include/functions_update_manager.php:453 -msgid "There was an error extracting the file '" -msgstr "Error al extraer el archivo" - -#: ../../include/ajax/update_manager.ajax.php:113 -#: ../../enterprise/include/functions_update_manager.php:470 -msgid "The package was not extracted." -msgstr "El paquete no se pudo extraer." - -#: ../../include/ajax/update_manager.ajax.php:119 -msgid "Invalid extension. The package must have the extension .oum." -msgstr "Extensión no válida. El paquete debe tener la extensión .oum" - -#: ../../include/ajax/update_manager.ajax.php:126 -msgid "The file was not uploaded succesfully." -msgstr "El archivo no se pudo subir correctamente." - -#: ../../include/ajax/update_manager.ajax.php:207 -#: ../../include/ajax/update_manager.ajax.php:212 -#: ../../include/ajax/update_manager.ajax.php:238 -#: ../../include/functions_update_manager.php:1107 -#: ../../include/functions_update_manager.php:1112 -#: ../../include/functions_update_manager.php:1132 -#: ../../enterprise/include/functions_update_manager.php:628 -#: ../../enterprise/include/functions_update_manager.php:633 -#: ../../enterprise/include/functions_update_manager.php:653 -msgid "Some of your files might not be recovered." +#: ../../include/functions_agents.php:928 +msgid "" +"There was an error copying the agent configuration, the copy has been " +"cancelled" msgstr "" -"Puede que algunos de los archivos no se hayan recuperado correctamente." +"Hubo un error al copiar la configuración del agente, se canceló la copia." -#: ../../include/ajax/update_manager.ajax.php:217 -#: ../../include/ajax/update_manager.ajax.php:232 -#: ../../include/functions_update_manager.php:1102 -#: ../../include/functions_update_manager.php:1141 -#: ../../enterprise/include/functions_update_manager.php:619 -#: ../../enterprise/include/functions_update_manager.php:662 -msgid "Some of your old files might not be recovered." -msgstr "Algunos de los archivos antiguos no se han podido recuperar." +#: ../../include/functions_agents.php:2633 +#: ../../include/functions_agents.php:2672 +#: ../../include/functions_agents.php:2743 +msgid "No Monitors" +msgstr "No hay monitores" -#: ../../include/ajax/update_manager.ajax.php:253 -#: ../../include/functions_update_manager.php:1061 -#: ../../enterprise/include/functions_update_manager.php:575 -msgid "An error ocurred while reading a file." -msgstr "Se produjo un error al leer un archivo." +#: ../../include/functions_agents.php:2641 +#: ../../include/functions_agents.php:2696 +#: ../../include/functions_agents.php:2751 +#: ../../include/functions_reporting.php:10004 +msgid "At least one module in CRITICAL status" +msgstr "Al menos un módulo está en estado CRÍTICO" -#: ../../include/ajax/update_manager.ajax.php:259 -#: ../../include/functions_update_manager.php:1163 -#: ../../enterprise/include/functions_update_manager.php:684 -msgid "The package does not exist" -msgstr "El paquete no existe." +#: ../../include/functions_agents.php:2647 +#: ../../include/functions_agents.php:2706 +#: ../../include/functions_agents.php:2759 +#: ../../include/functions_reporting.php:10011 +msgid "At least one module in WARNING status" +msgstr "Al menos un módulo está en estado de ADVERTENCIA" -#: ../../include/ajax/update_manager.ajax.php:280 -msgid "Package rejected." -msgstr "Paquete rechazado" +#: ../../include/functions_agents.php:2653 +#: ../../include/functions_agents.php:2716 +#: ../../include/functions_agents.php:2767 +#: ../../include/functions_reporting.php:10018 +msgid "At least one module is in UKNOWN status" +msgstr "Al menos un módulo está en estado DESCONOCIDO" -#: ../../include/ajax/update_manager.ajax.php:462 -#: ../../enterprise/include/functions_update_manager.php:383 -msgid "Fail to update to the last package." -msgstr "Error al actualizar al ultimo paquete" +#: ../../include/functions_agents.php:2659 +#: ../../include/functions_agents.php:2726 +#: ../../include/functions_agents.php:2775 +#: ../../include/functions_reporting.php:10025 +msgid "All Monitors OK" +msgstr "Todos los monitores OK" -#: ../../include/ajax/update_manager.ajax.php:474 -#: ../../enterprise/include/functions_update_manager.php:409 -msgid "Starting to update to the last package." -msgstr "Comenzando la actualización al último paquete" +#: ../../include/functions_agents.php:2684 +msgid "Alert fired on agent" +msgstr "Alerta disparada en agente" -#: ../../include/ajax/update_manager.ajax.php:571 -#: ../../enterprise/include/functions_update_manager.php:526 -msgid "progress" -msgstr "progreso" +#: ../../include/functions_agents.php:3631 +msgid "Average time of SAPGUI response " +msgstr "Media de tiempo de respuesta de SAPGUI " -#: ../../include/ajax/update_manager.ajax.php:596 -msgid "The package is extracted." -msgstr "Paquete extraído" +#: ../../include/functions_agents.php:3633 +msgid "Dialog Logged users " +msgstr "Usuarios conectados en el diálogo " -#: ../../include/ajax/update_manager.ajax.php:599 -msgid "Error in package extraction." -msgstr "Error al extraer el paquete" +#: ../../include/functions_integriaims.php:41 +msgid "Configure Integria IMS" +msgstr "Configurar Integria IMS" -#: ../../include/ajax/update_manager.ajax.php:617 -#: ../../include/functions_update_manager.php:1178 -#: ../../enterprise/include/functions_update_manager.php:697 -msgid "The package is installed." -msgstr "El paquete está instalado." +#: ../../include/functions_integriaims.php:42 +msgid "Ticket list" +msgstr "Lista de tickets" -#: ../../include/ajax/update_manager.ajax.php:620 -msgid "An error ocurred in the installation process." -msgstr "Error durante el proceso de instalación" +#: ../../include/functions_integriaims.php:43 +msgid "New ticket" +msgstr "Nuevo ticket" -#: ../../include/ajax/update_manager.ajax.php:749 -msgid "Delete files" -msgstr "Borrar archivos" +#: ../../include/functions_integriaims.php:72 +msgid "Edit ticket" +msgstr "Editar ticket" -#: ../../include/ajax/update_manager.ajax.php:750 -msgid "The oum has no files to remove" -msgstr "Oum no tiene archivos que eliminar" +#: ../../include/functions_integriaims.php:73 +msgid "View ticket" +msgstr "Ver ticket" -#: ../../include/ajax/update_manager.ajax.php:751 -#: ../../enterprise/godmode/services/services.service.php:227 -#: ../../enterprise/godmode/services/services.service.php:262 -#: ../../enterprise/operation/services/services.service.php:37 -#: ../../enterprise/operation/services/services.service_map.php:44 -msgid "Not found" -msgstr "No encontrado" +#: ../../include/functions_integriaims.php:209 +msgid "" +"API request failed. Please check Integria IMS' access credentials in Pandora " +"setup." +msgstr "" +"Error de petición API. Compruebe los credenciales de acceso a Integria IMS " +"en los ajustes de Pandora FMS." -#: ../../include/ajax/update_manager.ajax.php:752 -msgid "Not deleted" -msgstr "No eliminado" +#: ../../include/functions_modules.php:3465 +msgid "Realtime SNMP graph" +msgstr "Gráfica SNMP en tiempo real" -#: ../../include/ajax/update_manager.ajax.php:753 -msgid "The file delete_file.txt can not be read" -msgstr "No se ha podido leer el archivo delete_file.txt" +#: ../../include/functions_modules.php:3528 +msgid "ALL" +msgstr "TODO" -#: ../../include/ajax/update_manager.ajax.php:754 -msgid "'deleted' folder could not be created" -msgstr "No se ha podido crear la carpeta \"eliminado\"" +#: ../../include/functions_modules.php:3536 +#: ../../include/class/Tree.class.php:601 +#: ../../operation/agentes/status_monitor.php:1444 +#: ../../operation/agentes/status_monitor.php:1450 +msgid "NO DATA" +msgstr "SIN DATOS" -#: ../../include/ajax/update_manager.ajax.php:755 -msgid "'deleted' folder was created" -msgstr "Se ha creado la carpeta \"eliminado\"" - -#: ../../include/ajax/update_manager.ajax.php:757 -msgid "The \"delete files\" could not be the \"delete\" folder" -msgstr "\"Eliminar archivos\" no ha podido ser la carpeta \"eliminar\"" - -#: ../../include/ajax/update_manager.ajax.php:760 -msgid "The \"delete files\" is moved to the \"delete\" folder" -msgstr "\"Eliminar archivos\" se ha movido a la carpeta \"eliminar\"" - -#: ../../include/api.php:206 -msgid "User or group not specified" -msgstr "Usuario o grupo no especificados" - -#: ../../include/api.php:207 -msgid "User, group not specified" -msgstr "Usuario y grupo no especificados" - -#: ../../include/api.php:238 -msgid "User, group or profile not specified" -msgstr "Usuario, grupo o perfil no especificados" - -#: ../../include/api.php:239 -msgid "User, group or profile status not specified" -msgstr "Usuario, grupo o estado de perfil no especificados" +#: ../../include/functions_modules.php:3544 +msgid "NOT NORMAL" +msgstr "NO NORMAL" #: ../../include/auth/mysql.php:276 ../../include/auth/mysql.php:313 msgid "" @@ -23401,722 +39203,2072 @@ msgstr "No se pudo cambiar la contraseña en el Pandora FMS remoto." msgid "Your installation of PHP does not support LDAP" msgstr "Su instalación de PHP no es compatible con LDAP." -#: ../../include/chart_generator.php:114 -#: ../../operation/agentes/interface_traffic_graph_win.php:42 -#: ../../operation/agentes/realtime_win.php:37 -#: ../../operation/agentes/stat_win.php:37 -msgid "There was a problem connecting with the node" -msgstr "Error al conectar con el nodo" +#: ../../include/api.php:206 +msgid "User or group not specified" +msgstr "Usuario o grupo no especificados" -#: ../../include/class/ConsoleSupervisor.php:732 -msgid "Limited mode." -msgstr "Modo limitado." +#: ../../include/api.php:207 +msgid "User, group not specified" +msgstr "Usuario y grupo no especificados" -#: ../../include/class/ConsoleSupervisor.php:747 -msgid "License is about to expire" -msgstr "La licencia está a punto de caducar" +#: ../../include/api.php:238 +msgid "User, group or profile not specified" +msgstr "Usuario, grupo o perfil no especificados" -#: ../../include/class/ConsoleSupervisor.php:749 +#: ../../include/api.php:239 +msgid "User, group or profile status not specified" +msgstr "Usuario, grupo o estado de perfil no especificados" + +#: ../../include/functions_graph.php:1020 +msgid "No data to display within the selected interval" +msgstr "No hay datos en el intervalo seleccionado" + +#: ../../include/functions_graph.php:2467 +msgid "Not fired alerts" +msgstr "No se han disparado alertas." + +#: ../../include/functions_graph.php:2486 +#: ../../include/functions_graph.php:2604 +#: ../../include/functions_graph.php:2702 +#: ../../include/functions_graph.php:3276 +#: ../../include/functions_graph.php:3806 +#: ../../include/functions_reporting.php:1669 +#: ../../include/functions_reporting.php:1883 +#: ../../include/functions_reporting.php:1908 +#: ../../include/functions_reporting.php:1935 +#: ../../include/functions_reporting.php:1962 +#: ../../include/functions_reporting.php:2809 +#: ../../include/functions_reporting.php:3060 +#: ../../include/functions_reporting.php:3087 +#: ../../include/functions_reporting.php:3114 +#: ../../include/functions_reporting.php:8248 +#: ../../include/functions_reporting.php:8275 +#: ../../include/functions_reporting.php:8302 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:493 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:449 +msgid "other" +msgstr "otro" + +#: ../../include/functions_graph.php:2878 +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:55 +msgid "Informative" +msgstr "Informativo" + +#: ../../include/functions_graph.php:2879 +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:59 +#: ../../include/functions_netflow.php:1588 +msgid "Low" +msgstr "Bajo" + +#: ../../include/functions_graph.php:2880 +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:63 +#: ../../include/functions_netflow.php:1589 +msgid "Medium" +msgstr "Medio" + +#: ../../include/functions_graph.php:2881 +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:67 +msgid "Serious" +msgstr "Grave" + +#: ../../include/functions_graph.php:2882 +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:71 +msgid "Very serious" +msgstr "Muy grave" + +#: ../../include/functions_graph.php:2921 +#: ../../include/functions_graph.php:2944 +msgid "Open incident" +msgstr "Abrir incidente" + +#: ../../include/functions_graph.php:2922 +#: ../../include/functions_graph.php:2948 +msgid "Closed incident" +msgstr "Incidente cerrado" + +#: ../../include/functions_graph.php:2923 +#: ../../include/functions_graph.php:2952 +msgid "Outdated" +msgstr "Obsoleto" + +#: ../../include/functions_graph.php:3258 +#: ../../include/functions_events.php:2419 +#: ../../include/functions_events.php:3155 +#: ../../include/functions_events.php:3435 +#: ../../include/functions_events.php:3444 +#: ../../include/functions_events.php:3451 +#: ../../include/functions_events.php:3458 +#: ../../include/functions_events.php:5548 +#: ../../include/functions_events.php:5556 +#: ../../operation/snmpconsole/snmp_view.php:564 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1153 +msgid "Validated" +msgstr "Validado" + +#: ../../include/functions_graph.php:3387 ../../include/functions_ui.php:3597 +#: ../../include/functions_events.php:98 +#: ../../include/functions_events.php:2686 +#: ../../operation/events/events.php:1799 +msgid "SYSTEM" +msgstr "SISTEMA" + +#: ../../include/functions_graph.php:5350 +msgid "Main node" +msgstr "Nodo principal" + +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 +#: ../../include/functions_gis.php:36 +msgid "Hierarchy of agents" +msgstr "Jerarquía de agentes" + +#: ../../include/functions_treeview.php:52 +msgid "There was a problem loading module" +msgstr "Error al cargar el módulo" + +#: ../../include/functions_treeview.php:346 +msgid "Go to module edition" +msgstr "Ir a la edición de módulos" + +#: ../../include/functions_treeview.php:397 +msgid "There was a problem loading alerts" +msgstr "Error al cargar las alertas" + +#: ../../include/functions_treeview.php:482 +msgid "Go to alerts edition" +msgstr "Ir a \"editar alertas\"" + +#: ../../include/functions_treeview.php:554 +#: ../../operation/agentes/agent_fields.php:24 +#: ../../operation/agentes/custom_fields.php:24 +#: ../../operation/agentes/estado_generalagente.php:63 +msgid "There was a problem loading agent" +msgstr "Error al cargar la configuración del agente" + +#: ../../include/functions_treeview.php:615 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Other IP addresses" +msgstr "Otras direcciones IP" + +#: ../../include/functions_treeview.php:653 +msgid "Next agent contact" +msgstr "Siguiente contacto con el agente" + +#: ../../include/functions_treeview.php:680 +msgid "Edit cluster" +msgstr "Editar cluster" + +#: ../../include/functions_treeview.php:684 +msgid "Go to agent edition" +msgstr "Ir a \"editar agentes\"" + +#: ../../include/functions_treeview.php:696 +msgid "Agent data" +msgstr "Datos de agentes" + +#: ../../include/functions_treeview.php:727 +#: ../../operation/agentes/estado_generalagente.php:407 +msgid "Position (Long, Lat)" +msgstr "Posición (longitud, latitud)" + +#: ../../include/functions_treeview.php:744 +#: ../../operation/agentes/estado_generalagente.php:449 +msgid "Timezone Offset" +msgstr "Zona horaria desactivada" + +#: ../../include/functions_treeview.php:776 +msgid "Advanced information" +msgstr "Información avanzada" + +#: ../../include/functions_treeview.php:789 +msgid "Agent access rate (24h)" +msgstr "Accesibilidad del agente (24h)" + +#: ../../include/functions_treeview.php:872 +msgid "Interface information" +msgstr "Interfaz de información" + +#: ../../include/functions_menu.php:493 +msgid "Configure user" +msgstr "Configurar usuario" + +#: ../../include/functions_menu.php:494 +msgid "Configure profile" +msgstr "Configurar perfil" + +#: ../../include/functions_menu.php:496 +msgid "Manage recontask" +msgstr "Gestionar tarea recon" + +#: ../../include/functions_menu.php:498 +msgid "Module templates management" +msgstr "Gestión de plantillas de módulos" + +#: ../../include/functions_menu.php:499 +msgid "Inventory modules management" +msgstr "Gestión de módulos de inventario" + +#: ../../include/functions_menu.php:504 +msgid "View agent" +msgstr "Ver agente" + +#: ../../include/functions_menu.php:508 +msgid "Manage network map" +msgstr "Gestionar mapas de red" + +#: ../../include/functions_menu.php:510 +msgid "Builder visual console" +msgstr "Configurador de la consola visual" + +#: ../../include/functions_menu.php:512 +msgid "Administration events" +msgstr "Administrador de eventos" + +#: ../../include/functions_menu.php:514 +msgid "View reporting" +msgstr "Ver informes" + +#: ../../include/functions_menu.php:515 +msgid "Graph viewer" +msgstr "Visor de gráficos" + +#: ../../include/functions_menu.php:517 +msgid "Manage custom graphs" +msgstr "Gestionar gráficos personalizados" + +#: ../../include/functions_menu.php:518 +msgid "View graph containers" +msgstr "Ver contenedores de gráfico" + +#: ../../include/functions_menu.php:519 +msgid "Manage graph containers" +msgstr "Gestionar contenedores de gráfico" + +#: ../../include/functions_menu.php:520 +msgid "View graph templates" +msgstr "Ver plantillas de gráfico" + +#: ../../include/functions_menu.php:521 +msgid "Manage graph templates" +msgstr "Gestionar plantillas de gráfico" + +#: ../../include/functions_menu.php:522 +msgid "Graph template items" +msgstr "Elementos de la plantilla de gráfico" + +#: ../../include/functions_menu.php:523 +msgid "Graph template wizard" +msgstr "Asistente de plantilla de gráfico" + +#: ../../include/functions_menu.php:526 +msgid "Manage GIS Maps" +msgstr "Gestionar mapas GIS" + +#: ../../include/functions_menu.php:529 +msgid "Incidents statistics" +msgstr "Estadísticas de incidentes" + +#: ../../include/functions_menu.php:530 +msgid "Manage messages" +msgstr "Gestionar mensajes" + +#: ../../include/functions_menu.php:532 +msgid "Manage groups" +msgstr "Gestionar grupos" + +#: ../../include/functions_menu.php:533 +msgid "Manage module groups" +msgstr "Gestionar grupos de módulos" + +#: ../../include/functions_menu.php:534 +msgid "Manage custom field" +msgstr "Gestionar campos personalizados" + +#: ../../include/functions_menu.php:536 +msgid "Manage alert actions" +msgstr "Gestionar acciones de alertas" + +#: ../../include/functions_menu.php:537 +msgid "Manage commands" +msgstr "Gestionar comandos" + +#: ../../include/functions_menu.php:538 +msgid "Manage event alerts" +msgstr "Gestionar eventos de alertas" + +#: ../../include/functions_menu.php:540 +msgid "Manage export targets" +msgstr "Gestionar objetivos de exportación" + +#: ../../include/functions_menu.php:542 +msgid "Manage services" +msgstr "Gestionar de servicios" + +#: ../../include/functions_menu.php:544 ../../operation/menu.php:147 +msgid "SNMP filters" +msgstr "Filtros SNMP" + +#: ../../include/functions_menu.php:546 ../../operation/menu.php:148 +msgid "SNMP trap generator" +msgstr "Generador de traps SNMP" + +#: ../../include/functions_menu.php:547 ../../operation/menu.php:137 +msgid "SNMP console" +msgstr "Consola SNMP" + +#: ../../include/functions_menu.php:549 +msgid "Manage incident" +msgstr "Gestionar incidentes" + +#: ../../include/functions_menu.php:602 +msgid "Administration" +msgstr "Administración" + +#: ../../include/functions_incidents.php:95 +#: ../../include/functions_incidents.php:116 +msgid "Active incidents" +msgstr "Incidentes activos" + +#: ../../include/functions_incidents.php:96 +#: ../../include/functions_incidents.php:120 +msgid "Active incidents, with comments" +msgstr "Incidentes activos, con comentarios" + +#: ../../include/functions_incidents.php:97 +#: ../../include/functions_incidents.php:124 +msgid "Rejected incidents" +msgstr "Incidentes rechazados" + +#: ../../include/functions_incidents.php:98 +#: ../../include/functions_incidents.php:128 +msgid "Expired incidents" +msgstr "Incidentes caducados" + +#: ../../include/functions_incidents.php:99 +#: ../../include/functions_incidents.php:132 +msgid "Closed incidents" +msgstr "Incidentes cerrados" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "Topology Group" +msgstr "Tipología de grupo" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "" +"Please note that group topology maps do not show the parent relationship " +"between nodes, it only shows the group parentship and the agent distribution " +"inside them. " +msgstr "" +"Ten en cuenta que el grupo de mapas de topología no muestra la relación " +"padre entre los nodos, solo muestra el grupo padre y el agente de " +"distribución dentro de ellos. " + +#: ../../include/help/clippy/homepage.php:75 +msgid "Hi, can I help you?" +msgstr "Hola. ¿Te puedo ayudar?" + +#: ../../include/help/clippy/homepage.php:75 #, php-format msgid "" -"Your license will expire in %d days. Please, contact our sales department." +"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You " +"can follow my steps to do basic tasks in %s or you can close me and never " +"see me again." msgstr "" -"La licencia caducará en %d días. Póngase en contacto con el departamento " -"comercial." +"Déjame que me presente: Soy Pandorín, el molestoso asistente de %s. Puedes " +"seguir los pasos que te indico para llevar a cabo tareas básicas en %s o " +"cerrarme y no volverme a ver nunca." -#: ../../include/class/ConsoleSupervisor.php:760 -msgid "Expired license" -msgstr "Licencia caducada" +#: ../../include/help/clippy/homepage.php:75 +msgid "Close this wizard and don't open it again." +msgstr "Cerrar el asistente y no volver a abrirlo." -#: ../../include/class/ConsoleSupervisor.php:761 -msgid "Your license has expired. Please, contact our sales department." -msgstr "" -"La licencia ha caducado. Póngase en contacto con el departamento comercial." +#: ../../include/help/clippy/homepage.php:79 +msgid "Which task would you like to do first?" +msgstr "¿Qué tarea te gustaría realizar primero?" -#: ../../include/class/ConsoleSupervisor.php:834 -msgid "Attachment directory is not writable" -msgstr "No puede escribir en el directorio de adjuntos" +#: ../../include/help/clippy/homepage.php:79 +#, php-format +msgid "Ping a Linux or Windows server using a %s agent." +msgstr "Hacer ping a un servidor Linux o Windows usando un agente %s." -#: ../../include/class/ConsoleSupervisor.php:836 +#: ../../include/help/clippy/homepage.php:79 +msgid "Create a alert by email in a critical module." +msgstr "Crear una alerta que avise por email para un módulo crítico" + +#: ../../include/help/clippy/homepage.php:190 #, php-format msgid "" -"Directory %s is not writable. Please, configure corresponding permissions." +"The first thing you have to do is to setup the e-mail config on the %s " +"Server." msgstr "" -"No se ha podido escribir en el directorio de %s. Configure los permisos " -"pertinentes." +"Lo primero que tiene que hacer es establecer la configuración del correo " +"electrónico del servidor de %s." -#: ../../include/class/ConsoleSupervisor.php:856 -msgid "There are too many files in attachment directory" -msgstr "Ha superado el límite de archivos en el directorio de adjuntos" +#: ../../include/help/clippy/homepage.php:190 +msgid "If you have it already configured you can go to the next step." +msgstr "Si ya está configurado, puedes ir al siguiente paso." -#: ../../include/class/ConsoleSupervisor.php:858 +#: ../../include/help/clippy/homepage.php:195 +msgid "Now, pull down the Manage alerts menu and click on Actions. " +msgstr "Ahora, abre el menú Administrar alertas y haz clic en Acciones. " + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "You have unknown modules in this agent." +msgstr "Tienes módulos en estado desconocido en este agente." + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "" +"Unknown modules are modules which receive data normally at least in one " +"occassion, but at this time are not receving data. Please check our " +"troubleshoot help page to help you determine why you have unknown modules." +msgstr "" +"Los módulos desconocidos son módulos que reciben datos normalmente al menos " +"en una ocasión, pero en este momento no se reciben datos. Por favor, " +"consulta la página de ayuda para solucionar los problemas sobre los módulos " +"desconocidos." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"Please note that you have your agent setup to do not add new modules coming " +"from the data XML." +msgstr "" +"Por favor, ten en cuenta que si no tienes activado el modo aprendizaje no se " +"añadirán nuevos módulos que vengan del XML." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"That means if you have a local plugin or add manually new modules to the " +"configuration file, you won't have it in your agent, unless you first create " +"manually in the interface (with the exact name and type as coming in the XML " +"file)." +msgstr "" +"Esto quiere decir que si se tiene un plugin local o se añaden manualmente " +"nuevos módulos al archivo de configuración, no se encontrará en el agente a " +"menos que se cree primero en la interfaz (con el mismo nombre y tipo que el " +"archivo XML)." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"You should use the \"normal\" mode (non learn) only when you don't intend to " +"add more modules to the agent." +msgstr "" +"Deberías usar el modo \"normal\" (no aprendizaje) solo cuando no tengas " +"intención de añadir más módulos al agente." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 +msgid "" +"The last step is to check the alert created. Click on the round icon to " +"force the action execution and after a few minutes you will receive the " +"alert in your email." +msgstr "" +"El último paso es comprobar que la alerta ha sido creada. Haz clic en el " +"icono redondo para forzar la ejecución de la acción y después de unos " +"minutos recibirás la alerta en tu correo electrónico." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 +msgid "" +"And restart your pandora server to read again general configuration tokens." +msgstr "" +"Reinicia tu servidor de Pandora FMS para leer otra vez lo tokens generales " +"de configuración." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 +msgid "" +"Let me show you how to create an email action: Click on Create button and " +"fill the form showed in the following screen." +msgstr "" +"Te voy a enseñar a crear una acción de correo electrónico: haz clic en el " +"botón Crear y rellena el formulario que aparecerá en la siguiente pantalla." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 +msgid "" +"Now, you have to go to the monitors list and look for a critical module to " +"apply the alert." +msgstr "" +"Ahora ve a la lista de monitores y busca un módulo en estado crítico para " +"enlazarle la alerta." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 +msgid "" +"Click on the arrow to drop down the Monitoring submenu and select Monitor " +"Detail." +msgstr "" +"Haz clic en la flecha para desplegar el submenú Monitorización y selecciona " +"Detalle del monitor." + +#: ../../include/help/clippy/agent_out_of_limits.php:35 +msgid "Agent contact date passed it's ETA!." +msgstr "¡La fecha de contacto del agente pasó su plazo estimado!" + +#: ../../include/help/clippy/agent_out_of_limits.php:35 +msgid "" +"This happen when your agent stopped reporting or the server have any problem " +"(too load or just down). Check also connectivity between the agent and the " +"server." +msgstr "" +"Esto sucede cuando un agente deja de informar o el servidor tiene algún " +"problema (demasiada carga o simplemente está caído). Comprueba también la " +"conectividad entre el agente y el servidor." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 +msgid "I'm going to show you how to monitor a server." +msgstr "Te voy a mostrar cómo monitorizar un servidor." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 +msgid "Please, type an agent to save the modules for monitoring a server." +msgstr "" +"Por favor, escribe el nombre de un agente para guardar los módulos para " +"monitorizar un servidor." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 +msgid "If you have typed the name correctly you will see the agent." +msgstr "Si has introducido el nombre correctamente, verás el agente." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 +msgid "Now, please choose the agent you searched." +msgstr "Ahora elige el agente que buscaste." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 +msgid "Choose the agent and click on the name." +msgstr "Elige el agente y haz clic en el nombre." + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "You have non initialized modules" +msgstr "Tienes módulos sin iniciar." + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "" +"This happen when you have just created a module and it's not executed at " +"first time. Usually in a few seconds should be initialized and you will be " +"able to see in main view. If you keep non-init modules for more than 24hr " +"(due a problem in it's execution or configuration) they will be " +"automatically deleted by the system. Non-init are not visible in the “main " +"view”, you can see/edit them in the module administration section, in the " +"agent administrator." +msgstr "" +"Esto sucede cuando se acaba de crear un módulo y no está ejecutado. Por lo " +"general, en unos pocos segundos se debería iniciar y podrás verlo en la " +"vista principal. Si se mantienen módulos no iniciados durante más de 24 " +"horas (puede ser un problema en la ejecución o configuración) serán " +"eliminados automáticamente por el sistema. Los no iniciados no son visibles " +"en la vista principal; se pueden ver/editar en la sección de administración " +"del módulo, en el administrador de agente." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 +msgid "Fill the name of your action." +msgstr "Rellena el nombre de la acción." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 +msgid "" +"Select the group in the drop-down list and filter for ACL (the user in this " +"group can use your action to create an alert)." +msgstr "" +"Selecciona el grupo en la lista desplegable y un filtro para las ACL (el " +"usuario en este grupo puede utilizar la acción de crear una alerta)." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42 +msgid "In the command field select \"email\"." +msgstr "En este campo de comando elige \"email\"." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 +msgid "" +"In the threshold field enter the seconds. The help icon show more " +"information." +msgstr "" +"En el campo de umbral se rellena con un número de segundos. El icono de " +"ayuda te mostrará más ayuda." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 +msgid "" +"In the first field enter the email address/addresses where you want to " +"receive the email alerts separated with comas ( , ) or white spaces." +msgstr "" +"En el primer campo introduce la dirección/es de email en las que deseas " +"recibir las alertas de email separadas por comas (,) o espacios en blanco." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 +msgid "" +"In the \"Subject\" field you can use the macros _agent_ or _module_ for " +"each name." +msgstr "" +"En el campo \"Asunto\" puedes usar macros _agent_ o _module_ para el asunto " +"del email." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 +msgid "" +"In the text field, you can also use macros. Get more information about the " +"macros by clicking on the help icon." +msgstr "" +"En el campo de texto, también puedes utilizar las macros. Hay mas " +"información acerca de las macros en el icono de ayuda." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 +msgid "Click on Create button to create the action." +msgstr "Haz clic en el botón de crear para crear la acción." + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "Data Configuration Module." +msgstr "Módulos de datos de configuración" + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Please note that information provided here affects how the agent collect " +"information and generate the data XML. Any data/configuration reported by " +"the agent, different from data or description is discarded, and the " +"configuration shown in the console prevails over any configuration coming " +"from the agent, this applies for example for crit/warn thresholds, interval, " +"module group, min/max value, tags, etc." +msgstr "" +"Por favor, ten en cuenta que la información aquí proporcionada afecta la " +"forma en que el agente recoge la información y genera el XML de datos. " +"Cualquier dato/configuración enviado por el agente, a diferencia de los " +"enviados desde datos o descripción que son descartados, y la configuración " +"mostrada en la consola prevalece sobre cualquier configuración procedente " +"del agente. Esto se aplica por ejemplo para umbrales críticos/advertencia, " +"intervalo, grupo módulo, valor mínimo/máximo, etiquetas, etc." + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Information imported FIRST time from the XML will fill the information you " +"can see in the console, but after the first import, system will ignore any " +"update coming from the XML/Agent." +msgstr "" +"La información importada por PRIMERA vez desde el XML llenará la información " +"visible en la consola, pero después de la primera importación, el sistema " +"ignorará cualquier actualización que viene del XML/Agente." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 +msgid "Now you must go to Modules. Don't worry I'll lead you." +msgstr "Ahora ve a los módulos. Pero no te preocupes, te guiaré paso a paso." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 +msgid "Click in this tab.." +msgstr "Haz clic en esta pestaña." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 +msgid "Now you must create the module. Don't worry, i'll teach you." +msgstr "" +"Ahora tienes que crear el módulo, pero no te preocupes, yo te enseñaré." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 +msgid "Choose the network server module." +msgstr "Elige el módulo de servidor de red." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 +msgid "And click the button." +msgstr "Y haz clic en el botón." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 +msgid "Now you must create the module. Don't worry, i'll teach you ." +msgstr "" +"Ahora tienes que crear el módulo, pero no te preocupes, yo te enseñaré." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 +msgid "Now we are going to fill the form." +msgstr "Ahora procedemos a rellenar el formulario." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 +msgid "Please choose Network Management." +msgstr "Por favor, selecciona \"Gestión de redes\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 +msgid "Choose the component named \"Host alive\"." +msgstr "Selecciona el componente llamado \"Host alive\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 +msgid "You can change the name if you want." +msgstr "Puedes cambiar el nombre si quieres." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 +msgid "Check if the IP showed is the IP of your machine." +msgstr "Prueba si la IP mostrada es la IP de tu máquina." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 +msgid "And only to finish it is clicking this button." +msgstr "Y para terminar pulsa en este botón." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 +msgid "" +"Congrats! Your module has been created.
and the status color is " +"blue.
That color means that the module hasn't been executed for " +"the first time. In the next seconds, if there is no problem, the status " +"color will turn into red or green." +msgstr "" +"¡Felicidades! Has creado tu módulo
y el color de estado es " +"azul.
Ese color significa que el módulo no se ha ejecutado. En " +"los próximos segundos, si no hay problemas, el color de estado pasará a " +"rojo o verde." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" +"Haz clic en la pestaña de alertas para rellenar el formulario con la alerta " +"a añadir." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 +msgid "Select the critical module." +msgstr "Elige el módulo crítico." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "En las plantillas, selecciona \"Critical Condition\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "Ahora, elige la acción creada anteriormente." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "Click on Add Alert button to create the alert." +msgstr "Haz clic en el botón añadir alerta para crear la alerta." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 +msgid "" +"To test the alert you've just created go to the main view by clicking on the " +"eye tab." +msgstr "" +"Para probar la alerta que acabas de crear, ve a la vista principal, haz clic " +"en la pestaña con el icono del ojo." + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "Demasiados módulos en cola" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your " +"server is too loaded and/or not properly configured. This could be something " +"temporal, or a bottleneck. One possible solution is increase number of " +"server threads, but you should consider getting support about this." +msgstr "" +"Tienes demasiados elementos en cola. Esto puede ocurrir si el servidor está " +"demasiado cargado y/o no está bien configurado. Puede ser algo temporal, o " +"un cuello de botella. Una posible solución es aumentar el número de hilos " +"del servidor, pero deberías pensar en consultarlo con soporte técnico." + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "Todo los servidores están caídos" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next " +"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " +"introduce root pass." +msgstr "" +"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y " +"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". " +"Es posible que necesites introducir la contraseña de root." + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "Intervalo de agente" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds " +"is not recommended. This will impact seriously in the performance of the " +"server. For example, having 200 agents with one minute interval, is the same " +"than having 1000 agents with a 5 minute interval. The probability of getting " +"unknown modules is higher, and the impact on the server is higher because it " +"requires a shorter response time." +msgstr "" +"Por favor, ten en cuenta que no se recomienda tener agentes con un intervalo " +"de monitorización por debajo de los 300 segundos. Esto tendrá un impacto " +"serio en el rendimiento del servidor. Tener 200 agentes con un intervalo de " +"un minuto, es lo mismo que tener 1000 agentes con un intervalo de 5 minutos. " +"La probabilidad de obtener módulos desconocidos es más alto, y el impacto en " +"el servidor es mayor, ya que requiere un tiempo de respuesta más corto." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module " +"to apply the alert." +msgstr "" +"Ahora, tienes que ir a la lista de monitores y buscar un módulo en estado " +"\"crítico\" para enlazarle una alerta." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical " +"status, type it in this field to make the module list shorter. You can write " +"the entire name or just a part of it." +msgstr "" +"Si conoces el nombre del agente o el nombre del módulo en estado crítico, " +"escríbelo en este campo para hacer la lista de módulos más cortos. Puedes " +"escribir el nombre completo o solo una parte." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "Haz clic en botón Mostrar para obtener la lista filtrada." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"Ahora, para editar el módulo, haz clic en la llave inglesa que aparece en la " +"columna del tipo." + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "" +"The configuration of email for the task email is in the enterprise setup:" +msgstr "" +"La configuración del email para la tarea programada de emails está en la " +"configuración de Enterprise:" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "Please check if the email configuration is correct." +msgstr "Por favor, confirma que la configuración de email es correcta." + +#: ../../include/functions_profile.php:188 +#: ../../operation/users/user_edit.php:722 +#: ../../operation/users/user_edit.php:731 +msgid "Profiles/Groups assigned to this user" +msgstr "Perfiles/Grupos asignados a este usuario" + +#: ../../include/functions_network.php:98 +msgid "Top listeners" +msgstr "Top listeners" + +#: ../../include/functions_network.php:99 +msgid "Top talkers" +msgstr "Top talkers" + +#: ../../include/functions_network.php:109 +msgid "Top TCP protocols" +msgstr "Top de protocolos TCP" + +#: ../../include/functions_network.php:110 +msgid "Top UDP protocols" +msgstr "Top de protocolos UDP" + +#: ../../include/functions_ui.php:280 +msgid "Information" +msgstr "Información" + +#: ../../include/functions_ui.php:454 +msgid "Request successfully processed" +msgstr "Petición procesada correctamente" + +#: ../../include/functions_ui.php:458 +msgid "Error processing request" +msgstr "Error al procesar la petición" + +#: ../../include/functions_ui.php:615 +msgid "" +"Is possible that this view uses part of information which your user has not " +"access" +msgstr "" +"Es posible que esta vista utilice parte de la información a la cual tu " +"usuario no tenga acceso." + +#: ../../include/functions_ui.php:857 +msgid "Software" +msgstr "Software" + +#: ../../include/functions_ui.php:1331 +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:1336 +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:1351 +msgid "Unknown option." +msgstr "Opción desconocida." + +#: ../../include/functions_ui.php:1699 ../../include/functions_config.php:2115 +msgid "the Flexible Monitoring System" +msgstr "Sistema Flexible de Monitorización" + +#: ../../include/functions_ui.php:2074 ../../include/functions_ui.php:2100 +#, php-format +msgid "Total items: %s" +msgstr "Número total de elementos: %s" + +#: ../../include/functions_ui.php:2499 +msgid "Unknown type" +msgstr "Tipo desconocido" + +#: ../../include/functions_ui.php:3431 ../../include/functions_ui.php:3432 +msgid "Export current page to CSV" +msgstr "Exportar página actual a CSV" + +#: ../../include/functions_ui.php:3588 ../../include/functions_events.php:65 +#: ../../include/functions_events.php:91 ../../operation/events/events.php:1790 +#: ../../operation/events/events.php:1855 +msgid "ALERT" +msgstr "ALERTA" + +#: ../../include/functions_ui.php:3666 ../../include/functions_events.php:157 +#: ../../operation/events/events.php:1724 +msgid "MAINTENANCE" +msgstr "MANTENIMIENTO" + +#: ../../include/functions_ui.php:3671 ../../include/functions_events.php:160 +#: ../../operation/events/events.php:1729 +msgid "INFORMATIONAL" +msgstr "INFORMATIVO" + +#: ../../include/functions_ui.php:3691 ../../include/functions_events.php:166 +#: ../../operation/events/events.php:1739 +msgid "MINOR" +msgstr "MENOR" + +#: ../../include/functions_ui.php:3696 ../../include/functions_events.php:163 +#: ../../operation/events/events.php:1734 +msgid "MAJOR" +msgstr "MAYOR" + +#: ../../include/functions_ui.php:4560 +msgid "Type at least two characters to search." +msgstr "Escribe al menos dos caracteres para buscar." + +#: ../../include/functions_ui.php:5480 +msgid "Unhandled error" +msgstr "Error no tratado" + +#: ../../include/functions_ui.php:5481 +msgid "An unhandled error occurs" +msgstr "Ha ocurrido un error no tratado" + +#: ../../include/functions_ui.php:5747 #, php-format msgid "" -"There are more than %d files in attachment, consider cleaning up attachment " -"directory manually." +"These controls are using the timezone of the system (%s) instead of yours " +"(%s). The difference with your time zone in hours is %s." msgstr "" -"Hay más de %d archivos en adjuntos, vacíe el directorio de adjuntos " -"manualmente." +"Estos controles emplean la zona horaria del sistema (%s) en vez de la suya " +"(%s). La diferencia de horas con su zona horaria es %s." -#: ../../include/class/ConsoleSupervisor.php:890 -msgid "Remote configuration directory is not readable" -msgstr "No se ha podido leer el directorio de configuración remota" +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:226 +msgid "Last value: " +msgstr "Último valor: " -#: ../../include/class/ConsoleSupervisor.php:892 +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "Agente añadido correctamente al diseño" + +#: ../../include/functions_visual_map.php:2816 +msgid "Modules successfully added to layout" +msgstr "Módulos añadidos correctamente al diseño" + +#: ../../include/functions_visual_map.php:3147 +msgid "Agents successfully added to layout" +msgstr "Agentes añadidos correctamente al diseño" + +#: ../../include/functions_visual_map.php:3552 +msgid "Cannot load the visualmap" +msgstr "No se puede cargar el mapa visual" + +#: ../../include/functions_visual_map.php:4175 +#: ../../include/rest-api/models/VisualConsole/Item.php:1989 +msgid "Bars graph" +msgstr "Gráfico de barras" + +#: ../../include/functions_visual_map.php:4185 +#: ../../include/rest-api/models/VisualConsole/Item.php:1997 +msgid "Percentile bar" +msgstr "Barra de porcentaje" + +#: ../../include/functions_visual_map.php:4190 +#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +msgid "Circular progress bar" +msgstr "Barra de progreso circular" + +#: ../../include/functions_clippy.php:152 #, php-format -msgid "" -"Remote configuration directory %s is not readable. Please, adjust " -"configuration." -msgstr "" -"No se ha podido leer el directorio de configuración remota de %s. Modifique " -"la configuración." +msgid "%s assistant" +msgstr "Asistente de %s" -#: ../../include/class/ConsoleSupervisor.php:909 -msgid "Remote configuration directory is not writable" -msgstr "No se ha podido escribir en el directorio de configuración remota" +#: ../../include/functions_clippy.php:189 +#: ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "Cerrar asistente" -#: ../../include/class/ConsoleSupervisor.php:911 +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "Siguiente →" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "← Anterior" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "¿Quieres salir de la ayuda guiada?" + +#: ../../include/functions_alerts.php:657 +msgid "Max and min" +msgstr "Máx. y mín." + +#: ../../include/functions_alerts.php:660 +msgid "Equal to" +msgstr "Igual a" + +#: ../../include/functions_alerts.php:661 +msgid "Not equal to" +msgstr "Diferente de" + +#: ../../include/functions_alerts.php:665 +msgid "On Change" +msgstr "en estado de cambio" + +#: ../../include/functions_alerts.php:667 +msgid "Not normal status" +msgstr "Estado anormal" + +#: ../../include/functions_alerts.php:1691 +msgid "No actions defined" +msgstr "No hay acciones definidas" + +#: ../../include/functions_alerts.php:2764 +msgid "Alert and command group does not match" +msgstr "El grupo de la alerta y del comando no coinciden" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "Carga media (última hora)" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "Carga media (últimos 5 minutos)" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "Carga media (últimos 15 minutos)" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "Tamaño de intercambio total configurado para el host" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "Espacio de intercambio disponible en el host" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "Tamaño de memoria real/física en el servidor" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "Memoria real/física disponible en el servidor" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "Memoria total disponible" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "Memoria de caché total" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "Memoria total del búfer" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "La cantidad de memoria intercambiada desde el disco (kB/s)" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "Cantidad de memoria intercambiada con el disco (kB/s)" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "Número de bloques enviado al dispositivo de bloques" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "Número de bloques recibidos del dispositivo de bloques" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "Número de interrupciones procesadas" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "Número de cambios de contexto" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "tiempo de CPU de usuario" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "tiempo de CPU del sistema" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "tiempo de inactividad de la CPU" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "Tiempo de actividad del sistema" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "Paginación" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "Agrupar por Cadena Enterprise/IP" + +#: ../../include/functions_db.php:115 #, php-format -msgid "" -"Remote configuration directory %s is not writable. Please, adjust " -"configuration." -msgstr "" -"No se ha podido escribir en el directorio de configuración remota de %s. " -"Modifique la configuración." +msgid "Error connecting to database %s at %s." +msgstr "Error al conectar a la base de datos %s el %s" -#: ../../include/class/ConsoleSupervisor.php:927 -msgid "Remote collections directory is not writable" -msgstr "No se ha podido escribir en en el directorio de colecciones remotas." +#: ../../include/functions_db.php:1749 +msgid "Database debug" +msgstr "Depurar BD" -#: ../../include/class/ConsoleSupervisor.php:929 +#: ../../include/functions_db.php:1765 +msgid "SQL sentence" +msgstr "Consulta SQL" + +#: ../../include/functions_db.php:1767 +msgid "Rows" +msgstr "Filas" + +#: ../../include/functions_db.php:1768 +msgid "Saved" +msgstr "Guardado" + +#: ../../include/functions_db.php:1769 +msgid "Time (ms)" +msgstr "Tiempo (ms)" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:437 +msgid "Add new range" +msgstr "Añadir nuevo intervalo" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:494 +msgid "Current ranges" +msgstr "Intervalos actuales" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1876 +msgid "width" +msgstr "ancho" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:1886 +msgid "height" +msgstr "altura" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:1908 +msgid "X" +msgstr "X" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:493 +#: ../../include/rest-api/models/VisualConsole/Item.php:1945 +msgid "Show on top" +msgstr "Mostrar primero" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "Ancho del borde" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "Relleno transparente" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:347 +msgid "Show Last Value" +msgstr "Mostrar último valor" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 +msgid "Avg Value" +msgstr "Valor medio" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:468 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 +msgid "Graph Type" +msgstr "Tipo de gráfica" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:229 +msgid "12h" +msgstr "12h" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:656 +#: ../../include/lib/Dashboard/Widgets/service_map.php:254 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:285 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:295 +msgid "Show legend" +msgstr "Mostrar leyenda" + +#: ../../include/rest-api/models/VisualConsole/View.php:64 +msgid "Label settings" +msgstr "Configuración de etiquetas" + +#: ../../include/rest-api/models/VisualConsole/View.php:69 +#: ../../include/rest-api/models/VisualConsole/View.php:98 +msgid "General settings" +msgstr "Configuración general" + +#: ../../include/rest-api/models/VisualConsole/View.php:74 +#: ../../include/rest-api/models/VisualConsole/View.php:88 +#: ../../include/rest-api/models/VisualConsole/View.php:103 +msgid "Specific settings" +msgstr "Configuración específica" + +#: ../../include/rest-api/models/VisualConsole/View.php:206 +msgid "Item type not valid [" +msgstr "Tipo de elemento no válido [" + +#: ../../include/rest-api/models/VisualConsole/View.php:211 +msgid "Item type has no getFormInputs method [" +msgstr "Este tipo de elemento no tiene método getFormInputs [" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1846 +msgid "Label position" +msgstr "Posición de la etiqueta" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1933 +msgid "Link enabled" +msgstr "Enlace habilitado" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1975 +msgid "Static graph" +msgstr "Imagen estática" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1993 +msgid "Event History Graph" +msgstr "Gráfica de histórico de eventos" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2001 +msgid "Percentile bubble" +msgstr "Gráfica bubble de percentil" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2454 +#: ../../include/rest-api/models/VisualConsole/Item.php:2455 +msgid "Image Vc" +msgstr "Imagen Vc" + +#: ../../include/functions_notifications.php:722 +msgid "Notified users" +msgstr "Usuarios notificados" + +#: ../../include/functions_notifications.php:722 +msgid "Notified groups" +msgstr "Grupos notificados" + +#: ../../include/functions_notifications.php:723 +msgid "Add users" +msgstr "Añadir usuarios" + +#: ../../include/functions_notifications.php:723 +msgid "Add groups" +msgstr "Añadir grupos" + +#: ../../include/functions_notifications.php:724 +msgid "Delete users" +msgstr "Borrar usuarios" + +#: ../../include/functions_notifications.php:724 +msgid "Delete groups" +msgstr "Borrar grupos" + +#: ../../include/functions_notifications.php:820 +msgid "Add elements" +msgstr "Añadir elementos" + +#: ../../include/functions_notifications.php:832 +msgid "Remove elements" +msgstr "Eliminar elementos" + +#: ../../include/functions_notifications.php:949 +msgid "Click here to get more information" +msgstr "Pinche aquí para obtener más información" + +#: ../../include/functions_reports.php:631 +#: ../../include/functions_reports.php:635 +#: ../../include/functions_reports.php:640 +#: ../../include/functions_reports.php:646 +#: ../../include/functions_reports.php:652 +#: ../../include/functions_reports.php:656 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:667 +#: ../../include/functions_reports.php:673 +#: ../../include/functions_reports.php:678 +#: ../../include/functions_groups.php:123 +#: ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:118 +#: ../../operation/agentes/ver_agente.php:1266 +msgid "Graphs" +msgstr "Gráficos" + +#: ../../include/functions_reports.php:632 +#: ../../include/functions_reporting.php:7717 +#: ../../include/functions_reporting.php:7864 +msgid "Simple graph" +msgstr "Gráfico simple" + +#: ../../include/functions_reports.php:661 +msgid "SQL horizonal bar graph" +msgstr "Gráfico de barra horizontal SQL" + +#: ../../include/functions_reports.php:668 +msgid "Automatic combined Graph" +msgstr "Gráfico automático combinado" + +#: ../../include/functions_reports.php:674 +msgid "Availability graph" +msgstr "Gráfico de disponibilidad" + +#: ../../include/functions_reports.php:679 +msgid "Module Histogram graph" +msgstr "Gráfico de histórico de módulo" + +#: ../../include/functions_reports.php:709 +#: ../../include/functions_reports.php:713 +msgid "Forecasting" +msgstr "Predicción" + +#: ../../include/functions_reports.php:714 +msgid "Projection graph" +msgstr "Gráfico de proyección" + +#: ../../include/functions_reports.php:719 +msgid "Avg. Value" +msgstr "Valor medio" + +#: ../../include/functions_reports.php:731 +msgid "Monitor report" +msgstr "Informe de monitores" + +#: ../../include/functions_reports.php:735 +msgid "Serialize data" +msgstr "Serializar datos" + +#: ../../include/functions_reports.php:743 +msgid "Historical Data" +msgstr "Datos históricos" + +#: ../../include/functions_reports.php:751 +#: ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:763 +#: ../../include/functions_reports.php:769 +#: ../../include/functions_reports.php:775 +#: ../../include/functions_reports.php:784 +#: ../../include/functions_reports.php:790 +#: ../../include/functions_reports.php:794 +#: ../../include/functions_reports.php:798 +msgid "Grouped" +msgstr "Agrupado" + +#: ../../include/functions_reports.php:795 +msgid "Network interfaces" +msgstr "Interfaces de red" + +#: ../../include/functions_reports.php:803 +#: ../../include/functions_reports.php:807 +msgid "Text/HTML " +msgstr "Texto/HTML " + +#: ../../include/functions_reports.php:808 +msgid "Import text from URL" +msgstr "Importar texto de una URL" + +#: ../../include/functions_reports.php:813 +msgid "Module alert report" +msgstr "Informe de alerta de módulo" + +#: ../../include/functions_reports.php:817 +msgid "Agent alert report " +msgstr "Informe de alerta de agente " + +#: ../../include/functions_reports.php:822 +msgid "Group alert report" +msgstr "Informe de alerta de grupo" + +#: ../../include/functions_reports.php:828 +msgid "Module event report" +msgstr "Informe de evento de módulo" + +#: ../../include/functions_reports.php:832 +msgid "Agent event report" +msgstr "Informe de evento de agente" + +#: ../../include/functions_reports.php:836 +msgid "Group event report" +msgstr "Informe de evento de grupo" + +#: ../../include/functions_reports.php:847 +msgid "Inventory changes" +msgstr "Inventario de cambios" + +#: ../../include/functions_reports.php:855 +#: ../../include/functions_reporting.php:4703 +msgid "Agent configuration" +msgstr "Configuración de agentes" + +#: ../../include/functions_reports.php:859 +#: ../../include/functions_reporting.php:3440 +msgid "Group configuration" +msgstr "Configuración del grupo" + +#: ../../include/functions_reports.php:863 +msgid "Netflow area chart" +msgstr "Gráfico de área de Netflow" + +#: ../../include/functions_reports.php:867 +msgid "Netflow data table" +msgstr "Tabla de datos de Netflow" + +#: ../../include/functions_reports.php:871 +msgid "Netflow summary table" +msgstr "Tabla de resumen de Netflow" + +#: ../../include/functions_reports.php:885 +msgid "Network Traffic Top N" +msgstr "Primeros N de tráfico de red" + +#: ../../include/functions_html.php:1435 +msgid "weeks" +msgstr "semanas" + +#: ../../include/functions_html.php:1596 +msgid "Month day" +msgstr "Día del mes" + +#: ../../include/functions_html.php:1598 +msgid "Week day" +msgstr "Día de la semana" + +#: ../../include/functions_html.php:3537 +msgid "Type at least two characters to search the module." +msgstr "Escribe al menos dos caracteres para buscar el módulo." + +#: ../../include/functions_html.php:3694 #, php-format -msgid "" -"Collections directory %s is not writable. Please, adjust configuration." +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "%s no puede verificar el origen de la petición. Vuelva a intentarlo." + +#: ../../include/functions_html.php:4371 +msgid "Type at least two characters to search the user." +msgstr "Escriba al menos dos caracteres para buscar el usuario." + +#: ../../include/functions_config.php:127 +msgid "Failed updated: User did not login." +msgstr "Fallo de actualización: el usuario no inició sesión" + +#: ../../include/functions_config.php:135 +msgid "Failed updated: User is not admin." +msgstr "Fallo de actualización: el usuario no es administrador" + +#: ../../include/functions_config.php:169 +msgid "phantomjs config directory" +msgstr "Directorio de configuración de phatomjs" + +#: ../../include/functions_config.php:185 +msgid "SSL cert path" +msgstr "Ruta del certificado SSL" + +#: ../../include/functions_config.php:193 +msgid "Use cert." +msgstr "Usar certificado" + +#: ../../include/functions_config.php:213 +msgid "Integria inventory" +msgstr "Inventario Integria IMS" + +#: ../../include/functions_config.php:217 +#: ../../include/functions_config.php:1522 +msgid "Integria API password" +msgstr "Contraseña de la API de Integria IMS" + +#: ../../include/functions_config.php:221 +msgid "Integria URL" +msgstr "URL de Integria IMS" + +#: ../../include/functions_config.php:261 +msgid "License information" +msgstr "Información sobre la licencia" + +#: ../../include/functions_config.php:307 +msgid "Limit parameters bulk" +msgstr "Límite de operaciones en bloque" + +#: ../../include/functions_config.php:311 +msgid "Identification_reminder" +msgstr "Recordatorio de identificación" + +#: ../../include/functions_config.php:315 +msgid "Include_agents" +msgstr "Incluir agentes" + +#: ../../include/functions_config.php:319 +msgid "alias_as_name" +msgstr "Alias como nombre" + +#: ../../include/functions_config.php:327 +msgid "unique_ip" +msgstr "unique_ip" + +#: ../../include/functions_config.php:359 +msgid "WebSocket bind address" +msgstr "Dirección de enlace WebSocket" + +#: ../../include/functions_config.php:363 +msgid "WebSocket port" +msgstr "Puerto WebSocket" + +#: ../../include/functions_config.php:412 +msgid "Replication DB engine" +msgstr "Motor de BD de replicación" + +#: ../../include/functions_config.php:416 +msgid "Replication DB host" +msgstr "Host de la BD de replicación" + +#: ../../include/functions_config.php:420 +msgid "Replication DB database" +msgstr "Nombre de la BD de replicación" + +#: ../../include/functions_config.php:424 +msgid "Replication DB user" +msgstr "Usuario de la BD de replicación" + +#: ../../include/functions_config.php:428 +msgid "Replication DB password" +msgstr "Contraseña de la BD de replicación" + +#: ../../include/functions_config.php:432 +msgid "Replication DB port" +msgstr "Puerto de la BD de replicación" + +#: ../../include/functions_config.php:436 +msgid "Metaconsole agent cache" +msgstr "Caché de agente de la Metaconsola" + +#: ../../include/functions_config.php:444 +msgid "Enable Update Manager" +msgstr "Habilitar Update Manager" + +#: ../../include/functions_config.php:452 +msgid "Ipam Ocuppied Manager Critical" +msgstr "Ipam Ocuppied Manager Crítico" + +#: ../../include/functions_config.php:456 +msgid "Ipam Ocuppied Manager Warning" +msgstr "Ipam Ocuppied Manager Advertencia" + +#: ../../include/functions_config.php:709 +msgid "Saml profile parameters" +msgstr "Parámetros de perfil saml" + +#: ../../include/functions_config.php:771 +msgid "Max. days before autodisable deletion" +msgstr "Días máximos antes de eliminar los deshabilitados" + +#: ../../include/functions_config.php:775 +msgid "Item limit for realtime reports)" +msgstr "Límite de elementos para los informes de tiempo real" + +#: ../../include/functions_config.php:807 +msgid "Big Operatiopn Step to purge old data" +msgstr "Gran operación para la purga de datos antiguos" + +#: ../../include/functions_config.php:841 +msgid "Max execution event response" +msgstr "Máxima respuesta de ejecución de eventos" + +#: ../../include/functions_config.php:921 +msgid "Show QR code header" +msgstr "Mostrar código QR en la cabecera" + +#: ../../include/functions_config.php:945 +msgid "Custom logo collapsed" +msgstr "El logo personalizado se ha caído" + +#: ../../include/functions_config.php:949 +msgid "Custom logo white background" +msgstr "Fondo blanco del logo personalizado" + +#: ../../include/functions_config.php:977 +msgid "Custom title header" +msgstr "Encabezado de título personalizado" + +#: ../../include/functions_config.php:981 +msgid "Custom subtitle header" +msgstr "Encabezado del subtítulo personalizado" + +#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1041 +msgid "Custom Docs url" +msgstr "URL de documentos personalizados" + +#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1045 +msgid "Custom support url" +msgstr "URL de soporte personalizado" + +#: ../../include/functions_config.php:1013 +msgid "Custom logo metaconsole" +msgstr "Logo personalizado de la Metaconsola" + +#: ../../include/functions_config.php:1017 +msgid "Custom logo metaconsole (white background)" +msgstr "Logo personalizado de la consola (fondo blanco)" + +#: ../../include/functions_config.php:1021 +msgid "Custom logo login metaconsole" +msgstr "Logo personalizado de la conexión a la Metaconsola" + +#: ../../include/functions_config.php:1025 +msgid "Custom splash login metaconsole" +msgstr "Conexión del Splash personalizado de la Metaconsola" + +#: ../../include/functions_config.php:1029 +msgid "Custom title1 login metaconsole" +msgstr "Título1 conexión personalizado de la Metaconsola" + +#: ../../include/functions_config.php:1033 +msgid "Custom title2 login metaconsole" +msgstr "Título2 conexión personalizado de la Metaconsola" + +#: ../../include/functions_config.php:1037 +msgid "Login background metaconsole" +msgstr "Fondo de la conexión a la Metaconsola" + +#: ../../include/functions_config.php:1061 +msgid "Default line favourite_view for the Visual Console" +msgstr "Línea por defecto favourite_view para la consola visual" + +#: ../../include/functions_config.php:1065 +msgid "Default line menu items for the Visual Console" +msgstr "Elementos predeterminados de menú de línea para la consola visual" + +#: ../../include/functions_config.php:1073 +msgid "Default line menu items for the Services" +msgstr "Linea de elementos de menú por defecto para los servicios" + +#: ../../include/functions_config.php:1105 +msgid "Show units in values report" +msgstr "Mostrar unidades en los valores del informe" + +#: ../../include/functions_config.php:1113 +msgid "Autohidden menu" +msgstr "Ocultar menú automáticamente" + +#: ../../include/functions_config.php:1117 +msgid "visual_animation" +msgstr "visual_animation" + +#: ../../include/functions_config.php:1125 +msgid "Fixed graph" +msgstr "Gráfico fijo" + +#: ../../include/functions_config.php:1133 +msgid "Paginate module" +msgstr "Paginar vista de módulos" + +#: ../../include/functions_config.php:1145 +msgid "Shortened module graph data" +msgstr "Gráfico de módulo de datos acortados" + +#: ../../include/functions_config.php:1157 +msgid "Default type of module charts." +msgstr "Tipo de gráficos de módulos por defecto" + +#: ../../include/functions_config.php:1161 +msgid "Default type of interface charts." +msgstr "Tipo predefinido para los gráficos de interfaz" + +#: ../../include/functions_config.php:1178 +msgid "Display lateral menus with left click" +msgstr "Mostrar los menús laterales con el clic izquierdo" + +#: ../../include/functions_config.php:1188 +msgid "Service item padding size" +msgstr "Espacio entre los nodos del mapa de servicios" + +#: ../../include/functions_config.php:1193 +msgid "Default percentil" +msgstr "Percentil por defecto" + +#: ../../include/functions_config.php:1197 +msgid "Default full scale (TIP)" +msgstr "Escala completa por defecto (TIP)" + +#: ../../include/functions_config.php:1201 +msgid "Default soft graphs" +msgstr "Gráficas soft por defecto" + +#: ../../include/functions_config.php:1205 +msgid "Default zoom graphs" +msgstr "Gráficas ampliadas por defecto" + +#: ../../include/functions_config.php:1209 +msgid "Default height of the chart image" +msgstr "Altuta de la imagen de la gráfica por defecto" + +#: ../../include/functions_config.php:1230 +msgid "Add the custom post process" +msgstr "Añadir la personalización al proceso posterior" + +#: ../../include/functions_config.php:1238 +msgid "Delete the custom post process" +msgstr "Borrar la personalización al proceso posterior" + +#: ../../include/functions_config.php:1295 +msgid "Add custom module unit" +msgstr "Añadir unidad de módulo personalizado" + +#: ../../include/functions_config.php:1301 +msgid "Delete custom module unit" +msgstr "Eliminar unidad de módulo personalizado" + +#: ../../include/functions_config.php:1392 +msgid "IP ElasticSearch server" +msgstr "IP del servidor ElasticSearch" + +#: ../../include/functions_config.php:1396 +msgid "Port ElasticSearch server" +msgstr "Puerto del servidor ElasticSearch" + +#: ../../include/functions_config.php:1414 +msgid "Enable history event" +msgstr "Activar histórico de eventos" + +#: ../../include/functions_config.php:1450 +msgid "Event Days" +msgstr "Eventos en día" + +#: ../../include/functions_config.php:1476 +msgid "eHorus user login" +msgstr "Inicio de sesión del usuario a eHorus" + +#: ../../include/functions_config.php:1488 +msgid "eHorus API hostname" +msgstr "Propietario de la API de eHorus" + +#: ../../include/functions_config.php:1492 +msgid "eHorus API port" +msgstr "Puerto de la API de eHorus" + +#: ../../include/functions_config.php:1496 +msgid "eHorus request timeout" +msgstr "Tiempo de respuesta de eHorus" + +#: ../../include/functions_config.php:1500 +msgid "eHorus id custom field" +msgstr "ID del campo personalizado de eHorus" + +#: ../../include/functions_config.php:1510 +msgid "Integria user" +msgstr "Usuario de Integria" + +#: ../../include/functions_config.php:1514 +msgid "Integria password" +msgstr "Contraseña de Integria" + +#: ../../include/functions_config.php:1518 +msgid "integria API hostname" +msgstr "Nombre del host de la API de Integria" + +#: ../../include/functions_config.php:1526 +msgid "Integria request timeout" +msgstr "Límite de tiempo de las peticiones de Integria" + +#: ../../include/functions_config.php:1530 +msgid "Integria default group" +msgstr "Grupo por defecto de Integria" + +#: ../../include/functions_config.php:1534 +msgid "Integria custom response default group" +msgstr "Grupo de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1538 +msgid "Integria default priority" +msgstr "Prioridad por defecto de Integria" + +#: ../../include/functions_config.php:1542 +msgid "Integria custom response default priority" +msgstr "Prioridad de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1546 +msgid "Integria default creator" +msgstr "Creador por defecto de Integria" + +#: ../../include/functions_config.php:1550 +msgid "Integria default owner" +msgstr "Propietario de Integria por defecto" + +#: ../../include/functions_config.php:1554 +msgid "Integria custom response default owner" +msgstr "Propietario de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1558 +msgid "Integria default ticket type" +msgstr "Tipo de ticket de Integria por defecto" + +#: ../../include/functions_config.php:1562 +msgid "Integria custom response default ticket type" +msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto" + +#: ../../include/functions_config.php:1566 +msgid "Integria default ticket status" +msgstr "Estado del ticket de Integria por defecto" + +#: ../../include/functions_config.php:1570 +msgid "Integria custom response default ticket status" +msgstr "Estado del ticket de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1574 +msgid "Integria default ticket title" +msgstr "Título del ticket de Integria por defecto" + +#: ../../include/functions_config.php:1578 +msgid "Integria custom response default ticket title" +msgstr "Título del ticket de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1582 +msgid "Integria default ticket content" +msgstr "Contenido del ticket de Integria por defecto" + +#: ../../include/functions_config.php:1586 +msgid "Integria custom response default ticket content" msgstr "" -"No se ha podido escribir en en el directorio de colecciones remotas de %s. " -"Modifique la configuración." +"Contenido del ticket de respuesta personalizada de Integria por defecto" -#: ../../include/class/ConsoleSupervisor.php:945 -msgid "Remote md5 directory is not writable" -msgstr "No se ha podido escribir en el directorio remoto md5" - -#: ../../include/class/ConsoleSupervisor.php:947 +#: ../../include/functions_config.php:1616 #, php-format -msgid "MD5 directory %s is not writable. Please, adjust configuration." +msgid "Failed updated: the next values cannot update: %s" msgstr "" -"No se ha podido escribir en el directorio MD5 de %s. Modifique la " -"configuración." +"Error de actualización. Los siguientes valores no pueden ser actualizados: %s" -#: ../../include/class/ConsoleSupervisor.php:975 -msgid "There are too much files in spool" -msgstr "Demasiados archivos en spool" +#: ../../include/functions_config.php:2111 +#: ../../operation/agentes/networkmap.dinamic.php:217 +msgid "Pandora FMS" +msgstr "Pandora FMS" -#: ../../include/class/ConsoleSupervisor.php:977 +#: ../../include/functions_config.php:2119 +msgid "PANDORA FMS" +msgstr "PANDORA FMS" + +#: ../../include/get_file.php:39 +msgid "Security error. Please contact the administrator." +msgstr "Error de seguridad. Contacta con el administrador." + +#: ../../include/get_file.php:69 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" +"El archivo no se encuentra en el disco. Por favor, contacta con el " +"administrador." + +#: ../../include/functions_netflow.php:346 +msgid "Total flows" +msgstr "Fluctuaciones totales" + +#: ../../include/functions_netflow.php:351 +msgid "Total bytes" +msgstr "Bytes totales" + +#: ../../include/functions_netflow.php:356 +msgid "Total packets" +msgstr "Paquetes totales" + +#: ../../include/functions_netflow.php:361 +msgid "Average bits per second" +msgstr "Media de bits por segundo" + +#: ../../include/functions_netflow.php:366 +msgid "Average packets per second" +msgstr "Media de paquetes por segundo" + +#: ../../include/functions_netflow.php:371 +msgid "Average bytes per packet" +msgstr "Media de bytes por paquete" + +#: ../../include/functions_netflow.php:1027 +msgid "Area graph" +msgstr "Gráfico del área" + +#: ../../include/functions_netflow.php:1029 +#: ../../operation/agentes/exportdata.php:361 +msgid "Data table" +msgstr "Tabla de datos" + +#: ../../include/functions_netflow.php:1030 +msgid "Circular mesh" +msgstr "Malla circular" + +#: ../../include/functions_netflow.php:1031 +#: ../../include/functions_netflow.php:1243 +msgid "Host detailed traffic" +msgstr "Tráfico detallado de la máquina" + +#: ../../include/functions_netflow.php:1371 +msgid "Dst port" +msgstr "Puerto destino" + +#: ../../include/functions_netflow.php:1374 +msgid "Dst IP" +msgstr "IP de destino" + +#: ../../include/functions_netflow.php:1377 +msgid "Src IP" +msgstr "IP de origen" + +#: ../../include/functions_netflow.php:1380 +msgid "Src port" +msgstr "Puerto de origen" + +#: ../../include/functions_netflow.php:1566 #, php-format -msgid "" -"There are more than %d files in %s. Consider checking DataServer performance" +msgid "nfdump binary (%s) not found!" +msgstr "nfdump binary (%s) no encontrado" + +#: ../../include/functions_netflow.php:1573 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" msgstr "" -"Hay más de %d archivos en %s. Compruebe el rendimiento de DataServer." +"Asegúrate de que tienes instalada la versión 1.6.8 nfdump o alguna posterior." -#: ../../include/class/ConsoleSupervisor.php:998 -msgid "There are too many BADXML files in spool" -msgstr "Demasiados archivos BADXML en spool" +#: ../../include/functions_netflow.php:1590 +msgid "High" +msgstr "Alta" -#: ../../include/class/ConsoleSupervisor.php:1000 +#: ../../include/functions_netflow.php:1591 +msgid "Ultra High" +msgstr "Extra alta" + +#: ../../include/functions_netflow.php:1624 #, php-format -msgid "" -"There are more than %d files in %s. Consider checking software agents." -msgstr "Hay más de %d archivos en %s. Compruebe los agentes software." +msgid "Agregate by %s" +msgstr "Añadir por %s" -#: ../../include/class/ConsoleSupervisor.php:1081 +#: ../../include/functions_netflow.php:1632 #, php-format -msgid "%s (%s) is lacking performance." -msgstr "%s (%s) tiene bajo rendimiento." +msgid "Resolution %s" +msgstr "Resolución de %s" -#: ../../include/class/ConsoleSupervisor.php:1148 -msgid "No servers available." -msgstr "No hay servidores disponibles." +#: ../../include/class/ConfigPEN.class.php:422 +#: ../../include/class/ConfigPEN.class.php:591 +#: ../../include/class/ModuleTemplates.class.php:989 +msgid "PEN" +msgstr "PEN" -#: ../../include/class/ConsoleSupervisor.php:1149 -msgid "" -"There are no servers registered in this console. Please, check installation " -"guide." -msgstr "" -"No hay servidores registrados en esta consola. Revise la guía de instalación." +#: ../../include/class/ConfigPEN.class.php:429 +#: ../../include/class/ConfigPEN.class.php:592 +msgid "Manufacturer" +msgstr "Fabricante" -#: ../../include/class/ConsoleSupervisor.php:1171 +#: ../../include/class/ConfigPEN.class.php:477 +msgid "PEN is required" +msgstr "Se requiere PEN" + +#: ../../include/class/ConfigPEN.class.php:503 +msgid "PEN is required." +msgstr "Se requiere PEN" + +#: ../../include/class/ConfigPEN.class.php:507 +msgid "Manufacturer is required" +msgstr "Se requiere fabricante" + +#: ../../include/class/ConfigPEN.class.php:524 +msgid "This PEN definition does not exist" +msgstr "Esta definición de PEN no existe" + +#: ../../include/class/ConfigPEN.class.php:538 +msgid "created" +msgstr "creado" + +#: ../../include/class/ConfigPEN.class.php:544 +msgid "This PEN definition already exists" +msgstr "Esta definición PEN ya existe" + +#: ../../include/class/ConfigPEN.class.php:558 +msgid "updated" +msgstr "actualizado" + +#: ../../include/class/ConfigPEN.class.php:565 #, php-format -msgid "%s (%s) has crashed." -msgstr "%s (%s) se ha caído." - -#: ../../include/class/ConsoleSupervisor.php:1177 -#, php-format -msgid "%s (%s) has crashed, please check log files." -msgstr "%s (%s) se ha caído. Compruebe los archivos de log." - -#: ../../include/class/ConsoleSupervisor.php:1184 -#, php-format -msgid "%s (%s) is not running." -msgstr "%s (%s) no está en ejecución." - -#: ../../include/class/ConsoleSupervisor.php:1189 -#, php-format -msgid "" -"%s (%s) is not running. Please, check configuration file or remove this " -"server from server list." -msgstr "" -"%s (%s) no está en ejecución. Compruebe el archivo de configuración o " -"elimine este servidor de la lista de servidores." - -#: ../../include/class/ConsoleSupervisor.php:1239 -msgid "No master servers found." -msgstr "No se han encontrado servidores maestros." - -#: ../../include/class/ConsoleSupervisor.php:1240 -msgid "" -"At least one server must be defined to run as master. Please, check " -"documentation." -msgstr "" -"Al menos un servidor debe ejecutarse como maestro. Diríjase a la " -"documentación." - -#: ../../include/class/ConsoleSupervisor.php:1291 -msgid "PHP safe mode is enabled. Some features may not work properly" -msgstr "" -"El modo seguro PHP está habilitado. Algunas funcionalidades podrían no " -"funcionar correctamente" - -#: ../../include/class/ConsoleSupervisor.php:1292 -msgid "" -"To disable it, go to your PHP configuration file (php.ini) and put safe_mode " -"= Off (Do not forget to restart apache process after changes)" -msgstr "" -"Para deshabilitarlo, diríjase al archivo de configuración PHP (php.ini) y " -"escriba safe_mode = Off (No olvide reiniciar el proceso de apache después de " -"los cambios)" - -#: ../../include/class/ConsoleSupervisor.php:1310 -#, php-format -msgid "'%s' value in PHP configuration is not recommended" -msgstr "No se recomienda el valor '%s' en la configuración PHP" - -#: ../../include/class/ConsoleSupervisor.php:1314 -#, php-format -msgid "Recommended value is %s" -msgstr "El valor recomendado es '%s'." - -#: ../../include/class/ConsoleSupervisor.php:1315 -#: ../../include/class/ConsoleSupervisor.php:1339 -msgid "Unlimited" -msgstr "Sin límite" - -#: ../../include/class/ConsoleSupervisor.php:1316 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator (Do not forget to restart Apache process after)" -msgstr "" -"Modifíquelo en el archivo de configuración PHP (php.ini) o póngase en " -"contacto con el administrador (no olvide reiniciar el proceso de Apache " -"después)" - -#: ../../include/class/ConsoleSupervisor.php:1334 -#: ../../include/class/ConsoleSupervisor.php:1358 -#: ../../include/class/ConsoleSupervisor.php:1382 -#: ../../include/class/ConsoleSupervisor.php:1460 -#, php-format -msgid "Not recommended '%s' value in PHP configuration" -msgstr "Valor '%s' no recomendado en la configuración de PHP" - -#: ../../include/class/ConsoleSupervisor.php:1338 -#: ../../include/class/ConsoleSupervisor.php:1362 -#: ../../include/class/ConsoleSupervisor.php:1386 -#: ../../include/class/ConsoleSupervisor.php:1464 -#, php-format -msgid "Recommended value is: %s" -msgstr "El valor recomendado es: %s" - -#: ../../include/class/ConsoleSupervisor.php:1340 -#: ../../include/class/ConsoleSupervisor.php:1364 -#: ../../include/class/ConsoleSupervisor.php:1406 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator (Dont forget restart apache process after changes)" -msgstr "" -"Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o " -"contacta con un administrador (no olvides reiniciar el proceso Apache tras " -"los cambios)." - -#: ../../include/class/ConsoleSupervisor.php:1363 -#: ../../include/class/ConsoleSupervisor.php:1387 -#, php-format -msgid "%s or greater" -msgstr "%s o mayor" - -#: ../../include/class/ConsoleSupervisor.php:1388 -#: ../../include/class/ConsoleSupervisor.php:1466 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator" -msgstr "" -"Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o " -"contacta con un administrador." - -#: ../../include/class/ConsoleSupervisor.php:1405 -msgid "Problems with disable_functions in php.ini" -msgstr "Problemas con diable_functions en php.ini" - -#: ../../include/class/ConsoleSupervisor.php:1406 -msgid "" -"The variable disable_functions contains functions system() or exec() in PHP " -"configuration file (php.ini)" -msgstr "" -"La variable disable_funtionc contiene las funciones system() o exec() en el " -"archivo de configuración PHP (php.ini)" - -#: ../../include/class/ConsoleSupervisor.php:1423 -msgid "PhantomJS is not installed" -msgstr "PhantomJS no está instalado" - -#: ../../include/class/ConsoleSupervisor.php:1424 -msgid "" -"To be able to create images of the graphs for PDFs, please install the " -"PhantomJS extension. For that, it is necessary to follow these steps:" -msgstr "" -"Para poder crear imágenes de las gráficas para PDFs, instale la extensión " -"PhantomJS. Para ello siga estos pasos:" - -#: ../../include/class/ConsoleSupervisor.php:1441 -msgid "PHP UPDATE REQUIRED" -msgstr "PHP DEBE ACTUALIZARSE" - -#: ../../include/class/ConsoleSupervisor.php:1508 -msgid "Historical database not available" -msgstr "Base de datos de histórico no disponible" - -#: ../../include/class/ConsoleSupervisor.php:1509 -msgid "" -"Historical database is enabled, though not accessible with the current " -"configuration." -msgstr "" -"La base de datos de histórico está habilitada pero no accesible con la " -"configuración actual." - -#: ../../include/class/ConsoleSupervisor.php:1552 -msgid "Database maintenance problem" -msgstr "Problema de mantenimiento de la base de datos" - -#: ../../include/class/ConsoleSupervisor.php:1554 -#, php-format -msgid "" -"Your database hasn't been through maintenance for 48hrs. Please, check " -"documentation on how to perform this maintenance process on %s and enable it " -"as soon as possible." -msgstr "" -"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. " -"Diríjase a la documentación para ver cómo llevar a cabo el proceso de " -"mantenimiento en %s y habilítelo lo antes posible." - -#: ../../include/class/ConsoleSupervisor.php:1614 -msgid "Historical database maintenance problem." -msgstr "Problema de mantenimiento de la base de datos de histórico." - -#: ../../include/class/ConsoleSupervisor.php:1616 -#, php-format -msgid "" -"Your historical database hasn't been through maintenance for 48hrs. Please, " -"check documentation on how to perform this maintenance process on %s and " -"enable it as soon as possible." -msgstr "" -"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. " -"Diríjase a la documentación para ver cómo llevar a cabo el proceso de " -"mantenimiento en %s y habilítelo lo antes posible." - -#: ../../include/class/ConsoleSupervisor.php:1654 -msgid "Historical database MR mismatch" -msgstr "Error de coincidencia de la base de datos de histórico MR" - -#: ../../include/class/ConsoleSupervisor.php:1655 -msgid "" -"Your historical database is not using the same schema as the main DB. This " -"could produce anomalies while storing historical data." -msgstr "" -"La base de datos de histórico no usa el mismo esquema que la base de datos " -"principal. Esto podría causar anomalías al guardar datos de histórico." - -#: ../../include/class/ConsoleSupervisor.php:1696 -msgid "Log collector cannot connect to ElasticSearch" -msgstr "El colector de logs no puede conectar con ElasticSearch" - -#: ../../include/class/ConsoleSupervisor.php:1697 -msgid "ElasticSearch is not available using current configuration." -msgstr "ElasticSearch no está disponible con la configuración actual." - -#: ../../include/class/ConsoleSupervisor.php:1766 -msgid "Metaconsole DB is not available." -msgstr "La base de datos de la Metaconsola no está disponible." - -#: ../../include/class/ConsoleSupervisor.php:1767 -msgid "Cannot connect with Metaconsole DB using current configuration." -msgstr "" -"No puede conectar con la base de datos de la Metaconsola con la " -"configuración actual." - -#: ../../include/class/ConsoleSupervisor.php:1795 -msgid "Scheduled downtime running." -msgstr "Ejecución de parada planificada." - -#: ../../include/class/ConsoleSupervisor.php:1796 -msgid "" -"A scheduled downtime is running. Some monitoring data won't be available " -"while downtime is taking place." -msgstr "" -"Se está ejecutando una parada planificada. Algunos de los datos de " -"monitorización no estarán disponibles durante dicha parada." - -#: ../../include/class/ConsoleSupervisor.php:1952 -msgid "Downtime scheduled soon." -msgstr "Parada planificada próximamente." - -#: ../../include/class/ConsoleSupervisor.php:1954 -#, php-format -msgid "" -"A scheduled downtime is going to be executed from %s to %s. Some monitoring " -"data won't be available while downtime is taking place." -msgstr "" -"Se ejecutará una parada planificada de %s a %s. Algunos de los datos de " -"monitorización no estarán disponibles durante dicha parada." - -#: ../../include/class/ConsoleSupervisor.php:1984 -msgid "This instance is not registered in the Update manager section" -msgstr "La instancia no está registrada en la sección Update manager" - -#: ../../include/class/ConsoleSupervisor.php:1985 -msgid "" -"Click here to start the " -"registration process" -msgstr "" -"Haz clic aquí para empezar el proceso " -"de registro." - -#: ../../include/class/ConsoleSupervisor.php:2017 -msgid "Default password for \"Admin\" user has not been changed" -msgstr "No se ha cambiado la contraseña por defecto del usuario \"Admin\"" - -#: ../../include/class/ConsoleSupervisor.php:2018 -msgid "" -"Please, change the default password since it is a commonly reported " -"vulnerability." -msgstr "" -"Cambie la contraseña por defecto puesto que es una vulnerabilidad frecuente." - -#: ../../include/class/ConsoleSupervisor.php:2045 -msgid "Default font doesn't exist" -msgstr "No existe una fuente por defecto" - -#: ../../include/class/ConsoleSupervisor.php:2046 -msgid "" -"Your defined font doesn't exist or is not defined. Please, check font " -"parameters in your config" -msgstr "" -"La fuente seleccionada no existe o no está definida. Compruebe los " -"parámetros de fuente en la configuración" - -#: ../../include/class/ConsoleSupervisor.php:2069 -msgid "Developer mode is enabled" -msgstr "El modo «desarrollador» está activado." - -#: ../../include/class/ConsoleSupervisor.php:2071 -#, php-format -msgid "" -"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode " -"and should be disabled in a production environment. This value is located in " -"the main index.php file" -msgstr "" -"%s tiene el modo \"develop_bypass\" habilitado. Este es un modo de " -"desarrollo y debe estar desactivado en un entorno de producción. El valor se " -"encuentra en el archivo principal index.php" - -#: ../../include/class/ConsoleSupervisor.php:2095 -msgid "Event storm protection is enabled." -msgstr "La protección de tormenta de eventos está habilitada." - -#: ../../include/class/ConsoleSupervisor.php:2096 -msgid "" -"Some events may get lost while this mode is enabled. The server must be " -"restarted after altering this setting." -msgstr "" -"Podrían perderse algunos elementos al habilitar este modo. Reinicie el " -"servidor después de las modificaciones" - -#: ../../include/class/ConsoleSupervisor.php:2122 -msgid "Failed to retrieve updates, please configure utility" -msgstr "No se han podido obtener actualizaciones, configure la herramienta" - -#: ../../include/class/ConsoleSupervisor.php:2140 -#, php-format -msgid "New %s Console update" -msgstr "Nueva actualización de la consola %s" - -#: ../../include/class/ConsoleSupervisor.php:2143 -msgid "" -"There is a new update available. Please.About minor release update." -msgstr "" -"Hay una o varias actualizaciones disponibles. . Sobre la actualización " -"menor." - -#: ../../include/class/ConsoleSupervisor.php:2205 -#: ../../enterprise/include/functions_tasklist.php:53 -msgid "DiscoveryConsoleTasks is not running properly" -msgstr "DiscoveryConsoleTasks no funciona adecuadamente" - -#: ../../include/class/ConsoleSupervisor.php:2207 -msgid "Discovery relies on an appropriate cron setup." -msgstr "Discovery depende de la configuración cron adecuada" - -#: ../../include/class/ConsoleSupervisor.php:2208 -#: ../../enterprise/include/functions_tasklist.php:56 -msgid "Please, add the following line to your crontab file:" -msgstr "Añada la siguiente línea a su archivo crontab:" - -#: ../../include/class/ConsoleSupervisor.php:2221 -#: ../../enterprise/include/functions_tasklist.php:71 -msgid "Last execution" -msgstr "Última ejecución" - -#: ../../include/class/ConsoleSupervisor.php:2223 -msgid "Please, make sure process is not locked." -msgstr "Asegúrese de que el proceso no está bloqueado." - -#: ../../include/class/ConsoleSupervisor.php:2229 -msgid "DiscoveryConsoleTasks is not configured." -msgstr "DiscoveryConsoleTasks no está configurado." - -#: ../../include/class/ConsoleSupervisor.php:2336 -#, php-format -msgid "%s version misaligned with Console" -msgstr "La versión de %s no está alineada con la consola" - -#: ../../include/class/ConsoleSupervisor.php:2340 -#, php-format -msgid "" -"Server %s and this console have different versions. This might cause several " -"malfunctions. Please, update this server." -msgstr "" -"El servidor de %s y la consola tienen diferentes versiones. Esto podría " -"causar diversos fallos. Actualice el servidor." - -#: ../../include/class/CredentialStore.class.php:562 -msgid "Key identifier is required" -msgstr "Se necesita identificador de clave" - -#: ../../include/class/CredentialStore.class.php:564 -msgid "You must select a group where store this key!" -msgstr "Seleccione un grupo donde guardar esta clave" - -#: ../../include/class/CredentialStore.class.php:566 -msgid "You must specify a product type" -msgstr "Especifique el tipo de producto" - -#: ../../include/class/CredentialStore.class.php:568 -msgid "You must specify a username and/or password" -msgstr "Especifique el nombre de usuario y/o la contraseña" - -#: ../../include/class/CredentialStore.class.php:669 -msgid "identifier cannot be empty" -msgstr "El identificador no puede estar vacío" - -#: ../../include/class/CredentialStore.class.php:674 -msgid "Not allowed" -msgstr "No permitido" - -#: ../../include/class/CredentialStore.class.php:713 -msgid "How to configure encryption." -msgstr "Como configurar el cifrado." - -#: ../../include/class/CredentialStore.class.php:712 -#, php-format -msgid "" -"Database encryption is not enabled. Credentials will be stored in plaintext. " -"%s" -msgstr "" -"El cifrado de la base de datos no está disponible. Los credenciales se " -"guardarán en texto sin formato. %s" - -#: ../../include/class/CredentialStore.class.php:730 -#: ../../include/class/CredentialStore.class.php:833 -#: ../../enterprise/include/class/Omnishell.class.php:398 -msgid "Identifier" -msgstr "Identificador" - -#: ../../include/class/CredentialStore.class.php:731 -#: ../../include/class/CredentialStore.class.php:858 -msgid "Product" -msgstr "Producto" - -#: ../../include/class/CredentialStore.class.php:797 -msgid "Add key" -msgstr "Añadir clave" - -#: ../../include/class/CredentialStore.class.php:867 -#: ../../enterprise/include/class/Aws.cloud.php:97 -msgid "Aws" -msgstr "Aws" - -#: ../../include/class/CredentialStore.class.php:868 -#: ../../enterprise/include/class/Azure.cloud.php:142 -msgid "Azure" -msgstr "Azure" - -#: ../../include/class/CredentialStore.class.php:869 -#: ../../enterprise/godmode/menu.php:155 -#: ../../enterprise/include/class/SAPView.class.php:614 -#: ../../enterprise/include/class/SAPView.class.php:617 -msgid "SAP" -msgstr "SAP" - -#: ../../include/class/CredentialStore.class.php:880 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:360 -msgid "Extra" -msgstr "Extra" - -#: ../../include/class/CredentialStore.class.php:881 -msgid "Extra (2)" -msgstr "Extra (2)" - -#: ../../include/class/CredentialStore.class.php:888 -#: ../../include/class/CredentialStore.class.php:1032 -msgid "Access key ID" -msgstr "ID de la clave de accso" - -#: ../../include/class/CredentialStore.class.php:889 -#: ../../include/class/CredentialStore.class.php:1033 -msgid "Secret access key" -msgstr "Clave de acceso secreta" - -#: ../../include/class/CredentialStore.class.php:895 -#: ../../include/class/CredentialStore.class.php:905 -msgid "Account ID" -msgstr "ID de la cuenta" - -#: ../../include/class/CredentialStore.class.php:896 -#: ../../include/class/CredentialStore.class.php:1038 -msgid "Application secret" -msgstr "Secretos de aplicación" - -#: ../../include/class/CredentialStore.class.php:897 -#: ../../include/class/CredentialStore.class.php:1039 -msgid "Tenant or domain name" -msgstr "Propietario o nombre del dominio" - -#: ../../include/class/CredentialStore.class.php:898 -#: ../../include/class/CredentialStore.class.php:1040 -msgid "Subscription id" -msgstr "ID de la suscripción" - -#: ../../include/class/CredentialStore.class.php:1003 -#: ../../operation/agentes/status_monitor.php:426 -#: ../../operation/incidents/incident.php:301 -#: ../../enterprise/extensions/vmware/vmware_view.php:1443 -#: ../../enterprise/include/class/AgentRepository.class.php:754 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1488 -#: ../../enterprise/include/class/Omnishell.class.php:1074 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:296 -#: ../../enterprise/operation/agentes/tag_view.php:149 -msgid "Show" -msgstr "Mostrar" - -#: ../../include/class/CredentialStore.class.php:1037 -msgid "Client ID" -msgstr "ID de cliente" - -#: ../../include/class/CredentialStore.class.php:1044 -msgid "Account ID." -msgstr "ID de la cuenta" - -#: ../../include/class/CredentialStore.class.php:1055 -#: ../../include/class/Diagnostics.class.php:2078 -#: ../../include/class/HelpFeedBack.class.php:358 -#: ../../include/functions_ui.php:287 -#: ../../enterprise/include/class/AgentRepository.class.php:825 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1565 -#: ../../enterprise/include/class/Omnishell.class.php:1033 -#: ../../enterprise/include/functions_HA_cluster.php:535 -#: ../../enterprise/include/functions_visual_map.php:676 -msgid "Success" -msgstr "Finalizado correctamente" - -#: ../../include/class/CredentialStore.class.php:1062 -#: ../../include/class/CredentialStore.class.php:1067 -#: ../../include/class/Diagnostics.class.php:2077 -#: ../../include/class/HelpFeedBack.class.php:353 -#: ../../enterprise/include/class/AgentRepository.class.php:832 -#: ../../enterprise/include/class/AgentRepository.class.php:837 -#: ../../enterprise/include/class/DatabaseHA.class.php:204 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1572 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1577 -#: ../../enterprise/include/class/Omnishell.class.php:1029 -#: ../../enterprise/include/functions_HA_cluster.php:542 -#: ../../enterprise/include/functions_HA_cluster.php:547 -#: ../../enterprise/include/functions_ux_console.php:446 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:471 -#: ../../enterprise/operation/agentes/transactional_map.php:318 -#: ../../enterprise/operation/agentes/ux_console_view.php:231 -#: ../../enterprise/operation/agentes/ux_console_view.php:381 -#: ../../enterprise/operation/agentes/wux_console_view.php:415 -msgid "Failed" -msgstr "Fallo" - -#: ../../include/class/CredentialStore.class.php:1113 -msgid "Register new key into keystore" -msgstr "Registrar una clave nueva en el repositorio de claves" - -#: ../../include/class/CredentialStore.class.php:1117 -msgid "Update key" -msgstr "Actualizar clave" - -#: ../../include/class/CustomNetScan.class.php:134 -#: ../../enterprise/include/class/Aws.cloud.php:771 -msgid "" -"This task has been already defined. Please edit it or create a new one." -msgstr "La tarea ya se ha definido. Edite o cree una nueva." - -#: ../../include/class/CustomNetScan.class.php:368 -#: ../../include/class/CustomNetScan.class.php:393 -msgid "NetScan Custom" -msgstr "Personalización NetScan" - -#: ../../include/class/CustomNetScan.class.php:609 -msgid "Recon script" -msgstr "Recon script" - -#: ../../include/class/CustomNetScan.class.php:650 -msgid "Explanation" -msgstr "Explicación" - -#: ../../include/class/CustomNetScan.class.php:666 -msgid "macro_desc" -msgstr "macro_desc" - -#: ../../include/class/Diagnostics.class.php:141 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:435 -#: ../../enterprise/operation/reporting/custom_reporting.php:60 -msgid "Export to PDF" -msgstr "Exportar a PDF" +msgid "Succesfully %s" +msgstr "Con éxito %s" + +#: ../../include/class/ConfigPEN.class.php:645 +msgid "Register manufacturer" +msgstr "Registrar fabricante" + +#: ../../include/class/ConfigPEN.class.php:661 +msgid "Are you sure you want to delete this PEN?" +msgstr "¿Está seguro de que quiere eliminar este PEN?" + +#: ../../include/class/ConfigPEN.class.php:688 +msgid "Register new manufacturer" +msgstr "Registrar nuevo fabricante" + +#: ../../include/class/HelpFeedBack.class.php:104 +msgid "Browser not compatible." +msgstr "Buscador no compatible." + +#: ../../include/class/HelpFeedBack.class.php:147 +msgid "Suggestion" +msgstr "Sugerencia" + +#: ../../include/class/HelpFeedBack.class.php:158 +msgid "Something is wrong" +msgstr "Algo ha salido mal" + +#: ../../include/class/HelpFeedBack.class.php:171 +msgid "What happened?" +msgstr "¿Qué ha pasado?" + +#: ../../include/class/HelpFeedBack.class.php:181 +msgid "Your Email" +msgstr "Tu email" + +#: ../../include/class/HelpFeedBack.class.php:198 +#: ../../operation/incidents/incident_detail.php:404 +msgid "Submit" +msgstr "Enviar" + +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1958 ../../general/header.php:344 +#: ../../general/header.php:346 +msgid "Feedback" +msgstr "Feedback" + +#: ../../include/class/HelpFeedBack.class.php:252 +msgid "[pandorafms wiki] New suggestion" +msgstr "[pandorafms wiki] Nueva sugerencia" + +#: ../../include/class/HelpFeedBack.class.php:254 +msgid "[pandorafms wiki] New report" +msgstr "[pandorafms wiki] Nuevo informe" + +#: ../../include/class/HelpFeedBack.class.php:260 +msgid "Please provide your email address, we promise not to bother you" +msgstr "Añada su dirección de correo electrónico, prometemos no molestarle" + +#: ../../include/class/HelpFeedBack.class.php:308 +msgid "Something went wrong while sending the report." +msgstr "Error al enviar el informe." + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Your report had been successfully sent to Artica." +msgstr "Su informe se ha enviado a Ártica correctamente" + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Thank you!" +msgstr "¡Gracias!" #: ../../include/class/Diagnostics.class.php:152 #, php-format @@ -24344,11 +41496,6 @@ msgstr "Desarrollo del esquema de la base de datos" msgid "DB Size" msgstr "Tamaño de la base de datos" -#: ../../include/class/Diagnostics.class.php:713 -#: ../../enterprise/godmode/reporting/aws_view.php:54 -msgid "CPU" -msgstr "CPU" - #: ../../include/class/Diagnostics.class.php:717 msgid "RAM" msgstr "RAM" @@ -24357,19 +41504,9 @@ msgstr "RAM" msgid "Os" msgstr "SO" -#: ../../include/class/Diagnostics.class.php:725 -#: ../../include/class/Diagnostics.class.php:743 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1733 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:197 -#: ../../enterprise/extensions/ipam/ipam_network.php:324 -msgid "Hostname" -msgstr "Nombre de host" - #: ../../include/class/Diagnostics.class.php:729 #: ../../include/class/Diagnostics.class.php:747 -#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/NetworkMap.class.php:2934 msgid "Ip" msgstr "IP" @@ -24557,11 +41694,6 @@ msgstr "La media de módulos por agente es menos de 40" msgid "The system has no load" msgstr "El sistema no tiene carga" -#: ../../include/class/Diagnostics.class.php:1147 -#: ../../enterprise/include/functions_license.php:120 -msgid "Support expires" -msgstr "El soporte caduca" - #: ../../include/class/Diagnostics.class.php:1171 msgid "Network Management System" msgstr "Sistema de administración de la red" @@ -24756,190 +41888,72 @@ msgstr "Tarea cron generada" msgid "Diagnostics Info" msgstr "Información de diagnóstico" -#: ../../include/class/Diagnostics.class.php:2121 -#: ../../include/class/Diagnostics.class.php:2239 -#: ../../enterprise/include/functions_reporting_pdf.php:65 -#, php-format -msgid "Automated %s report for user defined report" -msgstr "Informe de %s automatizado para informe definido por el usuario" - -#: ../../include/class/Diagnostics.class.php:2166 -#: ../../include/functions_cron.php:622 ../../include/functions_cron.php:652 -#: ../../enterprise/extensions/backup/main.php:129 -#: ../../enterprise/include/functions_tasklist.php:345 -#: ../../enterprise/include/functions_tasklist.php:376 -msgid "Path" -msgstr "Ruta" - #: ../../include/class/Diagnostics.class.php:2235 #: ../../include/class/Diagnostics.class.php:2245 msgid "PHP Info" msgstr "Información PHP" -#: ../../include/class/HelpFeedBack.class.php:99 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:624 -#: ../../enterprise/include/class/Omnishell.class.php:319 -msgid "Page not found" -msgstr "Página no encontrada" - -#: ../../include/class/HelpFeedBack.class.php:104 -msgid "Browser not compatible." -msgstr "Buscador no compatible." - -#: ../../include/class/HelpFeedBack.class.php:147 -msgid "Suggestion" -msgstr "Sugerencia" - -#: ../../include/class/HelpFeedBack.class.php:158 -msgid "Something is wrong" -msgstr "Algo ha salido mal" - -#: ../../include/class/HelpFeedBack.class.php:171 -msgid "What happened?" -msgstr "¿Qué ha pasado?" - -#: ../../include/class/HelpFeedBack.class.php:181 -msgid "Your Email" -msgstr "Tu email" - -#: ../../include/class/HelpFeedBack.class.php:198 -#: ../../operation/incidents/incident_detail.php:404 -msgid "Submit" -msgstr "Enviar" - -#: ../../include/class/HelpFeedBack.class.php:252 -msgid "[pandorafms wiki] New suggestion" -msgstr "[pandorafms wiki] Nueva sugerencia" - -#: ../../include/class/HelpFeedBack.class.php:254 -msgid "[pandorafms wiki] New report" -msgstr "[pandorafms wiki] Nuevo informe" - -#: ../../include/class/HelpFeedBack.class.php:260 -msgid "Please provide your email address, we promise not to bother you" -msgstr "Añada su dirección de correo electrónico, prometemos no molestarle" - -#: ../../include/class/HelpFeedBack.class.php:308 -msgid "Something went wrong while sending the report." -msgstr "Error al enviar el informe." - -#: ../../include/class/HelpFeedBack.class.php:359 -msgid "Your report had been successfully sent to Artica." -msgstr "Su informe se ha enviado a Ártica correctamente" - -#: ../../include/class/HelpFeedBack.class.php:359 -msgid "Thank you!" -msgstr "¡Gracias!" - -#: ../../include/class/ManageNetScanScripts.class.php:121 -msgid "Net scan scripts" -msgstr "Guiones de escaneo de red" - -#: ../../include/class/ManageNetScanScripts.class.php:211 -msgid "Problem creating" -msgstr "Error al crear" - -#: ../../include/class/ManageNetScanScripts.class.php:222 -#: ../../include/class/ManageNetScanScripts.class.php:309 -msgid "Name or Script fullpath they can not be empty" -msgstr "El nombre o ruta completa del guión no pueden estar vacíos" - -#: ../../include/class/ManageNetScanScripts.class.php:243 -#: ../../include/class/ManageNetScanScripts.class.php:330 -msgid "Problem deleting Net scan Scripts, Not selected script" -msgstr "" -"Error al eliminar los scripts de escaneo de red. No hay scripts seleccionados" - -#: ../../include/class/ManageNetScanScripts.class.php:298 -msgid "Problem updating" -msgstr "Error al actualizar" - -#: ../../include/class/ManageNetScanScripts.class.php:344 -#: ../../include/class/ManageNetScanScripts.class.php:355 -msgid "Problem deleting Net scan Scripts" -msgstr "Error al eliminar los scripts de escaneo de red" - -#: ../../include/class/ManageNetScanScripts.class.php:360 -msgid "Deleted successfully" -msgstr "Borrado correctamente" - -#: ../../include/class/ManageNetScanScripts.class.php:432 -msgid "Are you sure delete script?" -msgstr "¿Está seguro de que desea borrar el script?" - -#: ../../include/class/ManageNetScanScripts.class.php:452 -msgid "Delete Script" -msgstr "Eliminar guión" - -#: ../../include/class/ManageNetScanScripts.class.php:470 -msgid "There are no net scan scripts in the system" -msgstr "No hay scripts de escaneo de red en el sistema" - -#: ../../include/class/ManageNetScanScripts.class.php:550 -msgid "Script fullpath" -msgstr "Ruta completa del script" - -#: ../../include/class/NetworkMap.class.php:2306 +#: ../../include/class/NetworkMap.class.php:2328 msgid "Failed to generate dotmap, please select different layout schema" msgstr "No se ha podido generar dotmap, seleccione un formato diferente" -#: ../../include/class/NetworkMap.class.php:2464 +#: ../../include/class/NetworkMap.class.php:2456 msgid "Failed to retrieve graph data." msgstr "No se ha podido obtener datos de gráfica." -#: ../../include/class/NetworkMap.class.php:2678 +#: ../../include/class/NetworkMap.class.php:2676 msgid "Holding Area" msgstr "Búfer de procesamiento" -#: ../../include/class/NetworkMap.class.php:2806 +#: ../../include/class/NetworkMap.class.php:2805 #, php-format msgid "Edit node %s" msgstr "Modificar el nodo %s" -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2807 msgid "Show details and options" msgstr "Mostrar detalles y opciones" -#: ../../include/class/NetworkMap.class.php:2809 +#: ../../include/class/NetworkMap.class.php:2808 msgid "Add a interface link" msgstr "Añadir enlace de interfaz" -#: ../../include/class/NetworkMap.class.php:2810 +#: ../../include/class/NetworkMap.class.php:2809 msgid "Set parent interface" msgstr "Establecer padre en la relación de interfaz" -#: ../../include/class/NetworkMap.class.php:2811 +#: ../../include/class/NetworkMap.class.php:2810 msgid "Set as children" msgstr "Establecer como hijo" -#: ../../include/class/NetworkMap.class.php:2812 +#: ../../include/class/NetworkMap.class.php:2811 msgid "Set parent" msgstr "Establecer como padre" -#: ../../include/class/NetworkMap.class.php:2813 -#: ../../include/class/NetworkMap.class.php:2826 +#: ../../include/class/NetworkMap.class.php:2812 +#: ../../include/class/NetworkMap.class.php:2825 msgid "Abort the action of set relationship" msgstr "Cancelar la acción de relacionar por parentesco" -#: ../../include/class/NetworkMap.class.php:2815 -#: ../../include/class/NetworkMap.class.php:3152 +#: ../../include/class/NetworkMap.class.php:2814 +#: ../../include/class/NetworkMap.class.php:3151 msgid "Add node" msgstr "Añadir nodo" -#: ../../include/class/NetworkMap.class.php:2816 +#: ../../include/class/NetworkMap.class.php:2815 msgid "Set center" msgstr "Fijar centro" -#: ../../include/class/NetworkMap.class.php:2818 +#: ../../include/class/NetworkMap.class.php:2817 msgid "Refresh Holding area" msgstr "Actualizar búfer de procesamiento" -#: ../../include/class/NetworkMap.class.php:2819 -#: ../../include/class/NetworkMap.class.php:2822 +#: ../../include/class/NetworkMap.class.php:2818 +#: ../../include/class/NetworkMap.class.php:2821 msgid "Proceed" msgstr "Proceder" -#: ../../include/class/NetworkMap.class.php:2820 +#: ../../include/class/NetworkMap.class.php:2819 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." @@ -24947,394 +41961,290 @@ msgstr "" "Al resetear el mapa se borrarán todas las personalizaciones que hayas hecho, " "incluyendo las relaciones manuales entre elementos, nuevos elementos, etc." -#: ../../include/class/NetworkMap.class.php:2821 -#: ../../include/class/Tree.class.php:588 ../../include/functions_events.php:68 -#: ../../include/functions_events.php:102 -#: ../../include/functions_events.php:172 -#: ../../include/functions_events.php.orig:66 -#: ../../include/functions_events.php.orig:100 -#: ../../include/functions_events.php.orig:170 -#: ../../include/functions_ui.php:3511 ../../include/functions_ui.php:3588 -#: ../../include/functions_modules.php:2432 -#: ../../include/functions_modules.php:2449 -#: ../../include/functions_modules.php:3385 -#: ../../include/functions_modules.php:3417 -#: ../../mobile/operation/modules.php:533 -#: ../../mobile/operation/modules.php:560 -#: ../../mobile/operation/modules.php:596 -#: ../../mobile/operation/modules.php:623 -#: ../../operation/agentes/pandora_networkmap.view.php:330 -#: ../../operation/agentes/pandora_networkmap.view.php:351 -#: ../../operation/agentes/status_monitor.php:1387 -#: ../../operation/agentes/status_monitor.php:1393 -#: ../../operation/agentes/status_monitor.php:1466 -#: ../../operation/agentes/status_monitor.php:1472 -#: ../../operation/events/events.php:1741 -#: ../../operation/events/events.php:1794 -#: ../../operation/events/events.php:1849 -#: ../../operation/search_modules.php:108 -#: ../../operation/search_modules.php:139 -#: ../../enterprise/extensions/vmware/vmware_view.php:1026 -#: ../../enterprise/include/functions_services.php:2686 -#: ../../enterprise/include/functions_services.php:2714 -#: ../../enterprise/include/functions_login.php:34 -#: ../../enterprise/operation/agentes/policy_view.php:384 -#: ../../enterprise/operation/agentes/policy_view.php:403 -#: ../../enterprise/operation/agentes/tag_view.php:953 -#: ../../enterprise/operation/agentes/tag_view.php:959 -#: ../../enterprise/operation/agentes/tag_view.php:1004 -#: ../../enterprise/operation/agentes/tag_view.php:1010 -msgid "WARNING" -msgstr "ADVERTENCIA" - -#: ../../include/class/NetworkMap.class.php:2824 +#: ../../include/class/NetworkMap.class.php:2823 msgid "Restart map" msgstr "Resetear el mapa" -#: ../../include/class/NetworkMap.class.php:2825 +#: ../../include/class/NetworkMap.class.php:2824 msgid "Abort the interface relationship" msgstr "Abortar la relación de interfaz" -#: ../../include/class/NetworkMap.class.php:2843 -#: ../../include/class/NetworkMap.class.php:2896 +#: ../../include/class/NetworkMap.class.php:2842 +#: ../../include/class/NetworkMap.class.php:2895 #, php-format msgid "In the Open version of %s can not be edited nodes or map" msgstr "Los nodos y el mapa no se pueden editar en la versión Open de %s" -#: ../../include/class/NetworkMap.class.php:2849 -#: ../../include/class/NetworkMap.class.php:2902 +#: ../../include/class/NetworkMap.class.php:2848 +#: ../../include/class/NetworkMap.class.php:2901 msgid "Edit node" msgstr "Modificar nodo" -#: ../../include/class/NetworkMap.class.php:2859 -#: ../../include/class/NetworkMap.class.php:2912 -#: ../../enterprise/include/ajax/clustermap.php:39 +#: ../../include/class/NetworkMap.class.php:2858 +#: ../../include/class/NetworkMap.class.php:2911 msgid "Adresses" msgstr "Direcciones" -#: ../../include/class/NetworkMap.class.php:2861 -#: ../../include/class/NetworkMap.class.php:2914 +#: ../../include/class/NetworkMap.class.php:2860 +#: ../../include/class/NetworkMap.class.php:2913 msgid "OS type" msgstr "Tipo de SO" +#: ../../include/class/NetworkMap.class.php:2867 #: ../../include/class/NetworkMap.class.php:2868 -#: ../../include/class/NetworkMap.class.php:2869 +#: ../../include/class/NetworkMap.class.php:2920 #: ../../include/class/NetworkMap.class.php:2921 -#: ../../include/class/NetworkMap.class.php:2922 -#: ../../enterprise/include/ajax/clustermap.php:52 -#: ../../enterprise/include/ajax/clustermap.php:53 msgid "Node Details" msgstr "Detalles de nodo" -#: ../../include/class/NetworkMap.class.php:2936 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:262 -msgid "MAC" -msgstr "MAC" - +#: ../../include/class/NetworkMap.class.php:2946 #: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2948 msgid "Interface Information (SNMP)" msgstr "Información de interfaces (SNMP)" -#: ../../include/class/NetworkMap.class.php:2959 +#: ../../include/class/NetworkMap.class.php:2958 msgid "Shape" msgstr "Forma" -#: ../../include/class/NetworkMap.class.php:2962 +#: ../../include/class/NetworkMap.class.php:2961 msgid "Circle" msgstr "Círculo" -#: ../../include/class/NetworkMap.class.php:2963 +#: ../../include/class/NetworkMap.class.php:2962 msgid "Square" msgstr "Cuadrado" -#: ../../include/class/NetworkMap.class.php:2964 +#: ../../include/class/NetworkMap.class.php:2963 msgid "Rhombus" msgstr "Rombo" -#: ../../include/class/NetworkMap.class.php:2977 +#: ../../include/class/NetworkMap.class.php:2976 msgid "name node" msgstr "Nombrar nodo" -#: ../../include/class/NetworkMap.class.php:2983 -#: ../../enterprise/include/functions_HA_cluster.php:496 -msgid "Update node" -msgstr "Actualizar nodo" - -#: ../../include/class/NetworkMap.class.php:2995 -#: ../../include/class/NetworkMap.class.php:3259 +#: ../../include/class/NetworkMap.class.php:2994 +#: ../../include/class/NetworkMap.class.php:3258 msgid "name fictional node" msgstr "Nombre de nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3000 -#: ../../include/class/NetworkMap.class.php:3264 +#: ../../include/class/NetworkMap.class.php:2999 +#: ../../include/class/NetworkMap.class.php:3263 msgid "Networkmap to link" msgstr "Enlace a mapa de red" -#: ../../include/class/NetworkMap.class.php:3012 +#: ../../include/class/NetworkMap.class.php:3011 msgid "Update fictional node" msgstr "Actualizar nodo ficticio" +#: ../../include/class/NetworkMap.class.php:3021 #: ../../include/class/NetworkMap.class.php:3022 -#: ../../include/class/NetworkMap.class.php:3023 msgid "Node options" msgstr "Opciones de nodo" -#: ../../include/class/NetworkMap.class.php:3034 -#: ../../include/class/NetworkMap.class.php:3098 +#: ../../include/class/NetworkMap.class.php:3033 +#: ../../include/class/NetworkMap.class.php:3097 msgid "Node source" msgstr "Nodo origen" -#: ../../include/class/NetworkMap.class.php:3035 -#: ../../include/class/NetworkMap.class.php:3099 +#: ../../include/class/NetworkMap.class.php:3034 +#: ../../include/class/NetworkMap.class.php:3098 msgid "Interface source" msgstr "Interfaz origen" -#: ../../include/class/NetworkMap.class.php:3036 -#: ../../include/class/NetworkMap.class.php:3100 +#: ../../include/class/NetworkMap.class.php:3035 +#: ../../include/class/NetworkMap.class.php:3099 msgid "Interface Target" msgstr "Interfaz objetivo" -#: ../../include/class/NetworkMap.class.php:3038 -#: ../../include/class/NetworkMap.class.php:3101 +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3100 msgid "Node target" msgstr "Nodo objetivo" -#: ../../include/class/NetworkMap.class.php:3039 +#: ../../include/class/NetworkMap.class.php:3038 msgid "E." msgstr "E." -#: ../../include/class/NetworkMap.class.php:3072 +#: ../../include/class/NetworkMap.class.php:3071 msgid "There are not relations" msgstr "No hay relaciones" -#: ../../include/class/NetworkMap.class.php:3083 -#: ../../include/class/NetworkMap.class.php:3084 -msgid "Relations" -msgstr "Relaciones" - -#: ../../include/class/NetworkMap.class.php:3140 +#: ../../include/class/NetworkMap.class.php:3139 msgid "Add interface link" msgstr "Añadir enlace de interfaz" -#: ../../include/class/NetworkMap.class.php:3171 +#: ../../include/class/NetworkMap.class.php:3170 +#: ../../include/class/NetworkMap.class.php:3192 #: ../../include/class/NetworkMap.class.php:3193 -#: ../../include/class/NetworkMap.class.php:3194 -#: ../../include/class/NetworkMap.class.php:3234 -#: ../../include/class/NetworkMap.class.php:3246 -#: ../../include/class/NetworkMap.class.php:3287 +#: ../../include/class/NetworkMap.class.php:3233 +#: ../../include/class/NetworkMap.class.php:3245 +#: ../../include/class/NetworkMap.class.php:3286 msgid "Add agent node" msgstr "Añadir nodo de agente" -#: ../../include/class/NetworkMap.class.php:3245 +#: ../../include/class/NetworkMap.class.php:3244 msgid "Add agent node (filter by group)" msgstr "Añadir nodo de agente (filtro por grupo)" -#: ../../include/class/NetworkMap.class.php:3276 +#: ../../include/class/NetworkMap.class.php:3275 msgid "Add fictional node" msgstr "Añadir nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3286 +#: ../../include/class/NetworkMap.class.php:3285 msgid "Add fictional point" msgstr "Añadir punto ficticio" -#: ../../include/class/NetworkMap.class.php:3464 +#: ../../include/class/NetworkMap.class.php:3469 msgid "Open Minimap" msgstr "Abrir Minimapa" -#: ../../include/class/NetworkMap.class.php:3470 +#: ../../include/class/NetworkMap.class.php:3475 msgid "Hide Labels" msgstr "Ocultar etiquetas" -#: ../../include/class/Tree.class.php:580 ../../include/functions_events.php:57 -#: ../../include/functions_events.php:110 -#: ../../include/functions_events.php:154 -#: ../../include/functions_events.php.orig:55 -#: ../../include/functions_events.php.orig:108 -#: ../../include/functions_events.php.orig:152 -#: ../../include/functions_ui.php:3523 ../../include/functions_ui.php:3593 -#: ../../include/functions_modules.php:2429 -#: ../../include/functions_modules.php:2445 -#: ../../include/functions_modules.php:3381 -#: ../../include/functions_modules.php:3401 -#: ../../mobile/operation/modules.php:527 -#: ../../mobile/operation/modules.php:552 -#: ../../mobile/operation/modules.php:590 -#: ../../mobile/operation/modules.php:615 -#: ../../operation/agentes/pandora_networkmap.view.php:327 -#: ../../operation/agentes/pandora_networkmap.view.php:346 -#: ../../operation/agentes/status_monitor.php:1373 -#: ../../operation/agentes/status_monitor.php:1379 -#: ../../operation/agentes/status_monitor.php:1450 -#: ../../operation/agentes/status_monitor.php:1456 -#: ../../operation/events/events.php:1711 -#: ../../operation/events/events.php:1806 -#: ../../operation/events/events.php:1832 -#: ../../operation/search_modules.php:102 -#: ../../operation/search_modules.php:131 -#: ../../enterprise/extensions/vmware/vmware_view.php:1021 -#: ../../enterprise/include/functions_services.php:2680 -#: ../../enterprise/include/functions_services.php:2709 -#: ../../enterprise/operation/agentes/policy_view.php:381 -#: ../../enterprise/operation/agentes/policy_view.php:398 -#: ../../enterprise/operation/agentes/tag_view.php:939 -#: ../../enterprise/operation/agentes/tag_view.php:945 -#: ../../enterprise/operation/agentes/tag_view.php:988 -#: ../../enterprise/operation/agentes/tag_view.php:994 -msgid "CRITICAL" -msgstr "CRÍTICO" +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "Guiones de escaneo de red" -#: ../../include/class/Tree.class.php:594 ../../include/functions_events.php:71 -#: ../../include/functions_events.php:115 -#: ../../include/functions_events.php:175 -#: ../../include/functions_events.php.orig:69 -#: ../../include/functions_events.php.orig:113 -#: ../../include/functions_events.php.orig:173 -#: ../../include/functions_ui.php:3530 ../../include/functions_ui.php:3608 -#: ../../include/functions_modules.php:2441 -#: ../../include/functions_modules.php:2445 -#: ../../include/functions_modules.php:2449 -#: ../../include/functions_modules.php:3389 -#: ../../mobile/operation/modules.php:544 -#: ../../mobile/operation/modules.php:552 -#: ../../mobile/operation/modules.php:560 -#: ../../mobile/operation/modules.php:607 -#: ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:623 -#: ../../operation/agentes/pandora_networkmap.view.php:341 -#: ../../operation/agentes/pandora_networkmap.view.php:346 -#: ../../operation/agentes/pandora_networkmap.view.php:351 -#: ../../operation/agentes/status_monitor.php:1401 -#: ../../operation/agentes/status_monitor.php:1407 -#: ../../operation/agentes/status_monitor.php:1434 -#: ../../operation/agentes/status_monitor.php:1440 -#: ../../operation/agentes/status_monitor.php:1450 -#: ../../operation/agentes/status_monitor.php:1456 -#: ../../operation/agentes/status_monitor.php:1466 -#: ../../operation/agentes/status_monitor.php:1472 -#: ../../operation/events/events.php:1708 -#: ../../operation/events/events.php:1813 -#: ../../operation/events/events.php:1824 -#: ../../operation/search_modules.php:114 -#: ../../operation/search_modules.php:123 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:139 -#: ../../enterprise/extensions/vmware/vmware_view.php:1031 -#: ../../enterprise/include/functions_services.php:2703 -#: ../../enterprise/include/functions_services.php:2709 -#: ../../enterprise/include/functions_services.php:2714 -#: ../../enterprise/include/functions_services.php:2719 -#: ../../enterprise/include/functions_services.php:2726 -#: ../../enterprise/operation/agentes/policy_view.php:393 -#: ../../enterprise/operation/agentes/policy_view.php:398 -#: ../../enterprise/operation/agentes/policy_view.php:403 -#: ../../enterprise/operation/agentes/tag_view.php:972 -#: ../../enterprise/operation/agentes/tag_view.php:978 -#: ../../enterprise/operation/agentes/tag_view.php:988 -#: ../../enterprise/operation/agentes/tag_view.php:994 -#: ../../enterprise/operation/agentes/tag_view.php:1004 -#: ../../enterprise/operation/agentes/tag_view.php:1010 -msgid "UNKNOWN" -msgstr "DESCONOCIDO" +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "Error al crear" -#: ../../include/class/Tree.class.php:601 -#: ../../include/functions_modules.php:3405 -#: ../../operation/agentes/status_monitor.php:1415 -#: ../../operation/agentes/status_monitor.php:1421 -msgid "NO DATA" -msgstr "SIN DATOS" +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "El nombre o ruta completa del guión no pueden estar vacíos" -#: ../../include/class/Tree.class.php:610 ../../include/functions_events.php:54 -#: ../../include/functions_events.php:106 -#: ../../include/functions_events.php:169 -#: ../../include/functions_events.php.orig:52 -#: ../../include/functions_events.php.orig:104 -#: ../../include/functions_events.php.orig:167 -#: ../../include/functions_ui.php:3517 ../../include/functions_ui.php:3583 -#: ../../include/functions_modules.php:2435 -#: ../../include/functions_modules.php:2441 -#: ../../include/functions_modules.php:3377 -#: ../../include/functions_modules.php:3409 -#: ../../mobile/operation/modules.php:521 -#: ../../mobile/operation/modules.php:544 -#: ../../mobile/operation/modules.php:584 -#: ../../mobile/operation/modules.php:607 -#: ../../operation/agentes/pandora_networkmap.view.php:333 -#: ../../operation/agentes/pandora_networkmap.view.php:341 -#: ../../operation/agentes/status_monitor.php:1359 -#: ../../operation/agentes/status_monitor.php:1365 -#: ../../operation/agentes/status_monitor.php:1434 -#: ../../operation/agentes/status_monitor.php:1440 -#: ../../operation/events/events.php:1736 -#: ../../operation/events/events.php:1800 -#: ../../operation/events/events.php:1827 ../../operation/search_modules.php:96 -#: ../../operation/search_modules.php:123 -#: ../../enterprise/extensions/vmware/vmware_view.php:1016 -#: ../../enterprise/include/functions_services.php:2674 -#: ../../enterprise/include/functions_services.php:2703 -#: ../../enterprise/operation/agentes/policy_view.php:387 -#: ../../enterprise/operation/agentes/policy_view.php:393 -#: ../../enterprise/operation/agentes/tag_view.php:925 -#: ../../enterprise/operation/agentes/tag_view.php:931 -#: ../../enterprise/operation/agentes/tag_view.php:972 -#: ../../enterprise/operation/agentes/tag_view.php:978 -msgid "NORMAL" -msgstr "NORMAL" - -#: ../../include/class/Tree.class.php:685 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 -msgid "Module alerts" -msgstr "Alertas de módulo" - -#: ../../include/class/WelcomeWindow.class.php:157 -msgid "Welcome to Pandora FMS" -msgstr "Bienvenido a Pandora FMS" - -#: ../../include/class/WelcomeWindow.class.php:158 -msgid "Do not show anymore" -msgstr "No volver a mostrar" - -#: ../../include/class/WelcomeWindow.class.php:167 -msgid "Cancel Configuration Window" -msgstr "Cancelar ventana de configuración" - -#: ../../include/class/WelcomeWindow.class.php:172 -msgid "Are you sure you want to cancel this tutorial?" -msgstr "¿Está seguro de que desea borrar este tutorial?" - -#: ../../include/class/WelcomeWindow.class.php:427 -msgid "Please ensure mail configuration matches your needs" +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" msgstr "" -"Asegúrese de que la configuración del correo electrónico se ajusta a sus " -"necesidades" +"Error al eliminar los scripts de escaneo de red. No hay scripts seleccionados" -#: ../../include/class/WelcomeWindow.class.php:461 -msgid "Create an agent" -msgstr "Crear agente" +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "Error al actualizar" -#: ../../include/class/WelcomeWindow.class.php:486 -msgid "Create a module to check if an agent is online" -msgstr "Crear módulo para saber si el agente está en línea" +#: ../../include/class/ManageNetScanScripts.class.php:356 +#: ../../include/class/ManageNetScanScripts.class.php:367 +msgid "Problem deleting Net scan Scripts" +msgstr "Error al eliminar los scripts de escaneo de red" -#: ../../include/class/WelcomeWindow.class.php:511 -msgid "Be warned if something is wrong, create an alert on the module" -msgstr "" -"Manténgase informado de cualquier problema, cree una alerta para el módulo" +#: ../../include/class/ManageNetScanScripts.class.php:372 +msgid "Deleted successfully" +msgstr "Borrado correctamente" -#: ../../include/class/WelcomeWindow.class.php:536 -msgid "Discover hosts and devices in your network" -msgstr "Explorar hosts y dispositivos en la red" +#: ../../include/class/ManageNetScanScripts.class.php:444 +msgid "Are you sure delete script?" +msgstr "¿Está seguro de que desea borrar el script?" -#: ../../include/class/WelcomeWindow.class.php:564 +#: ../../include/class/ManageNetScanScripts.class.php:464 +msgid "Delete Script" +msgstr "Eliminar guión" + +#: ../../include/class/ManageNetScanScripts.class.php:482 +msgid "There are no net scan scripts in the system" +msgstr "No hay scripts de escaneo de red en el sistema" + +#: ../../include/class/ManageNetScanScripts.class.php:556 +msgid "Script fullpath" +msgstr "Ruta completa del script" + +#: ../../include/class/CredentialStore.class.php:565 +msgid "Key identifier is required" +msgstr "Se necesita identificador de clave" + +#: ../../include/class/CredentialStore.class.php:567 +msgid "You must select a group where store this key!" +msgstr "Seleccione un grupo donde guardar esta clave" + +#: ../../include/class/CredentialStore.class.php:569 +msgid "You must specify a product type" +msgstr "Especifique el tipo de producto" + +#: ../../include/class/CredentialStore.class.php:571 +msgid "You must specify a username and/or password" +msgstr "Especifique el nombre de usuario y/o la contraseña" + +#: ../../include/class/CredentialStore.class.php:672 +msgid "identifier cannot be empty" +msgstr "El identificador no puede estar vacío" + +#: ../../include/class/CredentialStore.class.php:677 +msgid "Not allowed" +msgstr "No permitido" + +#: ../../include/class/CredentialStore.class.php:716 +msgid "How to configure encryption." +msgstr "Como configurar el cifrado." + +#: ../../include/class/CredentialStore.class.php:715 +#, php-format msgid "" -"If something is not working as expected, look for this icon and report!" +"Database encryption is not enabled. Credentials will be stored in plaintext. " +"%s" msgstr "" -"Si algo no funciona como debería, !busque este icono e informe del problema¡" +"El cifrado de la base de datos no está disponible. Los credenciales se " +"guardarán en texto sin formato. %s" -#: ../../include/class/OrderInterpreter.class.php:105 -#: ../../enterprise/meta/monitoring/tactical.php:40 -msgid "Tactical View" -msgstr "Vista táctica" +#: ../../include/class/CredentialStore.class.php:734 +#: ../../include/class/CredentialStore.class.php:861 +msgid "Product" +msgstr "Producto" + +#: ../../include/class/CredentialStore.class.php:800 +msgid "Add key" +msgstr "Añadir clave" + +#: ../../include/class/CredentialStore.class.php:884 +msgid "Extra (2)" +msgstr "Extra (2)" + +#: ../../include/class/CredentialStore.class.php:891 +#: ../../include/class/CredentialStore.class.php:1035 +msgid "Access key ID" +msgstr "ID de la clave de accso" + +#: ../../include/class/CredentialStore.class.php:892 +#: ../../include/class/CredentialStore.class.php:1036 +msgid "Secret access key" +msgstr "Clave de acceso secreta" + +#: ../../include/class/CredentialStore.class.php:898 +#: ../../include/class/CredentialStore.class.php:908 +msgid "Account ID" +msgstr "ID de la cuenta" + +#: ../../include/class/CredentialStore.class.php:899 +#: ../../include/class/CredentialStore.class.php:1041 +msgid "Application secret" +msgstr "Secretos de aplicación" + +#: ../../include/class/CredentialStore.class.php:900 +#: ../../include/class/CredentialStore.class.php:1042 +msgid "Tenant or domain name" +msgstr "Propietario o nombre del dominio" + +#: ../../include/class/CredentialStore.class.php:901 +#: ../../include/class/CredentialStore.class.php:1043 +msgid "Subscription id" +msgstr "ID de la suscripción" + +#: ../../include/class/CredentialStore.class.php:1040 +msgid "Client ID" +msgstr "ID de cliente" + +#: ../../include/class/CredentialStore.class.php:1047 +msgid "Account ID." +msgstr "ID de la cuenta" + +#: ../../include/class/CredentialStore.class.php:1116 +msgid "Register new key into keystore" +msgstr "Registrar una clave nueva en el repositorio de claves" + +#: ../../include/class/CredentialStore.class.php:1120 +msgid "Update key" +msgstr "Actualizar clave" #: ../../include/class/OrderInterpreter.class.php:123 msgid "Agent Management" @@ -25392,4068 +42302,1149 @@ msgstr "Resultados encontrados" msgid "No results found" msgstr "No se han encontrado resultados" -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:220 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:222 -#: ../../include/functions_visual_map.php:1845 -#: ../../include/functions_visual_map.php:1847 -msgid "Last value: " -msgstr "Último valor: " +#: ../../include/class/CustomNetScan.class.php:368 +#: ../../include/class/CustomNetScan.class.php:393 +msgid "NetScan Custom" +msgstr "Personalización NetScan" -#: ../../include/functions.php:231 -#: ../../enterprise/include/functions_reporting_csv.php:2029 -msgid "." -msgstr "." +#: ../../include/class/CustomNetScan.class.php:609 +msgid "Recon script" +msgstr "Recon script" -#: ../../include/functions.php:233 -msgid "," -msgstr "," +#: ../../include/class/CustomNetScan.class.php:650 +msgid "Explanation" +msgstr "Explicación" -#: ../../include/functions.php:498 ../../include/functions.php:638 -msgid "s" -msgstr "s" +#: ../../include/class/CustomNetScan.class.php:666 +msgid "macro_desc" +msgstr "macro_desc" -#: ../../include/functions.php:499 ../../include/functions.php:639 -msgid "d" -msgstr "d" - -#: ../../include/functions.php:500 ../../include/functions.php:640 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:501 ../../include/functions.php:641 -msgid "Y" -msgstr "Y" - -#: ../../include/functions.php:502 ../../include/functions.php:642 -msgid "m" -msgstr "m" - -#: ../../include/functions.php:503 ../../include/functions.php:643 -msgid "h" -msgstr "h" - -#: ../../include/functions.php:504 ../../include/functions.php:644 -msgid "N" -msgstr "N" - -#: ../../include/functions.php:1021 ../../include/functions.php:1266 -#: ../../include/functions.php:1300 ../../include/functions_events.php:3083 -#: ../../include/functions_events.php.orig:2989 -#: ../../include/functions_graph.php:2880 -#: ../../include/functions_graph.php:3462 -#: ../../include/functions_graph.php:3463 -#: ../../include/functions_graph.php:4871 -#: ../../include/functions_incidents.php:34 -#: ../../include/functions_incidents.php:75 -msgid "Maintenance" -msgstr "Mantenimiento" - -#: ../../include/functions.php:1025 ../../include/functions.php:1267 -#: ../../include/functions.php:1304 ../../include/functions_events.php:3087 -#: ../../include/functions_events.php.orig:2993 -#: ../../include/functions_graph.php:3467 -#: ../../include/functions_graph.php:3468 -#: ../../include/functions_graph.php:4875 -msgid "Informational" -msgstr "Informativo" - -#: ../../include/functions.php:1041 ../../include/functions.php:1269 -#: ../../include/functions.php:1320 ../../include/functions_graph.php:3477 -#: ../../include/functions_graph.php:3478 -#: ../../include/functions_graph.php:4891 -msgid "Minor" -msgstr "Menor" - -#: ../../include/functions.php:1045 ../../include/functions.php:1271 -#: ../../include/functions.php:1324 ../../include/functions_graph.php:3487 -#: ../../include/functions_graph.php:3488 -#: ../../include/functions_graph.php:4895 -msgid "Major" -msgstr "Principal" - -#: ../../include/functions.php:1220 ../../include/functions_events.php:3007 -#: ../../include/functions_events.php.orig:2913 -msgid "Monitor Critical" -msgstr "Monitor en estado crítico" - -#: ../../include/functions.php:1221 ../../include/functions_events.php:3011 -#: ../../include/functions_events.php.orig:2917 -msgid "Monitor Warning" -msgstr "Monitor en estado de advertencia" - -#: ../../include/functions.php:1222 ../../include/functions_events.php:3015 -#: ../../include/functions_events.php.orig:2921 -msgid "Monitor Normal" -msgstr "Monitor en estado normal" - -#: ../../include/functions.php:1224 -msgid "Monitor Unknown" -msgstr "Monitor en estado desconocido" - -#: ../../include/functions.php:1227 ../../include/functions_events.php:2641 -#: ../../include/functions_events.php:3023 -#: ../../include/functions_events.php.orig:2547 -#: ../../include/functions_events.php.orig:2929 -msgid "Alert recovered" -msgstr "Alerta recuperada" - -#: ../../include/functions.php:1228 ../../include/functions_events.php:2689 -#: ../../include/functions_events.php:3027 -#: ../../include/functions_events.php.orig:2595 -#: ../../include/functions_events.php.orig:2933 -msgid "Alert ceased" -msgstr "Alerta finalizada" - -#: ../../include/functions.php:1229 ../../include/functions_events.php:3031 -#: ../../include/functions_events.php.orig:2937 -msgid "Alert manual validation" -msgstr "Validación manual de alerta" - -#: ../../include/functions.php:1231 -msgid "Agent created" -msgstr "Agente creado" - -#: ../../include/functions.php:1232 ../../include/functions_events.php:3035 -#: ../../include/functions_events.php.orig:2941 -msgid "Recon host detected" -msgstr "Equipo de red detectado con recon" - -#: ../../include/functions.php:1235 ../../include/functions_events.php:2685 -#: ../../include/functions_events.php:3047 -#: ../../include/functions_events.php.orig:2591 -#: ../../include/functions_events.php.orig:2953 -msgid "Configuration change" -msgstr "Cambio de configuración" - -#: ../../include/functions.php:2530 +#: ../../include/class/ModuleTemplates.class.php:348 #, php-format -msgid "%s seconds" -msgstr "%s segundos" +msgid "Template %s successfully updated" +msgstr "Plantilla %s actualizada con éxito" -#: ../../include/functions.php:2533 ../../include/functions.php:2534 +#: ../../include/class/ModuleTemplates.class.php:390 #, php-format -msgid "%s minutes" -msgstr "%s minutos" +msgid "Template %s successfully created" +msgstr "Plantilla %s creada con éxito" -#: ../../include/functions.php:2542 ../../include/functions.php:2543 +#: ../../include/class/ModuleTemplates.class.php:392 +msgid "Error creating template" +msgstr "Error al crear plantilla" + +#: ../../include/class/ModuleTemplates.class.php:400 #, php-format -msgid "%s months" -msgstr "%s meses" +msgid "Template %s successfully deleted" +msgstr "Plantilla %s eliminada con éxito" -#: ../../include/functions.php:2545 ../../include/functions.php:2546 +#: ../../include/class/ModuleTemplates.class.php:402 #, php-format -msgid "%s years" -msgstr "%s años" +msgid "Error deleting %s template" +msgstr "Error al eliminar la plantilla %s" -#: ../../include/functions.php:2548 -msgid "Default values will be used" -msgstr "Se usarán los valores por defecto" +#: ../../include/class/ModuleTemplates.class.php:535 +msgid "Module successfully deleted" +msgstr "Módulo eliminado con éxito" -#: ../../include/functions.php:2737 -msgid "The uploaded file was only partially uploaded" -msgstr "El archivo se ha subido parcialmente." +#: ../../include/class/ModuleTemplates.class.php:537 +msgid "Error deleting module" +msgstr "Error al eliminar el módulo" -#: ../../include/functions.php:2741 -msgid "No file was uploaded" -msgstr "No se subió ningún archivo." +#: ../../include/class/ModuleTemplates.class.php:548 +msgid "Block successfully deleted" +msgstr "Bloque eliminado con éxito" -#: ../../include/functions.php:2745 -msgid "Missing a temporary folder" -msgstr "El directorio temporal no existe." +#: ../../include/class/ModuleTemplates.class.php:550 +msgid "Error deleting block" +msgstr "Error al eliminar bloque" -#: ../../include/functions.php:2749 -msgid "Failed to write file to disk" -msgstr "No se pudo escribir el archivo al disco." +#: ../../include/class/ModuleTemplates.class.php:562 +msgid "All templates deleted" +msgstr "Eliminadas todas las plantillas" -#: ../../include/functions.php:2753 -msgid "File upload stopped by extension" -msgstr "Subida de archivo cancelada por la extensión" +#: ../../include/class/ModuleTemplates.class.php:564 +msgid "Error deleting all templates" +msgstr "Error al eliminar todas las plantillas" -#: ../../include/functions.php:2757 -msgid "Unknown upload error" -msgstr "Error desconocido al subir el archivo" +#: ../../include/class/ModuleTemplates.class.php:573 +msgid "Selected templates deleted" +msgstr "Eliminadas las plantillas seleccionadas" -#: ../../include/functions.php:2868 -msgid "No data found to export" -msgstr "Datos no encontrados para exportar" +#: ../../include/class/ModuleTemplates.class.php:575 +msgid "Error deleting selected templates" +msgstr "Error al eliminar las plantillas seleccionadas" -#: ../../include/functions.php:3189 -#: ../../operation/gis_maps/render_view.php:136 -msgid "5 seconds" -msgstr "5 segundos" +#: ../../include/class/ModuleTemplates.class.php:587 +msgid "Something gone wrong. Please, try again" +msgstr "Ha habido un error. inténtelo de nuevo." -#: ../../include/functions.php:3190 -#: ../../operation/gis_maps/render_view.php:137 -msgid "10 seconds" -msgstr "10 segundos" +#: ../../include/class/ModuleTemplates.class.php:609 +msgid "Components added sucessfully" +msgstr "Componentes añadidos con éxito" -#: ../../include/functions.php:3191 -msgid "15 seconds" -msgstr "15 segundos" +#: ../../include/class/ModuleTemplates.class.php:1017 +#: ../../include/class/ModuleTemplates.class.php:1278 +msgid "Add components" +msgstr "Añadir componentes" -#: ../../include/functions.php:3192 -#: ../../operation/gis_maps/render_view.php:138 -msgid "30 seconds" -msgstr "30 segundos" +#: ../../include/class/ModuleTemplates.class.php:1069 +#: ../../include/class/ModuleTemplates.class.php:1193 +msgid "No module blocks for this profile" +msgstr "No hay bloques de módulos para este perfil" -#: ../../include/functions.php:3196 -#: ../../include/functions_notifications.php:722 -msgid "15 minutes" -msgstr "15 minutos" +#: ../../include/class/ModuleTemplates.class.php:1092 +msgid "Delete this block" +msgstr "Eliminar este bloque" -#: ../../include/functions.php:3662 -#: ../../enterprise/include/functions_dashboard.php:1020 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -msgid "Previous" -msgstr "Anterior" +#: ../../include/class/ModuleTemplates.class.php:1093 +msgid "Do you want delete this block?" +msgstr "¿Desea eliminar este bloque?" -#: ../../include/functions.php:3668 -msgid "Summatory series" -msgstr "Series sumatorias" +#: ../../include/class/ModuleTemplates.class.php:1179 +msgid "Delete this module" +msgstr "Eliminar este módulo" -#: ../../include/functions.php:3672 -msgid "Average series" -msgstr "Series de media" +#: ../../include/class/ModuleTemplates.class.php:1180 +msgid "Do you want delete this module?" +msgstr "¿Desea eliminar este módulo?" -#: ../../include/functions.php:3696 ../../include/functions.php:3697 -#: ../../include/functions.php:3705 ../../include/functions.php:3711 -#: ../../include/functions.php:3747 ../../include/functions.php:3808 -msgid "Unit " -msgstr "Unidad " +#: ../../include/class/ModuleTemplates.class.php:1371 +msgid "Do you want delete all templates?" +msgstr "¿Desea eliminar todas las plantillas?" -#: ../../include/functions.php:3718 ../../include/functions.php:3754 -msgid "Min:" -msgstr "Mín.:" +#: ../../include/class/ModuleTemplates.class.php:1374 +msgid "Do you want delete the selected templates?" +msgstr "¿Desea eliminar las plantillas seleccionadas?" -#: ../../include/functions.php:3723 ../../include/functions.php:3759 -msgid "Max:" -msgstr "Máx.:" +#: ../../include/class/ConsoleSupervisor.php:758 +msgid "Limited mode." +msgstr "Modo limitado." -#: ../../include/functions.php:3728 ../../include/functions.php:3764 -msgid "Avg:" -msgstr "Media:" +#: ../../include/class/ConsoleSupervisor.php:770 +msgid "License is about to expire" +msgstr "La licencia está a punto de caducar" -#: ../../include/functions.php:3805 ../../include/functions.php:3813 -msgid "of module" -msgstr "de módulo" +#: ../../include/class/ConsoleSupervisor.php:773 +msgid "Support is about to expire" +msgstr "El servicio de soporte está a punto de caducar" -#: ../../include/functions.php:3830 -msgid "Projection" -msgstr "Proyección" +#: ../../include/class/ConsoleSupervisor.php:791 +msgid "Expired license" +msgstr "Licencia caducada" -#: ../../include/functions_networkmap.php:1287 -#: ../../include/functions_maps.php:42 ../../operation/search_main.php:73 -#: ../../operation/search_results.php:170 ../../operation/tree.php:93 -#: ../../enterprise/dashboard/widgets/tree_view.php:44 -#: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/meta/advanced/policymanager.apply.php:198 -#: ../../enterprise/operation/agentes/ver_agente.php:218 -msgid "Policies" -msgstr "Políticas" +#: ../../include/class/ConsoleSupervisor.php:792 +msgid "Your license has expired. Please, contact our sales department." +msgstr "" +"La licencia ha caducado. Póngase en contacto con el departamento comercial." -#: ../../include/functions_networkmap.php:1291 -msgid "Radial dynamic" -msgstr "Dinámico radial" +#: ../../include/class/ConsoleSupervisor.php:794 +msgid "Support expired" +msgstr "Soporte caducado" -#: ../../include/functions_networkmap.php:1295 -#: ../../include/functions_maps.php:38 -msgid "Topology" -msgstr "Topología" - -#: ../../include/functions_networkmap.php:1313 -msgid "Create a new topology map" -msgstr "Crear nuevo mapa topológico" - -#: ../../include/functions_networkmap.php:1314 -msgid "Create a new group map" -msgstr "Crear nuevo mapa de grupo" - -#: ../../include/functions_networkmap.php:1315 -msgid "Create a new dynamic map" -msgstr "Crear un nuevo mapa dinámico" - -#: ../../include/functions_networkmap.php:1317 -msgid "Create a new radial dynamic map" -msgstr "Crear un nuevo mapa dinámico radial" - -#: ../../include/functions_networkmap.php:2032 -#: ../../include/functions_maps.php:73 -msgid "Copy of " -msgstr "Copiar de " - -#: ../../include/functions_agents.php:881 +#: ../../include/class/ConsoleSupervisor.php:795 msgid "" -"There was an error copying the agent configuration, the copy has been " -"cancelled" +"This license is outside of support. Please, contact our sales department." msgstr "" -"Hubo un error al copiar la configuración del agente, se canceló la copia." +"Esta licencia ya no cuenta con soporte. Póngase en contacto con el " +"departamento comercial." -#: ../../include/functions_agents.php:2606 -#: ../../include/functions_agents.php:2645 -#: ../../include/functions_agents.php:2684 -msgid "No Monitors" -msgstr "No hay monitores" +#: ../../include/class/ConsoleSupervisor.php:876 +msgid "Attachment directory is not writable" +msgstr "No puede escribir en el directorio de adjuntos" -#: ../../include/functions_agents.php:2614 -#: ../../include/functions_agents.php:2653 -#: ../../include/functions_agents.php:2692 -#: ../../include/functions_reporting.php:9883 -msgid "At least one module in CRITICAL status" -msgstr "Al menos un módulo está en estado CRÍTICO" - -#: ../../include/functions_agents.php:2620 -#: ../../include/functions_agents.php:2659 -#: ../../include/functions_agents.php:2700 -#: ../../include/functions_reporting.php:9890 -msgid "At least one module in WARNING status" -msgstr "Al menos un módulo está en estado de ADVERTENCIA" - -#: ../../include/functions_agents.php:2626 -#: ../../include/functions_agents.php:2665 -#: ../../include/functions_agents.php:2708 -#: ../../include/functions_reporting.php:9897 -msgid "At least one module is in UKNOWN status" -msgstr "Al menos un módulo está en estado DESCONOCIDO" - -#: ../../include/functions_agents.php:2632 -#: ../../include/functions_agents.php:2671 -#: ../../include/functions_agents.php:2716 -#: ../../include/functions_reporting.php:9904 -msgid "All Monitors OK" -msgstr "Todos los monitores OK" - -#: ../../include/functions_agents.php:3405 -#: ../../include/functions_agents.php:3459 -#: ../../include/functions_reporting_html.php:4499 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:390 -msgid "Agents ok" -msgstr "Agentes OK" - -#: ../../include/functions_agents.php:3415 -#: ../../include/functions_reporting_html.php:4490 -#: ../../mobile/operation/groups.php:143 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:364 -msgid "Agents critical" -msgstr "Agentes críticos" - -#: ../../include/functions_agents.php:3425 -#: ../../include/functions_reporting_html.php:4493 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:377 -msgid "Agents warning" -msgstr "Agentes en estado de advertencia" - -#: ../../include/functions_agents.php:3435 -#: ../../include/functions_reporting_html.php:4502 -#: ../../mobile/operation/groups.php:146 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:403 -msgid "Agents unknown" -msgstr "Agentes desconocidos" - -#: ../../include/functions_agents.php:3449 -#: ../../include/functions_reporting_html.php:4508 -#: ../../mobile/operation/groups.php:140 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:416 -msgid "Agents not init" -msgstr "Agentes no iniciados" - -#: ../../include/functions_agents.php:3552 -#: ../../enterprise/include/class/SAP.app.php:699 -msgid "SAP Login OK" -msgstr "Inicio de sesión SAP correcto" - -#: ../../include/functions_agents.php:3553 -#: ../../enterprise/include/class/SAP.app.php:700 -msgid "SAP Dumps" -msgstr "Volcados SAP" - -#: ../../include/functions_agents.php:3554 -#: ../../enterprise/include/class/SAP.app.php:701 -msgid "SAP lock entry list" -msgstr "Lista de entradas de bloqueo SAP" - -#: ../../include/functions_agents.php:3555 -#: ../../enterprise/include/class/SAP.app.php:702 -msgid "SAP canceled Jobs" -msgstr "Trabajos SAP cancelados" - -#: ../../include/functions_agents.php:3556 -#: ../../enterprise/include/class/SAP.app.php:703 -msgid "SAP Batch inputs erroneous" -msgstr "Entradas SAP en grupo erróneas" - -#: ../../include/functions_agents.php:3557 -#: ../../enterprise/include/class/SAP.app.php:704 -msgid "SAP IDOC erroneous" -msgstr "SAP IDOC erróneo" - -#: ../../include/functions_agents.php:3558 -#: ../../enterprise/include/class/SAP.app.php:705 -msgid "SAP IDOC OK" -msgstr "SAP IDOC OK" - -#: ../../include/functions_agents.php:3559 -#: ../../enterprise/include/class/SAP.app.php:706 -msgid "SAP WP without active restart" -msgstr "WP SAP sin reinicio activo" - -#: ../../include/functions_agents.php:3560 -#: ../../enterprise/include/class/SAP.app.php:707 -msgid "SAP WP stopped" -msgstr "WP SAP parado" - -#: ../../include/functions_agents.php:3561 -msgid "Average time of SAPGUI response " -msgstr "Media de tiempo de respuesta de SAPGUI " - -#: ../../include/functions_agents.php:3562 -#: ../../enterprise/include/class/SAP.app.php:709 -msgid "Dialog response time" -msgstr "Tiempo de respuesta del diálogo" - -#: ../../include/functions_agents.php:3563 -msgid "Dialog Logged users " -msgstr "Usuarios conectados en el diálogo " - -#: ../../include/functions_agents.php:3564 -#: ../../enterprise/include/class/SAP.app.php:711 -msgid "TRFC in error" -msgstr "TRFC en error" - -#: ../../include/functions_agents.php:3565 -#: ../../enterprise/include/class/SAP.app.php:712 -msgid "QRFC in error SMQ2" -msgstr "QRFC en error SMQ2" - -#: ../../include/functions_agents.php:3566 -#: ../../enterprise/include/class/SAP.app.php:713 -msgid "Number of Update WPs in error" -msgstr "Número de WPs de actualización en error" - -#: ../../include/functions_alerts.php:460 -#: ../../enterprise/include/functions_policies.php:511 -#: ../../enterprise/include/functions_policies.php:526 -msgid "copy" -msgstr "copiar" - -#: ../../include/functions_alerts.php:656 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:110 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 -msgid "Regular expression" -msgstr "Expresión regular" - -#: ../../include/functions_alerts.php:657 -msgid "Max and min" -msgstr "Máx. y mín." - -#: ../../include/functions_alerts.php:660 -msgid "Equal to" -msgstr "Igual a" - -#: ../../include/functions_alerts.php:661 -msgid "Not equal to" -msgstr "Diferente de" - -#: ../../include/functions_alerts.php:664 -#: ../../enterprise/operation/agentes/wux_console_view.php:332 -#: ../../enterprise/operation/agentes/wux_console_view.php:337 -msgid "Unknown status" -msgstr "Estado desconocido" - -#: ../../include/functions_alerts.php:665 -msgid "On Change" -msgstr "en estado de cambio" - -#: ../../include/functions_alerts.php:667 -msgid "Not normal status" -msgstr "Estado anormal" - -#: ../../include/functions_alerts.php:1135 -#: ../../include/functions_network_components.php:617 -#: ../../enterprise/include/functions_local_components.php:342 -msgid "Copy of" -msgstr "Copia de" - -#: ../../include/functions_alerts.php:1691 -msgid "No actions defined" -msgstr "No hay acciones definidas" - -#: ../../include/functions_alerts.php:2764 -msgid "Alert and command group does not match" -msgstr "El grupo de la alerta y del comando no coinciden" - -#: ../../include/functions_api.php:93 -msgid "No set or get or help operation." -msgstr "Sin acceso a operaciones de tipo SET, GET o HELP" - -#: ../../include/functions_api.php:103 -msgid "This operation does not exist." -msgstr "Esta operación no existe." - -#: ../../include/functions_api.php:113 -msgid "Id does not exist in BD." -msgstr "ID no existe en la BD" - -#: ../../include/functions_api.php:123 -msgid "This operation can not be used in cluster elements." -msgstr "Esta operación no es posible en elementos de un cluster." - -#: ../../include/functions_api.php:133 -msgid "The user has not enough permission to make this action." -msgstr "El usuario no tiene permisos para realizar esta acción." - -#: ../../include/functions_api.php:143 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 -msgid "No data to show." -msgstr "No hay datos." - -#: ../../include/functions_api.php:153 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:309 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 -#: ../../enterprise/godmode/agentes/collections.php:57 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:18 -#: ../../enterprise/include/functions_enterprise_api.php:3044 -#: ../../enterprise/include/functions_enterprise_api.php:5648 -msgid "" -"This console is not manager of this environment, please manage this feature " -"from centralized manager console (Metaconsole)." -msgstr "" -"La consola no administra este entorno, gestione esta funcionalidad desde el " -"administrador centralizado de la consola (Metaconsola)." - -#: ../../include/functions_api.php:1078 -msgid "Does not exist agent with this name." -msgstr "No existe un agente con este nombre." - -#: ../../include/functions_api.php:1088 -msgid "Does not exist module with this name." -msgstr "No existen módulos con este nombre." - -#: ../../include/functions_api.php:1153 -msgid "Does not exist the pair alias/module required." -msgstr "El conjunto alias/module requerido no existe." - -#: ../../include/functions_api.php:1352 -msgid "The agent parent don`t exist." -msgstr "El agente padre no existe." - -#: ../../include/functions_api.php:1357 -msgid "The user cannot access to parent agent." -msgstr "El usuario no puede acceder al agente padre." - -#: ../../include/functions_api.php:1643 -msgid "Could not be created for unknown reason" -msgstr "No se ha podido crear por razones desconocidas" - -#: ../../include/functions_api.php:1686 -msgid "Error creating OS" -msgstr "Error al crear el SO" - -#: ../../include/functions_api.php:1715 -msgid "Success updating OS" -msgstr "SO creado correctamente" - -#: ../../include/functions_api.php:1898 ../../include/functions_api.php:8239 -#: ../../include/functions_api.php:13996 -msgid "Correct Delete" -msgstr "Borrado correctamente" - -#: ../../include/functions_api.php:3115 -msgid "" -"Error in creation network module. Id_module_type is not correct for network " -"modules." -msgstr "" -"Error al crear el módulo de red. Id_module_type no es correcto para los " -"módulos de red." - -#: ../../include/functions_api.php:3194 -msgid "Error in creation network module." -msgstr "Error al crear el módulo de red" - -#: ../../include/functions_api.php:3227 -msgid "Error updating network module. Module name cannot be left blank." -msgstr "" -"Error al actualizar el módulo de red. El nombre del módulo no puede dejarse " -"en blanco." - -#: ../../include/functions_api.php:3246 -msgid "Error updating network module. Id_module doesn't exist." -msgstr "Error al actualizar el módulo de red. El Id_modulo no existe." - -#: ../../include/functions_api.php:3272 -msgid "Error updating network module. Id_module exists in the new agent." -msgstr "" -"Error al actualizar el módulo de red. El id_module existe en el nuevo agente." - -#: ../../include/functions_api.php:3330 -msgid "Network module updated." -msgstr "Módulo de red actualizado" - -#: ../../include/functions_api.php:3360 -msgid "Error in creation plugin module. Id_plugin cannot be left blank." -msgstr "" -"Error al crear el módulo plugin. Id_plugin no puede dejarse en blanco." - -#: ../../include/functions_api.php:3461 -msgid "Error in creation plugin module." -msgstr "Error al crear el módulo plugin" - -#: ../../include/functions_api.php:3493 -msgid "Error updating plugin module. Id_module cannot be left blank." -msgstr "" -"Error al actualizar el módulo del plugin. Id_module no se puede dejar en " -"blanco." - -#: ../../include/functions_api.php:3518 -msgid "Error updating plugin module. Id_module exists in the new agent." -msgstr "" -"Error al actualizar el módulo plugin. Id_module existe en el nuevo agente." - -#: ../../include/functions_api.php:3526 -msgid "Error updating plugin module. Id_agent doesn't exist." -msgstr "Error al actualizar el módulo plugin. El ID de agente no existe." - -#: ../../include/functions_api.php:3590 -msgid "Plugin module updated." -msgstr "Módulo de plugin actualizado" - -#: ../../include/functions_api.php:3620 -msgid "Error in creation data module. Module_name cannot be left blank." -msgstr "" -"Error al crear los datos del módulo. Module_name no puede dejarse en blanco." - -#: ../../include/functions_api.php:3712 ../../include/functions_api.php:3803 -#: ../../include/functions_api.php:3956 -msgid "Error in creation data module." -msgstr "Error al crear datos del módulo" - -#: ../../include/functions_api.php:3744 -msgid "Error in creation synthetic module. Module_name cannot be left blank." -msgstr "" -"Error al crear un módulo sintético. El nombre del módulo no puede estar " -"vacío." - -#: ../../include/functions_api.php:3767 ../../include/functions_api.php:3773 -msgid "Error in creation synthetic module. Agent name doesn't exist." -msgstr "Error al crear un módulo sintético. El nombre del agente no existe." - -#: ../../include/functions_api.php:3946 ../../include/functions_api.php:4099 -msgid "Synthetic module created ID: " -msgstr "ID del módulo sintético creado: " - -#: ../../include/functions_api.php:4132 -msgid "Error updating data module. Id_module cannot be left blank." -msgstr "" -"Error al actualizar los datos del módulo. Id_module no se puede dejar en " -"blanco." - -#: ../../include/functions_api.php:4157 -msgid "Error updating data module. Id_module exists in the new agent." -msgstr "" -"Error al actualizar los datos del módulo. Id_module existe en el nuevo " -"agente." - -#: ../../include/functions_api.php:4165 -msgid "Error updating data module. Id_agent doesn't exist." -msgstr "Error al actualizar los datos del módulo. El ID de agente no existe." - -#: ../../include/functions_api.php:4216 -msgid "Data module updated." -msgstr "Datos del módulo actualizado" - -#: ../../include/functions_api.php:4252 -msgid "Error in creation SNMP module. Module_name cannot be left blank." -msgstr "" -"Error al crear el módulo SNMP. Id_module no se puede dejar en blanco." - -#: ../../include/functions_api.php:4257 -msgid "" -"Error in creation SNMP module. Invalid id_module_type for a SNMP module." -msgstr "Error al crear el módulo SNMP. Id_module_type" - -#: ../../include/functions_api.php:4288 ../../include/functions_api.php:4479 -#: ../../include/functions_api.php:7675 -msgid "" -"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"Error al crear módulo SNMP. El método snmp3_priv_method no existe. Cambia a " -"'AES' o 'DES'. " - -#: ../../include/functions_api.php:4293 ../../include/functions_api.php:4490 -#: ../../include/functions_api.php:7680 -msgid "" -"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Error al crear módulo SNMP. snmp3_sec_level no existe. Cambia a 'authNoPriv' " -"o 'authPriv' o 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:4298 ../../include/functions_api.php:4498 -#: ../../include/functions_api.php:7685 -msgid "" -"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"Error al crear módulo SNMP. snmp3_auth_method no existe. Cambia a 'MD5' o " -"'SHA'. " - -#: ../../include/functions_api.php:4402 -msgid "Error in creation SNMP module." -msgstr "Error al crear módulo SNMP" - -#: ../../include/functions_api.php:4436 -msgid "Error updating SNMP module. Id_module cannot be left blank." -msgstr "" -"Error al actualizar el módulo SNMP. Id_module no se puede dejar en blanco." - -#: ../../include/functions_api.php:4461 -msgid "Error updating SNMP module. Id_module exists in the new agent." -msgstr "" -"Error al actualizar el módulo SNMP. Id_module existe en el nuevo agente" - -#: ../../include/functions_api.php:4469 -msgid "Error updating snmp module. Id_agent doesn't exist." -msgstr "Error al actualizar el módulo SNMP. El ID de agente no existe." - -#: ../../include/functions_api.php:4590 -msgid "SNMP module updated." -msgstr "Módulo SNMP actualizado" - -#: ../../include/functions_api.php:4626 -msgid "" -"Error creating network component. Network component name cannot be left " -"blank." -msgstr "" -"Error al crear el componente de red. El nombre del componente de red no " -"puede dejarse en blanco." - -#: ../../include/functions_api.php:4631 -msgid "" -"Error creating network component. Incorrect value for Network component type " -"field." -msgstr "" -"Error al crear componente de red. Valor incorrecto para el campo de tipo de " -"componente de red." - -#: ../../include/functions_api.php:4636 -msgid "" -"Error creating network component. Network component group cannot be left " -"blank." -msgstr "" -"Error al crear componente de red. El grupo del componente de red no puede " -"estar vacío." - -#: ../../include/functions_api.php:4674 -msgid "" -"Error creating network component. This network component already exists." -msgstr "Error al crear componente de red. El componente de red ya existe." - -#: ../../include/functions_api.php:4722 -msgid "" -"Error creating plugin component. Plugin component name cannot be left blank." -msgstr "" -"Error al crear componente plugin. El nombre del componente plugin no puede " -"estar en blanco." - -#: ../../include/functions_api.php:4728 -msgid "Error creating plugin component. Incorrect value for Id plugin." -msgstr "" -"Error al crear componente plugin. Valor incorrecto para el ID del plugin." - -#: ../../include/functions_api.php:4733 -msgid "" -"Error creating plugin component. Plugin component group cannot be left blank." -msgstr "" -"Error al crear componente plugin. El grupo del componente plugin no puede " -"estar en blanco." - -#: ../../include/functions_api.php:4775 -msgid "" -"Error creating plugin component. This plugin component already exists." -msgstr "Error al crear componente plugin. El componente plugin ya existe." - -#: ../../include/functions_api.php:4817 -msgid "" -"Error creating SNMP component. SNMP component name cannot be left blank." -msgstr "" -"Error al crear componente SNMP. El nombre del componente SNMP no puede estar " -"en blanco." - -#: ../../include/functions_api.php:4827 -msgid "" -"Error creating SNMP component. Incorrect value for Snmp component type field." -msgstr "" -"Error al crear componente SNMP. Valor incorrecto para el tipo de campo del " -"componente SNMP." - -#: ../../include/functions_api.php:4832 -msgid "" -"Error creating SNMP component. Snmp component group cannot be left blank." -msgstr "" -"Error al crear componente SNMP. El grupo del componente SNMP no puede estar " -"en blanco." - -#: ../../include/functions_api.php:4843 -msgid "" -"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"Error al crear componente SNMP. snmp3_priv_method no existe. Cambia a 'AES' " -"o 'DES'. " - -#: ../../include/functions_api.php:4853 -msgid "" -"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Error al crear componente SNMP. snmp3_sec_level no existe. Cambia a " -"'authNoPriv' o 'authPriv' o 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:4861 -msgid "" -"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"Error al crear componente SNMP. snmp3_auth_method no existe. Cambia a 'MD5' " -"o 'SHA'. " - -#: ../../include/functions_api.php:4944 -msgid "Error creating SNMP component. This SNMP component already exists." -msgstr "Error al crear componente SNMP. El componente SNMP ya existe." - -#: ../../include/functions_api.php:4986 -msgid "" -"Error creating local component. Local component name cannot be left blank." -msgstr "" -"Error al crear componente local. El nombre del componente local no puede " -"estar en blanco." - -#: ../../include/functions_api.php:4999 -msgid "" -"Error creating local component. Local component group cannot be left blank." -msgstr "" -"Error al crear el componente local. El grupo del componente local no puede " -"estar en blanco." - -#: ../../include/functions_api.php:5032 -msgid "Error creating local component." -msgstr "Error al crear el componente local" - -#: ../../include/functions_api.php:5040 -msgid "Error creating local component. This local component already exists." -msgstr "Error al crear el componente local. El componente local ya existe." - -#: ../../include/functions_api.php:5085 -msgid "" -"Error getting module value from all agents. Module name cannot be left blank." -msgstr "" -"Error al obtener el valor del módulo para todos los agentes. El nombre del " -"módulo no puede estar en blanco." - -#: ../../include/functions_api.php:5095 -msgid "" -"Error getting module value from all agents. Module name doesn't exist." -msgstr "" -"Error al obtener el valor del módulo para todos los agentes. El nombre del " -"módulo no existe." - -#: ../../include/functions_api.php:5158 -msgid "Error creating alert template. Template name cannot be left blank." -msgstr "" -"Error al crear la plantilla de alerta. El nombre de plantilla no puede estar " -"en blanco." - -#: ../../include/functions_api.php:5230 -msgid "Error creating alert template." -msgstr "Error al crear plantilla de alerta" - -#: ../../include/functions_api.php:5270 -msgid "Error updating alert template. Id_template cannot be left blank." -msgstr "" -"Error al actualizar plantilla de alerta. Id_template no puede estar en " -"blanco." - -#: ../../include/functions_api.php:5280 -msgid "Error updating alert template. Id_template doesn't exist." -msgstr "Error al actualizar plantilla de alerta. Id_template no existe." - -#: ../../include/functions_api.php:5331 -msgid "Error updating alert template." -msgstr "Error al actualizar plantilla de alerta" - -#: ../../include/functions_api.php:5338 -msgid "Correct updating of alert template" -msgstr "Plantilla de alerta actualizada correctamente" - -#: ../../include/functions_api.php:5367 -msgid "Error deleting alert template. Id_template cannot be left blank." -msgstr "" -"Error al borrar plantilla de alerta. Id_template no puede dejarse en blanco." - -#: ../../include/functions_api.php:5378 -msgid "Error deleting alert template." -msgstr "Error al borrar plantilla de alerta" - -#: ../../include/functions_api.php:5385 -msgid "Correct deleting of alert template." -msgstr "Plantilla de alerta borrada correctamente" - -#: ../../include/functions_api.php:5436 -msgid "Error getting all alert templates." -msgstr "Error al obtener todas las plantillas de alerta" - -#: ../../include/functions_api.php:5481 -msgid "Error getting all alert commands." -msgstr "Error al obtener todos los comandos de alertas." - -#: ../../include/functions_api.php:5516 -msgid "Error getting alert template. Id_template doesn't exist." -msgstr "Error al obtener plantilla de alerta. Id_template no existe." - -#: ../../include/functions_api.php:5544 -msgid "Error getting alert template." -msgstr "Error al obtener plantilla de alerta" - -#: ../../include/functions_api.php:5608 -#: ../../enterprise/include/functions_enterprise_api.php:2369 -msgid "Error getting alert actions." -msgstr "Error al obtener acciones de alertas." - -#: ../../include/functions_api.php:5658 -msgid "Error getting module groups." -msgstr "Error al obtener grupos de módulo" - -#: ../../include/functions_api.php:5722 -msgid "Error getting plugins." -msgstr "Error al obtener plugins" - -#: ../../include/functions_api.php:5770 ../../include/functions_api.php:5776 -msgid "Error creating module from network component. Agent doesn't exist." -msgstr "" -"Error al crear módulo desde el componente de red. El agente no existe." - -#: ../../include/functions_api.php:5784 -msgid "" -"Error creating module from network component. Network component doesn't " -"exist." -msgstr "" -"Error al crear el módulo desde un componente de red. El componente de red no " -"existe." - -#: ../../include/functions_api.php:5810 ../../include/functions_api.php:11285 -#: ../../include/functions_api.php:11351 ../../include/functions_api.php:11632 -#: ../../include/functions_api.php:11713 +#: ../../include/class/ConsoleSupervisor.php:878 #, php-format -msgid "%d agents affected" -msgstr "%d agentes afectados" - -#: ../../include/functions_api.php:5816 -msgid "Error creating module from network component. Error creating module." -msgstr "Error al crear módulo desde componente de red" - -#: ../../include/functions_api.php:5847 -msgid "Error assigning module to template. Id_template cannot be left blank." -msgstr "" -"Error al asignar módulo a plantilla. Id_template no puede estar en blanco." - -#: ../../include/functions_api.php:5855 -msgid "Error assigning module to template. Id_module cannot be left blank." -msgstr "" -"Error al asignar módulo a plantilla. Id_module no puede estar en blanco." - -#: ../../include/functions_api.php:5863 -msgid "Error assigning module to template. Id_agent cannot be left blank." -msgstr "" -"Error al asignar módulo a plantilla. Id_agent no puede estar en blanco." - -#: ../../include/functions_api.php:5880 -msgid "Error assigning module to template. Id_template doensn't exists." -msgstr "Error al asignar módulo a plantilla. Id_template no existe." - -#: ../../include/functions_api.php:5888 -msgid "Error assigning module to template. Id_agent doesn't exist." -msgstr "Error al asignar módulo a plantilla. Id_agent no existe." - -#: ../../include/functions_api.php:5895 -msgid "Error assigning module to template. Id_module doesn't exist." -msgstr "Error al asignar módulo a plantilla. Id_module no existe." - -#: ../../include/functions_api.php:5903 -msgid "Error assigning module to template." -msgstr "Error al asignar módulo a plantilla" - -#: ../../include/functions_api.php:5937 msgid "" -"Error deleting module template. Id_module_template cannot be left blank." +"Directory %s is not writable. Please, configure corresponding permissions." msgstr "" -"Error al borrar módulo de plantilla. Id_module_template no puede estar en " -"blanco." +"No se ha podido escribir en el directorio de %s. Configure los permisos " +"pertinentes." -#: ../../include/functions_api.php:5944 -msgid "Error deleting module template. Id_module_template doesn't exist." -msgstr "Error al borrar módulo de plantilla. Id_module_template no existe." +#: ../../include/class/ConsoleSupervisor.php:898 +msgid "There are too many files in attachment directory" +msgstr "Ha superado el límite de archivos en el directorio de adjuntos" -#: ../../include/functions_api.php:5952 ../../include/functions_api.php:6060 -msgid "Error deleting module template." -msgstr "Error al borrar módulo de plantilla" - -#: ../../include/functions_api.php:5954 ../../include/functions_api.php:6062 -msgid "Correct deleting of module template." -msgstr "Plantilla de módulo borrada correctamente" - -#: ../../include/functions_api.php:6042 +#: ../../include/class/ConsoleSupervisor.php:900 #, php-format -msgid "Module template has been deleted in %d agents." -msgstr "La plantilla de módulo se ha borrado en %d agentes." +msgid "" +"There are more than %d files in attachment, consider cleaning up attachment " +"directory manually." +msgstr "" +"Hay más de %d archivos en adjuntos, vacíe el directorio de adjuntos " +"manualmente." -#: ../../include/functions_api.php:6135 -msgid "Error validate all alerts. Failed " -msgstr "Error al validar todas las alertas " +#: ../../include/class/ConsoleSupervisor.php:932 +msgid "Remote configuration directory is not readable" +msgstr "No se ha podido leer el directorio de configuración remota" -#: ../../include/functions_api.php:6137 +#: ../../include/class/ConsoleSupervisor.php:934 #, php-format -msgid "Correct validating of all alerts (total %d)." -msgstr "Se han validado correctamente todas las alertas (total %d)" - -#: ../../include/functions_api.php:6172 -msgid "Error validating all alert policies." -msgstr "Error al validar todas las alertas de políticas" - -#: ../../include/functions_api.php:6229 -msgid "Error validate all policy alerts. Failed " -msgstr "Error validar todas las alertas de políticas " - -#: ../../include/functions_api.php:6231 -msgid "Correct validating of all policy alerts." -msgstr "Todas las alertas de políticas se validaron correctamente" - -#: ../../include/functions_api.php:6263 -msgid "Error stopping downtime. Id_downtime cannot be left blank." -msgstr "" -"Error al parar el tiempo de inactividad. Id_downtime no puede estar en " -"blanco." - -#: ../../include/functions_api.php:6274 -msgid "No action has been taken." -msgstr "No se ha realizado ninguna acción." - -#: ../../include/functions_api.php:6276 -msgid "Error stopping downtime." -msgstr "Error al detener la parada." - -#: ../../include/functions_api.php:6278 -msgid "Downtime stopped." -msgstr "Tiempo de inactividad interrumpido" - -#: ../../include/functions_api.php:6405 -msgid "Error set tag." -msgstr "Error al asignar etiqueta." - -#: ../../include/functions_api.php:6467 -msgid "No planned downtime retrieved" -msgstr "No se han obtenido paradas planificadas" - -#: ../../include/functions_api.php:6754 -msgid "and this modules are doesn't exists or not applicable a this agents: " -msgstr "y este módulo no existe o no es aplicable a estos agentes: " - -#: ../../include/functions_api.php:6758 -msgid "and this agents are generate problems: " -msgstr "y estos agentes generan problemas: " - -#: ../../include/functions_api.php:6762 -msgid "and this agents with ids are doesn't exists: " -msgstr "y estos agentes con los identificadores no existen: " - -#: ../../include/functions_api.php:6802 -msgid "Error adding data module to policy. Id_policy cannot be left blank." -msgstr "" -"Error al añadir los datos de módulo a la política. Id_policy no puede estar " -"en blanco." - -#: ../../include/functions_api.php:6812 -msgid "Error adding data module to policy. Module_name cannot be left blank." -msgstr "" -"Error al añadir los datos de módulo a la política. Module_name no puede " -"estar en blanco." - -#: ../../include/functions_api.php:6820 -msgid "Error adding data module to policy." -msgstr "Error al añadir los datos de módulo a la política" - -#: ../../include/functions_api.php:6858 msgid "" -"Error adding data module to policy. The module is already in the policy." +"Remote configuration directory %s is not readable. Please, adjust " +"configuration." msgstr "" -"Error al añadir los datos de módulo a la política. El módulo ya existe en la " -"política." +"No se ha podido leer el directorio de configuración remota de %s. Modifique " +"la configuración." -#: ../../include/functions_api.php:6910 -msgid "Error updating data module in policy. Id_policy cannot be left blank." -msgstr "" -"Error al actualizar los datos del módulo en la política. Id_policy no puede " -"estar en blanco." +#: ../../include/class/ConsoleSupervisor.php:951 +msgid "Remote configuration directory is not writable" +msgstr "No se ha podido escribir en el directorio de configuración remota" -#: ../../include/functions_api.php:6919 -msgid "" -"Error updating data module in policy. Id_policy_module cannot be left blank." -msgstr "" -"Error al actualizar datos del módulo en la política. Id_policy_module no " -"puede estar en blanco." - -#: ../../include/functions_api.php:6927 -msgid "Error updating data module in policy. Module doesn't exist." -msgstr "" -"Error al actualizar datos de módulo en la política. El módulo no existe." - -#: ../../include/functions_api.php:6934 -msgid "" -"Error updating data module in policy. Module type is not network type." -msgstr "" -"Error al actualizar datos de módulo en política. El tipo de módulo no es de " -"red." - -#: ../../include/functions_api.php:6984 -msgid "Data policy module updated." -msgstr "Política de módulo de datos actualizado" - -#: ../../include/functions_api.php:7019 -msgid "" -"Error adding network module to policy. Id_policy cannot be left blank." -msgstr "" -"Error al añadir módulos de red a la política. Id_policy no puede estar en " -"blanco." - -#: ../../include/functions_api.php:7032 -msgid "" -"Error adding network module to policy. Module_name cannot be left blank." -msgstr "" -"Error al añadir módulos de red a la política. Module_name no puede estar en " -"blanco." - -#: ../../include/functions_api.php:7040 -msgid "" -"Error adding network module to policy. Id_module_type is not correct for " -"network modules." -msgstr "" -"Error al añadir módulos de red a la política. Id_module_type no es correcto " -"para módulos de red." - -#: ../../include/functions_api.php:7058 -msgid "Error adding network module to policy." -msgstr "Error al añadir módulos de red a la política" - -#: ../../include/functions_api.php:7098 -msgid "" -"Error adding network module to policy. The module is already in the policy." -msgstr "" -"Error al añadir módulos de red a la política. El módulo ya existe en la " -"política." - -#: ../../include/functions_api.php:7140 -msgid "" -"Error updating network module in policy. Id_policy cannot be left blank." -msgstr "" -"Error al actualizar módulo de red en la política. Id_policy no puede estar " -"en blanco." - -#: ../../include/functions_api.php:7148 -msgid "" -"Error updating network module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" -"Error al actualizar módulo de red en la política. Id_policy_module no puede " -"estar en blanco." - -#: ../../include/functions_api.php:7159 -msgid "Error updating network module in policy. Module doesn't exist." -msgstr "" -"Error al actualizar el módulo de red en la política. El módulo no existe." - -#: ../../include/functions_api.php:7167 -msgid "" -"Error updating network module in policy. Module type is not network type." -msgstr "" -"Error al actualizar módulo de red en la política. El tipo de módulo no es de " -"red." - -#: ../../include/functions_api.php:7211 -msgid "Network policy module updated." -msgstr "Módulo de red de la política actualizado" - -#: ../../include/functions_api.php:7241 -msgid "Error adding plugin module to policy. Id_policy cannot be left blank." -msgstr "" -"Error al añadir módulo de plugin a la política. Id_policy no puede estar en " -"blanco." - -#: ../../include/functions_api.php:7251 -msgid "" -"Error adding plugin module to policy. Module_name cannot be left blank." -msgstr "" -"Error al añadir módulo de plugin a la política. Module_name no puede estar " -"en blanco." - -#: ../../include/functions_api.php:7256 -msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." -msgstr "" -"Error al añadir módulo de plugin a la política. Id_plugin no puede estar en " -"blanco." - -#: ../../include/functions_api.php:7264 -msgid "Error adding plugin module to policy." -msgstr "Error al añadir módulo de plugin a la política" - -#: ../../include/functions_api.php:7308 -msgid "" -"Error adding plugin module to policy. The module is already in the policy." -msgstr "" -"Error al añadir el módulo de plugin a la política. El módulo ya existe en la " -"política." - -#: ../../include/functions_api.php:7351 -msgid "" -"Error updating plugin module in policy. Id_policy cannot be left blank." -msgstr "" -"Error al actualizar el módulo de plugin en la política. Id_policy no puede " -"estar en blanco." - -#: ../../include/functions_api.php:7359 -msgid "" -"Error updating plugin module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" -"Error al actualizar módulo de plugin en la política. Id_policy_module no " -"puede estar en blanco." - -#: ../../include/functions_api.php:7370 -msgid "Error updating plugin module in policy. Module doesn't exist." -msgstr "" -"Error al actualizar módulo de plugin en la política. El módulo no existe." - -#: ../../include/functions_api.php:7378 -msgid "" -"Error updating plugin module in policy. Module type is not network type." -msgstr "" -"Error al actualizar módulo de plugin en la política. El tipo de módulo no es " -"de tipo red." - -#: ../../include/functions_api.php:7438 -msgid "Plugin policy module updated." -msgstr "Módulo de plugin de la política actualizado" - -#: ../../include/functions_api.php:7524 +#: ../../include/class/ConsoleSupervisor.php:953 #, php-format -msgid "Remote config of module %s not available" -msgstr "La configuración remota de los módulos %s no está disponible" - -#: ../../include/functions_api.php:7641 -msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -msgstr "" -"Error al añadir módulo SNMP a la política. Id_policy no puede estar en " -"blanco." - -#: ../../include/functions_api.php:7651 -msgid "Error adding SNMP module to policy. Module_name cannot be left blank." -msgstr "" -"Error al añadir módulo SNMP a la política. Module_name no puede estar en " -"blanco." - -#: ../../include/functions_api.php:7659 -msgid "Error adding SNMP module to policy." -msgstr "Error al añadir módulo SNMP a la política" - -#: ../../include/functions_api.php:7664 msgid "" -"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " -"modules." +"Remote configuration directory %s is not writable. Please, adjust " +"configuration." msgstr "" -"Error al añadir módulo SNMP a la política. Id_module_type no es correcto " -"para módulos SNMP." +"No se ha podido escribir en el directorio de configuración remota de %s. " +"Modifique la configuración." -#: ../../include/functions_api.php:7758 +#: ../../include/class/ConsoleSupervisor.php:969 +msgid "Remote collections directory is not writable" +msgstr "No se ha podido escribir en en el directorio de colecciones remotas." + +#: ../../include/class/ConsoleSupervisor.php:971 +#, php-format msgid "" -"Error adding SNMP module to policy. The module is already in the policy." +"Collections directory %s is not writable. Please, adjust configuration." msgstr "" -"Error al añadir módulo SNMP a la política. El módulo ya existe en la " -"política." +"No se ha podido escribir en en el directorio de colecciones remotas de %s. " +"Modifique la configuración." -#: ../../include/functions_api.php:7800 -msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." +#: ../../include/class/ConsoleSupervisor.php:987 +msgid "Remote md5 directory is not writable" +msgstr "No se ha podido escribir en el directorio remoto md5" + +#: ../../include/class/ConsoleSupervisor.php:989 +#, php-format +msgid "MD5 directory %s is not writable. Please, adjust configuration." msgstr "" -"Error al actualizar módulo SNMP de la política. Id_policy no puede estar en " -"blanco." +"No se ha podido escribir en el directorio MD5 de %s. Modifique la " +"configuración." -#: ../../include/functions_api.php:7805 +#: ../../include/class/ConsoleSupervisor.php:1017 +msgid "There are too much files in spool" +msgstr "Demasiados archivos en spool" + +#: ../../include/class/ConsoleSupervisor.php:1019 +#, php-format msgid "" -"Error updating SNMP module in policy. Id_policy_module cannot be left blank." +"There are more than %d files in %s. Consider checking DataServer performance" msgstr "" -"Error al actualizar módulo SNMP de la política. Id_policy_module no puede " -"estar en blanco." +"Hay más de %d archivos en %s. Compruebe el rendimiento de DataServer." -#: ../../include/functions_api.php:7813 -msgid "Error updating SNMP module in policy. Module doesn't exist." -msgstr "Error al actualizar módulo SNMP de la política. El módulo no existe." +#: ../../include/class/ConsoleSupervisor.php:1040 +msgid "There are too many BADXML files in spool" +msgstr "Demasiados archivos BADXML en spool" -#: ../../include/functions_api.php:7818 -msgid "Error updating SNMP module in policy. Module type is not SNMP type." -msgstr "" -"Error al actualizar módulo SNMP de la política. El tipo de módulo no es SNMP." - -#: ../../include/functions_api.php:7827 +#: ../../include/class/ConsoleSupervisor.php:1042 +#, php-format msgid "" -"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " -"or 'DES'. " -msgstr "" -"Error al actualizar módulo SNMP. snmp3_priv_method no existe. Cambia a 'AES' " -"o 'DES'. " +"There are more than %d files in %s. Consider checking software agents." +msgstr "Hay más de %d archivos en %s. Compruebe los agentes software." -#: ../../include/functions_api.php:7839 +#: ../../include/class/ConsoleSupervisor.php:1123 +#, php-format +msgid "%s (%s) is lacking performance." +msgstr "%s (%s) tiene bajo rendimiento." + +#: ../../include/class/ConsoleSupervisor.php:1190 +msgid "No servers available." +msgstr "No hay servidores disponibles." + +#: ../../include/class/ConsoleSupervisor.php:1191 msgid "" -"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +"There are no servers registered in this console. Please, check installation " +"guide." msgstr "" -"Error al actualizar módulo SNMP. snmp3_sec_level no existe. Cambia a " -"'authNoPriv' o 'authPriv' o 'noAuthNoPriv'. " +"No hay servidores registrados en esta consola. Revise la guía de instalación." -#: ../../include/functions_api.php:7848 +#: ../../include/class/ConsoleSupervisor.php:1213 +#, php-format +msgid "%s (%s) has crashed." +msgstr "%s (%s) se ha caído." + +#: ../../include/class/ConsoleSupervisor.php:1219 +#, php-format +msgid "%s (%s) has crashed, please check log files." +msgstr "%s (%s) se ha caído. Compruebe los archivos de log." + +#: ../../include/class/ConsoleSupervisor.php:1226 +#, php-format +msgid "%s (%s) is not running." +msgstr "%s (%s) no está en ejecución." + +#: ../../include/class/ConsoleSupervisor.php:1231 +#, php-format msgid "" -"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " -"or 'SHA'. " +"%s (%s) is not running. Please, check configuration file or remove this " +"server from server list." msgstr "" -"Error al actualizar módulo SNMP. snmp3_auth_method no existe. Cambia a 'MD5' " -"o 'SHA'. " +"%s (%s) no está en ejecución. Compruebe el archivo de configuración o " +"elimine este servidor de la lista de servidores." -#: ../../include/functions_api.php:7934 -msgid "SNMP policy module updated." -msgstr "Módulo SNMP de la política actualizado" +#: ../../include/class/ConsoleSupervisor.php:1281 +msgid "No master servers found." +msgstr "No se han encontrado servidores maestros." -#: ../../include/functions_api.php:7955 ../../include/functions_api.php:7988 -msgid "Error deleting agent from policy. Policy cannot be left blank." -msgstr "" -"Error al eliminar el agente de la política. La política no puede estar vacía." - -#: ../../include/functions_api.php:7960 -msgid "Error deleting agent from policy. Agent cannot be left blank." -msgstr "" -"Error al eliminar el agente de la política. El agente no puede estar vacío." - -#: ../../include/functions_api.php:7966 -msgid "Error deleting agent from policy. Node ID cannot be left blank." -msgstr "" -"Error al eliminar el agente de la política. El ID del nodo no puede estar " -"vacío." - -#: ../../include/functions_api.php:7993 -#: ../../enterprise/include/functions_enterprise_api.php:2671 -msgid "Error adding agent to policy. Agent name cannot be left blank." -msgstr "" -"Error al eliminar el agente de la política. El nombre del agente no puede " -"estar vacío." - -#: ../../include/functions_api.php:8038 -msgid "Error in group creation. Group_name cannot be left blank." -msgstr "Error al crear el grupo. Group_name no puede estar en blanco." - -#: ../../include/functions_api.php:8046 -msgid "Error in group creation. Icon_name cannot be left blank." -msgstr "Error al crear el grupo. Icon_name no puede estar en blanco." - -#: ../../include/functions_api.php:8059 -msgid "Error in group creation. Id_parent_group doesn't exist." -msgstr "Error al crear grupo. Id_parent_group no existe." - -#: ../../include/functions_api.php:8088 -msgid "Error in group creation." -msgstr "Error al crear el grupo" - -#: ../../include/functions_api.php:8145 ../../include/functions_api.php:10845 -#: ../../include/functions_api.php:10898 -msgid "There is not any group with the id provided" -msgstr "No hay grupos con este ID" - -#: ../../include/functions_api.php:8275 -msgid "Error in netflow filter creation. Filter name cannot be left blank." -msgstr "" -"Error al crear el filtro Netflow. El nombre del filtro no puede estar en " -"blanco." - -#: ../../include/functions_api.php:8280 -msgid "Error in netflow filter creation. Group id cannot be left blank." -msgstr "" -"Error al crear filtro Netflow. El ID de grupo no puede estar en blanco." - -#: ../../include/functions_api.php:8286 -msgid "Error in netflow filter creation. Id_group doesn't exist." -msgstr "Error al crear el filtro de netflow. Id_grupo no existe." - -#: ../../include/functions_api.php:8297 -msgid "Error in netflow filter creation. Filter cannot be left blank." -msgstr "" -"Error al crear el filtro Netflow. El filtro no puede estar en blanco." - -#: ../../include/functions_api.php:8302 -msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." -msgstr "" -"Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." - -#: ../../include/functions_api.php:8307 -msgid "Error in netflow filter creation. Output_format cannot be left blank." -msgstr "" -"Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." - -#: ../../include/functions_api.php:8325 -msgid "Error in netflow filter creation." -msgstr "Error al crear el filtro Netflow" - -#: ../../include/functions_api.php:8542 -msgid "Create user." -msgstr "Crear usuario" - -#: ../../include/functions_api.php:8596 -msgid "Error updating user. Id_user cannot be left blank." -msgstr "Error al actualizar el usuario. Id_user no puede estar en blanco." - -#: ../../include/functions_api.php:8606 -msgid "Error updating user. Id_user doesn't exist." -msgstr "Error al actualizar el usuario. Id_user no existe." - -#: ../../include/functions_api.php:8623 -msgid "Error updating user. Password info incorrect." -msgstr "" -"Error al actualizar el usuario. La información de contraseña es incorrecta." - -#: ../../include/functions_api.php:8631 -msgid "Updated user." -msgstr "Usuario actualizado" - -#: ../../include/functions_api.php:8673 -msgid "Error enable/disable user. Id_user cannot be left blank." -msgstr "" -"Error al habilitar/deshabilitar el usuario. Id_user no puede estar en blanco." - -#: ../../include/functions_api.php:8681 -msgid "Error enable/disable user. Enable/disable value cannot be left blank." -msgstr "" -"Error al habilitar/deshabilitar el usuario. El valor de " -"habilitar/deshabilitar no puede estar en blanco." - -#: ../../include/functions_api.php:8689 -msgid "Error enable/disable user. The user doesn't exist." -msgstr "Error al habilitar/deshabilitar el usuario. El usuario no existe." - -#: ../../include/functions_api.php:8700 -msgid "Error in user enabling/disabling." -msgstr "Error al habilitar/deshabilitar el usuario" - -#: ../../include/functions_api.php:8708 -msgid "Enabled user." -msgstr "Usuario habilitado" - -#: ../../include/functions_api.php:8716 -msgid "Disabled user." -msgstr "Usuario deshabilitado" - -#: ../../include/functions_api.php:8994 -#, php-format -msgid "Template have been inserted in %d agents." -msgstr "Las plantillas se han insertado en %d agentes." - -#: ../../include/functions_api.php:9166 -msgid "XML file was generated successfully in path: " -msgstr "El archivo XML se ha creado correctamente en la ruta: " - -#: ../../include/functions_api.php:9306 -#, php-format -msgid "Module has been created in %d agents." -msgstr "El módulo se ha cread en %d agentes." - -#: ../../include/functions_api.php:9428 -#, php-format -msgid "Action has been set for %d agents." -msgstr "La acción se ha asignado a %d agentes." - -#: ../../include/functions_api.php:9558 -#, php-format -msgid "Created/Updated %s/%s module groups" -msgstr "Creados/Actualizados %s/%s grupos de módulos" - -#: ../../include/functions_api.php:9562 -#, php-format -msgid "Error creating/updating %s/%s module groups
" -msgstr "Error al crear/actualizar los grupos de módulos %s/%s
" - -#: ../../include/functions_api.php:9569 ../../include/functions_api.php:13601 -msgid "This function is only for metaconsole" -msgstr "Función solo válida para la Metaconsola" - -#: ../../include/functions_api.php:9616 -msgid "Name cannot be empty." -msgstr "El nombre no puede estar vacío." - -#: ../../include/functions_api.php:9621 -msgid "Command cannot be empty." -msgstr "El comando no puede estar vacío." - -#: ../../include/functions_api.php:9626 -msgid "Name already exist" -msgstr "El nombre ya existe." - -#: ../../include/functions_api.php:9631 -msgid "Group does not exist" -msgstr "El grupo no existe." - -#: ../../include/functions_api.php:10062 -msgid "There is not gis data for the agent" -msgstr "No hay datos GIS para el agente" - -#: ../../include/functions_api.php:10103 ../../include/functions_api.php:10221 -msgid "Gis not activated" -msgstr "GIS no activado" - -#: ../../include/functions_api.php:10122 ../../include/functions_api.php:10240 -msgid "Missing parameters" -msgstr "Faltan parámetros" - -#: ../../include/functions_api.php:10809 -msgid "Delete user." -msgstr "Borrar usuario" - -#: ../../include/functions_api.php:10850 ../../include/functions_api.php:10903 -msgid "There is not any profile with the id provided" -msgstr "No hay perfiles con este ID" - -#: ../../include/functions_api.php:10862 -msgid "Add user profile." -msgstr "Añadir perfil de usuario" - -#: ../../include/functions_api.php:10921 -msgid "Delete user profile." -msgstr "Borrar perfil de usuario" - -#: ../../include/functions_api.php:10978 -msgid "Error retrieving profiles" -msgstr "Error al obtener los perfiles" - -#: ../../include/functions_api.php:11034 -msgid "Error creating user profile" -msgstr "Error al crear el perfil de usuario" - -#: ../../include/functions_api.php:11096 -msgid "Error updating user profile" -msgstr "Error al actualizar el perfil de usuario" - -#: ../../include/functions_api.php:11131 -msgid "Error deleting user profile" -msgstr "Error al eliminar el perfil de usuario" - -#: ../../include/functions_api.php:11292 -msgid "Correct module disable" -msgstr "Módulo deshabilitado correctamente" - -#: ../../include/functions_api.php:11294 -msgid "Error disabling module" -msgstr "Error al deshabilitar el módulo" - -#: ../../include/functions_api.php:11358 -msgid "Correct module enable" -msgstr "Módulo habilitado correctamente" - -#: ../../include/functions_api.php:11360 -msgid "Error enabling module" -msgstr "Error al habilitar el módulo" - -#: ../../include/functions_api.php:11408 ../../include/functions_api.php:11461 -msgid "Error alert disable" -msgstr "Error al deshabilitar la alerta" - -#: ../../include/functions_api.php:11508 ../../include/functions_api.php:11561 -msgid "Error alert enable" -msgstr "Error al habilitar la alerta" - -#: ../../include/functions_api.php:12026 -msgid "No alert found" -msgstr "No se han encontrado alertas" - -#: ../../include/functions_api.php:12200 -msgid "Cannot connect with the agent node." -msgstr "No se ha podido conectar con el nodo del agente." - -#: ../../include/functions_api.php:12446 -msgid "Error adding event comment." -msgstr "Error al añadir el comentario en el evento" - -#: ../../include/functions_api.php:12729 -msgid "Error enable/disable agent. Id_agent cannot be left blank." -msgstr "" -"Error al habilitar/deshabilitar el agente. Id_agent no puede estar en blanco." - -#: ../../include/functions_api.php:12741 +#: ../../include/class/ConsoleSupervisor.php:1282 msgid "" -"Error enable/disable agent. Enable/disable value cannot be left blank." +"At least one server must be defined to run as master. Please, check " +"documentation." msgstr "" -"Error al habilitar/deshabilitar el agente. El valor de " -"habilitar/deshabilitar no puede estar en blanco." +"Al menos un servidor debe ejecutarse como maestro. Diríjase a la " +"documentación." -#: ../../include/functions_api.php:12749 -msgid "Error enable/disable agent. The agent doesn't exist." -msgstr "Error al habilitar/deshabilitar el agente. El agente no existe." - -#: ../../include/functions_api.php:12773 -msgid "Error in agent enabling/disabling." -msgstr "Error al activar/desactivar el agente" - -#: ../../include/functions_api.php:12780 -msgid "Enabled agent." -msgstr "Agente habilitado" - -#: ../../include/functions_api.php:12788 -msgid "Disabled agent." -msgstr "Agente deshabilitado" - -#: ../../include/functions_api.php:12903 -msgid "Error getting special_days." -msgstr "Error al obtener días especiales" - -#: ../../include/functions_api.php:12943 -msgid "Error creating special day. Specified day already exists." -msgstr "Error al crear el día especial. El día especificado ya existe." - -#: ../../include/functions_api.php:12948 -msgid "Error creating special day. Invalid date format." -msgstr "Error al crear el día especial. Formato de fecha no válida." - -#: ../../include/functions_api.php:12953 -msgid "Error creating special day. Group id cannot be left blank." -msgstr "Error al crear el día especia. El ID de grupo no puede estar vacío." - -#: ../../include/functions_api.php:12959 -msgid "Error creating special day. Id_group doesn't exist." -msgstr "Error al crear el día especia. Id_grupo no existe." - -#: ../../include/functions_api.php:12977 -msgid "Error in creation special day." -msgstr "Error al crear el día especial" - -#: ../../include/functions_api.php:13027 -msgid "Error in creation service. No name" -msgstr "Error al crear el servicio. No hay nombre." - -#: ../../include/functions_api.php:13050 -msgid "Error in creation service. No agent id" -msgstr "Error al crear el servicio. No hay ID de agente." - -#: ../../include/functions_api.php:13114 -msgid "Error in creation service" -msgstr "Error al crear el servicio" - -#: ../../include/functions_api.php:13146 -msgid "Error in update service. No service id" -msgstr "Error al actualizar el servicio. No hay ID de servicio." - -#: ../../include/functions_api.php:13268 -msgid "Error in update service" -msgstr "Error al actualizar el servicio" - -#: ../../include/functions_api.php:13301 -msgid "Error adding elements to service. No service id" -msgstr "Error al añadir elementos al servicio. No hay ID de servicio." - -#: ../../include/functions_api.php:13378 -msgid "Error adding elements to service" -msgstr "Error al añadir elementos al servicio" - -#: ../../include/functions_api.php:13415 -msgid "Error updating special day. Id cannot be left blank." +#: ../../include/class/ConsoleSupervisor.php:1333 +msgid "PHP safe mode is enabled. Some features may not work properly" msgstr "" -"Error al actualizar el día especial. El campo ID no puede estar vacío." +"El modo seguro PHP está habilitado. Algunas funcionalidades podrían no " +"funcionar correctamente" -#: ../../include/functions_api.php:13422 -msgid "Error updating special day. Id doesn't exist." -msgstr "Error al actualizar el día especial. El ID no existe." - -#: ../../include/functions_api.php:13427 -msgid "Error updating special day. Invalid date format." -msgstr "Error al actualizar el día especial. Formato de fecha no válido." - -#: ../../include/functions_api.php:13477 -msgid "Error deleting special day. Id cannot be left blank." -msgstr "Error al eliminar el día especial. El campo ID no puede estar vacío." - -#: ../../include/functions_api.php:13484 -msgid "Error deleting special day. Id doesn't exist." -msgstr "Error al eliminar el día especial" - -#: ../../include/functions_api.php:13491 -msgid "Error in deletion special day." -msgstr "Error al eliminar el día especial" - -#: ../../include/functions_api.php:13596 -#: ../../enterprise/meta/advanced/license_meta.php:50 -msgid "Metaconsole and all nodes license updated" +#: ../../include/class/ConsoleSupervisor.php:1334 +msgid "" +"To disable it, go to your PHP configuration file (php.ini) and put safe_mode " +"= Off (Do not forget to restart apache process after changes)" msgstr "" -"Licencia de la Metaconsola y todos sus módulos actualizada correctamente" +"Para deshabilitarlo, diríjase al archivo de configuración PHP (php.ini) y " +"escriba safe_mode = Off (No olvide reiniciar el proceso de apache después de " +"los cambios)" -#: ../../include/functions_api.php:13598 -#: ../../enterprise/meta/advanced/license_meta.php:52 +#: ../../include/class/ConsoleSupervisor.php:1352 #, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "" -"Licencia de la Metaconsola actualizada pero %d de %d de los nodos no se " -"sincronizaron correctamente" +msgid "'%s' value in PHP configuration is not recommended" +msgstr "No se recomienda el valor '%s' en la configuración PHP" -#: ../../include/functions_api.php:13627 -msgid "A cluster with this name already exists." -msgstr "Ya existe un cluster con este nombre." - -#: ../../include/functions_api.php:13709 -msgid "Failed to create cluster." -msgstr "Error al crear el cluster." - -#: ../../include/functions_api.php:13712 -msgid "Agent name cannot be empty." -msgstr "El nombre de agente no puede estar vacío." - -#: ../../include/functions_api.php:13745 ../../include/functions_api.php:13878 -msgid "Error adding elements to cluster" -msgstr "Error al añadir elementos al cluster." - -#: ../../include/functions_api.php:13894 ../../include/functions_api.php:13939 -#: ../../include/functions_api.php:13985 ../../include/functions_api.php:14160 -#: ../../include/functions_api.php:14198 ../../include/functions_api.php:14221 -#: ../../include/functions_api.php:14255 ../../include/functions_api.php:14324 -#: ../../include/functions_api.php:14359 ../../include/functions_api.php:14552 -msgid "The user cannot access to the cluster" -msgstr "El usuario no puede acceder al cluster" - -#: ../../include/functions_api.php:14591 -msgid "Error creating event filter. Event filter name cannot be left blank." -msgstr "" -"Error al crear el filtro de evento. El nombre de filtro de evento no puede " -"estar vacío." - -#: ../../include/functions_api.php:14731 -msgid "Error creating event filter." -msgstr "Error al crear filtro de evento." - -#: ../../include/functions_api.php:14737 -msgid "Event filter successfully created." -msgstr "Filtro de evento creado correctamente." - -#: ../../include/functions_api.php:14774 -msgid "Error updating event filter. Event filter ID cannot be left blank." -msgstr "" -"Error al actualizar el filtro de evento. El ID de filtro de evento no puede " -"estar vacío." - -#: ../../include/functions_api.php:14785 -msgid "Error updating event filter. Event filter ID doesn't exist." -msgstr "" -"Error al actualizar el filtro de evento. El ID de filtro de evento no existe." - -#: ../../include/functions_api.php:14966 -msgid "Error updating event filter." -msgstr "Error al actualizar el filtro de evento." - -#: ../../include/functions_api.php:14972 -msgid "Event filter successfully updated." -msgstr "Filtro de evento creado correctamente." - -#: ../../include/functions_api.php:14998 -msgid "Error deleting event_filter. Event filter ID cannot be left blank." -msgstr "" -"Error al borrar el evento_filtro. El ID de filtro de evento no puede estar " -"vacío." - -#: ../../include/functions_api.php:15008 -msgid "Error deleting event filter." -msgstr "Error al eliminar el filtro de evento." - -#: ../../include/functions_api.php:15015 -msgid "Event filter successfully deleted." -msgstr "Filtro de evento borrado correctamente." - -#: ../../include/functions_api.php:15063 -msgid "Error getting all event filters." -msgstr "Error al obtener todos los filtros de eventos." - -#: ../../include/functions_api.php:15293 -msgid "Error in trap update." -msgstr "Error al actualizar el trap." - -#: ../../include/functions_api.php:15299 -msgid "Validated traps." -msgstr "Traps validados." - -#: ../../include/functions_api.php:15320 -msgid "Error in trap delete." -msgstr "Error al eliminar el trap." - -#: ../../include/functions_api.php:15326 -msgid "Deleted traps." -msgstr "Traps eliminados." - -#: ../../include/functions_api.php:15484 -msgid "Error. Agent cannot be left blank." -msgstr "Error. El agente no puede estar vacío." - -#: ../../include/functions_api.php:15491 ../../include/functions_api.php:15941 -msgid "This agent does not exist." -msgstr "El agente no existe." - -#: ../../include/functions_api.php:15513 +#: ../../include/class/ConsoleSupervisor.php:1356 #, php-format -msgid "Successfully updated module/alert count in id agent %d." +msgid "Recommended value is %s" +msgstr "El valor recomendado es '%s'." + +#: ../../include/class/ConsoleSupervisor.php:1357 +#: ../../include/class/ConsoleSupervisor.php:1381 +msgid "Unlimited" +msgstr "Sin límite" + +#: ../../include/class/ConsoleSupervisor.php:1358 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Do not forget to restart Apache process after)" msgstr "" -"Recuento de módulos/alertas en ID de agente %d actualizado correctamente." +"Modifíquelo en el archivo de configuración PHP (php.ini) o póngase en " +"contacto con el administrador (no olvide reiniciar el proceso de Apache " +"después)" -#: ../../include/functions_api.php:15515 -msgid "Successfully updated module/alert count in all agents" -msgstr "" -"Recuento de módulos/alertas actualizado correctamente en todos los agentes" - -#: ../../include/functions_api.php:15589 -msgid "Users could not be found." -msgstr "No se han encontrado usuarios." - -#: ../../include/functions_api.php:15793 ../../include/functions_api.php:15800 -msgid "User profile could not be deleted." -msgstr "No se ha podido eliminar el perfil de usuario." - -#: ../../include/functions_api.php:15848 ../../include/functions_api.php:15875 -msgid "User profile could not be available." -msgstr "Perfil de usuario no disponible." - -#: ../../include/functions_api.php:15936 -msgid "This policy does not exist." -msgstr "Esta política no existe." - -#: ../../include/functions_api.php:15946 -msgid "This agent does not exist in this policy." -msgstr "Este agente no existe en esta politica." - -#: ../../include/functions_api.php:15951 +#: ../../include/class/ConsoleSupervisor.php:1376 +#: ../../include/class/ConsoleSupervisor.php:1400 +#: ../../include/class/ConsoleSupervisor.php:1424 +#: ../../include/class/ConsoleSupervisor.php:1502 #, php-format -msgid "Successfully added to delete pending id agent %d to id policy %d." -msgstr "" -"Se ha añadido correctamente el agente %d a pendiente de eliminación en la " -"política %d." +msgid "Not recommended '%s' value in PHP configuration" +msgstr "Valor '%s' no recomendado en la configuración de PHP" -#: ../../include/functions_notifications.php:706 -msgid "Notify all users" -msgstr "Notificar a todos los usuarios" - -#: ../../include/functions_notifications.php:709 -msgid "Also email users with notification content" -msgstr "" -"También usuarios de correo electrónico con contenido de notificaciones" - -#: ../../include/functions_notifications.php:712 -msgid "Users can modify notification preferences" -msgstr "El usuario puede modificar las preferencias de notificación" - -#: ../../include/functions_notifications.php:717 -msgid "Users can postpone notifications up to" -msgstr "El usuario puede postponer las notificaciones hasta" - -#: ../../include/functions_notifications.php:728 -msgid "forever" -msgstr "para siempre" - -#: ../../include/functions_notifications.php:761 -msgid "Notified users" -msgstr "Usuarios notificados" - -#: ../../include/functions_notifications.php:761 -msgid "Notified groups" -msgstr "Grupos notificados" - -#: ../../include/functions_notifications.php:762 -msgid "Add users" -msgstr "Añadir usuarios" - -#: ../../include/functions_notifications.php:762 -msgid "Add groups" -msgstr "Añadir grupos" - -#: ../../include/functions_notifications.php:763 -msgid "Delete users" -msgstr "Borrar usuarios" - -#: ../../include/functions_notifications.php:763 -msgid "Delete groups" -msgstr "Borrar grupos" - -#: ../../include/functions_notifications.php:859 -msgid "Add elements" -msgstr "Añadir elementos" - -#: ../../include/functions_notifications.php:871 -msgid "Remove elements" -msgstr "Eliminar elementos" - -#: ../../include/functions_notifications.php:981 -msgid "Click here to get more information" -msgstr "Pinche aquí para obtener más información" - -#: ../../include/functions_clippy.php:152 +#: ../../include/class/ConsoleSupervisor.php:1380 +#: ../../include/class/ConsoleSupervisor.php:1404 +#: ../../include/class/ConsoleSupervisor.php:1428 +#: ../../include/class/ConsoleSupervisor.php:1506 #, php-format -msgid "%s assistant" -msgstr "Asistente de %s" - -#: ../../include/functions_clippy.php:189 -#: ../../include/functions_clippy.php:194 -msgid "End wizard" -msgstr "Cerrar asistente" - -#: ../../include/functions_clippy.php:227 -msgid "Next →" -msgstr "Siguiente →" - -#: ../../include/functions_clippy.php:228 -msgid "← Back" -msgstr "← Anterior" - -#: ../../include/functions_clippy.php:240 -msgid "Do you want to exit the help tour?" -msgstr "¿Quieres salir de la ayuda guiada?" - -#: ../../include/functions_network.php:98 -msgid "Top listeners" -msgstr "Top listeners" - -#: ../../include/functions_network.php:99 -msgid "Top talkers" -msgstr "Top talkers" - -#: ../../include/functions_network.php:109 -msgid "Top TCP protocols" -msgstr "Top de protocolos TCP" - -#: ../../include/functions_network.php:110 -msgid "Top UDP protocols" -msgstr "Top de protocolos UDP" - -#: ../../include/functions_config.php:127 -msgid "Failed updated: User did not login." -msgstr "Fallo de actualización: el usuario no inició sesión" - -#: ../../include/functions_config.php:135 -msgid "Failed updated: User is not admin." -msgstr "Fallo de actualización: el usuario no es administrador" - -#: ../../include/functions_config.php:160 -#: ../../enterprise/meta/advanced/metasetup.setup.php:113 -#: ../../enterprise/meta/include/functions_meta.php:370 -msgid "Language settings" -msgstr "Configuración de idioma" - -#: ../../include/functions_config.php:168 -msgid "phantomjs config directory" -msgstr "Directorio de configuración de phatomjs" - -#: ../../include/functions_config.php:184 -msgid "SSL cert path" -msgstr "Ruta del certificado SSL" - -#: ../../include/functions_config.php:192 -msgid "Use cert." -msgstr "Usar certificado" - -#: ../../include/functions_config.php:212 -msgid "Integria inventory" -msgstr "Inventario Integria IMS" - -#: ../../include/functions_config.php:216 -#: ../../include/functions_config.php:1499 -msgid "Integria API password" -msgstr "Contraseña de la API de Integria IMS" - -#: ../../include/functions_config.php:220 -msgid "Integria URL" -msgstr "URL de Integria IMS" - -#: ../../include/functions_config.php:260 -msgid "License information" -msgstr "Información sobre la licencia" - -#: ../../include/functions_config.php:306 -msgid "Limit parameters bulk" -msgstr "Límite de operaciones en bloque" - -#: ../../include/functions_config.php:310 -msgid "Identification_reminder" -msgstr "Recordatorio de identificación" - -#: ../../include/functions_config.php:314 -msgid "Include_agents" -msgstr "Incluir agentes" - -#: ../../include/functions_config.php:318 -msgid "alias_as_name" -msgstr "Alias como nombre" - -#: ../../include/functions_config.php:326 -msgid "unique_ip" -msgstr "unique_ip" - -#: ../../include/functions_config.php:330 -#: ../../enterprise/meta/advanced/metasetup.mail.php:107 -msgid "Server SMTP" -msgstr "Servidor SMTP" - -#: ../../include/functions_config.php:334 -#: ../../enterprise/meta/advanced/metasetup.mail.php:101 -msgid "From dir" -msgstr "Desde dir" - -#: ../../include/functions_config.php:342 -#: ../../enterprise/meta/advanced/metasetup.mail.php:110 -msgid "Port SMTP" -msgstr "Puerto SMTP" - -#: ../../include/functions_config.php:358 -msgid "WebSocket bind address" -msgstr "Dirección de enlace WebSocket" - -#: ../../include/functions_config.php:362 -msgid "WebSocket port" -msgstr "Puerto WebSocket" - -#: ../../include/functions_config.php:373 -#: ../../enterprise/godmode/setup/setup.php:47 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "Reenviar los traps SNMP al agente (si existe)" - -#: ../../include/functions_config.php:377 -#: ../../enterprise/godmode/setup/setup.php:77 -msgid "Use Enterprise ACL System" -msgstr "Utilizar el sistema ACL Enterprise" - -#: ../../include/functions_config.php:381 -#: ../../enterprise/meta/include/functions_meta.php:361 -msgid "Activate Metaconsole" -msgstr "Activar la Metaconsola" - -#: ../../include/functions_config.php:385 -#: ../../enterprise/godmode/setup/setup.php:93 -#: ../../enterprise/meta/advanced/metasetup.setup.php:281 -#: ../../enterprise/meta/include/functions_meta.php:568 -msgid "Size of collection" -msgstr "Tamaño de la colección" - -#: ../../include/functions_config.php:389 -#: ../../enterprise/godmode/setup/setup.php:107 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:619 -msgid "Events replication" -msgstr "Replicación de eventos" - -#: ../../include/functions_config.php:394 -#: ../../enterprise/godmode/setup/setup.php:119 -msgid "Replication interval" -msgstr "Intervalo de replicación" - -#: ../../include/functions_config.php:398 -#: ../../enterprise/godmode/setup/setup.php:133 -msgid "Replication limit" -msgstr "Límite de replicación" - -#: ../../include/functions_config.php:402 -#: ../../enterprise/godmode/setup/setup.php:164 -msgid "Replication mode" -msgstr "Modo de replicación" - -#: ../../include/functions_config.php:406 -#: ../../enterprise/godmode/setup/setup.php:270 -msgid "Show events list in local console (read only)" -msgstr "Mostrar lista de eventos en la consola local (solo lectura)" - -#: ../../include/functions_config.php:411 -msgid "Replication DB engine" -msgstr "Motor de BD de replicación" - -#: ../../include/functions_config.php:415 -msgid "Replication DB host" -msgstr "Host de la BD de replicación" - -#: ../../include/functions_config.php:419 -msgid "Replication DB database" -msgstr "Nombre de la BD de replicación" - -#: ../../include/functions_config.php:423 -msgid "Replication DB user" -msgstr "Usuario de la BD de replicación" - -#: ../../include/functions_config.php:427 -msgid "Replication DB password" -msgstr "Contraseña de la BD de replicación" - -#: ../../include/functions_config.php:431 -msgid "Replication DB port" -msgstr "Puerto de la BD de replicación" - -#: ../../include/functions_config.php:435 -msgid "Metaconsole agent cache" -msgstr "Caché de agente de la Metaconsola" - -#: ../../include/functions_config.php:439 -#: ../../enterprise/godmode/setup/setup.php:376 -msgid "Activate Log Collector" -msgstr "Activar el colector de logs" - -#: ../../include/functions_config.php:443 -msgid "Enable Update Manager" -msgstr "Habilitar Update Manager" - -#: ../../include/functions_config.php:451 -msgid "Ipam Ocuppied Manager Critical" -msgstr "Ipam Ocuppied Manager Crítico" - -#: ../../include/functions_config.php:455 -msgid "Ipam Ocuppied Manager Warning" -msgstr "Ipam Ocuppied Manager Advertencia" - -#: ../../include/functions_config.php:459 -#: ../../enterprise/godmode/setup/setup.php:445 -msgid "SAP/R3 Plugin Licence" -msgstr "Licencia plugin SAP/R3" - -#: ../../include/functions_config.php:464 -#: ../../enterprise/godmode/setup/setup.php:288 -msgid "Inventory changes blacklist" -msgstr "Lista negra ante cambios de inventario" - -#: ../../include/functions_config.php:472 -#: ../../enterprise/godmode/setup/setup.php:499 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/meta/include/functions_meta.php:579 -msgid "Enable password policy" -msgstr "Habilitar política de contraseñas" - -#: ../../include/functions_config.php:476 -#: ../../enterprise/godmode/setup/setup.php:508 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/meta/include/functions_meta.php:588 -msgid "Min. size password" -msgstr "Contraseña con tamaño mínimo" - -#: ../../include/functions_config.php:480 -#: ../../enterprise/godmode/setup/setup.php:537 -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -#: ../../enterprise/meta/include/functions_meta.php:615 -msgid "Password expiration" -msgstr "Expiración de contraseña" - -#: ../../include/functions_config.php:484 -#: ../../enterprise/godmode/setup/setup.php:549 -#: ../../enterprise/meta/advanced/metasetup.password.php:132 -#: ../../enterprise/meta/include/functions_meta.php:624 -msgid "Force change password on first login" -msgstr "Forzar cambio de contraseña en el primer inicio de sesión" - -#: ../../include/functions_config.php:488 -#: ../../enterprise/godmode/setup/setup.php:558 -#: ../../enterprise/meta/advanced/metasetup.password.php:109 -#: ../../enterprise/meta/include/functions_meta.php:633 -msgid "User blocked if login fails" -msgstr "Usuario bloqueado si la identificación falla" - -#: ../../include/functions_config.php:492 -#: ../../enterprise/godmode/setup/setup.php:569 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -#: ../../enterprise/meta/include/functions_meta.php:642 -msgid "Number of failed login attempts" -msgstr "Número de intentos de identificación fallidos" - -#: ../../include/functions_config.php:496 -#: ../../enterprise/godmode/setup/setup.php:519 -#: ../../enterprise/meta/advanced/metasetup.password.php:138 -#: ../../enterprise/meta/include/functions_meta.php:597 -msgid "Password must have numbers" -msgstr "La contraseña debe contener números." - -#: ../../include/functions_config.php:500 -#: ../../enterprise/godmode/setup/setup.php:528 -#: ../../enterprise/meta/advanced/metasetup.password.php:142 -#: ../../enterprise/meta/include/functions_meta.php:606 -msgid "Password must have symbols" -msgstr "La contraseña debe contener símbolos." - -#: ../../include/functions_config.php:504 -#: ../../enterprise/godmode/setup/setup.php:581 -#: ../../enterprise/meta/advanced/metasetup.password.php:126 -#: ../../enterprise/meta/include/functions_meta.php:549 -msgid "Apply password policy to admin users" -msgstr "Aplicar la política de contraseñas a los usuarios administradores" - -#: ../../include/functions_config.php:508 -#: ../../enterprise/godmode/setup/setup.php:590 -#: ../../enterprise/meta/advanced/metasetup.password.php:121 -#: ../../enterprise/meta/include/functions_meta.php:651 -msgid "Enable password history" -msgstr "Activar histórico de contraseñas" - -#: ../../include/functions_config.php:512 -#: ../../enterprise/godmode/setup/setup.php:599 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/meta/include/functions_meta.php:662 -msgid "Compare previous password" -msgstr "Comparar la contraseña anterior" - -#: ../../include/functions_config.php:516 -#: ../../enterprise/godmode/setup/setup.php:611 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/meta/include/functions_meta.php:514 -msgid "Activate reset password" -msgstr "Activar reseteo de contraseña" - -#: ../../include/functions_config.php:532 -#: ../../enterprise/godmode/setup/setup_auth.php:52 -#: ../../enterprise/godmode/setup/setup_auth.php:297 -#: ../../enterprise/godmode/setup/setup_auth.php:838 -#: ../../enterprise/meta/include/functions_meta.php:701 -msgid "Autocreate profile" -msgstr "Crear el perfil automáticamente" - -#: ../../include/functions_config.php:536 -#: ../../enterprise/godmode/setup/setup_auth.php:58 -#: ../../enterprise/godmode/setup/setup_auth.php:303 -#: ../../enterprise/godmode/setup/setup_auth.php:844 -#: ../../enterprise/meta/include/functions_meta.php:710 -msgid "Autocreate profile group" -msgstr "Crear perfil de grupo automáticamente" - -#: ../../include/functions_config.php:540 -#: ../../enterprise/godmode/setup/setup_auth.php:65 -#: ../../enterprise/godmode/setup/setup_auth.php:310 -#: ../../enterprise/godmode/setup/setup_auth.php:851 -#: ../../enterprise/meta/include/functions_meta.php:719 -msgid "Autocreate profile tags" -msgstr "Crear etiquetas de perfil automáticamente" - -#: ../../include/functions_config.php:544 -#: ../../enterprise/godmode/setup/setup_auth.php:316 -#: ../../enterprise/meta/include/functions_meta.php:728 -msgid "Automatically assigned no hierarchy" -msgstr "Jerarquía no asignada automáticamente" - -#: ../../include/functions_config.php:548 -#: ../../enterprise/godmode/setup/setup_auth.php:1037 -#: ../../enterprise/meta/include/functions_meta.php:737 -msgid "Autocreate blacklist" -msgstr "Crear una lista negra automáticamente" - -#: ../../include/functions_config.php:552 -#: ../../enterprise/godmode/setup/setup_auth.php:1045 -#: ../../enterprise/meta/include/functions_meta.php:768 -msgid "Active directory server" -msgstr "Servidor de directorio activo" - -#: ../../include/functions_config.php:556 -#: ../../enterprise/godmode/setup/setup_auth.php:1051 -#: ../../enterprise/meta/include/functions_meta.php:777 -msgid "Active directory port" -msgstr "Puerto del directorio activo" - -#: ../../include/functions_config.php:564 -#: ../../enterprise/godmode/setup/setup_auth.php:827 -#: ../../enterprise/meta/include/functions_meta.php:795 -msgid "Advanced Config AD" -msgstr "Configuración avanzada AD" - -#: ../../include/functions_config.php:568 -#: ../../enterprise/godmode/setup/setup_auth.php:103 -#: ../../enterprise/meta/include/functions_meta.php:831 -msgid "Advanced Config LDAP" -msgstr "Configuración LDAP avanzada" - -#: ../../include/functions_config.php:572 -#: ../../enterprise/godmode/setup/setup_auth.php:1063 -#: ../../enterprise/meta/include/functions_meta.php:804 -msgid "Domain" -msgstr "Dominio" - -#: ../../include/functions_config.php:576 -#: ../../enterprise/godmode/setup/setup_auth.php:885 -#: ../../enterprise/meta/include/functions_meta.php:813 -msgid "Advanced Permisions AD" -msgstr "Permisos avanzados de AD" - -#: ../../include/functions_config.php:580 -#: ../../enterprise/godmode/setup/setup_auth.php:126 -#: ../../enterprise/meta/include/functions_meta.php:822 -msgid "Advanced Permissions LDAP" -msgstr "Permisos LDAP avanzados" - -#: ../../include/functions_config.php:620 -#: ../../enterprise/godmode/setup/setup_auth.php:98 -#: ../../enterprise/meta/include/functions_meta.php:1107 -msgid "Login user attribute" -msgstr "Identificar atributo de usuario" - -#: ../../include/functions_config.php:624 -#: ../../enterprise/godmode/setup/setup_auth.php:91 -#: ../../enterprise/meta/include/functions_meta.php:1127 -msgid "LDAP function" -msgstr "Función LDAP" - -#: ../../include/functions_config.php:629 -#: ../../enterprise/godmode/setup/setup_auth.php:79 -#: ../../enterprise/meta/include/functions_meta.php:1094 -msgid "Save Password" -msgstr "Guardar contraseña" - -#: ../../include/functions_config.php:636 -#: ../../enterprise/meta/include/functions_meta.php:1116 -msgid "Save profile" -msgstr "Guardar perfil" - -#: ../../include/functions_config.php:640 -#: ../../enterprise/godmode/setup/setup_auth.php:712 -msgid "MySQL host" -msgstr "Dirección de MySQL" - -#: ../../include/functions_config.php:644 -#: ../../include/functions_config.php:664 -#: ../../enterprise/godmode/setup/setup_auth.php:718 -#: ../../enterprise/godmode/setup/setup_auth.php:750 -#: ../../enterprise/meta/include/functions_meta.php:1147 -#: ../../enterprise/meta/include/functions_meta.php:1196 -#: ../../enterprise/meta/include/functions_meta.php:1245 -msgid "MySQL port" -msgstr "Puerto de MySQL" - -#: ../../include/functions_config.php:648 -#: ../../include/functions_config.php:668 -#: ../../include/functions_config.php:1403 -#: ../../enterprise/godmode/setup/setup_auth.php:724 -#: ../../enterprise/godmode/setup/setup_auth.php:756 -#: ../../enterprise/godmode/setup/setup_history.php:54 -#: ../../enterprise/meta/include/functions_meta.php:1156 -#: ../../enterprise/meta/include/functions_meta.php:1205 -#: ../../enterprise/meta/include/functions_meta.php:1254 -msgid "Database name" -msgstr "Nombre de la base de datos" - -#: ../../include/functions_config.php:660 -#: ../../enterprise/godmode/setup/setup_auth.php:744 -#: ../../enterprise/meta/include/functions_meta.php:1236 -msgid "Integria host" -msgstr "Servidor de Integria IMS" - -#: ../../include/functions_config.php:680 -#: ../../enterprise/meta/include/functions_meta.php:876 -msgid "Saml path" -msgstr "Ruta de SAML" - -#: ../../include/functions_config.php:684 -#: ../../enterprise/meta/include/functions_meta.php:888 -msgid "Saml source" -msgstr "Saml origen" - -#: ../../include/functions_config.php:688 -#: ../../enterprise/meta/include/functions_meta.php:900 -msgid "Saml user id parameter" -msgstr "Parámetro de ID de usuario saml" - -#: ../../include/functions_config.php:692 -#: ../../enterprise/meta/include/functions_meta.php:912 -msgid "Saml mail parameter" -msgstr "Parámetro de correo de saml" - -#: ../../include/functions_config.php:696 -#: ../../enterprise/meta/include/functions_meta.php:924 -msgid "Saml group name parameter" -msgstr "Parámetro de nombre de grupo saml" - -#: ../../include/functions_config.php:700 -#: ../../enterprise/meta/include/functions_meta.php:936 -msgid "Saml attr type parameter" -msgstr "Parámetro de tipo de attr saml" - -#: ../../include/functions_config.php:704 -#: ../../enterprise/meta/include/functions_meta.php:948 -msgid "Saml profiles and tags parameter" -msgstr "Parámetro de perfiles y etiquetas saml" - -#: ../../include/functions_config.php:708 -msgid "Saml profile parameters" -msgstr "Parámetros de perfil saml" - -#: ../../include/functions_config.php:712 -#: ../../enterprise/meta/include/functions_meta.php:984 -msgid "Saml tag parameter" -msgstr "Parámetro de etiqueta saml" - -#: ../../include/functions_config.php:716 -#: ../../enterprise/meta/include/functions_meta.php:960 -msgid "Saml profile and tag separator" -msgstr "Separador de perfil y etiqueta saml" - -#: ../../include/functions_config.php:724 -#: ../../enterprise/meta/include/functions_meta.php:757 -#: ../../enterprise/meta/include/functions_meta.php:1008 -msgid "Session timeout" -msgstr "Sesión expirada" - -#: ../../include/functions_config.php:770 -msgid "Max. days before autodisable deletion" -msgstr "Días máximos antes de eliminar los deshabilitados" - -#: ../../include/functions_config.php:774 -msgid "Item limit for realtime reports)" -msgstr "Límite de elementos para los informes de tiempo real" - -#: ../../include/functions_config.php:806 -msgid "Big Operatiopn Step to purge old data" -msgstr "Gran operación para la purga de datos antiguos" - -#: ../../include/functions_config.php:840 -msgid "Max execution event response" -msgstr "Máxima respuesta de ejecución de eventos" - -#: ../../include/functions_config.php:851 -#: ../../enterprise/meta/include/functions_meta.php:1295 -msgid "Timestamp or time comparation" -msgstr "Marca o comparación temporal" - -#: ../../include/functions_config.php:894 -#: ../../include/functions_config.php:2724 -#: ../../operation/network/network_report.php:218 -#: ../../operation/network/network_report.php:250 -#: ../../enterprise/include/functions_reporting_csv.php:1938 -#: ../../enterprise/include/functions_reporting_csv.php:1946 -msgid "Bytes" -msgstr "Bytes" - -#: ../../include/functions_config.php:899 -#: ../../enterprise/meta/include/functions_meta.php:1340 -msgid "Data precision for reports" -msgstr "Precisión de los datos en los informes" - -#: ../../include/functions_config.php:920 -msgid "Show QR code header" -msgstr "Mostrar código QR en la cabecera" - -#: ../../include/functions_config.php:928 -#: ../../enterprise/meta/include/functions_meta.php:1630 -msgid "Font path" -msgstr "Ruta de la tipografía" - -#: ../../include/functions_config.php:944 -msgid "Custom logo collapsed" -msgstr "El logo personalizado se ha caído" - -#: ../../include/functions_config.php:948 -msgid "Custom logo white background" -msgstr "Fondo blanco del logo personalizado" - -#: ../../include/functions_config.php:952 -#: ../../enterprise/meta/include/functions_meta.php:1514 -msgid "Custom logo login" -msgstr "Logo personalizado en la pantalla de bienvenida" - -#: ../../include/functions_config.php:956 -#: ../../enterprise/meta/include/functions_meta.php:1523 -msgid "Custom splash login" -msgstr "Login de Splash personalizado" - -#: ../../include/functions_config.php:976 -msgid "Custom title header" -msgstr "Encabezado de título personalizado" - -#: ../../include/functions_config.php:980 -msgid "Custom subtitle header" -msgstr "Encabezado del subtítulo personalizado" - -#: ../../include/functions_config.php:984 -#: ../../enterprise/meta/include/functions_meta.php:1550 -msgid "Custom title1 login" -msgstr "Título1 conexión personalizado" - -#: ../../include/functions_config.php:988 -#: ../../enterprise/meta/include/functions_meta.php:1559 -msgid "Custom title2 login" -msgstr "Título2 conexión personalizado" - -#: ../../include/functions_config.php:996 -#: ../../include/functions_config.php:1040 -msgid "Custom Docs url" -msgstr "URL de documentos personalizados" - -#: ../../include/functions_config.php:1000 -#: ../../include/functions_config.php:1044 -msgid "Custom support url" -msgstr "URL de soporte personalizado" - -#: ../../include/functions_config.php:1012 -msgid "Custom logo metaconsole" -msgstr "Logo personalizado de la Metaconsola" - -#: ../../include/functions_config.php:1016 -msgid "Custom logo metaconsole (white background)" -msgstr "Logo personalizado de la consola (fondo blanco)" - -#: ../../include/functions_config.php:1020 -msgid "Custom logo login metaconsole" -msgstr "Logo personalizado de la conexión a la Metaconsola" - -#: ../../include/functions_config.php:1024 -msgid "Custom splash login metaconsole" -msgstr "Conexión del Splash personalizado de la Metaconsola" - -#: ../../include/functions_config.php:1028 -msgid "Custom title1 login metaconsole" -msgstr "Título1 conexión personalizado de la Metaconsola" - -#: ../../include/functions_config.php:1032 -msgid "Custom title2 login metaconsole" -msgstr "Título2 conexión personalizado de la Metaconsola" - -#: ../../include/functions_config.php:1036 -msgid "Login background metaconsole" -msgstr "Fondo de la conexión a la Metaconsola" - -#: ../../include/functions_config.php:1048 -#: ../../enterprise/meta/include/functions_meta.php:1687 -msgid "Use the legacy Visual Console" -msgstr "Usar la consola visual heredada" - -#: ../../include/functions_config.php:1052 -#: ../../enterprise/meta/include/functions_meta.php:1692 -msgid "Default expiration of the Visual Console item's cache" +msgid "Recommended value is: %s" +msgstr "El valor recomendado es: %s" + +#: ../../include/class/ConsoleSupervisor.php:1382 +#: ../../include/class/ConsoleSupervisor.php:1406 +#: ../../include/class/ConsoleSupervisor.php:1448 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Dont forget restart apache process after changes)" msgstr "" -"Caducidad del caché de los elementos de la consola visual por defecto" +"Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o " +"contacta con un administrador (no olvides reiniciar el proceso Apache tras " +"los cambios)." -#: ../../include/functions_config.php:1060 -msgid "Default line favourite_view for the Visual Console" -msgstr "Línea por defecto favourite_view para la consola visual" - -#: ../../include/functions_config.php:1064 -msgid "Default line menu items for the Visual Console" -msgstr "Elementos predeterminados de menú de línea para la consola visual" - -#: ../../include/functions_config.php:1072 -msgid "Default line menu items for the Services" -msgstr "Linea de elementos de menú por defecto para los servicios" - -#: ../../include/functions_config.php:1104 -msgid "Show units in values report" -msgstr "Mostrar unidades en los valores del informe" - -#: ../../include/functions_config.php:1112 -msgid "Autohidden menu" -msgstr "Ocultar menú automáticamente" - -#: ../../include/functions_config.php:1116 -msgid "visual_animation" -msgstr "visual_animation" - -#: ../../include/functions_config.php:1120 -#: ../../enterprise/meta/advanced/metasetup.visual.php:146 -#: ../../enterprise/meta/include/functions_meta.php:1406 -msgid "Disable help" -msgstr "Deshabilitar ayuda" - -#: ../../include/functions_config.php:1124 -msgid "Fixed graph" -msgstr "Gráfico fijo" - -#: ../../include/functions_config.php:1132 -msgid "Paginate module" -msgstr "Paginar vista de módulos" - -#: ../../include/functions_config.php:1144 -msgid "Shortened module graph data" -msgstr "Gráfico de módulo de datos acortados" - -#: ../../include/functions_config.php:1156 -msgid "Default type of module charts." -msgstr "Tipo de gráficos de módulos por defecto" - -#: ../../include/functions_config.php:1160 -msgid "Default type of interface charts." -msgstr "Tipo predefinido para los gráficos de interfaz" - -#: ../../include/functions_config.php:1171 -#: ../../include/functions_config.php:2800 -#: ../../include/functions_reporting_html.php:602 -#: ../../enterprise/include/functions_reporting.php:1698 -#: ../../enterprise/include/functions_reporting.php:1739 -#: ../../enterprise/include/functions_reporting.php:2623 -#: ../../enterprise/include/functions_reporting.php:2682 -#: ../../enterprise/include/functions_reporting.php:3616 -#: ../../enterprise/include/functions_reporting.php:3675 -#: ../../enterprise/include/functions_reporting.php:5729 -#: ../../enterprise/include/functions_reporting_csv.php:1334 -#: ../../enterprise/include/functions_reporting_csv.php:1380 -#: ../../enterprise/include/functions_reporting_csv.php:1698 -msgid "Fail" -msgstr "Fallo" - -#: ../../include/functions_config.php:1177 -msgid "Display lateral menus with left click" -msgstr "Mostrar los menús laterales con el clic izquierdo" - -#: ../../include/functions_config.php:1187 -msgid "Service item padding size" -msgstr "Espacio entre los nodos del mapa de servicios" - -#: ../../include/functions_config.php:1192 -msgid "Default percentil" -msgstr "Percentil por defecto" - -#: ../../include/functions_config.php:1196 -msgid "Default full scale (TIP)" -msgstr "Escala completa por defecto (TIP)" - -#: ../../include/functions_config.php:1200 -msgid "Default soft graphs" -msgstr "" - -#: ../../include/functions_config.php:1204 -msgid "Default zoom graphs" -msgstr "Gráficas ampliadas por defecto" - -#: ../../include/functions_config.php:1208 -msgid "Default height of the chart image" -msgstr "Altuta de la imagen de la gráfica por defecto" - -#: ../../include/functions_config.php:1229 -msgid "Add the custom post process" -msgstr "Añadir la personalización al proceso posterior" - -#: ../../include/functions_config.php:1237 -msgid "Delete the custom post process" -msgstr "Borrar la personalización al proceso posterior" - -#: ../../include/functions_config.php:1284 -#: ../../enterprise/meta/include/functions_meta.php:1642 -msgid "Custom report info" -msgstr "Información del informe personalizado" - -#: ../../include/functions_config.php:1305 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 -#: ../../enterprise/meta/include/functions_meta.php:1647 -msgid "Font family" -msgstr "Tipo de letra" - -#: ../../include/functions_config.php:1369 -msgid "IP ElasticSearch server" -msgstr "IP del servidor ElasticSearch" - -#: ../../include/functions_config.php:1373 -msgid "Port ElasticSearch server" -msgstr "Puerto del servidor ElasticSearch" - -#: ../../include/functions_config.php:1377 -#: ../../enterprise/godmode/setup/setup_log_collector.php:42 -msgid "Number of logs viewed" -msgstr "Número de logs vistos" - -#: ../../include/functions_config.php:1381 -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "Days to purge old information" -msgstr "Días para purgar información antigua" - -#: ../../include/functions_config.php:1387 -#: ../../enterprise/godmode/setup/setup_history.php:42 -msgid "Enable history database" -msgstr "Activar base de datos de histórico" - -#: ../../include/functions_config.php:1391 -msgid "Enable history event" -msgstr "Activar histórico de eventos" - -#: ../../include/functions_config.php:1395 -#: ../../enterprise/godmode/setup/setup_history.php:48 -#: ../../enterprise/include/functions_reporting_csv.php:1938 -#: ../../enterprise/include/functions_reporting_csv.php:1946 -msgid "Host" -msgstr "Host" - -#: ../../include/functions_config.php:1407 -#: ../../enterprise/godmode/setup/setup_history.php:57 -msgid "Database user" -msgstr "Usuario de la base de datos" - -#: ../../include/functions_config.php:1411 -#: ../../enterprise/godmode/setup/setup_history.php:60 -msgid "Database password" -msgstr "Contraseña de la base de datos" - -#: ../../include/functions_config.php:1427 -msgid "Event Days" -msgstr "Eventos en día" - -#: ../../include/functions_config.php:1443 -#: ../../enterprise/godmode/setup/setup_history.php:69 -msgid "Delay" -msgstr "Retraso" - -#: ../../include/functions_config.php:1453 -msgid "eHorus user login" -msgstr "Inicio de sesión del usuario a eHorus" - -#: ../../include/functions_config.php:1465 -msgid "eHorus API hostname" -msgstr "Propietario de la API de eHorus" - -#: ../../include/functions_config.php:1469 -msgid "eHorus API port" -msgstr "Puerto de la API de eHorus" - -#: ../../include/functions_config.php:1473 -msgid "eHorus request timeout" -msgstr "Tiempo de respuesta de eHorus" - -#: ../../include/functions_config.php:1477 -msgid "eHorus id custom field" -msgstr "ID del campo personalizado de eHorus" - -#: ../../include/functions_config.php:1487 -msgid "Integria user" -msgstr "Usuario de Integria" - -#: ../../include/functions_config.php:1491 -msgid "Integria password" -msgstr "Contraseña de Integria" - -#: ../../include/functions_config.php:1495 -msgid "integria API hostname" -msgstr "Nombre del host de la API de Integria" - -#: ../../include/functions_config.php:1503 -msgid "Integria request timeout" -msgstr "Límite de tiempo de las peticiones de Integria" - -#: ../../include/functions_config.php:1507 -msgid "Integria default group" -msgstr "Grupo por defecto de Integria" - -#: ../../include/functions_config.php:1511 -msgid "Integria custom response default group" -msgstr "Grupo de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1515 -msgid "Integria default priority" -msgstr "Prioridad por defecto de Integria" - -#: ../../include/functions_config.php:1519 -msgid "Integria custom response default priority" -msgstr "Prioridad de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1523 -msgid "Integria default creator" -msgstr "Creador por defecto de Integria" - -#: ../../include/functions_config.php:1527 -msgid "Integria default owner" -msgstr "Propietario de Integria por defecto" - -#: ../../include/functions_config.php:1531 -msgid "Integria custom response default owner" -msgstr "Propietario de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1535 -msgid "Integria default ticket type" -msgstr "Tipo de ticket de Integria por defecto" - -#: ../../include/functions_config.php:1539 -msgid "Integria custom response default ticket type" -msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto" - -#: ../../include/functions_config.php:1543 -msgid "Integria default ticket status" -msgstr "Estado del ticket de Integria por defecto" - -#: ../../include/functions_config.php:1547 -msgid "Integria custom response default ticket status" -msgstr "Estado del ticket de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1551 -msgid "Integria default ticket title" -msgstr "Título del ticket de Integria por defecto" - -#: ../../include/functions_config.php:1555 -msgid "Integria custom response default ticket title" -msgstr "Título del ticket de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1559 -msgid "Integria default ticket content" -msgstr "Contenido del ticket de Integria por defecto" - -#: ../../include/functions_config.php:1563 -msgid "Integria custom response default ticket content" -msgstr "" -"Contenido del ticket de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1581 +#: ../../include/class/ConsoleSupervisor.php:1405 +#: ../../include/class/ConsoleSupervisor.php:1429 #, php-format -msgid "Failed updated: the next values cannot update: %s" +msgid "%s or greater" +msgstr "%s o mayor" + +#: ../../include/class/ConsoleSupervisor.php:1430 +#: ../../include/class/ConsoleSupervisor.php:1508 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator" msgstr "" -"Error de actualización. Los siguientes valores no pueden ser actualizados: %s" +"Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o " +"contacta con un administrador." -#: ../../include/functions_config.php:2068 -#: ../../operation/agentes/networkmap.dinamic.php:218 -msgid "Pandora FMS" -msgstr "Pandora FMS" +#: ../../include/class/ConsoleSupervisor.php:1447 +msgid "Problems with disable_functions in php.ini" +msgstr "Problemas con diable_functions en php.ini" -#: ../../include/functions_config.php:2072 ../../include/functions_ui.php:1695 -msgid "the Flexible Monitoring System" -msgstr "Sistema Flexible de Monitorización" +#: ../../include/class/ConsoleSupervisor.php:1448 +msgid "" +"The variable disable_functions contains functions system() or exec() in PHP " +"configuration file (php.ini)" +msgstr "" +"La variable disable_funtionc contiene las funciones system() o exec() en el " +"archivo de configuración PHP (php.ini)" -#: ../../include/functions_config.php:2076 -msgid "PANDORA FMS" -msgstr "PANDORA FMS" +#: ../../include/class/ConsoleSupervisor.php:1465 +msgid "PhantomJS is not installed" +msgstr "PhantomJS no está instalado" -#: ../../include/functions_config.php:2080 -#: ../../enterprise/include/process_reset_pass.php:150 -#: ../../enterprise/include/process_reset_pass.php:153 -#: ../../enterprise/include/reset_pass.php:130 -#: ../../enterprise/include/reset_pass.php:133 -msgid "ONE TOOL TO MONITOR THEM ALL" -msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" +#: ../../include/class/ConsoleSupervisor.php:1466 +msgid "" +"To be able to create images of the graphs for PDFs, please install the " +"PhantomJS extension. For that, it is necessary to follow these steps:" +msgstr "" +"Para poder crear imágenes de las gráficas para PDFs, instale la extensión " +"PhantomJS. Para ello siga estos pasos:" -#: ../../include/functions_config.php:2124 -#: ../../enterprise/meta/general/login_page.php:199 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "PANDORA FMS NEXT GENERATION" +#: ../../include/class/ConsoleSupervisor.php:1483 +msgid "PHP UPDATE REQUIRED" +msgstr "PHP DEBE ACTUALIZARSE" -#: ../../include/functions_config.php:2128 -#: ../../enterprise/meta/general/login_page.php:207 -#: ../../enterprise/meta/include/process_reset_pass.php:147 -#: ../../enterprise/meta/include/reset_pass.php:123 -msgid "METACONSOLE" -msgstr "METACONSOLA" +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " +"higher." +msgstr "" +"Para que Pandora FMS funcione correctamente, PHP debe estar actualizado a la " +"versión 7.0 o superior." -#: ../../include/functions_reports.php:631 -#: ../../include/functions_reports.php:635 -#: ../../include/functions_reports.php:640 -#: ../../include/functions_reports.php:646 -#: ../../include/functions_reports.php:652 -#: ../../include/functions_reports.php:656 -#: ../../include/functions_reports.php:660 -#: ../../include/functions_reports.php:667 -#: ../../include/functions_reports.php:673 -#: ../../include/functions_reports.php:678 -#: ../../include/functions_groups.php:123 -#: ../../include/functions_groups.php:187 -#: ../../operation/agentes/ver_agente.php:1266 -#: ../../operation/search_results.php:118 -msgid "Graphs" -msgstr "Gráficos" +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "Si no, ciertas funcionalidades no estarán disponibles." -#: ../../include/functions_reports.php:632 -#: ../../include/functions_reporting.php:7605 -#: ../../include/functions_reporting.php:7744 -msgid "Simple graph" -msgstr "Gráfico simple" +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "Descarga de informes en formato PDF" -#: ../../include/functions_reports.php:636 -#: ../../enterprise/include/functions_reporting.php:7481 -msgid "Simple baseline graph" -msgstr "Gráfico simple de línea base" +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "Envío de emails" -#: ../../include/functions_reports.php:653 -#: ../../enterprise/include/functions_reporting_csv.php:930 -msgid "SQL vertical bar graph" -msgstr "Gráfico de barra vertical SQL" +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "Colecciones de la metaconsola" -#: ../../include/functions_reports.php:657 -#: ../../enterprise/include/functions_reporting_csv.php:934 -msgid "SQL pie graph" -msgstr "Gráfico circular de SQL" +#: ../../include/class/ConsoleSupervisor.php:1550 +msgid "Historical database not available" +msgstr "Base de datos de histórico no disponible" -#: ../../include/functions_reports.php:661 -msgid "SQL horizonal bar graph" -msgstr "Gráfico de barra horizontal SQL" +#: ../../include/class/ConsoleSupervisor.php:1551 +msgid "" +"Historical database is enabled, though not accessible with the current " +"configuration." +msgstr "" +"La base de datos de histórico está habilitada pero no accesible con la " +"configuración actual." -#: ../../include/functions_reports.php:668 -msgid "Automatic combined Graph" -msgstr "Gráfico automático combinado" +#: ../../include/class/ConsoleSupervisor.php:1594 +msgid "Database maintenance problem" +msgstr "Problema de mantenimiento de la base de datos" -#: ../../include/functions_reports.php:674 -msgid "Availability graph" -msgstr "Gráfico de disponibilidad" +#: ../../include/class/ConsoleSupervisor.php:1596 +#, php-format +msgid "" +"Your database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it " +"as soon as possible." +msgstr "" +"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. " +"Diríjase a la documentación para ver cómo llevar a cabo el proceso de " +"mantenimiento en %s y habilítelo lo antes posible." -#: ../../include/functions_reports.php:679 -msgid "Module Histogram graph" -msgstr "Gráfico de histórico de módulo" +#: ../../include/class/ConsoleSupervisor.php:1656 +msgid "Historical database maintenance problem." +msgstr "Problema de mantenimiento de la base de datos de histórico." -#: ../../include/functions_reports.php:683 -#: ../../include/functions_reports.php:688 -#: ../../include/functions_reports.php:692 -#: ../../include/functions_reports.php:696 -#: ../../include/functions_reports.php:702 -#: ../../enterprise/include/functions_reporting_csv.php:1744 -#: ../../enterprise/operation/services/services.list.php:414 -#: ../../enterprise/operation/services/services.service.php:175 -msgid "SLA" -msgstr "SLA" +#: ../../include/class/ConsoleSupervisor.php:1658 +#, php-format +msgid "" +"Your historical database hasn't been through maintenance for 48hrs. Please, " +"check documentation on how to perform this maintenance process on %s and " +"enable it as soon as possible." +msgstr "" +"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. " +"Diríjase a la documentación para ver cómo llevar a cabo el proceso de " +"mantenimiento en %s y habilítelo lo antes posible." -#: ../../include/functions_reports.php:684 -#: ../../include/functions_reporting.php:871 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 -#: ../../enterprise/godmode/services/services.service.php:455 -#: ../../enterprise/include/functions_reporting_csv.php:1274 -msgid "S.L.A." -msgstr "SLA" +#: ../../include/class/ConsoleSupervisor.php:1696 +msgid "Historical database MR mismatch" +msgstr "Error de coincidencia de la base de datos de histórico MR" -#: ../../include/functions_reports.php:689 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:128 -#: ../../enterprise/include/functions_reporting.php:2088 -msgid "Monthly S.L.A." -msgstr "SLA mensual" +#: ../../include/class/ConsoleSupervisor.php:1697 +msgid "" +"Your historical database is not using the same schema as the main DB. This " +"could produce anomalies while storing historical data." +msgstr "" +"La base de datos de histórico no usa el mismo esquema que la base de datos " +"principal. Esto podría causar anomalías al guardar datos de histórico." -#: ../../include/functions_reports.php:693 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 -#: ../../enterprise/include/functions_reporting.php:3035 -msgid "Weekly S.L.A." -msgstr "SLA semanal" +#: ../../include/class/ConsoleSupervisor.php:1738 +msgid "Log collector cannot connect to ElasticSearch" +msgstr "El colector de logs no puede conectar con ElasticSearch" -#: ../../include/functions_reports.php:697 -#: ../../enterprise/include/functions_reporting.php:4010 -msgid "Hourly S.L.A." -msgstr "SLA cada hora" +#: ../../include/class/ConsoleSupervisor.php:1739 +msgid "ElasticSearch is not available using current configuration." +msgstr "ElasticSearch no está disponible con la configuración actual." -#: ../../include/functions_reports.php:703 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:134 -#: ../../enterprise/include/functions_reporting.php:5210 -msgid "Services S.L.A." -msgstr "SLA de servicios" +#: ../../include/class/ConsoleSupervisor.php:1808 +msgid "Metaconsole DB is not available." +msgstr "La base de datos de la Metaconsola no está disponible." -#: ../../include/functions_reports.php:709 -#: ../../include/functions_reports.php:713 -msgid "Forecasting" -msgstr "Predicción" +#: ../../include/class/ConsoleSupervisor.php:1809 +msgid "Cannot connect with Metaconsole DB using current configuration." +msgstr "" +"No puede conectar con la base de datos de la Metaconsola con la " +"configuración actual." -#: ../../include/functions_reports.php:710 -#: ../../enterprise/include/functions_reporting_csv.php:675 -msgid "Prediction date" -msgstr "Fecha de predicción" +#: ../../include/class/ConsoleSupervisor.php:1837 +msgid "Scheduled downtime running." +msgstr "Ejecución de parada planificada." -#: ../../include/functions_reports.php:714 -msgid "Projection graph" -msgstr "Gráfico de proyección" +#: ../../include/class/ConsoleSupervisor.php:1838 +msgid "" +"A scheduled downtime is running. Some monitoring data won't be available " +"while downtime is taking place." +msgstr "" +"Se está ejecutando una parada planificada. Algunos de los datos de " +"monitorización no estarán disponibles durante dicha parada." -#: ../../include/functions_reports.php:719 -msgid "Avg. Value" -msgstr "Valor medio" +#: ../../include/class/ConsoleSupervisor.php:1994 +msgid "Downtime scheduled soon." +msgstr "Parada planificada próximamente." -#: ../../include/functions_reports.php:731 -msgid "Monitor report" -msgstr "Informe de monitores" +#: ../../include/class/ConsoleSupervisor.php:1996 +#, php-format +msgid "" +"A scheduled downtime is going to be executed from %s to %s. Some monitoring " +"data won't be available while downtime is taking place." +msgstr "" +"Se ejecutará una parada planificada de %s a %s. Algunos de los datos de " +"monitorización no estarán disponibles durante dicha parada." -#: ../../include/functions_reports.php:735 -msgid "Serialize data" -msgstr "Serializar datos" +#: ../../include/class/ConsoleSupervisor.php:2026 +msgid "This instance is not registered in the Update manager section" +msgstr "La instancia no está registrada en la sección Update manager" -#: ../../include/functions_reports.php:739 -#: ../../include/functions_reporting.php:4831 -#: ../../include/functions_reporting.php:7482 -#: ../../enterprise/include/functions_reporting_csv.php:963 -#: ../../enterprise/include/functions_reporting_csv.php:981 -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Summatory" -msgstr "Sumatorio" +#: ../../include/class/ConsoleSupervisor.php:2027 +msgid "" +"Click here to start the " +"registration process" +msgstr "" +"Haz clic aquí para empezar el proceso " +"de registro." -#: ../../include/functions_reports.php:743 -msgid "Historical Data" -msgstr "Datos históricos" +#: ../../include/class/ConsoleSupervisor.php:2059 +msgid "Default password for \"Admin\" user has not been changed" +msgstr "No se ha cambiado la contraseña por defecto del usuario \"Admin\"" -#: ../../include/functions_reports.php:747 -#: ../../include/functions_reporting_html.php:2918 -#: ../../include/functions_reporting.php:7109 -#: ../../enterprise/include/functions_reporting_csv.php:1104 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -#: ../../enterprise/include/functions_reporting_csv.php:1122 -#: ../../enterprise/include/functions_reporting_csv.php:1133 -msgid "Increment" -msgstr "Incremento" +#: ../../include/class/ConsoleSupervisor.php:2060 +msgid "" +"Please, change the default password since it is a commonly reported " +"vulnerability." +msgstr "" +"Cambie la contraseña por defecto puesto que es una vulnerabilidad frecuente." -#: ../../include/functions_reports.php:751 -#: ../../include/functions_reports.php:757 -#: ../../include/functions_reports.php:763 -#: ../../include/functions_reports.php:769 -#: ../../include/functions_reports.php:775 -#: ../../include/functions_reports.php:784 -#: ../../include/functions_reports.php:790 -#: ../../include/functions_reports.php:794 -#: ../../include/functions_reports.php:798 -msgid "Grouped" -msgstr "Agrupado" +#: ../../include/class/ConsoleSupervisor.php:2087 +msgid "Default font doesn't exist" +msgstr "No existe una fuente por defecto" -#: ../../include/functions_reports.php:758 -#: ../../include/functions_reports.php:764 -#: ../../enterprise/include/functions_reporting_csv.php:841 -msgid "Group report" -msgstr "Grupo de informes" +#: ../../include/class/ConsoleSupervisor.php:2088 +msgid "" +"Your defined font doesn't exist or is not defined. Please, check font " +"parameters in your config" +msgstr "" +"La fuente seleccionada no existe o no está definida. Compruebe los " +"parámetros de fuente en la configuración" -#: ../../include/functions_reports.php:770 -#: ../../include/functions_reporting.php:2369 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 -#: ../../enterprise/include/functions_reporting_csv.php:755 -msgid "Exception" -msgstr "Excepción" +#: ../../include/class/ConsoleSupervisor.php:2111 +msgid "Developer mode is enabled" +msgstr "El modo «desarrollador» está activado." -#: ../../include/functions_reports.php:791 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -msgid "Top n" +#: ../../include/class/ConsoleSupervisor.php:2113 +#, php-format +msgid "" +"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode " +"and should be disabled in a production environment. This value is located in " +"the main index.php file" +msgstr "" +"%s tiene el modo \"develop_bypass\" habilitado. Este es un modo de " +"desarrollo y debe estar desactivado en un entorno de producción. El valor se " +"encuentra en el archivo principal index.php" + +#: ../../include/class/ConsoleSupervisor.php:2137 +msgid "Event storm protection is enabled." +msgstr "La protección de tormenta de eventos está habilitada." + +#: ../../include/class/ConsoleSupervisor.php:2138 +msgid "" +"Some events may get lost while this mode is enabled. The server must be " +"restarted after altering this setting." +msgstr "" +"Podrían perderse algunos elementos al habilitar este modo. Reinicie el " +"servidor después de las modificaciones" + +#: ../../include/class/ConsoleSupervisor.php:2164 +msgid "Failed to retrieve updates, please configure utility" +msgstr "No se han podido obtener actualizaciones, configure la herramienta" + +#: ../../include/class/ConsoleSupervisor.php:2182 +#, php-format +msgid "New %s Console update" +msgstr "Nueva actualización de la consola %s" + +#: ../../include/class/ConsoleSupervisor.php:2185 +msgid "" +"There is a new update available. Please.About minor release update." +msgstr "" +"Hay una o varias actualizaciones disponibles. . Sobre la actualización " +"menor." + +#: ../../include/class/ConsoleSupervisor.php:2249 +msgid "Discovery relies on an appropriate cron setup." +msgstr "Discovery depende de la configuración cron adecuada" + +#: ../../include/class/ConsoleSupervisor.php:2265 +msgid "Please, make sure process is not locked." +msgstr "Asegúrese de que el proceso no está bloqueado." + +#: ../../include/class/ConsoleSupervisor.php:2271 +msgid "DiscoveryConsoleTasks is not configured." +msgstr "DiscoveryConsoleTasks no está configurado." + +#: ../../include/class/ConsoleSupervisor.php:2378 +#, php-format +msgid "%s version misaligned with Console" +msgstr "La versión de %s no está alineada con la consola" + +#: ../../include/class/ConsoleSupervisor.php:2382 +#, php-format +msgid "" +"Server %s and this console have different versions. This might cause several " +"malfunctions. Please, update this server." +msgstr "" +"El servidor de %s y la consola tienen diferentes versiones. Esto podría " +"causar diversos fallos. Actualice el servidor." + +#: ../../include/class/ConsoleSupervisor.php:2434 +msgid "AllowOverride is disabled" +msgstr "AllowOverride está deshabilitado" + +#: ../../include/class/ConsoleSupervisor.php:2476 +msgid "Desynchronized operation on the node " +msgstr "Operación desincronizada en el nodo " + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "Bienvenido a" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "No volver a mostrar" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "Cancelar ventana de configuración" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "¿Está seguro de que desea borrar este tutorial?" + +#: ../../include/class/WelcomeWindow.class.php:427 +msgid "Please ensure mail configuration matches your needs" +msgstr "" +"Asegúrese de que la configuración del correo electrónico se ajusta a sus " +"necesidades" + +#: ../../include/class/WelcomeWindow.class.php:461 +msgid "Create an agent" +msgstr "Crear agente" + +#: ../../include/class/WelcomeWindow.class.php:486 +msgid "Create a module to check if an agent is online" +msgstr "Crear módulo para saber si el agente está en línea" + +#: ../../include/class/WelcomeWindow.class.php:511 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "" +"Manténgase informado de cualquier problema, cree una alerta para el módulo" + +#: ../../include/class/WelcomeWindow.class.php:536 +msgid "Discover hosts and devices in your network" +msgstr "Explorar hosts y dispositivos en la red" + +#: ../../include/class/WelcomeWindow.class.php:564 +msgid "" +"If something is not working as expected, look for this icon and report!" +msgstr "" +"Si algo no funciona como debería, !busque este icono e informe del problema¡" + +#: ../../include/class/AgentWizard.class.php:186 +msgid "WMI Explorer" +msgstr "Buscador WMI" + +#: ../../include/class/AgentWizard.class.php:191 +msgid "Nothing" +msgstr "Nada" + +#: ../../include/class/AgentWizard.class.php:244 +msgid "Use agent IP" +msgstr "Usar IP de agente" + +#: ../../include/class/AgentWizard.class.php:441 +msgid "Module info" +msgstr "Información del módulo" + +#: ../../include/class/AgentWizard.class.php:644 +#, php-format +msgid "Perform %s" +msgstr "Llevar a cabo %s" + +#: ../../include/functions_reporting.php:361 +msgid " agents" +msgstr " agentes" + +#: ../../include/functions_reporting.php:371 +msgid " modules" +msgstr " módulos" + +#: ../../include/functions_reporting.php:1377 +msgid "Top N" msgstr "Top N" -#: ../../include/functions_reports.php:795 -msgid "Network interfaces" -msgstr "Interfaces de red" +#: ../../include/functions_reporting.php:1505 +msgid "Insuficient data" +msgstr "Datos insuficientes" -#: ../../include/functions_reports.php:799 -#: ../../include/functions_reporting.php:6224 -#: ../../include/functions_reporting.php:6499 -#: ../../enterprise/include/functions_reporting.php:1076 -#: ../../enterprise/include/functions_reporting_csv.php:445 -msgid "Availability" -msgstr "Disponibilidad" +#: ../../include/functions_reporting.php:1756 +msgid "Event Report Group" +msgstr "Informe de eventos del grupo" -#: ../../include/functions_reports.php:803 -#: ../../include/functions_reports.php:807 -msgid "Text/HTML " -msgstr "Texto/HTML " +#: ../../include/functions_reporting.php:2017 +msgid "Event Report Module" +msgstr "Informe de eventos del módulo" -#: ../../include/functions_reports.php:808 -msgid "Import text from URL" -msgstr "Importar texto de una URL" +#: ../../include/functions_reporting.php:2298 +msgid "Agent/Modules" +msgstr "Agentes/módulos" -#: ../../include/functions_reports.php:813 -msgid "Module alert report" -msgstr "Informe de alerta de módulo" +#: ../../include/functions_reporting.php:2397 +msgid "Exception - Everything" +msgstr "Excepción - Todo" -#: ../../include/functions_reports.php:817 -msgid "Agent alert report " -msgstr "Informe de alerta de agente " - -#: ../../include/functions_reports.php:822 -msgid "Group alert report" -msgstr "Informe de alerta de grupo" - -#: ../../include/functions_reports.php:828 -msgid "Module event report" -msgstr "Informe de evento de módulo" - -#: ../../include/functions_reports.php:832 -msgid "Agent event report" -msgstr "Informe de evento de agente" - -#: ../../include/functions_reports.php:836 -msgid "Group event report" -msgstr "Informe de evento de grupo" - -#: ../../include/functions_reports.php:847 -msgid "Inventory changes" -msgstr "Inventario de cambios" - -#: ../../include/functions_reports.php:855 -#: ../../include/functions_reporting.php:4676 -msgid "Agent configuration" -msgstr "Configuración de agentes" - -#: ../../include/functions_reports.php:859 -#: ../../include/functions_reporting.php:3433 -msgid "Group configuration" -msgstr "Configuración del grupo" - -#: ../../include/functions_reports.php:863 -msgid "Netflow area chart" -msgstr "Gráfico de área de Netflow" - -#: ../../include/functions_reports.php:867 -msgid "Netflow data table" -msgstr "Tabla de datos de Netflow" - -#: ../../include/functions_reports.php:871 -msgid "Netflow summary table" -msgstr "Tabla de resumen de Netflow" - -#: ../../include/functions_reports.php:877 -#: ../../enterprise/include/functions_reporting.php:1968 -msgid "Log" -msgstr "Log" - -#: ../../include/functions_reports.php:878 -#: ../../enterprise/include/functions_reporting.php:1955 -msgid "Log report" -msgstr "Informe de log" - -#: ../../include/functions_reports.php:884 -#: ../../enterprise/meta/general/logon_ok.php:37 -msgid "Network traffic" -msgstr "Tráfico de la red" - -#: ../../include/functions_reports.php:885 -msgid "Network Traffic Top N" -msgstr "Primeros N de tráfico de red" - -#: ../../include/functions_cron.php:446 -msgid "Scheduled jobs" -msgstr "Tareas programadas" - -#: ../../include/functions_cron.php:455 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:593 -#: ../../enterprise/include/functions_tasklist.php:168 -#: ../../enterprise/meta/advanced/cron_main.php:322 -msgid "Task" -msgstr "Tarea" - -#: ../../include/functions_cron.php:456 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:603 -#: ../../enterprise/include/functions_tasklist.php:169 -#: ../../enterprise/meta/advanced/cron_main.php:353 -msgid "Scheduled" -msgstr "Programado" - -#: ../../include/functions_cron.php:457 -#: ../../enterprise/include/functions_tasklist.php:170 -#: ../../enterprise/meta/advanced/cron_main.php:366 -msgid "Next execution" -msgstr "Siguiente ejecución" - -#: ../../include/functions_cron.php:458 -#: ../../enterprise/include/functions_tasklist.php:171 -msgid "Last run" -msgstr "Última ejecución" - -#: ../../include/functions_cron.php:481 ../../include/functions_cron.php:519 -#: ../../include/functions_cron.php:570 ../../include/functions_cron.php:596 -#: ../../include/functions_cron.php:632 ../../include/functions_cron.php:662 -#: ../../enterprise/include/functions_tasklist.php:200 -#: ../../enterprise/include/functions_tasklist.php:243 -#: ../../enterprise/include/functions_tasklist.php:295 -#: ../../enterprise/include/functions_tasklist.php:322 -#: ../../enterprise/include/functions_tasklist.php:359 -#: ../../enterprise/include/functions_tasklist.php:390 -#: ../../enterprise/include/functions_tasklist.php:414 -msgid "Force run" -msgstr "Forzar ejecución" - -#: ../../include/functions_cron.php:507 -#: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1008 -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_tasklist.php:223 -#: ../../enterprise/operation/reporting/custom_reporting.php:81 -msgid "Report type" -msgstr "Tipo de informe" - -#: ../../include/functions_cron.php:558 -#: ../../enterprise/include/functions_cron.php:219 -#: ../../enterprise/include/functions_tasklist.php:279 -msgid "Report per agent" -msgstr "Informe por agente" - -#: ../../include/functions_cron.php:586 -#: ../../enterprise/include/functions_cron.php:273 -#: ../../enterprise/include/functions_tasklist.php:308 -msgid "Custom script" -msgstr "Script personalizado" - -#: ../../include/functions_servers.php:560 -#: ../../include/functions_servers.php:1187 -msgid "Data server" -msgstr "Servidor de datos" - -#: ../../include/functions_servers.php:570 -#: ../../include/functions_servers.php:1190 -msgid "Network server" -msgstr "Servidor de red" - -#: ../../include/functions_servers.php:580 -msgid "SNMP Trap server" -msgstr "Servidor de traps SNMP" - -#: ../../include/functions_servers.php:600 -#: ../../include/functions_servers.php:1202 -msgid "Plugin server" -msgstr "Servidor de plugins" - -#: ../../include/functions_servers.php:610 -msgid "Prediction server" -msgstr "Servidor de predicción" - -#: ../../include/functions_servers.php:620 -#: ../../include/functions_servers.php:1208 -msgid "WMI server" -msgstr "Servidor WMI" - -#: ../../include/functions_servers.php:630 -#: ../../include/functions_servers.php:1214 -#: ../../enterprise/godmode/servers/manage_export_form.php:73 -msgid "Export server" -msgstr "Servidor de exportación" - -#: ../../include/functions_servers.php:640 -#: ../../include/functions_servers.php:1217 -msgid "Inventory server" -msgstr "Servidor de inventario" - -#: ../../include/functions_servers.php:650 -#: ../../include/functions_servers.php:1211 -msgid "Web server" -msgstr "Servidor web" - -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1220 -msgid "Event server" -msgstr "Servidor de eventos" - -#: ../../include/functions_servers.php:670 -#: ../../include/functions_servers.php:1196 -msgid "Enterprise ICMP server" -msgstr "Servidor ICMP Enterprise" - -#: ../../include/functions_servers.php:680 -#: ../../include/functions_servers.php:1199 -msgid "Enterprise SNMP server" -msgstr "Servidor SNMP Enterprise" - -#: ../../include/functions_servers.php:690 -msgid "Enterprise Satellite server" -msgstr "Servidor Enterprise Satélite" - -#: ../../include/functions_servers.php:700 -msgid "Enterprise Transactional server" -msgstr "Servidor transaccional Enterprise" - -#: ../../include/functions_servers.php:710 -msgid "Mainframe server" -msgstr "Servidor mainframe" - -#: ../../include/functions_servers.php:720 -msgid "Sync server" -msgstr "Servidor sync" - -#: ../../include/functions_servers.php:730 -msgid "Wux server" -msgstr "Servidor WUX" - -#: ../../include/functions_servers.php:740 -#: ../../include/functions_servers.php:1226 -msgid "Log server" -msgstr "Servidor de registros" - -#: ../../include/functions_servers.php:750 -msgid "Autoprovision server" -msgstr "Servidor de auto aprovisionamiento" - -#: ../../include/functions_servers.php:760 -msgid "Migration server" -msgstr "Servidor de migración" - -#: ../../include/functions_servers.php:1193 -msgid "SNMP server" -msgstr "Servidor SNMP" - -#: ../../include/functions_servers.php:1205 -msgid "Prediction Server" -msgstr "Servidor de predicción" - -#: ../../include/functions_servers.php:1229 -msgid "WUX server" -msgstr "Servidor WUX" - -#: ../../include/functions_snmp.php:65 -msgid "Load Average (Last minute)" -msgstr "Carga media (última hora)" - -#: ../../include/functions_snmp.php:69 -msgid "Load Average (Last 5 minutes)" -msgstr "Carga media (últimos 5 minutos)" - -#: ../../include/functions_snmp.php:73 -msgid "Load Average (Last 15 minutes)" -msgstr "Carga media (últimos 15 minutos)" - -#: ../../include/functions_snmp.php:77 -msgid "Total Swap Size configured for the host" -msgstr "Tamaño de intercambio total configurado para el host" - -#: ../../include/functions_snmp.php:81 -msgid "Available Swap Space on the host" -msgstr "Espacio de intercambio disponible en el host" - -#: ../../include/functions_snmp.php:85 -msgid "Total Real/Physical Memory Size on the host" -msgstr "Tamaño de memoria real/física en el servidor" - -#: ../../include/functions_snmp.php:89 -msgid "Available Real/Physical Memory Space on the host" -msgstr "Memoria real/física disponible en el servidor" - -#: ../../include/functions_snmp.php:93 -msgid "Total Available Memory on the host" -msgstr "Memoria total disponible" - -#: ../../include/functions_snmp.php:97 -msgid "Total Cached Memory" -msgstr "Memoria de caché total" - -#: ../../include/functions_snmp.php:101 -msgid "Total Buffered Memory" -msgstr "Memoria total del búfer" - -#: ../../include/functions_snmp.php:105 -msgid "Amount of memory swapped in from disk (kB/s)" -msgstr "La cantidad de memoria intercambiada desde el disco (kB/s)" - -#: ../../include/functions_snmp.php:109 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "Cantidad de memoria intercambiada con el disco (kB/s)" - -#: ../../include/functions_snmp.php:113 -msgid "Number of blocks sent to a block device" -msgstr "Número de bloques enviado al dispositivo de bloques" - -#: ../../include/functions_snmp.php:117 -msgid "Number of blocks received from a block device" -msgstr "Número de bloques recibidos del dispositivo de bloques" - -#: ../../include/functions_snmp.php:121 -msgid "Number of interrupts processed" -msgstr "Número de interrupciones procesadas" - -#: ../../include/functions_snmp.php:125 -msgid "Number of context switches" -msgstr "Número de cambios de contexto" - -#: ../../include/functions_snmp.php:129 -msgid "user CPU time" -msgstr "tiempo de CPU de usuario" - -#: ../../include/functions_snmp.php:133 -msgid "system CPU time" -msgstr "tiempo de CPU del sistema" - -#: ../../include/functions_snmp.php:137 -msgid "idle CPU time" -msgstr "tiempo de inactividad de la CPU" - -#: ../../include/functions_snmp.php:141 -msgid "system Up time" -msgstr "Tiempo de actividad del sistema" - -#: ../../include/functions_snmp.php:349 -msgid "Pagination" -msgstr "Paginación" - -#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 -msgid "Group by Enterprise String / IP" -msgstr "Agrupar por Cadena Enterprise/IP" - -#: ../../include/functions_snmp.php:451 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filter" -msgstr "Filtro activo" - -#: ../../include/functions_snmp.php:451 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filters" -msgstr "Filtros activos" - -#: ../../include/functions_db.php:115 +#: ../../include/functions_reporting.php:2403 #, php-format -msgid "Error connecting to database %s at %s." -msgstr "Error al conectar a la base de datos %s el %s" +msgid "Exception - Modules over or equal to %s" +msgstr "Excepción - Módulos por encima de o igual a %s" -#: ../../include/functions_db.php:1749 -msgid "Database debug" -msgstr "Depurar BD" - -#: ../../include/functions_db.php:1765 -msgid "SQL sentence" -msgstr "Consulta SQL" - -#: ../../include/functions_db.php:1767 -msgid "Rows" -msgstr "Filas" - -#: ../../include/functions_db.php:1768 -msgid "Saved" -msgstr "Guardado" - -#: ../../include/functions_db.php:1769 -msgid "Time (ms)" -msgstr "Tiempo (ms)" - -#: ../../include/functions_snmp_browser.php:503 -msgid "Numeric OID" -msgstr "OID numérico" - -#: ../../include/functions_snmp_browser.php:521 -msgid "Syntax" -msgstr "Sintaxis" - -#: ../../include/functions_snmp_browser.php:527 -msgid "Display hint" -msgstr "Activar indicación" - -#: ../../include/functions_snmp_browser.php:533 -msgid "Max access" -msgstr "Acceso máximo" - -#: ../../include/functions_snmp_browser.php:555 -msgid "OID Information" -msgstr "Información OID" - -#: ../../include/functions_snmp_browser.php:633 -msgid "Starting OID" -msgstr "Iniciar OID" - -#: ../../include/functions_snmp_browser.php:682 -msgid "Server to execute" -msgstr "Servidor a ejecutar" - -#: ../../include/functions_snmp_browser.php:685 -msgid "Browse" -msgstr "Examinar" - -#: ../../include/functions_snmp_browser.php:731 -msgid "First match" -msgstr "Primera correspondencia" - -#: ../../include/functions_snmp_browser.php:732 -msgid "Previous match" -msgstr "Coincidencia anterior" - -#: ../../include/functions_snmp_browser.php:733 -msgid "Next match" -msgstr "Siguiente coincidencia" - -#: ../../include/functions_snmp_browser.php:734 -msgid "Last match" -msgstr "Última coincidencia" - -#: ../../include/functions_snmp_browser.php:741 -msgid "Expand the tree (can be slow)" -msgstr "Expandir el árbol (podría llevar tiempo)" - -#: ../../include/functions_snmp_browser.php:746 -msgid "Collapse the tree" -msgstr "Contraer el árbol" - -#: ../../include/functions_snmp_browser.php:765 -msgid "SNMP v3 options" -msgstr "Opciones SNMP v3" - -#: ../../include/functions_snmp_browser.php:768 -msgid "Search options" -msgstr "Opciones de búsqueda" - -#: ../../include/functions_snmp_browser.php:778 -msgid "Search matches" -msgstr "Buscar coincidencias" - -#: ../../include/functions_events.php:60 -#: ../../include/functions_events.php.orig:58 -#: ../../include/functions_modules.php:2426 -#: ../../include/functions_modules.php:3393 -#: ../../mobile/operation/modules.php:515 -#: ../../mobile/operation/modules.php:578 -#: ../../operation/agentes/status_monitor.php:1352 -#: ../../operation/events/events.php:1837 ../../operation/search_modules.php:90 -#: ../../enterprise/operation/agentes/tag_view.php:918 -msgid "NOT INIT" -msgstr "No iniciado" - -#: ../../include/functions_events.php:65 ../../include/functions_events.php:91 -#: ../../include/functions_events.php.orig:63 -#: ../../include/functions_events.php.orig:89 -#: ../../include/functions_ui.php:3495 ../../operation/events/events.php:1779 -#: ../../operation/events/events.php:1844 -msgid "ALERT" -msgstr "ALERTA" - -#: ../../include/functions_events.php:98 -#: ../../include/functions_events.php:2673 -#: ../../include/functions_events.php.orig:96 -#: ../../include/functions_events.php.orig:2579 -#: ../../include/functions_ui.php:3504 ../../include/functions_graph.php:3384 -#: ../../operation/events/events.php:1788 -msgid "SYSTEM" -msgstr "SISTEMA" - -#: ../../include/functions_events.php:132 -#: ../../include/functions_events.php.orig:130 -msgid "NEW" -msgstr "NUEVO" - -#: ../../include/functions_events.php:135 -#: ../../include/functions_events.php.orig:133 -msgid "IN PROCESS" -msgstr "EN PROCESO" - -#: ../../include/functions_events.php:138 -#: ../../include/functions_events.php.orig:136 -msgid "VALIDATED" -msgstr "VALIDADO" - -#: ../../include/functions_events.php:157 -#: ../../include/functions_events.php.orig:155 -#: ../../include/functions_ui.php:3573 ../../operation/events/events.php:1716 -msgid "MAINTENANCE" -msgstr "MANTENIMIENTO" - -#: ../../include/functions_events.php:160 -#: ../../include/functions_events.php.orig:158 -#: ../../include/functions_ui.php:3578 ../../operation/events/events.php:1721 -msgid "INFORMATIONAL" -msgstr "INFORMATIVO" - -#: ../../include/functions_events.php:163 -#: ../../include/functions_events.php.orig:161 -#: ../../include/functions_ui.php:3603 ../../operation/events/events.php:1726 -msgid "MAJOR" -msgstr "MAYOR" - -#: ../../include/functions_events.php:166 -#: ../../include/functions_events.php.orig:164 -#: ../../include/functions_ui.php:3598 ../../operation/events/events.php:1731 -msgid "MINOR" -msgstr "MENOR" - -#: ../../include/functions_events.php:189 -#: ../../include/functions_events.php.orig:187 -#: ../../enterprise/meta/include/functions_events_meta.php:58 -msgid "Event id" -msgstr "Identificación del evento" - -#: ../../include/functions_events.php:190 -#: ../../include/functions_events.php:2388 -#: ../../include/functions_events.php:4490 -#: ../../include/functions_events.php.orig:188 -#: ../../include/functions_events.php.orig:2294 -#: ../../include/functions_events.php.orig:4384 -#: ../../include/functions_reporting_html.php:1183 -#: ../../include/functions_reporting_html.php:1191 -#: ../../include/functions_reporting_html.php:3951 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:395 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:451 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503 -#: ../../enterprise/meta/include/functions_events_meta.php:62 -msgid "Event name" -msgstr "Nombre del evento" - -#: ../../include/functions_events.php:197 -#: ../../include/functions_events.php.orig:195 -msgid "Agent module" -msgstr "Módulo de agente" - -#: ../../include/functions_events.php:203 -#: ../../include/functions_events.php:4268 -#: ../../include/functions_events.php.orig:201 -#: ../../include/functions_events.php.orig:4175 -#: ../../enterprise/meta/include/functions_events_meta.php:114 -msgid "Extra id" -msgstr "ID extra" - -#: ../../include/functions_events.php:209 -#: ../../include/functions_events.php:6111 -#: ../../include/functions_events.php.orig:207 -#: ../../include/functions_events.php.orig:6015 -#: ../../include/functions_reporting_html.php:3882 ../../operation/tree.php:219 -#: ../../enterprise/dashboard/widgets/module_status.php:30 -#: ../../enterprise/dashboard/widgets/module_status.php:223 -#: ../../enterprise/meta/include/functions_events_meta.php:138 -msgid "Module status" -msgstr "Estado del módulo" - -#: ../../include/functions_events.php:238 -#: ../../include/functions_events.php.orig:236 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:105 -#: ../../enterprise/include/functions_inventory.php:76 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:409 -msgid "Agent alias" -msgstr "Alias del agente" - -#: ../../include/functions_events.php:2353 -#: ../../include/functions_events.php:2356 -#: ../../include/functions_events.php.orig:2259 -#: ../../include/functions_events.php.orig:2262 -#: ../../include/functions_reporting_html.php:4849 -#: ../../include/functions_reporting_html.php:5034 -#: ../../include/functions_reporting.php:1827 -#: ../../include/functions_reporting.php:2117 -#: ../../mobile/operation/events.php:858 -#: ../../operation/events/events.build_table.php:134 -#: ../../operation/events/events.build_table.php:1141 -msgid "No events" -msgstr "No hay eventos" - -#: ../../include/functions_events.php:2366 -#: ../../include/functions_events.php.orig:2272 -#: ../../operation/agentes/tactical.php:197 -msgid "Latest events" -msgstr "Últimos eventos" - -#: ../../include/functions_events.php:2406 -#: ../../include/functions_events.php:3142 -#: ../../include/functions_events.php:3422 -#: ../../include/functions_events.php:3431 -#: ../../include/functions_events.php:3438 -#: ../../include/functions_events.php:3445 -#: ../../include/functions_events.php:5535 -#: ../../include/functions_events.php:5543 -#: ../../include/functions_events.php.orig:2312 -#: ../../include/functions_events.php.orig:3048 -#: ../../include/functions_events.php.orig:3328 -#: ../../include/functions_events.php.orig:3337 -#: ../../include/functions_events.php.orig:3344 -#: ../../include/functions_events.php.orig:3351 -#: ../../include/functions_events.php.orig:5439 -#: ../../include/functions_events.php.orig:5447 -#: ../../include/functions_graph.php:3255 -#: ../../operation/snmpconsole/snmp_view.php:564 -#: ../../operation/snmpconsole/snmp_view.php:886 -#: ../../operation/snmpconsole/snmp_view.php:1153 -msgid "Validated" -msgstr "Validado" - -#: ../../include/functions_events.php:2406 -#: ../../include/functions_events.php.orig:2312 -#: ../../enterprise/operation/agentes/policy_view.php:53 -msgid "V." -msgstr "V." - -#: ../../include/functions_events.php:2503 -#: ../../include/functions_events.php.orig:2409 -msgid "Events -by module-" -msgstr "Eventos -por módulo-" - -#: ../../include/functions_events.php:2509 -#: ../../include/functions_events.php.orig:2415 -#: ../../operation/agentes/tactical.php:214 -#: ../../operation/events/event_statistics.php:51 -msgid "Event graph" -msgstr "Gráfico de eventos" - -#: ../../include/functions_events.php:2511 -#: ../../include/functions_events.php.orig:2417 -#: ../../operation/agentes/tactical.php:217 -#: ../../operation/events/event_statistics.php:71 -msgid "Event graph by agent" -msgstr "Gráfico de eventos por agente" - -#: ../../include/functions_events.php:2637 -#: ../../include/functions_events.php.orig:2543 -msgid "Going to unknown" -msgstr "Cambiando a estado desconocido" - -#: ../../include/functions_events.php:2645 -#: ../../include/functions_events.php.orig:2551 -msgid "Alert manually validated" -msgstr "Alerta validada manualmente" - -#: ../../include/functions_events.php:2649 -#: ../../include/functions_events.php.orig:2555 -msgid "Going from critical to warning" -msgstr "Cambiando de crítico a advertencia" - -#: ../../include/functions_events.php:2655 -#: ../../include/functions_events.php.orig:2561 -msgid "Going up to critical state" -msgstr "Entrando en estado crítico" - -#: ../../include/functions_events.php:2661 -#: ../../include/functions_events.php.orig:2567 -msgid "Going up to normal state" -msgstr "Subiendo a estado normal" - -#: ../../include/functions_events.php:2665 -#: ../../include/functions_events.php.orig:2571 -msgid "Going down from normal to warning" -msgstr "Cambiando de normal a advertencia" - -#: ../../include/functions_events.php:2677 -#: ../../include/functions_events.php.orig:2583 -msgid "Discovery server detected a new host" -msgstr "El servidor Discovery ha detectado un host nuevo" - -#: ../../include/functions_events.php:2681 -#: ../../include/functions_events.php.orig:2587 -msgid "New agent created" -msgstr "Agente nuevo creado" - -#: ../../include/functions_events.php:2698 -#: ../../include/functions_events.php.orig:2604 -msgid "Unknown type:" -msgstr "Tipo desconocido:" - -#: ../../include/functions_events.php:3134 -#: ../../include/functions_events.php:3140 -#: ../../include/functions_events.php:3162 -#: ../../include/functions_events.php.orig:3040 -#: ../../include/functions_events.php.orig:3046 -#: ../../include/functions_events.php.orig:3068 -#: ../../enterprise/dashboard/widgets/events_list.php:64 -msgid "All event" -msgstr "Todos los eventos" - -#: ../../include/functions_events.php:3135 -#: ../../include/functions_events.php:3166 -#: ../../include/functions_events.php.orig:3041 -#: ../../include/functions_events.php.orig:3072 -msgid "Only new" -msgstr "Solo nuevos" - -#: ../../include/functions_events.php:3136 -#: ../../include/functions_events.php:3170 -#: ../../include/functions_events.php.orig:3042 -#: ../../include/functions_events.php.orig:3076 -#: ../../enterprise/dashboard/widgets/events_list.php:65 -msgid "Only validated" -msgstr "Solo eventos validados" - -#: ../../include/functions_events.php:3137 -#: ../../include/functions_events.php:3174 -#: ../../include/functions_events.php.orig:3043 -#: ../../include/functions_events.php.orig:3080 -msgid "Only in process" -msgstr "Solo en proceso" - -#: ../../include/functions_events.php:3138 -#: ../../include/functions_events.php:3178 -#: ../../include/functions_events.php.orig:3044 -#: ../../include/functions_events.php.orig:3084 -msgid "Only not validated" -msgstr "Solo no validados" - -#: ../../include/functions_events.php:3141 -#: ../../include/functions_events.php:3420 -#: ../../include/functions_events.php.orig:3047 -#: ../../include/functions_events.php.orig:3326 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:31 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 -msgid "New" -msgstr "Nuevo" - -#: ../../include/functions_events.php:3143 -#: ../../include/functions_events.php:3421 -#: ../../include/functions_events.php:3430 -#: ../../include/functions_events.php.orig:3049 -#: ../../include/functions_events.php.orig:3327 -#: ../../include/functions_events.php.orig:3336 -msgid "In process" -msgstr "En proceso" - -#: ../../include/functions_events.php:3144 -#: ../../include/functions_events.php.orig:3050 -msgid "Not Validated" -msgstr "No validado" - -#: ../../include/functions_events.php:3329 -#: ../../include/functions_events.php.orig:3235 -msgid "Change owner" -msgstr "Cambiar propietario" - -#: ../../include/functions_events.php:3405 -#: ../../include/functions_events.php.orig:3311 -msgid "Change status" -msgstr "Cambiar estado" - -#: ../../include/functions_events.php:3488 -#: ../../include/functions_events.php:4797 -#: ../../include/functions_events.php.orig:3394 -#: ../../include/functions_events.php.orig:4701 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:365 -msgid "Add comment" -msgstr "Añadir comentario" - -#: ../../include/functions_events.php:3508 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:6591 -#: ../../include/functions_events.php.orig:3414 -#: ../../include/functions_events.php.orig:3418 -#: ../../include/functions_events.php.orig:6495 -#: ../../operation/events/events.build_table.php:867 -#: ../../operation/events/events.php:1900 -msgid "Delete event" -msgstr "Eliminar evento" - -#: ../../include/functions_events.php:3532 -#: ../../include/functions_events.php.orig:3438 -msgid "Custom responses" -msgstr "Respuesta personalizada" - -#: ../../include/functions_events.php:3966 -#: ../../include/functions_events.php.orig:3872 -msgid "Extended information" -msgstr "Información extendida" - -#: ../../include/functions_events.php:3994 -#: ../../include/functions_events.php.orig:3900 -msgid "There was an error connecting to the node" -msgstr "Error al conectarse al nodo" - -#: ../../include/functions_events.php:4031 -#: ../../include/functions_events.php.orig:3937 -msgid "Agent details" -msgstr "Detalles del agente" - -#: ../../include/functions_events.php:4081 -#: ../../include/functions_events.php.orig:3987 -#: ../../operation/agentes/ver_agente.php:859 -#: ../../enterprise/operation/agentes/ver_agente.php:75 -msgid "Last remote contact" -msgstr "Último contacto remoto" - -#: ../../include/functions_events.php:4088 -#: ../../include/functions_events.php.orig:3994 -msgid "View custom fields" -msgstr "Ver campos personalizados" - -#: ../../include/functions_events.php:4111 -#: ../../include/functions_events.php.orig:4017 -msgid "Module details" -msgstr "Detalles del módulo" - -#: ../../include/functions_events.php:4127 -#: ../../include/functions_events.php.orig:4033 -msgid "No assigned" -msgstr "No asignado" - -#: ../../include/functions_events.php:4217 -#: ../../include/functions_events.php:4223 -#: ../../include/functions_events.php.orig:4124 -#: ../../include/functions_events.php.orig:4130 -msgid "Go to data overview" -msgstr "Ir a la vista general de datos" - -#: ../../include/functions_events.php:4323 -#: ../../include/functions_events.php.orig:4226 +#: ../../include/functions_reporting.php:2406 #, php-format -msgid "Invalid custom data: %s" -msgstr "Datos personalizados no válidos: %s" +msgid "Modules over or equal to %s" +msgstr "Módulos por encima de o igual a %s" -#: ../../include/functions_events.php:4485 -#: ../../include/functions_events.php:6000 -#: ../../include/functions_events.php.orig:4379 -#: ../../include/functions_events.php.orig:5904 -#: ../../mobile/operation/events.php:512 -#: ../../operation/events/events.build_table.php:162 -msgid "Event ID" -msgstr "ID del evento" +#: ../../include/functions_reporting.php:2411 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "Excepción - Módulos por debajo o igual a %s" -#: ../../include/functions_events.php:4498 -#: ../../include/functions_events.php.orig:4392 -msgid "First event" -msgstr "Primer evento" +#: ../../include/functions_reporting.php:2414 +#, php-format +msgid "Modules under or equal to %s" +msgstr "Módulos por debajo de o igual a %s" -#: ../../include/functions_events.php:4498 -#: ../../include/functions_events.php.orig:4392 -msgid "Last event" -msgstr "Último evento" +#: ../../include/functions_reporting.php:2419 +#, php-format +msgid "Exception - Modules under %s" +msgstr "Excepción - Módulos por debajo de %s" -#: ../../include/functions_events.php:4574 -#: ../../include/functions_events.php.orig:4468 -#: ../../mobile/operation/events.php:540 -msgid "Acknowledged by" -msgstr "Admitido por" +#: ../../include/functions_reporting.php:2422 +#, php-format +msgid "Modules under %s" +msgstr "Módulos por debajo de %s" -#: ../../include/functions_events.php:4635 -#: ../../include/functions_events.php.orig:4521 -msgid "ID extra" -msgstr "ID extra" +#: ../../include/functions_reporting.php:2427 +#, php-format +msgid "Exception - Modules over %s" +msgstr "Excepción - Módulos por encima de %s" -#: ../../include/functions_events.php:4688 -#: ../../include/functions_events.php.orig:4608 -#: ../../include/functions_events.php.orig:4664 -msgid "There are no comments" -msgstr "No hay comentarios" +#: ../../include/functions_reporting.php:2430 +#, php-format +msgid "Modules over %s" +msgstr "Módulos por encima de %s" -#: ../../include/functions_events.php:4807 -#: ../../include/functions_events.php.orig:4711 +#: ../../include/functions_reporting.php:2435 +#, php-format +msgid "Exception - Equal to %s" +msgstr "Excepción - Igual a %s" + +#: ../../include/functions_reporting.php:2438 +#, php-format +msgid "Equal to %s" +msgstr "Igual a %s" + +#: ../../include/functions_reporting.php:2443 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "Excepción - No igual a %s" + +#: ../../include/functions_reporting.php:2446 +#, php-format +msgid "Not equal to %s" +msgstr "No igual a %s" + +#: ../../include/functions_reporting.php:2450 +msgid "Exception - Modules at normal status" +msgstr "Excepción - Módulos en estado normal" + +#: ../../include/functions_reporting.php:2451 +msgid "Modules at normal status" +msgstr "Módulos en estado normal" + +#: ../../include/functions_reporting.php:2455 +msgid "Exception - Modules at critical or warning status" +msgstr "Excepción - Módulos en estado crítico o de advertencia" + +#: ../../include/functions_reporting.php:2456 +msgid "Modules at critical or warning status" +msgstr "Módulos en estado crítico o de advertencia" + +#: ../../include/functions_reporting.php:2674 +msgid "There are no Modules under those conditions." +msgstr "No hay módulos bajo esas condiciones" + +#: ../../include/functions_reporting.php:2678 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "No hay módulos por encima de o iguales a %s" + +#: ../../include/functions_reporting.php:2682 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "No hay módulos por debajo de o iguales a %s" + +#: ../../include/functions_reporting.php:2686 +#, php-format +msgid "There are no Modules less %s." +msgstr "No hay módulos por debajo de %s" + +#: ../../include/functions_reporting.php:2690 +#, php-format +msgid "There are no Modules over %s." +msgstr "No hay módulos por encima de %s" + +#: ../../include/functions_reporting.php:2694 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "No hay módulos iguales a %s" + +#: ../../include/functions_reporting.php:2698 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "No hay módulos no iguales a %s" + +#: ../../include/functions_reporting.php:2702 +msgid "There are no Modules normal status" +msgstr "No hay módulos en estado normal" + +#: ../../include/functions_reporting.php:2706 +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:2936 +msgid "Event Report Agent" +msgstr "Informe de eventos de agentes" + +#: ../../include/functions_reporting.php:3276 +msgid "Database Serialized" +msgstr "Base de datos serializada" + +#: ../../include/functions_reporting.php:3518 +msgid "Network interfaces report" +msgstr "Informe de las interfaces de red" + +#: ../../include/functions_reporting.php:3598 msgid "" -"If event replication is ongoing, it won't be possible to enter comments " -"here. This option is only to allow local pandora users to see comments, but " -"not to operate with them. The operation, when event replication is enabled, " -"must be done only in the Metaconsole." +"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:3618 +msgid "bytes/s" +msgstr "bytes/s" + +#: ../../include/functions_reporting.php:3830 +#: ../../include/functions_reporting.php:3847 +#: ../../include/functions_reporting.php:3864 +msgid "Not triggered" +msgstr "No disparado" + +#: ../../include/functions_reporting.php:4258 +msgid "SQL Graph Vertical Bars" +msgstr "Gráfico de barras verticales SQL" + +#: ../../include/functions_reporting.php:4262 +msgid "SQL Graph Horizontal Bars" +msgstr "Gráfico de barras horizontales SQL" + +#: ../../include/functions_reporting.php:4266 +msgid "SQL Graph Pie" +msgstr "Gráfico SQL circular" + +#: ../../include/functions_reporting.php:4484 +msgid "Unknown report" +msgstr "Informe desconocido" + +#: ../../include/functions_reporting.php:4561 +msgid "Prediction Date" +msgstr "Fecha de predicción" + +#: ../../include/functions_reporting.php:5212 +msgid "" +"Illegal query: Due security restrictions, there are some tokens or words you " +"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." msgstr "" -"Si la replicación de evento está en proceso, no sera posible añadir " -"comentarios. Esta opción solo permite a los usuarios locales de Pandora FMS " -"ver los comentarios, pero no usarlos. Este proceso solo se puede llevar a " -"cabo en la Metaconsola si la replicación de eventos está habilitada." +"Consulta ilegal: debido a restricciones de seguridad, hay algunos tokens o " +"palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, " +"modificar, contraseña, pass, insertar o actualizar." -#: ../../include/functions_events.php:4992 -#: ../../include/functions_events.php.orig:4896 -msgid "Pandora System" -msgstr "Sistema de Pandora FMS" +#: ../../include/functions_reporting.php:6445 +#: ../../include/functions_reporting.php:7039 +msgid "No Address" +msgstr "Sin dirección" -#: ../../include/functions_events.php:5537 -#: ../../include/functions_events.php:5544 -#: ../../include/functions_events.php.orig:5441 -#: ../../include/functions_events.php.orig:5448 -#: ../../operation/snmpconsole/snmp_view.php:563 -#: ../../operation/snmpconsole/snmp_view.php:876 -#: ../../operation/snmpconsole/snmp_view.php:1162 -msgid "Not validated" -msgstr "Sin validar" +#: ../../include/functions_reporting.php:7278 +msgid "" +"The monitor have no data in this range of dates or monitor type is not " +"numeric" +msgstr "" +"El monitor no tiene datos en este rango de fecha o el tipo de monitor no es " +"numérico." -#: ../../include/functions_events.php:6051 -#: ../../include/functions_events.php.orig:5955 -msgid "Agent Module" -msgstr "Módulo del agente" +#: ../../include/functions_reporting.php:7296 +msgid "The monitor type is not numeric" +msgstr "El tipo de monitor no es numérico." -#: ../../include/functions_events.php:6577 -#: ../../include/functions_events.php.orig:6481 -#: ../../operation/events/events.build_table.php:843 -#: ../../operation/events/events.php:1876 -msgid "Validate event" -msgstr "Validar evento" +#: ../../include/functions_reporting.php:7600 +msgid "Maximum" +msgstr "Máximo" -#: ../../include/functions_events.php:6600 -#: ../../include/functions_events.php.orig:6504 -#: ../../operation/events/events.build_table.php:877 -msgid "Is not allowed delete events in process" -msgstr "No puede borrar eventos en proceso" +#: ../../include/functions_reporting.php:7682 +msgid "Automatic combined graph" +msgstr "Gráfica combinada automática" -#: ../../include/functions_events.php:6611 -#: ../../include/functions_events.php.orig:6515 -#: ../../operation/events/events.build_table.php:831 -#: ../../operation/events/events.php:1698 -#: ../../operation/events/events.php:1861 ../../operation/menu.php:247 -#: ../../operation/snmpconsole/snmp_view.php:988 -#: ../../enterprise/operation/agentes/wux_console_view.php:560 -msgid "Show more" -msgstr "Mostrar más" +#: ../../include/functions_reporting.php:8424 +msgid "Maximum of events shown" +msgstr "Máximo número de eventos mostrados" -#: ../../include/functions_tags.php:707 -msgid "Click here to open a popup window with URL tag" -msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL." +#: ../../include/functions_reporting.php:9004 +#: ../../include/functions_reporting.php:9028 +msgid "Server health" +msgstr "Estado del servidor" -#: ../../include/functions_treeview.php:52 -msgid "There was a problem loading module" -msgstr "Error al cargar el módulo" +#: ../../include/functions_reporting.php:9004 +#, php-format +msgid "%d Downed servers" +msgstr "%d servidores caídos" -#: ../../include/functions_treeview.php:313 -#: ../../include/functions_visual_map.php:2943 -#: ../../include/functions_visual_map.php:2958 -#: ../../include/graphs/functions_flot.php:501 -#: ../../include/functions_reporting_html.php:595 -#: ../../include/functions_reporting_html.php:3411 -#: ../../enterprise/godmode/reporting/cluster_view.php:356 -#: ../../enterprise/godmode/reporting/cluster_view.php:452 -msgid "No data" -msgstr "Sin datos" +#: ../../include/functions_reporting.php:9009 +#: ../../include/functions_reporting.php:9032 +msgid "Monitor health" +msgstr "Estado del monitor" -#: ../../include/functions_treeview.php:317 -#: ../../include/functions_reporting_html.php:75 -#: ../../include/functions_reporting_html.php:4463 -#: ../../enterprise/include/functions_reporting_pdf.php:1708 -msgid "Last data" -msgstr "Últimos datos" +#: ../../include/functions_reporting.php:9009 +#, php-format +msgid "%d Not Normal monitors" +msgstr "%d monitores fuera de la normalidad" -#: ../../include/functions_treeview.php:332 -msgid "Go to module edition" -msgstr "Ir a la edición de módulos" +#: ../../include/functions_reporting.php:9009 +#: ../../include/functions_reporting.php:9033 +msgid "of monitors up" +msgstr "de monitores funcionando" -#: ../../include/functions_treeview.php:383 -msgid "There was a problem loading alerts" -msgstr "Error al cargar las alertas" +#: ../../include/functions_reporting.php:9014 +#: ../../include/functions_reporting.php:9036 +msgid "Module sanity" +msgstr "Estado de los módulos" -#: ../../include/functions_treeview.php:468 -msgid "Go to alerts edition" -msgstr "Ir a \"editar alertas\"" +#: ../../include/functions_reporting.php:9014 +#, php-format +msgid "%d Not inited monitors" +msgstr "%d monitores sin iniciar" -#: ../../include/functions_treeview.php:540 -#: ../../operation/agentes/agent_fields.php:24 -#: ../../operation/agentes/custom_fields.php:24 -#: ../../operation/agentes/estado_generalagente.php:63 -msgid "There was a problem loading agent" -msgstr "Error al cargar la configuración del agente" +#: ../../include/functions_reporting.php:9014 +#: ../../include/functions_reporting.php:9037 +msgid "of total modules inited" +msgstr "del total de módulos iniciados" -#: ../../include/functions_treeview.php:601 -#: ../../operation/agentes/estado_generalagente.php:433 -msgid "Other IP addresses" -msgstr "Otras direcciones IP" +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:10095 +#: ../../include/functions_reporting.php:10105 +#, php-format +msgid "%d Fired alerts" +msgstr "%d alertas disparadas" -#: ../../include/functions_treeview.php:631 -#: ../../operation/agentes/estado_agente.php:701 -#: ../../operation/agentes/estado_generalagente.php:298 -#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 -#: ../../enterprise/operation/agentes/tag_view.php:574 -msgid "Remote" -msgstr "Remoto" +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:9041 +msgid "of defined alerts not fired" +msgstr "de alertas definidas no disparadas" -#: ../../include/functions_treeview.php:639 -msgid "Next agent contact" -msgstr "Siguiente contacto con el agente" +#: ../../include/functions_reporting.php:9102 +msgid "Defined and fired alerts" +msgstr "Alertas definidas y disparadas" -#: ../../include/functions_treeview.php:657 -msgid "Go to agent edition" -msgstr "Ir a \"editar agentes\"" +#: ../../include/functions_reporting.php:9281 +msgid "Defined users" +msgstr "Usuarios definidos" -#: ../../include/functions_treeview.php:661 -msgid "Edit cluster" -msgstr "Editar cluster" +#: ../../include/functions_reporting.php:9952 +msgid "Agent without data" +msgstr "Agente sin datos" -#: ../../include/functions_treeview.php:673 -msgid "Agent data" -msgstr "Datos de agentes" +#: ../../include/functions_reporting.php:10091 +#, php-format +msgid "%d Normal modules" +msgstr "%d módulos normales" -#: ../../include/functions_treeview.php:685 -#: ../../operation/agentes/estado_generalagente.php:208 -#: ../../operation/gis_maps/ajax.php:341 -msgid "Agent Version" -msgstr "Versión del agente" +#: ../../include/functions_reporting.php:10092 +#, php-format +msgid "%d Critical modules" +msgstr "%d módulos críticos" -#: ../../include/functions_treeview.php:704 -#: ../../operation/agentes/estado_generalagente.php:399 -msgid "Position (Long, Lat)" -msgstr "Posición (longitud, latitud)" +#: ../../include/functions_reporting.php:10093 +#, php-format +msgid "%d Warning modules" +msgstr "%d módulos en estado de advertencia" -#: ../../include/functions_treeview.php:721 -#: ../../operation/agentes/estado_generalagente.php:441 -msgid "Timezone Offset" -msgstr "Zona horaria desactivada" +#: ../../include/functions_reporting.php:10094 +#, php-format +msgid "%d Unknown modules" +msgstr "%d módulos desconocidos" -#: ../../include/functions_treeview.php:737 -#: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:472 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:211 -msgid "Custom field" -msgstr "Campo personalizado" +#: ../../include/functions_reporting.php:10099 +#, php-format +msgid "%d Total agents" +msgstr "%d del total de agentes" -#: ../../include/functions_treeview.php:753 -msgid "Advanced information" -msgstr "Información avanzada" +#: ../../include/functions_reporting.php:10100 +#, php-format +msgid "%d Normal agents" +msgstr "%d agentes normales" -#: ../../include/functions_treeview.php:759 -#: ../../operation/agentes/estado_generalagente.php:523 -msgid "Agent access rate (24h)" -msgstr "Accesibilidad del agente (24h)" +#: ../../include/functions_reporting.php:10101 +#, php-format +msgid "%d Critical agents" +msgstr "%d agentes en estado crítico" -#: ../../include/functions_treeview.php:766 -#: ../../mobile/operation/agent.php:275 -#: ../../operation/agentes/estado_generalagente.php:809 -msgid "Events (24h)" -msgstr "Eventos (24h)" +#: ../../include/functions_reporting.php:10102 +#, php-format +msgid "%d Warning agents" +msgstr "%d agentes en estado de advertencia" -#: ../../include/functions_treeview.php:809 -#: ../../operation/agentes/estado_generalagente.php:642 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1164 -msgid "Interface traffic" -msgstr "Interfaz de tráfico" +#: ../../include/functions_reporting.php:10103 +#, php-format +msgid "%d Unknown agents" +msgstr "%d agentes desconocidos" -#: ../../include/functions_treeview.php:830 -msgid "Interface information" -msgstr "Interfaz de información" +#: ../../include/functions_reporting.php:10104 +#, php-format +msgid "%d not init agents" +msgstr "%d agentes no iniciados" + +#: ../../include/functions_reporting.php:11534 +msgid "Total running modules" +msgstr "Total de módulos en ejecución" + +#: ../../include/functions_reporting.php:11537 +#: ../../include/functions_reporting.php:11552 +#: ../../include/functions_reporting.php:11564 +#: ../../include/functions_reporting.php:11582 +#: ../../include/functions_reporting.php:11594 +#: ../../include/functions_reporting.php:11606 +#: ../../include/functions_reporting.php:11618 +msgid "Ratio" +msgstr "Proporción" + +#: ../../include/functions_reporting.php:11537 +#: ../../include/functions_reporting.php:11552 +#: ../../include/functions_reporting.php:11564 +#: ../../include/functions_reporting.php:11582 +#: ../../include/functions_reporting.php:11594 +#: ../../include/functions_reporting.php:11606 +#: ../../include/functions_reporting.php:11618 +msgid "Modules by second" +msgstr "Módulos por segundo" + +#: ../../include/functions_reporting.php:11549 +msgid "Local modules" +msgstr "Módulos locales" + +#: ../../include/functions_reporting.php:11559 +msgid "Network modules" +msgstr "Módulos de red" + +#: ../../include/functions_reporting.php:11578 +msgid "Plugin modules" +msgstr "Módulos de plugin" + +#: ../../include/functions_reporting.php:11590 +msgid "Prediction modules" +msgstr "Módulos de predicción" + +#: ../../include/functions_reporting.php:11602 +msgid "WMI modules" +msgstr "Módulos WMI" + +#: ../../include/functions_reporting.php:11614 +msgid "Web modules" +msgstr "Módulos web" + +#: ../../include/functions_reporting.php:11657 +#: ../../include/lib/Dashboard/Widgets/tactical.php:274 +msgid "Server performance" +msgstr "Rendimiento del servidor" + +#: ../../include/functions_reporting.php:11776 +msgid "Weekly:" +msgstr "Semanalmente:" + +#: ../../include/functions_reporting.php:11818 +msgid "Monthly:" +msgstr "Mensual:" + +#: ../../include/functions_reporting.php:11819 +msgid "From day" +msgstr "Desde el día" + +#: ../../include/functions_reporting.php:11820 +msgid "To day" +msgstr "Hasta el día" + +#: ../../include/functions_reporting.php:12386 +msgid "Module Histogram Graph" +msgstr "Gráfico de histograma del módulo" #: ../../include/functions_filemanager.php:170 #: ../../include/functions_filemanager.php:235 @@ -29493,25 +43484,10 @@ msgstr "Error al crear archivo con nombre en blanco" msgid "Attach error" msgstr "Error en el adjunto" -#: ../../include/functions_filemanager.php:334 -#: ../../enterprise/godmode/agentes/collections.editor.php:171 -#: ../../enterprise/godmode/agentes/collections.editor.php:338 -#: ../../enterprise/meta/advanced/collections.editor.php:139 -#: ../../enterprise/meta/advanced/collections.editor.php:304 -msgid "Security error." -msgstr "Error de seguridad" - #: ../../include/functions_filemanager.php:343 msgid "Directory created" msgstr "Directorio creado" -#: ../../include/functions_filemanager.php:369 -#: ../../include/functions_reporting_html.php:1411 -#: ../../enterprise/include/functions_inventory.php:721 -#: ../../enterprise/include/functions_inventory.php:786 -msgid "Deleted" -msgstr "Eliminado(s)" - #: ../../include/functions_filemanager.php:548 #: ../../include/functions_filemanager.php:776 msgid "Create a Directory" @@ -29573,12 +43549,6 @@ msgstr "" msgid "Decompress" msgstr "Descomprimir" -#: ../../include/functions_filemanager.php:800 -#: ../../enterprise/extensions/csv_import_group/main.php:91 -#: ../../enterprise/include/class/CSVImportAgents.class.php:196 -msgid "Go" -msgstr "Ir" - #: ../../include/functions_filemanager.php:819 msgid "Create text" msgstr "Crear texto" @@ -29591,197 +43561,591 @@ msgstr "Subir archivo/s" msgid "The directory is read-only" msgstr "Este directorio es solo de lectura." -#: ../../include/functions_ui.php:280 -msgid "Information" -msgstr "Información" +#: ../../include/functions_tags.php:707 +msgid "Click here to open a popup window with URL tag" +msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL." -#: ../../include/functions_ui.php:454 -msgid "Request successfully processed" -msgstr "Petición procesada correctamente" - -#: ../../include/functions_ui.php:458 -msgid "Error processing request" -msgstr "Error al procesar la petición" - -#: ../../include/functions_ui.php:615 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" -"Es posible que esta vista utilice parte de la información a la cual tu " -"usuario no tenga acceso." - -#: ../../include/functions_ui.php:857 -msgid "Software" -msgstr "Software" - -#: ../../include/functions_ui.php:1331 -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:1336 -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:1351 -msgid "Unknown option." -msgstr "Opción desconocida." - -#: ../../include/functions_ui.php:2069 ../../include/functions_ui.php:2095 +#: ../../include/lib/Dashboard/Manager.php:468 #, php-format -msgid "Total items: %s" -msgstr "Número total de elementos: %s" +msgid "Copy of %s" +msgstr "Copia de %s" -#: ../../include/functions_ui.php:2494 -msgid "Unknown type" -msgstr "Tipo desconocido" +#: ../../include/lib/Dashboard/Manager.php:852 +msgid "Error create or update dashboard" +msgstr "Error al crear o actualizar el panel de control" -#: ../../include/functions_ui.php:3269 -#: ../../enterprise/include/class/DatabaseHA.class.php:213 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:337 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:339 -msgid "Processing" -msgstr "Procesando" +#: ../../include/lib/Dashboard/Manager.php:1304 +msgid "Icon image dashboard" +msgstr "Panel de control de imágenes de iconos" -#: ../../include/functions_ui.php:3341 ../../include/functions_ui.php:3342 -msgid "Export current page to CSV" -msgstr "Exportar página actual a CSV" +#: ../../include/lib/Dashboard/Widget.php:430 +msgid "Please configure this widget before usage" +msgstr "Por favor, configura este widget antes de usarlo." -#: ../../include/functions_ui.php:4466 -msgid "Type at least two characters to search." -msgstr "Escribe al menos dos caracteres para buscar." +#: ../../include/lib/Dashboard/Widget.php:438 +msgid "Widget cannot be loaded" +msgstr "El widget no se puede cargar." -#: ../../include/functions_ui.php:5380 -msgid "Unhandled error" -msgstr "Error no tratado" +#: ../../include/lib/Dashboard/Widget.php:442 +msgid "Please, configure the widget again to recover it" +msgstr "Por favor, configura el widget otra vez para recuperarlo." -#: ../../include/functions_ui.php:5381 -msgid "An unhandled error occurs" -msgstr "Ha ocurrido un error no tratado" +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:498 +msgid "General group status" +msgstr "Estado general de grupo" -#: ../../include/functions_ui.php:5623 -#: ../../enterprise/include/functions_ux_console.php:472 -#: ../../enterprise/operation/agentes/tag_view.php:856 -#: ../../enterprise/operation/agentes/tag_view.php:866 -#: ../../enterprise/operation/agentes/ux_console_view.php:123 -#: ../../enterprise/operation/agentes/ux_console_view.php:311 -#: ../../enterprise/operation/agentes/ux_console_view.php:406 -#: ../../enterprise/operation/agentes/wux_console_view.php:312 -msgid "Snapshot view" -msgstr "Vista de captura de pantalla" +#: ../../include/lib/Dashboard/Widgets/groups_status.php:268 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:280 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:412 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:423 +#: ../../include/lib/Dashboard/Widgets/events_list.php:444 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:486 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:501 +#: ../../include/lib/Dashboard/Widgets/module_value.php:388 +#: ../../include/lib/Dashboard/Widgets/module_value.php:401 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:372 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:383 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:390 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:401 +#: ../../include/lib/Dashboard/Widgets/module_status.php:463 +#: ../../include/lib/Dashboard/Widgets/module_status.php:476 +msgid "You don't have access" +msgstr "No tienes acceso" -#: ../../include/functions_ui.php:5647 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:452 +msgid "Not agents in this group" +msgstr "No hay agentes en este grupo" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:550 +msgid "Groups status" +msgstr "Estado de los grupos" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:287 +msgid "Alert Fired" +msgstr "Alerta disparada" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:455 +msgid "Modules in normal status" +msgstr "Módulos en estado normal" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:471 +msgid "Modules in warning status" +msgstr "Modulos en estado de advertencia" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:488 +msgid "Modules in critical status" +msgstr "Módulos en estado crítico" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:529 +msgid "Not modules in this groups" +msgstr "No hay módulos en estos grupos" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:481 +msgid "SLA percentage" +msgstr "Porcentaje SLA" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:343 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:407 +#: ../../include/lib/Dashboard/Widgets/module_value.php:324 +msgid "Text size of value in px" +msgstr "Tamaño de texto del valor en píxels" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:419 +#: ../../include/lib/Dashboard/Widgets/module_value.php:336 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:299 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:332 +#: ../../include/lib/Dashboard/Widgets/module_status.php:397 +msgid "Text size of label in px" +msgstr "Tamaño de texto de la etiqueta en píxels" + +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "Panel con un mensaje" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:349 +msgid "General visual maps report" +msgstr "Informe de mapas visuales general" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:236 +#: ../../operation/search_results.php:144 +msgid "Maps" +msgstr "Mapas" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 +#, php-format +msgid "Welcome message to %s" +msgstr "Mensaje de bienvenida a %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:37 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "" +"This is an example of a dashboard widget. A widget may contain elements" +msgstr "" +"Este es un ejemplo de un widget del dashboard. Un widget puede contener " +"elementos." + +#: ../../include/lib/Dashboard/Widgets/example.php:250 +msgid "" +"To add more elements, click on \"Add widgets\" on the top of this " +"page." +msgstr "" +"Para añadir más elementos, haz clic en \"Add widgets\" en la parte " +"superior de esta página." + +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 +msgid "" +"To delete this message, click on the delete button on top right corner of " +"this element." +msgstr "" +"Para eliminar este mensaje, haz clic sobre el botón de la esquina derecha de " +"este elemento." + +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "" +"To do so, just click on the title and drag and drop it to the desired place." +msgstr "" +"Para hacer eso, haz clic en el título, arrastra y suelta el elemento en el " +"lugar deseado." + +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "Gracias por usar %s." + +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "Información del estado global" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:170 +#: ../../include/lib/Dashboard/Widgets/network_map.php:414 +#: ../../operation/menu.php:177 +msgid "Network map" +msgstr "Mapa de red" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:279 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "" +"Introducir datos en el eje X. Derecha = positivo / Izquierda = negativo." + +#: ../../include/lib/Dashboard/Widgets/network_map.php:283 +msgid "X offset" +msgstr "Desplazamiento en X" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:294 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "Introducir datos en el eje Y. Arriba = positivo / Abajo = negativo" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:298 +msgid "Y offset" +msgstr "Desplazamiento en Y" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:322 +msgid "Zoom level" +msgstr "Nivel de zoom" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:354 +msgid "Triggered alerts report" +msgstr "Informe de alertas disparadas" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:327 +msgid "Not alert fired" +msgstr "No hay alertas disparadas" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:336 +#: ../../include/lib/Dashboard/Widgets/events_list.php:429 +#: ../../include/lib/Dashboard/Widgets/events_list.php:436 +msgid "You must select some group" +msgstr "Seleccione un grupo" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:163 +#: ../../include/lib/Dashboard/Widgets/events_list.php:617 +msgid "List of latest events" +msgstr "Lista de últimos eventos" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:311 +msgid "Limit" +msgstr "Límite" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:323 +#: ../../include/functions_events.php:3147 +#: ../../include/functions_events.php:3153 +#: ../../include/functions_events.php:3175 +msgid "All event" +msgstr "Todos los eventos" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:324 +#: ../../include/functions_events.php:3149 +#: ../../include/functions_events.php:3183 +msgid "Only validated" +msgstr "Solo eventos validados" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:325 +msgid "Only pending" +msgstr "Solo pendientes" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:599 +msgid "There are no events matching selected search filters" +msgstr "No hay eventos que coincidan con los filtros seleccionados" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:170 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:372 +msgid "WUX transaction stats" +msgstr "Estadísticas de transacciones WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:268 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "Transacción WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:286 +msgid "View all statistics" +msgstr "Ver todas las estadísticas" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:557 +msgid "Icon and module value" +msgstr "Valor de módulo e icono" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:431 +#: ../../include/lib/Dashboard/Widgets/module_status.php:409 +msgid "Size of icon" +msgstr "Tamaño del icono" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "Contenido de la URL" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "Por favor, configura este widget antes de usarlo." + +#: ../../include/lib/Dashboard/Widgets/module_value.php:173 +#: ../../include/lib/Dashboard/Widgets/module_value.php:443 +msgid "Module value" +msgstr "Valor del módulo" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "Transacción de agente WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +msgid "Global status" +msgstr "Estado global" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:516 +msgid "Top N events by module" +msgstr "N primeros eventos por módulo" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "Cantidad a mostrar" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:297 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:297 +msgid "No legend" +msgstr "Sin leyenda" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +msgid "Legend Position" +msgstr "Posición de la leyenda" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:350 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:352 +msgid "Please select one or more groups." +msgstr "Por favor, selecciona uno o más grupos" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:402 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:398 +msgid "There is not data to show." +msgstr "No hay datos que mostrar." + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 +msgid "Show module value in a table" +msgstr "Mostrar el valor del módulo en una tabla" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:310 +msgid "Carriage Return" +msgstr "Retorno de carro" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:311 +msgid "Vertical Bar" +msgstr "Barra vertical" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 +msgid "Semicolon" +msgstr "Punto y coma" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 +msgid "Colon" +msgstr "Dos puntos" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 +msgid "Commas" +msgstr "Comas" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 +msgid "Blank" +msgstr "Blanco" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:319 +msgid "Data separator" +msgstr "Separador de datos" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:443 +msgid "Module in a table" +msgstr "Módulo en una tabla" + +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:448 +msgid "Module histogram" +msgstr "Histograma de módulo" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:298 +msgid "The user doesn't have permission to read agents" +msgstr "El usuario no tiene permiso de lectura para agentes" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:309 +msgid "Missing Service id" +msgstr "Falta el ID de servicio" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:163 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:244 +msgid "Agent/Module View" +msgstr "Vista de Agente/Módulo" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:193 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:228 +msgid "This widget has been removed" +msgstr "Se ha eliminado el widget" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:420 +msgid "Defined custom graph" +msgstr "Gráfica personalizada definida" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:267 +#: ../../operation/reporting/graph_viewer.php:271 +msgid "Horizontal Bars" +msgstr "Barras horizontales" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:268 +#: ../../operation/reporting/graph_viewer.php:272 +msgid "Vertical Bars" +msgstr "Barras verticales" + +#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:392 +msgid "Agent module graph" +msgstr "Gráfica de módulo de agente" + +#: ../../include/lib/Dashboard/Widgets/reports.php:164 +#: ../../include/lib/Dashboard/Widgets/reports.php:370 +msgid "Custom report" +msgstr "Informe personalizado" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:335 +msgid "Type tree" +msgstr "Tipo de árbol" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:360 +msgid "Open all groups" +msgstr "Abrir todos los grupos" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:380 +msgid "Agents status" +msgstr "Estado de agente" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:413 +msgid "Modules status" +msgstr "Estado de módulos" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:425 +msgid "Filter modules" +msgstr "Filtrar módulos" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:478 #, php-format msgid "" -"These controls are using the timezone of the system (%s) instead of yours " -"(%s). The difference with your time zone in hours is %s." +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." msgstr "" -"Estos controles emplean la zona horaria del sistema (%s) en vez de la suya " -"(%s). La diferencia de horas con su zona horaria es %s." +"El usuario no tiene permisos para leer agentes. Póngase en contacto con su " +"administrador de %s." -#: ../../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/lib/Dashboard/Widgets/top_n.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n.php:475 +msgid "Top N of agent modules" +msgstr "Primeros N módulos de agente" -#: ../../include/functions_graph.php:1016 -msgid "No data to display within the selected interval" -msgstr "No hay datos en el intervalo seleccionado" +#: ../../include/lib/Dashboard/Widgets/top_n.php:222 +msgid "" +"Case insensitive regular expression or string for module name. For example: " +".*usage.* will match: cpu_usage, vram usage." +msgstr "" +"Expresión regular o cadena para el nombre del módulo que diferencia entre " +"mayúsculas y minúsculas. Por ejemplo: .*usage.* coincidirá con: cpu_usage o " +"vram usage." -#: ../../include/functions_graph.php:2465 -msgid "Not fired alerts" -msgstr "No se han disparado alertas." +#: ../../include/lib/Dashboard/Widgets/top_n.php:279 +msgid "Avg." +msgstr "Media" -#: ../../include/functions_graph.php:2484 -#: ../../include/functions_graph.php:2602 -#: ../../include/functions_graph.php:2700 -#: ../../include/functions_graph.php:3273 -#: ../../include/functions_graph.php:3780 -#: ../../include/functions_reporting.php:1663 -#: ../../include/functions_reporting.php:1876 -#: ../../include/functions_reporting.php:1901 -#: ../../include/functions_reporting.php:1928 -#: ../../include/functions_reporting.php:1955 -#: ../../include/functions_reporting.php:2802 -#: ../../include/functions_reporting.php:3053 -#: ../../include/functions_reporting.php:3080 -#: ../../include/functions_reporting.php:3107 -#: ../../include/functions_reporting.php:8127 -#: ../../include/functions_reporting.php:8154 -#: ../../include/functions_reporting.php:8181 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:243 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:206 -msgid "other" -msgstr "otro" +#: ../../include/lib/Dashboard/Widgets/top_n.php:425 +msgid "There are no agents/modules found matching filter set" +msgstr "" +"No se han encontrado agentes/módulos que coincidan con los filtros " +"establecidos" -#: ../../include/functions_graph.php:2715 -#: ../../include/functions_graph.php:2763 -#: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -msgid "Out of limits" -msgstr "Fuera de límites" +#: ../../include/lib/Dashboard/Widgets/tactical.php:262 +msgid "Status and Monitor checks" +msgstr "Comprobaciones de estado y monitor" -#: ../../include/functions_graph.php:2875 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:55 -msgid "Informative" -msgstr "Informativo" +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "Analógico" -#: ../../include/functions_graph.php:2876 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:59 -#: ../../include/functions_netflow.php:1595 -msgid "Low" -msgstr "Bajo" +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +msgid "Digital" +msgstr "Digital" -#: ../../include/functions_graph.php:2877 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:63 -#: ../../include/functions_netflow.php:1596 -msgid "Medium" -msgstr "Medio" +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:472 +msgid "Top N events by agent" +msgstr "Primeros N eventos por agente" -#: ../../include/functions_graph.php:2878 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:67 -msgid "Serious" -msgstr "Grave" +#: ../../include/lib/View.php:68 +#, php-format +msgid "View %s not found" +msgstr "Vista %s no encontrada" -#: ../../include/functions_graph.php:2879 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:71 -msgid "Very serious" -msgstr "Muy grave" +#: ../../include/functions_snmp_browser.php:524 +msgid "Numeric OID" +msgstr "OID numérico" -#: ../../include/functions_graph.php:2918 -#: ../../include/functions_graph.php:2941 -msgid "Open incident" -msgstr "Abrir incidente" +#: ../../include/functions_snmp_browser.php:542 +msgid "Syntax" +msgstr "Sintaxis" -#: ../../include/functions_graph.php:2919 -#: ../../include/functions_graph.php:2945 -msgid "Closed incident" -msgstr "Incidente cerrado" +#: ../../include/functions_snmp_browser.php:548 +msgid "Display hint" +msgstr "Activar indicación" -#: ../../include/functions_graph.php:2920 -#: ../../include/functions_graph.php:2949 -msgid "Outdated" -msgstr "Obsoleto" +#: ../../include/functions_snmp_browser.php:554 +msgid "Max access" +msgstr "Acceso máximo" -#: ../../include/functions_graph.php:2921 -#: ../../include/functions_graph.php:2953 -#: ../../enterprise/godmode/setup/setup_acl.php:651 -#: ../../enterprise/godmode/setup/setup_acl.php:661 -msgid "Invalid" -msgstr "No válido" +#: ../../include/functions_snmp_browser.php:576 +msgid "OID Information" +msgstr "Información OID" -#: ../../include/functions_graph.php:5274 -msgid "Main node" -msgstr "Nodo principal" +#: ../../include/functions_snmp_browser.php:611 +msgid "Create agent module" +msgstr "Crear módulo de agente" + +#: ../../include/functions_snmp_browser.php:669 +msgid "Starting OID" +msgstr "Iniciar OID" + +#: ../../include/functions_snmp_browser.php:718 +msgid "Server to execute" +msgstr "Servidor a ejecutar" + +#: ../../include/functions_snmp_browser.php:721 +msgid "Browse" +msgstr "Examinar" + +#: ../../include/functions_snmp_browser.php:767 +msgid "First match" +msgstr "Primera correspondencia" + +#: ../../include/functions_snmp_browser.php:768 +msgid "Previous match" +msgstr "Coincidencia anterior" + +#: ../../include/functions_snmp_browser.php:769 +msgid "Next match" +msgstr "Siguiente coincidencia" + +#: ../../include/functions_snmp_browser.php:770 +msgid "Last match" +msgstr "Última coincidencia" + +#: ../../include/functions_snmp_browser.php:777 +msgid "Expand the tree (can be slow)" +msgstr "Expandir el árbol (podría llevar tiempo)" + +#: ../../include/functions_snmp_browser.php:782 +msgid "Collapse the tree" +msgstr "Contraer el árbol" + +#: ../../include/functions_snmp_browser.php:802 +msgid "SNMP v3 options" +msgstr "Opciones SNMP v3" + +#: ../../include/functions_snmp_browser.php:805 +msgid "Search options" +msgstr "Opciones de búsqueda" + +#: ../../include/functions_snmp_browser.php:815 +msgid "Search matches" +msgstr "Buscar coincidencias" + +#: ../../include/functions_snmp_browser.php:830 +msgid "Create agent modules" +msgstr "Crear módulos de agentes" + +#: ../../include/functions_snmp_browser.php:839 +msgid "Create policy modules" +msgstr "Crear módulos de políticas" + +#: ../../include/functions_snmp_browser.php:848 +msgid "Create network components" +msgstr "Crear componentes de red" + +#: ../../include/functions_snmp_browser.php:1187 +msgid " available" +msgstr " disponible" + +#: ../../include/functions_snmp_browser.php:1189 +msgid " to apply" +msgstr " a aplicar" + +#: ../../include/functions_snmp_browser.php:1210 +#: ../../operation/snmpconsole/snmp_browser.php:476 +msgid "Create new policy" +msgstr "Crear nueva política" + +#: ../../include/functions_snmp_browser.php:1241 +msgid "Undo" +msgstr "Deshacer" + +#: ../../include/chart_generator.php:114 +#: ../../operation/agentes/stat_win.php:37 +#: ../../operation/agentes/realtime_win.php:37 +#: ../../operation/agentes/interface_traffic_graph_win.php:42 +msgid "There was a problem connecting with the node" +msgstr "Error al conectar con el nodo" #: ../../include/functions_groups.php:75 msgid "Alert Actions" @@ -29791,21 +44155,6 @@ msgstr "Acciones de alerta" msgid "Alert Templates" msgstr "Plantillas de alerta" -#: ../../include/functions_groups.php:107 -#: ../../operation/agentes/pandora_networkmap.editor.php:307 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 -msgid "Recon task" -msgstr "Tarea de reconocimiento" - -#: ../../include/functions_groups.php:139 -#: ../../operation/search_results.php:131 -#: ../../enterprise/include/functions_cron.php:1324 -#: ../../enterprise/meta/general/main_header.php:158 -#: ../../enterprise/meta/general/main_header.php:174 -#: ../../enterprise/mobile/include/functions_web.php:15 -msgid "Reports" -msgstr "Informes" - #: ../../include/functions_groups.php:155 msgid "Layout visual console" msgstr "Diseño de la consola visual" @@ -29830,6 +44179,271 @@ msgstr "Mapas GIS adicionales" msgid "Network maps" msgstr "Mapas de red" +#: ../../include/functions_events.php:132 +msgid "NEW" +msgstr "NUEVO" + +#: ../../include/functions_events.php:135 +msgid "IN PROCESS" +msgstr "EN PROCESO" + +#: ../../include/functions_events.php:138 +msgid "VALIDATED" +msgstr "VALIDADO" + +#: ../../include/functions_events.php:197 +msgid "Agent module" +msgstr "Módulo de agente" + +#: ../../include/functions_events.php:2379 +#: ../../operation/agentes/tactical.php:197 +msgid "Latest events" +msgstr "Últimos eventos" + +#: ../../include/functions_events.php:2516 +msgid "Events -by module-" +msgstr "Eventos -por módulo-" + +#: ../../include/functions_events.php:2522 +#: ../../operation/agentes/tactical.php:214 +#: ../../operation/events/event_statistics.php:51 +msgid "Event graph" +msgstr "Gráfico de eventos" + +#: ../../include/functions_events.php:2524 +#: ../../operation/agentes/tactical.php:217 +#: ../../operation/events/event_statistics.php:71 +msgid "Event graph by agent" +msgstr "Gráfico de eventos por agente" + +#: ../../include/functions_events.php:2650 +msgid "Going to unknown" +msgstr "Cambiando a estado desconocido" + +#: ../../include/functions_events.php:2658 +msgid "Alert manually validated" +msgstr "Alerta validada manualmente" + +#: ../../include/functions_events.php:2662 +msgid "Going from critical to warning" +msgstr "Cambiando de crítico a advertencia" + +#: ../../include/functions_events.php:2668 +msgid "Going up to critical state" +msgstr "Entrando en estado crítico" + +#: ../../include/functions_events.php:2674 +msgid "Going up to normal state" +msgstr "Subiendo a estado normal" + +#: ../../include/functions_events.php:2678 +msgid "Going down from normal to warning" +msgstr "Cambiando de normal a advertencia" + +#: ../../include/functions_events.php:2690 +msgid "Discovery server detected a new host" +msgstr "El servidor Discovery ha detectado un host nuevo" + +#: ../../include/functions_events.php:2694 +msgid "New agent created" +msgstr "Agente nuevo creado" + +#: ../../include/functions_events.php:2711 +msgid "Unknown type:" +msgstr "Tipo desconocido:" + +#: ../../include/functions_events.php:3148 +#: ../../include/functions_events.php:3179 +msgid "Only new" +msgstr "Solo nuevos" + +#: ../../include/functions_events.php:3150 +#: ../../include/functions_events.php:3187 +msgid "Only in process" +msgstr "Solo en proceso" + +#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3191 +msgid "Only not validated" +msgstr "Solo no validados" + +#: ../../include/functions_events.php:3156 +#: ../../include/functions_events.php:3434 +#: ../../include/functions_events.php:3443 +msgid "In process" +msgstr "En proceso" + +#: ../../include/functions_events.php:3157 +msgid "Not Validated" +msgstr "No validado" + +#: ../../include/functions_events.php:3342 +msgid "Change owner" +msgstr "Cambiar propietario" + +#: ../../include/functions_events.php:3418 +msgid "Change status" +msgstr "Cambiar estado" + +#: ../../include/functions_events.php:3501 +#: ../../include/functions_events.php:4810 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:365 +msgid "Add comment" +msgstr "Añadir comentario" + +#: ../../include/functions_events.php:3521 +#: ../../include/functions_events.php:3525 +#: ../../include/functions_events.php:6604 +#: ../../operation/events/events.php:1911 +#: ../../operation/events/events.build_table.php:867 +msgid "Delete event" +msgstr "Eliminar evento" + +#: ../../include/functions_events.php:3545 +msgid "Custom responses" +msgstr "Respuesta personalizada" + +#: ../../include/functions_events.php:3979 +msgid "Extended information" +msgstr "Información extendida" + +#: ../../include/functions_events.php:4007 +msgid "There was an error connecting to the node" +msgstr "Error al conectarse al nodo" + +#: ../../include/functions_events.php:4044 +msgid "Agent details" +msgstr "Detalles del agente" + +#: ../../include/functions_events.php:4101 +msgid "View custom fields" +msgstr "Ver campos personalizados" + +#: ../../include/functions_events.php:4124 +msgid "Module details" +msgstr "Detalles del módulo" + +#: ../../include/functions_events.php:4140 +msgid "No assigned" +msgstr "No asignado" + +#: ../../include/functions_events.php:4230 +#: ../../include/functions_events.php:4236 +msgid "Go to data overview" +msgstr "Ir a la vista general de datos" + +#: ../../include/functions_events.php:4336 +#, php-format +msgid "Invalid custom data: %s" +msgstr "Datos personalizados no válidos: %s" + +#: ../../include/functions_events.php:4511 +msgid "First event" +msgstr "Primer evento" + +#: ../../include/functions_events.php:4511 +msgid "Last event" +msgstr "Último evento" + +#: ../../include/functions_events.php:4648 +msgid "ID extra" +msgstr "ID extra" + +#: ../../include/functions_events.php:4701 +msgid "There are no comments" +msgstr "No hay comentarios" + +#: ../../include/functions_events.php:4820 +msgid "" +"If event replication is ongoing, it won't be possible to enter comments " +"here. This option is only to allow local pandora users to see comments, but " +"not to operate with them. The operation, when event replication is enabled, " +"must be done only in the Metaconsole." +msgstr "" +"Si la replicación de evento está en proceso, no sera posible añadir " +"comentarios. Esta opción solo permite a los usuarios locales de Pandora FMS " +"ver los comentarios, pero no usarlos. Este proceso solo se puede llevar a " +"cabo en la Metaconsola si la replicación de eventos está habilitada." + +#: ../../include/functions_events.php:5005 +msgid "Pandora System" +msgstr "Sistema de Pandora FMS" + +#: ../../include/functions_events.php:5550 +#: ../../include/functions_events.php:5557 +#: ../../operation/snmpconsole/snmp_view.php:563 +#: ../../operation/snmpconsole/snmp_view.php:876 +#: ../../operation/snmpconsole/snmp_view.php:1162 +msgid "Not validated" +msgstr "Sin validar" + +#: ../../include/functions_events.php:6064 +msgid "Agent Module" +msgstr "Módulo del agente" + +#: ../../include/functions_events.php:6590 +#: ../../operation/events/events.php:1887 +#: ../../operation/events/events.build_table.php:843 +msgid "Validate event" +msgstr "Validar evento" + +#: ../../include/functions_events.php:6613 +#: ../../operation/events/events.build_table.php:877 +msgid "Is not allowed delete events in process" +msgstr "No puede borrar eventos en proceso" + +#: ../../include/functions_planned_downtimes.php:577 +msgid "Succesful stopped the Downtime" +msgstr "La parada planificada se ha detenido correctamente." + +#: ../../include/functions_planned_downtimes.php:578 +msgid "Unsuccesful stopped the Downtime" +msgstr "La parada planificada no ha podido ser detenida." + +#: ../../include/functions_planned_downtimes.php:718 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "Habilitar %s elementos desde la parada" + +#: ../../include/functions_planned_downtimes.php:777 +msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" +msgstr "" +"La parada debe estar silenciada, disable_agents o disable_agents_alerts" + +#: ../../include/functions_planned_downtimes.php:782 +msgid "The execution must be once or periodically" +msgstr "La ejecución debe ser única o periódica" + +#: ../../include/functions_planned_downtimes.php:787 +msgid "The periodicity must be weekly or monthly" +msgstr "La periodicidad debe ser semanal o mensual" + +#: ../../include/functions_planned_downtimes.php:792 +msgid "There is no user with such id" +msgstr "No hay usuarios con ese ID" + +#: ../../include/functions_planned_downtimes.php:797 +msgid "There is no group with such id" +msgstr "No hay grupos con ese ID" + +#: ../../include/functions_planned_downtimes.php:802 +msgid "Date is wrong formatted" +msgstr "Formato de fecha incorrecto" + +#: ../../include/functions_planned_downtimes.php:909 +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:916 +msgid "Deleted this planned downtime successfully." +msgstr "Parada planificada borrada correctamente" + +#: ../../include/functions_planned_downtimes.php:918 +msgid "Problems for deleted this planned downtime." +msgstr "Error al borrar la parada planificada" + #: ../../include/functions_update_manager.php:130 #, php-format msgid "%s configuration wizard" @@ -29843,6 +44457,14 @@ msgid "" msgstr "" "Rellene esta información para configurar su instancia de %s correctamente" +#: ../../include/functions_update_manager.php:190 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches " +"of time." +msgstr "" +"Debe tener las mismas zonas horarias que el sistema o la base de datos para " +"evitar desajustes de tiempo." + #: ../../include/functions_update_manager.php:196 msgid "E-mail for receiving alerts" msgstr "Correo electrónico para la recepción de alertas" @@ -29909,7 +44531,7 @@ msgid "Do you want to be up to date?" msgstr "¿Desea estar al día?" #: ../../include/functions_update_manager.php:722 -#: ../../operation/users/user_edit.php:434 +#: ../../operation/users/user_edit.php:429 msgid "Subscribe to our newsletter" msgstr "Suscríbete a nuestra newsletter" @@ -29951,28 +44573,6 @@ msgstr "La línea \"%s\" no se ha copiado al archivo de progreso." msgid "There is a unknown error." msgstr "Surgió un error desconocido." -#: ../../include/functions_update_manager.php:1344 -#: ../../include/functions_update_manager.php:1346 -#: ../../include/functions_update_manager.php:1486 -#: ../../include/functions_update_manager.php:1489 -#: ../../enterprise/include/functions_update_manager.php:182 -#: ../../enterprise/include/functions_update_manager.php:376 -msgid "Could not connect to internet" -msgstr "No se pudo conectar a internet" - -#: ../../include/functions_update_manager.php:1350 -#: ../../include/functions_update_manager.php:1352 -#: ../../include/functions_update_manager.php:1495 -#: ../../include/functions_update_manager.php:1498 -#: ../../enterprise/include/functions_update_manager.php:184 -msgid "Server not found." -msgstr "Servidor no encontrado" - -#: ../../include/functions_update_manager.php:1408 -#: ../../enterprise/include/functions_update_manager.php:266 -msgid "There is no update available." -msgstr "No hay actualizaciones disponibles" - #: ../../include/functions_update_manager.php:1548 msgid "Remote server error on newsletter request" msgstr "Error del servidor remoto en petición de newsletter" @@ -30014,3060 +44614,421 @@ msgstr "Error al copiar los archivos" msgid "Package extracted successfully." msgstr "Paquete extraído correctamente" -#: ../../include/functions_html.php:1069 -msgid "weeks" -msgstr "semanas" +#: ../../index.php:908 +msgid "User doesn\\'t exist." +msgstr "El usuario no existe." -#: ../../include/functions_html.php:1230 -msgid "Month day" -msgstr "Día del mes" +#: ../../index.php:927 +msgid "User only can use the API." +msgstr "El usuario solo puede usar la API." -#: ../../include/functions_html.php:1231 -#: ../../enterprise/include/functions_reporting_csv.php:1530 -#: ../../enterprise/include/functions_reporting_csv.php:1798 -msgid "Month" -msgstr "Mes" +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:26 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "No se encontró ningún resultado" -#: ../../include/functions_html.php:1232 -msgid "Week day" -msgstr "Día de la semana" +#: ../../operation/search_users.php:38 +msgid "Profile" +msgstr "Perfil" -#: ../../include/functions_html.php:3093 -msgid "Type at least two characters to search the module." -msgstr "Escribe al menos dos caracteres para buscar el módulo." - -#: ../../include/functions_html.php:3250 +#: ../../operation/tree.php:103 #, php-format -msgid "%s cannot verify the origin of the request. Try again, please." -msgstr "%s no puede verificar el origen de la petición. Vuelva a intentarlo." +msgid "Sort the agents by %s" +msgstr "Ordenar los agentes por %s" -#: ../../include/functions_html.php:3746 -msgid "Type at least two characters to search the user." -msgstr "Escriba al menos dos caracteres para buscar el usuario." +#: ../../operation/tree.php:106 +msgid "tags" +msgstr "Etiquetas" -#: ../../include/functions_users.php:593 +#: ../../operation/tree.php:114 +msgid "groups" +msgstr "Grupos" + +#: ../../operation/tree.php:118 +msgid "module groups" +msgstr "Grupos de módulos" + +#: ../../operation/tree.php:127 +msgid "policies" +msgstr "Políticas" + +#: ../../operation/tree.php:166 +msgid "Search group" +msgstr "Buscar grupo" + +#: ../../operation/tree.php:170 ../../operation/tree.php:213 +msgid "Show not init modules" +msgstr "Mostrar módulos no iniciados" + +#: ../../operation/tree.php:179 +msgid "Search agent" +msgstr "Buscar agente" + +#: ../../operation/tree.php:182 +msgid "Show not init agents" +msgstr "Mostrar agentes no iniciados" + +#: ../../operation/tree.php:185 +msgid "Show full hirearchy" +msgstr "Mostrar jerarquía completa" + +#: ../../operation/tree.php:210 +msgid "Search module" +msgstr "Buscar módulo" + +#: ../../operation/tree.php:242 +msgid "Tree search" +msgstr "Búsqueda de árbol" + +#: ../../operation/tree.php:348 +msgid "Groups found" +msgstr "Grupos encontrados" + +#: ../../operation/tree.php:441 ../../operation/agentes/status_monitor.php:1836 +#: ../../operation/agentes/estado_monitores.php:414 +msgid "Module: " +msgstr "Módulo: " + +#: ../../operation/users/user_edit.php:164 +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:177 +#: ../../operation/users/user_edit.php:192 +msgid "Password successfully updated" +msgstr "Contraseña actualizada correctamente" + +#: ../../operation/users/user_edit.php:187 +#: ../../operation/users/user_edit.php:233 +msgid "Error updating user info" +msgstr "Error al actualizar la información del usuario" + +#: ../../operation/users/user_edit.php:195 +msgid "No changes have been made" +msgstr "No se han hecho cambios" + +#: ../../operation/users/user_edit.php:206 +msgid "Please enter a valid email" +msgstr "Añada una dirección de correo electrónico válida" + +#: ../../operation/users/user_edit.php:208 +msgid "Please enter a valid phone number" +msgstr "Añada un número de teléfono valido" + +#: ../../operation/users/user_edit.php:214 +msgid "Error updating passwords: " +msgstr "Error al actualizar contraseñas: " + +#: ../../operation/users/user_edit.php:238 +msgid "Edit my User" +msgstr "Editar mi usuario" + +#: ../../operation/users/user_edit.php:284 +msgid "" +"You cannot change your password under the current authentication scheme" +msgstr "" +"No puede cambiar la contraseña con la configuración actual de autenticación" + +#: ../../operation/users/user_edit.php:298 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "" +"Si se marca la casilla, se usará el tamaño de bloque de la configuración " +"global." + +#: ../../operation/users/user_edit.php:404 +msgid "Show information" +msgstr "Mostrar información" + +#: ../../operation/users/user_edit.php:412 +msgid "Event filter" +msgstr "Filtro de eventos" + +#: ../../operation/users/user_edit.php:425 +msgid "Newsletter Subscribed" +msgstr "Suscrito a la newsletter" + +#: ../../operation/users/user_edit.php:427 #, php-format -msgid "User %s login at %s" -msgstr "El usuario %s entró a las %s" +msgid "Already subscribed to %s newsletter" +msgstr "Ya está suscrito a la newsletter de %s" -#: ../../include/functions_users.php:673 +#: ../../operation/users/user_edit.php:430 +msgid "Newsletter Reminder" +msgstr "Recordatorio de la newsletter" + +#: ../../operation/users/user_edit.php:503 +msgid "Autorefresh" +msgstr "Actualización automática" + +#: ../../operation/users/user_edit.php:504 +msgid "This will activate autorefresh in selected pages" +msgstr "" +"Esto activará la actualización automática en las páginas seleccionadas." + +#: ../../operation/users/user_edit.php:539 +msgid "Full list of pages" +msgstr "Lista completa de páginas" + +#: ../../operation/users/user_edit.php:548 +#: ../../operation/users/user_edit.php:549 +msgid "Push selected pages into autorefresh list" +msgstr "" +"Añadir las páginas seleccionadas a la lista de actualización automática" + +#: ../../operation/users/user_edit.php:557 +#: ../../operation/users/user_edit.php:558 +msgid "Pop selected pages out of autorefresh list" +msgstr "" +"Quitar las páginas seleccionadas de la lista de actualización automática" + +#: ../../operation/users/user_edit.php:563 +msgid "List of pages with autorefresh" +msgstr "Lista de páginas con actualización automática" + +#: ../../operation/users/user_edit.php:572 +msgid "Time autorefresh" +msgstr "Tiempo de actualización automática" + +#: ../../operation/users/user_edit.php:574 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, " +"needing to enable the autorefresh first" +msgstr "" +"Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero " +"debe habilitar primero el auto refresco." + +#: ../../operation/users/user_edit.php:668 +msgid "eHorus user configuration" +msgstr "Configuración de usuario eHorus" + +#: ../../operation/users/user_edit.php:673 +msgid "eHorus user acces enabled" +msgstr "Acceso de usuario eHorus habilitado" + +#: ../../operation/users/user_edit.php:711 +msgid "" +"You can not change your user info under the current authentication scheme" +msgstr "" +"No puede cambiar la información de usuario con la configuración actual de " +"autenticación" + +#: ../../operation/users/user_edit.php:786 +msgid "This user doesn't have any assigned profile/group." +msgstr "Este usuario no tiene asignado ningún perfil/grupo" + +#: ../../operation/users/user_edit.php:990 +msgid "Double autentication information" +msgstr "Información sobre la doble autentificación" + +#: ../../operation/users/user_edit.php:1053 +#: ../../operation/users/user_edit.php:1129 +msgid "Double autentication activation" +msgstr "Activación de la doble autentificación" + +#: ../../operation/users/user_edit.php:1079 +msgid "The double authentication will be deactivated" +msgstr "La doble autentificación se desactivará" + +#: ../../operation/users/user_edit.php:1080 +msgid "Deactivate" +msgstr "Desactivado" + +#: ../../operation/users/user_edit.php:1112 +msgid "The double autentication was deactivated successfully" +msgstr "La doble autentificación fue desactivada correctamente" + +#: ../../operation/users/user_edit.php:1115 +#: ../../operation/users/user_edit.php:1119 +msgid "There was an error deactivating the double autentication" +msgstr "Error al desactivar la doble autentificación" + +#: ../../operation/users/user_edit_header.php:98 +msgid "User notifications" +msgstr "Notifivaciones de usuario" + +#: ../../operation/users/user_edit_header.php:121 ../../operation/menu.php:469 +msgid "Workspace" +msgstr "Área de trabajo" + +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Also receive an email" +msgstr "Recibir también un correo electrónico" + +#: ../../operation/search_helps.php:19 +msgid "Zero results found." +msgstr "Cero resultados" + +#: ../../operation/search_helps.php:20 #, php-format -msgid "User %s was deleted in the DB at %s" -msgstr "El usuario %s fue borrado de la base de datos el %s" - -#: ../../include/functions_users.php:680 -#, php-format -msgid "User %s logout at %s" -msgstr "El usuario %s salió a las %s" - -#: ../../include/functions_incidents.php:95 -#: ../../include/functions_incidents.php:116 -msgid "Active incidents" -msgstr "Incidentes activos" - -#: ../../include/functions_incidents.php:96 -#: ../../include/functions_incidents.php:120 -msgid "Active incidents, with comments" -msgstr "Incidentes activos, con comentarios" - -#: ../../include/functions_incidents.php:97 -#: ../../include/functions_incidents.php:124 -msgid "Rejected incidents" -msgstr "Incidentes rechazados" - -#: ../../include/functions_incidents.php:98 -#: ../../include/functions_incidents.php:128 -msgid "Expired incidents" -msgstr "Incidentes caducados" - -#: ../../include/functions_incidents.php:99 -#: ../../include/functions_incidents.php:132 -msgid "Closed incidents" -msgstr "Incidentes cerrados" - -#: ../../include/functions_visual_map.php:2721 -msgid "Agent successfully added to layout" -msgstr "Agente añadido correctamente al diseño" - -#: ../../include/functions_visual_map.php:2905 -msgid "Modules successfully added to layout" -msgstr "Módulos añadidos correctamente al diseño" - -#: ../../include/functions_visual_map.php:3236 -msgid "Agents successfully added to layout" -msgstr "Agentes añadidos correctamente al diseño" - -#: ../../include/functions_visual_map.php:3635 -msgid "Cannot load the visualmap" -msgstr "No se puede cargar el mapa visual" - -#: ../../include/functions_visual_map.php:4253 -#: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1306 -#: ../../enterprise/dashboard/widgets/clock.php:25 -#: ../../enterprise/dashboard/widgets/clock.php:79 -msgid "Clock" -msgstr "Reloj" - -#: ../../include/functions_visual_map.php:4258 -msgid "Bars graph" -msgstr "Gráfico de barras" - -#: ../../include/functions_visual_map.php:4268 -msgid "Percentile bar" -msgstr "Barra de porcentaje" - -#: ../../include/functions_visual_map.php:4273 -msgid "Circular progress bar" -msgstr "Barra de progreso circular" - -#: ../../include/functions_visual_map.php:4278 -#: ../../include/functions_visual_map_editor.php:621 -msgid "Circular progress bar (interior)" -msgstr "Barra de progreso circular (interior)" - -#: ../../include/functions_integriaims.php:41 -msgid "Configure Integria IMS" -msgstr "Configurar Integria IMS" - -#: ../../include/functions_integriaims.php:42 -msgid "Ticket list" -msgstr "Lista de tickets" - -#: ../../include/functions_integriaims.php:43 -msgid "New ticket" -msgstr "Nuevo ticket" - -#: ../../include/functions_integriaims.php:72 -msgid "Edit ticket" -msgstr "Editar ticket" - -#: ../../include/functions_integriaims.php:73 -msgid "View ticket" -msgstr "Ver ticket" - -#: ../../include/functions_integriaims.php:209 msgid "" -"API request failed. Please check Integria IMS' access credentials in Pandora " -"setup." +"You can find more help in the wiki" msgstr "" -"Error de petición API. Compruebe los credenciales de acceso a Integria IMS " -"en los ajustes de Pandora FMS." +"Puede encontrar más ayuda en el wiki" -#: ../../include/functions_maps.php:50 -#: ../../include/functions_reporting.php:969 -#: ../../include/functions_reporting.php:6807 -#: ../../operation/agentes/pandora_networkmap.php:776 -#: ../../enterprise/include/functions_reporting.php:2237 -#: ../../enterprise/include/functions_reporting.php:3186 -#: ../../enterprise/include/functions_reporting.php:4159 -msgid "Dynamic" -msgstr "Dinámico" +#: ../../operation/search_helps.php:33 +msgid "Matches" +msgstr "Coincidencias" -#: ../../include/functions_menu.php:492 -msgid "Configure user" -msgstr "Configurar usuario" +#: ../../operation/visual_console/view.php:291 +msgid "Delete Item" +msgstr "Eliminar elemento" -#: ../../include/functions_menu.php:493 -msgid "Configure profile" -msgstr "Configurar perfil" - -#: ../../include/functions_menu.php:495 -msgid "Manage recontask" -msgstr "Gestionar tarea recon" - -#: ../../include/functions_menu.php:497 -msgid "Module templates management" -msgstr "Gestión de plantillas de módulos" - -#: ../../include/functions_menu.php:498 -msgid "Inventory modules management" -msgstr "Gestión de módulos de inventario" - -#: ../../include/functions_menu.php:499 -#: ../../enterprise/meta/advanced/component_management.php:49 -msgid "Tags management" -msgstr "Gestión de etiquetas" - -#: ../../include/functions_menu.php:503 -msgid "View agent" -msgstr "Ver agente" - -#: ../../include/functions_menu.php:507 -msgid "Manage network map" -msgstr "Gestionar mapas de red" - -#: ../../include/functions_menu.php:509 -msgid "Builder visual console" -msgstr "Configurador de la consola visual" - -#: ../../include/functions_menu.php:511 -msgid "Administration events" -msgstr "Administrador de eventos" - -#: ../../include/functions_menu.php:513 -msgid "View reporting" -msgstr "Ver informes" - -#: ../../include/functions_menu.php:514 -msgid "Graph viewer" -msgstr "Visor de gráficos" - -#: ../../include/functions_menu.php:516 -msgid "Manage custom graphs" -msgstr "Gestionar gráficos personalizados" - -#: ../../include/functions_menu.php:517 -msgid "View graph containers" -msgstr "Ver contenedores de gráfico" - -#: ../../include/functions_menu.php:518 -msgid "Manage graph containers" -msgstr "Gestionar contenedores de gráfico" - -#: ../../include/functions_menu.php:519 -msgid "View graph templates" -msgstr "Ver plantillas de gráfico" - -#: ../../include/functions_menu.php:520 -msgid "Manage graph templates" -msgstr "Gestionar plantillas de gráfico" - -#: ../../include/functions_menu.php:521 -msgid "Graph template items" -msgstr "Elementos de la plantilla de gráfico" - -#: ../../include/functions_menu.php:522 -msgid "Graph template wizard" -msgstr "Asistente de plantilla de gráfico" - -#: ../../include/functions_menu.php:524 -msgid "Copy dashboard" -msgstr "Copiar dashboard" - -#: ../../include/functions_menu.php:527 -msgid "Manage GIS Maps" -msgstr "Gestionar mapas GIS" - -#: ../../include/functions_menu.php:530 -msgid "Incidents statistics" -msgstr "Estadísticas de incidentes" - -#: ../../include/functions_menu.php:531 -msgid "Manage messages" -msgstr "Gestionar mensajes" - -#: ../../include/functions_menu.php:533 -msgid "Manage groups" -msgstr "Gestionar grupos" - -#: ../../include/functions_menu.php:534 -msgid "Manage module groups" -msgstr "Gestionar grupos de módulos" - -#: ../../include/functions_menu.php:535 -msgid "Manage custom field" -msgstr "Gestionar campos personalizados" - -#: ../../include/functions_menu.php:537 -msgid "Manage alert actions" -msgstr "Gestionar acciones de alertas" - -#: ../../include/functions_menu.php:538 -msgid "Manage commands" -msgstr "Gestionar comandos" - -#: ../../include/functions_menu.php:539 -msgid "Manage event alerts" -msgstr "Gestionar eventos de alertas" - -#: ../../include/functions_menu.php:541 -msgid "Manage export targets" -msgstr "Gestionar objetivos de exportación" - -#: ../../include/functions_menu.php:543 -msgid "Manage services" -msgstr "Gestionar de servicios" - -#: ../../include/functions_menu.php:545 ../../operation/menu.php:143 -msgid "SNMP filters" -msgstr "Filtros SNMP" - -#: ../../include/functions_menu.php:546 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/operation/menu.php:184 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -msgid "SNMP trap editor" -msgstr "Editor de traps SNMP" - -#: ../../include/functions_menu.php:547 ../../operation/menu.php:144 -msgid "SNMP trap generator" -msgstr "Generador de traps SNMP" - -#: ../../include/functions_menu.php:548 ../../operation/menu.php:133 -msgid "SNMP console" -msgstr "Consola SNMP" - -#: ../../include/functions_menu.php:550 -msgid "Manage incident" -msgstr "Gestionar incidentes" - -#: ../../include/functions_menu.php:603 -msgid "Administration" -msgstr "Administración" - -#: ../../include/functions_visual_map_editor.php:62 -msgid "" -"To use 'label'field, you should write\n" -"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " -"printed at the end." -msgstr "" -"Para usar el campo \"etiqueta\", debe escribir\n" -"\t\t\t\t\tun texto para reemplazar '(_VALUE_)' y el valor del módulo se " -"grabará al final." - -#: ../../include/functions_visual_map_editor.php:108 -#: ../../include/functions_visual_map_editor.php:134 -msgid "Border color" -msgstr "Color del borde" - -#: ../../include/functions_visual_map_editor.php:152 -msgid "Border width" -msgstr "Ancho del borde" - -#: ../../include/functions_visual_map_editor.php:161 -msgid "Fill color" -msgstr "Color de relleno" - -#: ../../include/functions_visual_map_editor.php:217 -msgid "" -"Scroll the mouse wheel over the label editor to change the background color" -msgstr "" -"Desliza la rueda del ratón sobre el editor de etiquetas para cambiar el " -"color de fondo." - -#: ../../include/functions_visual_map_editor.php:233 -msgid "Clock animation" -msgstr "Animación de reloj" - -#: ../../include/functions_visual_map_editor.php:236 -msgid "Simple analogic" -msgstr "Analógico" - -#: ../../include/functions_visual_map_editor.php:237 -msgid "Simple digital" -msgstr "Digital" - -#: ../../include/functions_visual_map_editor.php:251 -msgid "Time format" -msgstr "Formato de hora" - -#: ../../include/functions_visual_map_editor.php:254 -msgid "Only time" -msgstr "Solo la hora" - -#: ../../include/functions_visual_map_editor.php:255 -msgid "Time and date" -msgstr "Hora y fecha" - -#: ../../include/functions_visual_map_editor.php:291 -msgid "Time zone" -msgstr "Zona horaria" - -#: ../../include/functions_visual_map_editor.php:307 -msgid "Enable link" -msgstr "Activar enlace" - -#: ../../include/functions_visual_map_editor.php:328 -msgid "White" -msgstr "Blanco" - -#: ../../include/functions_visual_map_editor.php:329 -msgid "Black" -msgstr "Negro" - -#: ../../include/functions_visual_map_editor.php:330 -msgid "Transparent" -msgstr "Transparente" - -#: ../../include/functions_visual_map_editor.php:344 -msgid "Grid color" -msgstr "Color de cuadrícula" - -#: ../../include/functions_visual_map_editor.php:464 -msgid "Data image" -msgstr "Datos en imagen" - -#: ../../include/functions_visual_map_editor.php:469 -msgid "Resume data color" -msgstr "Color de la leyenda" - -#: ../../include/functions_visual_map_editor.php:483 -msgid "24h" -msgstr "24h" - -#: ../../include/functions_visual_map_editor.php:484 -msgid "8h" -msgstr "8h" - -#: ../../include/functions_visual_map_editor.php:485 -msgid "2h" -msgstr "2h" - -#: ../../include/functions_visual_map_editor.php:486 -msgid "1h" -msgstr "1h" - -#: ../../include/functions_visual_map_editor.php:490 -msgid "Max. Time" -msgstr "Tiempo máximo" - -#: ../../include/functions_visual_map_editor.php:572 -msgid "Original Size" -msgstr "Tamaño original" - -#: ../../include/functions_visual_map_editor.php:580 -msgid "Aspect ratio" -msgstr "Relación de aspecto" - -#: ../../include/functions_visual_map_editor.php:581 -msgid "Proportional Width" -msgstr "Ancho proporcional" - -#: ../../include/functions_visual_map_editor.php:589 -msgid "Height proportional" -msgstr "Altura proporcional" - -#: ../../include/functions_visual_map_editor.php:620 -msgid "Circular porgress bar" -msgstr "Barra de progreso circular" - -#: ../../include/functions_visual_map_editor.php:671 -msgid "Element color" -msgstr "Color del elemento" - -#: ../../include/functions_visual_map_editor.php:691 -msgid "Value color" -msgstr "Color del valor" - -#: ../../include/functions_visual_map_editor.php:725 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:521 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:393 -msgid "Show statistics" -msgstr "Mostrar estadísticas" - -#: ../../include/functions_visual_map_editor.php:733 -msgid "Diameter" -msgstr "Diámetro" - -#: ../../include/functions_visual_map_editor.php:740 -msgid "Default color" -msgstr "Color predeterminado" - -#: ../../include/functions_visual_map_editor.php:744 -msgid "" -"The color of the element will be the one selected in the first range created " -"in which the value of the module is found (with the initial and final values " -"of the range included)" -msgstr "" -"El color del elemento será el seleccionado en el primer intervalo creado, en " -"el que se encuentra el valor del módulo (con los valores iniciales y finales " -"del intervalo incluidos)" - -#: ../../include/functions_visual_map_editor.php:747 -msgid "Ranges" -msgstr "Intervalos" - -#: ../../include/functions_visual_map_editor.php:747 -msgid "From value" -msgstr "Desde el valor" - -#: ../../include/functions_visual_map_editor.php:747 -msgid "To value" -msgstr "Hasta el valor" - -#: ../../include/functions_visual_map_editor.php:747 -msgid "Color" -msgstr "Color" - -#: ../../include/functions_visual_map_editor.php:752 -msgid "Always show on top" -msgstr "Mostrar siempre arriba" - -#: ../../include/functions_visual_map_editor.php:753 -msgid "" -"It allows the element to be superimposed to the rest of items of the visual " -"console" -msgstr "" -"Permite que el elemento se superponga al resto de los elementos de la " -"consola visual" - -#: ../../include/functions_visual_map_editor.php:756 -msgid "Hide last value on boolean modules" -msgstr "Ocultar el último valor en módulos boleanos" - -#: ../../include/functions_visual_map_editor.php:762 -msgid "Show last value" -msgstr "Mostrar último valor" - -#: ../../include/functions_visual_map_editor.php:775 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:95 -msgid "Vertical" -msgstr "Vertical" - -#: ../../include/functions_visual_map_editor.php:776 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:98 -msgid "Horizontal" -msgstr "Horizontal" - -#: ../../include/functions_visual_map_editor.php:844 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "" -"Para usar el tamaño original de la imagen, configura en 0 el ancho y en 0 el " -"alto." - -#: ../../include/functions_visual_map_editor.php:884 -msgid "Linked visual console" -msgstr "Consola visual enlazada" - -#: ../../include/functions_visual_map_editor.php:991 -#: ../../enterprise/extensions/visual_console_manager.php:247 -msgid "By status weight" -msgstr "Por peso de estadp" - -#: ../../include/functions_visual_map_editor.php:992 -#: ../../enterprise/extensions/visual_console_manager.php:248 -msgid "By critical elements" -msgstr "Por elementos críticos" - -#: ../../include/functions_visual_map_editor.php:1007 -msgid "Type of the status calculation of the linked visual console" -msgstr "Tipo de cálculo de estado de la consola visual enlazada" - -#: ../../include/functions_visual_map_editor.php:1012 -#: ../../enterprise/extensions/visual_console_manager.php:256 -msgid "By default" -msgstr "Por defecto" - -#: ../../include/functions_visual_map_editor.php:1032 -msgid "Linked visual console weight" -msgstr "Peso de la consola visual enlazada" - -#: ../../include/functions_visual_map_editor.php:1058 -#: ../../enterprise/extensions/visual_console_manager.php:278 -#: ../../enterprise/godmode/services/services.elements.php:735 -msgid "Critical weight" -msgstr "Peso crítico" - -#: ../../include/functions_visual_map_editor.php:1084 -#: ../../enterprise/extensions/visual_console_manager.php:293 -#: ../../enterprise/godmode/services/services.elements.php:739 -msgid "Warning weight" -msgstr "Peso de advertencia" - -#: ../../include/functions_visual_map_editor.php:1099 -msgid "Lines haven't advanced options" -msgstr "Las líneas no tienen opciones avanzadas." - -#: ../../include/functions_visual_map_editor.php:1116 -msgid "Restrict access to group" -msgstr "Restringir acceso al grupo" - -#: ../../include/functions_visual_map_editor.php:1127 -msgid "" -"If selected, restrict visualization of this item in the visual console to " -"users who have access to selected group. This is also used on calculating " -"child visual consoles." -msgstr "" -"Si se selecciona, se restringirá la visualización de este elemento en la " -"consola visual a los usuarios que tengan acceso al grupo seleccionado. " -"También se utiliza para calcular consolas visuales de los hijos." - -#: ../../include/functions_visual_map_editor.php:1158 -msgid "Cache expiration" -msgstr "Caducidad del caché" - -#: ../../include/functions_visual_map_editor.php:1197 -msgid "Click start point
of the line" -msgstr "Haz clic en el punto de inicio
de la línea" - -#: ../../include/functions_visual_map_editor.php:1200 -msgid "Click end point
of the line" -msgstr "Haz clic en el punto final
de la línea" - -#: ../../include/functions_visual_map_editor.php:1300 -msgid "Serialized pie graph" -msgstr "Gráfico circular serializado" - -#: ../../include/functions_visual_map_editor.php:1301 -msgid "Bars Graph" -msgstr "Gráfico de barras" - -#: ../../include/functions_visual_map_editor.php:1323 -msgid "Show grid" -msgstr "Mostrar cuadrícula" - -#: ../../include/functions_visual_map_editor.php:1325 -msgid "Delete item" -msgstr "Borrar elemento" - -#: ../../include/functions_visual_map_editor.php:1326 -msgid "Copy item" +#: ../../operation/visual_console/view.php:297 +msgid "Copy Item" msgstr "Copiar elemento" -#: ../../include/functions_visual_map_editor.php:1366 -#: ../../include/functions_visual_map_editor.php:1370 -#: ../../include/functions_visual_map_editor.php:1374 -#: ../../include/functions_visual_map_editor.php:1378 -#: ../../include/functions_visual_map_editor.php:1382 -#: ../../include/functions_visual_map_editor.php:1386 -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map_editor.php:1402 -#: ../../include/functions_visual_map_editor.php:1406 -#: ../../include/functions_visual_map_editor.php:1410 -#: ../../include/functions_visual_map_editor.php:1414 -#: ../../include/functions_visual_map_editor.php:1418 -#: ../../include/functions_visual_map_editor.php:1422 -#: ../../include/functions_visual_map_editor.php:1426 -#: ../../include/functions_visual_map_editor.php:1430 -#: ../../include/functions_visual_map_editor.php:1434 -#: ../../include/functions_visual_map_editor.php:1438 -msgid "Visual Console Builder Information" -msgstr "Información del desarrollador de la consola visual" - -#: ../../include/functions_visual_map_editor.php:1367 -msgid "Min allowed size is 1024x768." -msgstr "El tamaño mín. permitido es 1024x768." - -#: ../../include/functions_visual_map_editor.php:1371 -#: ../../include/functions_visual_map_editor.php:1439 -msgid "No custom graph defined." -msgstr "No hay gráfica personalizada definida." - -#: ../../include/functions_visual_map_editor.php:1375 -msgid "No image or name defined." -msgstr "No se ha definido ningún nombre o imagen." - -#: ../../include/functions_visual_map_editor.php:1379 -msgid "No label defined." -msgstr "No se ha definido ninguna etiqueta." - -#: ../../include/functions_visual_map_editor.php:1383 -msgid "No service defined." -msgstr "No hay servicio definido." - -#: ../../include/functions_visual_map_editor.php:1387 -msgid "No image defined." -msgstr "No se ha definido ninguna imagen." - -#: ../../include/functions_visual_map_editor.php:1391 -msgid "No process defined." -msgstr "No hay ningún proceso definido." - -#: ../../include/functions_visual_map_editor.php:1395 -msgid "No Max value defined." -msgstr "No hay ningún valor máximo definido." - -#: ../../include/functions_visual_map_editor.php:1399 -msgid "No width defined." -msgstr "No hay margen definido." - -#: ../../include/functions_visual_map_editor.php:1403 -msgid "No height defined." -msgstr "Altura sin definir" - -#: ../../include/functions_visual_map_editor.php:1407 -msgid "The width must not exceed the size of the visual console container." -msgstr "" -"El ancho no debe exceder el tamaño del contenedor de la consola visual." - -#: ../../include/functions_visual_map_editor.php:1411 -msgid "The height must not exceed the size of the visual console container." -msgstr "" -"La altura no debe exceder el tamaño del contenedor de la consola visual." - -#: ../../include/functions_visual_map_editor.php:1415 -msgid "No period defined." -msgstr "No hay ningún período definido." - -#: ../../include/functions_visual_map_editor.php:1419 -msgid "No agent defined." -msgstr "No hay ningún agente definido." - -#: ../../include/functions_visual_map_editor.php:1423 -msgid "No module defined." -msgstr "No hay ningún módulo definido." - -#: ../../include/functions_visual_map_editor.php:1427 -msgid "No module defined. This module must be string type." -msgstr "No hay módulo definido. Este módulo debe ser del tipo cadena." - -#: ../../include/functions_visual_map_editor.php:1431 -msgid "Successfully save the changes." -msgstr "Cambios guardados con éxito" - -#: ../../include/functions_visual_map_editor.php:1435 -msgid "Could not be save." -msgstr "No se ha podido guardar." - -#: ../../include/get_file.php:39 -msgid "Security error. Please contact the administrator." -msgstr "Error de seguridad. Contacta con el administrador." - -#: ../../include/get_file.php:62 -msgid "File is missing in disk storage. Please contact the administrator." -msgstr "" -"El archivo no se encuentra en el disco. Por favor, contacta con el " -"administrador." - -#: ../../include/functions_modules.php:2441 -#: ../../include/functions_modules.php:2445 -#: ../../include/functions_modules.php:2449 -#: ../../mobile/operation/modules.php:544 -#: ../../mobile/operation/modules.php:552 -#: ../../mobile/operation/modules.php:560 -#: ../../mobile/operation/modules.php:607 -#: ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:623 -#: ../../operation/agentes/pandora_networkmap.view.php:341 -#: ../../operation/agentes/pandora_networkmap.view.php:346 -#: ../../operation/agentes/pandora_networkmap.view.php:351 -#: ../../operation/agentes/status_monitor.php:1434 -#: ../../operation/agentes/status_monitor.php:1440 -#: ../../operation/agentes/status_monitor.php:1450 -#: ../../operation/agentes/status_monitor.php:1456 -#: ../../operation/agentes/status_monitor.php:1466 -#: ../../operation/agentes/status_monitor.php:1472 -#: ../../operation/search_modules.php:123 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:139 -#: ../../enterprise/include/functions_services.php:2703 -#: ../../enterprise/include/functions_services.php:2709 -#: ../../enterprise/include/functions_services.php:2714 -#: ../../enterprise/operation/agentes/policy_view.php:393 -#: ../../enterprise/operation/agentes/policy_view.php:398 -#: ../../enterprise/operation/agentes/policy_view.php:403 -#: ../../enterprise/operation/agentes/tag_view.php:972 -#: ../../enterprise/operation/agentes/tag_view.php:978 -#: ../../enterprise/operation/agentes/tag_view.php:988 -#: ../../enterprise/operation/agentes/tag_view.php:994 -#: ../../enterprise/operation/agentes/tag_view.php:1004 -#: ../../enterprise/operation/agentes/tag_view.php:1010 -#: ../../enterprise/operation/agentes/transactional_map.php:184 -msgid "Last status" -msgstr "Último estado" - -#: ../../include/functions_modules.php:3334 -msgid "Realtime SNMP graph" -msgstr "Gráfica SNMP en tiempo real" - -#: ../../include/functions_modules.php:3397 -msgid "ALL" -msgstr "TODO" - -#: ../../include/functions_modules.php:3413 -msgid "NOT NORMAL" -msgstr "NO NORMAL" - -#: ../../include/functions_netflow.php:346 -msgid "Total flows" -msgstr "Fluctuaciones totales" - -#: ../../include/functions_netflow.php:351 -msgid "Total bytes" -msgstr "Bytes totales" - -#: ../../include/functions_netflow.php:356 -msgid "Total packets" -msgstr "Paquetes totales" - -#: ../../include/functions_netflow.php:361 -msgid "Average bits per second" -msgstr "Media de bits por segundo" - -#: ../../include/functions_netflow.php:366 -msgid "Average packets per second" -msgstr "Media de paquetes por segundo" - -#: ../../include/functions_netflow.php:371 -msgid "Average bytes per packet" -msgstr "Media de bytes por paquete" - -#: ../../include/functions_netflow.php:1033 -msgid "Area graph" -msgstr "Gráfico del área" - -#: ../../include/functions_netflow.php:1035 -#: ../../operation/agentes/exportdata.php:361 -msgid "Data table" -msgstr "Tabla de datos" - -#: ../../include/functions_netflow.php:1036 -msgid "Circular mesh" -msgstr "Malla circular" - -#: ../../include/functions_netflow.php:1037 -#: ../../include/functions_netflow.php:1249 -msgid "Host detailed traffic" -msgstr "Tráfico detallado de la máquina" - -#: ../../include/functions_netflow.php:1236 -#: ../../enterprise/include/functions_reporting_csv.php:1937 -msgid "Sent" -msgstr "Enviado" - -#: ../../include/functions_netflow.php:1244 -#: ../../enterprise/include/functions_reporting_csv.php:1945 -msgid "Received" -msgstr "Recibido" - -#: ../../include/functions_netflow.php:1377 -msgid "Dst port" -msgstr "Puerto destino" - -#: ../../include/functions_netflow.php:1380 -msgid "Dst IP" -msgstr "IP de destino" - -#: ../../include/functions_netflow.php:1383 -msgid "Src IP" -msgstr "IP de origen" - -#: ../../include/functions_netflow.php:1386 -msgid "Src port" -msgstr "Puerto de origen" - -#: ../../include/functions_netflow.php:1573 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump binary (%s) no encontrado" - -#: ../../include/functions_netflow.php:1580 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "" -"Asegúrate de que tienes instalada la versión 1.6.8 nfdump o alguna posterior." - -#: ../../include/functions_netflow.php:1597 -msgid "High" -msgstr "Alta" - -#: ../../include/functions_netflow.php:1598 -msgid "Ultra High" -msgstr "Extra alta" - -#: ../../include/functions_netflow.php:1599 -#: ../../enterprise/include/functions_cron.php:465 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../include/functions_netflow.php:1631 -#, php-format -msgid "Agregate by %s" -msgstr "Añadir por %s" - -#: ../../include/functions_netflow.php:1639 -#, php-format -msgid "Resolution %s" -msgstr "Resolución de %s" - -#: ../../include/graphs/export_data.php:68 -#: ../../include/graphs/export_data.php:128 -msgid "An error occured exporting the data" -msgstr "Error al exportar los datos" - -#: ../../include/graphs/export_data.php:74 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:125 -msgid "Selected" -msgstr "Seleccionado" - -#: ../../include/graphs/functions_flot.php:360 -#: ../../include/graphs/functions_flot.php:391 -msgid "Cancel zoom" -msgstr "Cancelar el zoom" - -#: ../../include/graphs/functions_flot.php:362 -msgid "Warning and Critical thresholds" -msgstr "Umbrales de advertencia y crítico" - -#: ../../include/graphs/functions_flot.php:367 -msgid "Overview graph" -msgstr "Gráfico de vista general" - -#: ../../include/functions_reporting_html.php:94 -msgid "Label: " -msgstr "Etiqueta: " - -#: ../../include/functions_reporting_html.php:120 -#: ../../enterprise/include/functions_reporting_csv.php:1998 -#: ../../enterprise/include/functions_reporting_csv.php:2002 -#: ../../enterprise/include/functions_reporting_pdf.php:1507 -msgid "Generated" -msgstr "Generado" - -#: ../../include/functions_reporting_html.php:123 -#: ../../enterprise/include/functions_reporting_pdf.php:1511 -msgid "Report date" -msgstr "Fecha del informe" - -#: ../../include/functions_reporting_html.php:128 -#: ../../operation/reporting/reporting_viewer.php:215 -#: ../../enterprise/include/functions_reporting_pdf.php:1530 -msgid "Items period before" -msgstr "Período de elementos antes de" - -#: ../../include/functions_reporting_html.php:494 -#: ../../enterprise/include/functions_reporting.php:1677 -#: ../../enterprise/include/functions_reporting.php:2597 -#: ../../enterprise/include/functions_reporting.php:3589 -msgid "Max/Min Values" -msgstr "Valores max/min" - -#: ../../include/functions_reporting_html.php:495 -#: ../../enterprise/include/functions_reporting.php:1678 -#: ../../enterprise/include/functions_reporting.php:2598 -#: ../../enterprise/include/functions_reporting.php:3590 -#: ../../enterprise/include/functions_reporting.php:5705 -#: ../../enterprise/include/functions_reporting_csv.php:1299 -#: ../../enterprise/include/functions_reporting_csv.php:1345 -#: ../../enterprise/include/functions_reporting_csv.php:1418 -#: ../../enterprise/include/functions_reporting_csv.php:1537 -#: ../../enterprise/include/functions_reporting_csv.php:1805 -msgid "SLA Limit" -msgstr "Límite del SLA" - -#: ../../include/functions_reporting_html.php:496 -#: ../../enterprise/include/functions_reporting.php:1679 -#: ../../enterprise/include/functions_reporting.php:1848 -#: ../../enterprise/include/functions_reporting.php:2599 -#: ../../enterprise/include/functions_reporting.php:3591 -#: ../../enterprise/include/functions_reporting.php:5706 -msgid "SLA Compliance" -msgstr "Cumplimiento del SLA" - -#: ../../include/functions_reporting_html.php:526 -msgid "Global Time" -msgstr "Tiempo global" - -#: ../../include/functions_reporting_html.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:1733 -msgid "Time Total" -msgstr "Tiempo total" - -#: ../../include/functions_reporting_html.php:528 -msgid "Time Failed" -msgstr "Tiempo en fallo" - -#: ../../include/functions_reporting_html.php:529 -#: ../../include/functions_reporting_html.php:3053 -#: ../../enterprise/include/functions_reporting_csv.php:1734 -msgid "Time OK" -msgstr "Tiempo OK" - -#: ../../include/functions_reporting_html.php:530 -#: ../../include/functions_reporting_html.php:3059 -#: ../../enterprise/include/functions_reporting_csv.php:1736 -msgid "Time Unknown" -msgstr "Tiempo desconocido" - -#: ../../include/functions_reporting_html.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:1737 -msgid "Time Not Init" -msgstr "Tiempo no iniciado" - -#: ../../include/functions_reporting_html.php:532 -msgid "Downtime" -msgstr "Parada planificada" - -#: ../../include/functions_reporting_html.php:557 -msgid "Checks Time" -msgstr "Tiempo de comprobaciones" - -#: ../../include/functions_reporting_html.php:558 -#: ../../enterprise/include/functions_reporting_csv.php:1739 -msgid "Checks Total" -msgstr "Comprobaciones totales" - -#: ../../include/functions_reporting_html.php:559 -#: ../../enterprise/include/functions_reporting_csv.php:498 -msgid "Checks Failed" -msgstr "Comprobaciones fallidas" - -#: ../../include/functions_reporting_html.php:560 -#: ../../include/functions_reporting_html.php:3126 -#: ../../enterprise/include/functions_reporting_csv.php:1740 -msgid "Checks OK" -msgstr "Comprobaciones OK" - -#: ../../include/functions_reporting_html.php:561 -#: ../../enterprise/include/functions_reporting_csv.php:1742 -msgid "Checks Unknown" -msgstr "Comprobaciones desconocidas" - -#: ../../include/functions_reporting_html.php:725 -#: ../../include/functions_reporting_html.php:3260 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3744 -#: ../../include/functions_reporting.php:1449 -#: ../../include/functions_reporting.php:2483 -#: ../../enterprise/dashboard/widgets/top_n.php:537 -msgid "There are no Agent/Modules defined" -msgstr "No hay Agentes/Módulos definidos" - -#: ../../include/functions_reporting_html.php:780 -#: ../../include/functions_reporting_html.php:3536 -#: ../../enterprise/include/functions_services.php:2321 -#: ../../enterprise/include/functions_reporting.php:2907 -#: ../../enterprise/include/functions_reporting.php:3905 -#: ../../enterprise/include/functions_reporting.php:5771 -msgid "Unknow" -msgstr "Desconocido" - -#: ../../include/functions_reporting_html.php:785 -#: ../../include/functions_reporting_html.php:3541 -#: ../../enterprise/include/functions_reporting.php:1719 -#: ../../enterprise/include/functions_reporting.php:2653 -#: ../../enterprise/include/functions_reporting.php:2912 -#: ../../enterprise/include/functions_reporting.php:3646 -#: ../../enterprise/include/functions_reporting.php:3910 -#: ../../enterprise/include/functions_reporting.php:4827 -#: ../../enterprise/include/functions_reporting.php:5776 -msgid "Not Init" -msgstr "No iniciado" - -#: ../../include/functions_reporting_html.php:790 -#: ../../include/functions_reporting_html.php:3546 -#: ../../enterprise/include/functions_reporting.php:2917 -#: ../../enterprise/include/functions_reporting.php:3915 -#: ../../enterprise/include/functions_reporting.php:5781 -msgid "Downtimes" -msgstr "Paradas planificadas" - -#: ../../include/functions_reporting_html.php:911 -#: ../../include/functions_reporting_html.php:1838 -#: ../../include/functions_reporting_html.php:3297 -#: ../../include/functions_reporting_html.php:3768 -msgid "Min Value" -msgstr "Valor mínimo" - -#: ../../include/functions_reporting_html.php:912 -#: ../../include/functions_reporting_html.php:1839 -#: ../../include/functions_reporting_html.php:3298 -#: ../../include/functions_reporting_html.php:3769 -msgid "Average Value" -msgstr "Valor medio" - -#: ../../include/functions_reporting_html.php:913 -#: ../../include/functions_reporting_html.php:1840 -#: ../../include/functions_reporting_html.php:3295 -#: ../../include/functions_reporting_html.php:3771 -msgid "Max Value" -msgstr "Valor máximo" - -#: ../../include/functions_reporting_html.php:962 -#: ../../include/functions_reporting_html.php:1186 -#: ../../include/functions_reporting_html.php:1959 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1317 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1009 -msgid "Count" -msgstr "Número" - -#: ../../include/functions_reporting_html.php:967 -#: ../../include/functions_reporting_html.php:975 -#: ../../include/functions_reporting_html.php:1965 -msgid "Val. by" -msgstr "Val. por" - -#: ../../include/functions_reporting_html.php:1034 -#, php-format -msgid "%s System" -msgstr "Sistema %s" - -#: ../../include/functions_reporting_html.php:1082 -#: ../../include/functions_reporting_html.php:1282 -msgid "Events by agent" -msgstr "Eventos por agente" - -#: ../../include/functions_reporting_html.php:1099 -#: ../../include/functions_reporting_html.php:1299 -msgid "Events by user validator" -msgstr "Eventos por usuario validador" - -#: ../../include/functions_reporting_html.php:1116 -#: ../../include/functions_reporting_html.php:1316 -msgid "Events by Severity" -msgstr "Eventos por gravedad" - -#: ../../include/functions_reporting_html.php:1133 -#: ../../include/functions_reporting_html.php:1333 -msgid "Events validated vs unvalidated" -msgstr "Eventos validados vs no validados" - -#: ../../include/functions_reporting_html.php:1400 -#: ../../enterprise/include/functions_inventory.php:715 -#: ../../enterprise/include/functions_inventory.php:778 -msgid "Added" -msgstr "Añadido" - -#: ../../include/functions_reporting_html.php:1617 -#: ../../enterprise/dashboard/widgets/agent_module.php:421 -#: ../../enterprise/include/functions_reporting_pdf.php:841 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "%s en %s : NORMAL" - -#: ../../include/functions_reporting_html.php:1634 -#: ../../enterprise/dashboard/widgets/agent_module.php:437 -#: ../../enterprise/include/functions_reporting_pdf.php:858 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "%s en %s : CRÍTICO" - -#: ../../include/functions_reporting_html.php:1651 -#: ../../enterprise/dashboard/widgets/agent_module.php:453 -#: ../../enterprise/include/functions_reporting_pdf.php:875 -#, php-format -msgid "%s in %s : WARNING" -msgstr "%s en %s : ADVERTENCIA" - -#: ../../include/functions_reporting_html.php:1668 -#: ../../enterprise/dashboard/widgets/agent_module.php:469 -#: ../../enterprise/include/functions_reporting_pdf.php:892 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "%s en %s : DESCONOCIDO" - -#: ../../include/functions_reporting_html.php:1687 -#: ../../enterprise/dashboard/widgets/agent_module.php:502 -#: ../../enterprise/include/functions_reporting_pdf.php:926 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "%s en %s : ALERTA DISPARADA" - -#: ../../include/functions_reporting_html.php:1704 -#: ../../enterprise/dashboard/widgets/agent_module.php:485 -#: ../../enterprise/include/functions_reporting_pdf.php:909 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "%s en %s : No iniciado" - -#: ../../include/functions_reporting_html.php:1734 -msgid "Cell turns grey when the module is in 'not initialize' status" -msgstr "Celda gris cuando el módulo está en estado \"no iniciado\"" - -#: ../../include/functions_reporting_html.php:1904 -#: ../../include/functions_reporting_html.php:4338 -msgid "Monitors" -msgstr "Monitores" - -#: ../../include/functions_reporting_html.php:1915 -#: ../../include/functions_reporting_html.php:2407 -#: ../../include/functions_reporting_html.php:2408 -#: ../../mobile/operation/alerts.php:48 -#: ../../operation/agentes/alerts_status.functions.php:79 -#: ../../operation/snmpconsole/snmp_view.php:208 -#: ../../operation/snmpconsole/snmp_view.php:1173 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2626 -msgid "Fired" -msgstr "Disparada" - -#: ../../include/functions_reporting_html.php:1924 -#, php-format -msgid "Last %s" -msgstr "Último %s" - -#: ../../include/functions_reporting_html.php:2064 -msgid "Events validated by user" -msgstr "Eventos validados por el usuario" - -#: ../../include/functions_reporting_html.php:2081 -#: ../../include/functions_reporting_html.php:4613 -msgid "Events by severity" -msgstr "Eventos por gravedad" - -#: ../../include/functions_reporting_html.php:2098 -#: ../../operation/events/event_statistics.php:75 -msgid "Amount events validated" -msgstr "Cantidad de eventos validados" - -#: ../../include/functions_reporting_html.php:2325 -#, php-format -msgid "Interface '%s' throughput graph" -msgstr "Interfaz '%s' gráfico de rendimiento" - -#: ../../include/functions_reporting_html.php:2329 -msgid "Mac" -msgstr "Mac" - -#: ../../include/functions_reporting_html.php:2330 -msgid "Actual status" -msgstr "Estado actual" - -#: ../../include/functions_reporting_html.php:2652 -#: ../../include/functions_reporting_html.php:2654 -msgid "Empty modules" -msgstr "Módulos vacíos" - -#: ../../include/functions_reporting_html.php:2661 -msgid "Warning
Critical" -msgstr "Advertencia
Crítico" - -#: ../../include/functions_reporting_html.php:2766 -#: ../../include/functions_reporting_html.php:2794 -#: ../../include/functions_reporting_html.php:2822 -#: ../../include/functions_reporting_html.php:2843 -#: ../../include/functions_reporting_html.php:2846 -#: ../../include/functions_reporting_html.php:2851 -#: ../../include/functions_reporting.php:4955 -#: ../../include/functions_reporting.php:4978 -#: ../../include/functions_reporting.php:4982 -#: ../../include/functions_reporting.php:4986 -#: ../../include/functions_reporting.php:4990 -#: ../../enterprise/include/functions_reporting_csv.php:1083 -#: ../../enterprise/include/functions_reporting_pdf.php:467 -#: ../../enterprise/include/functions_reporting_pdf.php:499 -#: ../../enterprise/include/functions_reporting_pdf.php:525 -#: ../../enterprise/include/functions_reporting_pdf.php:550 -#: ../../enterprise/include/functions_reporting_pdf.php:553 -#: ../../enterprise/include/functions_reporting_pdf.php:560 -msgid "Maximun" -msgstr "Máximo" - -#: ../../include/functions_reporting_html.php:2774 -#: ../../include/functions_reporting_html.php:2829 -#: ../../enterprise/include/functions_reporting_pdf.php:475 -#: ../../enterprise/include/functions_reporting_pdf.php:532 -msgid "Minimun" -msgstr "Mínimo" - -#: ../../include/functions_reporting_html.php:2782 -#: ../../include/functions_reporting_html.php:2836 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:61 -#: ../../enterprise/include/functions_reporting_pdf.php:483 -#: ../../enterprise/include/functions_reporting_pdf.php:539 -msgid "Average" -msgstr "Media" - -#: ../../include/functions_reporting_html.php:2821 -#: ../../include/functions_reporting_html.php:2828 -#: ../../include/functions_reporting_html.php:2835 -#: ../../include/functions_reporting_html.php:2845 -#: ../../include/functions_reporting_html.php:2850 -#: ../../include/functions_reporting.php:4973 -#: ../../enterprise/include/functions_reporting_csv.php:1028 -#: ../../enterprise/include/functions_reporting_csv.php:1083 -#: ../../enterprise/include/functions_reporting_csv.php:1187 -#: ../../enterprise/include/functions_reporting_pdf.php:524 -#: ../../enterprise/include/functions_reporting_pdf.php:531 -#: ../../enterprise/include/functions_reporting_pdf.php:538 -#: ../../enterprise/include/functions_reporting_pdf.php:552 -#: ../../enterprise/include/functions_reporting_pdf.php:557 -msgid "Lapse" -msgstr "Tiempo transcurrido" - -#: ../../include/functions_reporting_html.php:2916 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -msgid "From data" -msgstr "Desde datos" - -#: ../../include/functions_reporting_html.php:2917 -#: ../../enterprise/include/functions_reporting_csv.php:1118 -msgid "To data" -msgstr "hasta datos" - -#: ../../include/functions_reporting_html.php:2945 -#: ../../enterprise/include/functions_reporting_csv.php:1124 -#: ../../enterprise/include/functions_reporting_csv.php:1135 -msgid "Negative increase: " -msgstr "Incremento negativo: " - -#: ../../include/functions_reporting_html.php:2947 -#: ../../enterprise/include/functions_reporting_csv.php:1126 -#: ../../enterprise/include/functions_reporting_csv.php:1137 -msgid "Positive increase: " -msgstr "Incremento positivo: " - -#: ../../include/functions_reporting_html.php:2949 -#: ../../enterprise/include/functions_reporting_csv.php:1128 -#: ../../enterprise/include/functions_reporting_csv.php:1139 -msgid "Neutral increase: " -msgstr "Incremento neutral: " - -#: ../../include/functions_reporting_html.php:3065 -msgid "Time Not Init Module" -msgstr "Tiempo en módulo no iniciado" - -#: ../../include/functions_reporting_html.php:3071 -#: ../../enterprise/include/functions_reporting_csv.php:1738 -msgid "Time Downtime" -msgstr "Tiempo de parada planificada" - -#: ../../include/functions_reporting_html.php:3076 -msgid "% Ok" -msgstr "% OK" - -#: ../../include/functions_reporting_html.php:3132 -msgid "Checks Uknown" -msgstr "Comprobaciones en desconocido" - -#: ../../include/functions_reporting_html.php:3296 -#: ../../enterprise/include/functions_reporting_csv.php:619 -msgid "Agent min value" -msgstr "Valor mínimo del agente" - -#: ../../include/functions_reporting_html.php:3481 -msgid "Primary" -msgstr "Primario" - -#: ../../include/functions_reporting_html.php:3676 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 -#: ../../enterprise/include/functions_reporting_csv.php:881 -msgid "Sum" -msgstr "Suma" - -#: ../../include/functions_reporting_html.php:3883 -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:8919 -msgid "Alert level" -msgstr "Nivel de alerta" - -#: ../../include/functions_reporting_html.php:4019 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1378 -msgid "Alert description" -msgstr "Descripción de la alerta" - -#: ../../include/functions_reporting_html.php:4059 -#: ../../include/functions_reporting_html.php:4213 -#: ../../mobile/include/functions_web.php:22 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -msgid "Monitor" -msgstr "Monitor" - -#: ../../include/functions_reporting_html.php:4112 -#, php-format -msgid "Agents in group: %s" -msgstr "Agentes en el grupo: %s" - -#: ../../include/functions_reporting_html.php:4214 -msgid "Last failure" -msgstr "Último fallo" - -#: ../../include/functions_reporting_html.php:4304 -msgid "N/A(*)" -msgstr "N/A(*)" - -#: ../../include/functions_reporting_html.php:4517 -#: ../../include/functions_reporting_html.php:4522 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:501 -msgid "Agents by status" -msgstr "Agentes por estado" - -#: ../../include/functions_reporting_html.php:4541 -#: ../../include/functions_reporting.php:9119 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -msgid "Monitor checks" -msgstr "Comprobaciones de monitores" - -#: ../../include/functions_reporting_html.php:4545 -#: ../../include/functions_reporting.php:9138 -msgid "Total agents and monitors" -msgstr "Total de agentes y monitores" - -#: ../../include/functions_reporting_html.php:4558 -#: ../../operation/agentes/pandora_networkmap.php:695 -#: ../../enterprise/godmode/reporting/cluster_list.php:191 -msgid "Nodes" -msgstr "Nodos" - -#: ../../include/functions_reporting_html.php:4564 -#: ../../include/functions_reporting_html.php:4569 -msgid "Node overview" -msgstr "Resumen de nodos" - -#: ../../include/functions_reporting_html.php:4589 -#: ../../include/functions_reporting_html.php:4601 -msgid "Critical events" -msgstr "Eventos en estado crítico" - -#: ../../include/functions_reporting_html.php:4592 -#: ../../include/functions_reporting_html.php:4603 -msgid "Warning events" -msgstr "Eventos en estado de advertencia" - -#: ../../include/functions_reporting_html.php:4595 -#: ../../include/functions_reporting_html.php:4605 -msgid "OK events" -msgstr "Eventos OK" - -#: ../../include/functions_reporting_html.php:4598 -#: ../../include/functions_reporting_html.php:4607 -msgid "Unknown events" -msgstr "Eventos desconocidos" - -#: ../../include/functions_reporting_html.php:4623 -msgid "Important Events by Criticity" -msgstr "Eventos importantes por gravedad" - -#: ../../include/functions_reporting_html.php:4649 -#, php-format -msgid "Last activity in %s console" -msgstr "Última actividad en la consola %s" - -#: ../../include/functions_reporting_html.php:4740 -#: ../../include/functions_reporting_html.php:4881 -msgid "Events info (1hr.)" -msgstr "Información de eventos (1h)" - -#: ../../include/functions_reporting_html.php:5070 -msgid "Kilobytes" -msgstr "Kilobytes" - -#: ../../include/functions_reporting_html.php:5071 -#: ../../enterprise/include/functions_reporting_csv.php:1938 -#: ../../enterprise/include/functions_reporting_csv.php:1946 -msgid "Packages" -msgstr "Paquetes" - -#: ../../include/functions_reporting_html.php:5075 -msgid "No network traffic sent data" -msgstr "Datos de tráfico de red no enviado" - -#: ../../include/functions_reporting_html.php:5085 -msgid "Network traffic sent" -msgstr "Tráfico de red enviado" - -#: ../../include/functions_reporting_html.php:5092 -msgid "No network traffic received data" -msgstr "Datos de tráfico de red no recibido" - -#: ../../include/functions_reporting_html.php:5102 -msgid "Network traffic received" -msgstr "Tráfico de red recibido" - -#: ../../include/functions_reporting_html.php:5123 -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:5124 -msgid "" -"If the duration of the planned downtime is less than 5 minutes it will not " -"be represented in the graph" -msgstr "" -"Si la duración de la parada planificada es de menos de 5 minutos, no se " -"representará en el gráfico" - -#: ../../include/functions_reporting_html.php:5131 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:431 -msgid "Dates" -msgstr "Fechas" - -#: ../../include/functions_reporting_html.php:5162 -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:5162 -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_planned_downtimes.php:577 -msgid "Succesful stopped the Downtime" -msgstr "La parada planificada se ha detenido correctamente." - -#: ../../include/functions_planned_downtimes.php:578 -msgid "Unsuccesful stopped the Downtime" -msgstr "La parada planificada no ha podido ser detenida." - -#: ../../include/functions_planned_downtimes.php:718 -#, php-format -msgid "Enabled %s elements from the downtime" -msgstr "Habilitar %s elementos desde la parada" - -#: ../../include/functions_planned_downtimes.php:777 -msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" -msgstr "" -"La parada debe estar silenciada, disable_agents o disable_agents_alerts" - -#: ../../include/functions_planned_downtimes.php:782 -msgid "The execution must be once or periodically" -msgstr "La ejecución debe ser única o periódica" - -#: ../../include/functions_planned_downtimes.php:787 -msgid "The periodicity must be weekly or monthly" -msgstr "La periodicidad debe ser semanal o mensual" - -#: ../../include/functions_planned_downtimes.php:792 -msgid "There is no user with such id" -msgstr "No hay usuarios con ese ID" - -#: ../../include/functions_planned_downtimes.php:797 -msgid "There is no group with such id" -msgstr "No hay grupos con ese ID" - -#: ../../include/functions_planned_downtimes.php:802 -msgid "Date is wrong formatted" -msgstr "Formato de fecha incorrecto" - -#: ../../include/functions_planned_downtimes.php:909 -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:916 -msgid "Deleted this planned downtime successfully." -msgstr "Parada planificada borrada correctamente" - -#: ../../include/functions_planned_downtimes.php:918 -msgid "Problems for deleted this planned downtime." -msgstr "Error al borrar la parada planificada" - -#: ../../include/help/clippy/agent_out_of_limits.php:35 -msgid "Agent contact date passed it's ETA!." -msgstr "¡La fecha de contacto del agente pasó su plazo estimado!" - -#: ../../include/help/clippy/agent_out_of_limits.php:35 -msgid "" -"This happen when your agent stopped reporting or the server have any problem " -"(too load or just down). Check also connectivity between the agent and the " -"server." -msgstr "" -"Esto sucede cuando un agente deja de informar o el servidor tiene algún " -"problema (demasiada carga o simplemente está caído). Comprueba también la " -"conectividad entre el agente y el servidor." - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "Data Configuration Module." -msgstr "Módulos de datos de configuración" - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Please note that information provided here affects how the agent collect " -"information and generate the data XML. Any data/configuration reported by " -"the agent, different from data or description is discarded, and the " -"configuration shown in the console prevails over any configuration coming " -"from the agent, this applies for example for crit/warn thresholds, interval, " -"module group, min/max value, tags, etc." -msgstr "" -"Por favor, ten en cuenta que la información aquí proporcionada afecta la " -"forma en que el agente recoge la información y genera el XML de datos. " -"Cualquier dato/configuración enviado por el agente, a diferencia de los " -"enviados desde datos o descripción que son descartados, y la configuración " -"mostrada en la consola prevalece sobre cualquier configuración procedente " -"del agente. Esto se aplica por ejemplo para umbrales críticos/advertencia, " -"intervalo, grupo módulo, valor mínimo/máximo, etiquetas, etc." - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Information imported FIRST time from the XML will fill the information you " -"can see in the console, but after the first import, system will ignore any " -"update coming from the XML/Agent." -msgstr "" -"La información importada por PRIMERA vez desde el XML llenará la información " -"visible en la consola, pero después de la primera importación, el sistema " -"ignorará cualquier actualización que viene del XML/Agente." - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "" -"The configuration of email for the task email is in the enterprise setup:" -msgstr "" -"La configuración del email para la tarea programada de emails está en la " -"configuración de Enterprise:" - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "Please check if the email configuration is correct." -msgstr "Por favor, confirma que la configuración de email es correcta." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "Ahora ve a los módulos. Pero no te preocupes, te guiaré paso a paso." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 -msgid "Click in this tab.." -msgstr "Haz clic en esta pestaña." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "" -"Ahora tienes que crear el módulo, pero no te preocupes, yo te enseñaré." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 -msgid "Choose the network server module." -msgstr "Elige el módulo de servidor de red." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 -msgid "And click the button." -msgstr "Y haz clic en el botón." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "" -"Ahora tienes que crear el módulo, pero no te preocupes, yo te enseñaré." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 -msgid "Now we are going to fill the form." -msgstr "Ahora procedemos a rellenar el formulario." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 -msgid "Please choose Network Management." -msgstr "Por favor, selecciona \"Gestión de redes\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 -msgid "Choose the component named \"Host alive\"." -msgstr "Selecciona el componente llamado \"Host alive\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 -msgid "You can change the name if you want." -msgstr "Puedes cambiar el nombre si quieres." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 -msgid "Check if the IP showed is the IP of your machine." -msgstr "Prueba si la IP mostrada es la IP de tu máquina." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 -msgid "And only to finish it is clicking this button." -msgstr "Y para terminar pulsa en este botón." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 -msgid "" -"Congrats! Your module has been created.
and the status color is " -"blue.
That color means that the module hasn't been executed for " -"the first time. In the next seconds, if there is no problem, the status " -"color will turn into red or green." -msgstr "" -"¡Felicidades! Has creado tu módulo
y el color de estado es " -"azul.
Ese color significa que el módulo no se ha ejecutado. En " -"los próximos segundos, si no hay problemas, el color de estado pasará a " -"rojo o verde." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 -msgid "Click on alerts tab and then fill the form to add an alert." -msgstr "" -"Haz clic en la pestaña de alertas para rellenar el formulario con la alerta " -"a añadir." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 -msgid "Select the critical module." -msgstr "Elige el módulo crítico." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 -msgid "In template select \"Critical Condition\"." -msgstr "En las plantillas, selecciona \"Critical Condition\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 -msgid "Now, select the action created before." -msgstr "Ahora, elige la acción creada anteriormente." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "Click on Add Alert button to create the alert." -msgstr "Haz clic en el botón añadir alerta para crear la alerta." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 -msgid "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." -msgstr "" -"Para probar la alerta que acabas de crear, ve a la vista principal, haz clic " -"en la pestaña con el icono del ojo." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 -msgid "I'm going to show you how to monitor a server." -msgstr "Te voy a mostrar cómo monitorizar un servidor." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 -msgid "Please, type an agent to save the modules for monitoring a server." -msgstr "" -"Por favor, escribe el nombre de un agente para guardar los módulos para " -"monitorizar un servidor." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 -msgid "If you have typed the name correctly you will see the agent." -msgstr "Si has introducido el nombre correctamente, verás el agente." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 -msgid "Now, please choose the agent you searched." -msgstr "Ahora elige el agente que buscaste." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 -msgid "Choose the agent and click on the name." -msgstr "Elige el agente y haz clic en el nombre." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 -msgid "" -"Let me show you how to create an email action: Click on Create button and " -"fill the form showed in the following screen." -msgstr "" -"Te voy a enseñar a crear una acción de correo electrónico: haz clic en el " -"botón Crear y rellena el formulario que aparecerá en la siguiente pantalla." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 -msgid "" -"Now, you have to go to the monitors list and look for a critical module to " -"apply the alert." -msgstr "" -"Ahora ve a la lista de monitores y busca un módulo en estado crítico para " -"enlazarle la alerta." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 -msgid "" -"Click on the arrow to drop down the Monitoring submenu and select Monitor " -"Detail." -msgstr "" -"Haz clic en la flecha para desplegar el submenú Monitorización y selecciona " -"Detalle del monitor." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 -msgid "Fill the name of your action." -msgstr "Rellena el nombre de la acción." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 -msgid "" -"Select the group in the drop-down list and filter for ACL (the user in this " -"group can use your action to create an alert)." -msgstr "" -"Selecciona el grupo en la lista desplegable y un filtro para las ACL (el " -"usuario en este grupo puede utilizar la acción de crear una alerta)." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42 -msgid "In the command field select \"email\"." -msgstr "En este campo de comando elige \"email\"." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 -msgid "" -"In the threshold field enter the seconds. The help icon show more " -"information." -msgstr "" -"En el campo de umbral se rellena con un número de segundos. El icono de " -"ayuda te mostrará más ayuda." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 -msgid "" -"In the first field enter the email address/addresses where you want to " -"receive the email alerts separated with comas ( , ) or white spaces." -msgstr "" -"En el primer campo introduce la dirección/es de email en las que deseas " -"recibir las alertas de email separadas por comas (,) o espacios en blanco." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 -msgid "" -"In the \"Subject\" field you can use the macros _agent_ or _module_ for " -"each name." -msgstr "" -"En el campo \"Asunto\" puedes usar macros _agent_ o _module_ para el asunto " -"del email." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 -msgid "" -"In the text field, you can also use macros. Get more information about the " -"macros by clicking on the help icon." -msgstr "" -"En el campo de texto, también puedes utilizar las macros. Hay mas " -"información acerca de las macros en el icono de ayuda." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 -msgid "Click on Create button to create the action." -msgstr "Haz clic en el botón de crear para crear la acción." - -#: ../../include/help/clippy/homepage.php:75 -msgid "Hi, can I help you?" -msgstr "Hola. ¿Te puedo ayudar?" - -#: ../../include/help/clippy/homepage.php:75 -#, php-format -msgid "" -"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You " -"can follow my steps to do basic tasks in %s or you can close me and never " -"see me again." -msgstr "" -"Déjame que me presente: Soy Pandorín, el molestoso asistente de %s. Puedes " -"seguir los pasos que te indico para llevar a cabo tareas básicas en %s o " -"cerrarme y no volverme a ver nunca." - -#: ../../include/help/clippy/homepage.php:75 -msgid "Close this wizard and don't open it again." -msgstr "Cerrar el asistente y no volver a abrirlo." - -#: ../../include/help/clippy/homepage.php:79 -msgid "Which task would you like to do first?" -msgstr "¿Qué tarea te gustaría realizar primero?" - -#: ../../include/help/clippy/homepage.php:79 -#, php-format -msgid "Ping a Linux or Windows server using a %s agent." -msgstr "Hacer ping a un servidor Linux o Windows usando un agente %s." - -#: ../../include/help/clippy/homepage.php:79 -msgid "Create a alert by email in a critical module." -msgstr "Crear una alerta que avise por email para un módulo crítico" - -#: ../../include/help/clippy/homepage.php:190 -#, php-format -msgid "" -"The first thing you have to do is to setup the e-mail config on the %s " -"Server." -msgstr "" -"Lo primero que tiene que hacer es establecer la configuración del correo " -"electrónico del servidor de %s." - -#: ../../include/help/clippy/homepage.php:190 -msgid "If you have it already configured you can go to the next step." -msgstr "Si ya está configurado, puedes ir al siguiente paso." - -#: ../../include/help/clippy/homepage.php:195 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "Ahora, abre el menú Administrar alertas y haz clic en Acciones. " - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "Interval Agent." -msgstr "Intervalo de agente" - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "" -"Please note that having agents with a monitoring interval below 300 seconds " -"is not recommended. This will impact seriously in the performance of the " -"server. For example, having 200 agents with one minute interval, is the same " -"than having 1000 agents with a 5 minute interval. The probability of getting " -"unknown modules is higher, and the impact on the server is higher because it " -"requires a shorter response time." -msgstr "" -"Por favor, ten en cuenta que no se recomienda tener agentes con un intervalo " -"de monitorización por debajo de los 300 segundos. Esto tendrá un impacto " -"serio en el rendimiento del servidor. Tener 200 agentes con un intervalo de " -"un minuto, es lo mismo que tener 1000 agentes con un intervalo de 5 minutos. " -"La probabilidad de obtener módulos desconocidos es más alto, y el impacto en " -"el servidor es mayor, ya que requiere un tiempo de respuesta más corto." - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "You have unknown modules in this agent." -msgstr "Tienes módulos en estado desconocido en este agente." - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "" -"Unknown modules are modules which receive data normally at least in one " -"occassion, but at this time are not receving data. Please check our " -"troubleshoot help page to help you determine why you have unknown modules." -msgstr "" -"Los módulos desconocidos son módulos que reciben datos normalmente al menos " -"en una ocasión, pero en este momento no se reciben datos. Por favor, " -"consulta la página de ayuda para solucionar los problemas sobre los módulos " -"desconocidos." - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "You have non initialized modules" -msgstr "Tienes módulos sin iniciar." - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "" -"This happen when you have just created a module and it's not executed at " -"first time. Usually in a few seconds should be initialized and you will be " -"able to see in main view. If you keep non-init modules for more than 24hr " -"(due a problem in it's execution or configuration) they will be " -"automatically deleted by the system. Non-init are not visible in the “main " -"view”, you can see/edit them in the module administration section, in the " -"agent administrator." -msgstr "" -"Esto sucede cuando se acaba de crear un módulo y no está ejecutado. Por lo " -"general, en unos pocos segundos se debería iniciar y podrás verlo en la " -"vista principal. Si se mantienen módulos no iniciados durante más de 24 " -"horas (puede ser un problema en la ejecución o configuración) serán " -"eliminados automáticamente por el sistema. Los no iniciados no son visibles " -"en la vista principal; se pueden ver/editar en la sección de administración " -"del módulo, en el administrador de agente." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"Please note that you have your agent setup to do not add new modules coming " -"from the data XML." -msgstr "" -"Por favor, ten en cuenta que si no tienes activado el modo aprendizaje no se " -"añadirán nuevos módulos que vengan del XML." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"That means if you have a local plugin or add manually new modules to the " -"configuration file, you won't have it in your agent, unless you first create " -"manually in the interface (with the exact name and type as coming in the XML " -"file)." -msgstr "" -"Esto quiere decir que si se tiene un plugin local o se añaden manualmente " -"nuevos módulos al archivo de configuración, no se encontrará en el agente a " -"menos que se cree primero en la interfaz (con el mismo nombre y tipo que el " -"archivo XML)." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"You should use the \"normal\" mode (non learn) only when you don't intend to " -"add more modules to the agent." -msgstr "" -"Deberías usar el modo \"normal\" (no aprendizaje) solo cuando no tengas " -"intención de añadir más módulos al agente." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 -msgid "" -"Now, you have to go to the monitors list and look for a \"critical\" module " -"to apply the alert." -msgstr "" -"Ahora, tienes que ir a la lista de monitores y buscar un módulo en estado " -"\"crítico\" para enlazarle una alerta." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 -msgid "" -"If you know the name of the agent or the name of the module in critical " -"status, type it in this field to make the module list shorter. You can write " -"the entire name or just a part of it." -msgstr "" -"Si conoces el nombre del agente o el nombre del módulo en estado crítico, " -"escríbelo en este campo para hacer la lista de módulos más cortos. Puedes " -"escribir el nombre completo o solo una parte." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 -msgid "Click on Show button to get the modules list filtered." -msgstr "Haz clic en botón Mostrar para obtener la lista filtrada." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 -msgid "" -"Now, to edit the module, click on the wrench that appears in the type column." -msgstr "" -"Ahora, para editar el módulo, haz clic en la llave inglesa que aparece en la " -"columna del tipo." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "" -"The last step is to check the alert created. Click on the round icon to " -"force the action execution and after a few minutes you will receive the " -"alert in your email." -msgstr "" -"El último paso es comprobar que la alerta ha sido creada. Haz clic en el " -"icono redondo para forzar la ejecución de la acción y después de unos " -"minutos recibirás la alerta en tu correo electrónico." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" -"Reinicia tu servidor de Pandora FMS para leer otra vez lo tokens generales " -"de configuración." - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "Excesive Queued." -msgstr "Demasiados módulos en cola" - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "" -"You have too much items in the processing queue. This can happen if your " -"server is too loaded and/or not properly configured. This could be something " -"temporal, or a bottleneck. One possible solution is increase number of " -"server threads, but you should consider getting support about this." -msgstr "" -"Tienes demasiados elementos en cola. Esto puede ocurrir si el servidor está " -"demasiado cargado y/o no está bien configurado. Puede ser algo temporal, o " -"un cuello de botella. Una posible solución es aumentar el número de hilos " -"del servidor, pero deberías pensar en consultarlo con soporte técnico." - -#: ../../include/help/clippy/servers_down.php:35 -msgid "All servers down" -msgstr "Todo los servidores están caídos" - -#: ../../include/help/clippy/servers_down.php:35 -msgid "" -"Can you up all servers. You go to terminal in linux and execute the next " -"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " -"introduce root pass." -msgstr "" -"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y " -"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". " -"Es posible que necesites introducir la contraseña de root." - -#: ../../include/help/clippy/topology_group.php:35 -msgid "Topology Group" -msgstr "Tipología de grupo" - -#: ../../include/help/clippy/topology_group.php:35 -msgid "" -"Please note that group topology maps do not show the parent relationship " -"between nodes, it only shows the group parentship and the agent distribution " -"inside them. " -msgstr "" -"Ten en cuenta que el grupo de mapas de topología no muestra la relación " -"padre entre los nodos, solo muestra el grupo padre y el agente de " -"distribución dentro de ellos. " - -#: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:727 -#: ../../operation/users/user_edit.php:736 -msgid "Profiles/Groups assigned to this user" -msgstr "Perfiles/Grupos asignados a este usuario" - -#: ../../include/functions_profile.php:214 -#: ../../enterprise/godmode/setup/setup_auth.php:170 -#: ../../enterprise/godmode/setup/setup_auth.php:227 -msgid "No hierarchy" -msgstr "No hay jerarquía" - -#: ../../include/functions_reporting.php:361 -msgid " agents" -msgstr " agentes" - -#: ../../include/functions_reporting.php:371 -msgid " modules" -msgstr " módulos" - -#: ../../include/functions_reporting.php:917 -#: ../../include/functions_reporting.php:6540 -#: ../../enterprise/include/functions_reporting.php:2195 -#: ../../enterprise/include/functions_reporting.php:3144 -#: ../../enterprise/include/functions_reporting.php:4117 -msgid "There are no SLAs defined" -msgstr "No hay SLA definidos" - -#: ../../include/functions_reporting.php:980 -#: ../../include/functions_reporting.php:6818 -#: ../../enterprise/include/functions_reporting.php:2248 -#: ../../enterprise/include/functions_reporting.php:3197 -#: ../../enterprise/include/functions_reporting.php:4170 -msgid "Inverse" -msgstr "Inverso" - -#: ../../include/functions_reporting.php:1377 -msgid "Top N" -msgstr "Top N" - -#: ../../include/functions_reporting.php:1401 -#: ../../operation/snmpconsole/snmp_statistics.php:131 -#: ../../operation/snmpconsole/snmp_statistics.php:199 -#: ../../enterprise/include/functions_reporting_csv.php:787 -#, php-format -msgid "Top %d" -msgstr "Primeros %d" - -#: ../../include/functions_reporting.php:1505 -#: ../../enterprise/dashboard/widgets/top_n.php:615 -msgid "Insuficient data" -msgstr "Datos insuficientes" - -#: ../../include/functions_reporting.php:1749 -msgid "Event Report Group" -msgstr "Informe de eventos del grupo" - -#: ../../include/functions_reporting.php:2010 -msgid "Event Report Module" -msgstr "Informe de eventos del módulo" - -#: ../../include/functions_reporting.php:2144 -#: ../../enterprise/include/functions_reporting_csv.php:647 -msgid "Inventory Changes" -msgstr "Cambios de inventario" - -#: ../../include/functions_reporting.php:2191 -#: ../../enterprise/extensions/ipam/ipam_action.php:303 -msgid "No changes found." -msgstr "No se han encontrado cambios" - -#: ../../include/functions_reporting.php:2291 -msgid "Agent/Modules" -msgstr "Agentes/módulos" - -#: ../../include/functions_reporting.php:2390 -msgid "Exception - Everything" -msgstr "Excepción - Todo" - -#: ../../include/functions_reporting.php:2396 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "Excepción - Módulos por encima de o igual a %s" - -#: ../../include/functions_reporting.php:2399 -#, php-format -msgid "Modules over or equal to %s" -msgstr "Módulos por encima de o igual a %s" - -#: ../../include/functions_reporting.php:2404 -#, 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:2407 -#, php-format -msgid "Modules under or equal to %s" -msgstr "Módulos por debajo de o igual a %s" - -#: ../../include/functions_reporting.php:2412 -#, php-format -msgid "Exception - Modules under %s" -msgstr "Excepción - Módulos por debajo de %s" - -#: ../../include/functions_reporting.php:2415 -#, php-format -msgid "Modules under %s" -msgstr "Módulos por debajo de %s" - -#: ../../include/functions_reporting.php:2420 -#, php-format -msgid "Exception - Modules over %s" -msgstr "Excepción - Módulos por encima de %s" - -#: ../../include/functions_reporting.php:2423 -#, php-format -msgid "Modules over %s" -msgstr "Módulos por encima de %s" - -#: ../../include/functions_reporting.php:2428 -#, php-format -msgid "Exception - Equal to %s" -msgstr "Excepción - Igual a %s" - -#: ../../include/functions_reporting.php:2431 -#, php-format -msgid "Equal to %s" -msgstr "Igual a %s" - -#: ../../include/functions_reporting.php:2436 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "Excepción - No igual a %s" - -#: ../../include/functions_reporting.php:2439 -#, php-format -msgid "Not equal to %s" -msgstr "No igual a %s" - -#: ../../include/functions_reporting.php:2443 -msgid "Exception - Modules at normal status" -msgstr "Excepción - Módulos en estado normal" - -#: ../../include/functions_reporting.php:2444 -msgid "Modules at normal status" -msgstr "Módulos en estado normal" - -#: ../../include/functions_reporting.php:2448 -msgid "Exception - Modules at critical or warning status" -msgstr "Excepción - Módulos en estado crítico o de advertencia" - -#: ../../include/functions_reporting.php:2449 -msgid "Modules at critical or warning status" -msgstr "Módulos en estado crítico o de advertencia" - -#: ../../include/functions_reporting.php:2667 -msgid "There are no Modules under those conditions." -msgstr "No hay módulos bajo esas condiciones" - -#: ../../include/functions_reporting.php:2671 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "No hay módulos por encima de o iguales a %s" - -#: ../../include/functions_reporting.php:2675 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "No hay módulos por debajo de o iguales a %s" - -#: ../../include/functions_reporting.php:2679 -#, php-format -msgid "There are no Modules less %s." -msgstr "No hay módulos por debajo de %s" - -#: ../../include/functions_reporting.php:2683 -#, php-format -msgid "There are no Modules over %s." -msgstr "No hay módulos por encima de %s" - -#: ../../include/functions_reporting.php:2687 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "No hay módulos iguales a %s" - -#: ../../include/functions_reporting.php:2691 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "No hay módulos no iguales a %s" - -#: ../../include/functions_reporting.php:2695 -msgid "There are no Modules normal status" -msgstr "No hay módulos en estado normal" - -#: ../../include/functions_reporting.php:2699 -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:2858 -#: ../../enterprise/include/functions_reporting_csv.php:824 -msgid "Group Report" -msgstr "Informe del grupo" - -#: ../../include/functions_reporting.php:2929 -msgid "Event Report Agent" -msgstr "Informe de eventos de agentes" - -#: ../../include/functions_reporting.php:3269 -msgid "Database Serialized" -msgstr "Base de datos serializada" - -#: ../../include/functions_reporting.php:3511 -msgid "Network interfaces report" -msgstr "Informe de las interfaces de red" - -#: ../../include/functions_reporting.php:3591 -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:3611 -msgid "bytes/s" -msgstr "bytes/s" - -#: ../../include/functions_reporting.php:3723 -#: ../../enterprise/include/functions_reporting_csv.php:2194 -msgid "Alert Report Group" -msgstr "Informe de alertas de grupo" - -#: ../../include/functions_reporting.php:3896 -#: ../../enterprise/include/functions_reporting_csv.php:2192 -msgid "Alert Report Agent" -msgstr "Informe de alertas de agente" - -#: ../../include/functions_reporting.php:4054 -#: ../../enterprise/include/functions_reporting_csv.php:2190 -msgid "Alert Report Module" -msgstr "Informe de alertas de módulo" - -#: ../../include/functions_reporting.php:4231 -msgid "SQL Graph Vertical Bars" -msgstr "Gráfico de barras verticales SQL" - -#: ../../include/functions_reporting.php:4235 -msgid "SQL Graph Horizontal Bars" -msgstr "Gráfico de barras horizontales SQL" - -#: ../../include/functions_reporting.php:4239 -msgid "SQL Graph Pie" -msgstr "Gráfico SQL circular" - -#: ../../include/functions_reporting.php:4315 -#: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../enterprise/include/functions_reporting_csv.php:1226 -#: ../../enterprise/include/functions_reporting_csv.php:1228 -msgid "Monitor Report" -msgstr "Informe de monitores" - -#: ../../include/functions_reporting.php:4445 -#: ../../enterprise/include/functions_reporting_csv.php:2252 -msgid "Netflow Area" -msgstr "Área de Netflow" - -#: ../../include/functions_reporting.php:4449 -#: ../../enterprise/include/functions_reporting_csv.php:2256 -msgid "Netflow Summary" -msgstr "Resumen de Netflow" - -#: ../../include/functions_reporting.php:4453 -#: ../../enterprise/include/functions_reporting_csv.php:2254 -msgid "Netflow Data" -msgstr "Datos de Netflow" - -#: ../../include/functions_reporting.php:4457 -msgid "Unknown report" -msgstr "Informe desconocido" - -#: ../../include/functions_reporting.php:4534 -msgid "Prediction Date" -msgstr "Fecha de predicción" - -#: ../../include/functions_reporting.php:4593 -#: ../../enterprise/include/functions_reporting_csv.php:695 -msgid "Projection Graph" -msgstr "Gráfico de proyección" - -#: ../../include/functions_reporting.php:4827 -#: ../../enterprise/include/functions_reporting_csv.php:1153 -#: ../../enterprise/include/functions_reporting_csv.php:1172 -#: ../../enterprise/include/functions_reporting_csv.php:1174 -#: ../../enterprise/include/functions_reporting_csv.php:1180 -#: ../../enterprise/include/functions_reporting_csv.php:1182 -msgid "AVG. Value" -msgstr "Valor medio" - -#: ../../include/functions_reporting.php:5103 -#: ../../enterprise/godmode/reporting/mysql_builder.php:165 -#: ../../enterprise/include/functions_reporting_csv.php:899 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:5181 -msgid "" -"Illegal query: Due security restrictions, there are some tokens or words you " -"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." -msgstr "" -"Consulta ilegal: debido a restricciones de seguridad, hay algunos tokens o " -"palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, " -"modificar, contraseña, pass, insertar o actualizar." - -#: ../../include/functions_reporting.php:6348 -msgid "No Address" -msgstr "Sin dirección" - -#: ../../include/functions_reporting.php:7170 -msgid "" -"The monitor have no data in this range of dates or monitor type is not " -"numeric" -msgstr "" -"El monitor no tiene datos en este rango de fecha o el tipo de monitor no es " -"numérico." - -#: ../../include/functions_reporting.php:7188 -msgid "The monitor type is not numeric" -msgstr "El tipo de monitor no es numérico." - -#: ../../include/functions_reporting.php:7486 -#: ../../enterprise/include/functions_reporting_csv.php:1028 -msgid "Minimum" -msgstr "Mínimo" - -#: ../../include/functions_reporting.php:7490 -msgid "Maximum" -msgstr "Máximo" - -#: ../../include/functions_reporting.php:7495 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:260 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:387 -msgid "Rate" -msgstr "Tasa" - -#: ../../include/functions_reporting.php:7570 -msgid "Automatic combined graph" -msgstr "Gráfica combinada automática" - -#: ../../include/functions_reporting.php:8303 -msgid "Maximum of events shown" -msgstr "Máximo número de eventos mostrados" - -#: ../../include/functions_reporting.php:8883 -#: ../../include/functions_reporting.php:8907 -msgid "Server health" -msgstr "Estado del servidor" - -#: ../../include/functions_reporting.php:8883 -#, php-format -msgid "%d Downed servers" -msgstr "%d servidores caídos" - -#: ../../include/functions_reporting.php:8888 -#: ../../include/functions_reporting.php:8911 -msgid "Monitor health" -msgstr "Estado del monitor" - -#: ../../include/functions_reporting.php:8888 -#, php-format -msgid "%d Not Normal monitors" -msgstr "%d monitores fuera de la normalidad" - -#: ../../include/functions_reporting.php:8888 -#: ../../include/functions_reporting.php:8912 -msgid "of monitors up" -msgstr "de monitores funcionando" - -#: ../../include/functions_reporting.php:8893 -#: ../../include/functions_reporting.php:8915 -msgid "Module sanity" -msgstr "Estado de los módulos" - -#: ../../include/functions_reporting.php:8893 -#, php-format -msgid "%d Not inited monitors" -msgstr "%d monitores sin iniciar" - -#: ../../include/functions_reporting.php:8893 -#: ../../include/functions_reporting.php:8916 -msgid "of total modules inited" -msgstr "del total de módulos iniciados" - -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:9974 -#: ../../include/functions_reporting.php:9984 -#, php-format -msgid "%d Fired alerts" -msgstr "%d alertas disparadas" - -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:8920 -msgid "of defined alerts not fired" -msgstr "de alertas definidas no disparadas" - -#: ../../include/functions_reporting.php:8959 -#: ../../enterprise/include/functions_reporting_csv.php:838 -msgid "Defined alerts" -msgstr "Alertas definidas" - -#: ../../include/functions_reporting.php:8981 -msgid "Defined and fired alerts" -msgstr "Alertas definidas y disparadas" - -#: ../../include/functions_reporting.php:9024 -#: ../../operation/events/sound_events.php:75 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:442 -msgid "Monitor critical" -msgstr "Monitor crítico" - -#: ../../include/functions_reporting.php:9028 -#: ../../operation/events/sound_events.php:75 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:453 -msgid "Monitor warning" -msgstr "Monitor en estado de advertencia" - -#: ../../include/functions_reporting.php:9035 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:464 -msgid "Monitor normal" -msgstr "Monitor normal" - -#: ../../include/functions_reporting.php:9039 -#: ../../operation/events/sound_events.php:75 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:475 -msgid "Monitor unknown" -msgstr "Monitor en estado desconocido" - -#: ../../include/functions_reporting.php:9046 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:486 -msgid "Monitor not init" -msgstr "Monitor en estado no iniciado" - -#: ../../include/functions_reporting.php:9066 -#: ../../include/functions_reporting.php:9072 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:509 -msgid "Monitors by status" -msgstr "Monitores por estado" - -#: ../../include/functions_reporting.php:9160 -msgid "Defined users" -msgstr "Usuarios definidos" - -#: ../../include/functions_reporting.php:9831 -msgid "Agent without data" -msgstr "Agente sin datos" - -#: ../../include/functions_reporting.php:9960 -#: ../../include/functions_reporting.php:9969 -#: ../../enterprise/operation/agentes/tag_view.php:1058 -#, php-format -msgid "%d Total modules" -msgstr "%d módulos totales" - -#: ../../include/functions_reporting.php:9961 -#: ../../enterprise/operation/agentes/tag_view.php:1059 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d módulos en estado normal" - -#: ../../include/functions_reporting.php:9962 -#: ../../enterprise/operation/agentes/tag_view.php:1060 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d módulos en estado crítico" - -#: ../../include/functions_reporting.php:9963 -#: ../../enterprise/operation/agentes/tag_view.php:1061 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d módulos en estado de advertencia" - -#: ../../include/functions_reporting.php:9964 -#: ../../enterprise/operation/agentes/tag_view.php:1062 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d módulos en estado desconocido" - -#: ../../include/functions_reporting.php:9965 -#: ../../enterprise/operation/agentes/tag_view.php:1063 -#, php-format -msgid "%d Modules in not init status" -msgstr "%d módulos en estado no iniciado" - -#: ../../include/functions_reporting.php:9970 -#, php-format -msgid "%d Normal modules" -msgstr "%d módulos normales" - -#: ../../include/functions_reporting.php:9971 -#, php-format -msgid "%d Critical modules" -msgstr "%d módulos críticos" - -#: ../../include/functions_reporting.php:9972 -#, php-format -msgid "%d Warning modules" -msgstr "%d módulos en estado de advertencia" - -#: ../../include/functions_reporting.php:9973 -#, php-format -msgid "%d Unknown modules" -msgstr "%d módulos desconocidos" - -#: ../../include/functions_reporting.php:9978 -#, php-format -msgid "%d Total agents" -msgstr "%d del total de agentes" - -#: ../../include/functions_reporting.php:9979 -#, php-format -msgid "%d Normal agents" -msgstr "%d agentes normales" - -#: ../../include/functions_reporting.php:9980 -#, php-format -msgid "%d Critical agents" -msgstr "%d agentes en estado crítico" - -#: ../../include/functions_reporting.php:9981 -#, php-format -msgid "%d Warning agents" -msgstr "%d agentes en estado de advertencia" - -#: ../../include/functions_reporting.php:9982 -#, php-format -msgid "%d Unknown agents" -msgstr "%d agentes desconocidos" - -#: ../../include/functions_reporting.php:9983 -#, php-format -msgid "%d not init agents" -msgstr "%d agentes no iniciados" - -#: ../../include/functions_reporting.php:11413 -msgid "Total running modules" -msgstr "Total de módulos en ejecución" - -#: ../../include/functions_reporting.php:11416 -#: ../../include/functions_reporting.php:11431 -#: ../../include/functions_reporting.php:11443 -#: ../../include/functions_reporting.php:11461 -#: ../../include/functions_reporting.php:11473 -#: ../../include/functions_reporting.php:11485 -#: ../../include/functions_reporting.php:11497 -msgid "Ratio" -msgstr "Proporción" - -#: ../../include/functions_reporting.php:11416 -#: ../../include/functions_reporting.php:11431 -#: ../../include/functions_reporting.php:11443 -#: ../../include/functions_reporting.php:11461 -#: ../../include/functions_reporting.php:11473 -#: ../../include/functions_reporting.php:11485 -#: ../../include/functions_reporting.php:11497 -msgid "Modules by second" -msgstr "Módulos por segundo" - -#: ../../include/functions_reporting.php:11428 -msgid "Local modules" -msgstr "Módulos locales" - -#: ../../include/functions_reporting.php:11438 -msgid "Network modules" -msgstr "Módulos de red" - -#: ../../include/functions_reporting.php:11457 -msgid "Plugin modules" -msgstr "Módulos de plugin" - -#: ../../include/functions_reporting.php:11469 -msgid "Prediction modules" -msgstr "Módulos de predicción" - -#: ../../include/functions_reporting.php:11481 -msgid "WMI modules" -msgstr "Módulos WMI" - -#: ../../include/functions_reporting.php:11493 -msgid "Web modules" -msgstr "Módulos web" - -#: ../../include/functions_reporting.php:11536 -#: ../../enterprise/dashboard/widgets/tactical.php:42 -msgid "Server performance" -msgstr "Rendimiento del servidor" - -#: ../../include/functions_reporting.php:11655 -msgid "Weekly:" -msgstr "Semanalmente:" - -#: ../../include/functions_reporting.php:11697 -msgid "Monthly:" -msgstr "Mensual:" - -#: ../../include/functions_reporting.php:11698 -msgid "From day" -msgstr "Desde el día" - -#: ../../include/functions_reporting.php:11699 -msgid "To day" -msgstr "Hasta el día" - -#: ../../mobile/include/functions_web.php:81 -#, 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:306 -#: ../../enterprise/include/functions_cron.php:1168 -#: ../../enterprise/include/functions_cron.php:1336 -msgid "Generated at" -msgstr "Generado el" - -#: ../../mobile/include/system.class.php:156 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"your system administrator if you should need help." -msgstr "" -"El acceso a esta página está restringido únicamente a los usuarios " -"autorizados. Póngase en contacto con el administrador de sistemas si " -"necesita ayuda." - -#: ../../mobile/include/system.class.php:156 -#, php-format -msgid "" -"Please remember that any attempts to access this page will be recorded on " -"the %s System Database." -msgstr "" -"Recuerde que cualquier intento de acceso a esta página quedara grabado en la " -"base de datos del sistema de %s." - -#: ../../mobile/include/ui.class.php:105 -#, php-format -msgid "%s mobile" -msgstr "%s móvil" - -#: ../../mobile/include/ui.class.php:202 -#, php-format -msgid "%s : Mobile" -msgstr "%s : Móvil" - -#: ../../mobile/include/ui.class.php:223 ../../mobile/operation/home.php:162 -msgid "Home" -msgstr "Inicio" - -#: ../../mobile/include/ui.class.php:306 -#, php-format -msgid "%s %s - Build %s" -msgstr "%s %s - Desarrollo %s" - -#: ../../mobile/include/ui.class.php:752 -msgid "Not found header." -msgstr "Encabezado no encontrado" - -#: ../../mobile/include/ui.class.php:754 -msgid "Not found content." -msgstr "Contenido no encontrado" - -#: ../../mobile/include/ui.class.php:756 -msgid "Not found footer." -msgstr "Pie de página no encontrado" - -#: ../../mobile/include/ui.class.php:758 -msgid "Incorrect form." -msgstr "Forma incorrecta" - -#: ../../mobile/include/ui.class.php:760 -msgid "Incorrect grid." -msgstr "Matriz incorrecta" - -#: ../../mobile/include/ui.class.php:762 -msgid "Incorrect collapsible." -msgstr "Plegable incorrecto" - -#: ../../mobile/include/user.class.php:173 -#: ../../mobile/include/user.class.php:188 -#: ../../mobile/include/user.class.php:195 -msgid "Double authentication failed" -msgstr "Fallo en la doble autentificación" - -#: ../../mobile/include/user.class.php:174 -msgid "Secret code not found" -msgstr "Código secreto no encontrado" - -#: ../../mobile/include/user.class.php:174 -msgid "Please contact the administrator to reset your double authentication" -msgstr "" -"Por favor, contacta con el administrador para restablecer la doble " -"autentificación." - -#: ../../mobile/include/user.class.php:196 -msgid "There was an error checking the code" -msgstr "Error al comprobar el código" - -#: ../../mobile/include/user.class.php:232 -msgid "Login Failed" -msgstr "Error de identificación" - -#: ../../mobile/include/user.class.php:233 -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:240 -msgid "Login out" -msgstr "Cerrar sesión" - -#: ../../mobile/include/user.class.php:271 -msgid "user" -msgstr "Usuario" - -#: ../../mobile/include/user.class.php:278 -msgid "password" -msgstr "contraseña" - -#: ../../mobile/include/user.class.php:344 -#: ../../mobile/include/user.class.php:345 -msgid "Authenticator code" -msgstr "Código de autentificación" - -#: ../../mobile/operation/agent.php:154 ../../mobile/operation/agents.php:195 -#: ../../mobile/operation/alerts.php:181 ../../mobile/operation/events.php:614 -#: ../../mobile/operation/groups.php:82 -#: ../../mobile/operation/module_graph.php:367 -#: ../../mobile/operation/module_graph.php:379 -#: ../../mobile/operation/modules.php:217 -#: ../../mobile/operation/tactical.php:104 -#: ../../mobile/operation/visualmap.php:125 -#: ../../mobile/operation/visualmaps.php:114 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:274 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:440 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:632 -#: ../../enterprise/mobile/operation/dashboard.php:103 -#: ../../enterprise/mobile/operation/dashboard.php:252 -msgid "Back" -msgstr "Atrás" - -#: ../../mobile/operation/agent.php:167 -msgid "No agent found" -msgstr "No se han encontrado agentes" - -#: ../../mobile/operation/agent.php:260 -msgid "Modules by status" -msgstr "Módulos por estado" - -#: ../../mobile/operation/agent.php:348 -#, php-format -msgid "Last %s Events" -msgstr "Últimos %s eventos" - -#: ../../mobile/operation/agents.php:203 -#, php-format -msgid "Filter Agents by %s" -msgstr "Filtros de agentes por %s" - -#: ../../mobile/operation/agents.php:245 ../../mobile/operation/alerts.php:247 -#: ../../mobile/operation/events.php:717 ../../mobile/operation/modules.php:300 -msgid "Apply Filter" -msgstr "Aplicar el filtro" - -#: ../../mobile/operation/agents.php:444 -msgid "No agents" -msgstr "Sin agentes" - -#: ../../mobile/operation/agents.php:539 ../../mobile/operation/alerts.php:360 -#: ../../mobile/operation/events.php:1148 -#: ../../mobile/operation/modules.php:855 -msgid "(Default)" -msgstr "(Por defecto)" - -#: ../../mobile/operation/agents.php:545 ../../mobile/operation/alerts.php:373 -#: ../../mobile/operation/events.php:1181 -#: ../../mobile/operation/modules.php:861 -#, php-format -msgid "Group: %s" -msgstr "Grupo: %s" - -#: ../../mobile/operation/agents.php:552 ../../mobile/operation/alerts.php:380 -#: ../../mobile/operation/events.php:1201 -#: ../../mobile/operation/modules.php:883 -#, php-format -msgid "Status: %s" -msgstr "Estado: %s" - -#: ../../mobile/operation/agents.php:559 ../../mobile/operation/alerts.php:387 -#: ../../mobile/operation/modules.php:890 -#, php-format -msgid "Free Search: %s" -msgstr "Búsqueda libre: %s" - -#: ../../mobile/operation/alerts.php:46 -#: ../../operation/agentes/alerts_status.functions.php:77 -msgid "All (Enabled)" -msgstr "Todos (Habilitados)" - -#: ../../mobile/operation/alerts.php:49 -#: ../../operation/agentes/alerts_status.functions.php:80 -#: ../../operation/snmpconsole/snmp_view.php:207 -#: ../../operation/snmpconsole/snmp_view.php:1182 -msgid "Not fired" -msgstr "No disparadas" - -#: ../../mobile/operation/alerts.php:189 -#, php-format -msgid "Filter Alerts by %s" -msgstr "Filtros de alertas por %s" - -#: ../../mobile/operation/alerts.php:327 -msgid "Last Fired" -msgstr "Última vez que se disparó" - -#: ../../mobile/operation/alerts.php:338 -msgid "No alerts" -msgstr "Sin alertas" - -#: ../../mobile/operation/alerts.php:366 -#, php-format -msgid "Standby: %s" -msgstr "Standby: %s" - -#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 -#: ../../mobile/operation/events.php:642 ../../mobile/operation/events.php:643 -msgid "Preset Filters" -msgstr "Fijar los filtros" - -#: ../../mobile/operation/events.php:485 -msgid "ERROR: Event detail" -msgstr "ERROR: detalles del evento" - -#: ../../mobile/operation/events.php:486 -msgid "Error connecting to DB." -msgstr "Error al conectar con la base de datos" - -#: ../../mobile/operation/events.php:501 -msgid "Event detail" -msgstr "Detalles del evento" - -#: ../../mobile/operation/events.php:584 -msgid "Sucessful validate" -msgstr "Validación correcta" - -#: ../../mobile/operation/events.php:586 -msgid "Fail validate" -msgstr "Validación fallida" - -#: ../../mobile/operation/events.php:624 -#, php-format -msgid "Filter Events by %s" -msgstr "Filtrar eventos por %s" - -#: ../../mobile/operation/events.php:1153 -#, php-format -msgid "Filter: %s" -msgstr "Filtro: %s" - -#: ../../mobile/operation/events.php:1165 -#, php-format -msgid "Severity: %s" -msgstr "Gravedad: %s" - -#: ../../mobile/operation/events.php:1194 -#, php-format -msgid "Type: %s" -msgstr "Tipo: %s" - -#: ../../mobile/operation/events.php:1208 -#, php-format -msgid "Free search: %s" -msgstr "Búsqueda libre: %s" - -#: ../../mobile/operation/events.php:1215 -#, php-format -msgid "Hours: %s" -msgstr "Horas: %s" - -#: ../../mobile/operation/groups.php:164 -#: ../../operation/agentes/ver_agente.php:945 -#: ../../enterprise/dashboard/widgets/system_group_status.php:147 -#: ../../enterprise/operation/agentes/ver_agente.php:161 -msgid "Alerts fired" -msgstr "Alertas disparadas" - -#: ../../mobile/operation/home.php:84 ../../mobile/operation/visualmaps.php:109 -msgid "Visual consoles" -msgstr "Consola visual" - -#: ../../mobile/operation/home.php:104 -msgid "Visualmap" -msgstr "Mapa visual" - -#: ../../mobile/operation/home.php:169 ../../operation/search_results.php:66 -msgid "Global search" -msgstr "Búsqueda global" - -#: ../../mobile/operation/module_graph.php:362 -#: ../../mobile/operation/module_graph.php:374 -#, php-format -msgid "%s: %s" -msgstr "%s: %s" - -#: ../../mobile/operation/module_graph.php:406 -#, php-format -msgid "Options for %s : %s" -msgstr "Opciones para %s: %s" - -#: ../../mobile/operation/module_graph.php:413 -msgid "Show Alerts" -msgstr "Mostrar alertas" - -#: ../../mobile/operation/module_graph.php:421 -msgid "Show Events" +#: ../../operation/visual_console/view.php:562 +msgid "Are you sure" +msgstr "¿Está seguro?" + +#: ../../operation/visual_console/legacy_public_view.php:147 +#: ../../operation/visual_console/public_view.php:131 +msgid "QR code of the page" +msgstr "Código QR de la página" + +#: ../../operation/visual_console/legacy_public_view.php:176 +#: ../../operation/visual_console/legacy_view.php:304 +msgid "Until refresh" +msgstr "Hasta la actualización" + +#: ../../operation/agentes/stat_win.php:71 +#, php-format +msgid "%s Graph" +msgstr "Gráfica %s" + +#: ../../operation/agentes/stat_win.php:96 +msgid "CSV Export Information" +msgstr "Información de exportación CSV" + +#: ../../operation/agentes/stat_win.php:97 +msgid "The CSV export has been successful." +msgstr "CSV se ha exportado correctamente" + +#: ../../operation/agentes/stat_win.php:105 +msgid "There was a problem locating the source of the graph" +msgstr "Error al localizar la fuente del gráfico" + +#: ../../operation/agentes/stat_win.php:243 +#: ../../operation/agentes/interface_traffic_graph_win.php:191 +msgid "Refresh time" +msgstr "Tiempo de actualización" + +#: ../../operation/agentes/stat_win.php:263 +#: ../../operation/agentes/interface_traffic_graph_win.php:204 +msgid "Begin time" +msgstr "Tiempo de inicio" + +#: ../../operation/agentes/stat_win.php:270 +msgid "Zoom" +msgstr "Ampliación" + +#: ../../operation/agentes/stat_win.php:284 +#: ../../operation/agentes/interface_traffic_graph_win.php:210 +#: ../../operation/agentes/graphs.php:211 +#: ../../operation/reporting/graph_viewer.php:255 +msgid "Time range" +msgstr "Rango de tiempo" + +#: ../../operation/agentes/stat_win.php:298 +#: ../../operation/agentes/graphs.php:215 +msgid "Show events" msgstr "Mostrar eventos" -#: ../../mobile/operation/module_graph.php:429 -#: ../../operation/agentes/stat_win.php:353 -msgid "Time compare (Separated)" -msgstr "Comparación de tiempo (por separado)" - -#: ../../mobile/operation/module_graph.php:445 -#: ../../operation/agentes/stat_win.php:359 -msgid "Show unknown graph" -msgstr "Mostrar gráficos desconocidos" - -#: ../../mobile/operation/module_graph.php:450 -msgid "Time range (hours)" -msgstr "Rango de tiempo (horas)" - -#: ../../mobile/operation/module_graph.php:462 -#: ../../operation/agentes/exportdata.php:317 -#: ../../operation/agentes/graphs.php:207 -#: ../../operation/agentes/interface_traffic_graph_win.php:197 -#: ../../operation/agentes/stat_win.php:257 -msgid "Begin date" -msgstr "Fecha de inicio" - -#: ../../mobile/operation/module_graph.php:469 -msgid "Update graph" -msgstr "Actualizar gráfico" - -#: ../../mobile/operation/module_graph.php:479 -msgid "Error get the graph" -msgstr "Error al obtener el gráfico" - -#: ../../mobile/operation/modules.php:225 +#: ../../operation/agentes/stat_win.php:315 #, php-format -msgid "Filter Modules by %s" -msgstr "Filtrar módulos por %s" - -#: ../../mobile/operation/modules.php:632 -msgid "Interval." -msgstr "Intervalo" - -#: ../../mobile/operation/modules.php:634 -msgid "Last update." -msgstr "Última actualización" - -#: ../../mobile/operation/modules.php:876 -#, php-format -msgid "Module group: %s" -msgstr "Grupos de módulos: %s" - -#: ../../mobile/operation/modules.php:898 -#, php-format -msgid "Tag: %s" -msgstr "Etiqueta: %s" - -#: ../../mobile/operation/tactical.php:216 -msgid "Last activity" -msgstr "Última actividad" - -#: ../../mobile/operation/visualmaps.php:169 -msgid "No maps defined" -msgstr "No hay mapas definidos" - -#: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:724 -#: ../../enterprise/operation/agentes/tag_view.php:421 -msgid "Agent custom fields" -msgstr "Campos personalizados de agente" - -#: ../../operation/agentes/agent_fields.php:47 -#: ../../operation/agentes/custom_fields.php:90 -msgid "empty" -msgstr "vacío" - -#: ../../operation/agentes/alerts_status.functions.php:34 -#: ../../enterprise/godmode/alerts/alert_events_list.php:394 -msgid "Alert(s) validated" -msgstr "Alerta(s) validada(s)" - -#: ../../operation/agentes/alerts_status.functions.php:35 -msgid "Error processing alert(s)" -msgstr "Error al procesar la(s) alerta(s)" - -#: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/agentes/status_monitor.php:447 -#: ../../enterprise/operation/agentes/tag_view.php:197 -#: ../../enterprise/operation/agentes/tag_view.php:199 -msgid "Only it is show tags in use." -msgstr "Mostrar solo etiquetas en uso" - -#: ../../operation/agentes/alerts_status.functions.php:96 -#: ../../operation/agentes/status_monitor.php:452 -#: ../../enterprise/operation/agentes/tag_view.php:203 -msgid "No tags" -msgstr "Sin etiquetas" - -#: ../../operation/agentes/alerts_status.functions.php:101 -#: ../../operation/agentes/datos_agente.php:211 -msgid "Free text for search" -msgstr "Búsqueda de texto libre" - -#: ../../operation/agentes/alerts_status.functions.php:102 -msgid "Filter by agent name, module name, template name or action name" +msgid "" +"'Show events' is disabled because this %s node is set to event replication." msgstr "" -"Filtrar por nombre de agente, nombre de módulo, nombre de plantilla o de " -"acción" +"\"Mostrar eventos\" está deshabilitado porque el nodo de %s está en " +"replicación de eventos." -#: ../../operation/agentes/alerts_status.functions.php:113 -msgid "No actions" -msgstr "Sin acciones" +#: ../../operation/agentes/stat_win.php:324 +#: ../../operation/agentes/graphs.php:217 +msgid "Show alerts" +msgstr "Mostrar alertas" -#: ../../operation/agentes/alerts_status.php:179 -#: ../../enterprise/meta/general/main_header.php:115 -msgid "Alerts view" -msgstr "Vista de alertas" +#: ../../operation/agentes/stat_win.php:341 +#: ../../operation/agentes/interface_traffic_graph_win.php:216 +msgid "Show percentil" +msgstr "Mostrar el percentil" -#: ../../operation/agentes/alerts_status.php:187 +#: ../../operation/agentes/stat_win.php:404 +#: ../../operation/agentes/interface_traffic_graph_win.php:266 +msgid "Graph configuration menu" +msgstr "Menu de configuración de gráfica" + +#: ../../operation/agentes/alerts_status.php:192 msgid "Insufficient permissions to validate alerts" msgstr "Permisos insuficientes para validar alertas" -#: ../../operation/agentes/alerts_status.php:688 -msgid "No alerts found" -msgstr "No se encontró ninguna alerta" - -#: ../../operation/agentes/alerts_status.php:698 +#: ../../operation/agentes/alerts_status.php:716 msgid "Full list of alerts" msgstr "Lista completa de alertas" -#: ../../operation/agentes/custom_fields.php:59 -msgid "No fields defined" -msgstr "No se han definido campos" +#: ../../operation/agentes/gis_view.php:93 +msgid "Period to show data as path" +msgstr "Período para mostrar datos como ruta" -#: ../../operation/agentes/datos_agente.php:173 -msgid "Received data from" -msgstr "Datos recibidos de" +#: ../../operation/agentes/gis_view.php:97 +msgid "Refresh path" +msgstr "Actualizar ruta" -#: ../../operation/agentes/datos_agente.php:180 -msgid "Main database" -msgstr "Base de datos principal" +#: ../../operation/agentes/gis_view.php:155 +msgid "This agent doesn't have any GIS data." +msgstr "Este agente no tiene ningún dato GIS." -#: ../../operation/agentes/datos_agente.php:180 -#: ../../enterprise/godmode/menu.php:127 -#: ../../enterprise/include/functions_setup.php:48 -#: ../../enterprise/include/functions_setup.php:89 -msgid "History database" -msgstr "BD de histórico" +#: ../../operation/agentes/gis_view.php:167 +msgid "Positional data from the last" +msgstr "Datos de posición desde el último" -#: ../../operation/agentes/datos_agente.php:181 -msgid "" -"Switch between the main database and the history database to retrieve module " -"data" -msgstr "" -"Cambiar entre base de datos principal y de histórico para recoger los datos " -"de los módulos" +#: ../../operation/agentes/gis_view.php:206 +#, php-format +msgid "%s Km" +msgstr "%s Km" + +#: ../../operation/agentes/gis_view.php:220 +msgid "Distance" +msgstr "Distancia" + +#: ../../operation/agentes/gis_view.php:221 +msgid "# of Packages" +msgstr "# de paquetes" + +#: ../../operation/agentes/gis_view.php:222 +#: ../../operation/gis_maps/ajax.php:242 +msgid "Manual placement" +msgstr "Colocación manual" + +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.excel.php:66 +msgid "Invalid time specified" +msgstr "Hora especificada no válida" + +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.excel.php:161 +msgid "No modules specified" +msgstr "No se especificó ningún módulo" + +#: ../../operation/agentes/estado_agente.php:206 +msgid "Sucessfully deleted agent" +msgstr "Agente borrado correctamente" + +#: ../../operation/agentes/estado_agente.php:208 +msgid "There was an error message deleting the agent" +msgstr "Error al intentar borrar el agente" + +#: ../../operation/agentes/estado_agente.php:249 +msgid "Search in custom fields" +msgstr "Buscar en campos personalizados" #: ../../operation/agentes/ehorus.php:30 msgid "Missing agent id" @@ -33107,200 +45068,108 @@ msgstr "La conexión se perdió y el token de autorización ha expirado." msgid "Reload the page to request a new authorization token" msgstr "Refresca la página para obtener otro token de autorización" -#: ../../operation/agentes/estado_agente.php:199 -msgid "Sucessfully deleted agent" -msgstr "Agente borrado correctamente" +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 +msgid "Latest events for this agent" +msgstr "Últimos eventos para este agente" -#: ../../operation/agentes/estado_agente.php:201 -msgid "There was an error message deleting the agent" -msgstr "Error al intentar borrar el agente" +#: ../../operation/agentes/networkmap.dinamic.php:101 +#: ../../operation/agentes/pandora_networkmap.view.php:803 +#: ../../operation/snmpconsole/snmp_statistics.php:41 +#: ../../operation/snmpconsole/snmp_browser.php:52 +#: ../../operation/snmpconsole/snmp_view.php:85 +msgid "Normal screen" +msgstr "Pantalla normal" -#: ../../operation/agentes/estado_agente.php:242 -msgid "Search in custom fields" -msgstr "Buscar en campos personalizados" +#: ../../operation/agentes/networkmap.dinamic.php:119 +#: ../../operation/agentes/pandora_networkmap.view.php:821 +msgid "List of networkmap" +msgstr "Lista de mapas de red" -#: ../../operation/agentes/estado_agente.php:817 -#: ../../enterprise/operation/agentes/tag_view.php:619 -msgid "Remote config" -msgstr "Configuración remota" +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 +msgid "empty" +msgstr "vacío" -#: ../../operation/agentes/estado_generalagente.php:58 -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:238 -msgid "Remote configuration enabled" -msgstr "Configuración remota habilitada" - -#: ../../operation/agentes/estado_generalagente.php:280 -msgid "Agent contact" -msgstr "Contacto de agente" - -#: ../../operation/agentes/estado_generalagente.php:283 -msgid "Refresh data" -msgstr "Actualizar datos" - -#: ../../operation/agentes/estado_generalagente.php:285 -msgid "Force remote checks" -msgstr "Forzar comprobación remota" - -#: ../../operation/agentes/estado_generalagente.php:312 -msgid "Next contact" -msgstr "Siguiente contacto" - -#: ../../operation/agentes/estado_generalagente.php:392 -msgid "Agent info" -msgstr "Información del agente" - -#: ../../operation/agentes/estado_generalagente.php:405 -msgid "There is no GIS data." -msgstr "No hay datos GIS" - -#: ../../operation/agentes/estado_generalagente.php:561 -msgid "Active incident on this agent" -msgstr "Activar incidencia a este agente" - -#: ../../operation/agentes/estado_generalagente.php:717 -msgid "Events info (24hr.)" -msgstr "Información de eventos (24h)" - -#: ../../operation/agentes/estado_generalagente.php:731 -#: ../../operation/agentes/pandora_networkmap.view.php:418 -msgid "Last contact: " -msgstr "Último contacto: " - -#: ../../operation/agentes/estado_generalagente.php:857 -msgid "Interface information (SNMP)" -msgstr "Información de interfaz (SNMP)" - -#: ../../operation/agentes/estado_monitores.php:51 -msgid "Tag's information" -msgstr "Información de etiquetas" - -#: ../../operation/agentes/estado_monitores.php:102 -msgid "Relationship information" -msgstr "Información de relaciones" - -#: ../../operation/agentes/estado_monitores.php:172 -msgid "List of modules" -msgstr "Lista de módulos" - -#: ../../operation/agentes/estado_monitores.php:173 -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:412 -#: ../../operation/agentes/status_monitor.php:1808 ../../operation/tree.php:441 -#: ../../enterprise/dashboard/widgets/tree_view.php:329 -#: ../../enterprise/godmode/reporting/cluster_view.php:639 -msgid "Module: " -msgstr "Módulo: " - -#: ../../operation/agentes/estado_monitores.php:509 -msgid "Status:" -msgstr "Estado:" - -#: ../../operation/agentes/estado_monitores.php:515 -msgid "Not Normal" -msgstr "No normal" - -#: ../../operation/agentes/estado_monitores.php:530 -msgid "Free text for search (*):" -msgstr "Texto libre de búsqueda (*):" - -#: ../../operation/agentes/estado_monitores.php:531 -msgid "Search by module name, list matches." -msgstr "Búsqueda por nombre del módulo, lista de coincidencias." - -#: ../../operation/agentes/estado_monitores.php:593 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1584 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../operation/agentes/exportdata.csv.php:66 -#: ../../operation/agentes/exportdata.excel.php:66 -#: ../../operation/agentes/exportdata.php:71 -msgid "Invalid time specified" -msgstr "Hora especificada no válida" - -#: ../../operation/agentes/exportdata.csv.php:178 -#: ../../operation/agentes/exportdata.excel.php:161 -#: ../../operation/agentes/exportdata.php:209 -msgid "No modules specified" -msgstr "No se especificó ningún módulo" - -#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:514 -msgid "Export data" -msgstr "Exportar datos" - -#: ../../operation/agentes/exportdata.php:247 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:145 -msgid "Source agent" -msgstr "Agente de origen" - -#: ../../operation/agentes/exportdata.php:282 -msgid "No modules of type string. You can not calculate their average" -msgstr "No hay módulos de tipo cadena. No puedes calcular la media." - -#: ../../operation/agentes/exportdata.php:338 -#: ../../operation/netflow/nf_live_view.php:287 -#: ../../operation/network/network_report.php:126 -#: ../../operation/network/network_usage_map.php:99 -#: ../../enterprise/operation/log/log_viewer.php:524 -msgid "End date" -msgstr "Fecha final" - -#: ../../operation/agentes/exportdata.php:358 -msgid "Export type" -msgstr "Tipo de exportación" - -#: ../../operation/agentes/exportdata.php:363 -msgid "MS Excel" -msgstr "MS Excel" - -#: ../../operation/agentes/exportdata.php:364 -msgid "Average per hour/day" -msgstr "Media por hora/día" - -#: ../../operation/agentes/gis_view.php:93 -msgid "Period to show data as path" -msgstr "Período para mostrar datos como ruta" - -#: ../../operation/agentes/gis_view.php:97 -msgid "Refresh path" -msgstr "Actualizar ruta" - -#: ../../operation/agentes/gis_view.php:155 -msgid "This agent doesn't have any GIS data." -msgstr "Este agente no tiene ningún dato GIS." - -#: ../../operation/agentes/gis_view.php:167 -msgid "Positional data from the last" -msgstr "Datos de posición desde el último" - -#: ../../operation/agentes/gis_view.php:206 +#: ../../operation/agentes/realtime_win.php:64 #, php-format -msgid "%s Km" -msgstr "%s Km" +msgid "%s Realtime Module Graph" +msgstr "Gráfica de módulos %s en tiempo real" -#: ../../operation/agentes/gis_view.php:220 -msgid "Distance" -msgstr "Distancia" +#: ../../operation/agentes/realtime_win.php:87 +msgid "Realtime extension is not enabled." +msgstr "La extensión tiempo real no está habilitada" -#: ../../operation/agentes/gis_view.php:221 -msgid "# of Packages" -msgstr "# de paquetes" +#: ../../operation/agentes/pandora_networkmap.editor.php:352 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "" +"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de " +"red." -#: ../../operation/agentes/gis_view.php:222 -#: ../../operation/gis_maps/ajax.php:242 -msgid "Manual placement" -msgstr "Colocación manual" +#: ../../operation/agentes/pandora_networkmap.editor.php:571 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "" +"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de " +"red." + +#: ../../operation/agentes/pandora_networkmap.php:125 +#: ../../operation/agentes/pandora_networkmap.php:366 +msgid "Succesfully created" +msgstr "Creado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:201 +#: ../../operation/agentes/pandora_networkmap.php:499 +msgid "Succesfully updated" +msgstr "Actualizado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:524 +msgid "Succesfully duplicate" +msgstr "Duplicado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:538 +msgid "Succesfully deleted" +msgstr "Eliminado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:774 +msgid "Empty map" +msgstr "Mapa vacío" + +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Pending to generate" +msgstr "Pendiente de generar" + +#: ../../operation/agentes/pandora_networkmap.php:806 +msgid "There are no maps defined." +msgstr "No hay mapas definidos." + +#: ../../operation/agentes/pandora_networkmap.php:813 +msgid "Create network map" +msgstr "Crear mapa de red" + +#: ../../operation/agentes/pandora_networkmap.php:821 +msgid "Create empty network map" +msgstr "Crear mapa de red vacío" + +#: ../../operation/agentes/interface_traffic_graph_win.php:60 +msgid "In" +msgstr "En" + +#: ../../operation/agentes/interface_traffic_graph_win.php:61 +msgid "Out" +msgstr "Fuera" + +#: ../../operation/agentes/interface_traffic_graph_win.php:77 +#, php-format +msgid "%s Interface Graph" +msgstr "Gráfica de interfaz de %s" + +#: ../../operation/agentes/interface_traffic_graph_win.php:233 +msgid "Zoom factor" +msgstr "Nivel de zoom" + +#: ../../operation/agentes/interface_traffic_graph_win.php:240 +msgid "Full" +msgstr "Completa" #: ../../operation/agentes/graphs.php:143 msgid "Other modules" @@ -33314,23 +45183,6 @@ msgstr "Módulos de red sin proc" msgid "Modules boolean" msgstr "Módulos booleanos" -#: ../../operation/agentes/graphs.php:211 -#: ../../operation/agentes/interface_traffic_graph_win.php:210 -#: ../../operation/agentes/stat_win.php:284 -#: ../../operation/reporting/graph_viewer.php:252 -msgid "Time range" -msgstr "Rango de tiempo" - -#: ../../operation/agentes/graphs.php:215 -#: ../../operation/agentes/stat_win.php:298 -msgid "Show events" -msgstr "Mostrar eventos" - -#: ../../operation/agentes/graphs.php:217 -#: ../../operation/agentes/stat_win.php:324 -msgid "Show alerts" -msgstr "Mostrar alertas" - #: ../../operation/agentes/graphs.php:217 msgid "the combined graph does not show the alerts into this graph" msgstr "Los gráficos combinados no muestran las alertas." @@ -33382,333 +45234,26 @@ msgstr "Guardar gráfico personalizado" msgid "Custom graph create from the tab graphs in the agent." msgstr "Gráfico personalizado creado desde la sección de gráficos del agente" -#: ../../operation/agentes/group_view.php:151 -msgid "Summary of the status groups" -msgstr "Resumen de los grupos por estado" +#: ../../operation/agentes/datos_agente.php:173 +msgid "Received data from" +msgstr "Datos recibidos de" -#: ../../operation/agentes/group_view.php:276 -#: ../../enterprise/meta/monitoring/group_view.php:305 -#, php-format +#: ../../operation/agentes/datos_agente.php:180 +msgid "Main database" +msgstr "Base de datos principal" + +#: ../../operation/agentes/datos_agente.php:181 msgid "" -"This %s installation are using the secondary groups feature. For this " -"reason, an agent can be counted several times." +"Switch between the main database and the history database to retrieve module " +"data" msgstr "" -"Esta instalación de %s está usando la funcionalidad de grupos secundarios. " -"Por ello, los agentes se pueden contar varias veces." +"Cambiar entre base de datos principal y de histórico para recoger los datos " +"de los módulos" -#: ../../operation/agentes/interface_traffic_graph_win.php:60 -msgid "In" -msgstr "En" - -#: ../../operation/agentes/interface_traffic_graph_win.php:61 -msgid "Out" -msgstr "Fuera" - -#: ../../operation/agentes/interface_traffic_graph_win.php:77 -#, php-format -msgid "%s Interface Graph" -msgstr "Gráfica de interfaz de %s" - -#: ../../operation/agentes/interface_traffic_graph_win.php:191 -#: ../../operation/agentes/stat_win.php:243 -msgid "Refresh time" -msgstr "Tiempo de actualización" - -#: ../../operation/agentes/interface_traffic_graph_win.php:204 -#: ../../operation/agentes/stat_win.php:263 -msgid "Begin time" -msgstr "Tiempo de inicio" - -#: ../../operation/agentes/interface_traffic_graph_win.php:216 -#: ../../operation/agentes/stat_win.php:341 -msgid "Show percentil" -msgstr "Mostrar el percentil" - -#: ../../operation/agentes/interface_traffic_graph_win.php:233 -msgid "Zoom factor" -msgstr "Nivel de zoom" - -#: ../../operation/agentes/interface_traffic_graph_win.php:240 -msgid "Full" -msgstr "Completa" - -#: ../../operation/agentes/interface_traffic_graph_win.php:247 -#: ../../operation/agentes/stat_win.php:380 -msgid "Reload" -msgstr "Actualizar" - -#: ../../operation/agentes/interface_traffic_graph_win.php:266 -#: ../../operation/agentes/stat_win.php:404 -msgid "Graph configuration menu" -msgstr "Menu de configuración de gráfica" - -#: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:827 -#: ../../operation/snmpconsole/snmp_browser.php:177 -#: ../../operation/snmpconsole/snmp_statistics.php:41 -#: ../../operation/snmpconsole/snmp_view.php:85 -msgid "Normal screen" -msgstr "Pantalla normal" - -#: ../../operation/agentes/networkmap.dinamic.php:120 -#: ../../operation/agentes/pandora_networkmap.view.php:845 -msgid "List of networkmap" -msgstr "Lista de mapas de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:201 -#: ../../operation/agentes/pandora_networkmap.php:649 -#: ../../operation/agentes/pandora_networkmap.view.php:792 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:77 -msgid "Networkmap" -msgstr "Mapa de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:241 -#: ../../operation/agentes/pandora_networkmap.view.php:798 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:85 -msgid "Not found networkmap." -msgstr "No se encontró ningún mapa de red." - -#: ../../operation/agentes/pandora_networkmap.editor.php:281 -#: ../../enterprise/extensions/vmware/vmware_view.php:1666 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:124 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:74 -msgid "Node radius" -msgstr "Radio de los nodos" - -#: ../../operation/agentes/pandora_networkmap.editor.php:294 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:95 -msgid "Position X" -msgstr "Posición X" - -#: ../../operation/agentes/pandora_networkmap.editor.php:296 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:97 -msgid "Position Y" -msgstr "Posición Y" - -#: ../../operation/agentes/pandora_networkmap.editor.php:299 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:100 -msgid "Zoom scale" -msgstr "Escala de zoom" - -#: ../../operation/agentes/pandora_networkmap.editor.php:304 -#: ../../enterprise/dashboard/widgets/network_map.php:71 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:102 -msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" -msgstr "" -"Introducir nivel de zoom. 1 = Resolución máxima. Las cifras pueden incluir " -"decimales." - -#: ../../operation/agentes/pandora_networkmap.editor.php:307 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 -msgid "CIDR IP mask" -msgstr "Máscara CIDR" - -#: ../../operation/agentes/pandora_networkmap.editor.php:309 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:132 -msgid "Source from recon task" -msgstr "Origen de tarea recon" - -#: ../../operation/agentes/pandora_networkmap.editor.php:311 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:134 -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:328 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:150 -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:332 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:154 -msgid "Source from CIDR IP mask" -msgstr "Origen de máscara CIDR" - -#: ../../operation/agentes/pandora_networkmap.editor.php:335 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:134 -msgid "Source group" -msgstr "Grupo de origen" - -#: ../../operation/agentes/pandora_networkmap.editor.php:352 -msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "" -"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de " -"red." - -#: ../../operation/agentes/pandora_networkmap.editor.php:357 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:166 -msgid "Don't show subgroups:" -msgstr "No mostrar subgrupos:" - -#: ../../operation/agentes/pandora_networkmap.editor.php:375 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:200 -msgid "Method generation networkmap" -msgstr "Método de generación de mapas de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:395 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:215 -msgid "Node separation" -msgstr "Separación de nodos" - -#: ../../operation/agentes/pandora_networkmap.editor.php:396 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:216 -msgid "Separation between nodes. By default 0.25" -msgstr "Separación entre nodos. Por defecto 0,25" - -#: ../../operation/agentes/pandora_networkmap.editor.php:398 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:218 -msgid "Rank separation" -msgstr "Separación de rango" - -#: ../../operation/agentes/pandora_networkmap.editor.php:399 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:219 -msgid "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and " -"1.0 in radial" -msgstr "" -"Solo plano y radial. Separación entre flechas. Por defecto 0,5 en el plano y " -"1,0 en el radial." - -#: ../../operation/agentes/pandora_networkmap.editor.php:401 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:221 -msgid "Min nodes dist" -msgstr "Distancia mínima entre nodos" - -#: ../../operation/agentes/pandora_networkmap.editor.php:402 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:222 -msgid "Only circular. Minimum separation between all nodes. By default 1.0" -msgstr "" -"Solo circular. Separación mínima entre todos los nodos. Por defecto 1,0." - -#: ../../operation/agentes/pandora_networkmap.editor.php:404 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:224 -msgid "Default ideal node separation" -msgstr "Separación ideal de nodos por defecto" - -#: ../../operation/agentes/pandora_networkmap.editor.php:405 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:225 -msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" -msgstr "" -"Solo FDP. Separación ideal de nodos por defecto en el diseño. Por defecto " -"0,3." - -#: ../../operation/agentes/pandora_networkmap.editor.php:415 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:145 -msgid "Save networkmap" -msgstr "Guardar mapa de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:426 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:156 -msgid "Update networkmap" -msgstr "Actualizar mapa de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:571 -msgid "Source id group changed. All elements in Networkmap will be lost" -msgstr "" -"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de " -"red." - -#: ../../operation/agentes/pandora_networkmap.php:125 -#: ../../operation/agentes/pandora_networkmap.php:366 -msgid "Succesfully created" -msgstr "Creado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:201 -#: ../../operation/agentes/pandora_networkmap.php:499 -msgid "Succesfully updated" -msgstr "Actualizado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:524 -msgid "Succesfully duplicate" -msgstr "Duplicado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:525 -#: ../../enterprise/godmode/policies/policy_modules.php:1432 -msgid "Could not be duplicated" -msgstr "No se puede duplicar" - -#: ../../operation/agentes/pandora_networkmap.php:538 -msgid "Succesfully deleted" -msgstr "Eliminado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:774 -msgid "Empty map" -msgstr "Mapa vacío" - -#: ../../operation/agentes/pandora_networkmap.php:778 -msgid "Pending to generate" -msgstr "Pendiente de generar" - -#: ../../operation/agentes/pandora_networkmap.php:795 -#: ../../enterprise/operation/services/services.list.php:527 -msgid "Config" -msgstr "Configuración" - -#: ../../operation/agentes/pandora_networkmap.php:806 -msgid "There are no maps defined." -msgstr "No hay mapas definidos." - -#: ../../operation/agentes/pandora_networkmap.php:813 -msgid "Create network map" -msgstr "Crear mapa de red" - -#: ../../operation/agentes/pandora_networkmap.php:821 -msgid "Create empty network map" -msgstr "Crear mapa de red vacío" - -#: ../../operation/agentes/pandora_networkmap.view.php:172 -msgid "Success be updated." -msgstr "Actualizado correctamente" - -#: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../enterprise/extensions/ipam/ipam_action.php:292 -msgid "Could not be updated." -msgstr "No se pudo actualizar" - -#: ../../operation/agentes/pandora_networkmap.view.php:269 -msgid "Name: " -msgstr "Nombre: " - -#: ../../operation/agentes/pandora_networkmap.view.php:304 -#: ../../operation/agentes/status_monitor.php:1234 -msgid "(Adopt) " -msgstr "(Adoptar) " - -#: ../../operation/agentes/pandora_networkmap.view.php:312 -#: ../../operation/agentes/status_monitor.php:1242 -msgid "(Unlinked) (Adopt) " -msgstr "(Sin enlazar) (Adoptar) " - -#: ../../operation/agentes/pandora_networkmap.view.php:315 -#: ../../operation/agentes/status_monitor.php:1245 -msgid "(Unlinked) " -msgstr "(Sin enlazar) " - -#: ../../operation/agentes/pandora_networkmap.view.php:319 -msgid "Policy: " -msgstr "Política: " - -#: ../../operation/agentes/pandora_networkmap.view.php:366 -#: ../../enterprise/extensions/vmware/vmware_manager.php:269 -msgid "Status: " -msgstr "Estado: " - -#: ../../operation/agentes/pandora_networkmap.view.php:416 -msgid "Data: " -msgstr "Datos: " - -#: ../../operation/agentes/realtime_win.php:64 -#, php-format -msgid "%s Realtime Module Graph" -msgstr "Gráfica de módulos %s en tiempo real" - -#: ../../operation/agentes/realtime_win.php:87 -msgid "Realtime extension is not enabled." -msgstr "La extensión tiempo real no está habilitada" +#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/alerts_status.functions.php:101 +msgid "Free text for search" +msgstr "Búsqueda de texto libre" #: ../../operation/agentes/snapshot_view.php:42 msgid "Cannot connect with node to display the module data." @@ -33724,110 +45269,147 @@ msgstr "Vista de datos de captura de %s del módulo (%s)" msgid "Current data at %s" msgstr "Datos actuales en %s" -#: ../../operation/agentes/stat_win.php:71 -#, php-format -msgid "%s Graph" -msgstr "Gráfica %s" +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:537 +msgid "Export data" +msgstr "Exportar datos" -#: ../../operation/agentes/stat_win.php:96 -msgid "CSV Export Information" -msgstr "Información de exportación CSV" +#: ../../operation/agentes/exportdata.php:282 +msgid "No modules of type string. You can not calculate their average" +msgstr "No hay módulos de tipo cadena. No puedes calcular la media." -#: ../../operation/agentes/stat_win.php:97 -msgid "The CSV export has been successful." -msgstr "CSV se ha exportado correctamente" +#: ../../operation/agentes/exportdata.php:358 +msgid "Export type" +msgstr "Tipo de exportación" -#: ../../operation/agentes/stat_win.php:105 -msgid "There was a problem locating the source of the graph" -msgstr "Error al localizar la fuente del gráfico" +#: ../../operation/agentes/exportdata.php:363 +msgid "MS Excel" +msgstr "MS Excel" -#: ../../operation/agentes/stat_win.php:270 -msgid "Zoom" -msgstr "Ampliación" +#: ../../operation/agentes/exportdata.php:364 +msgid "Average per hour/day" +msgstr "Media por hora/día" -#: ../../operation/agentes/stat_win.php:315 -#, php-format -msgid "" -"'Show events' is disabled because this %s node is set to event replication." -msgstr "" -"\"Mostrar eventos\" está deshabilitado porque el nodo de %s está en " -"replicación de eventos." +#: ../../operation/agentes/custom_fields.php:59 +msgid "No fields defined" +msgstr "No se han definido campos" -#: ../../operation/agentes/status_events.php:26 -#: ../../operation/agentes/status_events.php:27 -msgid "Latest events for this agent" -msgstr "Últimos eventos para este agente" - -#: ../../operation/agentes/status_monitor.php:65 ../../operation/menu.php:56 +#: ../../operation/agentes/status_monitor.php:66 ../../operation/menu.php:60 msgid "Monitor detail" msgstr "Detalle del monitor" -#: ../../operation/agentes/status_monitor.php:72 +#: ../../operation/agentes/status_monitor.php:79 msgid "Monitor view" msgstr "Vista del monitor" -#: ../../operation/agentes/status_monitor.php:388 -#: ../../enterprise/operation/agentes/tag_view.php:113 -msgid "Monitor status" -msgstr "Estado del monitor" - -#: ../../operation/agentes/status_monitor.php:529 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:37 -#: ../../enterprise/operation/agentes/tag_view.php:270 -msgid "Web server module" -msgstr "Módulo del servidor web" - #: ../../operation/agentes/status_monitor.php:531 msgid "Wux server module" msgstr "Módulo del servidor WUX" -#: ../../operation/agentes/status_monitor.php:546 -#: ../../enterprise/operation/agentes/tag_view.php:283 -msgid "Show monitors..." -msgstr "Mostrar módulos..." +#: ../../operation/agentes/status_monitor.php:552 +msgid "Min. hours in current status" +msgstr "Mín. de horas en el estado actual" -#: ../../operation/agentes/status_monitor.php:706 +#: ../../operation/agentes/status_monitor.php:711 msgid "Advanced Options" msgstr "Opciones avanzadas" -#: ../../operation/agentes/status_monitor.php:1117 +#: ../../operation/agentes/status_monitor.php:1144 msgid "Data Type" msgstr "Tipo de datos" -#: ../../operation/agentes/status_monitor.php:1717 +#: ../../operation/agentes/status_monitor.php:1263 +#: ../../operation/agentes/pandora_networkmap.view.php:281 +msgid "(Adopt) " +msgstr "(Adoptar) " + +#: ../../operation/agentes/status_monitor.php:1271 +#: ../../operation/agentes/pandora_networkmap.view.php:289 +msgid "(Unlinked) (Adopt) " +msgstr "(Sin enlazar) (Adoptar) " + +#: ../../operation/agentes/status_monitor.php:1274 +#: ../../operation/agentes/pandora_networkmap.view.php:292 +msgid "(Unlinked) " +msgstr "(Sin enlazar) " + +#: ../../operation/agentes/status_monitor.php:1745 msgid "This group doesn't have any monitor" msgstr "Este grupo no tiene ningún monitor definido." -#: ../../operation/agentes/status_monitor.php:1719 +#: ../../operation/agentes/status_monitor.php:1747 msgid "Sorry no search parameters" msgstr "No hay parámetros de búsqueda" -#: ../../operation/agentes/tactical.php:170 -msgid "Report of State" -msgstr "Informe de estado" +#: ../../operation/agentes/group_view.php:151 +msgid "Summary of the status groups" +msgstr "Resumen de los grupos por estado" -#: ../../operation/agentes/ver_agente.php:847 -#: ../../enterprise/operation/agentes/ver_agente.php:69 -msgid "Main IP" -msgstr "IP principal" +#: ../../operation/agentes/estado_monitores.php:51 +msgid "Tag's information" +msgstr "Información de etiquetas" -#: ../../operation/agentes/ver_agente.php:904 -#: ../../enterprise/operation/agentes/ver_agente.php:119 -msgid "Monitors down" -msgstr "Monitores caídos" +#: ../../operation/agentes/estado_monitores.php:102 +msgid "Relationship information" +msgstr "Información de relaciones" + +#: ../../operation/agentes/estado_monitores.php:153 +msgid "No initialized modules found." +msgstr "No se han encontrado módulos iniciados." + +#: ../../operation/agentes/estado_monitores.php:174 +msgid "List of modules" +msgstr "Lista de módulos" + +#: ../../operation/agentes/estado_monitores.php:175 +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:511 +msgid "Status:" +msgstr "Estado:" + +#: ../../operation/agentes/estado_monitores.php:517 +msgid "Not Normal" +msgstr "No normal" + +#: ../../operation/agentes/estado_monitores.php:532 +#: ../../operation/agentes/alerts_status.functions.php:161 +msgid "Free text for search (*):" +msgstr "Texto libre de búsqueda (*):" + +#: ../../operation/agentes/estado_monitores.php:533 +msgid "Search by module name, list matches." +msgstr "Búsqueda por nombre del módulo, lista de coincidencias." + +#: ../../operation/agentes/pandora_networkmap.view.php:149 +msgid "Success be updated." +msgstr "Actualizado correctamente" + +#: ../../operation/agentes/pandora_networkmap.view.php:246 +msgid "Name: " +msgstr "Nombre: " + +#: ../../operation/agentes/pandora_networkmap.view.php:296 +msgid "Policy: " +msgstr "Política: " + +#: ../../operation/agentes/pandora_networkmap.view.php:393 +msgid "Data: " +msgstr "Datos: " + +#: ../../operation/agentes/pandora_networkmap.view.php:395 +#: ../../operation/agentes/estado_generalagente.php:743 +msgid "Last contact: " +msgstr "Último contacto: " #: ../../operation/agentes/ver_agente.php:1036 msgid "Sons" msgstr "Hijos" -#: ../../operation/agentes/ver_agente.php:1149 -#: ../../operation/search_agents.php:112 -#: ../../operation/servers/recon_view.php:47 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:297 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 -msgid "Manage" -msgstr "Gestionar" - #: ../../operation/agentes/ver_agente.php:1281 msgid "Log Viewer" msgstr "Visor de logs" @@ -33836,291 +45418,561 @@ msgstr "Visor de logs" msgid "Terminal" msgstr "Terminal" -#: ../../operation/agentes/ver_agente.php:1322 -#: ../../enterprise/godmode/agentes/collections.agents.php:52 -#: ../../enterprise/godmode/agentes/collections.data.php:110 -#: ../../enterprise/godmode/agentes/collections.data.php:242 -#: ../../enterprise/godmode/agentes/collections.data.php:289 -#: ../../enterprise/godmode/agentes/collections.editor.php:54 -#: ../../enterprise/godmode/agentes/collections.editor.php:366 -#: ../../enterprise/godmode/agentes/collections.editor.php:389 -#: ../../enterprise/include/functions_collection.php:136 -#: ../../enterprise/meta/advanced/collections.data.php:164 -#: ../../enterprise/meta/advanced/collections.data.php:232 -#: ../../enterprise/meta/advanced/collections.data.php:256 -#: ../../enterprise/meta/advanced/collections.editor.php:36 -#: ../../enterprise/meta/advanced/collections.editor.php:332 -#: ../../enterprise/meta/advanced/collections.editor.php:350 -msgid "Files" -msgstr "Archivos" - -#: ../../operation/agentes/ver_agente.php:1334 -#: ../../operation/agentes/ver_agente.php:1524 -#: ../../enterprise/operation/menu.php:61 -msgid "SAP view" -msgstr "Vista SAP" - -#: ../../operation/agentes/ver_agente.php:1549 ../../operation/menu.php:29 -#: ../../operation/menu.php:162 -#: ../../enterprise/extensions/ipam/ipam_editor.php:141 -#: ../../enterprise/godmode/reporting/cluster_list.php:26 -#: ../../enterprise/meta/general/logon_ok.php:75 -#: ../../enterprise/meta/general/main_header.php:91 -#: ../../enterprise/operation/services/services.list.php:59 -#: ../../enterprise/operation/services/services.list.php:62 -#: ../../enterprise/operation/services/services.table_services.php:59 -#: ../../enterprise/operation/services/services.table_services.php:65 -#: ../../enterprise/operation/services/services.treeview_services.php:60 -#: ../../enterprise/operation/services/services.treeview_services.php:66 -msgid "Monitoring" -msgstr "Monitorización" - -#: ../../operation/events/event_statistics.php:46 -#: ../../operation/incidents/incident_statistics.php:27 -#: ../../operation/menu.php:369 ../../operation/menu.php:483 -#: ../../operation/snmpconsole/snmp_statistics.php:53 -#: ../../operation/snmpconsole/snmp_view.php:80 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1381 -msgid "Statistics" -msgstr "Estadísticas" - -#: ../../operation/events/event_statistics.php:55 -msgid "Event graph by user" -msgstr "Gráfico de eventos por usuario" - -#: ../../operation/events/events.build_table.php:81 -msgid "More detail" -msgstr "Más detalles" - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid "The Agent: " -msgstr "El agente: " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " has " -msgstr " tiene " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " events." -msgstr " eventos." - -#: ../../operation/events/events.build_table.php:852 -#: ../../operation/events/events.php:1888 -msgid "Change to in progress status" -msgstr "Cambiar a estado en proceso" - -#: ../../operation/events/events.build_table.php:990 -#: ../../operation/events/events.php:1531 -msgid "Execute event response" -msgstr "Ejecutar respuesta de eventos" - -#: ../../operation/events/events.build_table.php:995 -#: ../../operation/events/events.php:1536 -#, php-format -msgid "A maximum of %s event custom responses can be selected" +#: ../../operation/agentes/estado_generalagente.php:58 +msgid "The agent has not assigned server. Maybe agent does not run fine." msgstr "" -"De puede seleccionar un máximo se %s respuestas personalizadas de eventos" +"El agente no ha sido asignado a ningún servidor. Quizá el agente no se esté " +"ejecutando correctamente." -#: ../../operation/events/events.build_table.php:1000 -#: ../../operation/events/events.php:1541 -msgid "Please, select an event" -msgstr "Seleccione un evento" +#: ../../operation/agentes/estado_generalagente.php:238 +msgid "Remote configuration enabled" +msgstr "Configuración remota habilitada" -#: ../../operation/events/events.php:689 -msgid "Event viewer" -msgstr "Visor de eventos" +#: ../../operation/agentes/estado_generalagente.php:280 +msgid "Agent contact" +msgstr "Contacto de agente" -#: ../../operation/events/events.php:718 -msgid "History event list" -msgstr "Lista histórica de eventos" +#: ../../operation/agentes/estado_generalagente.php:283 +msgid "Refresh data" +msgstr "Actualizar datos" -#: ../../operation/events/events.php:722 -msgid "RSS Events" -msgstr "Eventos RSS" +#: ../../operation/agentes/estado_generalagente.php:285 +msgid "Force remote checks" +msgstr "Forzar comprobación remota" -#: ../../operation/events/events.php:726 -msgid "Marquee display" -msgstr "Mostrar marquesina" +#: ../../operation/agentes/estado_generalagente.php:312 +msgid "Next contact" +msgstr "Siguiente contacto" -#: ../../operation/events/events.php:730 -msgid "Export to CSV file" -msgstr "Exportar a un archivo CSV" +#: ../../operation/agentes/estado_generalagente.php:400 +msgid "Agent info" +msgstr "Información del agente" -#: ../../operation/events/events.php:734 ../../operation/events/events.php:774 -msgid "Sound events" -msgstr "Eventos sonoros" +#: ../../operation/agentes/estado_generalagente.php:413 +msgid "There is no GIS data." +msgstr "No hay datos GIS" -#: ../../operation/events/events.php:779 -msgid "History" -msgstr "Histórico" +#: ../../operation/agentes/estado_generalagente.php:534 +msgid "Agent access rate (Last 24h)" +msgstr "Índice de acceso de agente (últimas 24h)" -#: ../../operation/events/events.php:815 ../../operation/menu.php:430 -msgid "Sound Alerts" -msgstr "Alertas sonoras" +#: ../../operation/agentes/estado_generalagente.php:573 +msgid "Active incident on this agent" +msgstr "Activar incidencia a este agente" -#: ../../operation/events/events.php:841 -msgid "" -"Event viewer is disabled due event replication. For more information, please " -"contact with the administrator" +#: ../../operation/agentes/estado_generalagente.php:729 +msgid "Events info (24hr.)" +msgstr "Información de eventos (24h)" + +#: ../../operation/agentes/estado_generalagente.php:868 +msgid "Interface information (SNMP)" +msgstr "Información de interfaz (SNMP)" + +#: ../../operation/agentes/alerts_status.functions.php:35 +msgid "Error processing alert(s)" +msgstr "Error al procesar la(s) alerta(s)" + +#: ../../operation/agentes/alerts_status.functions.php:102 +msgid "Filter by agent name, module name, template name or action name" msgstr "" -"El visor de eventos está desactivado debido a la replicación de eventos. Por " -"favor, contacta con el administrador para obtener más información." +"Filtrar por nombre de agente, nombre de módulo, nombre de plantilla o de " +"acción" -#: ../../operation/events/events.php:929 -#: ../../operation/events/events_list.php:971 -msgid "Group agents" -msgstr "Grupos de agente" +#: ../../operation/agentes/alerts_status.functions.php:113 +msgid "No actions" +msgstr "Sin acciones" -#: ../../operation/events/events.php:1119 -#: ../../operation/events/events_list.php:999 -msgid "Id source event" -msgstr "Evento de origen de ID" +#: ../../operation/agentes/alerts_status.functions.php:162 +msgid "Filter by module name, template name or action name" +msgstr "Filtrar por nombre de módulo, nombre de plantilla o nombre de acción" -#: ../../operation/events/events.php:1369 -msgid "Current filter" -msgstr "Filtro actual" +#: ../../operation/agentes/tactical.php:170 +msgid "Report of State" +msgstr "Informe de estado" -#: ../../operation/events/events.php:1374 -msgid "Not set." -msgstr "No establecida" +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_edit.php:51 +msgid "Received messages" +msgstr "Mensajes recibidos" -#: ../../operation/events/events.php:1387 -msgid "Any status." -msgstr "Cualquier estado" +#: ../../operation/messages/message_list.php:51 +#: ../../operation/messages/message_edit.php:60 +msgid "Sent messages" +msgstr "Mensajes enviados" -#: ../../operation/events/events.php:1391 -msgid "New events." -msgstr "Nuevos eventos" +#: ../../operation/messages/message_list.php:59 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_edit.php:69 +msgid "Create message" +msgstr "Crear mensaje" -#: ../../operation/events/events.php:1395 -msgid "Validated." -msgstr "Validado." +#: ../../operation/messages/message_list.php:65 +#: ../../operation/messages/message_edit.php:75 ../../operation/menu.php:515 +msgid "Messages" +msgstr "Mensajes" -#: ../../operation/events/events.php:1399 -msgid "In proccess." -msgstr "In proceso." +#: ../../operation/messages/message_list.php:104 +msgid "Not deleted. Error deleting messages" +msgstr "No borrado. Error al suprimir mensajes." -#: ../../operation/events/events.php:1403 -msgid "Not validated." -msgstr "No validado." +#: ../../operation/messages/message_list.php:112 +#: ../../operation/messages/message_list.php:121 +msgid "You have" +msgstr "Tienes" -#: ../../operation/events/events.php:1415 -msgid "Any time." -msgstr "Cualquier hora." +#: ../../operation/messages/message_list.php:112 +msgid "sent message(s)" +msgstr "mensaje(s) enviado(s)" -#: ../../operation/events/events.php:1417 -#: ../../operation/events/events.php:2290 -msgid "Last hour." -msgstr "Última hora." +#: ../../operation/messages/message_list.php:121 +msgid "unread message(s)" +msgstr "mensaje(s) sin leer" -#: ../../operation/events/events.php:1419 +#: ../../operation/messages/message_list.php:132 +msgid "There are no messages." +msgstr "No hay mensajes." + +#: ../../operation/messages/message_list.php:162 +#: ../../operation/messages/message_edit.php:247 +msgid "Destination" +msgstr "Destino" + +#: ../../operation/messages/message_list.php:164 +#: ../../operation/messages/message_edit.php:239 +msgid "Sender" +msgstr "Remitente" + +#: ../../operation/messages/message_list.php:182 +msgid "Click to read" +msgstr "Haz clic para leer" + +#: ../../operation/messages/message_list.php:186 +msgid "Mark as unread" +msgstr "Marcar como no leído" + +#: ../../operation/messages/message_list.php:192 +#: ../../operation/messages/message_list.php:196 +msgid "Message unread - click to read" +msgstr "Mensaje sin leer. Haz clic para leerlo." + +#: ../../operation/messages/message_list.php:224 +msgid "No Subject" +msgstr "Sin asunto" + +#: ../../operation/messages/message_edit.php:94 +msgid "This message does not exist in the system" +msgstr "Este mensaje no existe en el sistema." + +#: ../../operation/messages/message_edit.php:158 +msgid "wrote" +msgstr "escribió" + +#: ../../operation/messages/message_edit.php:173 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../operation/messages/message_edit.php:180 +msgid "Reply" +msgstr "Responder" + +#: ../../operation/messages/message_edit.php:207 #, php-format -msgid "Last %d hours." -msgstr "Últimas %d horas." +msgid "Message successfully sent to user %s" +msgstr "Mensaje enviado correctamente al usuario %s" -#: ../../operation/events/events.php:1427 -msgid "Duplicated" -msgstr "Duplicado" +#: ../../operation/messages/message_edit.php:208 +#, php-format +msgid "Error sending message to user %s" +msgstr "Error al enviar el mensaje al usuario %s" -#: ../../operation/events/events.php:1430 -msgid "All events." -msgstr "Todos los eventos." +#: ../../operation/messages/message_edit.php:224 +msgid "Message successfully sent" +msgstr "Mensaje enviado correctamente" -#: ../../operation/events/events.php:1434 -msgid "Group agents." -msgstr "Agentes de grupo." +#: ../../operation/messages/message_edit.php:225 +#, php-format +msgid "Error sending message to group %s" +msgstr "Error al enviar el mensaje al grupo %s" -#: ../../operation/events/events.php:1512 -msgid "In progress selected" -msgstr "Seleccionado en proceso" +#: ../../operation/messages/message_edit.php:301 +msgid "Select user" +msgstr "Seleccionar usuario" -#: ../../operation/events/events.php:1513 -msgid "Validate selected" -msgstr "Validar selección" +#: ../../operation/messages/message_edit.php:308 +msgid "OR" +msgstr "O" -#: ../../operation/events/events.php:1630 -msgid "has at least" -msgstr "tiene al menos" +#: ../../operation/messages/message_edit.php:316 +msgid "Select group" +msgstr "Seleccionar grupo" -#: ../../operation/events/events.php:1632 -msgid "events" -msgstr "eventos" +#: ../../operation/messages/message_edit.php:346 +msgid "Send message" +msgstr "Enviar mensaje" -#: ../../operation/events/events.php:1873 -msgid "Validate events" -msgstr "Validar eventos" +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:125 +msgid "Data to show" +msgstr "Datos a mostrar" -#: ../../operation/events/events.php:1897 -msgid "Delete events" -msgstr "Eliminar eventos" +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "Número de resultados a mostrar" -#: ../../operation/events/events.php:2292 -msgid "hours." -msgstr "horas." +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "Período de tiempo" -#: ../../operation/events/events_list.php:348 -#: ../../operation/events/events_list.php:1085 -msgid "No filter loaded" -msgstr "No se ha cargado el filtro" +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +#: ../../operation/netflow/nf_live_view.php:284 +msgid "Select this checkbox to write interval instead a date." +msgstr "" +"Seleccione esta casilla para escribir un intervalo en vex de una fecha." -#: ../../operation/events/events_list.php:356 -#: ../../operation/events/events_list.php:1085 -msgid "Filter loaded" -msgstr "Filtro cargado" +#: ../../operation/network/network_report.php:198 +#: ../../operation/network/network_report.php:246 +msgid "Flows" +msgstr "Flujo" -#: ../../operation/events/events_list.php:1091 -#: ../../operation/events/events_list.php:1093 -msgid "Event control filter" -msgstr "Filtro de control de eventos" +#: ../../operation/network/network_report.php:209 +#: ../../operation/network/network_report.php:249 +msgid "Packets" +msgstr "Paquetes" -#: ../../operation/events/events_list.php:1101 -msgid "Error creating filter." -msgstr "Error al crear el filtro" +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "Filtrado por puerto %s. Pinche aquí para eliminar el filtro." -#: ../../operation/events/events_list.php:1105 -msgid "Error creating filter is duplicated." -msgstr "Error al crear el filtro ya que está duplicado" +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by IP %s. Click here to remove the filter." +msgstr "Filtrado por IP %s. Pinche aquí para eliminar el filtro." -#: ../../operation/events/events_list.php:1109 -msgid "Filter created." -msgstr "Filtro creado" +#: ../../operation/network/network_usage_map.php:29 +#: ../../operation/menu.php:117 +msgid "Network usage map" +msgstr "Mapa de uso de red" -#: ../../operation/events/events_list.php:1114 -msgid "Filter updated." -msgstr "Filtro actualizado" +#: ../../operation/network/network_usage_map.php:140 +msgid "Show netflow map" +msgstr "Mostrar mapa de flujo de red" -#: ../../operation/events/events_list.php:1118 -msgid "Error updating filter." +#: ../../operation/network/network_usage_map.php:151 +msgid "Show NTA map" +msgstr "Mostrar mapa NTA" + +#: ../../operation/network/network_usage_map.php:199 +msgid "No data retrieved" +msgstr "No se han obtenido datos" + +#: ../../operation/network/network_explorer.php:38 ../../operation/menu.php:105 +msgid "Network explorer" +msgstr "Explorador de red" + +#: ../../operation/netflow/nf_live_view.php:123 +#: ../../operation/netflow/nf_live_view.php:145 +#: ../../operation/netflow/nf_live_view.php:151 +msgid "Netflow live view" +msgstr "Netflow en tiempo real" + +#: ../../operation/netflow/nf_live_view.php:162 +msgid "Error creating filter" +msgstr "Error al crear filtro" + +#: ../../operation/netflow/nf_live_view.php:164 +msgid "Filter created successfully" +msgstr "Filtro creado correctamente" + +#: ../../operation/netflow/nf_live_view.php:183 +msgid "Filter updated successfully" +msgstr "Filtro actualizado correctamente" + +#: ../../operation/netflow/nf_live_view.php:184 +msgid "Error updating filter" msgstr "Error al actualizar el filtro" -#: ../../operation/events/events_marquee.php:113 -#, php-format -msgid "%s - Latest events" -msgstr "%s - Últimos eventos" +#: ../../operation/netflow/nf_live_view.php:208 +msgid "Draw live filter" +msgstr "Extraer filtro en directo" -#: ../../operation/events/events_rss.php:195 -msgid "Your IP is not into the IP list with API access." -msgstr "Tu IP no se encuentra en el listado de IPs con acceso a la API." +#: ../../operation/netflow/nf_live_view.php:242 +msgid "Connection" +msgstr "Conexión" -#: ../../operation/events/events_rss.php:214 -msgid "The URL of your feed has bad hash." -msgstr "La URL de tu feed tiene mal el hash." +#: ../../operation/netflow/nf_live_view.php:295 +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/events/sound_events.php:43 ../../operation/menu.php:419 +#: ../../operation/netflow/nf_live_view.php:396 +msgid "Select a filter" +msgstr "Selecciona un filtro" + +#: ../../operation/netflow/nf_live_view.php:469 +msgid "IP address resolution" +msgstr "Resolución de dirección IP" + +#: ../../operation/netflow/nf_live_view.php:469 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "Resolver direcciones IP para obtener sus hostnames" + +#: ../../operation/netflow/nf_live_view.php:472 +msgid "Source ip" +msgstr "IP de origen" + +#: ../../operation/netflow/nf_live_view.php:495 +msgid "Draw" +msgstr "Dibujar" + +#: ../../operation/netflow/nf_live_view.php:499 +msgid "Save as new filter" +msgstr "Guardar nuevo filtro" + +#: ../../operation/netflow/nf_live_view.php:500 +msgid "Update current filter" +msgstr "Actualizar filtro actual" + +#: ../../operation/netflow/nf_live_view.php:514 +msgid "No filter selected" +msgstr "No se ha seleccionado ningún filtro" + +#: ../../operation/netflow/netflow_explorer.php:38 ../../operation/menu.php:89 +msgid "Netflow explorer" +msgstr "Explorador Netflow" + +#: ../../operation/snmpconsole/snmp_statistics.php:118 +#: ../../operation/snmpconsole/snmp_view.php:688 +msgid "There are no SNMP traps in database" +msgstr "No hay ningún trap SNMP definido" + +#: ../../operation/snmpconsole/snmp_statistics.php:131 +msgid "Traps received by source" +msgstr "Traps recibidos por el origen" + +#: ../../operation/snmpconsole/snmp_statistics.php:145 +#: ../../operation/snmpconsole/snmp_statistics.php:213 +msgid "Number" +msgstr "Número" + +#: ../../operation/snmpconsole/snmp_statistics.php:159 +#: ../../operation/snmpconsole/snmp_view.php:907 +msgid "View agent details" +msgstr "Ver detalles del agente" + +#: ../../operation/snmpconsole/snmp_statistics.php:199 +msgid "Traps received by Enterprise String" +msgstr "Traps recibidos por cadena Enterprise" + +#: ../../operation/snmpconsole/snmp_statistics.php:212 +msgid "Trap Enterprise String" +msgstr "Traps Enterprise de cadena" + +#: ../../operation/snmpconsole/snmp_browser.php:70 +msgid "SNMP Browser" +msgstr "Navegador SNMP" + +#: ../../operation/snmpconsole/snmp_browser.php:201 +msgid "Adding modules in progress" +msgstr "Añadiendo módulos" + +#: ../../operation/snmpconsole/snmp_browser.php:487 +msgid "Create policy" +msgstr "Crear política" + +#: ../../operation/snmpconsole/snmp_browser.php:579 +msgid "Are you sure you want add module?" +msgstr "¿Está seguro de que quiere añadir el módulo?" + +#: ../../operation/snmpconsole/snmp_view.php:578 +msgid "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" +msgstr "" +"Búsqueda según campos alfanuméricos en el trap.\n" +"\t \tRECUERDA que las fuentes de trap tienen que buscarse según una " +"dirección IP." + +#: ../../operation/snmpconsole/snmp_view.php:592 +msgid "From (Date)" +msgstr "Desde (fecha)" + +#: ../../operation/snmpconsole/snmp_view.php:594 +msgid "To (Date)" +msgstr "Hasta (fecha)" + +#: ../../operation/snmpconsole/snmp_view.php:597 +msgid "From (Time)" +msgstr "Desde (hora)" + +#: ../../operation/snmpconsole/snmp_view.php:599 +msgid "To (Time)" +msgstr "Hasta (hora)" + +#: ../../operation/snmpconsole/snmp_view.php:603 +msgid "Search by trap type" +msgstr "Búsqueda por tipo de trap" + +#: ../../operation/snmpconsole/snmp_view.php:627 +msgid "Group by Enterprise String/IP" +msgstr "Agrupado por cadena Enterprise/IP" + +#: ../../operation/snmpconsole/snmp_view.php:686 +msgid "There are no SNMP traps in database that contains this filter" +msgstr "No hay traps SNMP en la base de datos que contengan este filtro" + +#: ../../operation/snmpconsole/snmp_view.php:719 +msgid "Refresh every" +msgstr "Actualizar cada" + +#: ../../operation/snmpconsole/snmp_view.php:731 +msgid "SNMP Traps" +msgstr "Traps SNMP" + +#: ../../operation/snmpconsole/snmp_view.php:816 +msgid "Trap subtype" +msgstr "Subtipo trap" + +#: ../../operation/snmpconsole/snmp_view.php:999 +msgid "Variable bindings:" +msgstr "Enlaces variables" + +#: ../../operation/snmpconsole/snmp_view.php:1005 +msgid "See more details" +msgstr "Ver más detalles" + +#: ../../operation/snmpconsole/snmp_view.php:1017 +msgid "Enterprise String:" +msgstr "Cadena Enterprise:" + +#: ../../operation/snmpconsole/snmp_view.php:1069 +msgid "Trap type:" +msgstr "Tipo trap:" + +#: ../../operation/snmpconsole/snmp_view.php:1095 +msgid "Count:" +msgstr "Contar:" + +#: ../../operation/snmpconsole/snmp_view.php:1099 +msgid "First trap:" +msgstr "Primer trap:" + +#: ../../operation/snmpconsole/snmp_view.php:1103 +msgid "Last trap:" +msgstr "Último trap:" + +#: ../../operation/snmpconsole/snmp_view.php:1124 +msgid "No matching traps found" +msgstr "No se encontraron traps coincidentes." + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:28 +#: ../../operation/menu.php:143 +msgid "MIB uploader" +msgstr "Cargador MIB" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:70 +msgid "" +"MIB files will be installed on the system. Please note that a MIB may depend " +"on other MIB. To customize trap definitions use the SNMP trap editor." +msgstr "" +"Los archivos MIB se instalarán en el sistema. Por favor, ten en cuenta que " +"un MIB puede depender de otro MIB. Para personalizar las definiciones de " +"trap, se debe usar el editor de trap SNMP." + +#: ../../operation/menu.php:39 +msgid "Views" +msgstr "Vistas" + +#: ../../operation/menu.php:93 +msgid "Netflow Live View" +msgstr "Netflow en tiempo real" + +#: ../../operation/menu.php:138 +msgid "SNMP browser" +msgstr "Navegador SNMP" + +#: ../../operation/menu.php:153 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/menu.php:272 ../../operation/gis_maps/gis_map.php:35 +msgid "GIS Maps" +msgstr "Mapas GIS" + +#: ../../operation/menu.php:277 +msgid "List of Gis maps" +msgstr "Lista de mapas GIS" + +#: ../../operation/menu.php:316 +msgid "Topology maps" +msgstr "Mapas topológicos" + +#: ../../operation/menu.php:434 +msgid "RSS" +msgstr "RSS" + +#: ../../operation/menu.php:439 +msgid "Marquee" +msgstr "Marquesina" + +#: ../../operation/menu.php:448 ../../operation/events/sound_events.php:43 msgid "Sound Events" msgstr "Eventos sonoros" -#: ../../operation/events/sound_events.php:60 -msgid "Sound console" -msgstr "Consola sonora" +#: ../../operation/menu.php:459 ../../operation/events/events.php:823 +msgid "Sound Alerts" +msgstr "Alertas sonoras" -#: ../../operation/events/sound_events.php:80 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -msgid "Event" -msgstr "Evento" +#: ../../operation/menu.php:481 +msgid "Configure user notifications" +msgstr "Configurar notificaciones de usuario" + +#: ../../operation/menu.php:505 +msgid "List of Incidents" +msgstr "Lista de incidentes" + +#: ../../operation/menu.php:507 +#: ../../operation/incidents/list_integriaims_incidents.php:31 +msgid "Integria IMS Tickets" +msgstr "Tickets de Integria IMS" + +#: ../../operation/menu.php:521 +msgid "Messages List" +msgstr "Lista de mensajes" + +#: ../../operation/menu.php:522 +msgid "New message" +msgstr "Mensaje nuevo" + +#: ../../operation/menu.php:543 +msgid "Scheduled downtime" +msgstr "Desconexión programada" + +#: ../../operation/menu.php:617 +msgid "Tools" +msgstr "Herramientas" + +#: ../../operation/gis_maps/gis_map.php:195 +msgid "No maps found" +msgstr "No se encontraron mapas" + +#: ../../operation/gis_maps/gis_map.php:214 +msgid "Caution: Do you want delete the map?" +msgstr "Cuidado: ¿Quieres borrar el mapa?" + +#: ../../operation/gis_maps/gis_map.php:221 +msgid "Do you want to set default the map?" +msgstr "¿Quieres configurar por defecto el mapa?" + +#: ../../operation/gis_maps/gis_map.php:229 +msgid "There was error on setup the default map." +msgstr "Error al configurar el mapa por defecto" + +#: ../../operation/gis_maps/render_view.php:157 +msgid "Filter by status" +msgstr "Filtro por estado" #: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 #: ../../operation/gis_maps/ajax.php:444 @@ -34151,42 +46003,103 @@ msgstr "Numero de eventos críticos no validados" msgid "Alert(s) fired" msgstr "Alertas disparadas" -#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:268 -msgid "GIS Maps" -msgstr "Mapas GIS" +#: ../../operation/incidents/incident_detail.php:187 +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/gis_maps/gis_map.php:195 -msgid "No maps found" -msgstr "No se encontraron mapas" +#: ../../operation/incidents/incident_detail.php:200 +msgid "File uploaded" +msgstr "Archivo subido" -#: ../../operation/gis_maps/gis_map.php:214 -msgid "Caution: Do you want delete the map?" -msgstr "Cuidado: ¿Quieres borrar el mapa?" +#: ../../operation/incidents/incident_detail.php:201 +msgid "File could not be uploaded" +msgstr "No se pudo subir el archivo." -#: ../../operation/gis_maps/gis_map.php:221 -msgid "Do you want to set default the map?" -msgstr "¿Quieres configurar por defecto el mapa?" +#: ../../operation/incidents/incident_detail.php:262 +msgid "Incident details" +msgstr "Detalles del incidente" -#: ../../operation/gis_maps/gis_map.php:229 -msgid "There was error on setup the default map." -msgstr "Error al configurar el mapa por defecto" +#: ../../operation/incidents/incident_detail.php:266 +#: ../../operation/incidents/incident.php:494 +msgid "Create incident" +msgstr "Crear incidente" -#: ../../operation/gis_maps/render_view.php:144 -#: ../../enterprise/dashboard/widgets/top_n.php:66 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 -msgid "2 hours" -msgstr "2 horas" +#: ../../operation/incidents/incident_detail.php:287 +msgid "Opened at" +msgstr "Abierto el" -#: ../../operation/gis_maps/render_view.php:157 -msgid "Filter by status" -msgstr "Filtro por estado" +#: ../../operation/incidents/incident_detail.php:355 +#: ../../operation/incidents/integriaims_export_csv.php:96 +#: ../../operation/incidents/configure_integriaims_incident.php:258 +#: ../../operation/incidents/list_integriaims_incidents.php:141 +#: ../../operation/incidents/list_integriaims_incidents.php:267 +msgid "Creator" +msgstr "Creador" -#: ../../operation/gis_maps/render_view.php:165 -#: ../../enterprise/dashboard/widgets/network_map.php:41 -#: ../../enterprise/extensions/vmware/vmware_view.php:1281 -#: ../../enterprise/extensions/vmware/vmware_view.php:1299 -msgid "Map" -msgstr "Mapa" +#: ../../operation/incidents/incident_detail.php:400 +msgid "Update incident" +msgstr "Actualizar incidente" + +#: ../../operation/incidents/incident_detail.php:418 +#: ../../operation/incidents/incident_detail.php:421 +msgid "Add note" +msgstr "Insertar nota" + +#: ../../operation/incidents/incident_detail.php:454 +msgid "Notes attached to incident" +msgstr "Notas asociadas al incidente" + +#: ../../operation/incidents/incident_detail.php:475 +#: ../../operation/incidents/incident_detail.php:525 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:122 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:296 +msgid "Filename" +msgstr "Nombre del archivo" + +#: ../../operation/incidents/incident_detail.php:503 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:274 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:448 +msgid "Attached files" +msgstr "Archivos adjuntos" + +#: ../../operation/incidents/incident_detail.php:519 +#: ../../operation/incidents/incident_detail.php:523 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +msgid "Add attachment" +msgstr "Añadir adjunto" + +#: ../../operation/incidents/integriaims_export_csv.php:88 +msgid "ID Ticket" +msgstr "Ticket de ID" + +#: ../../operation/incidents/integriaims_export_csv.php:90 +#: ../../operation/incidents/list_integriaims_incidents.php:263 +msgid "Group/Company" +msgstr "Grupo/Compañia" + +#: ../../operation/incidents/integriaims_export_csv.php:95 +msgid "Started" +msgstr "Iniciado hace" + +#: ../../operation/incidents/incident_statistics.php:30 +msgid "Incidents by status" +msgstr "Incidentes por estado" + +#: ../../operation/incidents/incident_statistics.php:33 +msgid "Incidents by priority" +msgstr "Incidentes por prioridad" + +#: ../../operation/incidents/incident_statistics.php:36 +msgid "Incidents by group" +msgstr "Incidentes por grupo" + +#: ../../operation/incidents/incident_statistics.php:39 +msgid "Incidents by user" +msgstr "Incidentes por usuario" + +#: ../../operation/incidents/incident_statistics.php:42 +msgid "Incidents by source" +msgstr "Incidentes por origen" #: ../../operation/incidents/configure_integriaims_incident.php:33 msgid "Update Integria IMS Ticket" @@ -34198,7 +46111,7 @@ msgstr "Crear ticket de Integria IMS" #: ../../operation/incidents/configure_integriaims_incident.php:40 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:30 -#: ../../operation/incidents/list_integriaims_incidents.php:34 +#: ../../operation/incidents/list_integriaims_incidents.php:41 msgid "Integria integration must be enabled in Pandora setup" msgstr "" "La integración con Integria tiene que estar habilitada en la configuración " @@ -34220,14 +46133,6 @@ msgstr "Actualizado correctamente en Integria IMS" msgid "Could not be updated in Integria IMS" msgstr "No se ha podido actualizar en Integria IMS" -#: ../../operation/incidents/configure_integriaims_incident.php:258 -#: ../../operation/incidents/incident_detail.php:355 -#: ../../operation/incidents/integriaims_export_csv.php:96 -#: ../../operation/incidents/list_integriaims_incidents.php:134 -#: ../../operation/incidents/list_integriaims_incidents.php:260 -msgid "Creator" -msgstr "Creador" - #: ../../operation/incidents/configure_integriaims_incident.php:270 msgid "" "This field corresponds to the Integria IMS user specified in Integria IMS " @@ -34236,101 +46141,6 @@ msgstr "" "Este campo corresponde al usuario de Integria IMS especificado en la " "configuración de Integria IMS" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:84 -msgid "Not yet" -msgstr "Todavía no" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:88 -msgid "Not closed yet" -msgstr "No cerrado todavía" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:122 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:296 -#: ../../operation/incidents/incident_detail.php:475 -#: ../../operation/incidents/incident_detail.php:525 -msgid "Filename" -msgstr "Nombre del archivo" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:136 -#: ../../operation/incidents/incident_detail.php:141 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:534 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:93 -msgid "No description available" -msgstr "Sin descripción disponible" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:169 -msgid "File successfully added" -msgstr "Archivo añadido correctamente" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:170 -msgid "File could not be added" -msgstr "no se ha podido añadir el archivo" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:173 -msgid "File has an invalid extension" -msgstr "El archivo tiene una extensión no válida" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:189 -msgid "File successfully deleted" -msgstr "Archivo añadido correctamente" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:190 -msgid "File could not be deleted" -msgstr "El archivo no se ha podido eliminar" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:254 -msgid "File name" -msgstr "Nombre de archivo" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 -#: ../../operation/incidents/incident_detail.php:519 -#: ../../operation/incidents/incident_detail.php:523 -msgid "Add attachment" -msgstr "Añadir adjunto" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:274 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:448 -#: ../../operation/incidents/incident_detail.php:503 -msgid "Attached files" -msgstr "Archivos adjuntos" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:332 -msgid "Comment successfully added" -msgstr "Comentario añadido correctamente" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 -msgid "Comment could not be added" -msgstr "No se ha podido añadir el comentario" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:359 -msgid "No comments found" -msgstr "No se han encontrado comentarios" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:400 -msgid "Created by" -msgstr "Creado por" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:401 -msgid "Owned by" -msgstr "Pertenece a" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:402 -msgid "Closed by" -msgstr "Cerrado por" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:417 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1740 -msgid "Created at" -msgstr "Creado en" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:419 -msgid "Closed at" -msgstr "Cerrado el" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:430 -msgid "People" -msgstr "Personas" - #: ../../operation/incidents/incident.php:60 msgid "Incident management" msgstr "Gestión de incidentes" @@ -34371,11 +46181,6 @@ msgstr "Todas las prioridades" msgid "Users:" msgstr "Usuarios:" -#: ../../operation/incidents/incident.php:325 -#: ../../enterprise/extensions/ipam/ipam_editor.php:83 -msgid "All users" -msgstr "Todos los usuarios" - #: ../../operation/incidents/incident.php:340 msgid "Agents:" msgstr "Agentes:" @@ -34405,549 +46210,102 @@ msgstr "Borrar incidentes" msgid "Become owner" msgstr "Convertirse en propietario" -#: ../../operation/incidents/incident.php:494 -#: ../../operation/incidents/incident_detail.php:266 -msgid "Create incident" -msgstr "Crear incidente" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:84 +msgid "Not yet" +msgstr "Todavía no" -#: ../../operation/incidents/incident_detail.php:187 -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/dashboard_detail_integriaims_incident.php:88 +msgid "Not closed yet" +msgstr "No cerrado todavía" -#: ../../operation/incidents/incident_detail.php:200 -msgid "File uploaded" -msgstr "Archivo subido" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:169 +msgid "File successfully added" +msgstr "Archivo añadido correctamente" -#: ../../operation/incidents/incident_detail.php:201 -msgid "File could not be uploaded" -msgstr "No se pudo subir el archivo." +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:170 +msgid "File could not be added" +msgstr "no se ha podido añadir el archivo" -#: ../../operation/incidents/incident_detail.php:262 -msgid "Incident details" -msgstr "Detalles del incidente" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:173 +msgid "File has an invalid extension" +msgstr "El archivo tiene una extensión no válida" -#: ../../operation/incidents/incident_detail.php:287 -msgid "Opened at" -msgstr "Abierto el" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:189 +msgid "File successfully deleted" +msgstr "Archivo añadido correctamente" -#: ../../operation/incidents/incident_detail.php:400 -msgid "Update incident" -msgstr "Actualizar incidente" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:190 +msgid "File could not be deleted" +msgstr "El archivo no se ha podido eliminar" -#: ../../operation/incidents/incident_detail.php:418 -#: ../../operation/incidents/incident_detail.php:421 -msgid "Add note" -msgstr "Insertar nota" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:254 +msgid "File name" +msgstr "Nombre de archivo" -#: ../../operation/incidents/incident_detail.php:454 -msgid "Notes attached to incident" -msgstr "Notas asociadas al incidente" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:332 +msgid "Comment successfully added" +msgstr "Comentario añadido correctamente" -#: ../../operation/incidents/incident_statistics.php:30 -msgid "Incidents by status" -msgstr "Incidentes por estado" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 +msgid "Comment could not be added" +msgstr "No se ha podido añadir el comentario" -#: ../../operation/incidents/incident_statistics.php:33 -msgid "Incidents by priority" -msgstr "Incidentes por prioridad" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:359 +msgid "No comments found" +msgstr "No se han encontrado comentarios" -#: ../../operation/incidents/incident_statistics.php:36 -msgid "Incidents by group" -msgstr "Incidentes por grupo" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:400 +msgid "Created by" +msgstr "Creado por" -#: ../../operation/incidents/incident_statistics.php:39 -msgid "Incidents by user" -msgstr "Incidentes por usuario" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:401 +msgid "Owned by" +msgstr "Pertenece a" -#: ../../operation/incidents/incident_statistics.php:42 -msgid "Incidents by source" -msgstr "Incidentes por origen" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:402 +msgid "Closed by" +msgstr "Cerrado por" -#: ../../operation/incidents/integriaims_export_csv.php:88 -msgid "ID Ticket" -msgstr "Ticket de ID" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:419 +msgid "Closed at" +msgstr "Cerrado el" -#: ../../operation/incidents/integriaims_export_csv.php:90 -#: ../../operation/incidents/list_integriaims_incidents.php:256 -msgid "Group/Company" -msgstr "Grupo/Compañia" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:430 +msgid "People" +msgstr "Personas" -#: ../../operation/incidents/integriaims_export_csv.php:95 -msgid "Started" -msgstr "Iniciado hace" - -#: ../../operation/incidents/list_integriaims_incidents.php:30 -#: ../../operation/menu.php:484 -msgid "Integria IMS Tickets" -msgstr "Tickets de Integria IMS" - -#: ../../operation/incidents/list_integriaims_incidents.php:106 +#: ../../operation/incidents/list_integriaims_incidents.php:113 msgid "Text filter" msgstr "Filtro de texto" -#: ../../operation/incidents/list_integriaims_incidents.php:170 +#: ../../operation/incidents/list_integriaims_incidents.php:177 msgid "Created from" msgstr "Creado desde" -#: ../../operation/incidents/list_integriaims_incidents.php:182 +#: ../../operation/incidents/list_integriaims_incidents.php:189 msgid "Created to" msgstr "Creado hasta" -#: ../../operation/incidents/list_integriaims_incidents.php:255 +#: ../../operation/incidents/list_integriaims_incidents.php:262 msgid "Ticket" msgstr "Ticket" -#: ../../operation/incidents/list_integriaims_incidents.php:257 +#: ../../operation/incidents/list_integriaims_incidents.php:264 msgid "Status/Resolution" msgstr "Estado/Resolución" -#: ../../operation/incidents/list_integriaims_incidents.php:258 +#: ../../operation/incidents/list_integriaims_incidents.php:265 msgid "Prior" msgstr "Anterior" -#: ../../operation/incidents/list_integriaims_incidents.php:259 +#: ../../operation/incidents/list_integriaims_incidents.php:266 msgid "Updated/Started" msgstr "Actualizado/Iniciado" -#: ../../operation/incidents/list_integriaims_incidents.php:309 +#: ../../operation/incidents/list_integriaims_incidents.php:316 msgid "No tickets to show" msgstr "No hay tickets" -#: ../../operation/menu.php:35 -msgid "Views" -msgstr "Vistas" - -#: ../../operation/menu.php:49 ../../operation/tree.php:102 -#: ../../enterprise/dashboard/widgets/tree_view.php:28 -#: ../../enterprise/dashboard/widgets/tree_view.php:398 -#: ../../enterprise/meta/general/main_header.php:97 -msgid "Tree view" -msgstr "Vista de árbol" - -#: ../../operation/menu.php:85 ../../operation/netflow/netflow_explorer.php:38 -msgid "Netflow explorer" -msgstr "Explorador Netflow" - -#: ../../operation/menu.php:89 -msgid "Netflow Live View" -msgstr "Netflow en tiempo real" - -#: ../../operation/menu.php:101 ../../operation/network/network_explorer.php:38 -msgid "Network explorer" -msgstr "Explorador de red" - -#: ../../operation/menu.php:113 -#: ../../operation/network/network_usage_map.php:29 -msgid "Network usage map" -msgstr "Mapa de uso de red" - -#: ../../operation/menu.php:134 -msgid "SNMP browser" -msgstr "Navegador SNMP" - -#: ../../operation/menu.php:139 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:28 -msgid "MIB uploader" -msgstr "Cargador MIB" - -#: ../../operation/menu.php:149 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/menu.php:173 -#: ../../enterprise/dashboard/widgets/network_map.php:29 -#: ../../enterprise/dashboard/widgets/network_map.php:151 -msgid "Network map" -msgstr "Mapa de red" - -#: ../../operation/menu.php:273 -msgid "List of Gis maps" -msgstr "Lista de mapas GIS" - -#: ../../operation/menu.php:312 -msgid "Topology maps" -msgstr "Mapas topológicos" - -#: ../../operation/menu.php:405 -msgid "RSS" -msgstr "RSS" - -#: ../../operation/menu.php:410 -msgid "Marquee" -msgstr "Marquesina" - -#: ../../operation/menu.php:440 ../../operation/users/user_edit_header.php:121 -msgid "Workspace" -msgstr "Área de trabajo" - -#: ../../operation/menu.php:452 -msgid "Configure user notifications" -msgstr "Configurar notificaciones de usuario" - -#: ../../operation/menu.php:458 -msgid "WebChat" -msgstr "Chat de la web" - -#: ../../operation/menu.php:482 -msgid "List of Incidents" -msgstr "Lista de incidentes" - -#: ../../operation/menu.php:492 ../../operation/messages/message_edit.php:75 -#: ../../operation/messages/message_list.php:65 -msgid "Messages" -msgstr "Mensajes" - -#: ../../operation/menu.php:498 -msgid "Messages List" -msgstr "Lista de mensajes" - -#: ../../operation/menu.php:499 -msgid "New message" -msgstr "Mensaje nuevo" - -#: ../../operation/menu.php:520 -msgid "Scheduled downtime" -msgstr "Desconexión programada" - -#: ../../operation/menu.php:594 -msgid "Tools" -msgstr "Herramientas" - -#: ../../operation/messages/message_edit.php:51 -#: ../../operation/messages/message_list.php:46 -msgid "Received messages" -msgstr "Mensajes recibidos" - -#: ../../operation/messages/message_edit.php:60 -#: ../../operation/messages/message_list.php:51 -msgid "Sent messages" -msgstr "Mensajes enviados" - -#: ../../operation/messages/message_edit.php:69 -#: ../../operation/messages/message_list.php:59 -#: ../../operation/messages/message_list.php:272 -msgid "Create message" -msgstr "Crear mensaje" - -#: ../../operation/messages/message_edit.php:94 -msgid "This message does not exist in the system" -msgstr "Este mensaje no existe en el sistema." - -#: ../../operation/messages/message_edit.php:168 -msgid "wrote" -msgstr "escribió" - -#: ../../operation/messages/message_edit.php:183 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../operation/messages/message_edit.php:190 -msgid "Reply" -msgstr "Responder" - -#: ../../operation/messages/message_edit.php:217 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "Mensaje enviado correctamente al usuario %s" - -#: ../../operation/messages/message_edit.php:218 -#, php-format -msgid "Error sending message to user %s" -msgstr "Error al enviar el mensaje al usuario %s" - -#: ../../operation/messages/message_edit.php:234 -msgid "Message successfully sent" -msgstr "Mensaje enviado correctamente" - -#: ../../operation/messages/message_edit.php:235 -#, php-format -msgid "Error sending message to group %s" -msgstr "Error al enviar el mensaje al grupo %s" - -#: ../../operation/messages/message_edit.php:249 -#: ../../operation/messages/message_list.php:164 -msgid "Sender" -msgstr "Remitente" - -#: ../../operation/messages/message_edit.php:257 -#: ../../operation/messages/message_list.php:162 -msgid "Destination" -msgstr "Destino" - -#: ../../operation/messages/message_edit.php:311 -msgid "Select user" -msgstr "Seleccionar usuario" - -#: ../../operation/messages/message_edit.php:318 -msgid "OR" -msgstr "O" - -#: ../../operation/messages/message_edit.php:326 -msgid "Select group" -msgstr "Seleccionar grupo" - -#: ../../operation/messages/message_edit.php:341 -#: ../../operation/users/webchat.php:87 -#: ../../enterprise/dashboard/widgets/example.php:25 -#: ../../enterprise/include/functions_cron.php:190 -#: ../../enterprise/include/functions_cron.php:235 -#: ../../enterprise/operation/reporting/custom_reporting.php:112 -msgid "Message" -msgstr "Mensaje" - -#: ../../operation/messages/message_edit.php:356 -#: ../../operation/users/webchat.php:98 -msgid "Send message" -msgstr "Enviar mensaje" - -#: ../../operation/messages/message_list.php:104 -msgid "Not deleted. Error deleting messages" -msgstr "No borrado. Error al suprimir mensajes." - -#: ../../operation/messages/message_list.php:112 -#: ../../operation/messages/message_list.php:121 -msgid "You have" -msgstr "Tienes" - -#: ../../operation/messages/message_list.php:112 -msgid "sent message(s)" -msgstr "mensaje(s) enviado(s)" - -#: ../../operation/messages/message_list.php:121 -msgid "unread message(s)" -msgstr "mensaje(s) sin leer" - -#: ../../operation/messages/message_list.php:132 -msgid "There are no messages." -msgstr "No hay mensajes." - -#: ../../operation/messages/message_list.php:182 -msgid "Click to read" -msgstr "Haz clic para leer" - -#: ../../operation/messages/message_list.php:186 -msgid "Mark as unread" -msgstr "Marcar como no leído" - -#: ../../operation/messages/message_list.php:192 -#: ../../operation/messages/message_list.php:196 -msgid "Message unread - click to read" -msgstr "Mensaje sin leer. Haz clic para leerlo." - -#: ../../operation/messages/message_list.php:224 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../operation/netflow/nf_live_view.php:123 -#: ../../operation/netflow/nf_live_view.php:145 -#: ../../operation/netflow/nf_live_view.php:151 -msgid "Netflow live view" -msgstr "Netflow en tiempo real" - -#: ../../operation/netflow/nf_live_view.php:162 -msgid "Error creating filter" -msgstr "Error al crear filtro" - -#: ../../operation/netflow/nf_live_view.php:164 -msgid "Filter created successfully" -msgstr "Filtro creado correctamente" - -#: ../../operation/netflow/nf_live_view.php:183 -msgid "Filter updated successfully" -msgstr "Filtro actualizado correctamente" - -#: ../../operation/netflow/nf_live_view.php:184 -msgid "Error updating filter" -msgstr "Error al actualizar el filtro" - -#: ../../operation/netflow/nf_live_view.php:208 -msgid "Draw live filter" -msgstr "Extraer filtro en directo" - -#: ../../operation/netflow/nf_live_view.php:242 -msgid "Connection" -msgstr "Conexión" - -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../operation/network/network_report.php:102 -#: ../../operation/network/network_usage_map.php:75 -#: ../../enterprise/operation/log/log_viewer.php:493 -msgid "Start date" -msgstr "Fecha de inicio" - -#: ../../operation/netflow/nf_live_view.php:284 -#: ../../operation/network/network_report.php:121 -#: ../../operation/network/network_usage_map.php:94 -msgid "Select this checkbox to write interval instead a date." -msgstr "" -"Seleccione esta casilla para escribir un intervalo en vex de una fecha." - -#: ../../operation/netflow/nf_live_view.php:295 -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:396 -msgid "Select a filter" -msgstr "Selecciona un filtro" - -#: ../../operation/netflow/nf_live_view.php:469 -msgid "IP address resolution" -msgstr "Resolución de dirección IP" - -#: ../../operation/netflow/nf_live_view.php:472 -msgid "Source ip" -msgstr "IP de origen" - -#: ../../operation/netflow/nf_live_view.php:495 -msgid "Draw" -msgstr "Dibujar" - -#: ../../operation/netflow/nf_live_view.php:499 -msgid "Save as new filter" -msgstr "Guardar nuevo filtro" - -#: ../../operation/netflow/nf_live_view.php:500 -msgid "Update current filter" -msgstr "Actualizar filtro actual" - -#: ../../operation/netflow/nf_live_view.php:514 -msgid "No filter selected" -msgstr "No se ha seleccionado ningún filtro" - -#: ../../operation/network/network_report.php:67 -#: ../../operation/network/network_usage_map.php:125 -msgid "Data to show" -msgstr "Datos a mostrar" - -#: ../../operation/network/network_report.php:78 -#: ../../operation/network/network_usage_map.php:104 -msgid "Number of result to show" -msgstr "Número de resultados a mostrar" - -#: ../../operation/network/network_report.php:109 -#: ../../operation/network/network_usage_map.php:82 -msgid "Time Period" -msgstr "Período de tiempo" - -#: ../../operation/network/network_report.php:198 -#: ../../operation/network/network_report.php:246 -msgid "Flows" -msgstr "Flujo" - -#: ../../operation/network/network_report.php:209 -#: ../../operation/network/network_report.php:249 -msgid "Packets" -msgstr "Paquetes" - -#: ../../operation/network/network_report.php:270 -#, php-format -msgid "Filtered by port %s. Click here to remove the filter." -msgstr "Filtrado por puerto %s. Pinche aquí para eliminar el filtro." - -#: ../../operation/network/network_report.php:270 -#, php-format -msgid "Filtered by IP %s. Click here to remove the filter." -msgstr "Filtrado por IP %s. Pinche aquí para eliminar el filtro." - -#: ../../operation/network/network_usage_map.php:140 -msgid "Show netflow map" -msgstr "Mostrar mapa de flujo de red" - -#: ../../operation/network/network_usage_map.php:151 -msgid "Show NTA map" -msgstr "Mostrar mapa NTA" - -#: ../../operation/network/network_usage_map.php:199 -msgid "No data retrieved" -msgstr "No se han obtenido datos" - -#: ../../operation/reporting/custom_reporting.php:28 -#: ../../operation/reporting/graph_viewer.php:388 -msgid "There are no defined reportings" -msgstr "No hay informes definidos" - -#: ../../operation/reporting/graph_viewer.php:227 -msgid "No data." -msgstr "Sin datos" - -#: ../../operation/reporting/graph_viewer.php:261 -#: ../../operation/reporting/graph_viewer.php:283 -msgid "Graph defined" -msgstr "Gráfico definido" - -#: ../../operation/reporting/graph_viewer.php:268 -#: ../../enterprise/dashboard/widgets/custom_graph.php:54 -msgid "Horizontal Bars" -msgstr "Barras horizontales" - -#: ../../operation/reporting/graph_viewer.php:269 -#: ../../enterprise/dashboard/widgets/custom_graph.php:55 -msgid "Vertical Bars" -msgstr "Barras verticales" - -#: ../../operation/reporting/graph_viewer.php:284 -msgid "Zoom x1" -msgstr "Zoom x1" - -#: ../../operation/reporting/graph_viewer.php:285 -msgid "Zoom x2" -msgstr "Ampliación x2" - -#: ../../operation/reporting/graph_viewer.php:286 -msgid "Zoom x3" -msgstr "Zoom x3" - -#: ../../operation/reporting/graph_viewer.php:354 -#: ../../operation/reporting/reporting_viewer.php:334 -msgid "Invalid date selected" -msgstr "Fecha seleccionada no válida" - -#: ../../operation/reporting/graph_viewer.php:362 -msgid "Custom graph viewer" -msgstr "Visor de imágenes personalizadas" - -#: ../../operation/reporting/reporting_viewer.php:159 -msgid "View Report" -msgstr "Ver informe" - -#: ../../operation/reporting/reporting_viewer.php:201 -msgid "Set initial date" -msgstr "Fijar fecha de inicio" - -#: ../../operation/reporting/reporting_viewer.php:229 -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:30 ../../operation/search_alerts.php:24 -#: ../../operation/search_graphs.php:21 ../../operation/search_maps.php:19 -#: ../../operation/search_modules.php:23 ../../operation/search_policies.php:22 -#: ../../operation/search_reports.php:26 ../../operation/search_users.php:23 -msgid "Zero results found" -msgstr "No se encontró ningún resultado" - -#: ../../operation/search_helps.php:19 -msgid "Zero results found." -msgstr "Cero resultados" - -#: ../../operation/search_helps.php:20 -#, php-format -msgid "" -"You can find more help in the wiki" -msgstr "" -"Puede encontrar más ayuda en el wiki" - -#: ../../operation/search_helps.php:33 -msgid "Matches" -msgstr "Coincidencias" - -#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:101 -msgid "Agents found" -msgstr "Agentes encontrados" - #: ../../operation/search_main.php:55 ../../operation/search_main.php:57 #: ../../operation/search_main.php:65 ../../operation/search_main.php:67 #: ../../operation/search_main.php:69 ../../operation/search_main.php:71 @@ -34981,44 +46339,292 @@ msgstr "Mapas encontrados" msgid "Show %s of %s. View all matches" msgstr "Mostrar %s de %s. Ver todas las coincidencias." -#: ../../operation/search_maps.php:29 -#: ../../enterprise/extensions/visual_console_manager.php:312 -#: ../../enterprise/godmode/services/services.elements.php:181 -msgid "Elements" -msgstr "Elementos" +#: ../../operation/reporting/reporting_viewer.php:159 +msgid "View Report" +msgstr "Ver informe" + +#: ../../operation/reporting/reporting_viewer.php:201 +msgid "Set initial date" +msgstr "Fijar fecha de inicio" + +#: ../../operation/reporting/reporting_viewer.php:229 +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:334 +#: ../../operation/reporting/graph_viewer.php:357 +msgid "Invalid date selected" +msgstr "Fecha seleccionada no válida" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:391 +msgid "There are no defined reportings" +msgstr "No hay informes definidos" + +#: ../../operation/reporting/graph_viewer.php:230 +msgid "No data." +msgstr "Sin datos" + +#: ../../operation/reporting/graph_viewer.php:264 +#: ../../operation/reporting/graph_viewer.php:286 +msgid "Graph defined" +msgstr "Gráfico definido" + +#: ../../operation/reporting/graph_viewer.php:278 +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:287 +msgid "Zoom x1" +msgstr "Zoom x1" + +#: ../../operation/reporting/graph_viewer.php:288 +msgid "Zoom x2" +msgstr "Ampliación x2" + +#: ../../operation/reporting/graph_viewer.php:289 +msgid "Zoom x3" +msgstr "Zoom x3" + +#: ../../operation/reporting/graph_viewer.php:365 +msgid "Custom graph viewer" +msgstr "Visor de imágenes personalizadas" + +#: ../../operation/events/event_statistics.php:55 +msgid "Event graph by user" +msgstr "Gráfico de eventos por usuario" + +#: ../../operation/events/events_marquee.php:113 +#, php-format +msgid "%s - Latest events" +msgstr "%s - Últimos eventos" + +#: ../../operation/events/events_list.php:348 +#: ../../operation/events/events_list.php:1085 +msgid "No filter loaded" +msgstr "No se ha cargado el filtro" + +#: ../../operation/events/events_list.php:356 +#: ../../operation/events/events_list.php:1085 +msgid "Filter loaded" +msgstr "Filtro cargado" + +#: ../../operation/events/events_list.php:971 +#: ../../operation/events/events.php:937 +msgid "Group agents" +msgstr "Grupos de agente" + +#: ../../operation/events/events_list.php:999 +#: ../../operation/events/events.php:1127 +msgid "Id source event" +msgstr "Evento de origen de ID" + +#: ../../operation/events/events_list.php:1091 +#: ../../operation/events/events_list.php:1093 +msgid "Event control filter" +msgstr "Filtro de control de eventos" + +#: ../../operation/events/events_list.php:1101 +msgid "Error creating filter." +msgstr "Error al crear el filtro" + +#: ../../operation/events/events_list.php:1105 +msgid "Error creating filter is duplicated." +msgstr "Error al crear el filtro ya que está duplicado" + +#: ../../operation/events/events_list.php:1109 +msgid "Filter created." +msgstr "Filtro creado" + +#: ../../operation/events/events_list.php:1114 +msgid "Filter updated." +msgstr "Filtro actualizado" + +#: ../../operation/events/events_list.php:1118 +msgid "Error updating filter." +msgstr "Error al actualizar el filtro" + +#: ../../operation/events/sound_events.php:60 +msgid "Sound console" +msgstr "Consola sonora" + +#: ../../operation/events/events_rss.php:195 +msgid "Your IP is not into the IP list with API access." +msgstr "Tu IP no se encuentra en el listado de IPs con acceso a la API." + +#: ../../operation/events/events_rss.php:214 +msgid "The URL of your feed has bad hash." +msgstr "La URL de tu feed tiene mal el hash." + +#: ../../operation/events/events.php:697 +msgid "Event viewer" +msgstr "Visor de eventos" + +#: ../../operation/events/events.php:726 +msgid "History event list" +msgstr "Lista histórica de eventos" + +#: ../../operation/events/events.php:730 +msgid "RSS Events" +msgstr "Eventos RSS" + +#: ../../operation/events/events.php:734 +msgid "Marquee display" +msgstr "Mostrar marquesina" + +#: ../../operation/events/events.php:738 +msgid "Export to CSV file" +msgstr "Exportar a un archivo CSV" + +#: ../../operation/events/events.php:742 ../../operation/events/events.php:782 +msgid "Sound events" +msgstr "Eventos sonoros" + +#: ../../operation/events/events.php:787 +msgid "History" +msgstr "Histórico" + +#: ../../operation/events/events.php:849 +msgid "" +"Event viewer is disabled due event replication. For more information, please " +"contact with the administrator" +msgstr "" +"El visor de eventos está desactivado debido a la replicación de eventos. Por " +"favor, contacta con el administrador para obtener más información." + +#: ../../operation/events/events.php:1377 +msgid "Current filter" +msgstr "Filtro actual" + +#: ../../operation/events/events.php:1382 +msgid "Not set." +msgstr "No establecida" + +#: ../../operation/events/events.php:1395 +msgid "Any status." +msgstr "Cualquier estado" + +#: ../../operation/events/events.php:1399 +msgid "New events." +msgstr "Nuevos eventos" + +#: ../../operation/events/events.php:1403 +msgid "Validated." +msgstr "Validado." + +#: ../../operation/events/events.php:1407 +msgid "In proccess." +msgstr "In proceso." + +#: ../../operation/events/events.php:1411 +msgid "Not validated." +msgstr "No validado." + +#: ../../operation/events/events.php:1423 +msgid "Any time." +msgstr "Cualquier hora." + +#: ../../operation/events/events.php:1425 +#: ../../operation/events/events.php:2301 +msgid "Last hour." +msgstr "Última hora." + +#: ../../operation/events/events.php:1427 +#, php-format +msgid "Last %d hours." +msgstr "Últimas %d horas." + +#: ../../operation/events/events.php:1435 +msgid "Duplicated" +msgstr "Duplicado" + +#: ../../operation/events/events.php:1438 +msgid "All events." +msgstr "Todos los eventos." + +#: ../../operation/events/events.php:1442 +msgid "Group agents." +msgstr "Agentes de grupo." + +#: ../../operation/events/events.php:1520 +msgid "In progress selected" +msgstr "Seleccionado en proceso" + +#: ../../operation/events/events.php:1521 +msgid "Validate selected" +msgstr "Validar selección" + +#: ../../operation/events/events.php:1539 +#: ../../operation/events/events.build_table.php:990 +msgid "Execute event response" +msgstr "Ejecutar respuesta de eventos" + +#: ../../operation/events/events.php:1544 +#: ../../operation/events/events.build_table.php:995 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "" +"De puede seleccionar un máximo se %s respuestas personalizadas de eventos" + +#: ../../operation/events/events.php:1549 +#: ../../operation/events/events.build_table.php:1000 +msgid "Please, select an event" +msgstr "Seleccione un evento" + +#: ../../operation/events/events.php:1638 +msgid "has at least" +msgstr "tiene al menos" + +#: ../../operation/events/events.php:1640 +msgid "events" +msgstr "eventos" + +#: ../../operation/events/events.php:1884 +msgid "Validate events" +msgstr "Validar eventos" + +#: ../../operation/events/events.php:1899 +#: ../../operation/events/events.build_table.php:852 +msgid "Change to in progress status" +msgstr "Cambiar a estado en proceso" + +#: ../../operation/events/events.php:1908 +msgid "Delete events" +msgstr "Eliminar eventos" + +#: ../../operation/events/events.php:2303 +msgid "hours." +msgstr "horas." + +#: ../../operation/events/events.build_table.php:81 +msgid "More detail" +msgstr "Más detalles" + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid "The Agent: " +msgstr "El agente: " + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " has " +msgstr " tiene " + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " events." +msgstr " eventos." #: ../../operation/search_policies.php:36 msgid "Id_group" msgstr "Id_group" -#: ../../operation/search_policies.php:49 -#: ../../enterprise/godmode/policies/policies.php:487 -#: ../../enterprise/meta/agentsearch.php:379 -msgid "Policy updated" -msgstr "Política actualizada" - -#: ../../operation/search_policies.php:57 -#: ../../enterprise/godmode/policies/policies.php:495 -#: ../../enterprise/meta/agentsearch.php:387 -msgid "Pending update policy only database" -msgstr "" -"Pendiente de actualizar la política, solo para cambios en base de datos." - -#: ../../operation/search_policies.php:65 -#: ../../enterprise/godmode/policies/policies.php:503 -#: ../../enterprise/meta/agentsearch.php:395 -msgid "Pending update policy" -msgstr "Pendiente actualizar política" - -#: ../../operation/search_results.php:144 -#: ../../enterprise/dashboard/widgets/maps_status.php:32 -msgid "Maps" -msgstr "Mapas" - -#: ../../operation/search_users.php:38 -msgid "Profile" -msgstr "Perfil" - #: ../../operation/servers/recon_view.php:32 #: ../../operation/servers/recon_view.php:38 #: ../../operation/servers/recon_view.php:52 @@ -35033,12823 +46639,1124 @@ msgstr "Tarea recon de red" msgid "has no recon tasks assigned" msgstr "sin tareas recon asignadas" -#: ../../operation/snmpconsole/snmp_browser.php:93 -msgid "Create network components" -msgstr "Crear componentes de red" +#: ../../general/footer.php:54 +#, php-format +msgid "Page generated on %s" +msgstr "Página generada en %s" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "Ayuda de acceso" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "Advertencia de la versión php" + +#: ../../general/first_task/incidents.php:21 +msgid "There are no incidents defined yet." +msgstr "No hay incidentes definidos todavía" + +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 +msgid "Create Incidents" +msgstr "Crear incidentes" + +#: ../../general/first_task/incidents.php:34 +#, php-format +msgid "" +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take " +"place on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any " +"user is able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with " +"comments and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles " +"and work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and " +"files.\n" +"\t\t" +msgstr "" +"A parte recibir y procesar datos para monitorizar sistemas y aplicaciones,\n" +"\t\t\ttambién tiene que monitorizar las posibles incidencias que puedan " +"ocurrir en estos subsistemas en el proceso de monitorización del sistema.\n" +"\t\t\tPara ello, el equipo de %s ha diseñado un gestor de incidencias desde " +"el que cualquier usuario puede crear incidencias\n" +"\t\t\tque explican qué ha sucedido en la red y actualizar su estado a través " +"de comentarios y archivos en cualquier momento, en caso de que sea necesario " +"hacerlo.\n" +"\t\t\tEste sistema permite que los usuarios trabajen como un equipo, junto " +"con diferentes tareas y sistemas de flujo de trabajo que permiten que la " +"incidencia pase\n" +"\t\t\t de un equipo a otro, y los diferentes miembros de los diferentes " +"equipos puedan trabajar sobre la misma incidencia, compartiendo información " +"y archivos.\n" +"\t\t" + +#: ../../general/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." +msgstr "Aún no hay tareas de discovery definidas" + +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" +msgstr "Crear tarea de Discovery" + +#: ../../general/first_task/recon_view.php:28 +msgid "" +"Discovery Task are used to find new elements in the network. \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if " +"that item it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of " +"detection: Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks " +"and their interfaces), and other customized " +"\n" +"\t\ttype. You can define your own customized recon script." +msgstr "" +"Las tareas de Discovery sirven para encontrar nuevos elementos en la red. \n" +"\t\tSi detecta alguno, lo añadirá a la monitorización y si ese elemento ya " +"está siendo monitorizado lo\n" +"\t\tignorará o actualizará la información de este. Hay tres tipos de " +"detección: Basada en ICMP (pings), \n" +"\t\tSNMP (detecta la topología de redes y sus " +"interfaces), y otro personalizado \n" +"\t\t. Puede definir su propio guión de reconocimiento personalizado." + +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "Descubrir" + +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "Aún no se han definido clusters de alta disponibilidad." + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "CLUSTER DE LA BASE DE DATOS DE PANDORA FMS" + +#: ../../general/first_task/HA_cluster_builder.php:48 +msgid "" +"With Pandora FMS Enterprise you can add high availability to your Pandora " +"FMS installation by adding redundant MySQL servers" +msgstr "" +"Con Pandora FMS Enterprise puede añadir la alta disponibilidad a su " +"instalación de Pandora FMS añadiendo servidores MySQL redundantes" + +#: ../../general/first_task/HA_cluster_builder.php:50 +msgid "" +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " +"into a Pandora FMS DB Cluster." +msgstr "" +"Pinche en \"añadir nuevo módulo\" para empezar a convertir su cluster de " +"base de datos de Pandora FMS en un cluster de base de datos de Pandora FMS." + +#: ../../general/first_task/HA_cluster_builder.php:59 +msgid "Add new node" +msgstr "Añadir nuevo nodo" + +#: ../../general/first_task/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 +msgid "Create Visual Console" +msgstr "Crear consola visual" + +#: ../../general/first_task/map_builder.php:37 +#, php-format +msgid "" +"%s allows users to create visual maps on which each user is able to create " +"his or her own monitoring map. The new visual console editor is much more " +"practical, although the prior visual console editor had its advantages. On " +"the new visual console, we've been successful in imitating the sensation and " +"touch of a drawing application like GIMP. We've also simplified the editor " +"by dividing it into several subject-divided tabs named 'Data', 'Preview', " +"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " +"designed to handle are 'static images', 'percentage bars', 'module graphs' " +"and 'simple values'." +msgstr "" +"%s permite a los usuarios crear mapas visuales en los que cada usuario puede " +"crear su propio mapa de monitorización. El nuevo editor de consola visual es " +"mucho más práctico, a pesar de que el editor de consola visual anterior " +"tenía sus ventajas. Hemos conseguido imitar la sensación y el toque de una " +"aplicación de dibujo como GIMP en la nueva consola visual. También hemos " +"simplificado el editor dividiéndolo en diferentes pestañas clasificadas " +"temáticamente llamadas \"Datos\", \"Vista previa\", \"Asistente\", \"Lista " +"de elementos\" y \"Editor\". Los elementos para los que el mapa visual de %s " +"fue diseñado son las \"imágenes estáticas\", las \"barras de porcentajes\" y " +"los \"valores simples\"." + +#: ../../general/first_task/cluster_builder.php:30 +msgid "There are no clusters defined yet." +msgstr "No hay clústers definidos todavía" + +#: ../../general/first_task/cluster_builder.php:38 +#: ../../general/first_task/cluster_builder.php:56 +msgid "Create Cluster" +msgstr "Crear clúster" + +#: ../../general/first_task/cluster_builder.php:41 +msgid "" +"A cluster is a group of devices that provide the same service in high " +"availability." +msgstr "" +"Un clúster es un grupo de servicios que proporciona el mismo servicio en " +"alta disponibilidad" + +#: ../../general/first_task/cluster_builder.php:43 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "Dependiendo de cómo proporcionen ese servicio, hay dos tipos:" + +#: ../../general/first_task/cluster_builder.php:45 +msgid "" +"Clusters to balance the service load: these are active - active " +"(A/A) mode clusters. It means that all the nodes (or machines that compose " +"it) are working. They must be working because if one stops working, it will " +"overload the others." +msgstr "" +"Clústers para equilibrar la carga del servicio: son clústers de modo " +"activo-activo(A/A), por lo tanto todos los nodos (o máquinas que lo " +"componen) están funcionando. Tienen que estar todos en funcionamiento porque " +"si uno se detiene, sobrecargará a los demás." + +#: ../../general/first_task/cluster_builder.php:47 +msgid "" +"Clusters to guarantee service: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the " +"cluster) will be running (primary) and another won't (secondary). When the " +"primary goes down, the secondary must take over and give the service " +"instead. Although many of the elements of this cluster are active-passive, " +"it will also have active elements in both of them that indicate that the " +"passive node is \"online\", so that in the case of a service failure in the " +"master, the active node collects this information." +msgstr "" +"Clústers para garantizar el servicio: son clústers de modo activo-" +"pasivo (A/P). Quiere decir que uno de los nodos (o máquinas que componen el " +"clúster) estará en funcionamiento (primario) y el otro no (secundario). " +"Cuando uno primario se detiene, el secundario lo releva y proporciona el " +"servicio en su lugar. Aunque muchos de los elementos de este clúster son " +"activo-pasivo, también tendrá elementos activos en los dos que indican que " +"el nodo pasivo se encuentra \"en línea\", para que en caso de fallo del " +"sistema en el maestro, sea el nodo activo el que recoja esta información." + +#: ../../general/first_task/network_map.php:19 +msgid "There are no network map defined yet." +msgstr "No hay mapas de red definidos todavía" + +#: ../../general/first_task/network_map.php:26 +msgid "Network Map" +msgstr "Mapa de red" + +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 +msgid "Create Network Map" +msgstr "Crear mapa de red" + +#: ../../general/first_task/network_map.php:32 +msgid "" +"There is also an open-source version of the network map. \n" +"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " +"and relationships, agents, modules and groups available to the user. \n" +"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" +"\t\t\t" +msgstr "" +"Existe también una versión de código abierto del mapa de red. \n" +"\t\t\t\t\t\t\t\tEsta funcionalidad permite visualizar gráficamente los nodos " +"y sus relaciones, agentes, módulos y grupos disponibles para el usuario. \n" +"\t\t\t\t\t\t\t\tHay tres tipos de mapas de red:\n" +"\t\t\t" + +#: ../../general/first_task/network_map.php:37 +msgid "Topology Map" +msgstr "Mapa de topología" + +#: ../../general/first_task/network_map.php:38 +msgid "Group Map" +msgstr "Mapa de grupo" + +#: ../../general/first_task/network_map.php:39 +msgid "Radial Map (User without strict user)" +msgstr "Mapa radial (sin usuario estricto)" + +#: ../../general/first_task/network_map.php:40 +msgid "Dinamic Map" +msgstr "Mapa dinámico" + +#: ../../general/first_task/network_map.php:41 +msgid "Policy Map (Only Enterprise version)" +msgstr "Mapa de políticas (solo versión Enterprise)" -#: ../../operation/snmpconsole/snmp_browser.php:107 -msgid "Error creating the following modules:" -msgstr "Error al crear los siguientes módulos:" +#: ../../general/first_task/tags.php:18 +msgid "There are no tags defined yet." +msgstr "No hay etiquetas definidas todavía" -#: ../../operation/snmpconsole/snmp_browser.php:117 -msgid "Modules successfully created" -msgstr "Módulos creados correctamente" +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 +msgid "Create Tags" +msgstr "Crear etiquetas" -#: ../../operation/snmpconsole/snmp_browser.php:192 -msgid "SNMP Browser" -msgstr "Navegador SNMP" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:70 -msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend " -"on other MIB. To customize trap definitions use the SNMP trap editor." -msgstr "" -"Los archivos MIB se instalarán en el sistema. Por favor, ten en cuenta que " -"un MIB puede depender de otro MIB. Para personalizar las definiciones de " -"trap, se debe usar el editor de trap SNMP." - -#: ../../operation/snmpconsole/snmp_statistics.php:118 -#: ../../operation/snmpconsole/snmp_view.php:688 -msgid "There are no SNMP traps in database" -msgstr "No hay ningún trap SNMP definido" - -#: ../../operation/snmpconsole/snmp_statistics.php:131 -msgid "Traps received by source" -msgstr "Traps recibidos por el origen" - -#: ../../operation/snmpconsole/snmp_statistics.php:145 -#: ../../operation/snmpconsole/snmp_statistics.php:213 -msgid "Number" -msgstr "Número" - -#: ../../operation/snmpconsole/snmp_statistics.php:159 -#: ../../operation/snmpconsole/snmp_view.php:907 -msgid "View agent details" -msgstr "Ver detalles del agente" - -#: ../../operation/snmpconsole/snmp_statistics.php:199 -msgid "Traps received by Enterprise String" -msgstr "Traps recibidos por cadena Enterprise" - -#: ../../operation/snmpconsole/snmp_statistics.php:212 -msgid "Trap Enterprise String" -msgstr "Traps Enterprise de cadena" - -#: ../../operation/snmpconsole/snmp_view.php:578 -msgid "" -"Search by any alphanumeric field in the trap.\n" -"\t\tREMEMBER trap sources need to be searched by IP Address" -msgstr "" -"Búsqueda según campos alfanuméricos en el trap.\n" -"\t \tRECUERDA que las fuentes de trap tienen que buscarse según una " -"dirección IP." - -#: ../../operation/snmpconsole/snmp_view.php:592 -msgid "From (Date)" -msgstr "Desde (fecha)" - -#: ../../operation/snmpconsole/snmp_view.php:594 -msgid "To (Date)" -msgstr "Hasta (fecha)" - -#: ../../operation/snmpconsole/snmp_view.php:597 -msgid "From (Time)" -msgstr "Desde (hora)" - -#: ../../operation/snmpconsole/snmp_view.php:599 -msgid "To (Time)" -msgstr "Hasta (hora)" - -#: ../../operation/snmpconsole/snmp_view.php:603 -msgid "Search by trap type" -msgstr "Búsqueda por tipo de trap" - -#: ../../operation/snmpconsole/snmp_view.php:627 -msgid "Group by Enterprise String/IP" -msgstr "Agrupado por cadena Enterprise/IP" - -#: ../../operation/snmpconsole/snmp_view.php:686 -msgid "There are no SNMP traps in database that contains this filter" -msgstr "No hay traps SNMP en la base de datos que contengan este filtro" - -#: ../../operation/snmpconsole/snmp_view.php:705 -#: ../../enterprise/include/functions_dashboard.php:776 -msgid "Exit fullscreen" -msgstr "Salir de pantalla completa" - -#: ../../operation/snmpconsole/snmp_view.php:719 -#: ../../enterprise/include/functions_dashboard.php:1055 -msgid "Refresh every" -msgstr "Actualizar cada" - -#: ../../operation/snmpconsole/snmp_view.php:731 -msgid "SNMP Traps" -msgstr "Traps SNMP" - -#: ../../operation/snmpconsole/snmp_view.php:816 -msgid "Trap subtype" -msgstr "Subtipo trap" - -#: ../../operation/snmpconsole/snmp_view.php:999 -msgid "Variable bindings:" -msgstr "Enlaces variables" - -#: ../../operation/snmpconsole/snmp_view.php:1005 -msgid "See more details" -msgstr "Ver más detalles" - -#: ../../operation/snmpconsole/snmp_view.php:1017 -msgid "Enterprise String:" -msgstr "Cadena Enterprise:" - -#: ../../operation/snmpconsole/snmp_view.php:1023 -#: ../../enterprise/godmode/agentes/collections.data.php:442 -#: ../../enterprise/meta/advanced/collections.data.php:395 -#: ../../enterprise/meta/include/functions_autoprovision.php:543 -msgid "Description:" -msgstr "Descripción:" - -#: ../../operation/snmpconsole/snmp_view.php:1069 -msgid "Trap type:" -msgstr "Tipo trap:" - -#: ../../operation/snmpconsole/snmp_view.php:1095 -msgid "Count:" -msgstr "Contar:" - -#: ../../operation/snmpconsole/snmp_view.php:1099 -msgid "First trap:" -msgstr "Primer trap:" - -#: ../../operation/snmpconsole/snmp_view.php:1103 -msgid "Last trap:" -msgstr "Último trap:" - -#: ../../operation/snmpconsole/snmp_view.php:1124 -msgid "No matching traps found" -msgstr "No se encontraron traps coincidentes." - -#: ../../operation/tree.php:103 -#, php-format -msgid "Sort the agents by %s" -msgstr "Ordenar los agentes por %s" - -#: ../../operation/tree.php:106 -msgid "tags" -msgstr "Etiquetas" - -#: ../../operation/tree.php:114 -msgid "groups" -msgstr "Grupos" - -#: ../../operation/tree.php:118 -msgid "module groups" -msgstr "Grupos de módulos" - -#: ../../operation/tree.php:127 -msgid "policies" -msgstr "Políticas" - -#: ../../operation/tree.php:166 -msgid "Search group" -msgstr "Buscar grupo" - -#: ../../operation/tree.php:170 ../../operation/tree.php:213 -msgid "Show not init modules" -msgstr "Mostrar módulos no iniciados" - -#: ../../operation/tree.php:179 -msgid "Search agent" -msgstr "Buscar agente" - -#: ../../operation/tree.php:182 -msgid "Show not init agents" -msgstr "Mostrar agentes no iniciados" - -#: ../../operation/tree.php:185 -msgid "Show full hirearchy" -msgstr "Mostrar jerarquía completa" - -#: ../../operation/tree.php:188 -#: ../../enterprise/godmode/servers/HA_cluster.php:124 -msgid "Agent status" -msgstr "Estado de agente" - -#: ../../operation/tree.php:210 -msgid "Search module" -msgstr "Buscar módulo" - -#: ../../operation/tree.php:242 -msgid "Tree search" -msgstr "Búsqueda de árbol" - -#: ../../operation/users/user_edit.php:165 -msgid "" -"Passwords didn't match or other problem encountered while updating passwords" -msgstr "" -"Las contraseñas no coincidían o se encontró otro problema al actualizar las " -"contraseñas." - -#: ../../operation/users/user_edit.php:178 -#: ../../operation/users/user_edit.php:193 -msgid "Password successfully updated" -msgstr "Contraseña actualizada correctamente" - -#: ../../operation/users/user_edit.php:188 -#: ../../operation/users/user_edit.php:234 -msgid "Error updating user info" -msgstr "Error al actualizar la información del usuario" - -#: ../../operation/users/user_edit.php:196 -msgid "No changes have been made" -msgstr "No se han hecho cambios" - -#: ../../operation/users/user_edit.php:207 -msgid "Please enter a valid email" -msgstr "Añada una dirección de correo electrónico válida" - -#: ../../operation/users/user_edit.php:209 -msgid "Please enter a valid phone number" -msgstr "Añada un número de teléfono valido" - -#: ../../operation/users/user_edit.php:215 -msgid "Error updating passwords: " -msgstr "Error al actualizar contraseñas: " - -#: ../../operation/users/user_edit.php:239 -msgid "Edit my User" -msgstr "Editar mi usuario" - -#: ../../operation/users/user_edit.php:282 -#: ../../enterprise/include/process_reset_pass.php:95 -#: ../../enterprise/meta/include/process_reset_pass.php:94 -msgid "New Password" -msgstr "Contraseña nueva" - -#: ../../operation/users/user_edit.php:285 -msgid "" -"You cannot change your password under the current authentication scheme" -msgstr "" -"No puede cambiar la contraseña con la configuración actual de autenticación" - -#: ../../operation/users/user_edit.php:299 -msgid "If checkbox is clicked then block size global configuration is used" -msgstr "" -"Si se marca la casilla, se usará el tamaño de bloque de la configuración " -"global." - -#: ../../operation/users/user_edit.php:409 -msgid "Show information" -msgstr "Mostrar información" - -#: ../../operation/users/user_edit.php:417 -msgid "Event filter" -msgstr "Filtro de eventos" - -#: ../../operation/users/user_edit.php:430 -msgid "Newsletter Subscribed" -msgstr "Suscrito a la newsletter" - -#: ../../operation/users/user_edit.php:432 -#, php-format -msgid "Already subscribed to %s newsletter" -msgstr "Ya está suscrito a la newsletter de %s" - -#: ../../operation/users/user_edit.php:435 -msgid "Newsletter Reminder" -msgstr "Recordatorio de la newsletter" - -#: ../../operation/users/user_edit.php:508 -msgid "Autorefresh" -msgstr "Actualización automática" - -#: ../../operation/users/user_edit.php:509 -msgid "This will activate autorefresh in selected pages" -msgstr "" -"Esto activará la actualización automática en las páginas seleccionadas." - -#: ../../operation/users/user_edit.php:544 -msgid "Full list of pages" -msgstr "Lista completa de páginas" - -#: ../../operation/users/user_edit.php:553 -#: ../../operation/users/user_edit.php:554 -msgid "Push selected pages into autorefresh list" -msgstr "" -"Añadir las páginas seleccionadas a la lista de actualización automática" - -#: ../../operation/users/user_edit.php:562 -#: ../../operation/users/user_edit.php:563 -msgid "Pop selected pages out of autorefresh list" -msgstr "" -"Quitar las páginas seleccionadas de la lista de actualización automática" - -#: ../../operation/users/user_edit.php:568 -msgid "List of pages with autorefresh" -msgstr "Lista de páginas con actualización automática" - -#: ../../operation/users/user_edit.php:577 -msgid "Time autorefresh" -msgstr "Tiempo de actualización automática" - -#: ../../operation/users/user_edit.php:579 -msgid "" -"Interval of autorefresh of the elements, by default they are 30 seconds, " -"needing to enable the autorefresh first" -msgstr "" -"Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero " -"debe habilitar primero el auto refresco." - -#: ../../operation/users/user_edit.php:673 -msgid "eHorus user configuration" -msgstr "Configuración de usuario eHorus" - -#: ../../operation/users/user_edit.php:716 -msgid "" -"You can not change your user info under the current authentication scheme" -msgstr "" -"No puede cambiar la información de usuario con la configuración actual de " -"autenticación" - -#: ../../operation/users/user_edit.php:791 -msgid "This user doesn't have any assigned profile/group." -msgstr "Este usuario no tiene asignado ningún perfil/grupo" - -#: ../../operation/users/user_edit.php:995 -msgid "Double autentication information" -msgstr "Información sobre la doble autentificación" - -#: ../../operation/users/user_edit.php:1058 -#: ../../operation/users/user_edit.php:1134 -msgid "Double autentication activation" -msgstr "Activación de la doble autentificación" - -#: ../../operation/users/user_edit.php:1084 -msgid "The double authentication will be deactivated" -msgstr "La doble autentificación se desactivará" - -#: ../../operation/users/user_edit.php:1085 -msgid "Deactivate" -msgstr "Desactivado" - -#: ../../operation/users/user_edit.php:1117 -msgid "The double autentication was deactivated successfully" -msgstr "La doble autentificación fue desactivada correctamente" - -#: ../../operation/users/user_edit.php:1120 -#: ../../operation/users/user_edit.php:1124 -msgid "There was an error deactivating the double autentication" -msgstr "Error al desactivar la doble autentificación" - -#: ../../operation/users/user_edit_header.php:98 -msgid "User notifications" -msgstr "Notifivaciones de usuario" - -#: ../../operation/users/user_edit_notifications.php:64 -msgid "Also receive an email" -msgstr "Recibir también un correo electrónico" - -#: ../../operation/users/webchat.php:73 -msgid "Webchat" -msgstr "Chat de la web" - -#: ../../operation/users/webchat.php:84 -msgid "Users Online" -msgstr "Usuarios en línea" - -#: ../../operation/users/webchat.php:174 -msgid "Connection established - Retrieving messages since " -msgstr "Conexión establecida - Obteniendo mensajes desde " - -#: ../../operation/users/webchat.php:185 -msgid "Error in connection." -msgstr "Error de conexión" - -#: ../../operation/users/webchat.php:266 -msgid "Error sendding message." -msgstr "Error al enviar mensaje" - -#: ../../operation/users/webchat.php:294 -msgid "Error login." -msgstr "Error de inicio de sesión" - -#: ../../operation/visual_console/legacy_public_view.php:147 -#: ../../operation/visual_console/public_view.php:129 -msgid "QR code of the page" -msgstr "Código QR de la página" - -#: ../../operation/visual_console/legacy_public_view.php:176 -#: ../../operation/visual_console/legacy_view.php:282 -msgid "Until refresh" -msgstr "Hasta la actualización" - -#: ../../operation/visual_console/view.php:162 -msgid "Move and resize mode" -msgstr "Modo de mover y cambiar tamaño" - -#: ../../enterprise/dashboard/dashboards.php:45 -#: ../../enterprise/mobile/operation/home.php:42 -msgid "Dashboards" -msgstr "Dashboards" - -#: ../../enterprise/dashboard/dashboards.php:86 -msgid "Successfully duplicate" -msgstr "Duplicado correctamente" - -#: ../../enterprise/dashboard/dashboards.php:87 -msgid "Could not be duplicate" -msgstr "No se pudo duplicar" - -#: ../../enterprise/dashboard/dashboards.php:113 -#: ../../enterprise/dashboard/main_dashboard.php:291 -#: ../../enterprise/dashboard/main_dashboard.php:308 -msgid "Cells" -msgstr "Celdas" - -#: ../../enterprise/dashboard/dashboards.php:142 -msgid "There are no dashboards defined." -msgstr "No hay dashboards definidos" - -#: ../../enterprise/dashboard/dashboards.php:159 -#, php-format -msgid "Private for (%s)" -msgstr "Privado por (%s)" - -#: ../../enterprise/dashboard/dashboards.php:202 -msgid "New dashboard" -msgstr "Nuevo dashboard" - -#: ../../enterprise/dashboard/full_dashboard.php:49 -#: ../../enterprise/dashboard/public_dashboard.php:67 -msgid "No slides selected" -msgstr "No se han seleccionado diapositivas" - -#: ../../enterprise/dashboard/main_dashboard.php:151 -msgid "Show link to public dashboard" -msgstr "Mostrar el enlace al dashboard público" - -#: ../../enterprise/dashboard/main_dashboard.php:167 -msgid "Back to dashboards list" -msgstr "Volver a la lista de dashboards" - -#: ../../enterprise/dashboard/main_dashboard.php:173 -msgid "Save the actual layout design" -msgstr "Guardar el diseño actual" - -#: ../../enterprise/dashboard/main_dashboard.php:181 -#: ../../enterprise/include/functions_dashboard.php:1065 -msgid "Slides mode" -msgstr "Modo diapositivas" - -#: ../../enterprise/dashboard/main_dashboard.php:360 -msgid "Items slideshow" -msgstr "Elementos en diapositiva" - -#: ../../enterprise/dashboard/main_dashboard.php:369 -msgid "" -"If enabled, all items of this dashboard will be shown individually into " -"fullscreen mode" -msgstr "" -"Si está activado, todos los elementos de este dashboard se mostrarán " -"individualmente en pantalla completa." - -#: ../../enterprise/dashboard/main_dashboard.php:406 -msgid "Private dashboard" -msgstr "Dashboard privado" - -#: ../../enterprise/dashboard/main_dashboard.php:421 -msgid "Error: there are cells not empty." -msgstr "Error: las celdas no pueden estar vacías" - -#: ../../enterprise/dashboard/main_dashboard.php:423 -msgid "Error save conf dashboard" -msgstr "Fallo al guardar la configuración del dashboard" - -#: ../../enterprise/dashboard/main_dashboard.php:501 -msgid "Add widget" -msgstr "Agregar widget" - -#: ../../enterprise/dashboard/main_dashboard.php:508 -msgid "Add new widget" -msgstr "Añadir nuevo widget" - -#: ../../enterprise/dashboard/main_dashboard.php:510 -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, estás intentando añadir un widget en una celda vacía. Por favor, " -"guarda el diseño antes de añadir cualquier control en esta celda." - -#: ../../enterprise/dashboard/main_dashboard.php:514 -msgid "There are unsaved changes" -msgstr "Hay cambios sin guardar" - -#: ../../enterprise/dashboard/main_dashboard.php:591 -#: ../../enterprise/include/functions_dashboard.php:1185 -msgid "Slides" -msgstr "Diapositivas" - -#: ../../enterprise/dashboard/widget.php:115 -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:379 -msgid "Configure widget" -msgstr "Configurar widget" - -#: ../../enterprise/dashboard/widget.php:391 -msgid "Delete widget" -msgstr "Eliminar widget" - -#: ../../enterprise/dashboard/widget.php:442 -msgid "Config widget" -msgstr "Configurar el widget" - -#: ../../enterprise/dashboard/widget.php:453 -#: ../../enterprise/dashboard/widgets/agent_module.php:522 -msgid "Please configure this widget before usage" -msgstr "Por favor, configura este widget antes de usarlo." - -#: ../../enterprise/dashboard/widget.php:455 -msgid "Widget cannot be loaded" -msgstr "El widget no se puede cargar." - -#: ../../enterprise/dashboard/widget.php:456 -msgid "Please, configure the widget again to recover it" -msgstr "Por favor, configura el widget otra vez para recuperarlo." - -#: ../../enterprise/dashboard/widget.php:634 -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:44 -#: ../../enterprise/dashboard/widgets/agent_module.php:576 -msgid "Agent/Module View" -msgstr "Vista de Agente/Módulo" - -#: ../../enterprise/dashboard/widgets/agent_module.php:539 -#: ../../enterprise/dashboard/widgets/custom_graph.php:109 -#: ../../enterprise/dashboard/widgets/events_list.php:143 -#: ../../enterprise/dashboard/widgets/groups_status.php:60 -#: ../../enterprise/dashboard/widgets/groups_status.php:66 -#: ../../enterprise/dashboard/widgets/module_icon.php:157 -#: ../../enterprise/dashboard/widgets/module_icon.php:164 -#: ../../enterprise/dashboard/widgets/module_status.php:135 -#: ../../enterprise/dashboard/widgets/module_status.php:142 -#: ../../enterprise/dashboard/widgets/module_table_value.php:129 -#: ../../enterprise/dashboard/widgets/module_table_value.php:137 -#: ../../enterprise/dashboard/widgets/module_value.php:129 -#: ../../enterprise/dashboard/widgets/module_value.php:136 -#: ../../enterprise/dashboard/widgets/single_graph.php:111 -#: ../../enterprise/dashboard/widgets/single_graph.php:117 -#: ../../enterprise/dashboard/widgets/sla_percent.php:128 -#: ../../enterprise/dashboard/widgets/sla_percent.php:135 -msgid "You don't have access" -msgstr "No tienes acceso" - -#: ../../enterprise/dashboard/widgets/wux_transaction.php:29 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:138 -msgid "Agent WUX transaction" -msgstr "Transacción de agente WUX" - -#: ../../enterprise/dashboard/widgets/wux_transaction.php:83 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:90 -msgid "Wux transaction" -msgstr "Transacción WUX" - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:26 -#: ../../enterprise/dashboard/widgets/alerts_fired.php:96 -msgid "Triggered alerts report" -msgstr "Informe de alertas disparadas" - -#: ../../enterprise/dashboard/widgets/clock.php:33 -msgid "Clock type" -msgstr "Tipo de reloj" - -#: ../../enterprise/dashboard/widgets/clock.php:37 -msgid "Analogic" -msgstr "Analógico" - -#: ../../enterprise/dashboard/widgets/clock.php:38 -msgid "Digital" -msgstr "Digital" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:25 -#: ../../enterprise/dashboard/widgets/custom_graph.php:259 -msgid "Defined custom graph" -msgstr "Gráfica personalizada definida" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:60 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:207 -msgid "Stacked" -msgstr "Apilado" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:223 -msgid "" -"Could not draw pie with labels contained inside canvas. Resize widget to " -"500px width minimum" -msgstr "" -"No se pudo dibujar el gráfico circular con las etiquetas que contiene el " -"canvas. Redimensionar el widget a un ancho mínimo de 500px." - -#: ../../enterprise/dashboard/widgets/events_list.php:28 -#: ../../enterprise/dashboard/widgets/events_list.php:262 -msgid "List of latest events" -msgstr "Lista de últimos eventos" - -#: ../../enterprise/dashboard/widgets/events_list.php:46 -msgid "Limit" -msgstr "Límite" - -#: ../../enterprise/dashboard/widgets/events_list.php:66 -msgid "Only pending" -msgstr "Solo pendientes" - -#: ../../enterprise/dashboard/widgets/events_list.php:128 -#: ../../enterprise/dashboard/widgets/events_list.php:135 -msgid "You must select some group" -msgstr "Seleccione un grupo" - -#: ../../enterprise/dashboard/widgets/example.php:26 -#: ../../enterprise/dashboard/widgets/example.php:46 -#, php-format -msgid "Welcome message to %s" -msgstr "Mensaje de bienvenida a %s" - -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"This is an example of a dashboard widget. A widget may contain elements" -msgstr "" -"Este es un ejemplo de un widget del dashboard. Un widget puede contener " -"elementos." - -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." -msgstr "" -"Para añadir más elementos, haz clic en \"Add widgets\" en la parte " -"superior de esta página." - -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"To delete this message, click on the delete button on top right corner of " -"this element." -msgstr "" -"Para eliminar este mensaje, haz clic sobre el botón de la esquina derecha de " -"este elemento." - -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"Para hacer eso, haz clic en el título, arrastra y suelta el elemento en el " -"lugar deseado." - -#: ../../enterprise/dashboard/widgets/example.php:40 -#, php-format -msgid "Thanks for using %s." -msgstr "Gracias por usar %s." - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:32 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:178 -msgid "Module histogram" -msgstr "Histograma de módulo" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:81 -#: ../../enterprise/dashboard/widgets/sla_percent.php:80 -msgid "2 Hours" -msgstr "2 horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:82 -#: ../../enterprise/dashboard/widgets/sla_percent.php:81 -msgid "12 Hours" -msgstr "12 horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:83 -#: ../../enterprise/dashboard/widgets/sla_percent.php:82 -msgid "24 Hours" -msgstr "24 horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:84 -#: ../../enterprise/dashboard/widgets/sla_percent.php:83 -msgid "48 Hours" -msgstr "48 horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:95 -#: ../../enterprise/dashboard/widgets/module_icon.php:121 -#: ../../enterprise/dashboard/widgets/module_status.php:101 -#: ../../enterprise/dashboard/widgets/module_value.php:102 -#: ../../enterprise/dashboard/widgets/sla_percent.php:101 -msgid "Text size of label in px" -msgstr "Tamaño de texto de la etiqueta en píxels" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:28 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:259 -msgid "Top N events by module" -msgstr "N primeros eventos por módulo" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:33 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:33 -msgid "Amount to show" -msgstr "Cantidad a mostrar" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:58 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:58 -msgid "Legend Position" -msgstr "Posición de la leyenda" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:63 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:63 -msgid "No legend" -msgstr "Sin leyenda" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:89 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:88 -msgid "Please select one or more groups." -msgstr "Por favor, selecciona uno o más grupos" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:152 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:149 -msgid "There is not data to show." -msgstr "No hay datos que mostrar." - -#: ../../enterprise/dashboard/widgets/groups_status.php:26 -#: ../../enterprise/dashboard/widgets/groups_status.php:209 -msgid "General group status" -msgstr "Estado general de grupo" - -#: ../../enterprise/dashboard/widgets/groups_status.php:96 -#: ../../enterprise/dashboard/widgets/groups_status.php:156 -msgid "Total nº:" -msgstr "Número total:" - -#: ../../enterprise/dashboard/widgets/groups_status.php:198 -msgid "Not agents in this group" -msgstr "No hay agentes en este grupo" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:38 -msgid "WARNING: " -msgstr "ADVERTENCIA: " - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:38 -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 la consola visual es más grande que el tamaño del widget, no cabrá en el " -"widget. En su lugar, se dibujarán barras de desplazamiento vertical y " -"horizontal. Si quieres \"encajar\" una consola visual en un widget, créalo " -"con el tamaño real para que entre dentro del widget." - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:43 -msgid "Layout" -msgstr "Diseño" - -#: ../../enterprise/dashboard/widgets/tree_view.php:48 -msgid "Tab" -msgstr "Pestaña" - -#: ../../enterprise/dashboard/widgets/tree_view.php:61 -msgid "Open all groups" -msgstr "Abrir todos los grupos" - -#: ../../enterprise/dashboard/widgets/tree_view.php:76 -msgid "Agents status" -msgstr "Estado de agente" - -#: ../../enterprise/dashboard/widgets/tree_view.php:94 -msgid "Modules status" -msgstr "Estado de módulos" - -#: ../../enterprise/dashboard/widgets/tree_view.php:98 -#: ../../enterprise/dashboard/widgets/top_n.php:363 -msgid "Filter modules" -msgstr "Filtrar módulos" - -#: ../../enterprise/dashboard/widgets/tree_view.php:109 -#, php-format -msgid "" -"The user doesn't have permission to read agents. Please contact with your %s " -"administrator." -msgstr "" -"El usuario no tiene permisos para leer agentes. Póngase en contacto con su " -"administrador de %s." - -#: ../../enterprise/dashboard/widgets/tree_view.php:118 -msgid "This widget only working in desktop version." -msgstr "El widget solo funciona en la versión de escritorio." - -#: ../../enterprise/dashboard/widgets/maps_status.php:27 -#: ../../enterprise/dashboard/widgets/maps_status.php:102 -msgid "General visual maps report" -msgstr "Informe de mapas visuales general" - -#: ../../enterprise/dashboard/widgets/module_icon.php:30 -#: ../../enterprise/dashboard/widgets/module_icon.php:216 -msgid "Icon and module value" -msgstr "Valor de módulo e icono" - -#: ../../enterprise/dashboard/widgets/module_icon.php:114 -#: ../../enterprise/dashboard/widgets/module_table_value.php:87 -#: ../../enterprise/dashboard/widgets/module_value.php:95 -#: ../../enterprise/dashboard/widgets/sla_percent.php:94 -msgid "Text size of value in px" -msgstr "Tamaño de texto del valor en píxels" - -#: ../../enterprise/dashboard/widgets/module_icon.php:128 -#: ../../enterprise/dashboard/widgets/module_status.php:108 -msgid "Size of icon" -msgstr "Tamaño del icono" - -#: ../../enterprise/dashboard/widgets/url.php:31 -msgid "Only embebed urls can be shown, be sure that the url is embebed." -msgstr "" -"Solo se pueden mostrar las URLs incrustadas. Asegúrate de que la URL está " -"incrustada." - -#: ../../enterprise/dashboard/widgets/url.php:31 -msgid "For example: " -msgstr "Por ejemplo: " - -#: ../../enterprise/dashboard/widgets/url.php:31 -msgid " must be " -msgstr " debe ser " - -#: ../../enterprise/dashboard/widgets/url.php:34 -#: ../../enterprise/dashboard/widgets/url.php:85 -msgid "URL content" -msgstr "Contenido de la URL" - -#: ../../enterprise/dashboard/widgets/url.php:62 -#: ../../enterprise/dashboard/widgets/post.php:38 -#: ../../enterprise/dashboard/widgets/tactical.php:74 -#: ../../enterprise/dashboard/widgets/tactical.php:82 -msgid "Please, configure this widget before use" -msgstr "Por favor, configura este widget antes de usarlo." - -#: ../../enterprise/dashboard/widgets/module_table_value.php:30 -msgid "Show module value in a table" -msgstr "Mostrar el valor del módulo en una tabla" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:94 -msgid "Separator of data" -msgstr "Separador" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:98 -msgid "Carriage Return" -msgstr "Retorno de carro" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:99 -msgid "Vertical Bar" -msgstr "Barra vertical" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:100 -msgid "Semicolon" -msgstr "Punto y coma" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:101 -msgid "Colon" -msgstr "Dos puntos" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:102 -msgid "Commas" -msgstr "Comas" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:103 -msgid "Blank" -msgstr "Blanco" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:163 -msgid "Module in a table" -msgstr "Módulo en una tabla" - -#: ../../enterprise/dashboard/widgets/module_value.php:30 -#: ../../enterprise/dashboard/widgets/module_value.php:184 -msgid "Module value" -msgstr "Valor del módulo" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:23 -#: ../../enterprise/dashboard/widgets/monitor_health.php:102 -msgid "Global health info" -msgstr "Información del estado global" - -#: ../../enterprise/dashboard/widgets/network_map.php:48 -msgid "X offset" -msgstr "Desplazamiento en X" - -#: ../../enterprise/dashboard/widgets/network_map.php:52 -msgid "Introduce x-axis data. Right=positive Left=negative" -msgstr "" -"Introducir datos en el eje X. Derecha = positivo / Izquierda = negativo." - -#: ../../enterprise/dashboard/widgets/network_map.php:57 -msgid "Y offset" -msgstr "Desplazamiento en Y" - -#: ../../enterprise/dashboard/widgets/network_map.php:61 -msgid "Introduce Y-axis data. Top=positive Bottom=negative" -msgstr "Introducir datos en el eje Y. Arriba = positivo / Abajo = negativo" - -#: ../../enterprise/dashboard/widgets/network_map.php:67 -msgid "Zoom level" -msgstr "Nivel de zoom" - -#: ../../enterprise/dashboard/widgets/post.php:26 -#: ../../enterprise/dashboard/widgets/post.php:126 -msgid "Panel with a message" -msgstr "Panel con un mensaje" - -#: ../../enterprise/dashboard/widgets/reports.php:29 -#: ../../enterprise/dashboard/widgets/reports.php:164 -msgid "Custom report" -msgstr "Informe personalizado" - -#: ../../enterprise/dashboard/widgets/service_map.php:23 -#: ../../enterprise/operation/services/services.service.php:116 -#: ../../enterprise/operation/services/services.service_map.php:140 -msgid "Service Map" -msgstr "Mapa de servicio" - -#: ../../enterprise/dashboard/widgets/service_map.php:73 -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:78 -msgid "Missing id" -msgstr "Identificador perdido" - -#: ../../enterprise/dashboard/widgets/service_map.php:129 -#: ../../enterprise/godmode/services/services.elements.php:173 -#: ../../enterprise/godmode/services/services.service.php:336 -#: ../../enterprise/operation/services/services.service.php:108 -#: ../../enterprise/operation/services/services.service_map.php:131 -msgid "Service map" -msgstr "Mapa del servicio" - -#: ../../enterprise/dashboard/widgets/single_graph.php:31 -#: ../../enterprise/dashboard/widgets/single_graph.php:165 -msgid "Agent module graph" -msgstr "Gráfica de módulo de agente" - -#: ../../enterprise/dashboard/widgets/single_graph.php:80 -msgid "Show full legend" -msgstr "Mostrar leyenda completa" - -#: ../../enterprise/dashboard/widgets/single_graph.php:86 -msgid "Graph colour" -msgstr "Color de gráfica" - -#: ../../enterprise/dashboard/widgets/sla_percent.php:31 -#: ../../enterprise/dashboard/widgets/sla_percent.php:194 -msgid "SLA percentage" -msgstr "Porcentaje SLA" - -#: ../../enterprise/dashboard/widgets/system_group_status.php:25 -#: ../../enterprise/dashboard/widgets/system_group_status.php:164 -msgid "Groups status" -msgstr "Estado de los grupos" - -#: ../../enterprise/dashboard/widgets/system_group_status.php:51 -msgid "Alert Fired" -msgstr "Alerta disparada" - -#: ../../enterprise/dashboard/widgets/system_group_status.php:120 -msgid "Modules in normal status" -msgstr "Módulos en estado normal" - -#: ../../enterprise/dashboard/widgets/system_group_status.php:129 -msgid "Modules in warning status" -msgstr "Modulos en estado de advertencia" - -#: ../../enterprise/dashboard/widgets/system_group_status.php:138 -msgid "Modules in critical status" -msgstr "Módulos en estado crítico" - -#: ../../enterprise/dashboard/widgets/top_n.php:31 -#: ../../enterprise/dashboard/widgets/top_n.php:733 -msgid "Top N of agent modules" -msgstr "Primeros N módulos de agente" - -#: ../../enterprise/dashboard/widgets/top_n.php:67 -msgid "5 hours" -msgstr "5 horas" - -#: ../../enterprise/dashboard/widgets/top_n.php:97 -msgid "Avg." -msgstr "Media" - -#: ../../enterprise/dashboard/widgets/top_n.php:133 -msgid "" -"Please could you fill the widget data previous to filling the list items." -msgstr "" -"Por favor, rellena el widget de datos antes de la lista de elementos." - -#: ../../enterprise/dashboard/widgets/top_n.php:138 -#: ../../enterprise/dashboard/widgets/top_n.php:328 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:88 -msgid "avg" -msgstr "media" - -#: ../../enterprise/dashboard/widgets/top_n.php:299 -msgid "Selection module one by one" -msgstr "Selección de módulos uno a uno" - -#: ../../enterprise/dashboard/widgets/top_n.php:308 -msgid "Selection several modules" -msgstr "Selección múltiple de módulos" - -#: ../../enterprise/dashboard/widgets/top_n.php:350 -msgid "Regex for to filter modules" -msgstr "Expresión regular para filtrar módulos" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:28 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:222 -msgid "Top N events by agent" -msgstr "Primeros N eventos por agente" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:29 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:147 -msgid "WUX transaction stats" -msgstr "Estadísticas de transacciones WUX" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:44 -#: ../../enterprise/operation/agentes/wux_console_view.php:493 -msgid "View all stats" -msgstr "Ver todas las estadísticas" - -#: ../../enterprise/extensions/backup/main.php:73 -#, php-format -msgid "%s database backup utility" -msgstr "Herramienta de copia de seguridad de %s" - -#: ../../enterprise/extensions/backup/main.php:88 -msgid "Filter backups" -msgstr "Filtrar copias de seguridad" - -#: ../../enterprise/extensions/backup/main.php:100 -msgid "Path backups" -msgstr "Ruta de la copia de seguridad" - -#: ../../enterprise/extensions/backup/main.php:193 -msgid "Lost" -msgstr "Perdido" - -#: ../../enterprise/extensions/backup/main.php:237 -msgid "Backups list" -msgstr "Lista de copias de seguridad" - -#: ../../enterprise/extensions/backup/main.php:242 -msgid "Create backup" -msgstr "Crear copia de seguridad" - -#: ../../enterprise/extensions/backup/main.php:256 -msgid "Path to save backup" -msgstr "Ruta para guardar la copia de seguridad" - -#: ../../enterprise/extensions/backup.php:69 -msgid "Backup" -msgstr "Copia de seguridad" - -#: ../../enterprise/extensions/cron.php:156 -#: ../../enterprise/meta/advanced/cron_main.php:72 -msgid "Cron jobs" -msgstr "Tareas cron" - -#: ../../enterprise/extensions/csv_import_group/main.php:37 -#, php-format -msgid "Created group %s" -msgstr "Grupo creado %s" - -#: ../../enterprise/extensions/csv_import_group/main.php:38 -#, php-format -msgid "Could not create group %s" -msgstr "No se pudo crear el grupo %s" - -#: ../../enterprise/extensions/csv_import_group/main.php:45 -msgid "File processed" -msgstr "Archivo procesado" - -#: ../../enterprise/extensions/csv_import_group/main.php:53 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1351 -msgid "CSV format" -msgstr "Formato CVS" - -#: ../../enterprise/extensions/csv_import_group/main.php:54 -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_group/main.php:70 -#: ../../enterprise/include/class/CSVImportAgents.class.php:144 -msgid "Upload file" -msgstr "Subir archivo" - -#: ../../enterprise/extensions/csv_import_group/main.php:73 -#: ../../enterprise/include/class/CSVImportAgents.class.php:161 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1355 -msgid "Separator" -msgstr "Separador" - -#: ../../enterprise/extensions/csv_import_group/main.php:86 -msgid "Upload CSV file" -msgstr "Subir archivo CSV" - -#: ../../enterprise/extensions/csv_import_group.php:26 -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:118 -msgid "There are no defined users" -msgstr "No hay usuarios definidos" - -#: ../../enterprise/extensions/disabled/check_acls.php:206 -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:217 -msgid "Only admin users can see this section." -msgstr "Solo los usuarios administradores pueden ver esta sección." - -#: ../../enterprise/extensions/disabled/check_acls.php:224 -msgid "Check ACL" -msgstr "Comprobar ACL" - -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:81 -msgid "Current Networks" -msgstr "Redes actuales" - -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 -msgid "Please, create networks to assign to " -msgstr "Cree redes que asgignar a " - -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 -msgid "all networks selected" -msgstr "Todas las redes seleccionadas" - -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:130 -msgid "Please, create networks to assign to" -msgstr "Creer redes que asignar a" - -#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:159 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:266 -#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:40 -msgid "Supernet" -msgstr "Superred" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:288 -msgid "Export to Excel" -msgstr "Exportar a Excel" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:341 -msgid "Assign next free IP" -msgstr "Asignar la siguiente IP libre" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:360 -msgid "Next available IP" -msgstr "Siguiente IP disponible" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1193 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:245 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 -msgid "Subnet" -msgstr "Subred" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1383 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1685 -#: ../../enterprise/extensions/ipam/ipam_excel.php:110 -#: ../../enterprise/extensions/ipam/ipam_excel.php:177 -msgid "Total IPs" -msgstr "IPs totales" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1389 -msgid "Occupied" -msgstr "Ocupado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1391 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 -msgid "Available" -msgstr "Disponible" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1395 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1738 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:231 -#: ../../enterprise/extensions/ipam/ipam_massive.php:103 -#: ../../enterprise/extensions/ipam/ipam_network.php:328 -msgid "Managed" -msgstr "Gestionado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1397 -msgid "Not managed" -msgstr "No gestionado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1401 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1479 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1739 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:241 -#: ../../enterprise/extensions/ipam/ipam_massive.php:103 -#: ../../enterprise/extensions/ipam/ipam_network.php:329 -msgid "Reserved" -msgstr "Reservado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1403 -msgid "Not Reserved" -msgstr "No reservado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 -msgid "DESC" -msgstr "Descendiente" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 -msgid "ASC" -msgstr "Ascendente" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 -msgid "A -> Z" -msgstr "A -> Z" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 -msgid "Z -> A" -msgstr "Z -> A" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 -msgid "Last check" -msgstr "Ultima comprobación" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 -msgid "Newer -> Older" -msgstr "Más reciente -> Más antiguo" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 -msgid "Older -> Newer" -msgstr "Más antiguo -> Más reciente" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1449 -msgid "Exact address match" -msgstr "Coincide la dirección exacta" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1453 -msgid "S.O" -msgstr "S.O" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1458 -msgid "Big" -msgstr "Grande" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1459 -msgid "Tiny" -msgstr "Pequeño" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1460 -msgid "Icons style" -msgstr "Estilo de iconos" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1469 -msgid "Show not alive hosts" -msgstr "Mostrar máquinas inactivas" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1472 -msgid "Show only managed addresses" -msgstr "Mostrar solo direcciones administradas" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1475 -msgid "Reserved addresses" -msgstr "Direcciones reservadas" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1480 -msgid "Unreserved" -msgstr "No reservado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1490 -msgid "Last Contact" -msgstr "Último contacto" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1520 -msgid "Filter options" -msgstr "Opciones de filtro" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1675 -msgid "id Network" -msgstr "ID de red" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1680 -msgid "ID recon task" -msgstr "Tarea de reconocimiento de ID" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1681 -msgid "Scan Interval" -msgstr "Intervalo de escaneo" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1682 -msgid "Users Operator" -msgstr "Operador de usuarios" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1683 -msgid "Total Ips" -msgstr "IPs totales" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1684 -msgid "Last Update" -msgstr "Última actualización" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1686 -#: ../../enterprise/extensions/ipam/ipam_excel.php:111 -#: ../../enterprise/extensions/ipam/ipam_excel.php:178 -msgid "Alive IPs" -msgstr "IPs activas" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1687 -#: ../../enterprise/extensions/ipam/ipam_excel.php:112 -#: ../../enterprise/extensions/ipam/ipam_excel.php:179 -msgid "Occupied %" -msgstr "Ocupado %" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1688 -#: ../../enterprise/extensions/ipam/ipam_excel.php:113 -#: ../../enterprise/extensions/ipam/ipam_excel.php:180 -msgid "Available %" -msgstr "Disponible %" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1689 -#: ../../enterprise/extensions/ipam/ipam_excel.php:114 -#: ../../enterprise/extensions/ipam/ipam_excel.php:181 -msgid "Managed IPs" -msgstr "IPs gestionadas" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1690 -#: ../../enterprise/extensions/ipam/ipam_excel.php:115 -#: ../../enterprise/extensions/ipam/ipam_excel.php:182 -msgid "Managed %" -msgstr "Gestionadas %" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1691 -#: ../../enterprise/extensions/ipam/ipam_excel.php:116 -#: ../../enterprise/extensions/ipam/ipam_excel.php:183 -msgid "Unmanaged %" -msgstr "No gestionadas %" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1692 -#: ../../enterprise/extensions/ipam/ipam_excel.php:117 -#: ../../enterprise/extensions/ipam/ipam_excel.php:184 -msgid "Reserved IPs" -msgstr "IPs reservadas" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1693 -#: ../../enterprise/extensions/ipam/ipam_excel.php:118 -#: ../../enterprise/extensions/ipam/ipam_excel.php:185 -msgid "Reserved %" -msgstr "Reservado %" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1694 -#: ../../enterprise/extensions/ipam/ipam_excel.php:119 -#: ../../enterprise/extensions/ipam/ipam_excel.php:186 -msgid "Not reserved %" -msgstr "No reservadas %" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1737 -msgid "OS Name" -msgstr "Nombre del OS" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1741 -msgid "Last updated" -msgstr "Última actualización" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1742 -msgid "Last modified" -msgstr "Última modificación" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1743 -msgid "Dhcp Leased" -msgstr "Dhcp prestado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1744 -msgid "Dhcp Leased Mode" -msgstr "Modo Dhcp prestado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1745 -msgid "Dhcp Leased Expiration" -msgstr "Caducidad de Dhcp prestado" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1746 -msgid "Mac address" -msgstr "Dirección Mac" - -#: ../../enterprise/extensions/ipam/ipam_action.php:109 -#: ../../enterprise/extensions/ipam/ipam_action.php:167 -msgid "Incorrect format in Subnet field" -msgstr "Formato incorrecto en el campo Subred" - -#: ../../enterprise/extensions/ipam/ipam_action.php:115 -#: ../../enterprise/extensions/ipam/ipam_action.php:173 -msgid "The location is not filled, please add a location." -msgstr "La ubicación no está indicada. Por favor, añade una ubicación." - -#: ../../enterprise/extensions/ipam/ipam_action.php:298 -msgid "Successfully updated." -msgstr "Actualizado correctamente" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:136 -msgid "There is not an available IP." -msgstr "No hay una IP disponible" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:138 -msgid "Next available IP Address is:" -msgstr "La siguiente IP disponible es:" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:155 -msgid "Reserve this IP now" -msgstr "Reservar esta IP ahora" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:162 -msgid "Manage this IP now" -msgstr "Gestionar esta IP ahora" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:207 -msgid "Operating system" -msgstr "Sistema operativo" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:217 -msgid "This agent has other IPs" -msgstr "Este agente tiene otras IPs." - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 -msgid "Generate events" -msgstr "Generar eventos" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:246 -msgid "Leases Dhcp" -msgstr "Periodo de concesión Dhcp" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 -msgid "leased mode" -msgstr "Modo de concesión" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:257 -msgid "leased expiration" -msgstr "Concesión caducada" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:278 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:423 -msgid "Created" -msgstr "Creado" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:288 -msgid "Edited" -msgstr "Modificado" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:298 -msgid "Tracking" -msgstr "Seguimiento" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:313 -msgid "Ping" -msgstr "Ping" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:350 -msgid "Ping to host" -msgstr "Ping a un host" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:44 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:45 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:56 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:57 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:58 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:59 -msgid "Example:" -msgstr "Ejemplo:" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 -msgid "Bit mask" -msgstr "Máscara de bit" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:49 -msgid "Net mask" -msgstr "Máscara de red" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 -msgid "Mask format" -msgstr "Formato de máscara" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 -#: ../../enterprise/extensions/ipam/ipam_excel.php:108 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:290 -msgid "Mask" -msgstr "Máscara" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:67 -msgid "Calculate" -msgstr "Calcular" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:74 -msgid "Address field is empty" -msgstr "El campo Dirección está vacío." - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:82 -msgid "Mask field is empty" -msgstr "El campo Máscara está vacío." - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:100 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:118 -msgid "Incorrect address format" -msgstr "Formato de dirección incorrecto" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:105 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:110 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:123 -msgid "Incorrect mask format" -msgstr "Formato de máscara incorrecto" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:151 -msgid "Network mask" -msgstr "Máscara de red" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:167 -msgid "Network wildcard" -msgstr "Red wildcard" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:172 -msgid "Network address" -msgstr "Dirección de red" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:177 -msgid "Broadcast address" -msgstr "Dirección de difusión" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:182 -msgid "First valid IP" -msgstr "Primera IP válida" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:187 -msgid "Last valid IP" -msgstr "Última IP válida" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:193 -msgid "Hosts/Net" -msgstr "Hosts/Red" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:46 -msgid "Network not found" -msgstr "Red no encontrada" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 -msgid "Format: IP/Mask" -msgstr "Formato: IP/Máscara" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:96 -msgid "Examples" -msgstr "Ejemplos" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:137 -msgid "For example: Central Data Center" -msgstr "Por ejemplo: Central General de Datos" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:142 -msgid "Include statistical monitors" -msgstr "Incluir monitores estadísticos" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:157 -msgid "Lightweight mode" -msgstr "Modo ligero" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:158 -msgid "Use quicker network scan" -msgstr "Usar escaneado de red rápido" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:174 -msgid "Target group for monitoring agent" -msgstr "Grupo de destino para agente de monitorización" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:195 -msgid "Scan interval" -msgstr "Comprobar intervalo" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:195 -msgid "0 for manually scan" -msgstr "0 para comprobación manual" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:200 -msgid "Operator users" -msgstr "Usuarios del operador" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:200 -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:109 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:304 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:372 -msgid "Subneting Mask" -msgstr "Máscara de subnetting" - -#: ../../enterprise/extensions/ipam/ipam_list.php:108 -msgid "No networks found" -msgstr "No se ha encontrado ninguna red" - -#: ../../enterprise/extensions/ipam/ipam_list.php:141 -msgid "IPs" -msgstr "IPs" - -#: ../../enterprise/extensions/ipam/ipam_list.php:178 -#: ../../enterprise/extensions/ipam.php:271 -msgid "Manage addresses" -msgstr "Administrar direcciones" - -#: ../../enterprise/extensions/ipam/ipam_list.php:184 -#: ../../enterprise/extensions/ipam.php:287 -msgid "Addresses view" -msgstr "Vista de direcciones" - -#: ../../enterprise/extensions/ipam/ipam_list.php:192 -msgid "Edit network" -msgstr "Modificar red" - -#: ../../enterprise/extensions/ipam/ipam_list.php:196 -msgid "Delete network" -msgstr "Eliminar red" - -#: ../../enterprise/extensions/ipam/ipam_massive.php:82 -msgid "Addresses" -msgstr "Direcciones" - -#: ../../enterprise/extensions/ipam/ipam_network.php:119 -msgid "No addresses found on this network" -msgstr "No se han encontrado direcciones en esta red" - -#: ../../enterprise/extensions/ipam/ipam_network.php:256 -msgid "Edit address" -msgstr "Modificar dirección" - -#: ../../enterprise/extensions/ipam/ipam_network.php:261 -msgid "Disabled address" -msgstr "Deshabilitar direción" - -#: ../../enterprise/extensions/ipam/ipam_network.php:261 -msgid "This address will not be updated by the server" -msgstr "Esta dirección no será actualizada por el servidor." - -#: ../../enterprise/extensions/ipam/ipam_network.php:382 -#: ../../enterprise/extensions/ipam/ipam_network.php:457 -#: ../../enterprise/extensions/ipam/ipam_network.php:499 -msgid "Change to automatic mode" -msgstr "Cambiar a modo automático" - -#: ../../enterprise/extensions/ipam/ipam_network.php:391 -#: ../../enterprise/extensions/ipam/ipam_network.php:466 -#: ../../enterprise/extensions/ipam/ipam_network.php:508 -msgid "Change to manual mode" -msgstr "Cambiar a modo manual" - -#: ../../enterprise/extensions/ipam/ipam_network.php:587 -msgid "Add comments" -msgstr "Añadir comentarios" - -#: ../../enterprise/extensions/ipam/ipam_network.php:615 -msgid "Update agent address" -msgstr "Actualizar dirección de agente" - -#: ../../enterprise/extensions/ipam/ipam_network.php:781 -msgid "Please, uncheck auto option to set manual agent." -msgstr "Desmarcar la opción automática para establecer agente manual" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:50 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:97 -msgid "There is no supernet name. Please introduce a name" -msgstr "No hay nombre de superred. Añada un nombre." - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:54 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:101 -msgid "There is no supernet address. Please introduce a address" -msgstr "No hay dirección de superred. Añada una dirección." - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:58 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:105 -msgid "There is no supernet mask. Please introduce a mask" -msgstr "No hay máscara de superred. Añada una máscara" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:62 -msgid "There is no valid address. Please introduce a address" -msgstr "No hay dirección válida. Añada una dirección." - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:66 -msgid "There is no valid mask. Please introduce a mask" -msgstr "No hay máscara válida. Añada una máscara" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:80 -msgid "Supernet created" -msgstr "Superred creada." - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:82 -msgid "Supernet not created" -msgstr "Superred no creada" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:86 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:131 -msgid "Supernet name exists in bbdd, please select other name" -msgstr "" -"El nombre de la superred existe en la base de datos, seleccione otro nombre." - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:125 -msgid "Supernet updated" -msgstr "Superred actualizada" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:127 -msgid "Supernet not updated" -msgstr "Superred no actualizada" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:152 -msgid "Could not be deleted, please select supernet" -msgstr "No se ha podido borrar, seleccione una superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:181 -msgid "Network name cannot be repeated in this supernet" -msgstr "El nombre de la red no puede repetirse en la superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:188 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:150 -msgid "Successfully added networks" -msgstr "Redes añadidas correctamente" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:192 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:154 -msgid "Network could not be added" -msgstr "No se ha podido añadir la red" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:197 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:159 -msgid "Network name could not be added, please select network" -msgstr "No se ha podido añadir el nombre de la red, seleccione una red" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:202 -msgid "supernet name could not be added, please select supernet" -msgstr "No se ha podido añadir el nombre de la superred, seleccione superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:226 -msgid "Could not be deleted, please select supernet and network" -msgstr "No se ha podido eliminar, seleccione una red y una superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:340 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:460 -msgid "Update Supernet" -msgstr "Actualizar superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:347 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:541 -msgid "New Supernet" -msgstr "Nueva superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:370 -msgid "Address / Masks" -msgstr "Dirección / Máscaras" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:373 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:272 -msgid "Networks" -msgstr "Redes" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:390 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:453 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:284 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:340 -msgid "Not assigned networks" -msgstr "Redes no asignadas" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:447 -msgid "Delete network to supernet" -msgstr "Eliminar red de superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:467 -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:487 -msgid "Add network to supernet" -msgstr "Añadir red a superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:470 -msgid "Next network" -msgstr "Siguiente red" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:500 -msgid "Delete Supernet" -msgstr "Borrar superred" - -#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:534 -msgid "No Supernet found" -msgstr "Superred no encontrada" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:44 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:72 -msgid "There is no vlan name. Please introduce a name" -msgstr "No hay nombre de vlan. Añada un nombre" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:55 -msgid "Vlan created" -msgstr "Vlan creada" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:57 -msgid "Vlan not created" -msgstr "Vlan no creada" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:61 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:95 -msgid "Vlan name exists in bbdd, please select other name" -msgstr "" -"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:89 -msgid "Vlan updated" -msgstr "Vlan actualizada" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:91 -msgid "Vlan not updated" -msgstr "Vlan no actualizada" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:115 -msgid "Could not be deleted, please select vlan" -msgstr "No se ha podido borrar, seleccione vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:143 -msgid "Network name cannot be repeated in this Vlan" -msgstr "El nombre de la red no se puede repetir en esta vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:164 -msgid "Vlan name could not be added, please select vlan" -msgstr "No se ha podido añadir el nombre de la vlan, seleccione vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:188 -msgid "Could not be deleted, please select vlan and network" -msgstr "No se ha podido eliminar, seleccione una vlan y una red" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:220 -#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:41 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 -msgid "Vlan" -msgstr "Vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:240 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:346 -msgid "Update Vlan" -msgstr "Actualizar vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:247 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:431 -msgid "New Vlan" -msgstr "Nueva vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:314 -msgid "Delete network to vlan" -msgstr "Borrar una red de vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:353 -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:372 -msgid "Add network to Vlan" -msgstr "Añadir red a vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:356 -msgid "Create network" -msgstr "Crear red" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:388 -msgid "Delete Vlan" -msgstr "Eliminar vlan" - -#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:419 -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:459 -msgid "No vlans found" -msgstr "No se han encontrado vlans" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 -msgid "succesfully created" -msgstr "creado correctamente" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 -msgid "not created" -msgstr "no creado" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 -msgid "exists in bbdd, please select other name" -msgstr "existe en la base de datos, seleccione otro nombre" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:71 -msgid "please, select VLAN to be created" -msgstr "seleccione una VLAN para crear" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:230 -msgid "Please enter adress, for search vlans" -msgstr "Añada una dirección para buscar vlans" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:373 -#: ../../enterprise/include/functions_hostdevices.php:108 -msgid "Context" -msgstr "Contexto" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:396 -msgid "Run" -msgstr "Ejecutar" - -#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:408 -msgid "Vlan name" -msgstr "Nombre de vlan" - -#: ../../enterprise/extensions/ipam.php:185 -#: ../../enterprise/extensions/ipam.php:407 -msgid "Subnetworks calculator" -msgstr "Calculadora de subredes" - -#: ../../enterprise/extensions/ipam.php:194 -#: ../../enterprise/extensions/ipam.php:431 -msgid "Vlan config" -msgstr "Configuración de vlan" - -#: ../../enterprise/extensions/ipam.php:204 -#: ../../enterprise/extensions/ipam.php:441 -msgid "Vlan wizard" -msgstr "Asistente de vlan" - -#: ../../enterprise/extensions/ipam.php:219 -msgid "Vlan statistics" -msgstr "Estadísticas de vlan" - -#: ../../enterprise/extensions/ipam.php:231 -#: ../../enterprise/extensions/ipam.php:451 -msgid "Supernet config" -msgstr "Configuración de superred" - -#: ../../enterprise/extensions/ipam.php:242 -msgid "Supernet statistics" -msgstr "Estadísticas de superred" - -#: ../../enterprise/extensions/ipam.php:254 -#: ../../enterprise/extensions/ipam.php:461 -msgid "Supernet map" -msgstr "Mapa de superred" - -#: ../../enterprise/extensions/ipam.php:279 -msgid "Massive operations" -msgstr "Operaciones masivas" - -#: ../../enterprise/extensions/ipam.php:331 -#: ../../enterprise/extensions/ipam.php:478 -#: ../../enterprise/extensions/ipam.php:518 -#: ../../enterprise/extensions/ipam.php:519 -msgid "IPAM" -msgstr "IPAM" - -#: ../../enterprise/extensions/resource_exportation/functions.php:20 -msgid "Export agents" -msgstr "Exportar agentes" - -#: ../../enterprise/extensions/resource_registration/functions.php:38 -#, php-format -msgid "Error create '%s' policy, the name exist and there aren't free name." -msgstr "" -"Error al crear la política '%s', el nombre ya existe. Ese nombre no está " -"disponible." - -#: ../../enterprise/extensions/resource_registration/functions.php:46 -#, php-format -msgid "" -"Warning create '%s' policy, the name exist, the policy have a name %s." -msgstr "" -"Política de advertencia '%s' creada, el nombre existe, la política tiene el " -"nombre %s." - -#: ../../enterprise/extensions/resource_registration/functions.php:55 -msgid "Error the policy haven't name." -msgstr "Error: la política no tiene nombre." - -#: ../../enterprise/extensions/resource_registration/functions.php:76 -#, php-format -msgid "Success create '%s' policy." -msgstr "Política '%s' creada correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:77 -#, php-format -msgid "Error create '%s' policy." -msgstr "Error al crear la política '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:114 -#, php-format -msgid "Error add '%s' agent. The agent does not exist" -msgstr "Error al añadir el agente '%s'. El agente no existe" - -#: ../../enterprise/extensions/resource_registration/functions.php:118 -#, php-format -msgid "Success add '%s' agent." -msgstr "Agente '%s' añadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:119 -#, php-format -msgid "Error add '%s' agent." -msgstr "Error al añadir el agente '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:138 -msgid "The collection does not exist" -msgstr "La colección no existe" - -#: ../../enterprise/extensions/resource_registration/functions.php:143 -#, php-format -msgid "Success add '%s' collection." -msgstr "Colección '%s' añadida correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:144 -#, php-format -msgid "Error add '%s' collection." -msgstr "Error al añadir colección '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:162 -#, php-format -msgid "Success add '%s' agent plugin." -msgstr "Plugin de agente '%s' añadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:163 -#, php-format -msgid "Error add '%s' agent plugin." -msgstr "Error al añadir el plugin de agente '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:176 -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:377 -#: ../../enterprise/extensions/resource_registration/functions.php:438 -#: ../../enterprise/extensions/resource_registration/functions.php:539 -#: ../../enterprise/extensions/resource_registration/functions.php:595 -msgid "Error add the module, error in tag component." -msgstr "Error al añadir el módulo, error en el componente etiqueta." - -#: ../../enterprise/extensions/resource_registration/functions.php:647 -msgid "Error add the module plugin importation, plugin is not registered" -msgstr "" -"Error al importar el plugin del módulo; el plugin no está registrado." - -#: ../../enterprise/extensions/resource_registration/functions.php:657 -#, php-format -msgid "Success add '%s' module." -msgstr "Módulo '%s' añadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:658 -#, php-format -msgid "Error add '%s' module." -msgstr "Error al añadir el módulo '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:670 -#, 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:681 -#, 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:697 -#, php-format -msgid "Success add '%s' alert." -msgstr "Alerta '%s' añadida correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:698 -#, php-format -msgid "Error add '%s' alert." -msgstr "Error al añadir alerta '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:719 -#, 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:738 -#, php-format -msgid "Success add '%s' action." -msgstr "Acción '%s' añadida correctamente" - -#: ../../enterprise/extensions/translate_string.php:168 -#: ../../enterprise/extensions/translate_string.php:380 -msgid "Translate string" -msgstr "Traducir cadena" - -#: ../../enterprise/extensions/translate_string.php:253 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:126 -msgid "Translation added successfully" -msgstr "Traducción añadida correctamente" - -#: ../../enterprise/extensions/translate_string.php:255 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:128 -msgid "Translation string could not be created" -msgstr "No se ha podido crear la cadena de traducción" - -#: ../../enterprise/extensions/translate_string.php:268 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:141 -msgid "Translation updated successfully" -msgstr "Traducción actualizada correctamente" - -#: ../../enterprise/extensions/translate_string.php:270 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:143 -msgid "Translation string could not be updated" -msgstr "No se ha podido actualizar la cadena de traducción" - -#: ../../enterprise/extensions/translate_string.php:334 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:203 -msgid "Original string" -msgstr "Cadena original" - -#: ../../enterprise/extensions/translate_string.php:335 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:204 -msgid "Translation in selected language" -msgstr "Traducción en el idioma seleccionado" - -#: ../../enterprise/extensions/translate_string.php:336 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:205 -msgid "Customize translation" -msgstr "Personalizar traducción" - -#: ../../enterprise/extensions/visual_console_manager.php:107 -msgid "Element Id" -msgstr "ID del elemento" - -#: ../../enterprise/extensions/visual_console_manager.php:107 -#: ../../enterprise/godmode/policies/policy_linking.php:125 -#: ../../enterprise/godmode/policies/policy_queue.php:479 -msgid "Node" -msgstr "Nodo" - -#: ../../enterprise/extensions/visual_console_manager.php:211 -#, php-format -msgid "%d elements updated" -msgstr "%d elementos actualizados" - -#: ../../enterprise/extensions/visual_console_manager.php:212 -msgid "There was an error updating the elements" -msgstr "Error al actualizar elementos" - -#: ../../enterprise/extensions/visual_console_manager.php:250 -msgid "Type of the status calculation" -msgstr "Tipo de cálculo de estado" - -#: ../../enterprise/extensions/visual_console_manager.php:308 -msgid "Visual Consoles" -msgstr "Consolas visuales" - -#: ../../enterprise/extensions/visual_console_manager.php:318 -msgid "Visual Console Information" -msgstr "Información de consola visual" - -#: ../../enterprise/extensions/visual_console_manager.php:319 -msgid "There are no items selected." -msgstr "No hay elementos seleccionados." - -#: ../../enterprise/extensions/visual_console_manager.php:322 -msgid "" -"Massive editing of the procedure for calculating the status of elements " -"linked to a visual console" -msgstr "" -"Edición masiva del procedimiento de cálculo del estado de los elementos " -"vinculados a la consola visual" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:227 -msgid "Power Status: " -msgstr "Estado: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:273 -msgid "Change Status" -msgstr "Cambiar estado:" - -#: ../../enterprise/extensions/vmware/vmware_view.php:61 -msgid "Top 5 VMs CPU Usage" -msgstr "Top 5 VMs del uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:70 -msgid "Top 5 VMs Memory Usage" -msgstr "Top 5 VMs del uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:82 -msgid "Top 5 VMs Provisioning Usage" -msgstr "Top 5 VMs en uso de aprovisionamiento" - -#: ../../enterprise/extensions/vmware/vmware_view.php:91 -msgid "Top 5 VMs Network Usage" -msgstr "Top 5 VMs del uso de la red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:691 -msgid "Host ESX" -msgstr "Host ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1043 -msgid "CPU Usage" -msgstr "Uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1053 -msgid "Memory Usage" -msgstr "Uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1063 -msgid "Disk I/O Rate" -msgstr "Ratio lectura/escritura de disco" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1073 -msgid "Network Usage" -msgstr "Uso de red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1172 -msgid "Settings updated " -msgstr "Ajustes actualizados " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1174 -msgid "No changes in settings " -msgstr "No hay cambios en los ajustes " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1182 -msgid "CPU usage graphs" -msgstr "Gráficas de uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1183 -#: ../../enterprise/extensions/vmware/vmware_view.php:1189 -#: ../../enterprise/extensions/vmware/vmware_view.php:1195 -#: ../../enterprise/extensions/vmware/vmware_view.php:1201 -msgid "Force minimum value" -msgstr "Forzar valor mínimo" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1185 -#: ../../enterprise/extensions/vmware/vmware_view.php:1191 -#: ../../enterprise/extensions/vmware/vmware_view.php:1197 -#: ../../enterprise/extensions/vmware/vmware_view.php:1203 -msgid "Force maximum value" -msgstr "Forzar valor máximo" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1188 -msgid "Memory usage graphs" -msgstr "Gráficos de uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1194 -msgid "Provisioning Usage graphs" -msgstr "Gráficos de uso de aprovisionamiento" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1200 -msgid "Network usage graphs" -msgstr "Gráficos de uso de red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1211 -msgid "Map items" -msgstr "Elementos del mapa" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1212 -msgid "Show datastores" -msgstr "Mostrar datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1214 -msgid "Show ESXis" -msgstr "Mostrar ESXis" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1216 -msgid "Show VMs" -msgstr "Mostrar VMs" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1218 -msgid "Font size (px)" -msgstr "Tamaño de fuente (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1220 -msgid "Node radius (px)" -msgstr "Radio del nodo (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1225 -msgid "" -"Looking for VMware configuration? You can configure several tasks using " -"Discovery Applications." -msgstr "" -"¿Está buscando la configuración VMware? Puede configurar varias tareas " -"usando las aplicaciones de Discovery." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1226 -#: ../../enterprise/extensions/vmware/vmware_view.php:1450 -#: ../../enterprise/include/class/SAPView.class.php:619 -msgid "this link" -msgstr "este enlace" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1233 -msgid "Graph settings" -msgstr "Ajustes de gráfico" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1238 -msgid "Map settings" -msgstr "Ajustes del mapa" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1278 -msgid "Welcome" -msgstr "Bienvenid@" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1288 -msgid "ESX Detail" -msgstr "Detalle de ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1309 -msgid "ESX details" -msgstr "Detalles de ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1314 -msgid "VMware view options" -msgstr "Opciones de la vista de VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1336 -#: ../../enterprise/extensions/vmware.php:86 -msgid "VMware View" -msgstr "Vista VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1428 -msgid "" -"Some ESX Hosts are not up to date, please check VMware plugin configuration." -msgstr "" -"Algunos hosts ESX no están actualizados. Compruebe la configuración del " -"plugin VMware." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1430 -msgid "VMware plugin is working." -msgstr "El plugin de VMware está en funcionamiento." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1439 -msgid "View VMware map" -msgstr "Vista del mapa VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1440 -msgid "View VMware dashboard" -msgstr "Vista del panel VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1441 -msgid "View ESX Host statistics from" -msgstr "Ver estadísticas del host ESX desde" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1448 -msgid "There are no VMware information detected in this environment." -msgstr "No se ha detectado información VMware en este entorno." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1449 -msgid "You can configure several tasks using Discovery Applications at " -msgstr "" -"Puede configurar diversas tareas usando las aplicaciones Discovery en " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1652 -msgid "Show Datastores" -msgstr "Mostrar datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1655 -msgid "Show ESX" -msgstr "Mostrar ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1658 -msgid "Show VM" -msgstr "Mostrar VM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1676 -msgid "View options" -msgstr "Ver opciones" - -#: ../../enterprise/extensions/vmware.php:43 -msgid "Failed to initialize VMware extension." -msgstr "Error al inicializar la extensión VMware" - -#: ../../enterprise/godmode/admin_access_logs.php:49 -msgid "Show extended info" -msgstr "Mostrar más info" - -#: ../../enterprise/godmode/admin_access_logs.php:69 -msgid "" -"The security check cannot be performed. There are no data in " -"tsession_extended to check the hash." -msgstr "" -"La comprobación de seguridad no se puede realizar. No hay datos en " -"tsession_extended para verificar el hash." - -#: ../../enterprise/godmode/admin_access_logs.php:77 -msgid "Security check is ok." -msgstr "La comprobación de seguridad está OK." - -#: ../../enterprise/godmode/admin_access_logs.php:82 -msgid "Security check is fail." -msgstr "La comprobación de seguridad ha fallado." - -#: ../../enterprise/godmode/admin_access_logs.php:186 -msgid "Extended info:" -msgstr "Información extendida:" - -#: ../../enterprise/godmode/admin_access_logs.php:186 -msgid "Changes:" -msgstr "Cambios:" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55 -msgid "Cannot delete rule from autoconfiguration" -msgstr "No se ha podido borrar la regla de autoconfiguración" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61 -msgid "Agent Autoconfiguration Information" -msgstr "Información de la autoconfiguración de agente" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62 -msgid "" -"You must click the Create or Update buttom for a correct configuration!!!" -msgstr "" -"Pinche en el botón de crear o actualizar para una correcta configuración" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70 -msgid "" -"Cannot create autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"No se ha podido crear la autoconfiguración desde la consola exclusiva de " -"lectura, créela desde la Metaconsola (gestión centralizada)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91 -msgid "Cannot create autoconfiguration in metaconsole" -msgstr "No se ha podido crear la autoconfiguración en la metaconsola" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99 -msgid "Cannot create unnamed autoconfiguration" -msgstr "No se ha podido crear una autoconfiguración sin nombre" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 -msgid "" -"Cannot udpate autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"No se ha podido actualizar la autoconfiguración desde la consola exclusiva " -"de lectura, créela desde la Metaconsola (gestión centralizada)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126 -msgid "Cannot update autoconfiguration" -msgstr "No se ha podido actualizar la autoconfiguración" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191 -msgid "" -"Cannot modify autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"No se ha podido crear la autoconfiguración desde la consola exclusiva de " -"lectura, créela desde la Metaconsola (gestión centralizada)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:294 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:56 -msgid "Agent autoconfiguration list" -msgstr "Lista de autoconfiguración de agentes" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:297 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:657 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 -#: ../../enterprise/meta/include/functions_agents_meta.php:490 -#: ../../enterprise/meta/include/functions_agents_meta.php:546 -msgid "Agent autoconfiguration" -msgstr "Autoconfiguración de agente" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:318 -msgid "Autoconfiguration" -msgstr "Autoconfiguración" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:388 -msgid "Add rule" -msgstr "Añadir regla" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:393 -msgid "Rules" -msgstr "Reglas" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:415 -msgid "New group" -msgstr "Nuevo grupo" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:447 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:378 -msgid "Launch custom event" -msgstr "Lanzar evento personalizado" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:448 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 -msgid "Launch alert action" -msgstr "Lanzar acción de alerta" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:449 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 -msgid "Launch script" -msgstr "Lanzar script" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:596 -#: ../../enterprise/godmode/policies/configure_policy.php:46 -msgid "Add policy" -msgstr "Añadir política" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:611 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:350 -msgid "Op" -msgstr "Op" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:628 -msgid "Extra configuration block" -msgstr "Bloque de configuración extra" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:630 -msgid "" -"Put here any extra configuration you want to be applied to any new agent " -"matching previously defined rules" -msgstr "" -"Añada cualquier configuración extra que desee que se aplique a cualquier " -"agente nuevo que coincida con las reglas definidas" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:663 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:694 -msgid "Extra actions" -msgstr "Acciones extra" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:684 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:987 -msgid "Add extra action" -msgstr "Añadir acción extra" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:852 -msgid "Add new rule" -msgstr "Añadir regla nueva" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:854 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:168 -msgid "Update rule" -msgstr "Actualizar regla" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 -msgid "Update extra action" -msgstr "Actualizar acción extra" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:42 -msgid "Cannot delete autoconfiguration" -msgstr "No se ha podido borrar la autoconfiguración" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 -msgid "There are no defined autoconfigurations" -msgstr "No hay autoconfiguraciones definidas" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124 -msgid "Add new configuration definition" -msgstr "Añadir definición de nueva configuración" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:114 -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:118 -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:171 -#: ../../enterprise/godmode/policies/policy_modules.php:383 -msgid "Add module" -msgstr "Añadir módulo" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 -msgid "No module was found" -msgstr "No se encontraron módulos." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:241 -msgid "Delete remote conf agent files" -msgstr "Eliminar archivos de agente de configuración remota" - -#: ../../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úralo." - -#: ../../enterprise/godmode/agentes/collection_manager.php:83 -msgid "Succesful add the collection" -msgstr "Añadido a la colección correctamente" - -#: ../../enterprise/godmode/agentes/collection_manager.php:84 -msgid "Unsuccesful add the collection" -msgstr "No se ha podido añadir a la colección." - -#: ../../enterprise/godmode/agentes/collection_manager.php:100 -#: ../../enterprise/godmode/agentes/collections.php:182 -#: ../../enterprise/godmode/agentes/collections.php:204 -#: ../../enterprise/meta/advanced/collections.php:134 -#: ../../enterprise/meta/advanced/collections.php:156 -msgid "Successful create collection package." -msgstr "Paquete de la colección creado correctamente" - -#: ../../enterprise/godmode/agentes/collection_manager.php:101 -#: ../../enterprise/godmode/agentes/collections.php:205 -#: ../../enterprise/meta/advanced/collections.php:157 -msgid "Can not create collection package." -msgstr "No se puede crear el paquete de la colección" - -#: ../../enterprise/godmode/agentes/collection_manager.php:116 -#: ../../enterprise/godmode/agentes/collections.php:322 -#: ../../enterprise/godmode/policies/policy_collections.php:150 -#: ../../enterprise/godmode/policies/policy_collections.php:245 -#: ../../enterprise/meta/advanced/collections.php:320 -msgid "Short Name" -msgstr "Nombre corto" - -#: ../../enterprise/godmode/agentes/collection_manager.php:131 -#: ../../enterprise/godmode/agentes/collection_manager.php:246 -#: ../../enterprise/operation/agentes/collection_view.php:91 -#: ../../enterprise/operation/agentes/policy_view.php:164 -msgid "Show files" -msgstr "Mostrar archivos" - -#: ../../enterprise/godmode/agentes/collection_manager.php:161 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/agentes/collection_manager.php:273 -#: ../../enterprise/godmode/agentes/collection_manager.php:274 -#: ../../enterprise/godmode/agentes/collections.data.php:396 -#: ../../enterprise/godmode/agentes/collections.data.php:397 -#: ../../enterprise/meta/advanced/collections.data.php:347 -#: ../../enterprise/meta/advanced/collections.data.php:348 -msgid "Need to regenerate" -msgstr "Necesita volver a regenerarse" - -#: ../../enterprise/godmode/agentes/collection_manager.php:170 -#: ../../enterprise/godmode/agentes/collection_manager.php:171 -#: ../../enterprise/godmode/agentes/collection_manager.php:282 -#: ../../enterprise/godmode/agentes/collection_manager.php:283 -#: ../../enterprise/godmode/agentes/collections.data.php:406 -#: ../../enterprise/godmode/agentes/collections.data.php:407 -#: ../../enterprise/godmode/agentes/collections.php:369 -#: ../../enterprise/godmode/agentes/collections.php:370 -#: ../../enterprise/meta/advanced/collections.data.php:357 -#: ../../enterprise/meta/advanced/collections.data.php:358 -#: ../../enterprise/meta/advanced/collections.php:370 -#: ../../enterprise/meta/advanced/collections.php:371 -#: ../../enterprise/operation/agentes/collection_view.php:122 -#: ../../enterprise/operation/agentes/collection_view.php:123 -msgid "The collection directory does not exist." -msgstr "El directorio donde se guardan las colecciones no existe." - -#: ../../enterprise/godmode/agentes/collection_manager.php:202 -#: ../../enterprise/operation/agentes/collection_view.php:63 -#: ../../enterprise/operation/agentes/policy_view.php:140 -msgid "Dir" -msgstr "Dir" - -#: ../../enterprise/godmode/agentes/collections.agents.php:38 -msgid "Show Agent >" -msgstr "Mostrar agente" - -#: ../../enterprise/godmode/agentes/collections.agents.php:116 -msgid "This collection has not been added to any agents" -msgstr "Esta colección no ha sido añadida a ningún agente." - -#: ../../enterprise/godmode/agentes/collections.data.php:49 -#: ../../enterprise/godmode/agentes/collections.data.php:140 -#: ../../enterprise/godmode/agentes/collections.data.php:164 -#: ../../enterprise/godmode/agentes/collections.data.php:181 -#: ../../enterprise/godmode/agentes/collections.data.php:205 -#: ../../enterprise/godmode/agentes/collections.data.php:252 -#: ../../enterprise/meta/advanced/collections.data.php:110 -msgid "Manager configuration > New" -msgstr "Gestionar la configuración > Nuevo" - -#: ../../enterprise/godmode/agentes/collections.data.php:100 -#: ../../enterprise/godmode/agentes/collections.data.php:226 -#: ../../enterprise/godmode/agentes/collections.data.php:306 -#: ../../enterprise/godmode/agentes/collections.data.php:319 -#: ../../enterprise/godmode/agentes/collections.data.php:324 -#: ../../enterprise/godmode/agentes/collections.editor.php:67 -#: ../../enterprise/meta/advanced/collections.data.php:222 -msgid "Manager configuration > Edit " -msgstr "Gestionar la configuración > Editar " - -#: ../../enterprise/godmode/agentes/collections.data.php:147 -#: ../../enterprise/meta/advanced/collections.data.php:78 -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:170 -#: ../../enterprise/godmode/agentes/collections.data.php:187 -#: ../../enterprise/meta/advanced/collections.data.php:99 -#: ../../enterprise/meta/advanced/collections.data.php:116 -msgid "Unable to create the collection" -msgstr "Error al crear la colección" - -#: ../../enterprise/godmode/agentes/collections.data.php:170 -#: ../../enterprise/meta/advanced/collections.data.php:99 -msgid "Invalid characters in short name" -msgstr "Caracteres no válidos en el nombre" - -#: ../../enterprise/godmode/agentes/collections.data.php:187 -#: ../../enterprise/include/functions_local_components.php:170 -#: ../../enterprise/meta/advanced/collections.data.php:116 -msgid "Empty name" -msgstr "Nombre vacío" - -#: ../../enterprise/godmode/agentes/collections.data.php:211 -#: ../../enterprise/godmode/agentes/collections.data.php:260 -#: ../../enterprise/meta/advanced/collections.data.php:138 -#: ../../enterprise/meta/advanced/collections.data.php:180 -msgid "Unable to create the collection." -msgstr "Error al crear la colección" - -#: ../../enterprise/godmode/agentes/collections.data.php:234 -#: ../../enterprise/godmode/agentes/collections.data.php:330 -#: ../../enterprise/meta/advanced/collections.data.php:156 -#: ../../enterprise/meta/advanced/collections.data.php:291 -msgid "Correct create collection" -msgstr "Colección de ficheros creada correctamente" - -#: ../../enterprise/godmode/agentes/collections.data.php:310 -#: ../../enterprise/meta/advanced/collections.data.php:275 -msgid "Unable to edit the collection, empty name." -msgstr "Error al crear colección: nombre vacío" - -#: ../../enterprise/godmode/agentes/collections.data.php:322 -#: ../../enterprise/meta/advanced/collections.data.php:285 -msgid "Unable to edit the collection." -msgstr "Error al editar la colección" - -#: ../../enterprise/godmode/agentes/collections.data.php:344 -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:368 -#: ../../enterprise/meta/advanced/collections.data.php:319 -msgid "Recreate file" -msgstr "Volver a crear el archivo" - -#: ../../enterprise/godmode/agentes/collections.data.php:433 -#: ../../enterprise/meta/advanced/collections.data.php:383 -msgid "Short name:" -msgstr "Nombre corto:" - -#: ../../enterprise/godmode/agentes/collections.data.php:438 -#: ../../enterprise/meta/advanced/collections.data.php:389 -msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." -msgstr "" -"El nombre corto de la colección es el nombre del directorio en el directorio " -"de adjuntos y la colección de paquetes." - -#: ../../enterprise/godmode/agentes/collections.data.php:438 -#: ../../enterprise/meta/advanced/collections.data.php:389 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "" -"Los nombres cortos deben contener solo caracteres alfanuméricos, - o _." - -#: ../../enterprise/godmode/agentes/collections.data.php:438 -#: ../../enterprise/meta/advanced/collections.data.php:389 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" -"Déjalo vacío para el nombre corto por defecto (fc_X) donde X es el ID de la " -"colección." - -#: ../../enterprise/godmode/agentes/collections.editor.php:81 -msgid "Files in " -msgstr "Archivos en " - -#: ../../enterprise/godmode/agentes/collections.editor.php:135 -#: ../../enterprise/godmode/agentes/collections.editor.php:199 -#: ../../enterprise/meta/advanced/collections.editor.php:102 -#: ../../enterprise/meta/advanced/collections.editor.php:167 -msgid "Back to file explorer" -msgstr "Volver al explorador de archivos" - -#: ../../enterprise/godmode/agentes/collections.editor.php:265 -#: ../../enterprise/meta/advanced/collections.editor.php:235 -msgid "Correct update file." -msgstr "Actualización correcta del archivo" - -#: ../../enterprise/godmode/agentes/collections.editor.php:266 -#: ../../enterprise/meta/advanced/collections.editor.php:236 -msgid "Incorrect update file." -msgstr "Error al actualizar el archivo" - -#: ../../enterprise/godmode/agentes/collections.editor.php:390 -#: ../../enterprise/meta/advanced/collections.editor.php:351 -msgid "Please, first save a new collection before to upload files." -msgstr "Por favor, antes de subir archivos, guarda una nueva colección." - -#: ../../enterprise/godmode/agentes/collections.php:70 -msgid "Success: recreate file" -msgstr "Archivo creado de nuevo" - -#: ../../enterprise/godmode/agentes/collections.php:72 -msgid "Error: recreate file " -msgstr "El archivo no se pudo volver a crear " - -#: ../../enterprise/godmode/agentes/collections.php:87 -#: ../../enterprise/godmode/agentes/collections.php:117 -#: ../../enterprise/godmode/agentes/collections.php:226 -msgid "Collections Management" -msgstr "Gestión de colecciones" - -#: ../../enterprise/godmode/agentes/collections.php:169 -msgid "Manager collection" -msgstr "Gestor de colecciones" - -#: ../../enterprise/godmode/agentes/collections.php:239 -#: ../../enterprise/meta/advanced/collections.php:260 -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:345 -#: ../../enterprise/meta/advanced/collections.php:346 -msgid "Are you sure to delete?" -msgstr "¿Estás seguro de que quieres eliminarlo?" - -#: ../../enterprise/godmode/agentes/collections.php:346 -#: ../../enterprise/meta/advanced/collections.php:347 -msgid "Delete collection" -msgstr "Eliminar colección" - -#: ../../enterprise/godmode/agentes/collections.php:352 -#: ../../enterprise/meta/advanced/collections.php:353 -msgid "Are you sure to re-apply?" -msgstr "¿Estás seguro de que quieres volver a aplicarlo?" - -#: ../../enterprise/godmode/agentes/collections.php:353 -#: ../../enterprise/meta/advanced/collections.php:354 -msgid "Re-Apply changes" -msgstr "Volver a aplicar los cambios" - -#: ../../enterprise/godmode/agentes/collections.php:360 -#: ../../enterprise/meta/advanced/collections.php:361 -msgid "Are you sure to apply?" -msgstr "¿Estás seguro de que quieres aplicarlo?" - -#: ../../enterprise/godmode/agentes/collections.php:361 -#: ../../enterprise/meta/advanced/collections.php:362 -msgid "Apply changes" -msgstr "Aplicar cambios" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:81 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:119 -msgid "Successfully added inventory module" -msgstr "Módulo añadido al inventario correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:83 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:122 -msgid "Error adding inventory module" -msgstr "Error al añadir el módulo al inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:86 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:125 -msgid "The inventory of the module already exists" -msgstr "El inventario del módulo ya existe" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:97 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:171 -msgid "Successfully deleted inventory module" -msgstr "Módulo del inventario eliminado correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:99 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:174 -#: ../../enterprise/include/functions_enterprise_api.php:4673 -msgid "Error deleting inventory module" -msgstr "Error al eliminar el módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:107 -msgid "Successfully forced inventory module" -msgstr "Módulo del inventario forzado correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:109 -msgid "Error forcing inventory module" -msgstr "Error al forzar un módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:125 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:140 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 -msgid "Successfully updated inventory module" -msgstr "Módulo del inventario actualizado correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:127 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 -#: ../../enterprise/include/functions_enterprise_api.php:4631 -msgid "Error updating inventory module" -msgstr "Error al actualizar el módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:162 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 -msgid "Inventory module error" -msgstr "Error del módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 -#: ../../enterprise/include/functions_ui.php:92 -#: ../../enterprise/meta/advanced/synchronizing.user.php:598 -msgid "Target" -msgstr "Destino" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 -msgid "Data Copy" -msgstr "Copia de datos" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 -msgid "No selected agents to copy" -msgstr "No se han seleccionado agentes de destino para la copia" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 -msgid "No source agent selected" -msgstr "No ha seleccionado ningún agente de origen" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 -msgid "Making copy of configuration file for" -msgstr "Creando una copia del archivo de configuración de" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 -msgid "Error copying md5 file " -msgstr "Error al copiar archivo MD5 " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 -msgid " md5 file" -msgstr " archivo MD5" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid "Copied " -msgstr "Copiado " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -msgid "Error copying " -msgstr "Error al copiar " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid " config file" -msgstr " archivo de configuración" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:129 -msgid "Remote configuration management" -msgstr "Gestión de configuración remota" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:178 -msgid "To agent(s):" -msgstr "Agente(s) de destino:" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 -msgid "Replicate configuration" -msgstr "Replicar configuración" - -#: ../../enterprise/godmode/agentes/module_manager.php:21 -msgid "Create a new web Server module" -msgstr "Crear un nuevo módulo de servidor web" - -#: ../../enterprise/godmode/agentes/module_manager.php:31 -msgid "Create a new web analysis module" -msgstr "Crear un módulo de análisis web nuevo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:56 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:57 -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:62 -msgid "Using local component" -msgstr "Usando componente local" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 -msgid "Show configuration data" -msgstr "Mostrar datos de configuración" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:162 -msgid "Hide configuration data" -msgstr "Ocultar datos de configuración" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 -msgid "Data configuration" -msgstr "Configuración de datos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:176 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:118 -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../enterprise/meta/include/functions_wizard_meta.php:673 -msgid "Load basic" -msgstr "cargar básicos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:176 -#: ../../enterprise/godmode/modules/configure_local_component.php:472 -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:179 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 -#: ../../enterprise/godmode/modules/configure_local_component.php:475 -#: ../../enterprise/include/functions_metaconsole.php:1287 -#: ../../enterprise/include/functions_metaconsole.php:1320 -#: ../../enterprise/include/functions_metaconsole.php:1353 -#: ../../enterprise/include/functions_metaconsole.php:1386 -#: ../../enterprise/include/functions_metaconsole.php:1419 -#: ../../enterprise/include/functions_metaconsole.php:1452 -#: ../../enterprise/include/functions_metaconsole.php:1485 -#: ../../enterprise/meta/include/functions_wizard_meta.php:238 -#: ../../enterprise/meta/include/functions_wizard_meta.php:681 -msgid "Check" -msgstr "Comprobar" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:179 -#: ../../enterprise/godmode/modules/configure_local_component.php:475 -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:192 -#: ../../enterprise/godmode/modules/configure_local_component.php:478 -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:193 -#: ../../enterprise/godmode/modules/configure_local_component.php:479 -msgid "Data configuration is empty" -msgstr "La configuración de datos está vacía." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:194 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 -#: ../../enterprise/godmode/modules/configure_local_component.php:480 -#: ../../enterprise/godmode/modules/configure_local_component.php:484 -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:195 -#: ../../enterprise/godmode/modules/configure_local_component.php:481 -msgid "" -"Name is missed. Please add a line with \"module_name yourmodulename\" to " -"data configuration" -msgstr "" -"Falta el nombre. Por favor, introduce una línea con \"module_name " -"yourmodulename\" a la configuración de datos." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 -#: ../../enterprise/godmode/modules/configure_local_component.php:482 -msgid "" -"Type is missed. Please add a line with \"module_type yourmoduletype\" to " -"data configuration" -msgstr "" -"Falta el tipo. Por favor, introduce una línea con \"module_type " -"yourmoduletype\" a la configuración de datos." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 -#: ../../enterprise/godmode/modules/configure_local_component.php:483 -msgid "Type is wrong. Please set a correct type" -msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:202 -#: ../../enterprise/godmode/modules/configure_local_component.php:485 -#: ../../enterprise/meta/include/functions_wizard_meta.php:698 -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:200 -#: ../../enterprise/godmode/modules/configure_local_component.php:486 -msgid "Error in the syntax, please check the data configuration." -msgstr "Error en la sintaxis; comprueba la configuración de datos." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 -#: ../../enterprise/godmode/modules/configure_local_component.php:487 -msgid "Data configuration are built correctly" -msgstr "La configuración de datos se ha efectuado correctamente." - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 -msgid "Synthetic arithmetic" -msgstr "Aritmética sintética" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:30 -msgid "Synthetic average" -msgstr "Media sintética" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 -msgid "Fixed value" -msgstr "Valor fijo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:117 -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:118 -msgid "Add module to operations as deduct" -msgstr "Añadir módulo a la operación como resta" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 -msgid "Add module to operations as multiplicate " -msgstr "Añadir módulo a la operación como multiplicador " - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 -msgid "Add module to operations as divide" -msgstr "Añadir módulo a la operación como divisor" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 -msgid "Remove selected modules" -msgstr "Eliminar los módulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:126 -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:127 -msgid "Remove selected modules from operations stack" -msgstr "Eliminar los módulos de las operaciones de apilado" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 -msgid "Move down selected modules" -msgstr "Mover hacia abajo los módulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 -msgid "Move up selected modules" -msgstr "Mover hacia arriba los módulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:173 -msgid "Select Service" -msgstr "Seleccionar servicio" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 -msgid "Netflow filter" -msgstr "Filtro de Netflow" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:195 -msgid "Select filter" -msgstr "Seleccionar filtro" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 -#: ../../enterprise/meta/include/functions_wizard_meta.php:679 -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:132 -#: ../../enterprise/meta/include/functions_wizard_meta.php:687 -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:144 -#: ../../enterprise/meta/include/functions_wizard_meta.php:592 -msgid "Check type" -msgstr "Comprueba el tipo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:150 -msgid "Requests" -msgstr "Peticiones" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:153 -msgid "Agent browser id" -msgstr "ID del navegador (Agent Browser)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:159 -msgid "HTTP auth (login)" -msgstr "Autentificación HTTP (inicio de sesión)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:162 -msgid "HTTP auth (password)" -msgstr "Autentificación HTTP (contraseña)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:169 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1086 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:176 -msgid "Proxy auth (login)" -msgstr "Autentificación Proxy (inicio de sesión)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:180 -msgid "Proxy auth (pass)" -msgstr "Autentificación proxy (contraseña)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:187 -msgid "Proxy auth (server)" -msgstr "Autentificación proxy (servidor)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:191 -msgid "Proxy auth (realm)" -msgstr "Autentificación proxy (área)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:198 -#: ../../enterprise/meta/include/functions_wizard_meta.php:694 -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:199 -#: ../../enterprise/meta/include/functions_wizard_meta.php:695 -msgid "Webchecks configuration is empty" -msgstr "La configuración de comprobaciones web está vacía." - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:200 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:201 -#: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../enterprise/meta/include/functions_wizard_meta.php:697 -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:203 -msgid "There isn't get or post" -msgstr "No se puede obtener o publicar." - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:204 -#: ../../enterprise/meta/include/functions_wizard_meta.php:699 -msgid "Web checks are built correctly" -msgstr "Las comprobaciones web se han efectuado correctamente." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:123 -msgid "Run performance tests" -msgstr "Realizar pruebas de rendimiento" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:134 -msgid "Target web site" -msgstr "Sitio web de destino" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:136 -msgid "" -"The url specified in this field is mandatory to retrieve performance stats." -msgstr "" -"La URL especificada en este campo es obligatoria para recuperar las " -"estadísticas de rendimiento." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:150 -msgid "target web site (http://...)" -msgstr "sitio web objetivo (http://...)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:157 -msgid "Execute tests from" -msgstr "Ejecutar pruebas desde" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:290 -msgid "Paste your selenium test, exported as HTML, here" -msgstr "Pega el test de selenium, exportado como HTML, aquí" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 -msgid "Add file" -msgstr "Añadir archivo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 -msgid "Upload your selenium test in html format" -msgstr "Sube el test de selenium en formato HTML" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:58 -msgid "Plug-in updated succesfully" -msgstr "Plugin actualizado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:58 -msgid "Plug-in cannot be updated" -msgstr "El plugin no se pudo actualizar." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:65 -msgid "Plug-in deleted succesfully" -msgstr "Plugin eliminado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:65 -msgid "Plug-in cannot be deleted" -msgstr "El plugin no se pudo eliminar." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:76 -#: ../../enterprise/godmode/policies/policy_plugins.php:67 -msgid "Plug-in added succesfully" -msgstr "Plugin añadido correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:76 -#: ../../enterprise/godmode/policies/policy_plugins.php:68 -msgid "Plug-in cannot be added" -msgstr "El plugin no se puede añadir." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:86 -msgid "Plug-in " -msgstr "Plugin " - -#: ../../enterprise/godmode/agentes/plugins_manager.php:86 -msgid "Plug-in cannot be " -msgstr "El plugin no puede ser " - -#: ../../enterprise/godmode/agentes/plugins_manager.php:101 -#: ../../enterprise/godmode/policies/policy_plugins.php:85 -msgid "New plug-in" -msgstr "Nuevo plugin" - -#: ../../enterprise/godmode/alerts/alert_events.php:47 -#: ../../enterprise/godmode/alerts/alert_events_list.php:57 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 -msgid "List event alerts" -msgstr "Lista de alertas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:52 -#: ../../enterprise/godmode/alerts/alert_events_list.php:61 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:55 -msgid "Builder event alert" -msgstr "Creador de alertas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:60 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:88 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:59 -msgid "List event rules" -msgstr "Lista de reglas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:84 -msgid "Configure event alert" -msgstr "Configurar alertas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:394 -msgid "Could not be created, please fill alert name" -msgstr "No se pudo crear; introduce un nombre de alerta." - -#: ../../enterprise/godmode/alerts/alert_events.php:548 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:980 -msgid "Rule evaluation mode" -msgstr "Modo de evaluación de reglas" - -#: ../../enterprise/godmode/alerts/alert_events.php:561 -msgid "Group by" -msgstr "Agrupar por" - -#: ../../enterprise/godmode/alerts/alert_events.php:645 -msgid "Please Read" -msgstr "Por favor, léelo." - -#: ../../enterprise/godmode/alerts/alert_events.php:645 -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, tienes que editarlas " -"desde la lista de alertas de eventos." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:71 -#: ../../enterprise/godmode/alerts/alert_events_list.php:121 -#: ../../enterprise/godmode/alerts/alert_events_list.php:137 -#: ../../enterprise/godmode/alerts/alert_events_list.php:156 -#: ../../enterprise/godmode/menu.php:237 -#: ../../enterprise/meta/general/main_header.php:334 -msgid "Event alerts" -msgstr "Alertas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:380 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 -msgid "Error processing action" -msgstr "Error al procesar la acción" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:394 -msgid "Error validating alert(s)" -msgstr "Error al validar la alerta" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:500 -msgid "Ac." -msgstr "Ac." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:568 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:434 -#: ../../enterprise/meta/include/functions_autoprovision.php:788 -msgid "Move up" -msgstr "Subir" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:580 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 -#: ../../enterprise/meta/include/functions_autoprovision.php:796 -msgid "Move down" -msgstr "Bajar" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:621 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2691 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3056 -msgid "No associated actions" -msgstr "No hay acciones asociadas" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:725 -msgid "View associated rules" -msgstr "Ver reglas asociadas" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:741 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2781 -msgid "There are no defined events alerts" -msgstr "No hay alertas de eventos definidas" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 -msgid "Event rules" -msgstr "Reglas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:103 -msgid "" -"This view will be removed in a future version. Please use \"Alert " -"correlation\" instead." -msgstr "" -"Esta vista se eliminará en una versión futura. Use \"Correlación de " -"alertas\" en su lugar." - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:225 -msgid "Error creating rule" -msgstr "Error al crear la regla" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:229 -msgid "Successfully created rule" -msgstr "Regla creada correctamente" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:244 -msgid "Error updating rule" -msgstr "Error al actualizar la regla" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:247 -msgid "Successfully updating rule" -msgstr "Regla actualizada correctamente" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:257 -msgid "Error updating rule operators" -msgstr "Error al actualizar los operadores de reglas" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 -msgid "Successfully update rule operators" -msgstr "Operadores actualizados correctamente" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 -msgid "(Agent)" -msgstr "(Agente)" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 -msgid "Operator" -msgstr "Operador" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:499 -msgid "Logic expression for these rules:" -msgstr "Expresión lógica para estas reglas:" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:507 -msgid "Update operators" -msgstr "Actualizar operadores" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:512 -msgid "There are no defined alert event rules" -msgstr "No hay reglas para alerta de eventos definidas" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 -msgid "Configure event rule" -msgstr "Configurar regla de evento" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -msgid "User comment" -msgstr "Comentario de usuario" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 -msgid "This field will be processed with regexp" -msgstr "Este campo será procesado con regexp" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "Window" -msgstr "Ventana" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:169 -msgid "Recursion:" -msgstr "Recursividad:" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 -msgid "Success: create the alerts." -msgstr "Alertas creadas correctamente" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 -msgid "Failed: create the alerts for this modules, please check." -msgstr "Error al crear las alertas para estos módulos. Resuelve el problema." - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 -msgid "Modules in policy" -msgstr "Módulos en la política" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:59 -msgid "Successfully copied " -msgstr "Copiado correctamente " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 -msgid " cannot be copied to " -msgstr " no se puede copiar a " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 -msgid " policy" -msgstr " política de" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:206 -msgid "To policies" -msgstr "a políticas" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 -msgid "No destiny policies to copy" -msgstr "No hay políticas de destino que copiar" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 -msgid "Success: remove the alerts." -msgstr "Alertas borradas correctamente" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "Error al borrar las alertas en estos módulos" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 -msgid "Modules agents in policy" -msgstr "Módulos de agentes en la política" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:181 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 -msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -"Single value, each Custom OIDs/Datas." -msgstr "" -"Búsqueda por descripción de los campos, OIS, Valores personalizados, Agentes " -"(IP) SNMP, Valor único, cada OIDs/Datos personalizado." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:200 -msgid "SNMP Alerts to be deleted" -msgstr "Alertas SNMP para añadir" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:208 -#: ../../enterprise/godmode/policies/policy_agents.php:517 -#: ../../enterprise/godmode/policies/policy_agents.php:525 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:393 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:169 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:569 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:389 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:232 -msgid "Filter agent" -msgstr "Filtrar agente" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 -msgid "Filter module" -msgstr "Filtro de módulo" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:394 -msgid "Updated modules on database" -msgstr "Módulos actualizados en la base de datos" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 -msgid "Agent configuration files updated" -msgstr "Archivo de configuración del agente actualizado correctamente" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:414 -#: ../../enterprise/godmode/policies/policy_queue.php:481 -#: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -msgid "Finished" -msgstr "Terminado" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:76 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:73 -msgid "Successful update the tags" -msgstr "Etiquetas actualizadas correctamente" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:77 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:74 -msgid "Unsuccessful update the tags" -msgstr "Error al actualizar las etiquetas" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 -msgid "Tags unused" -msgstr "Etiquetas sin usar" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:163 -msgid "Tags used" -msgstr "Etiquetas usadas" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:205 -#, php-format -msgid "Successfully updated alerts (%s / %s)" -msgstr "Alertas actualizadas correctamente (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:213 -#, php-format -msgid "Unsuccessfully updated alerts (%s / %s)" -msgstr "No se han podido actualizar las alertas (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -msgid "SNMP Alerts to be edit" -msgstr "Alertas SNMP para editar" - -#: ../../enterprise/godmode/massive/massive_operations.php:27 -#: ../../enterprise/godmode/menu.php:48 -msgid "Satellite operations" -msgstr "Operaciones Satélite" - -#: ../../enterprise/godmode/massive/massive_operations.php:48 -#: ../../enterprise/godmode/menu.php:36 -msgid "SNMP operations" -msgstr "Operaciones SNMP" - -#: ../../enterprise/godmode/massive/massive_operations.php:69 -#: ../../enterprise/godmode/menu.php:25 -msgid "Policies operations" -msgstr "Operaciones de las políticas" - -#: ../../enterprise/godmode/massive/massive_operations.php:83 -msgid "Bulk alerts policy add" -msgstr "Añadir alertas de políticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:84 -msgid "Bulk alerts policy delete" -msgstr "Eliminar alertas de políticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:85 -msgid "Bulk tags module policy edit" -msgstr "Editar las etiquetas de módulos en políticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:86 -msgid "Bulk modules policy tags edit" -msgstr "Editar las etiquetas de módulos en políticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:87 -msgid "Bulk modules policy add from agent" -msgstr "Añadir módulos de forma masiva a la política del agente" - -#: ../../enterprise/godmode/massive/massive_operations.php:88 -msgid "Bulk modules policy edit" -msgstr "Editas política masiva de módulos" - -#: ../../enterprise/godmode/massive/massive_operations.php:99 -msgid "Bulk alert SNMP delete" -msgstr "Eliminar alertas SNMP de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:100 -msgid "Bulk alert SNMP edit" -msgstr "Editar alertas SNMP de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:111 -msgid "Bulk Satellite modules edit" -msgstr "Editar módulos Satélite de forma masiva" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 -msgid "Modules unused" -msgstr "Módulos sin usar" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:151 -msgid "Modules used" -msgstr "Módulos usados" - -#: ../../enterprise/godmode/menu.php:16 -msgid "Manage Satellite Server" -msgstr "Gestionar servidor Satélite" - -#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:258 -msgid "Duplicate config" -msgstr "Duplicar configuración" - -#: ../../enterprise/godmode/menu.php:69 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:68 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:234 -#: ../../enterprise/include/functions_policies.php:3752 -#: ../../enterprise/meta/include/functions_components_meta.php:72 -#: ../../enterprise/meta/include/functions_components_meta.php:105 -msgid "Inventory modules" -msgstr "Módulos de inventario" - -#: ../../enterprise/godmode/menu.php:78 -#: ../../enterprise/meta/include/functions_components_meta.php:60 -#: ../../enterprise/meta/include/functions_components_meta.php:84 -msgid "Local components" -msgstr "Componentes locales" - -#: ../../enterprise/godmode/menu.php:87 -#: ../../enterprise/include/functions_policies.php:3708 -msgid "Manage policies" -msgstr "Gestionar políticas" - -#: ../../enterprise/godmode/menu.php:96 -msgid "Manage agent autoconfiguration" -msgstr "Administrar autoconfiguración" - -#: ../../enterprise/godmode/menu.php:105 -#: ../../enterprise/include/class/AgentRepository.class.php:596 -msgid "Software agents repository" -msgstr "Repositorio de agentes software" - -#: ../../enterprise/godmode/menu.php:152 -msgid "Mysql" -msgstr "Mysql" - -#: ../../enterprise/godmode/menu.php:153 -#: ../../enterprise/godmode/setup/setup.php:186 -#: ../../enterprise/include/class/Oracle.app.php:406 -msgid "Oracle" -msgstr "Oracle" - -#: ../../enterprise/godmode/menu.php:154 -#: ../../enterprise/include/class/VMware.app.php:458 -msgid "VMware" -msgstr "VMware" - -#: ../../enterprise/godmode/menu.php:156 -#: ../../enterprise/godmode/wizards/Applications.class.php:154 -#: ../../enterprise/godmode/wizards/Applications.class.php:162 -msgid "Applications" -msgstr "Aplicaciones" - -#: ../../enterprise/godmode/menu.php:167 -msgid "Amazon Web Services" -msgstr "Amazon Web Services" - -#: ../../enterprise/godmode/menu.php:168 -msgid "Microsoft Azure" -msgstr "Microsoft Azure" - -#: ../../enterprise/godmode/menu.php:169 -#: ../../enterprise/godmode/wizards/Cloud.class.php:182 -#: ../../enterprise/godmode/wizards/Cloud.class.php:191 -#: ../../enterprise/include/class/Aws.cloud.php:94 -#: ../../enterprise/include/class/Aws.cloud.php:141 -#: ../../enterprise/include/class/Azure.cloud.php:139 -#: ../../enterprise/include/class/Azure.cloud.php:183 -msgid "Cloud" -msgstr "Nube" - -#: ../../enterprise/godmode/menu.php:184 -msgid "New console task" -msgstr "Nueva tarea de consola" - -#: ../../enterprise/godmode/menu.php:194 -msgid "Enterprise ACL Setup" -msgstr "Configuración ACL Enterprise" - -#: ../../enterprise/godmode/menu.php:203 -msgid "Skins" -msgstr "Apariencia" - -#: ../../enterprise/godmode/menu.php:213 -msgid "Manage database HA" -msgstr "Gestionar la base de datos de alta disponibilidad" - -#: ../../enterprise/godmode/menu.php:223 -#: ../../enterprise/godmode/servers/manage_export.php:43 -#: ../../enterprise/godmode/servers/manage_export_form.php:58 -msgid "Export targets" -msgstr "Servidores de exportación" - -#: ../../enterprise/godmode/menu.php:233 -msgid "Alert correlation" -msgstr "Correlación de alertas" - -#: ../../enterprise/godmode/menu.php:249 -msgid "Log Collector" -msgstr "Colector de logs" - -#: ../../enterprise/godmode/menu.php:267 -msgid "Password policy" -msgstr "Política de contraseñas" - -#: ../../enterprise/godmode/modules/configure_local_component.php:137 -msgid "Update Local Component" -msgstr "Actualizar el componente local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:139 -msgid "Create Local Component" -msgstr "Crear componente local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:186 -msgid "Throw unknown events" -msgstr "Generar eventos desconocidos" - -#: ../../enterprise/godmode/modules/configure_local_component.php:577 -msgid "Macros" -msgstr "Macros" - -#: ../../enterprise/godmode/modules/local_components.php:99 -msgid "Local component management" -msgstr "Gestión de componentes locales" - -#: ../../enterprise/godmode/modules/local_components.php:486 -msgid "Search by name, description or data, list matches." -msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:35 -msgid "To manage inventory plugin you must activate centralized management" -msgstr "" -"Para administrar el plugin de inventario active la gestión centralizada" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:73 -msgid "" -"This console is not manager of this environment,\n" -" please manage this feature from centralized manager console " -"(Metaconsole)." -msgstr "Esta consola no gestiona este entorno." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:120 -msgid "Successfully created inventory module" -msgstr "Inventario de módulo creado correctamente" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:123 -#: ../../enterprise/include/functions_enterprise_api.php:4584 -msgid "Error creating inventory module" -msgstr "Error al crear módulo del inventario" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:267 -msgid "Successfully created inventory module in the node" -msgstr "Módulo de inventario creado correctamente en el nodo" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:270 -msgid "Error creating inventory module in the node" -msgstr "Error al crear módulo de inventario en el nodo" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:372 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 -msgid "Interpreter" -msgstr "Intérprete" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:381 -msgid "No inventory modules defined" -msgstr "No hay módulos de inventario definidos" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:402 -msgid "Local module" -msgstr "Módulo local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:404 -msgid "Remote/Local" -msgstr "Remoto/Local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:420 -msgid "Deploy to the nodes" -msgstr "Desplegar a los nodos" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:464 -msgid "" -"The configurations of inventory modules from the nodes have been unified. \n" -"\t\tFrom this point on, changes to the inventory scripts must be made " -"through this screen." -msgstr "" -"Las configuraciones de los módulos de inventario de los nodos se han " -"unificado." - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 -msgid "Left blank for the LOCAL inventory modules" -msgstr "Dejar en blanco para los módulos de inventario LOCALES" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -msgid "Block Mode" -msgstr "Modo bloqueo" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 -msgid "separate fields with " -msgstr "Separar campos con " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 -msgid "" -"Here is placed the script for the REMOTE inventory modules Local inventory " -"modules don't use this field" -msgstr "" -"Aquí se coloca el script para los módulos de inventario REMOTOS. Los módulos " -"de inventario locales no usan este campo." - -#: ../../enterprise/godmode/policies/policies.php:193 -msgid "Policy name already exists" -msgstr "El nombre de la política ya existe." - -#: ../../enterprise/godmode/policies/policies.php:258 -msgid "Policies Management" -msgstr "Gestión de políticas" - -#: ../../enterprise/godmode/policies/policies.php:277 -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:278 -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:352 -msgid "a" -msgstr "a" - -#: ../../enterprise/godmode/policies/policies.php:517 -#: ../../enterprise/godmode/policies/policy_linking.php:129 -#: ../../enterprise/include/functions_policies.php:3776 -msgid "Linking" -msgstr "Enlazando" - -#: ../../enterprise/godmode/policies/policies.php:530 -msgid "Agent Wizard" -msgstr "Asistente de agente" - -#: ../../enterprise/godmode/policies/policies.php:539 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:41 -#: ../../enterprise/include/functions_policies.php:3768 -msgid "External alerts" -msgstr "Alertas externas" - -#: ../../enterprise/godmode/policies/policies.php:543 -#: ../../enterprise/godmode/policies/policy.php:49 -#: ../../enterprise/include/functions_policies.php:3792 -msgid "Queue" -msgstr "Cola" - -#: ../../enterprise/godmode/policies/policies.php:607 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "Una política con agentes no se puede eliminar. Púrgala primero." - -#: ../../enterprise/godmode/policies/policies.php:615 -msgid "Deleting all policy agents" -msgstr "Eliminando todos los agentes de las políticas" - -#: ../../enterprise/godmode/policies/policies.php:618 -msgid "All the policy agents will be deleted" -msgstr "Todos los agentes de las políticas serán eliminados." - -#: ../../enterprise/godmode/policies/policies.php:627 -msgid "Delete all agents" -msgstr "Eliminar todos los agentes" - -#: ../../enterprise/godmode/policies/policy.php:160 -#: ../../enterprise/godmode/policies/policy.php:206 -#: ../../enterprise/meta/advanced/policymanager.apply.php:137 -#: ../../enterprise/meta/advanced/policymanager.apply.php:141 -msgid "Operation successfully added to the queue" -msgstr "Operación añadida correctamente a la cola" - -#: ../../enterprise/godmode/policies/policy.php:164 -#: ../../enterprise/godmode/policies/policy.php:207 -#: ../../enterprise/include/functions_enterprise_api.php:3338 -#: ../../enterprise/meta/advanced/policymanager.apply.php:145 -#: ../../enterprise/meta/advanced/policymanager.apply.php:149 -#: ../../enterprise/meta/advanced/policymanager.apply.php:153 -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:168 -#: ../../enterprise/godmode/policies/policy.php:210 -#: ../../enterprise/include/functions_enterprise_api.php:3341 -#: ../../enterprise/meta/advanced/policymanager.apply.php:129 -msgid "Duplicated or incompatible operation in the queue" -msgstr "Operación duplicada o incompatible en la cola" - -#: ../../enterprise/godmode/policies/policy_agents.php:114 -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:118 -#: ../../enterprise/godmode/policies/policy_agents.php:140 -#: ../../enterprise/godmode/policies/policy_alerts.php:202 -#: ../../enterprise/godmode/policies/policy_collections.php:80 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:111 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:138 -#: ../../enterprise/godmode/policies/policy_modules.php:1339 -#: ../../enterprise/godmode/policies/policy_plugins.php:51 -msgid "Successfully reverted deletion" -msgstr "Eliminación revertida correctamente" - -#: ../../enterprise/godmode/policies/policy_agents.php:119 -#: ../../enterprise/godmode/policies/policy_agents.php:141 -#: ../../enterprise/godmode/policies/policy_alerts.php:203 -#: ../../enterprise/godmode/policies/policy_collections.php:81 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:112 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 -#: ../../enterprise/godmode/policies/policy_modules.php:1340 -#: ../../enterprise/godmode/policies/policy_plugins.php:52 -msgid "Could not be reverted" -msgstr "No pudo ser revertido" - -#: ../../enterprise/godmode/policies/policy_agents.php:136 -msgid "" -"Successfully added to delete pending groups. Will be deleted in the next " -"policy application." -msgstr "" -"Añadido correctamente para eliminar grupos pendientes. Se eliminará en la " -"siguiente aplicación de política." - -#: ../../enterprise/godmode/policies/policy_agents.php:189 -#: ../../enterprise/godmode/policies/policy_agents.php:332 -msgid "Successfully added to delete queue" -msgstr "Correctamente añadido a la lista de eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:190 -#: ../../enterprise/godmode/policies/policy_agents.php:333 -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:239 -msgid "Successfully deleted from delete pending agents" -msgstr "Eliminado correctamente de los agentes pendientes de eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:240 -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:419 -msgid "Apply to" -msgstr "Aplicar a" - -#: ../../enterprise/godmode/policies/policy_agents.php:534 -msgid "Agents in Policy" -msgstr "Agentes en la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:556 -msgid "Groups in Policy" -msgstr "Grupos en la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:630 -msgid "Add agents to policy" -msgstr "Añadir agentes a la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:638 -msgid "Delete agents from policy" -msgstr "Eliminar agentes de la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:697 -msgid "Applied" -msgstr "Aplicado" - -#: ../../enterprise/godmode/policies/policy_agents.php:698 -msgid "Not applied" -msgstr "No aplicado" - -#: ../../enterprise/godmode/policies/policy_agents.php:709 -#: ../../enterprise/operation/agentes/policy_view.php:323 -msgid "R." -msgstr "R." - -#: ../../enterprise/godmode/policies/policy_agents.php:712 -msgid "Unlinked modules" -msgstr "Módulos sin enlazar" - -#: ../../enterprise/godmode/policies/policy_agents.php:712 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:715 -#: ../../enterprise/godmode/policies/policy_agents.php:1078 -#: ../../enterprise/operation/agentes/policy_view.php:52 -msgid "Last application" -msgstr "Última aplicación" - -#: ../../enterprise/godmode/policies/policy_agents.php:716 -#: ../../enterprise/godmode/policies/policy_agents.php:1080 -msgid "Add to delete queue" -msgstr "Añadir a la lista de eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:716 -#: ../../enterprise/godmode/policies/policy_agents.php:1080 -msgid "D." -msgstr "D." - -#: ../../enterprise/godmode/policies/policy_agents.php:788 -msgid "This agent can not be remotely configured" -msgstr "Este agente no puede ser configurado remotamente." - -#: ../../enterprise/godmode/policies/policy_agents.php:827 -#: ../../enterprise/godmode/policies/policy_agents.php:1169 -msgid "Process deletion" -msgstr "Borrado del proceso" - -#: ../../enterprise/godmode/policies/policy_agents.php:838 -#: ../../enterprise/godmode/policies/policy_agents.php:1180 -#: ../../enterprise/godmode/policies/policy_queue.php:235 -msgid "Add to apply queue" -msgstr "Añadir a la cola para aplicarlo" - -#: ../../enterprise/godmode/policies/policy_agents.php:871 -#: ../../enterprise/godmode/policies/policy_agents.php:1222 -#: ../../enterprise/godmode/policies/policy_alerts.php:464 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:288 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:280 -#: ../../enterprise/godmode/policies/policy_modules.php:1590 -msgid "Undo deletion" -msgstr "Deshacer eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:889 -#: ../../enterprise/godmode/policies/policy_agents.php:1123 -#: ../../enterprise/operation/agentes/policy_view.php:66 -msgid "Policy applied" -msgstr "Política aplicada" - -#: ../../enterprise/godmode/policies/policy_agents.php:895 -#: ../../enterprise/godmode/policies/policy_agents.php:1129 -msgid "Need apply" -msgstr "Necesita aplicarse" - -#: ../../enterprise/godmode/policies/policy_agents.php:905 -#: ../../enterprise/godmode/policies/policy_agents.php:1138 -msgid "Applying policy" -msgstr "Aplicando política" - -#: ../../enterprise/godmode/policies/policy_agents.php:915 -#: ../../enterprise/godmode/policies/policy_agents.php:1146 -msgid "Deleting from policy" -msgstr "Eliminando de la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:1026 -msgid "Add groups to policy" -msgstr "Añadir grupos a política" - -#: ../../enterprise/godmode/policies/policy_agents.php:1034 -msgid "Delete groups from policy" -msgstr "Eliminar grupos de política" - -#: ../../enterprise/godmode/policies/policy_agents.php:1077 -msgid "Total agents in policy group" -msgstr "Total de agentes en el grupo de política" - -#: ../../enterprise/godmode/policies/policy_agents.php:1077 -msgid "T." -msgstr "T." - -#: ../../enterprise/godmode/policies/policy_alerts.php:192 -msgid " created successfuly" -msgstr " creado correctamente" - -#: ../../enterprise/godmode/policies/policy_alerts.php:192 -msgid " could not be created" -msgstr " no se ha podido crear" - -#: ../../enterprise/godmode/policies/policy_alerts.php:198 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:107 -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:223 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:155 -msgid "Added action successfuly" -msgstr "Acción añadida correctamente" - -#: ../../enterprise/godmode/policies/policy_alerts.php:240 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:134 -msgid "Deleted action successfuly" -msgstr "Acción eliminada correctamente" - -#: ../../enterprise/godmode/policies/policy_alerts.php:548 -msgid "There is not alerts configured in this policy." -msgstr "No hay alertas configuradas en esta política." - -#: ../../enterprise/godmode/policies/policy_alerts.php:587 -msgid "Policy module" -msgstr "Módulo de la política" - -#: ../../enterprise/godmode/policies/policy_collections.php:76 -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:204 -#: ../../enterprise/godmode/policies/policy_collections.php:277 -#: ../../enterprise/operation/agentes/collection_view.php:111 -#: ../../enterprise/operation/agentes/collection_view.php:112 -#: ../../enterprise/operation/agentes/policy_view.php:172 -msgid "Outdate" -msgstr "Obsoleto" - -#: ../../enterprise/godmode/policies/policy_collections.php:221 -msgid "Collections in policy" -msgstr "Colecciones en la política" - -#: ../../enterprise/godmode/policies/policy_collections.php:225 -msgid "Collections to add" -msgstr "Colecciones a añadir" - -#: ../../enterprise/godmode/policies/policy_collections.php:296 -msgid "No available collection to add" -msgstr "No hay colecciones a añadir disponibles" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:94 -msgid "Created successfuly" -msgstr "Creado correctamente" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 -msgid "Duplicated alert" -msgstr "Alerta duplicada" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 -msgid "Modules in policy per agents" -msgstr "Módulos en política por agentes" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 -msgid "There is not external alerts configured in this policy" -msgstr "No hay alertas externas configuradas en esta política" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:342 -msgid "Modules in policy agents" -msgstr "Módulos en agentes de política" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 -msgid "The complete and exact name of the module must be specified" -msgstr "Especifique el nombre completo y exacto del módulo." - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:370 -msgid "Alert Template" -msgstr "Plantilla de alerta" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 -msgid "Module is not selected" -msgstr "No se ha seleccionado ningún módulo" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:132 -#: ../../enterprise/godmode/policies/policy_modules.php:1322 -#: ../../enterprise/godmode/policies/policy_modules.php:1335 -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:247 -msgid "There are no defined inventory modules" -msgstr "No hay módulos de inventario definidos" - -#: ../../enterprise/godmode/policies/policy_linking.php:28 -msgid "Linking modules" -msgstr "Módulos enlazados" - -#: ../../enterprise/godmode/policies/policy_linking.php:87 -msgid "Error: Update linking modules to policy" -msgstr "Error al actualizar los módulos enlazados a la política" - -#: ../../enterprise/godmode/policies/policy_linking.php:89 -msgid "Success: Update linking modules to policy" -msgstr "Módulos enlazados a la política correctamente" - -#: ../../enterprise/godmode/policies/policy_linking.php:99 -msgid "Free text for filter (*)" -msgstr "Texto libre para filtro (*)" - -#: ../../enterprise/godmode/policies/policy_linking.php:100 -msgid "Free text for filter" -msgstr "Texto libre para filtro" - -#: ../../enterprise/godmode/policies/policy_linking.php:110 -msgid "Cannot retrieve unlinked modules" -msgstr "No se han podido obtener módulos no enlazados" - -#: ../../enterprise/godmode/policies/policy_linking.php:112 -msgid "There are no defined modules unlinked" -msgstr "No hay módulos definidos desvinculados" - -#: ../../enterprise/godmode/policies/policy_linking.php:114 -msgid "List of modules unlinked" -msgstr "Lista de módulos sin enlazar" - -#: ../../enterprise/godmode/policies/policy_modules.php:295 -msgid "" -"If you change this description, you must change into the text of Data " -"configuration." -msgstr "" -"Si cambias esta descripción, tienes que cambiarla en el texto de la " -"configuración de datos." - -#: ../../enterprise/godmode/policies/policy_modules.php:368 -msgid "Invalid module type." -msgstr "Tipo de módulo inválido" - -#: ../../enterprise/godmode/policies/policy_modules.php:376 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 -msgid "Edit module" -msgstr "Editar módulo" - -#: ../../enterprise/godmode/policies/policy_modules.php:521 -msgid "Could not be added module(s). You must select a policy" -msgstr "El módulo no se pudo añadir. Tienes que seleccionar una política." - -#: ../../enterprise/godmode/policies/policy_modules.php:554 -#, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "Módulo(s) (%s/%s) añadido(s) correctamente a la política %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:560 -#, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "El módulo (%s/%s) no se pudo añadir a la política %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:909 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 -msgid "Successfully added module." -msgstr "Módulo añadido correctamente" - -#: ../../enterprise/godmode/policies/policy_modules.php:910 -msgid "Could not be added module." -msgstr "El módulo no se pudo añadir." - -#: ../../enterprise/godmode/policies/policy_modules.php:1288 -msgid "" -"The module type in Data configuration is empty, take from combo box of form." -msgstr "" -"El tipo de datos en la configuración está vacío, elige uno del combo del " -"formulario." - -#: ../../enterprise/godmode/policies/policy_modules.php:1292 -msgid "" -"The module name in Data configuration is empty, take from text field of form." -msgstr "" -"El nombre del módulo en la configuración está vacío, elige uno del combo del " -"formulario." - -#: ../../enterprise/godmode/policies/policy_modules.php:1326 -msgid "Could not be added to deleted all modules." -msgstr "No se pudo añadir a la lista para eliminar todos los módulos." - -#: ../../enterprise/godmode/policies/policy_modules.php:1431 -msgid "Successfully duplicate the module." -msgstr "Módulo duplicado correctamente" - -#: ../../enterprise/godmode/policies/policy_modules.php:1519 -msgid "Local component" -msgstr "Componente local" - -#: ../../enterprise/godmode/policies/policy_modules.php:1534 -#: ../../enterprise/godmode/policies/policy_modules.php:1535 -msgid "Disabled module" -msgstr "Módulo deshabilitado" - -#: ../../enterprise/godmode/policies/policy_modules.php:1541 -#: ../../enterprise/godmode/policies/policy_modules.php:1542 -msgid "Enabled module" -msgstr "Módulo habilitado" - -#: ../../enterprise/godmode/policies/policy_modules.php:1636 -msgid "There are no defined modules" -msgstr "No hay módulos definidos" - -#: ../../enterprise/godmode/policies/policy_modules.php:1656 -msgid "Copy selected modules to policy: " -msgstr "Copiar módulos seleccionados a la política: " - -#: ../../enterprise/godmode/policies/policy_modules.php:1859 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "¿Estás seguro de que quieres copiar los módulos en la política?\\n" - -#: ../../enterprise/godmode/policies/policy_modules.php:1879 -msgid "Please select any module to copy" -msgstr "Por favor, selecciona algún módulo para copiar." - -#: ../../enterprise/godmode/policies/policy_queue.php:62 -#: ../../enterprise/meta/advanced/policymanager.queue.php:58 -msgid "Operation successfully deleted from the queue" -msgstr "Operación eliminada correctamente de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:63 -#: ../../enterprise/meta/advanced/policymanager.queue.php:59 -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:108 -msgid "Operations successfully deleted from the queue" -msgstr "Operaciones eliminadas correctamente de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:109 -msgid "Operations cannot be deleted from the queue" -msgstr "Las operaciones no pueden ser eliminadas de la cola." - -#: ../../enterprise/godmode/policies/policy_queue.php:185 -#, php-format -msgid "Some nodes (%s) are unreachebles. Some information may be missing." -msgstr "Algunos nódulos (%s) están inaccesible. Podría faltar información." - -#: ../../enterprise/godmode/policies/policy_queue.php:220 -msgid "Update pending" -msgstr "Actualización pendiente" - -#: ../../enterprise/godmode/policies/policy_queue.php:222 -msgid "Update pending agents" -msgstr "Actualizar agentes pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:238 -msgid "Add to apply queue only for database" -msgstr "Añadir a la cola de aplicación solo de cambios de base de datos" - -#: ../../enterprise/godmode/policies/policy_queue.php:245 -msgid "Update pending groups" -msgstr "Actualizar grupos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:252 -msgid "Link pending modules" -msgstr "Enlazar módulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:257 -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:260 -msgid "Unlink pending modules" -msgstr "Desenlazar módulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:265 -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:270 -msgid "Delete pending" -msgstr "Eliminación pendiente" - -#: ../../enterprise/godmode/policies/policy_queue.php:272 -msgid "Delete pending agents" -msgstr "Eliminar agentes pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:277 -#: ../../enterprise/godmode/policies/policy_queue.php:285 -#: ../../enterprise/godmode/policies/policy_queue.php:293 -#: ../../enterprise/godmode/policies/policy_queue.php:301 -#: ../../enterprise/godmode/policies/policy_queue.php:309 -#: ../../enterprise/godmode/policies/policy_queue.php:317 -#: ../../enterprise/godmode/policies/policy_queue.php:325 -#: ../../enterprise/godmode/policies/policy_queue.php:333 -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:280 -msgid "Delete pending groups" -msgstr "Eliminar grupos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:288 -msgid "Delete pending modules" -msgstr "Eliminar módulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:296 -msgid "Delete pending inventory modules" -msgstr "Eliminar módulos de inventario pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:304 -msgid "Delete pending alerts" -msgstr "Eliminar alertas pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:312 -msgid "Delete pending external alerts" -msgstr "Eliminar alertas externas pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:320 -msgid "Delete pending file collections" -msgstr "Eliminar colecciones de archivos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:328 -msgid "Delete pending plugins" -msgstr "Eliminar plugins pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:339 -msgid "Advices" -msgstr "Consejos" - -#: ../../enterprise/godmode/policies/policy_queue.php:342 -msgid "Queue summary" -msgstr "Resumen de cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:420 -#: ../../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:421 -#: ../../enterprise/godmode/policies/policy_queue.php:511 -#: ../../enterprise/meta/advanced/policymanager.queue.php:219 -#: ../../enterprise/meta/advanced/policymanager.queue.php:311 -msgid "Apply (only database)" -msgstr "Aplicar (solo en la base de datos)" - -#: ../../enterprise/godmode/policies/policy_queue.php:431 -#: ../../enterprise/meta/advanced/policymanager.queue.php:229 -msgid "Complete" -msgstr "Completo" - -#: ../../enterprise/godmode/policies/policy_queue.php:432 -#: ../../enterprise/meta/advanced/policymanager.queue.php:230 -msgid "Incomplete" -msgstr "Incompleto" - -#: ../../enterprise/godmode/policies/policy_queue.php:447 -msgid "Queue filter" -msgstr "Filtros de cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:541 -#: ../../enterprise/meta/advanced/policymanager.queue.php:337 -msgid "Delete from queue" -msgstr "Eliminar de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:555 -msgid "Empty queue" -msgstr "Vaciar cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:572 -msgid "This operation could take a long time" -msgstr "Esta operación podría tardar bastante tiempo." - -#: ../../enterprise/godmode/policies/policy_queue.php:583 -msgid "Apply all" -msgstr "Aplicar todo" - -#: ../../enterprise/godmode/policies/policy_queue.php:591 -msgid "Delete all" -msgstr "Eliminar todo" - -#: ../../enterprise/godmode/policies/policy_plugins.php:37 -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:38 -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:145 -msgid "There are no defined plugins" -msgstr "No hay plugins definidos" - -#: ../../enterprise/godmode/reporting/aws_view.php:53 -msgid "Instance" -msgstr "Instancia" - -#: ../../enterprise/godmode/reporting/aws_view.php:55 -msgid "IO read" -msgstr "Lectura IO" - -#: ../../enterprise/godmode/reporting/aws_view.php:56 -msgid "IO write" -msgstr "Escritura IO" - -#: ../../enterprise/godmode/reporting/aws_view.php:57 -msgid "Disk read" -msgstr "Lectura de disco" - -#: ../../enterprise/godmode/reporting/aws_view.php:58 -msgid "Disk write" -msgstr "Escritura en disco" - -#: ../../enterprise/godmode/reporting/aws_view.php:59 -msgid "Network in" -msgstr "Entrada de red" - -#: ../../enterprise/godmode/reporting/aws_view.php:60 -msgid "Network out" -msgstr "Salida de red" - -#: ../../enterprise/godmode/reporting/aws_view.php:106 -#: ../../enterprise/godmode/reporting/aws_view.php:133 -#: ../../enterprise/operation/menu.php:45 -msgid "AWS View" -msgstr "Vista AWS" - -#: ../../enterprise/godmode/reporting/aws_view.php:128 -msgid "Failed to retrieve AWS information using selected account." -msgstr "" -"No se ha podido obtener información de AWS a través de la cuenta " -"seleccionada." - -#: ../../enterprise/godmode/reporting/aws_view.php:141 -msgid "AWS credentials not validated." -msgstr "No se han validado los credenciales de AWS." - -#: ../../enterprise/godmode/reporting/aws_view.php:145 -msgid "Discovery Cloud: AWS" -msgstr "Discovery Cloud: AWS" - -#: ../../enterprise/godmode/reporting/aws_view.php:150 -msgid "Please, select an account: " -msgstr "Seleccione una cuenta: " - -#: ../../enterprise/godmode/reporting/aws_view.php:159 -msgid "CREATE CLOUD MONITORING DISCOVERY TASK" -msgstr "CREAR TAREA DE DISCOVERY DE MONITORIZACIÓN EN LA NUBE" - -#: ../../enterprise/godmode/reporting/aws_view.php:162 -msgid "" -"Within this view you will find information collected using Discovery Cloud " -"AWS task. You will be able to see the most relevant information about your " -"infrastructure, such as the current cost of your contracted services, the " -"number of instances per region or resource usage metrics. In order to " -"collect this information you must create a Cloud Monitoring Discovery task." -msgstr "" -"En esta vista encontrará la información recogida mediante la tarea de " -"Discovery Cloud AWS. Podrá ver la información más relevante sobre su " -"infraestructura, como el coste actual de los servicios contratados, el " -"número de instancias por región o las métricas de uso de los recursos. Para " -"recoger esta información, cree una tarea de Cloud Monitoring Discovery." - -#: ../../enterprise/godmode/reporting/aws_view.php:165 -msgid "Press the create button to begin." -msgstr "Pinche en el botón \"crear\" para comenzar." - -#: ../../enterprise/godmode/reporting/aws_view.php:194 -msgid "Instance table" -msgstr "Tabla de instancias" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:29 -msgid "Cluster edit" -msgstr "Edición de cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:31 -msgid "Cluster" -msgstr "Clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:35 -msgid "Select at least two agents." -msgstr "Seleccione al menos dos agentes" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:39 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:603 -msgid "Please set agent distinct than " -msgstr "Por favor, escoge un agente distinto a " - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:61 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:65 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:69 -msgid "Cluster settings" -msgstr "Ajustes de clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:87 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:92 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:96 -msgid "Cluster agents" -msgstr "Agentes del clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:114 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:119 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:123 -msgid "A/A modules" -msgstr "Módulos A/A" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:141 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:146 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:150 -msgid "A/A modules limits" -msgstr "Límites de módulos A/A" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:199 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:204 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:208 -msgid "A/P modules" -msgstr "Módulos A/P" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:226 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:231 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:235 -msgid "Critical A/P modules" -msgstr "Módulos A/P críticos" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:278 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:351 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:460 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:931 -#: ../../enterprise/godmode/reporting/cluster_list.php:187 -msgid "Cluster name" -msgstr "Nombre del clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:278 -msgid "" -"An agent with the same name of the cluster will be created, as well a " -"special service with the same name" -msgstr "" -"Se creará un agente con el mismo nombre que el clúster y un servicio " -"especial con el mismo nombre." - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:281 -msgid "Should not be empty" -msgstr "No debería estar vacío." - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:287 -msgid "Cluster type" -msgstr "Tipo de clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:292 -msgid "Active - Active" -msgstr "Activo - Activo" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:293 -msgid "Active - Pasive" -msgstr "Activo - Pasivo" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:336 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:445 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:583 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1067 -msgid "Update and view cluster" -msgstr "Actualizar y ver el clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:356 -msgid "Adding agents to the cluster" -msgstr "Añadiendo agentes al clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:363 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:375 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:472 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:484 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:943 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:955 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:635 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:637 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:410 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:420 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:140 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:145 -msgid "Select all" -msgstr "Seleccionar todo" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:378 -msgid "Agents in Cluster" -msgstr "Agentes en el clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:428 -msgid "Add agents to cluster" -msgstr "Añadir agentes al clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:430 -msgid "Drop agents to cluster" -msgstr "Desplazar agentes al clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:443 -msgid "Update and next" -msgstr "Actualizar y pasar al siguiente" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:465 -msgid "Adding common modules" -msgstr "Añadiendo módulos comunes" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:475 -msgid "Common in agents" -msgstr "Módulos comunes en los agentes" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:487 -msgid "Added common modules" -msgstr "Módulos comunes añadidos" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:524 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:991 -msgid "Add modules to cluster" -msgstr "Añadir módulos al clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:526 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:993 -msgid "Drop modules to cluster" -msgstr "Desplazar módulos al clúster" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:538 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:581 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1005 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1065 -msgid "Update and Next" -msgstr "Actualizar y pasar al siguiente" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:552 -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:25 -#: ../../enterprise/godmode/reporting/cluster_view.php:398 -msgid "Common modules" -msgstr "Módulos comunes" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:553 -msgid "Critical if equal or greater than" -msgstr "Estado crítico si igual o superior a" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:554 -msgid "Warning if equal or greater than" -msgstr "Estado de advertencia si igual o superior a" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:936 -msgid "Adding balanced modules" -msgstr "Añadiendo módulos equilibrados" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:958 -msgid "Added balanced modules" -msgstr "Módulos equilibrados añadidos" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1031 -msgid "Balanced modules settings" -msgstr "Ajustes de módulos equilibrados" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1036 -msgid "Balanced module" -msgstr "Módulo equilibrado" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1037 -msgid "is critical module" -msgstr "es un módulo en estado crítico" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1660 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1674 -msgid "Cluster Builder Information" -msgstr "Información del desarrollador del cluster" - -#: ../../enterprise/godmode/reporting/cluster_builder.php:43 -#: ../../enterprise/godmode/reporting/cluster_view.php:35 -msgid "Clusters list" -msgstr "Lista de clústers" - -#: ../../enterprise/godmode/reporting/cluster_builder.php:49 -msgid "Cluster view" -msgstr "Visor de clústers" - -#: ../../enterprise/godmode/reporting/cluster_list.php:279 -msgid "Create cluster" -msgstr "Crear un clúster" - -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:23 -#: ../../enterprise/godmode/reporting/cluster_view.php:320 -msgid "Balanced modules" -msgstr "Módulos equilibrados" - -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:191 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:132 -msgid "No init" -msgstr "No iniciados" - -#: ../../enterprise/godmode/reporting/cluster_view.php:42 -msgid "Cluster editor" -msgstr "Editor de clústers" - -#: ../../enterprise/godmode/reporting/cluster_view.php:46 -msgid "Cluster detail" -msgstr "Detalle del clúster" - -#: ../../enterprise/godmode/reporting/cluster_view.php:147 -msgid "Cluster status" -msgstr "Estado del clúster" - -#: ../../enterprise/godmode/reporting/cluster_view.php:205 -msgid "Reload cluster" -msgstr "Actualizar el clúster" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:43 -msgid "Not created. Blank name" -msgstr "No creado. Nombre vacío." - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:78 -#: ../../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:141 -msgid "Template updated successfully" -msgstr "Plantilla actualizada correctamente" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:142 -msgid "Error updating template" -msgstr "Error al actualizar la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 -msgid "3 hours" -msgstr "3 horas" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 -msgid "4 days" -msgstr "4 días" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 -msgid "2 months" -msgstr "2 meses" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:156 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3224 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3378 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3449 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3854 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3999 -#: ../../enterprise/operation/log/log_viewer.php:337 -msgid "Exact match" -msgstr "Coincidencia exacta" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 -msgid "Decrease Weight" -msgstr "Reducir el peso" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 -msgid "Increase Weight" -msgstr "Incrementar el peso" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:79 -msgid "Graph template management" -msgstr "Gestión de plantillas gráficas" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:195 -msgid "There are no defined graph templates" -msgstr "No hay plantillas gráficas definidas" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:200 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:137 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 -#: ../../enterprise/godmode/reporting/visual_console_template.php:180 -msgid "Create template" -msgstr "Crear plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:140 -msgid "Cleanup sucessfully" -msgstr "Limpieza correcta" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:143 -msgid "Cleanup error" -msgstr "Error al borrar contenido" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:103 -msgid "Wizard template" -msgstr "Plantilla de Wizard" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:259 -msgid "Clean up template" -msgstr "Vaciar la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:635 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:413 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:249 -msgid "Agents available" -msgstr "Agentes disponibles" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:637 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:160 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:423 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:255 -msgid "Agents to apply" -msgstr "Agentes para aplicar" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:445 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:272 -msgid "Add agents to template" -msgstr "Añadir agentes a la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:215 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:449 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:274 -msgid "Undo agents to template" -msgstr "Deshacer añadir agentes a la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:467 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:292 -msgid "Apply template" -msgstr "Aplicar plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:599 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:629 -msgid "Please set template distinct than " -msgstr "Por favor, introduce una plantilla distinta a " - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:422 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:624 -msgid "" -"This will be delete all reports created in previous template applications. " -"Do you want to continue?" -msgstr "" -"Esta acción eliminará todos los informes creados en aplicaciones anteriores " -"de plantillas. ¿Quieres continuar?" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:53 -#: ../../enterprise/godmode/reporting/mysql_builder.php:144 -msgid "Custom Mysql template builder" -msgstr "Creador de plantillas personalizadas para MySQL" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:87 -msgid "Create custom SQL" -msgstr "Crear SQL personalizado" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:97 -msgid ": Create new custom" -msgstr "Crear nueva consulta personalizada:" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:115 -msgid "Create new custom" -msgstr "Crear nueva consulta personalizada" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:147 -msgid "Successfully operation" -msgstr "Operación realizada correctamente" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:147 -msgid "Could not be operation" -msgstr "La operación no pudo completarse." - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:77 -msgid "Advance Reporting" -msgstr "Informes avanzados" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 -msgid "Page orientation" -msgstr "Orientación de página" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:104 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 -#: ../../enterprise/meta/advanced/metasetup.visual.php:546 -msgid "" -"The path of custom logos is 'images/custom_logo' in the console " -"installation. You can upload more files (ONLY JPEG AND PNG) with the upload " -"tool." -msgstr "" -"La ruta de los logos personalizados es \"images/custom_logo\" en la " -"instalación de la consola. Puede añadir más archivos (SOLO JPEG Y PNG) con " -"la herramienta de añadir." - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 -#: ../../enterprise/include/functions_reporting.php:42 -msgid "Global" -msgstr "Global" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:208 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:302 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:205 -msgid "Elements to apply" -msgstr "Elementos para aplicar" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2290 -msgid ">=" -msgstr ">=" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:421 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2297 -msgid "<" -msgstr "<" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2429 -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:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:123 -msgid "Edit template" -msgstr "Editar plantilla" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 -msgid "List templates" -msgstr "Lista de plantillas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:378 -#: ../../enterprise/operation/reporting/custom_reporting.php:14 -msgid "PDF" -msgstr "PDF" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:379 -#: ../../enterprise/operation/reporting/custom_reporting.php:16 -msgid "JSON" -msgstr "JSON" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 -#: ../../enterprise/operation/reporting/custom_reporting.php:61 -msgid "Export to JSON" -msgstr "Exportar a JSON" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:482 -msgid "You haven't created templates yet." -msgstr "Aun no has creado ninguna plantilla." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 -msgid "Generate a dynamic report" -msgstr "Generar un informe dinámico" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:579 -msgid "Period " -msgstr "Periodo " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:585 -msgid "Set start and end date" -msgstr "Fije la fecha de inicio y conclusión" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:660 -#: ../../enterprise/include/class/Omnishell.class.php:844 -msgid "Add agents" -msgstr "Añadir agentes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 -msgid "Undo agents" -msgstr "Anular agentes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:703 -msgid "RegEx agent filter" -msgstr "Filtro de agente RegEx" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:704 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:161 -msgid "" -"Case insensitive regular expression for agent alias. For example: Network.* " -"will match with the following agent alias: network_agent1, NetworK CHECKS" -msgstr "" -"Expresión regular que no distingue mayúsculas ni minúsculas para el alias de " -"agente. Por ejemplo: Network.* coincidirá con los siguientes alias de " -"agente: network_agent1, NetworK CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:719 -msgid "Generate" -msgstr "Generar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1043 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1065 -msgid "Please set agent or agent regex distinct than " -msgstr "Establezca agente o agente regex diferente a " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1073 -msgid "No agent matches regular expression " -msgstr "Ningún agente coincide con la expresión regular " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 -msgid "Advance Options" -msgstr "Opciones avanzadas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1779 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1793 -msgid "Select server" -msgstr "Seleccionar servidor" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1878 -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:1902 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3276 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3506 -msgid "" -"Case insensitive regular expression or string for module name. For example: " -"if you use this field with \"Module exact match\" enabled then this field " -"has to be fulfilled with the literally string of the module name, if not you " -"can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -"usage in matchine 1." -msgstr "" -"Expresión regular, no sensible a mayúsculas/minúsculas, para buscar el " -"módulo. Por ejemplo: si usas este campo con \"Coincidencia exacta de " -"módulo\" activado, entonces este campo tiene que rellenarse con la cadena " -"literal del nombre del módulo. Si no, usará una expresión regular, por " -"ejemplo: .*usage.* coincidiría con : cpu_usage, vram usage in machine 1." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1924 -msgid "Module exact match" -msgstr "Coincidencia exacta de módulo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1925 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3284 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3431 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 -msgid "Check it if you want to match module name literally" -msgstr "" -"Actívala si quieres que haya una coincidencia exacta y literal en el nombre " -"del módulo." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1940 -msgid "Hide items without data" -msgstr "Ocultar elementos sin datos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941 -msgid "Check it if you want not show items without data" -msgstr "Marcar si no quieres que muestre elementos sin datos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1998 -msgid "Query SQL" -msgstr "Consulta SQL" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2001 -msgid "" -"This query should always return a field called label and a field called " -"value. Example: SELECT alias AS label, total_count AS value FROM tagente" -msgstr "" -"Esta consulta siempre debe devolver un campo llamado etiqueta y otro " -"denominado valor. Ejemplo: SELECT alias AS label, total_count AS value FROM " -"tagente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2064 -msgid "SQL preview" -msgstr "Vista previa del SQL" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2250 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:569 -msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." -msgstr "" -"Si se marca esta casilla, la opción solo es posible si se añaden este tipo " -"de módulos." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2805 -msgid "Modules to match" -msgstr "Módulos a comparar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 -msgid "Select the modules to match when create a report for agents" -msgstr "" -"Selecciona los módulos a comparar al crear el informe para cada agente." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2907 -msgid "Modules to match (Free text)" -msgstr "Módulos a comparar (texto libre)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2909 -msgid "Free text to filter the modules of agents when apply this template." -msgstr "" -"Texto libre para filtrar los módulos de los agentes cuando se usa esta " -"plantilla." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2926 -msgid "Create a graph for each agent" -msgstr "Crear un gráfico por cada agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2928 -msgid "" -"If it is checked, the regexp or name of modules match only each to each to " -"agent, instead create a big graph with all modules from all agents." -msgstr "" -"Si se activa, la expresión regular o el nombre de módulo hará coincidencia " -"en cada módulo de cada agente, y creará un gráfico que contenga módulos de " -"todos los agentes." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2969 -msgid "" -"Lapses of time in which the period is divided to make more precise " -"calculations" -msgstr "" -"Lapsos de tiempo en los que el intervalo se divide para obtener cálculos más " -"precisos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3181 -msgid "Please save the SLA template for start to add items in this list." -msgstr "" -"Por favor, guarda la plantilla SLA para empezar a añadir elementos a la " -"lista." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3222 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3863 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4008 -msgid "Not literally" -msgstr "No literal" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3267 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3497 -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:3283 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3512 -msgid "Literal module name forced" -msgstr "Nombre de módulo literal forzado" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3403 -msgid "Please save the template to start adding items into the list." -msgstr "" -"Por favor, guarda la plantilla para empezar a añadir elementos a la lista." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3889 -msgid "Name and SLA limit should not be empty" -msgstr "El nombre y el límite SLA no deberían estar vacíos." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:188 -msgid "No item could be applied to report." -msgstr "No se ha podido aplicar ningún elemento al informe." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:124 -msgid "Sucessfully applied" -msgstr "Aplicado correctamente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 -msgid "reports" -msgstr "Informes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 -msgid "items" -msgstr "elementos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:126 -msgid "Could not be applied" -msgstr "No se pudo aplicar." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:214 -msgid "Create template report wizard" -msgstr "Asistente de creación de plantillas de informes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 -msgid "Create report per agent" -msgstr "Crear informe por agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 -msgid "" -"Left in blank if you want to use default name: Template name - agents (num " -"agents) - Date" -msgstr "" -"Déjalo en blanco si quieres usar el nombre por defecto: Nombre plantilla - " -"agentes (num agentes) - Fecha" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:281 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:204 -msgid "Target group" -msgstr "Grupo objetivo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:321 -msgid "Filter by" -msgstr "Filtrar por" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:396 -msgid "Filter tag" -msgstr "Filtro por etiqueta" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373 -msgid "Order:" -msgstr "Orden:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" -msgstr "" -"Muestra una tabla de resumen con el máximo, mínimo y media del total de " -"módulos en la parte inferior del informe:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:104 -#: ../../enterprise/include/functions_reporting.php:38 -msgid "Wizard SLA" -msgstr "Wizard SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 -msgid "hourly S.L.A." -msgstr "SLA por horas" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 -msgid "Availability Graph S.L.A." -msgstr "Gráfico de disponibilidad SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 -msgid "SLA min value" -msgstr "Valor mínimo de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:255 -msgid "SLA min Value" -msgstr "Valor mínimo de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 -msgid "SLA max value" -msgstr "Valor máximo SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:261 -msgid "SLA max Value" -msgstr "Valor máximo SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 -msgid "SLA Limit %" -msgstr "Límite % SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:267 -msgid "SLA Limit Value" -msgstr "Valor límite SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:272 -msgid "Dynamic SLA" -msgstr "SLA dinámico" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:279 -msgid "Inverse SLA" -msgstr "SLA inverso" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:414 -msgid "Please introduce a SLA max value higher than the SLA min value" -msgstr "Añada un valor máx. de SLA mayor que el valor mín. del SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:538 -msgid "Dynamic SLA can not be Inverse" -msgstr "El SLA dinámico no puede ser inverso" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:543 -msgid "Check Dynamic SLA or introduce a max and min SLA value" -msgstr "Compruebe el SLA dinámico o añada un nuevo valor SLA mín. y máx." - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:547 -msgid "SLA Limit value is needed" -msgstr "Se necesita un valor límite de SLA." - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:135 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 -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:145 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:146 -msgid "Remove the services from the list" -msgstr "Elimina los servicios de la lista" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:201 -msgid "Icon preview" -msgstr "Vista previa del icono" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:267 -msgid "The services list is empty" -msgstr "La lista de servicios esta vacía." - -#: ../../enterprise/godmode/reporting/visual_console_template.php:109 -#: ../../enterprise/godmode/reporting/visual_console_template.php:123 -msgid "visual console has not been selected" -msgstr "no se ha seleccionado consola visual" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:115 -msgid "Error. Error created template" -msgstr "Error. Error al crear la plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:117 -msgid "Successfully created template" -msgstr "Plantilla creada correctamente" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:129 -msgid "Error. Error delete template" -msgstr "Error. Error al borrar plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:131 -msgid "Successfully delete template" -msgstr "Plantilla borrada correctamente" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:153 -msgid "Create From" -msgstr "Crear desde" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:156 -msgid "There is not any visual console created. Please, create one firstly." -msgstr "No hay consolas visuales creadas. Cree una primero." - -#: ../../enterprise/godmode/reporting/visual_console_template.php:186 -msgid "Create New Template" -msgstr "Crear nueva plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:198 -#: ../../enterprise/godmode/services/services.service.php:447 -msgid "Favourite" -msgstr "Favorito" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:168 -msgid "Visual console name" -msgstr "Nombre de la consola visual" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:168 -msgid "" -"You can use macro _agentalias_ here. Left in blank if you want to use " -"default name: Template name - agent alias" -msgstr "" -"Puede usar macro _agentalias_ aquí. En caso de estar vacío, use el nombre " -"por defecto: Nombre de plantilla - alias de agente" - -#: ../../enterprise/godmode/servers/HA_cluster.php:48 -msgid "View nodes" -msgstr "Ver nodos" - -#: ../../enterprise/godmode/servers/HA_cluster.php:59 -msgid "Manage Pandora DB HA" -msgstr "Gestionar la alta disponibilidad de la base de datos de Pandora FMS" - -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -msgid "" -"Make the cluster forget failed operations from history of\n" -" the resource and re-detect its current state. This can be\n" -" useful to purge knowledge of past failures that have since\n" -" been resolved. If a resource id is not specified then all\n" -" resources / stonith devices will be cleaned up. If a node\n" -" is not specified then resources / stonith devices on all\n" -" nodes will be cleaned up" -msgstr "" -"Hacer que el cluster olvide las operaciones fallidas del historial de\n" -" recurso y redetectar su estado actual. Esto puede ser\n" -" útil para purgar los datos de fallos anteriores que se han\n" -" resuelto dede entonces. Si no se especifica ID de recurso, entonces todos " -"los\n" -" recursos / dispositivos stonith se limpiarán. Si no\n" -" se especifica, entonces los recursos / dispositivos stonith de todos los\n" -" nodos se limparán" - -#: ../../enterprise/godmode/servers/HA_cluster.php:123 -msgid "Node label" -msgstr "Etiqueta de nodo" - -#: ../../enterprise/godmode/servers/HA_cluster.php:125 -msgid "DB Repl." -msgstr "Replicación de la base de datos." - -#: ../../enterprise/godmode/servers/HA_cluster.php:126 -msgid "DB Status" -msgstr "Estado BD" - -#: ../../enterprise/godmode/servers/HA_cluster.php:127 -#: ../../enterprise/include/functions_setup.php:171 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:621 -#: ../../enterprise/meta/advanced/policymanager.sync.php:328 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:340 -#: ../../enterprise/meta/advanced/synchronizing.component.php:318 -#: ../../enterprise/meta/advanced/synchronizing.group.php:223 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:93 -#: ../../enterprise/meta/advanced/synchronizing.os.php:89 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:106 -#: ../../enterprise/meta/advanced/synchronizing.user.php:660 -msgid "Sync" -msgstr "Sincronizar" - -#: ../../enterprise/godmode/servers/HA_cluster.php:129 -msgid "Role" -msgstr "Rol" - -#: ../../enterprise/godmode/servers/HA_cluster.php:131 -msgid "Seconds behind master" -msgstr "Segundos después del maestro" - -#: ../../enterprise/godmode/servers/HA_cluster.php:132 -msgid "Virtual IP" -msgstr "IP virtual" - -#: ../../enterprise/godmode/servers/HA_cluster.php:133 -msgid "SQL version" -msgstr "Versión SQL" - -#: ../../enterprise/godmode/servers/HA_cluster.php:134 -msgid "DB version" -msgstr "Versión de la base de datos" - -#: ../../enterprise/godmode/servers/HA_cluster.php:136 -msgid "Pending action" -msgstr "Acción pendiente" - -#: ../../enterprise/godmode/servers/HA_cluster.php:259 -msgid "Show/ edit node" -msgstr "Mostrar/editar nodo" - -#: ../../enterprise/godmode/servers/HA_cluster.php:274 -msgid "Put node into standby status" -msgstr "Poner nodo en suspensión" - -#: ../../enterprise/godmode/servers/HA_cluster.php:288 -msgid "Force node resync" -msgstr "Forzar re-sincronización de nodos" - -#: ../../enterprise/godmode/servers/HA_cluster.php:314 -msgid "Put node into online status" -msgstr "Poner nodo en estado online" - -#: ../../enterprise/godmode/servers/HA_cluster.php:328 -msgid "Show cluster details" -msgstr "Mostrar detalles del cluster" - -#: ../../enterprise/godmode/servers/HA_cluster.php:345 -msgid "Remove node from this list" -msgstr "Eliminar nodo de la lista" - -#: ../../enterprise/godmode/servers/HA_cluster.php:368 -msgid "Register node" -msgstr "Registrar nodo" - -#: ../../enterprise/godmode/servers/HA_cluster.php:405 -msgid "" -"Target node will be erased from this list but not removed from cluster. Do " -"you want to continue?" -msgstr "" -"El nodo objetivo se eliminará de la lista pero no del cluster. ¿Desea " -"continuar?" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:34 -msgid "Credential Boxes List" -msgstr "Lista de casillas de credenciales" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:39 -msgid "Credential Boxes" -msgstr "Casillas de credenciales" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:290 -#: ../../enterprise/godmode/servers/list_satellite.php:68 -msgid "No Data" -msgstr "No hay datos" - -#: ../../enterprise/godmode/servers/list_satellite.php:27 -msgid "Satellite Server" -msgstr "Servidor Satélite" - -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 -msgid "Add Credential Box" -msgstr "Añadir casilla de credenciales" - -#: ../../enterprise/godmode/servers/manage_export.php:69 -msgid "Error updating export target" -msgstr "Error al actualizar el servidor de exportación" - -#: ../../enterprise/godmode/servers/manage_export.php:71 -msgid "Successfully updated export target" -msgstr "Servidor de exportación actualizado correctamente" - -#: ../../enterprise/godmode/servers/manage_export.php:82 -msgid "Error deleting export target" -msgstr "Error al borrar el servidor de exportación" - -#: ../../enterprise/godmode/servers/manage_export.php:84 -msgid "" -"Successfully deleted export target. All the linked modules will be " -"automatically unattached" -msgstr "" -"Objetivo de exportación eliminado correctamente. Todos los módulos enlazados " -"se desvincularán automáticamente" - -#: ../../enterprise/godmode/servers/manage_export.php:107 -msgid "" -"Can't be created export target: User and password must be filled with FTP " -"mode" -msgstr "" -"No pudo crearse un servidor de exportación: el usuario y la contraseña deben " -"ser completados con el modo de FTP." - -#: ../../enterprise/godmode/servers/manage_export.php:126 -msgid "There are no defined export targets" -msgstr "No hay servidores de exportación definidos" - -#: ../../enterprise/godmode/servers/manage_export.php:138 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -msgid "Preffix" -msgstr "Prefijo" - -#: ../../enterprise/godmode/servers/manage_export.php:141 -#: ../../enterprise/godmode/servers/manage_export_form.php:97 -msgid "Transfer mode" -msgstr "Modo de transferencia" - -#: ../../enterprise/godmode/servers/manage_export_form.php:119 -msgid "Target directory" -msgstr "Directorio objetivo" - -#: ../../enterprise/godmode/servers/manage_export_form.php:123 -msgid "Extra options" -msgstr "Opciones adicionales" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:136 -msgid "Error: The conf file of server is not readble." -msgstr "Error: el archivo de configuración del servidor no se puede leer." - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:140 -msgid "Error: The conf file of server is not writable." -msgstr "" -"Error: no se puede escribir en el archivo de configuración del servidor" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 -msgid "Delete remote conf server files" -msgstr "Eliminar archivos de servidor de configuración remotos" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 -msgid "" -"Delete this conf file implies that server will send back local config to " -"console" -msgstr "" -"Eliminar este archivo de configuración significa que el servidor devolverá " -"la configuración local a la consola" - -#: ../../enterprise/godmode/services/services.elements.php:81 -#: ../../enterprise/godmode/services/services.service.php:407 -msgid "" -"This values are by default because the service is auto calculate mode." -msgstr "" -"Estos valores son valores por defecto porque el servicio está en modo " -"cálculo automático." - -#: ../../enterprise/godmode/services/services.elements.php:95 -msgid "Invalid service" -msgstr "Servicio no válido" - -#: ../../enterprise/godmode/services/services.elements.php:117 -#: ../../enterprise/godmode/services/services.service.php:288 -#: ../../enterprise/operation/services/services.list.php:46 -#: ../../enterprise/operation/services/services.service.php:62 -#: ../../enterprise/operation/services/services.service_map.php:70 -#: ../../enterprise/operation/services/services.table_services.php:43 -#: ../../enterprise/operation/services/services.treeview_services.php:45 -msgid "Services list" -msgstr "Lista de servicios" - -#: ../../enterprise/godmode/services/services.elements.php:127 -#: ../../enterprise/godmode/services/services.service.php:296 -#: ../../enterprise/operation/services/services.service.php:72 -#: ../../enterprise/operation/services/services.service_map.php:80 -msgid "Services tree view" -msgstr "Vista de árbol de servicios" - -#: ../../enterprise/godmode/services/services.elements.php:137 -#: ../../enterprise/godmode/services/services.service.php:304 -#: ../../enterprise/operation/services/services.service.php:82 -#: ../../enterprise/operation/services/services.service_map.php:90 -msgid "Services table view" -msgstr "Visor de la tabla de servicios" - -#: ../../enterprise/godmode/services/services.elements.php:146 -#: ../../enterprise/godmode/services/services.service.php:312 -#: ../../enterprise/operation/services/services.service.php:91 -#: ../../enterprise/operation/services/services.service_map.php:102 -msgid "Config Service" -msgstr "Configurar servicios" - -#: ../../enterprise/godmode/services/services.elements.php:154 -#: ../../enterprise/godmode/services/services.service.php:320 -#: ../../enterprise/operation/services/services.service.php:95 -#: ../../enterprise/operation/services/services.service_map.php:110 -msgid "Config Elements" -msgstr "Configurar elementos" - -#: ../../enterprise/godmode/services/services.elements.php:164 -#: ../../enterprise/godmode/services/services.service.php:328 -#: ../../enterprise/operation/services/services.service.php:103 -#: ../../enterprise/operation/services/services.service_map.php:122 -msgid "View Service" -msgstr "Ver servicio" - -#: ../../enterprise/godmode/services/services.elements.php:196 -#: ../../enterprise/include/functions_services.php:2740 -msgid "Edit service elements" -msgstr "Editar elementos del servicio" - -#: ../../enterprise/godmode/services/services.elements.php:211 -msgid "Error empty module" -msgstr "Error al vaciar los módulos" - -#: ../../enterprise/godmode/services/services.elements.php:222 -msgid "Error empty agent" -msgstr "Error al vaciar el agente" - -#: ../../enterprise/godmode/services/services.elements.php:233 -msgid "Error empty service" -msgstr "Error al vaciar el servicio" - -#: ../../enterprise/godmode/services/services.elements.php:241 -msgid "Error unknown type" -msgstr "Tipo de error desconocido" - -#: ../../enterprise/godmode/services/services.elements.php:266 -msgid "Service element created successfully" -msgstr "Elemento de servicio creado correctamente" - -#: ../../enterprise/godmode/services/services.elements.php:267 -msgid "Error creating service element" -msgstr "Error al crear el elemento de servicio" - -#: ../../enterprise/godmode/services/services.elements.php:438 -msgid "Service element updated successfully" -msgstr "Elemento de servicio actualizado correctamente" - -#: ../../enterprise/godmode/services/services.elements.php:439 -msgid "Error updating service element" -msgstr "Error al actualizar el elemento de sevicio" - -#: ../../enterprise/godmode/services/services.elements.php:552 -msgid "Service element deleted successfully" -msgstr "Elemento de servicio eliminado correctamente" - -#: ../../enterprise/godmode/services/services.elements.php:553 -msgid "Error deleting service element" -msgstr "Error al eliminar el elemento de servicio" - -#: ../../enterprise/godmode/services/services.elements.php:609 -msgid "Edit element service" -msgstr "Editar elemento de servicio" - -#: ../../enterprise/godmode/services/services.elements.php:653 -msgid "Create element service" -msgstr "Crear elemento de sevicio" - -#: ../../enterprise/godmode/services/services.elements.php:722 -msgid "First select an agent" -msgstr "Primero, selecciona un agente" - -#: ../../enterprise/godmode/services/services.elements.php:743 -msgid "Unknown weight" -msgstr "Peso desconocido" - -#: ../../enterprise/godmode/services/services.elements.php:747 -msgid "Ok weight" -msgstr "Peso OK" - -#: ../../enterprise/godmode/services/services.elements.php:753 -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:58 -#: ../../enterprise/operation/services/services.list.php:568 -#: ../../enterprise/operation/services/services.table_services.php:418 -#: ../../enterprise/operation/services/services.treeview_services.php:114 -msgid "Create Service" -msgstr "Crear servicio" - -#: ../../enterprise/godmode/services/services.service.php:85 -#: ../../enterprise/godmode/services/services.service.php:148 -msgid "No name and description specified for the service" -msgstr "Ningún nombre ni descripción especificado para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:93 -#: ../../enterprise/godmode/services/services.service.php:156 -msgid "No name specified for the service" -msgstr "Ningún nombre especificado para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:101 -#: ../../enterprise/godmode/services/services.service.php:164 -msgid "No description specified for the service" -msgstr "Ninguna descripción especificada para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:110 -msgid "Error creating service" -msgstr "Error al crear servicio" - -#: ../../enterprise/godmode/services/services.service.php:117 -msgid "Service created successfully" -msgstr "Servicio creado correctamente" - -#: ../../enterprise/godmode/services/services.service.php:204 -msgid "Error updating service" -msgstr "Error al actualizar el sevicio" - -#: ../../enterprise/godmode/services/services.service.php:211 -msgid "Service updated successfully" -msgstr "Servicio actualizado correctamente" - -#: ../../enterprise/godmode/services/services.service.php:234 -msgid "New Service" -msgstr "Nuevo servicio" - -#: ../../enterprise/godmode/services/services.service.php:375 -msgid "No Services or concrete action" -msgstr "Sin servicios o acción concreta" - -#: ../../enterprise/godmode/services/services.service.php:379 -msgid "General Data" -msgstr "Datos generales" - -#: ../../enterprise/godmode/services/services.service.php:390 -msgid "Text shown in the service map is the description, not the name" -msgstr "" -"El texto mostrado en el mapa de servicio es la descripción, no el nombre" - -#: ../../enterprise/godmode/services/services.service.php:398 -msgid "You should set the weights manually" -msgstr "Se tienen que establecer los pesos de forma manual" - -#: ../../enterprise/godmode/services/services.service.php:401 -msgid "The weights have default values" -msgstr "Los pesos tienen valores por defecto." - -#: ../../enterprise/godmode/services/services.service.php:403 -#: ../../enterprise/operation/services/services.list.php:229 -#: ../../enterprise/operation/services/services.table_services.php:208 -msgid "Simple" -msgstr "Simple" - -#: ../../enterprise/godmode/services/services.service.php:404 -msgid "" -"Only the elements configured as 'critical element' are used to calculate the " -"service status" -msgstr "" -"Solo los elementos configurados como \"elementos críticos\" se utilizan para " -"calcular el estado del servicio." - -#: ../../enterprise/godmode/services/services.service.php:423 -msgid "Agent to store data" -msgstr "Agentes para almacenar datos" - -#: ../../enterprise/godmode/services/services.service.php:440 -msgid "" -"If active, no alerts will be triggered and no service events will be " -"generated." -msgstr "" -"Si está activo, no se dispararán alertes y no se generarán eventos de " -"servicios" - -#: ../../enterprise/godmode/services/services.service.php:443 -msgid "Cascade Protection" -msgstr "Protección en cascada" - -#: ../../enterprise/godmode/services/services.service.php:444 -msgid "" -"If active, no alerts will be triggered and no events will be generated from " -"the items belonging to this service." -msgstr "" -"Si está activo, no se dispararán alertas y no se generarán eventos de los " -"elementos pertenecientes a este servicio." - -#: ../../enterprise/godmode/services/services.service.php:459 -msgid "Calculate continuous SLA for this service" -msgstr "Calcular SLA continuo para este servicio" - -#: ../../enterprise/godmode/services/services.service.php:462 -msgid "S.L.A. interval" -msgstr "Intervalo SLA" - -#: ../../enterprise/godmode/services/services.service.php:473 -msgid "S.L.A. limit" -msgstr "Límite SLA" - -#: ../../enterprise/godmode/services/services.service.php:474 -msgid "Please set limit between 0 to 100." -msgstr "Por favor, introduce un límite de 0 a 100." - -#: ../../enterprise/godmode/services/services.service.php:488 -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:505 -msgid "Warning Service alert" -msgstr "Alerta de advertencia del servicio" - -#: ../../enterprise/godmode/services/services.service.php:526 -msgid "Critical Service alert" -msgstr "Alerta crítica del servicio" - -#: ../../enterprise/godmode/services/services.service.php:545 -msgid "SLA critical service alert" -msgstr "Alerta crítica del servicio SLA" - -#: ../../enterprise/godmode/services/services.service.php:654 -msgid "" -"This change in the service configuration will delete the history of the " -"service modules. Do you wish to continue?" -msgstr "" -"Este cambio en la configuración del servicio borrará el historial de módulos " -"de servicio. ¿Desea contiinuar?" - -#: ../../enterprise/godmode/services/services.service.php:656 -msgid "" -"This change in the service configuration will prevent the SLA modules from " -"being created. Do you wish to continue?" -msgstr "" -"Este cambio en la configuración del servicio impedirá que se creen módulos " -"SLA. ¿Desea continuar?" - -#: ../../enterprise/godmode/setup/edit_skin.php:41 -#: ../../enterprise/godmode/setup/setup_skins.php:35 -msgid "Skins configuration" -msgstr "Configuración de apariencia" - -#: ../../enterprise/godmode/setup/edit_skin.php:44 -msgid "Successfully updated skin" -msgstr "Apariencia actualizada correctamente" - -#: ../../enterprise/godmode/setup/edit_skin.php:46 -#: ../../enterprise/godmode/setup/edit_skin.php:64 -msgid "Error updating skin" -msgstr "Error al actualizar la apariencia" - -#: ../../enterprise/godmode/setup/edit_skin.php:194 -msgid "Error creating skin" -msgstr "Error al crear la apariencia" - -#: ../../enterprise/godmode/setup/edit_skin.php:198 -msgid "Successfully created skin" -msgstr "Apariencia creada correctamente" - -#: ../../enterprise/godmode/setup/edit_skin.php:238 -#: ../../enterprise/godmode/setup/setup_skins.php:120 -msgid "Relative path" -msgstr "Ruta relativa" - -#: ../../enterprise/godmode/setup/edit_skin.php:239 -msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." -msgstr "" -"Archivo zip con subdirectorio apariencia. El nombre del archivo zip solo " -"puede tener caracteres alfanuméricos." - -#: ../../enterprise/godmode/setup/edit_skin.php:264 -msgid "Group/s" -msgstr "Grupo(s)" - -#: ../../enterprise/godmode/setup/setup.php:48 -msgid "Yes and change status" -msgstr "Sí y cambiar estado" - -#: ../../enterprise/godmode/setup/setup.php:56 -msgid "Yes without changing status" -msgstr "Sí, sin cambiar estado" - -#: ../../enterprise/godmode/setup/setup.php:79 -msgid "" -"Before activating this option check your ACL Setup. You may lose access to " -"the console." -msgstr "" -"Antes de activar esta opción comprueba la configuración ACL. Puede que " -"pierdas el acceso a la consola." - -#: ../../enterprise/godmode/setup/setup.php:101 -#: ../../enterprise/meta/advanced/metasetup.setup.php:282 -msgid " Bytes" -msgstr " Bytes" - -#: ../../enterprise/godmode/setup/setup.php:127 -msgid "Seconds" -msgstr "Segundos" - -#: ../../enterprise/godmode/setup/setup.php:143 -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:151 -msgid "Last replication at" -msgstr "Última replicación a" - -#: ../../enterprise/godmode/setup/setup.php:153 -msgid "No replication yet" -msgstr "Sin replicación todavía" - -#: ../../enterprise/godmode/setup/setup.php:167 -msgid "Only validated events" -msgstr "Solo eventos validados" - -#: ../../enterprise/godmode/setup/setup.php:182 -msgid "Metaconsole DB engine" -msgstr "Motor BD de la Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:185 -#: ../../enterprise/include/class/MySQL.app.php:419 -msgid "MySQL" -msgstr "MySQL" - -#: ../../enterprise/godmode/setup/setup.php:200 -msgid "Metaconsole DB host" -msgstr "Host BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:214 -msgid "Metaconsole DB name" -msgstr "Nombre BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:228 -msgid "Metaconsole DB user" -msgstr "Usuario BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:242 -msgid "Metaconsole DB password" -msgstr "Contraseña BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:256 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:532 -msgid "Metaconsole DB port" -msgstr "Puerto BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:281 -msgid "Events Configuration Information" -msgstr "Información de configuración de evntos" - -#: ../../enterprise/godmode/setup/setup.php:283 -msgid "" -" If you are replicating events, events validated or deleted on the " -"metaconsole WILL NOT be deleted or validated here. This option is just to " -"allow local pandora users to see events, but not to operate with them. " -"Operation, when event replication is enabled, should be done only in " -"metaconsole" -msgstr "" -" Si está replicando eventos, los eventos validados o eliminados en la " -"Metaconsola NO se eliminarán o validarán aquí. Esta opción solo permite a " -"los usuarios locales de Pandora FMS ver los eventos, pero gestionarlos.\r\n" -"Su gestión solo puede llevarse a cabo en la Metaconsola cuando la " -"replicación de eventos está activa." - -#: ../../enterprise/godmode/setup/setup.php:290 -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:355 -msgid "Out of black list" -msgstr "Fuera de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:357 -msgid "In black list" -msgstr "En la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:362 -msgid "Push selected modules into blacklist" -msgstr "Mover los módulos seleccionados a la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:364 -msgid "Pop selected modules out of blacklist" -msgstr "Sacar los módulos seleccionados de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:388 -#: ../../enterprise/meta/advanced/metasetup.setup.php:273 -#: ../../enterprise/meta/include/functions_meta.php:523 -msgid "Enable update manager" -msgstr "Habilitar gestor de actualizaciones" - -#: ../../enterprise/godmode/setup/setup.php:400 -msgid "Disable newsletter" -msgstr "Deshabilitar newsletter" - -#: ../../enterprise/godmode/setup/setup.php:412 -msgid "Critical threshold for occupied addresses" -msgstr "Umbral crítico para las direcciones ocupadas" - -#: ../../enterprise/godmode/setup/setup.php:414 -#: ../../enterprise/godmode/setup/setup.php:430 -msgid "Threshold for IPAM supernet map" -msgstr "Umbral para el mapa de superred IPAM" - -#: ../../enterprise/godmode/setup/setup.php:428 -msgid "Warning threshold for occupied addresses" -msgstr "Umbral de advertencia para las direcciones ocupadas" - -#: ../../enterprise/godmode/setup/setup.php:461 -msgid "Enterprise options" -msgstr "Opciones Enterprise" - -#: ../../enterprise/godmode/setup/setup.php:516 -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -msgid " Caracters" -msgstr " Caracteres" - -#: ../../enterprise/godmode/setup/setup.php:538 -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -msgid "Set 0 if never expire." -msgstr "Introduce 0 para que nunca expire" - -#: ../../enterprise/godmode/setup/setup.php:546 -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -msgid " Days" -msgstr " Días" - -#: ../../enterprise/godmode/setup/setup.php:566 -#: ../../enterprise/meta/advanced/metasetup.password.php:110 -msgid " Minutes" -msgstr " Minutos" - -#: ../../enterprise/godmode/setup/setup.php:570 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -msgid "Two attempts minimum" -msgstr "2 intentos mínimo" - -#: ../../enterprise/godmode/setup/setup.php:578 -#: ../../enterprise/meta/advanced/metasetup.password.php:114 -msgid " Attempts" -msgstr " Intentos" - -#: ../../enterprise/godmode/setup/setup.php:622 -msgid "Enterprise password policy" -msgstr "Política de contraseña Enterprise" - -#: ../../enterprise/godmode/setup/setup.php:622 -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:43 -msgid "Enterprise ACL setup" -msgstr "Configuración ACL Enterprise" - -#: ../../enterprise/godmode/setup/setup_acl.php:330 -msgid "This record already exists in the database" -msgstr "Este registro ya existe en la base de datos." - -#: ../../enterprise/godmode/setup/setup_acl.php:374 -#: ../../enterprise/godmode/setup/setup_acl.php:449 -msgid "Add new ACL element to profile" -msgstr "Añadir nuevo elemento ACL al perfil" - -#: ../../enterprise/godmode/setup/setup_acl.php:379 -#: ../../enterprise/godmode/setup/setup_acl.php:494 -msgid "Section" -msgstr "Sección" - -#: ../../enterprise/godmode/setup/setup_acl.php:386 -#: ../../enterprise/godmode/setup/setup_acl.php:596 -msgid "Mobile" -msgstr "Móvil" - -#: ../../enterprise/godmode/setup/setup_acl.php:390 -#: ../../enterprise/godmode/setup/setup_acl.php:592 -msgid "Head search" -msgstr "Búsqueda de encabezado" - -#: ../../enterprise/godmode/setup/setup_acl.php:407 -#: ../../enterprise/godmode/setup/setup_acl.php:495 -msgid "Section 2" -msgstr "Sección 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:424 -#: ../../enterprise/godmode/setup/setup_acl.php:496 -msgid "Section 3" -msgstr "Sección 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:448 -msgid "Hidden" -msgstr "Oculto" - -#: ../../enterprise/godmode/setup/setup_acl.php:454 -msgid "Page" -msgstr "Página" - -#: ../../enterprise/godmode/setup/setup_acl.php:473 -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 "SAML" -msgstr "SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:79 -msgid "" -"By activating this option, the LDAP password will be stored in the database." -msgstr "" -"Al activar esta opción, la contraseña LDAP se guardará en la base de datos." - -#: ../../enterprise/godmode/setup/setup_auth.php:84 -msgid "Force automatically create profile user" -msgstr "Forzar creación automática de perfil de usuario" - -#: ../../enterprise/godmode/setup/setup_auth.php:84 -msgid "" -"By activating this option, whenever an user logs in, their profile will be " -"changed for the automatically create profile" -msgstr "" -"Al activar esta opción, cada vez que un usuario inicie sesión, cambiará de " -"su perfil al perfil creado automáticamente" - -#: ../../enterprise/godmode/setup/setup_auth.php:89 -msgid "Local command" -msgstr "Comando local" - -#: ../../enterprise/godmode/setup/setup_auth.php:92 -msgid "PHP function" -msgstr "Función PHP" - -#: ../../enterprise/godmode/setup/setup_auth.php:103 -msgid "" -"Enable this option to assign profiles, groups and tags to users from " -"specific LDAP Attributes (updated at the next login)" -msgstr "" -"Habilita esta opción para asignar perfiles, grupos y etiquetas a los " -"usuarios de atributos LDAP específicos (se actualizarán en el próximo inicio " -"de sesión)" - -#: ../../enterprise/godmode/setup/setup_auth.php:167 -#: ../../enterprise/godmode/setup/setup_auth.php:925 -msgid "Profiles selected" -msgstr "Perfiles seleccionados" - -#: ../../enterprise/godmode/setup/setup_auth.php:168 -#: ../../enterprise/godmode/setup/setup_auth.php:926 -msgid "Groups selected" -msgstr "Grupos seleccionados" - -#: ../../enterprise/godmode/setup/setup_auth.php:171 -#: ../../enterprise/godmode/setup/setup_auth.php:228 -msgid "LDAP Attributes" -msgstr "Atributos LDAP" - -#: ../../enterprise/godmode/setup/setup_auth.php:237 -#: ../../enterprise/godmode/setup/setup_auth.php:988 -msgid "Select profile" -msgstr "Seleccionar perfil" - -#: ../../enterprise/godmode/setup/setup_auth.php:281 -#: ../../enterprise/godmode/setup/setup_auth.php:1025 -msgid "Add new permissions" -msgstr "Agregar nuevos permisos" - -#: ../../enterprise/godmode/setup/setup_auth.php:329 -#: ../../enterprise/godmode/setup/setup_auth.php:857 -#: ../../enterprise/meta/include/functions_meta.php:840 -#: ../../enterprise/meta/include/functions_meta.php:851 -msgid "Auto enable node access" -msgstr "Auto-habilitar acceso al nodo" - -#: ../../enterprise/godmode/setup/setup_auth.php:329 -#: ../../enterprise/godmode/setup/setup_auth.php:857 -msgid "New users will be able to log in to the nodes." -msgstr "Los usuarios nuevos podrán conectarse en los nodos." - -#: ../../enterprise/godmode/setup/setup_auth.php:450 -#: ../../enterprise/godmode/setup/setup_auth.php:551 -msgid "You must select a profile from the list of profiles." -msgstr "Selecciona un perfil de la lista de perfiles" - -#: ../../enterprise/godmode/setup/setup_auth.php:455 -#: ../../enterprise/godmode/setup/setup_auth.php:556 -msgid "You must select a group from the list of groups." -msgstr "Seleccione un grupo de la lista de grupos" - -#: ../../enterprise/godmode/setup/setup_auth.php:775 -msgid "SimpleSAML path" -msgstr "Ruta de SimpleSAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:775 -msgid "" -"Select the path where SimpleSAML has been installed (by default '/opt/')" -msgstr "" -"Selecciona la ruta donde se haya instalado SimpleSAML (por defecto \"/opt/\")" - -#: ../../enterprise/godmode/setup/setup_auth.php:779 -msgid "SAML source" -msgstr "SAML de origen" - -#: ../../enterprise/godmode/setup/setup_auth.php:784 -msgid "SAML user id attribute" -msgstr "Atribito de ID de usuario SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:789 -msgid "SAML mail attribute" -msgstr "Atributo de correo SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:794 -msgid "SAML group name attribute" -msgstr "Atributo de nombre de grupo SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:799 -msgid "Simple attribute / Multivalue attribute" -msgstr "Atributo simple/atributo con valores múltiples" - -#: ../../enterprise/godmode/setup/setup_auth.php:804 -msgid "SAML profiles and tag attribute" -msgstr "Atributo de perfiles y etiquetas SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:809 -msgid "Profile attribute" -msgstr "Atributo de perfil" - -#: ../../enterprise/godmode/setup/setup_auth.php:814 -msgid "Tag attribute" -msgstr "Atributo de etiqueta" - -#: ../../enterprise/godmode/setup/setup_auth.php:819 -msgid "SAML profile and tags prefix" -msgstr "Prefijo de perfiles y etiquetas SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:827 -msgid "" -"Enable this option to assign profiles, groups and tags to users from " -"specific AD groups (updated at the next login)" -msgstr "" -"Habilita esta opción para asignar perfiles, grupos y etiquetas a usuarios de " -"grupos AD específicos (actualizados en la siguiente sesión)" - -#: ../../enterprise/godmode/setup/setup_auth.php:928 -#: ../../enterprise/godmode/setup/setup_auth.php:980 -msgid "AD Groups" -msgstr "Grupos AD" - -#: ../../enterprise/godmode/setup/setup_history.php:45 -msgid "Enable event history" -msgstr "Activar histórico de eventos" - -#: ../../enterprise/godmode/setup/setup_history.php:45 -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á utilizado para los informes de eventos, y " -"no para los gráficos o el visor de eventos." - -#: ../../enterprise/godmode/setup/setup_history.php:63 -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 del " -"histórico" - -#: ../../enterprise/godmode/setup/setup_history.php:66 -msgid "" -"Data size of mechanism used to transfer data (similar to a data buffer.)" -msgstr "" -"Tamaño del sistema de transferencia de datos (similar a un búfer de datos)" - -#: ../../enterprise/godmode/setup/setup_history.php:69 -msgid "Time interval between data transfer." -msgstr "Intervalo de tiempo entre cada transferencia de datos" - -#: ../../enterprise/godmode/setup/setup_history.php:72 -msgid "Event days" -msgstr "Días de eventos" - -#: ../../enterprise/godmode/setup/setup_history.php:72 -msgid "Number of days before events is transfered to history database." -msgstr "" -"Número de días antes de transferir los eventos a la base de datos del " -"histórico" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:38 -msgid "ElasticSearch IP" -msgstr "IP de ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:38 -msgid "IP of ElasticSearch server" -msgstr "IP del servidor ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:40 -msgid "ElasticSearch Port" -msgstr "Puerto ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:40 -msgid "Port of ElasticSearch server" -msgstr "Puerto del servidor ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:28 -msgid "Metaconsole setup" -msgstr "Configuración de la Metaconsola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:82 -#: ../../enterprise/meta/advanced/metasetup.auth.php:51 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:153 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.performance.php:51 -#: ../../enterprise/meta/advanced/metasetup.setup.php:86 -#: ../../enterprise/meta/advanced/metasetup.visual.php:54 -msgid "Successfully update" -msgstr "Actualizado correctamente" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:83 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:154 -msgid "Could not be update" -msgstr "No se pudo actualizar" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 -msgid "Pandora FMS Metaconsole item edition" -msgstr "Edición de elementos de la Metaconsola de Pandora FMS" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 -msgid "Auth token" -msgstr "Hash de autentificación" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 -msgid "" -"Token previously configured on the destination Pandora console in order to " -"use delegated authentification." -msgstr "" -"Token configurado anteriormente en la consola de destino de Pandora FMS con " -"el fin de utilizar la autentificación delegada." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:203 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:624 -msgid "Console URL" -msgstr "URL de la consola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:212 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:427 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:625 -msgid "DB Host" -msgstr "Host de la BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:216 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:436 -msgid "DB Name" -msgstr "Nombre de la BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:445 -msgid "DB User" -msgstr "Usuario de la BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:225 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:454 -msgid "DB Password" -msgstr "Contraseña de la BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:230 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:408 -msgid "Console User" -msgstr "Usuario de la consola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:234 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:417 -msgid "Console Password" -msgstr "Contraseña de la consola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:267 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:616 -msgid "DB" -msgstr "BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:268 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:617 -msgid "API" -msgstr "API" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:269 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:618 -msgid "Compatibility" -msgstr "Compatibilidad" - -#: ../../enterprise/godmode/setup/setup_skins.php:74 -msgid "Error deleting skin" -msgstr "Error al borrar la apariencia" - -#: ../../enterprise/godmode/setup/setup_skins.php:76 -msgid "Successfully deleted skin" -msgstr "Apariencia eliminada correctamente" - -#: ../../enterprise/godmode/setup/setup_skins.php:119 -msgid "Skin name" -msgstr "Nombre de la apariencia" - -#: ../../enterprise/godmode/setup/setup_skins.php:147 -msgid "There are no defined skins" -msgstr "No hay apariencia definida" - -#: ../../enterprise/godmode/setup/setup_skins.php:153 -msgid "Create skin" -msgstr "Crear apariencia" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:199 -msgid "Successfully added trap custom values" -msgstr "Añadidos correctamente a los valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:189 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:201 -msgid "Error adding trap custom values" -msgstr "Error al añadir los valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:204 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 -msgid "This custom OID is preexistent." -msgstr "El OID personalizado ya existe" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:245 -msgid "No change in data" -msgstr "No hay cambios en los datos" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:247 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:274 -msgid "Successfully updated trap custom values" -msgstr "Los valores personalizados del trap se han añadido correctamente." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:276 -msgid "Error updating trap custom values" -msgstr "Error al actualizar los valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:289 -msgid "Successfully deleted trap custom values" -msgstr "Valores personalizados del trap eliminados correctamente" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:292 -msgid "Error deleting trap custom values" -msgstr "Error al eliminar valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 -#, php-format -msgid "Uploaded %s/%s traps" -msgstr "Actualizados %s/%s traps" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:302 -msgid "Fail uploaded file" -msgstr "Error al subir el archivo" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:307 -msgid "" -"MIB files will be loaded and searched for SNMP trap definitions. They will " -"not be installed on the system! You can use the MIB uploader for that " -"purpose." -msgstr "" -"Los archivos MIB se cargarán; se buscaron las definiciones de trap SNMP. ¡No " -"serán instalados en el sistema! Puedes usar el cargador de MIB para " -"instalarlos." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:316 -msgid "Load MIB" -msgstr "Cargar MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 -msgid "Upload MIB" -msgstr "Actualizar MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:339 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 -msgid "Custom OID" -msgstr "OID personalizado" - -#: ../../enterprise/godmode/wizards/Applications.class.php:177 -#: ../../enterprise/godmode/wizards/Cloud.class.php:206 -msgid "" -"All company names used here are for identification purposes only. Use of " -"these names, logos, and brands does not imply endorsement." -msgstr "" -"Todos los nombres de compañías aquí utilizados tienen fines " -"identificatorios. El uso de estos nombres, logos y marcas no implica " -"patrocinio alguno." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:232 -#: ../../enterprise/godmode/wizards/Cloud.class.php:240 -#, php-format -msgid "%s credentials" -msgstr "Credenciales de %s" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:264 -msgid "Manage accounts" -msgstr "Administrar cuentas" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:276 -msgid "Cloud tool full path" -msgstr "Ruta completa de la herramienta en la nube" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:284 -msgid "Account" -msgstr "Cuenta" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:337 -msgid "Select a set of credentials from the list" -msgstr "Seleccione un conjunto de credenciales de la lista" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:350 -#, php-format -msgid "Path %s is not executable." -msgstr "La ruta %s no se puede ejecutar." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:353 -msgid "Invalid username or password" -msgstr "Usuario o contraseña no válidos" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:395 -msgid "Account disconnected" -msgstr "Cuenta desconectada" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:397 -msgid "Failed disconnecting account" -msgstr "Error al desconectar la cuenta" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:471 -msgid "Credentials successfully updated" -msgstr "Credenciales actualizados correctamente" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:473 -msgid "Failed updating credentials process" -msgstr "Error en el proceso de actualización de credenciales" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:199 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:261 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:350 -#: ../../enterprise/meta/advanced/cron_main.php:144 -#: ../../enterprise/meta/advanced/cron_main.php:188 -#: ../../enterprise/meta/advanced/cron_main.php:276 -msgid "Path doesn't exists or is not writable" -msgstr "La ruta no existe o no se puede escribir en ella." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:211 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:224 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:272 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:285 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:365 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 -msgid "Failed to create task" -msgstr "No se ha podido crear la tarea" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:230 -#: ../../enterprise/meta/advanced/cron_main.php:156 -msgid "Only administrator users can create this type of functions" -msgstr "" -"Solo los usuarios administradores pueden crear este tipo de funciones." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:335 -#: ../../enterprise/meta/advanced/cron_main.php:224 -#: ../../enterprise/meta/advanced/cron_main.php:258 -msgid "Edit job" -msgstr "Editar tarea" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:391 -msgid "I do not know what you want to do" -msgstr "No sé lo que desea hacer" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:408 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:577 -msgid "You have no access to manage console tasks." -msgstr "No puede acceder a la gestión de tareas de la consola." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:422 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:490 -msgid "Create new console task" -msgstr "Crear nueva tarea de la consola" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:465 -msgid "Updating console task" -msgstr "Actualizar tarea de la consola" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 -#: ../../enterprise/meta/advanced/cron_main.php:84 -msgid "Add new job" -msgstr "Añadir nueva tarea" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:613 -msgid "Next Execution" -msgstr "Siguiente ejecución" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:74 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 -msgid "Group name" -msgstr "Nombre del grupo" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:99 -msgid "OS name" -msgstr "Nombre del SO" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:111 -msgid "Custom field name" -msgstr "Nombre de campo personalizado" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:113 -msgid "Custom field value" -msgstr "Campo de valor personalizado" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:120 -msgid "IP Network range" -msgstr "Intervalo de red IP" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:126 -msgid "Script" -msgstr "Script" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 -msgid "Arguments" -msgstr "Argumentos" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:134 -msgid "Unknown form" -msgstr "Formulario desconocido" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:170 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 -msgid "Create rule" -msgstr "Crear regla" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:212 -msgid "IP range" -msgstr "Intervalo IP" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -msgid "Script output (> 0)" -msgstr "Salida del script (> 0)" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:431 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:540 -msgid "Script path" -msgstr "Ruta del script" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 -msgid "Script argument" -msgstr "Argumento del script" - -#: ../../enterprise/include/ajax/clustermap.php:41 -msgid "No IP" -msgstr "No hay IP" - -#: ../../enterprise/include/ajax/clustermap.php:266 -msgid "Common modules list" -msgstr "Lista de módulos comunes" - -#: ../../enterprise/include/ajax/clustermap.php:486 -msgid "Balanced modules list" -msgstr "Lista de módulos equilibrados" - -#: ../../enterprise/include/ajax/dashboard.ajax.php:356 -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/log_viewer.ajax.php:41 -msgid "Capture regexp" -msgstr "Regexp de captura" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:51 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1078 -#: ../../enterprise/meta/event/custom_events.php:160 -msgid "Fields" -msgstr "Campos" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:72 -msgid "Error accesing to API, auth error." -msgstr "Error al acceder a la API. Error de autentificación." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:77 -msgid "Error accesing to API." -msgstr "Error al acceder a la API" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:82 -msgid "Error could not resolve the host." -msgstr "Error, no se pudo resolver el host" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:87 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:113 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:134 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:156 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:173 -msgid "Unknown error" -msgstr "Error desconocido" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:98 -msgid "Database credentials not found" -msgstr "Las credenciales de la base de datos no se han encontrado." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:103 -msgid "Error connecting to the specified host" -msgstr "Error al conectar con el host especificado" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:108 -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:124 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:151 -msgid "Server connection failed" -msgstr "Error al conectar con el servidor" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:129 -msgid "MR versions does not match" -msgstr "La versión MR no coincide" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:145 -msgid "Last event replication" -msgstr "Replicación del último evento" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:163 -msgid "Agent cache activated" -msgstr "Caché de agente activado" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:168 -msgid "Agent cache failed" -msgstr "Error con el caché de agente" - -#: ../../enterprise/include/ajax/transactional.ajax.php:174 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:179 -msgid "The phase does not have a defined script" -msgstr "La fase no tiene un script definido." - -#: ../../enterprise/include/ajax/transactional.ajax.php:211 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:233 -msgid "Edit Data" -msgstr "Editar datos" - -#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 -msgid "Global time: " -msgstr "Hora global: " - -#: ../../enterprise/include/class/AgentRepository.class.php:259 -#: ../../enterprise/include/class/DeploymentCenter.class.php:911 -msgid "Deploying" -msgstr "Desplegar" - -#: ../../enterprise/include/class/AgentRepository.class.php:348 -#: ../../enterprise/include/class/AgentRepository.class.php:614 -#: ../../enterprise/include/class/AgentRepository.class.php:664 -#: ../../enterprise/include/class/DeploymentCenter.class.php:716 -#: ../../enterprise/include/class/DeploymentCenter.class.php:781 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1256 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 -msgid "Architecture" -msgstr "Arquitectura" - -#: ../../enterprise/include/class/AgentRepository.class.php:368 -msgid "Installation file" -msgstr "Archivo de instalación" - -#: ../../enterprise/include/class/AgentRepository.class.php:407 -msgid "Agent version is required" -msgstr "Se requiere versión de agente" - -#: ../../enterprise/include/class/AgentRepository.class.php:413 -#: ../../enterprise/include/class/DeploymentCenter.class.php:245 -msgid "Target OS is required" -msgstr "Se requiere SO de destion" - -#: ../../enterprise/include/class/AgentRepository.class.php:415 -#: ../../enterprise/include/class/DeploymentCenter.class.php:247 -msgid "Target architecture is required" -msgstr "Se requiere arquitectura de destino" - -#: ../../enterprise/include/class/AgentRepository.class.php:422 -msgid "Cannot create target dir [" -msgstr "No se ha podido crear el dir de destino [" - -#: ../../enterprise/include/class/AgentRepository.class.php:443 -#, php-format -msgid "Invalid installation file for %s" -msgstr "Archivo de instalación para %s no válido" - -#: ../../enterprise/include/class/AgentRepository.class.php:471 -msgid "Installation files not modified" -msgstr "Archivos de instalación no modificados" - -#: ../../enterprise/include/class/AgentRepository.class.php:492 -msgid "Installation files updated" -msgstr "Archivos de instalación actualizados" - -#: ../../enterprise/include/class/AgentRepository.class.php:495 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2307 -msgid "Agent successfully updated" -msgstr "Agente actualizado correctamente" - -#: ../../enterprise/include/class/AgentRepository.class.php:499 -msgid "You must provide installation files to create a new entry." -msgstr "Añada archivos de instalación para crear una nueva entrada." - -#: ../../enterprise/include/class/AgentRepository.class.php:519 -msgid "This agent has been already defined." -msgstr "El agente ya ha sido definido." - -#: ../../enterprise/include/class/AgentRepository.class.php:537 -msgid "Agent successfully registered and uploaded" -msgstr "Agente registrado y actualizado correctamente" - -#: ../../enterprise/include/class/AgentRepository.class.php:574 -#: ../../enterprise/include/class/DeploymentCenter.class.php:334 -msgid "Target successfully deleted" -msgstr "Objetivo borrado correctamente" - -#: ../../enterprise/include/class/AgentRepository.class.php:616 -msgid "Uploaded by" -msgstr "Subido por" - -#: ../../enterprise/include/class/AgentRepository.class.php:617 -msgid "Upload date" -msgstr "Fecha de subida" - -#: ../../enterprise/include/class/AgentRepository.class.php:696 -msgid "Add new software" -msgstr "Añadir nuevo software" - -#: ../../enterprise/include/class/AgentRepository.class.php:883 -msgid "Add new Software agent" -msgstr "Añadir nuevo agente software" - -#: ../../enterprise/include/class/AgentRepository.class.php:886 -msgid "Update Software agent" -msgstr "Actualizar agente software" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:342 -#: ../../enterprise/include/class/Omnishell.class.php:214 -msgid "Please follow the wizard." -msgstr "Siga las instrucciones del asistente." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:355 -#: ../../enterprise/include/class/Omnishell.class.php:226 -msgid "You have no acess to edit this command." -msgstr "No tiene acceso para editar este comando." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:401 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:460 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:502 -msgid "Alert not found." -msgstr "Alerta no encontrada." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:489 -msgid "JSON decoding error. Please call support." -msgstr "Error de decodificación JSON. Póngase en contacto con soporte." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:812 -msgid "Pass" -msgstr "Pasar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:813 -msgid "Drop" -msgstr "Soltar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:820 -#: ../../enterprise/include/functions_alert_event.php:1133 -msgid "Module alert" -msgstr "Alerta de módulos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:858 -msgid "Days a week" -msgstr "Días por semana" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:910 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:940 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3153 -msgid "from" -msgstr "desde" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:937 -msgid "Execute alert" -msgstr "Ejecutar alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:960 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3171 -msgid "times in" -msgstr "veces en" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:970 -msgid "threshold" -msgstr "umbral" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:997 -msgid "Grouped by" -msgstr "Agrupados por" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1045 -msgid "Available items" -msgstr "Elementos disponibles" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046 -msgid "Block" -msgstr "Bloquear" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1090 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:967 -msgid "Log content" -msgstr "Contenido de log" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1095 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:970 -msgid "Log source" -msgstr "Fuente de log" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1100 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:973 -msgid "Log agent" -msgstr "Agente de log" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1158 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:979 -msgid "Event content" -msgstr "Contenido de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1163 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:976 -msgid "Event user comment" -msgstr "Comentario de usuario de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1168 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:982 -msgid "Event agent" -msgstr "Agente de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1173 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:985 -msgid "Event module" -msgstr "Módulo de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1178 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:988 -msgid "Event module alerts" -msgstr "Alertas de módulos de eventos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1183 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:991 -msgid "Event group" -msgstr "Grupo de eventos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1188 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:994 -msgid "Event group Recursive" -msgstr "Recursividad del grupo de eventos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1193 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:997 -msgid "Event severity" -msgstr "Prioridad de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1198 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1000 -msgid "Event tag" -msgstr "Etiqueta de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1203 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1003 -msgid "Event user" -msgstr "Usuario de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1232 -msgid "Operators" -msgstr "Operadores" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1289 -msgid "Variables" -msgstr "Variables" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1301 -msgid "Doble click for assing value" -msgstr "Doble click para evaluar valor" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1308 -msgid "Modifiers" -msgstr "Modificadores" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1313 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1012 -msgid "Time window" -msgstr "Ventana de tiempo" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1388 -msgid "Rule definition" -msgstr "Definición de reglas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1574 -#: ../../enterprise/include/functions_HA_cluster.php:64 -msgid "Cleanup" -msgstr "Limpiar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1711 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1713 -msgid "Triggering Condition" -msgstr "Términos de disparo" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2023 -msgid "Every time that the alert is triggered" -msgstr "Cada vez que se dispara la alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2026 -msgid "Opions" -msgstr "Opciones" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2125 -msgid "There are no defined actions for this alert" -msgstr "No hay acciones definidas para esta alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2185 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3150 -msgid "Number of alerts match" -msgstr "Número de coincidencias de alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2280 -msgid "" -"Select the desired action and mode to view the Triggering fields for this " -"action" -msgstr "" -"Seleccione la acción y el modo deseados para ver los campos de disparo de " -"esta acción" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2365 -msgid "Alerts fields" -msgstr "Campos de alertas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2367 -msgid "Triggering fields configured in Alerts" -msgstr "Campos de disparo configurados en Alertas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2445 -msgid "Correlated alerts" -msgstr "Alertas correladas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2468 -msgid "Alert succesfully deleted" -msgstr "Alerta eliminada correctamente" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2477 -msgid "Alerts validated" -msgstr "Alerta validada" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2480 -msgid "Failed to process validation" -msgstr "No se ha podido efectuar la validación" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2625 -msgid "Matched" -msgstr "Coincidencias" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2648 -msgid "Sort elements" -msgstr "Clasificar elementos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2721 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2736 -msgid "Add Actions" -msgstr "Añadir acciones" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2916 -msgid "Are you sure you want to disable the alert" -msgstr "¿Está seguro de que quiere desactivar la alerta?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2922 -msgid "Are you sure you want to enable the alert" -msgstr "¿Está seguro de que quiere activar la alerta?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2929 -msgid "Disabled Alert" -msgstr "Alerta desactivada" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2968 -msgid "Are you sure you want to standby the alert" -msgstr "¿Está seguro de que quiere poner la alerta en suspensión?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2975 -msgid "Are you sure you want to activate the alert" -msgstr "¿Está seguro de que quiere activar la alerta?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2983 -msgid "Standby Alert" -msgstr "Alerta en suspensión" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3054 -msgid "Delete Actions" -msgstr "Eliminar acciones" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3230 -msgid "Successfully added action" -msgstr "Acción añadida correctamente" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3268 -msgid "Successfully delete action" -msgstr "Acción eliminada correctamente" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3389 -msgid "Choosetime" -msgstr "Elegir hora" - -#: ../../enterprise/include/class/Aws.cloud.php:92 -#: ../../enterprise/include/class/Azure.cloud.php:137 -msgid "Cloud message" -msgstr "Mensaje en la nube" - -#: ../../enterprise/include/class/Aws.cloud.php:280 -msgid "Recon" -msgstr "Reconocimento" - -#: ../../enterprise/include/class/Aws.cloud.php:281 -msgid "Costs" -msgstr "Costes" - -#: ../../enterprise/include/class/Aws.cloud.php:283 -msgid "Instances" -msgstr "Instancias" - -#: ../../enterprise/include/class/Aws.cloud.php:373 -msgid "Amazon EC2" -msgstr "Amazon EC2" - -#: ../../enterprise/include/class/Aws.cloud.php:378 -msgid "Amazon RDS" -msgstr "Amazon RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:421 -msgid "Recon task name" -msgstr "Nombre de la tarea de reconocimento" - -#: ../../enterprise/include/class/Aws.cloud.php:490 -msgid "Total cost" -msgstr "Coste total" - -#: ../../enterprise/include/class/Aws.cloud.php:507 -msgid "Cost by region" -msgstr "Coste por región" - -#: ../../enterprise/include/class/Aws.cloud.php:521 -msgid "Cost interval" -msgstr "Intervalo de coste" - -#: ../../enterprise/include/class/Aws.cloud.php:550 -#: ../../enterprise/include/class/Azure.cloud.php:852 -msgid "Scan and general monitoring." -msgstr "Escaneo y monitorización general." - -#: ../../enterprise/include/class/Aws.cloud.php:567 -#: ../../enterprise/include/class/Azure.cloud.php:865 -msgid "Cpu performance summary" -msgstr "Resumen del rendimiento de CPU" - -#: ../../enterprise/include/class/Aws.cloud.php:577 -#: ../../enterprise/include/class/Azure.cloud.php:873 -msgid "IOPS performance summary" -msgstr "Resumen del rendimiento de IOPS" - -#: ../../enterprise/include/class/Aws.cloud.php:587 -#: ../../enterprise/include/class/Azure.cloud.php:881 -msgid "Disk performance summary" -msgstr "Resumen del rendimiento de disco" - -#: ../../enterprise/include/class/Aws.cloud.php:597 -#: ../../enterprise/include/class/Azure.cloud.php:889 -msgid "Network performance summary" -msgstr "Resumen del rendimiento de la red" - -#: ../../enterprise/include/class/Aws.cloud.php:621 -#: ../../enterprise/include/class/Aws.cloud.php:1159 -#: ../../enterprise/include/class/Azure.cloud.php:796 -msgid "No instances found." -msgstr "No se han encontrado instancias." - -#: ../../enterprise/include/class/Aws.cloud.php:655 -msgid "Select EC2 instances" -msgstr "Seleccionar instancias EC2" - -#: ../../enterprise/include/class/Aws.cloud.php:674 -msgid "Storage" -msgstr "Almacenamiento" - -#: ../../enterprise/include/class/Aws.cloud.php:684 -msgid "Elastic IP Adresses" -msgstr "Direcciones IP elásticas" - -#: ../../enterprise/include/class/Aws.cloud.php:867 -msgid "You must select at least one RDS instance." -msgstr "Debe seleccionar al menos una instancia RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:872 -msgid "" -"You cannot monitor RDS instances from different types. Please define several " -"tasks for several types." -msgstr "" -"No puede monitorizar las instancias RDS desde diferentes tipos. Defina " -"varias tareas para diferentes tipos." - -#: ../../enterprise/include/class/Aws.cloud.php:879 -msgid "Discovery.Cloud.AWS.RDS" -msgstr "Discovery.Cloud.AWS.RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1045 -msgid "RDS" -msgstr "RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1050 -msgid "DB monitoring" -msgstr "Monitorización de base de datos" - -#: ../../enterprise/include/class/Aws.cloud.php:1060 -msgid "AWS RDS" -msgstr "AWS RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1119 -#: ../../enterprise/include/class/MySQL.app.php:474 -#: ../../enterprise/include/class/Oracle.app.php:472 -#: ../../enterprise/include/class/SAP.app.php:620 -#: ../../enterprise/include/class/VMware.app.php:656 -msgid "This group will be used also to classify discovered agents" -msgstr "Este grupo se usará para clasificar los agentes encontrados" - -#: ../../enterprise/include/class/Aws.cloud.php:1134 -msgid "Global DB User" -msgstr "Usuario de la base de datos global" - -#: ../../enterprise/include/class/Aws.cloud.php:1144 -msgid "Global DB password" -msgstr "Contraseña de la base de datos global" - -#: ../../enterprise/include/class/Aws.cloud.php:1228 -#: ../../enterprise/include/class/MySQL.app.php:581 -#: ../../enterprise/include/class/Oracle.app.php:562 -#: ../../enterprise/include/class/SAP.app.php:519 -#: ../../enterprise/include/class/SAPView.class.php:244 -#: ../../enterprise/include/class/SAPView.class.php:281 -#: ../../enterprise/include/class/VMware.app.php:586 -msgid "The minimum recomended interval is 5 minutes" -msgstr "El intervalo mínimo recomendado es de 5 minutos" - -#: ../../enterprise/include/class/Aws.cloud.php:1234 -msgid "Select RDS instances" -msgstr "Seleccionar instancias RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1375 -#: ../../enterprise/include/class/Azure.cloud.php:344 -#, php-format -msgid "%s not found or not executable" -msgstr "%s no encontrado o no ejecutable" - -#: ../../enterprise/include/class/Aws.cloud.php:1591 -msgid "Cannot update the recon database" -msgstr "No se ha podido actualizar la base de datos de reconocimiento" - -#: ../../enterprise/include/class/Aws.cloud.php:1613 -msgid "Engine not supported" -msgstr "Motor no compatible" - -#: ../../enterprise/include/class/Azure.cloud.php:237 -msgid "Task details" -msgstr "Detalles de la tarea" - -#: ../../enterprise/include/class/Azure.cloud.php:238 -msgid "Instance explorer" -msgstr "Buscador de instancias" - -#: ../../enterprise/include/class/Azure.cloud.php:239 -msgid "Metrics" -msgstr "Métricas" - -#: ../../enterprise/include/class/Azure.cloud.php:296 -msgid "Microsoft Compute" -msgstr "Microsoft Compute" - -#: ../../enterprise/include/class/Azure.cloud.php:572 -#: ../../enterprise/include/class/Azure.cloud.php:620 -msgid "Unauthorized access" -msgstr "Acceso no autorizado" - -#: ../../enterprise/include/class/Azure.cloud.php:833 -msgid "Select target virtual machines" -msgstr "Seleccionar máquinas virtuales de destino" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:121 -msgid "The CSV file must have the fields in the following order:" -msgstr "El archivo CSV debe tener los campos en el siguiente orden:" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:122 -msgid "Agent alias, IP address, OS id, Interval, Group id, Description" -msgstr "" -"Alias de agente, dirección IP, ID del SO, Intervalo, ID de grupo, Descripción" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:177 -msgid "Alias as name" -msgstr "Alias como nombre" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:242 -msgid "No data or wrong separator" -msgstr "No hay datos o separador incorrecto" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:248 -#, php-format -msgid "Agent %s duplicated." -msgstr "Agente %s duplicado" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:255 -#, php-format -msgid "Id group %s doesn't exist in %s" -msgstr "El ID de grupo %s no existe en %s" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:263 -msgid "General failure." -msgstr "Fallo general." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:284 -msgid "No input file detected" -msgstr "N se ha detectado archivo de entrada" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:373 -msgid "Agent processed successfully" -msgstr "Agente procesado correctamente" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:379 -msgid "Some errors while processing CSV." -msgstr "Algunos errores al procesar CSV." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:382 -msgid "All agents processed correctly" -msgstr "Todos los agentes procesados correctamente" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:389 -#, php-format -msgid "Line %s" -msgstr "Línea %s" - -#: ../../enterprise/include/class/DatabaseHA.class.php:133 -#: ../../enterprise/include/class/DatabaseHA.class.php:237 -#: ../../enterprise/include/class/DatabaseHA.class.php:420 -#: ../../enterprise/include/class/DatabaseHA.class.php:429 -#: ../../enterprise/include/class/DatabaseHA.class.php:537 -#: ../../enterprise/include/class/DatabaseHA.class.php:546 -msgid "Error, please refresh page" -msgstr "Error, vuelva a cargar la página" - -#: ../../enterprise/include/class/DatabaseHA.class.php:138 -msgid "Action already scheduled" -msgstr "Acción ya programada" - -#: ../../enterprise/include/class/DatabaseHA.class.php:144 -msgid "Unavailable action" -msgstr "Acción no disponible" - -#: ../../enterprise/include/class/DatabaseHA.class.php:156 -msgid "" -"A node is already being synchronized, please wait until process finish." -msgstr "" -"Ya se está sincronizando un nodo, espere hasta que el proceso termine." - -#: ../../enterprise/include/class/DatabaseHA.class.php:168 -msgid "Please verify resync configuration is set before use this feature." -msgstr "" -"Compruebe la configuración de resincronización antes de usar esta " -"funcionalidad" - -#: ../../enterprise/include/class/DatabaseHA.class.php:186 -msgid "Successfully scheduled" -msgstr "Programado correctamente" - -#: ../../enterprise/include/class/DatabaseHA.class.php:216 -msgid "Uninitialized" -msgstr "No iniciado" - -#: ../../enterprise/include/class/DatabaseHA.class.php:472 -msgid "This is not a cluster node" -msgstr "Este no es un nodo de cluster" - -#: ../../enterprise/include/class/DatabaseHA.class.php:476 -msgid "Failed to retrieve master position" -msgstr "No se ha podido obtener la posición de maestro" - -#: ../../enterprise/include/class/DatabaseHA.class.php:489 -msgid "Failed to retrieve slave information" -msgstr "No se ha podido obtener la información de esclavo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:513 -msgid "Master" -msgstr "Principal" - -#: ../../enterprise/include/class/DatabaseHA.class.php:515 -msgid "Slave" -msgstr "Esclavo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:682 -msgid "Failed to update" -msgstr "Error al actualizar" - -#: ../../enterprise/include/class/DatabaseHA.class.php:709 -#: ../../enterprise/include/class/DatabaseHA.class.php:868 -msgid "DB Replication user" -msgstr "Usuario de replicación de la base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:716 -#: ../../enterprise/include/class/DatabaseHA.class.php:877 -msgid "DB Replication user password" -msgstr "Contraseña de usuario de replicación de la base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:723 -msgid "Resync data dir" -msgstr "Resincronizar directorio de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:730 -msgid "Resync tmp directory" -msgstr "Resincronizar directorio tmp" - -#: ../../enterprise/include/class/DatabaseHA.class.php:737 -msgid "Resync MySQL user" -msgstr "Resincronizar usuario MySQL" - -#: ../../enterprise/include/class/DatabaseHA.class.php:744 -msgid "Resync MySQL group" -msgstr "Resincronizar grupo MySQL" - -#: ../../enterprise/include/class/DatabaseHA.class.php:802 -msgid "IP or FQDN" -msgstr "IP o FQDN" - -#: ../../enterprise/include/class/DatabaseHA.class.php:803 -msgid "" -"This action only registers an already configured node. This action does not " -"configure any resource." -msgstr "" -"Esta acción solo registra un nodo ya configurado. Esta acción no configura " -"ninguna fuente." - -#: ../../enterprise/include/class/DatabaseHA.class.php:813 -msgid "Cluster node label (pcs)" -msgstr "Etiqueta de nodo de cluster (pcs)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:821 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:463 -msgid "DB port" -msgstr "Puerto de la BD" - -#: ../../enterprise/include/class/DatabaseHA.class.php:829 -msgid "SSH user" -msgstr "Usuario SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:837 -msgid "SSH port" -msgstr "Puerto SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:845 -msgid "SSH key" -msgstr "Clave SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:853 -msgid "SSH public key" -msgstr "Clave SSH pública" - -#: ../../enterprise/include/class/DatabaseHA.class.php:905 -msgid "Missed parameters" -msgstr "Parámetros omitidos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:952 -msgid "You must specify a host" -msgstr "Especifique un host" - -#: ../../enterprise/include/class/DatabaseHA.class.php:954 -msgid "DB port must be a positive integer" -msgstr "El puerto de la base de datos debe ser un valor positivo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:956 -msgid "SSH port must be a positive integer" -msgstr "El puerto SSH debe ser un integrante positivo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:958 -msgid "You must specify a SSH user" -msgstr "Especifique el usuario SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:960 -msgid "You must specify a replication DB user" -msgstr "Especifique un usuario de replicación de base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:962 -msgid "You must specify a replication DB pass" -msgstr "Especifique una contraseña de replicación de base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:964 -msgid "You must specify a public key path" -msgstr "Especifique una ruta de clave pública" - -#: ../../enterprise/include/class/DatabaseHA.class.php:966 -msgid "You must specify a private path" -msgstr "Especifique una ruta privada" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1016 -msgid "Successfully " -msgstr "Correctamente " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:235 -msgid "IP address is required" -msgstr "Se requiere dirección IP" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:249 -msgid "Credentials to use are required" -msgstr "Se requieren credenciales de uso" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:251 -msgid "Desired agent version is required" -msgstr "Se requiere la versión de agente deseada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:262 -msgid "Target already defined." -msgstr "Objetivo ya definido." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:288 -msgid "Target successfully added" -msgstr "Objetivo añadido correctamente" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:309 -msgid "Target successfully updated" -msgstr "Objetivo actualizado correctamente" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:351 -msgid "You should specify a Discovery server" -msgstr "Especifique un servidor Discovery" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:353 -msgid "You must select some targets to deploy" -msgstr "Seleccione algunos de los objetivos a desplegar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:383 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 -msgid "Failed to schedule" -msgstr "No se ha podido programar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:398 -msgid "Deploy scheduled" -msgstr "Despliegue programado" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:424 -msgid "CSV file is needed" -msgstr "Se necesita archivo CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:580 -msgid "Deployment center" -msgstr "Centro de despliegue" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:596 -msgid "There are no targets defined yet, please add some." -msgstr "Aún no hay objetivos definidos, añada alguno." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:603 -#, php-format -msgid "Please set %s to make software available for targets." -msgstr "Programe %s para que el software esté disponible para los objetivos." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:616 -#: ../../enterprise/include/class/SAP.app.php:350 -msgid "here" -msgstr "aquí" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:615 -#, php-format -msgid "" -"There are no software agents in your repository yet, please add some %s." -msgstr "No hay agentes software en el repositorio, añada algunos %s." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:634 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1696 -msgid "Scan for targets" -msgstr "Escaneo de objetivos" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:643 -msgid "Add target" -msgstr "Añadir destino" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:652 -msgid "Load targets" -msgstr "Cargar destinos" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:717 -msgid "Key identifier" -msgstr "Identificador de clave" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:718 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1177 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1314 -msgid "Target server IP" -msgstr "IP del servidor de destino" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:719 -msgid "Agent version installed" -msgstr "Verison de agente instalada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:720 -msgid "Agent version desired" -msgstr "Versión de agente deseada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:721 -msgid "Installation date" -msgstr "Fecha de instalación" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:722 -msgid "Last error" -msgstr "Último error" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:767 -msgid "Server IP" -msgstr "IP del servidor" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:792 -msgid "State" -msgstr "Estado" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:824 -msgid "Deploy agent to targets" -msgstr "Desplegar agentes a destinos" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:997 -msgid "You must define a network." -msgstr "Defina una red." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:999 -msgid "You must select at least one credential to test." -msgstr "Seleccione al menos un credencial a probar." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1001 -msgid "You must select a Discovery server." -msgstr "Seleccione un servidor Discovery." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1003 -msgid "Please select a desired software agent version." -msgstr "Seleccione la version deseada del agente software." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1005 -msgid "Please specify a server IP." -msgstr "Especifique una IP de servidor." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1025 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1058 -msgid "Discovery task list" -msgstr "Lista de tareas Discovery" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1024 -#, php-format -msgid "This network is already being scanned. See progress at %s" -msgstr "Ya se está escaneando la red. Ver progreso en %s" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1057 -#, php-format -msgid "Network scheduled to be scanned. You can see progress at %s" -msgstr "Escaneo de red programado. Puede ver el progreso en %s." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1090 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1093 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1220 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1223 -#: ../../enterprise/include/class/SAP.app.php:580 -#: ../../enterprise/include/class/SAP.app.php:583 -msgid "No credentials available" -msgstr "No hay credenciales disponibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1091 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1221 -#: ../../enterprise/include/class/SAP.app.php:581 -msgid "Manage credentials" -msgstr "Gestionar credenciales" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1105 -msgid "Network/mask" -msgstr "Red/Máscara" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1114 -msgid "Scan from" -msgstr "Escanear desde" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1133 -msgid "Credentials to try with" -msgstr "Credenciales con los que probar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1167 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1304 -msgid "Desired agent version" -msgstr "Versión de agente deseada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 -msgid "Target agent version" -msgstr "Version de agente objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 -msgid "Target server ip" -msgstr "IP del servidor objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1371 -msgid "CSV file" -msgstr "Archivo CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1431 -msgid "Select desired targets to be deployed" -msgstr "Seleccionar objetivos a desplegar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1434 -msgid "Deploy from" -msgstr "Desplegar desde" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1449 -msgid "Available targets" -msgstr "Objetivos disponibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1624 -msgid "Add new target" -msgstr "Añadir nuevo objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1627 -msgid "Update target" -msgstr "Actualizar objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 -msgid "Import targets from CSV" -msgstr "Importar objetivos desde CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1697 -msgid "Scan" -msgstr "Escanear" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1728 -msgid "Select targets" -msgstr "Seleccionar objetivos" - -#: ../../enterprise/include/class/MySQL.app.php:172 -msgid "" -"This MySQL configuration has been already defined. Please edit it or create " -"a new one." -msgstr "" -"Ya se ha definido esta configuración MySQL. Edítela o cree una nueva." - -#: ../../enterprise/include/class/MySQL.app.php:215 -msgid "You must provide a valid MySQL server IP or FQDN." -msgstr "Añada una IP de servidor MySQL válida o FQDN." - -#: ../../enterprise/include/class/MySQL.app.php:220 -msgid "You must provide a valid port number." -msgstr "Añada un número de puerto válido." - -#: ../../enterprise/include/class/MySQL.app.php:232 -msgid "Discovery.Application.MySQL" -msgstr "Discovery.Application.MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:284 -msgid "Failed to find discovery MySQL task." -msgstr "No se ha encontrado la tarea discovery MySQL." - -#: ../../enterprise/include/class/MySQL.app.php:402 -#: ../../enterprise/include/class/Oracle.app.php:388 -#: ../../enterprise/include/class/SAP.app.php:315 -#: ../../enterprise/include/class/VMware.app.php:441 -msgid "Application" -msgstr "Aplicación" - -#: ../../enterprise/include/class/MySQL.app.php:489 -msgid "MySQL server IP" -msgstr "IP del servidor MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:490 -msgid "Comma separated, as many targets as you need." -msgstr "Tantos objetivos como desee, separados por comas." - -#: ../../enterprise/include/class/MySQL.app.php:509 -msgid "MySQL server Port" -msgstr "Puerto del servidor MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:654 -#: ../../enterprise/include/class/Oracle.app.php:635 -msgid "Target agent" -msgstr "Agente objetivo" - -#: ../../enterprise/include/class/MySQL.app.php:655 -msgid "" -"Defines a target agent where this task will store data detected, if you have " -"defined multiple targets, define a comma separated list of names here or " -"leave in blank to use server IP address/ FQDN." -msgstr "" -"Define un agente de destino donde la tarea almacenará los datos detectados. " -"Si tiene varios objetivos definidos, defina una lista de nombres separados " -"por coma aquí o déjelo en blanco para usar la dirección IP/FQDN del servidor." - -#: ../../enterprise/include/class/MySQL.app.php:674 -#: ../../enterprise/include/class/Oracle.app.php:655 -msgid "Custom module prefix" -msgstr "Prefijo de módulo personalizado" - -#: ../../enterprise/include/class/MySQL.app.php:675 -#: ../../enterprise/include/class/Oracle.app.php:656 -msgid "" -"Defines a custom prefix to be concatenated before module names generated by " -"this task." -msgstr "" -"Define un prefijo personalizado para concatenar antes de los nombres de " -"módulos generados por esta tarea." - -#: ../../enterprise/include/class/MySQL.app.php:696 -msgid "Scan databases" -msgstr "Bases de datos de escaneo" - -#: ../../enterprise/include/class/MySQL.app.php:712 -msgid "Create agent per database" -msgstr "Crear agente por base de datos" - -#: ../../enterprise/include/class/MySQL.app.php:733 -msgid "Custom database agent prefix" -msgstr "Prefijo de agente de base de datos personalizado" - -#: ../../enterprise/include/class/MySQL.app.php:734 -msgid "" -"Defines a custom prefix to be concatenated before database agent names " -"generated by this task." -msgstr "" -"Define un prefijo personalizado a concatenar antes de los nombres de agentes " -"de base de datos generados por esta tarea." - -#: ../../enterprise/include/class/MySQL.app.php:755 -#: ../../enterprise/include/class/Oracle.app.php:674 -msgid "Check engine uptime" -msgstr "Comprobar disponibilidad del motor" - -#: ../../enterprise/include/class/MySQL.app.php:771 -#: ../../enterprise/include/class/Oracle.app.php:690 -msgid "Retrieve query statistics" -msgstr "Obtener estadísticas de consultas" - -#: ../../enterprise/include/class/MySQL.app.php:787 -#: ../../enterprise/include/class/Oracle.app.php:706 -msgid "Analyze connections" -msgstr "Analizar conexiones" - -#: ../../enterprise/include/class/MySQL.app.php:803 -msgid "Retrieve InnoDB statistics" -msgstr "Obtener estadísticas InnoDB" - -#: ../../enterprise/include/class/MySQL.app.php:819 -#: ../../enterprise/include/class/Oracle.app.php:754 -msgid "Retrieve cache statistics" -msgstr "Obtener estadísticas de bases de datos" - -#: ../../enterprise/include/class/MySQL.app.php:835 -#: ../../enterprise/include/class/Oracle.app.php:770 -msgid "Execute custom queries" -msgstr "Ejecutar consultas personalizadas" - -#: ../../enterprise/include/class/MySQL.app.php:887 -#: ../../enterprise/include/class/Oracle.app.php:924 -msgid "Custom queries" -msgstr "Consultas personalizadas" - -#: ../../enterprise/include/class/MySQL.app.php:888 -#: ../../enterprise/include/class/Oracle.app.php:925 -msgid "Define here your custom queries." -msgstr "Defina aquí sus consultas personalizadas." - -#: ../../enterprise/include/class/Omnishell.class.php:261 -msgid "Failed to save command." -msgstr "Error al guardar comando." - -#: ../../enterprise/include/class/Omnishell.class.php:272 -msgid "Command not found." -msgstr "Comando no encontrado." - -#: ../../enterprise/include/class/Omnishell.class.php:349 -#: ../../enterprise/include/class/Omnishell.class.php:610 -msgid "You must install php-yaml in order to use this feature." -msgstr "Instale php-yaml para usar esta funcionalidad." - -#: ../../enterprise/include/class/Omnishell.class.php:364 -msgid "Not Started" -msgstr "No iniciado" - -#: ../../enterprise/include/class/Omnishell.class.php:442 -msgid "Commands status" -msgstr "Estado de los comandos" - -#: ../../enterprise/include/class/Omnishell.class.php:487 -msgid "Create command" -msgstr "Crear comando" - -#: ../../enterprise/include/class/Omnishell.class.php:506 -msgid "Selected command definitions will be erased" -msgstr "Las definiciones de los comandos seleccionadas se eliminarán." - -#: ../../enterprise/include/class/Omnishell.class.php:688 -msgid "Time out" -msgstr "Tiempo fuera de servicio" - -#: ../../enterprise/include/class/Omnishell.class.php:697 -msgid "Retries " -msgstr "Reintentos " - -#: ../../enterprise/include/class/Omnishell.class.php:708 -msgid "Preconditions " -msgstr "Condiciones previas " - -#: ../../enterprise/include/class/Omnishell.class.php:709 -msgid "" -"All commands defined line per line must success to execute main commands" -msgstr "" -"Todos los comandos definidos en cada línea deben ser correctos para ejecutar " -"los comandos principales" - -#: ../../enterprise/include/class/Omnishell.class.php:721 -msgid "Execute commands " -msgstr "Ejecutar comandos " - -#: ../../enterprise/include/class/Omnishell.class.php:722 -msgid "Define as many lines as commands you want to execute" -msgstr "Definir tantas líneas como comandos desee ejecutar" - -#: ../../enterprise/include/class/Omnishell.class.php:734 -msgid "Postconditions " -msgstr "Condiciones posteriores " - -#: ../../enterprise/include/class/Omnishell.class.php:735 -msgid "" -"All commands defined line per line must success to consider command success" -msgstr "" -"Todos los comandos definidos en cada línea deben ser correctos para que el " -"comando se considere correcto" - -#: ../../enterprise/include/class/Omnishell.class.php:856 -msgid "Remove agents" -msgstr "Eliminar agentes" - -#: ../../enterprise/include/class/Omnishell.class.php:866 -msgid "Selected agents" -msgstr "Agentes seleccionados" - -#: ../../enterprise/include/class/Omnishell.class.php:1105 -msgid "Selected command definition will be erased" -msgstr "La definición de comando seleccionada se eliminará" - -#: ../../enterprise/include/class/Omnishell.class.php:1190 -msgid "Command viewer" -msgstr "Visor de comandos" - -#: ../../enterprise/include/class/Omnishell.class.php:1198 -msgid "Detailed view" -msgstr "Vista detallada" - -#: ../../enterprise/include/class/Omnishell.class.php:1339 -msgid "Not an array of ids" -msgstr "No un conjunto de IDs" - -#: ../../enterprise/include/class/Omnishell.class.php:1397 -msgid "There are no targets for this remote command" -msgstr "No hay objetivos para este comando remoto" - -#: ../../enterprise/include/class/Omnishell.class.php:1404 -msgid "Command does not exist" -msgstr "El comando no existe" - -#: ../../enterprise/include/class/Omnishell.class.php:1500 -msgid "success" -msgstr "con éxito" - -#: ../../enterprise/include/class/Omnishell.class.php:1503 -msgid "timed out" -msgstr "tiempo de espera agotado" - -#: ../../enterprise/include/class/Omnishell.class.php:1506 -msgid "failed" -msgstr "error" - -#: ../../enterprise/include/class/Omnishell.class.php:1522 -msgid "Waiting results..." -msgstr "Esperando resultados..." - -#: ../../enterprise/include/class/Omnishell.class.php:1541 -msgid "RCMD does not exist" -msgstr "RCMD no existe" - -#: ../../enterprise/include/class/Oracle.app.php:165 -msgid "" -"This Oracle configuration has been already defined. Please edit it or create " -"a new one." -msgstr "" -"Esta configuración Oracle ya se ha definido. Edítela o cree una nueva." - -#: ../../enterprise/include/class/Oracle.app.php:207 -msgid "You must provide a valid Oracle server IP or FQDN." -msgstr "Añada una IP de servidor o FQDN de Oracle válidos." - -#: ../../enterprise/include/class/Oracle.app.php:219 -msgid "Discovery.Application.Oracle" -msgstr "Discovery.Application.Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:272 -msgid "Failed to find discovery Oracle task." -msgstr "No se ha podido encontrar la tarea discovery Oracle." - -#: ../../enterprise/include/class/Oracle.app.php:487 -msgid "Oracle target strings" -msgstr "Cadenas objetivo de Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:488 -msgid "" -"SERVER:PORT/SID, comma separated or line by line, as many targets as you " -"need." -msgstr "" -"SERVER:PORT/SID, separados por coma o línea por línea, tantos objetivos como " -"precise." - -#: ../../enterprise/include/class/Oracle.app.php:488 -msgid "Use # symbol to comment a line." -msgstr "Use el símbolo # para comentar una línea." - -#: ../../enterprise/include/class/Oracle.app.php:636 -msgid "" -"Defines a target agent where this task will store data detected, if you have " -"defined multiple targets, define a comma separated list of names here or " -"leave in blank to use target as name." -msgstr "" -"Define un objetivo de agente donde la tarea almacenará los datos detectados. " -"Si ha definido varios objetivos, defina una lista de nombres separados por " -"coma o déjelo en blanco para usar el objetivo como nombre." - -#: ../../enterprise/include/class/Oracle.app.php:722 -msgid "Calculate fragmentation ratio" -msgstr "Calcular la tasa de fragmentación" - -#: ../../enterprise/include/class/Oracle.app.php:738 -msgid "Monitor tablespaces" -msgstr "Espacio de tablas del monitor" - -#: ../../enterprise/include/class/SAP.app.php:155 -msgid "" -"This SAP configuration has been already defined. Please edit it or create a " -"new one." -msgstr "Ya se ha definido esta configuración SAP. Edítela o cree una nueva." - -#: ../../enterprise/include/class/SAP.app.php:196 -msgid "You must specify at last one SAP hostname." -msgstr "Especifique al menos un nombre de host SAP." - -#: ../../enterprise/include/class/SAP.app.php:207 -msgid "Discovery.Application.SAP" -msgstr "Discovery.Application.SAP" - -#: ../../enterprise/include/class/SAP.app.php:263 -msgid "Failed to find discovery SAP task." -msgstr "No se ha encontrado la tarea de discovery SAP." - -#: ../../enterprise/include/class/SAP.app.php:270 -msgid "Select at least a module." -msgstr "Seleccione al menos un módulo." - -#: ../../enterprise/include/class/SAP.app.php:333 -msgid "SAP R3" -msgstr "SAP R3" - -#: ../../enterprise/include/class/SAP.app.php:526 -msgid "SAP Hostname" -msgstr "Nombre del host SAP" - -#: ../../enterprise/include/class/SAP.app.php:550 -msgid "SAP Client" -msgstr "Cliente SAP" - -#: ../../enterprise/include/class/SAP.app.php:563 -msgid "SAP System Number" -msgstr "Número del sistema SAP" - -#: ../../enterprise/include/class/SAP.app.php:593 -#: ../../enterprise/include/class/SAP.app.php:607 -msgid "SAP Credentials" -msgstr "Credenciales SAP" - -#: ../../enterprise/include/class/SAP.app.php:593 -#: ../../enterprise/include/class/SAP.app.php:607 -msgid "Optional" -msgstr "Opcional" - -#: ../../enterprise/include/class/SAP.app.php:708 -msgid "Average time of SAPGUI response" -msgstr "Media de tiempo de respuesta de SAPGUI" - -#: ../../enterprise/include/class/SAP.app.php:710 -msgid "Dialog Logged users" -msgstr "Usuarios conectados en el diálogo" - -#: ../../enterprise/include/class/SAP.app.php:735 -msgid "Available modules" -msgstr "Módulos disponibles" - -#: ../../enterprise/include/class/SAP.app.php:771 -msgid "Add monitors" -msgstr "Añadir monitores" - -#: ../../enterprise/include/class/SAP.app.php:783 -msgid "Remove monitors" -msgstr "Eliminar monitores" - -#: ../../enterprise/include/class/SAP.app.php:793 -msgid "Selected modules" -msgstr "Módulos seleccionados" - -#: ../../enterprise/include/class/SAPView.class.php:146 -msgid "SAP data not found." -msgstr "Datos SAP no encontrados." - -#: ../../enterprise/include/class/SAPView.class.php:179 -msgid "SAP View" -msgstr "Vista SAP" - -#: ../../enterprise/include/class/SAPView.class.php:243 -msgid "Refresh Every" -msgstr "Refrescar cada" - -#: ../../enterprise/include/class/SAPView.class.php:280 -msgid "Graph Interval" -msgstr "Intervalo de gráfica" - -#: ../../enterprise/include/class/SAPView.class.php:619 -msgid "" -"SAP view offers you to see the most important modules Discovery Server is " -"usually configured to retry. You have not configured a Discovery SAP R3 task " -"yet, please visit" -msgstr "" -"La vista SAP le ofrece los módulos más importantes. El servidor Discovery " -"normalmente está configurado para hacer reintentos. Si aún no ha configurado " -"la tarea Discovery SAP R3, visite" - -#: ../../enterprise/include/class/SAPView.class.php:619 -msgid "to start monitoring your SAP infrastructure." -msgstr "para comenzar a monitorizar su infraestructura SAP" - -#: ../../enterprise/include/class/SAPView.class.php:626 -msgid "Discover SAP" -msgstr "Descubrir SAP" - -#: ../../enterprise/include/class/SSH.class.php:177 -msgid "Failed to connect" -msgstr "No se ha podido conectar" - -#: ../../enterprise/include/class/SSH.class.php:229 -#, php-format -msgid "Unable to open public key file %s" -msgstr "No se ha podido abrir el archivo de clave pública %s" - -#: ../../enterprise/include/class/SSH.class.php:248 -msgid "Failed to login to target" -msgstr "No se ha podido iniciar sesión en el objetivo" - -#: ../../enterprise/include/class/VMware.app.php:207 -msgid "" -"This VMware configuration has been already defined. Please edit it or create " -"a new one." -msgstr "Ya se ha definido la configuración VMware. Edítela o cree una nueva." - -#: ../../enterprise/include/class/VMware.app.php:251 -msgid "You must provide a valid V-Center IP or FQDN." -msgstr "Añada una IP V-Center o FQDN válida." - -#: ../../enterprise/include/class/VMware.app.php:262 -msgid "Discovery.Application.VMware" -msgstr "Discovery.Application.VMware" - -#: ../../enterprise/include/class/VMware.app.php:326 -msgid "Failed to find discovery VMware task." -msgstr "No se ha podido encontrar la tarea de discovery VMware." - -#: ../../enterprise/include/class/VMware.app.php:341 -msgid "Threads must be equal or greater than 1." -msgstr "Los hilos deben ser igual o mayor que 1." - -#: ../../enterprise/include/class/VMware.app.php:549 -msgid "Datacenter user" -msgstr "Usuario del datacenter" - -#: ../../enterprise/include/class/VMware.app.php:600 -msgid "V-Center IP" -msgstr "V-Center IP" - -#: ../../enterprise/include/class/VMware.app.php:611 -msgid "Datacenter name" -msgstr "Nombre del centro de datos" - -#: ../../enterprise/include/class/VMware.app.php:612 -msgid "" -"This name must match with the name wich appears when you log in you VMware " -"manager" -msgstr "" -"El nombre debe coincidir con el nombre que aparece al iniciar sesión en el " -"gestor de VMware." - -#: ../../enterprise/include/class/VMware.app.php:642 -msgid "Encrypt passwords" -msgstr "Cifrar contraseñas" - -#: ../../enterprise/include/class/VMware.app.php:759 -msgid "Max threads" -msgstr "Máximo de hilos" - -#: ../../enterprise/include/class/VMware.app.php:768 -msgid "Re-scan interval" -msgstr "Intervalo de re-escaneo" - -#: ../../enterprise/include/class/VMware.app.php:769 -msgid "Enables re-scan entities process every interval defined." -msgstr "" -"Hace posible que las entidades de re-escaneo procesen todos los intervalos " -"definidos." - -#: ../../enterprise/include/class/VMware.app.php:802 -msgid "Retry send" -msgstr "Reintentar envío" - -#: ../../enterprise/include/class/VMware.app.php:812 -msgid "Event mode" -msgstr "Modo de evento" - -#: ../../enterprise/include/class/VMware.app.php:822 -msgid "Virtual network monitoring" -msgstr "Monitorización de redes virtuales" - -#: ../../enterprise/include/class/VMware.app.php:847 -msgid "Extra settings" -msgstr "Ajustes adicionales" - -#: ../../enterprise/include/class/VMware.app.php:848 -msgid "This RAW block will be directly added to config file." -msgstr "Este bloque RAM se añadirá directamente al archivo de configuración." - -#: ../../enterprise/include/functions_HA_cluster.php:49 -msgid "Recover" -msgstr "Recuperar" - -#: ../../enterprise/include/functions_HA_cluster.php:52 -msgid "Promote" -msgstr "Promover" - -#: ../../enterprise/include/functions_HA_cluster.php:55 -msgid "Demote" -msgstr "Degradar" - -#: ../../enterprise/include/functions_HA_cluster.php:67 -msgid "Resync" -msgstr "Volver a sincronizar" - -#: ../../enterprise/include/functions_HA_cluster.php:261 -msgid "Public Key Authentication Failed" -msgstr "Error en la autenticación de clave pública" - -#: ../../enterprise/include/functions_HA_cluster.php:268 -msgid "Connection failed" -msgstr "Conexion fallida" - -#: ../../enterprise/include/functions_HA_cluster.php:491 -msgid "Register" -msgstr "Registrar" - -#: ../../enterprise/include/functions_HA_cluster.php:493 -msgid "Register new node" -msgstr "Registrar nuevo nodo" - -#: ../../enterprise/include/functions_visual_map.php:203 -#: ../../enterprise/include/functions_visual_map.php:268 -msgid "Crit:" -msgstr "Crítico" - -#: ../../enterprise/include/functions_visual_map.php:207 -#: ../../enterprise/include/functions_visual_map.php:272 -msgid "Warn:" -msgstr "Advertencia" - -#: ../../enterprise/include/functions_visual_map.php:211 -#: ../../enterprise/include/functions_visual_map.php:276 -msgid "Ok:" -msgstr "OK" - -#: ../../enterprise/include/functions_visual_map.php:215 -#: ../../enterprise/include/functions_visual_map.php:280 -#: ../../enterprise/meta/include/functions_autoprovision.php:737 -msgid "Value:" -msgstr "Valor:" - -#: ../../enterprise/include/functions_visual_map.php:671 -msgid "None of the services was added" -msgstr "No se añadió ningún servicio" - -#: ../../enterprise/include/functions_visual_map.php:673 -#, php-format -msgid "%d services couldn't be added" -msgstr "%d servicios no se han podido añadir" - -#: ../../enterprise/include/functions_visual_map.php:679 -msgid "There was an error retrieving the visual map information" -msgstr "Error al recuperar la información del mapa visual" - -#: ../../enterprise/include/functions_visual_map.php:682 -msgid "No services selected" -msgstr "Ningún servicio seleccionado" - -#: ../../enterprise/include/functions_aws.php:381 -msgid "$" -msgstr "$" - -#: ../../enterprise/include/functions_aws.php:491 -msgid "Current deployments" -msgstr "Despliegues actuales" - -#: ../../enterprise/include/functions_aws.php:525 -msgid "Cost analysis" -msgstr "Análisis de costes" - -#: ../../enterprise/include/functions_aws.php:528 -msgid "Current cost estimation" -msgstr "Estimación actual de costes" - -#: ../../enterprise/include/functions_aws.php:530 -msgid "Previous period cost" -msgstr "Coste del periodo anterior" - -#: ../../enterprise/include/functions_aws.php:589 -msgid "Reservation status" -msgstr "Estado de reserva" - -#: ../../enterprise/include/functions_backup.php:169 -msgid "No description" -msgstr "Sin descripción" - -#: ../../enterprise/include/functions_backup.php:292 -msgid "Restoring a backup" -msgstr "Restaurar una copia de seguridad" - -#: ../../enterprise/include/functions_backup.php:294 -#, php-format -msgid "Restoring a %s database backup must be done manually." -msgstr "" -"La restauración de la copia de seguridad de la base de datos de %s debe " -"llevarse a cabo manualmente." - -#: ../../enterprise/include/functions_backup.php:295 +#: ../../general/first_task/tags.php:28 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:296 -msgid "To restore the selected backup, please follow these steps" -msgstr "" -"Para restaurar la copia de seguridad seleccionada sigue los siguientes pasos." - -#: ../../enterprise/include/functions_backup.php:302 -msgid "Open a root shell in your system located at " -msgstr "Abre un root shell en tu sistema localizado en " - -#: ../../enterprise/include/functions_backup.php:306 -msgid "Connect to MySQL database using the following command" -msgstr "Usa el siguiente comando para conectar con la base de datos de MySQL" - -#: ../../enterprise/include/functions_backup.php:313 -msgid "Create a new database" -msgstr "Crear una nueva base de datos" - -#: ../../enterprise/include/functions_backup.php:330 -msgid "Restore the backup" -msgstr "Restaurar la copia de seguridad" - -#: ../../enterprise/include/functions_backup.php:338 -msgid "Modify console configuration to use this new database" -msgstr "" -"Modifica la configuración de la consola para usar esta nueva base de datos" - -#: ../../enterprise/include/functions_backup.php:339 -msgid "Open configuration file" -msgstr "Abrir el archivo de configuración" - -#: ../../enterprise/include/functions_backup.php:343 -#: ../../enterprise/include/functions_backup.php:355 -msgid "Find" -msgstr "Encontrar" - -#: ../../enterprise/include/functions_backup.php:345 -#: ../../enterprise/include/functions_backup.php:358 -msgid "and replace with" -msgstr "y reemplazar con" - -#: ../../enterprise/include/functions_backup.php:352 -msgid "Modify servers configuration to use this new database" -msgstr "" -"Modifica la configuración de los servidores para usar esta nueva base de " -"datos" - -#: ../../enterprise/include/functions_backup.php:353 -msgid "Find servers configuration file and replace the following lines" -msgstr "" -"Accede al archivo de configuración de los servidores y reemplázalo por las " -"siguientes líneas" - -#: ../../enterprise/include/functions_backup.php:365 -msgid "Restart the servers and login again into the console" -msgstr "Reinicia los servidores y vuelve a identificarte en la consola" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:180 -msgid "There was a problem creating Alert" -msgstr "Ha habido un problema al crear la alerta" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:256 -msgid "There was a problem deleting Alert" -msgstr "Ha habido un problema al eliminar la alerta" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:707 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:721 -msgid "There was a problem creating Action" -msgstr "Ha habido un problema al crear la acción" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:758 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:771 -msgid "There was a problem updating Action" -msgstr "Ha habido un problema al actualizar la acción" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:807 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:821 -msgid "There was a problem deleting Action" -msgstr "Ha habido un problema al eliminar la acción" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:862 -msgid "There was a problem standby alert" -msgstr "Ha habido un problema en la alerta en suspensión" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:877 -msgid "There was a problem standby off alert" -msgstr "" -"Ha ocurrido un problema al deshabilitar el modo suspensión de las alertas" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:921 -msgid "There was a problem disabled alert" -msgstr "Ha habido un problema en la alerta deshabilitada" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:937 -msgid "There was a problem enabled alert" -msgstr "Ha habido un problema en la alerta habilitada" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397 -msgid "Failed to cleanup old rules." -msgstr "No se han podido limpiar las reglas antiguas." - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1406 -msgid "Failed to apply rule." -msgstr "Error al aplicar la regla." - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1538 -msgid "any" -msgstr "cualquier" - -#: ../../enterprise/include/lib/RCMDFile.class.php:203 -msgid "You do not have grants to access this feature" -msgstr "No tiene permisos de acceso a esta funcionalidad" - -#: ../../enterprise/include/lib/RCMDFile.class.php:541 -msgid "There was a problem creating RCMD" -msgstr "Ha habido un problema al crear RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:686 -#: ../../enterprise/include/lib/RCMDFile.class.php:710 -msgid "There was a problem deleting RCMD" -msgstr "Ha habido un problema al eliminar RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:858 -msgid "No agent configuration file" -msgstr "No hay archivo de configuración de agente" - -#: ../../enterprise/include/lib/RCMDFile.class.php:866 -msgid "you don't have write permissions in the configuration file" -msgstr "no tiene permisos de escritura en el archivo de configuración" - -#: ../../enterprise/include/lib/RCMDFile.class.php:907 -msgid "This agent is already a target" -msgstr "Este agente ya es un objetivo" - -#: ../../enterprise/include/lib/RCMDFile.class.php:938 -#, php-format -msgid "You do not have grants to access in this agent %s" -msgstr "No tiene permisos para acceder a este agente %s" +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +"chosen modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." +msgstr "" +"El acceso a los módulos puede configurarse mediante etiquetas.\n" +"\t\t\t\t\t\t\t\tLas etiquetas se configuran en el sistema y se asignan a los " +"módulos elegidos.\n" +"\t\t\t\t\t\t\t\tPor ello, se puede restringir el acceso de un usuario a los " +"módulos mediante ciertas etiquetas." + +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "Aún no hay un comando definido." + +#: ../../general/first_task/omnishell.php:37 +#, php-format +msgid "" +"Omnishell is an enterprise feature which allows you to execute a structured " +"command along any agent in your %s. The only requirement is to have remote " +"configuration enabled in your agent." +msgstr "" +"Omnishell es una función Enterprise que le permite ejecutar un comando " +"estructurado junto con cualquier agente en %s. El único requisito es tener " +"la configuración remota habilitada en el agente." + +#: ../../general/first_task/omnishell.php:42 +msgid "" +"You can execute any command on as many agents you need, and check the " +"execution on all of them using the Omnishell Command View" +msgstr "" +"Puede ejecutar cualquier comando en tantos agentes como desee y comprobar la " +"ejecución de todos ellos mediante la vista del comando Omnishell" + +#: ../../general/first_task/omnishell.php:50 +msgid "Define a command" +msgstr "Definir un comando" + +#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 +msgid "There are no custom fields defined yet." +msgstr "No hay campos personalizados definidos todavía" + +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 +msgid "Create Custom Fields" +msgstr "Crear campos personalizados" + +#: ../../general/first_task/custom_fields.php:30 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t You're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" +"Los campos personalizados son una manera fácil de personalizar la " +"información del agente.\n" +"\t \t Puedes crear campos personalizados haciendo clic en \"Administración\" " +"-> \"Administrar monitorización\" -> \"Administrar campos personalizados\". " + +#: ../../general/first_task/fields_manager.php:22 +msgid "Fields Manager" +msgstr "Gestor de campos" + +#: ../../general/first_task/fields_manager.php:25 +msgid "Create Fields Manager" +msgstr "Gestor de creación de archivos" + +#: ../../general/first_task/fields_manager.php:28 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -" +"> 'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" +"Los campos personalizados son una forma fácil de personalizar la información " +"de los agentes.\n" +"\t\t\t\tPuedes crear campos personalizados haciendo clic en " +"\"Administración\" -> \"Gestionar monitorización\" -> \"Gestionar campos " +"personalizados\". " + +#: ../../general/first_task/fields_manager.php:34 +msgid "Create Fields " +msgstr "Crear campos " + +#: ../../general/first_task/planned_downtime.php:18 +msgid "There are no planned downtime defined yet." +msgstr "No se ha definido aún un tiempo de inactividad planificado" + +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 +msgid "Create Planned Downtime" +msgstr "Crear tiempo de inactividad planificado" + +#: ../../general/first_task/planned_downtime.php:28 +#, php-format +msgid "" +"%s contains a scheduled downtime management system.\n" +"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " +"intervals whenever there is down time by deactivating the agent.\n" +"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. " +"During down time, down-time intervals aren't taken into\n" +"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " +"contain any data within those intervals." +msgstr "" +"%s contiene un sistema de gestión de paradas planificadas.\n" +"\t\t\t\t\t\tEste sistema fue diseñado para desactivar las alertas durante " +"intervalos específicos siempre que haya una parada a causa de un agente " +"desactivado.\n" +"\t\t\t\t\t\tSi un agente está desactivado, no recoge información. Durante " +"esta parada, los intervalos de parada no se tienen en\n" +"\t\t\t\t\t\tcuenta en la mayoría de las métricas e informes, porque los " +"agentes no contienen datos durante dichos intervalos." + +#: ../../general/first_task/snmp_filters.php:18 +msgid "There are no SNMP filter defined yet." +msgstr "No hay filtro SNMP definido todavía" + +#: ../../general/first_task/snmp_filters.php:22 +msgid "SNMP Filter" +msgstr "Filtro SNMP" + +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 +msgid "Create SNMP Filter" +msgstr "Crear un filtro SNMP" + +#: ../../general/first_task/snmp_filters.php:28 +msgid "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " +"Pandora FMS versions 3.2 and above, \n" +"\t\t\t\tit's possible to filter the traps that the server obtains in order " +"to avoid straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -" +"> 'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap which is going to run in conjunction with any of them - " +"just the ones for the server are going to get ruled out automatically. " +msgstr "" +"Algunos sistemas reciben un alto número de traps.\n" +"\t \t \t \t Solo es interesante realizar un seguimiento de un pequeño " +"porcentaje de ellos. En las versiones de Pandora FMS 3.2 y superiores,\n" +"\t \t \t \t es posible filtrar los traps que el servidor obtiene con el fin " +"de evitar forzar la aplicación innecesariamente.\n" +"\t \t \t \t Con el fin de definir diferentes filtros, por favor ve a " +"\"Administración\" -> \"Administrar consola SNMP\" y \"Filtros SNMP\".\n" +"\t \t \t \t Un trap que se va a ejecutar en conjunto con cualquiera de ellos " +"- solo los del servidor van a ser descartado automáticamente. " + +#: ../../general/first_task/service_list.php:20 +msgid "There are no services defined yet." +msgstr "No hay servicios definidos todavía" + +#: ../../general/first_task/service_list.php:28 +#: ../../general/first_task/service_list.php:42 +msgid "Create Services" +msgstr "Crear servicios" + +#: ../../general/first_task/service_list.php:31 +msgid "" +"A service is a way to group your IT resources based on their " +"functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " +"your support application, or even your printers.\n" +"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " +"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" +"\t\t\t\t\t\t By the following example, you're able to see more clearly what " +"a service is:\n" +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " +"the world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, " +"an on-line shop and support." +msgstr "" +"Un servicio es una forma de agrupar recursos de TI basados en tus " +"funcionalidades.\n" +"\t\t\t\t\t\tUn servicio puede ser por ejemplo tu página web oficial, tu " +"sistema CRM, tu aplicación de soporte o incluso tus impresoras.\n" +"\t\t\t\t\t\t Los servicios son grupos lógicos que pueden incluir hosts, " +"routers, switches, firewalls, CRMs, ERPs, sitios web y muchos otros " +"servicios. \n" +"\t\t\t\t\t\t Mediante el siguiente ejemplo, podrá ver más claramente lo que " +"es un servicio:\n" +"\t\t\t\t\t\t\tUn fabricante de chips vende computadoras por su página web en " +"todo el mundo. \n" +"\t\t\t\t\t\t\tSu empresa se compone de tres grandes departamentos: gestión, " +"tienda online y apoyo." + +#: ../../general/first_task/custom_graphs.php:19 +msgid "There are no custom graphs defined yet." +msgstr "No hay gráficos personalizados definidos todavía" + +#: ../../general/first_task/custom_graphs.php:24 +msgid "Custom Graphs" +msgstr "Gráficos personalizados" + +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 +msgid "Create Custom Graph" +msgstr "Crear gráfico personalizado" + +#: ../../general/first_task/custom_graphs.php:30 +#, php-format +msgid "" +"Graphs are designed to show the data collected by %s in a temporary scale " +"defined by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time " +"the operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." +msgstr "" +"Las gráficas están diseñadas para mostrar los datos recogidos por %s en una " +"escala temporal definida por el usuario.\n" +"\t\t\t\tLas gráficas de %s muestran datos en tiempo real. Se generan cada " +"vez que el operador necesita cualquiera de ellas y muestran su estado " +"actualizado.\n" +"\t\t\t\tHay dos tipos de gráficas: Las gráficas automatizadas del agente y " +"las gráficas personalizadas por el usuario mediante uno o más módulos." + +#: ../../general/first_task/transactional_list.php:21 +msgid "There are no transactions defined yet." +msgstr "No hay transacciones definidas por el momento" + +#: ../../general/first_task/transactional_list.php:28 +msgid "Transactions" +msgstr "Transacciones" + +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 +msgid "Create Transactions" +msgstr "Crear transacciones" + +#: ../../general/first_task/transactional_list.php:34 +msgid "" +"The new transactional server allows you to execute tasks dependent on the " +"others following a user-defined design. This means that it is possible to " +"coordinate several executions to check a target at a given time.\n" +"\n" +"Transaction graphs represent the different processes within our " +"infrastructure that we use to deliver our service." +msgstr "" +"El nuevo servidor transaccional le permite ejecutar tareas dependientes de " +"las demás siguiendo un diseño definido por el usuario. Esto significa que es " +"posible coordinar varias ejecuciones para comprobar un objetivo en un " +"momento dado.\n" +"\n" +"Las gráficas de transacción representan los diferentes procesos dentro de " +"nuestra infraestructura, la cual usamos para llevar a cabo nuestros " +"servicios." + +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 +msgid "Create Collections" +msgstr "Crear colecciones" + +#: ../../general/first_task/collections.php:28 +msgid "" +"A file collection is a group of files (e.g. scripts or executables) which " +"are \n" +"\t\tautomatically copied to a specific directory of the agent (under Windows " +"or UNIX). The file collections allow to be propagated\n" +"\t\t along with the policies in order to be used by a group of agents, using " +"a 'package' of scripts and modules which use them.\n" +"\t\tFirst we learn how to use the file collections in the agent's view, how " +"to conduct it manually, agent by agent, without using collections,\n" +"\t\t and how to do the same thing by using policies.Our first task is to " +"arrange a compilation of files. In order to do this, please go to the " +"agent's \n" +"\t\t administrator. Subsequently, we're going to see a 'sub option' called " +"'Collections'. Please click on it in order to create a new collection as we " +"can see on \n" +"\t\t the picture below. " +msgstr "" +"Una colección de archivos es un grupo de archivos (ej: scripts o ejecutable) " +"los cuales son \n" +"\t\t automáticamente copiados a un directorio específico del agente (bajo " +"Windows o UNIX). Las colecciones de archivos permiten ser propagadas\n" +"\t\t junto con las políticas con el fin de ser utilizadas por un grupo de " +"agentes, utilizando un \"paquete\" de scripts y módulos que los utilizan.\n" +"\t\t Primero aprendemos a utilizar las colecciones de archivos en la vista " +"del agente y llevarla a cabo de forma manual, agente por agente, sin " +"necesidad de utilizar las colecciones,\n" +"\t\t y hacer lo mismo usando políticas. Nuestra primera tarea es organizar " +"una compilación de archivos. Para hacer esto, por favor ve al administrador " +"\n" +"\t\t de agentes. Posteriormente, vamos a ver una \"sub opción\" llamada " +"\"Colecciones\". Por favor, pincha en ella para crear una nueva colección " +"como se puede ver en \n" +"\t\t la imagen de abajo. " + +#: ../../general/header.php:76 +msgid "Sobre actualización de revisión menor" +msgstr "Sobre actualización de revisión menor" + +#: ../../general/header.php:111 ../../general/header.php:113 +msgid "Enter keywords to search" +msgstr "Introduce palabras clave para buscar" + +#: ../../general/header.php:363 +msgid "Go to support" +msgstr "Ir a soporte" + +#: ../../general/header.php:369 +msgid "Go to documentation" +msgstr "Ir a documentación" + +#: ../../general/header.php:786 +msgid "Report an issue" +msgstr "Notificar un error" + +#: ../../general/alert_enterprise.php:107 +#, php-format +msgid "" +"This is the online help for %s console. This help is -in best cases- just a " +"brief contextual help, not intented to teach you how to use %s. Official " +"documentation of %s is about 900 pages, and you probably don't need to read " +"it entirely, but sure, you should download it and take a look.

\n" +" Download the official documentation" +msgstr "" +"Esta es la ayuda online de la consola %s. Esta ayuda, en el mejor de los " +"casos, constituye una breve ayuda contextual, que no pretende enseñarle a " +"usar %s. La documentación oficial de %s tiene 900 páginas aproximadamente, y " +"probablemente no necesite leerala entera, pero puede descargarla y " +"revisarla.

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

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

\n" +" Note que todos los intentos de acceso al la página se guardarán en los " +"logs de seguridad de la base de datos de %s." + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Update Manager client is included on %s. It helps system administrators " +"update their %s automatically, since the Update Manager retrieves new " +"modules, new plugins and new features (even full migrations tools for future " +"versions) automatically." +msgstr "" +"Update Manager cliente está incluido en %s. Ayuda a los administradores de " +"sistemas a actualizar su %s automáticamente, puesto que Update manager " +"obtiene nuevos módulos, plugins y funcionalidades (incluso herramientas de " +"migración completa para futuras versiones) automáticamente." + +#: ../../general/alert_enterprise.php:130 +msgid "" +"OpenSource version updates are automated packages generated each week. " +"These updates come WITHOUT ANY warranty or support. If your system is " +"corrupted or a feature stops working properly, you will need to recover a " +"backup by yourself." +msgstr "" +"Las actualizaciones de la versión OpenSource son paquetes automatizados " +"generados cada semana. Estas actualizaciones vienen sin garantía o soporte. " +"Si tu sistema está dañado o una característica deja de funcionar " +"correctamente, necesitarás recuperar una copia de seguridad tú mismo." + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Enterprise version comes with a different update system, with fully " +"tested, professionally-supported packages, and our support team is there to " +"help you in case of problems or queries. Update Manager is another feature " +"present in the Enterprise version and not included in the OpenSource " +"version. There are lots of advanced business-oriented features contained in " +"%s Enterprise Edition. For more information visit pandorafms.com" +msgstr "" +"La versión Enterprise tiene un sistema de actualización diferente, con " +"paquetes completamente probador y con asistencia profesional. Nuestro equipo " +"de soporte le asistirá en caso de duda o problema, Update Manager es otra " +"funcionalidad presente en %s versión Enterprise no incluida en la versión " +"OpenSource. \r\n" +"La versión Enterprise contiene cientos de funcionalidades diseñadas para su " +"negocio. Para más información visite pandorafms.com" -#: ../../enterprise/include/lib/RCMDFile.class.php:1004 -msgid "There was a problem creating RCMD files" -msgstr "Ha habido un problema al crear los archivos RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1051 -msgid "There was a problem creating target" -msgstr "Ha habido un problema al crear un objetivo" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1085 -msgid "There was a problem adding items in the configuration file" -msgstr "" -"Ha habido un problema al añadir elementos al archivo de configuración" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1111 -#: ../../enterprise/include/lib/RCMDFile.class.php:1278 -msgid "No agent has been selected" -msgstr "No se han seleccionado agentes" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1144 -msgid "Target doesn't exist" -msgstr "El objetivo no existe" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1216 -msgid "There was a problem deleting tokens in the configuration file" -msgstr "" -"Ha habido un problema al eliminar los tokes del archivo de configuración" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1252 -msgid "There was a problem deleting target from DB" -msgstr "Ha habido un problema al eliminar el objetivo de la base de datos" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1410 -msgid "Yaml is empty" -msgstr "Yaml está vacío" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1419 -msgid "Doesn't have a valid YAML format" -msgstr "No tiene un formato YAML válido" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1437 -#, php-format -msgid "%s field is not allowed" -msgstr "El campo %s no está permitido" - -#: ../../enterprise/include/functions_collection.php:47 +#: ../../general/alert_enterprise.php:132 #, php-format -msgid "Fail create the directory: %s" -msgstr "Fallo al crear el directorio: %s" - -#: ../../enterprise/include/functions_collection.php:73 -msgid "No files in collection" -msgstr "No hay archivos en la colección" - -#: ../../enterprise/include/functions_collection.php:81 -msgid "File of collection is bigger than the limit (" -msgstr "El archivo de la colección supera el límite." - -#: ../../enterprise/include/process_reset_pass.php:110 -#: ../../enterprise/meta/include/process_reset_pass.php:112 -msgid "Repeat password" -msgstr "Repetir contraseña" - -#: ../../enterprise/include/process_reset_pass.php:116 -#: ../../enterprise/meta/include/process_reset_pass.php:118 -msgid "Change password" -msgstr "Cambiar contraseña" - -#: ../../enterprise/include/process_reset_pass.php:119 -#: ../../enterprise/meta/include/process_reset_pass.php:121 -#: ../../enterprise/meta/index.php:582 ../../index.php:769 -msgid "Passwords must be the same" -msgstr "Las contraseñas deben coincidir." - -#: ../../enterprise/include/process_reset_pass.php:127 -#: ../../enterprise/include/reset_pass.php:107 -#: ../../enterprise/meta/general/noaccess.php:17 -#: ../../enterprise/meta/include/process_reset_pass.php:129 -#: ../../enterprise/meta/include/reset_pass.php:105 -msgid "Back to login" -msgstr "Volver a identificarse" - -#: ../../enterprise/include/functions_cron.php:174 -#: ../../enterprise/include/functions_cron.php:243 -#: ../../enterprise/include/functions_cron.php:280 -#: ../../enterprise/include/functions_cron.php:309 -#: ../../enterprise/include/functions_cron.php:353 -#: ../../enterprise/include/functions_cron.php:415 -msgid "Report to build" -msgstr "Informe a crear" - -#: ../../enterprise/include/functions_cron.php:182 -#: ../../enterprise/include/functions_cron.php:227 -#: ../../enterprise/operation/reporting/custom_reporting.php:96 -msgid "Send to emails (separated by comma)" -msgstr "Enviar a emails (separados por comas)" - -#: ../../enterprise/include/functions_cron.php:195 -msgid "Report Type" -msgstr "Tipo de informe" - -#: ../../enterprise/include/functions_cron.php:202 -#: ../../enterprise/include/functions_cron.php:331 -msgid "Template to build" -msgstr "Plantilla a crear" - -#: ../../enterprise/include/functions_cron.php:251 -#: ../../enterprise/include/functions_cron.php:265 -#: ../../enterprise/include/functions_cron.php:288 -#: ../../enterprise/include/functions_cron.php:354 -#: ../../enterprise/include/functions_cron.php:416 -msgid "Save to disk into path" -msgstr "Guardar disco en la ruta" - -#: ../../enterprise/include/functions_cron.php:252 -#: ../../enterprise/include/functions_cron.php:289 -msgid "The apache user should have read-write access on this folder. Ex: " -msgstr "" -"El usuario de Apache debería tener acceso de lectura y escritura en esta " -"carpeta. Por ejemplo: " - -#: ../../enterprise/include/functions_cron.php:310 -#: ../../enterprise/include/functions_cron.php:332 -msgid "Send to email" -msgstr "Enviar a correo electrónico" - -#: ../../enterprise/include/functions_cron.php:311 -msgid "Send custom report by email" -msgstr "Enviar un informe personalizado por email" - -#: ../../enterprise/include/functions_cron.php:333 -msgid "Send custom report (from template) by email" -msgstr "Enviar informe personalizado (desde plantilla) por email" - -#: ../../enterprise/include/functions_cron.php:355 -#: ../../enterprise/include/functions_cron.php:417 -msgid "Save custom report to disk" -msgstr "Guardar el informe personalizado en el disco" - -#: ../../enterprise/include/functions_cron.php:375 -msgid "Backup Pandora database" -msgstr "Copia de seguridad de la BD de Pandora FMS" - -#: ../../enterprise/include/functions_cron.php:395 -msgid "Execute custom script" -msgstr "Ejecutar script personalizado" - -#: ../../enterprise/include/functions_cron.php:418 -msgid "Save custom xml report to disk" -msgstr "Guardar el informe personalizado XML en el disco" - -#: ../../enterprise/include/functions_cron.php:464 -msgid "Not scheduled" -msgstr "No programado" - -#: ../../enterprise/include/functions_cron.php:469 -msgid "Yearly" -msgstr "Anualmente" - -#: ../../enterprise/include/functions_cron.php:757 -#: ../../enterprise/include/functions_cron.php:781 -#: ../../enterprise/operation/reporting/custom_reporting.php:107 -#: ../../enterprise/operation/reporting/custom_reporting.php:115 -msgid "This is an optional field" -msgstr "Este campo es opcional" - -#: ../../enterprise/include/functions_cron.php:1162 -#: ../../enterprise/include/functions_cron.php:1330 -msgid "Greetings" -msgstr "Saludos" - -#: ../../enterprise/include/functions_cron.php:1164 -#: ../../enterprise/include/functions_cron.php:1332 -msgid "Attached to this email there's a PDF file of the" -msgstr "En este correo encontrarás en adjunto un archivo del" - -#: ../../enterprise/include/functions_cron.php:1165 -#: ../../enterprise/include/functions_cron.php:1333 -msgid "report" -msgstr "informe" - -#: ../../enterprise/include/functions_cron.php:1170 -#: ../../enterprise/include/functions_cron.php:1338 -msgid "Thanks for your time." -msgstr "Gracias por tu tiempo." - -#: ../../enterprise/include/functions_cron.php:1172 -#: ../../enterprise/include/functions_cron.php:1340 -msgid "Best regards, Pandora FMS" -msgstr "Saludos cordiales, Pandora FMS" - -#: ../../enterprise/include/functions_cron.php:1174 -#: ../../enterprise/include/functions_cron.php:1342 msgid "" -"This is an automatically generated email from Pandora FMS, please do not " -"reply." +"The new Update Manager " +"client is included on %s. It helps system administrators update their %s " +"automatically, since the Update Manager retrieves new modules, new plugins " +"and new features (even full migrations tools for future versions) " +"automatically." msgstr "" -"Este es un email generado automáticamente por Pandora FMS. Por favor, no " -"respondas a este email." - -#: ../../enterprise/include/functions_cron.php:1870 -#: ../../enterprise/include/functions_cron.php:1880 -#: ../../enterprise/include/functions_cron.php:1889 -msgid "Error while executing task: " -msgstr "Error al ejecutar tarea " - -#: ../../enterprise/include/reset_pass.php:96 -#: ../../enterprise/meta/include/reset_pass.php:94 -msgid "User to reset password" -msgstr "Usuario de la contraseña a resetear" +"El nuevo Update " +"Manager cliente está incluido en %s. Ayuda a los administradores de " +"sistemas a actualizar %s automáticamente, puesto que Update Manager obtiene " +"nuevos módulos, plugins y funcionalidades (incluso herramientas de migración " +"completa para futuras versiones) automáticamente." -#: ../../enterprise/include/reset_pass.php:100 -#: ../../enterprise/meta/include/reset_pass.php:98 -#: ../../enterprise/meta/index.php:655 ../../index.php:835 -msgid "Reset password" -msgstr "Restablecer la contraseña" - -#: ../../enterprise/include/reset_pass.php:158 -#: ../../enterprise/include/reset_pass.php:161 -#: ../../enterprise/meta/include/reset_pass.php:141 -#: ../../enterprise/meta/include/reset_pass.php:144 -msgid "Reset password failed" -msgstr "Error al restablecer la contraseña" - -#: ../../enterprise/include/functions_dashboard.php:514 +#: ../../general/alert_enterprise.php:132 #, php-format -msgid "Copy of %s" -msgstr "Copia de %s" - -#: ../../enterprise/include/functions_dashboard.php:990 -msgid "Change every" -msgstr "Cambiar cada" - -#: ../../enterprise/include/functions_dashboard.php:1006 -#: ../../enterprise/operation/agentes/transactional_map.php:365 -msgid "Stop" -msgstr "Parar" - -#: ../../enterprise/include/functions_dashboard.php:1014 -msgid "Pause" -msgstr "Pausar" - -#: ../../enterprise/include/functions_enterprise.php:325 -msgid "Tree view by tags" -msgstr "Vista de árbol por etiquetas" - -#: ../../enterprise/include/functions_enterprise.php:355 msgid "" -"If the interval of days until events data purge is shorter than the events " -"data history storage interval, data will be lost. It is recommended that the " -"storage frequency is higher than the purge frequency." +"The Update Manager is one of the most advanced features on the %s Enterprise " +"Edition. For more information visit http://pandorafms.com." msgstr "" -"Si el intervalo de días hasta la purga de datos de eventos es inferior que " -"el intervalo de almacenamiento de histórico de datos de eventos, se perderán " -"los datos. Se recomienda configurar una frecuencia de almacenamiento " -"inferior a la frecuencia de purga." +"Update Manager es una de las funcionalidades más avanzadas de %s versión " +"Enterprise. Para obtener más información visite http://pandorafms.com." -#: ../../enterprise/include/functions_enterprise.php:357 -msgid "" -"Problems with event days purge and event days that pass data to history DB." +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"Update Manager sends anonymous information about %s usage (number of agents " +"and modules running). To disable it, please remove the remote server address " +"from the Update Manager plugin setup." msgstr "" -"Problemas con la fecha de purga de eventos y la fecha de traspaso de " -"información a histórico." +"Update Manager envía información anónima sobre el uso de %s (número de " +"agentes en ejecución). Para deshabilitarlo, elimine la dirección del " +"servidor remoto de la configuración del plugin Update Manager." -#: ../../enterprise/include/functions_enterprise.php:368 +#: ../../general/alert_enterprise.php:138 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" +"The community version doesn't have the ability to define your own library of " +"local modules, or distribute it to remote agents. You need to make those " +"changes individually on each agent which is possible by using external tools " +"and time and effort. Nor can it distribute local plugins, or have access to " +"the library of enterprise plugins to monitor applications such as VMWare, " +"RHEV or Informix between others. The Enterprise version will have all this, " +"plus the ability to distribute and manage your own local modules on your " +"systems, individually or through policies.\n" +"

pandorafms.com" msgstr "" -"Error al aplicar la política. Esta política ya está pendiente de ser " -"aplicada." - -#: ../../enterprise/include/functions_enterprise_api.php:3266 -#: ../../enterprise/include/functions_enterprise_api.php:3320 -#, php-format -msgid "%d agents added to apply queue." -msgstr "%d agentes añadidos a la cola de aplicar." - -#: ../../enterprise/include/functions_enterprise_api.php:3289 -#: ../../enterprise/include/functions_policies.php:4986 -#, php-format -msgid "Successfully applied to node %s." -msgstr "Aplicado correctamente al nodo %s." - -#: ../../enterprise/include/functions_enterprise_api.php:3291 -#: ../../enterprise/include/functions_policies.php:4988 -#, php-format -msgid "Successfully applied to nodes: %s." -msgstr "Aplicado correctamente a los nodos: %s." - -#: ../../enterprise/include/functions_enterprise_api.php:3330 -#, php-format -msgid "Id policy %d already pending to apply." -msgstr "ID de política %d ya pendiente de aplicar." - -#: ../../enterprise/include/functions_enterprise_api.php:3332 -#, php-format -msgid "Id policy %d already pending to apply in Id agent %d." -msgstr "ID de política %d ya pendiente de aplicar en el ID de agente %d." - -#: ../../enterprise/include/functions_enterprise_api.php:3384 -msgid "Error applying all policies." -msgstr "Error al aplicar todas las políticas" +"¿Quiere consolidar toda la monitorización de sus sistemas? ¿Tiene tantos " +"sistemas que le resulta difícil gestionarlos completamente? ¿Le gustaría " +"desplegar monitorización, alertas e incluso plugins locales en un solo " +"click? Las políticas Enterprise de %s son exactamente lo que usted necesita. " +"Se ahorrará tiempo, esfuerzos y molestias. Más información en pandorafms.com" -#: ../../enterprise/include/functions_enterprise_api.php:3438 -msgid "Cannot reach the node" -msgstr "No se ha podido contactar con el nodo" - -#: ../../enterprise/include/functions_enterprise_api.php:3460 +#: ../../general/alert_enterprise.php:148 #, php-format -msgid "Node error: %s." -msgstr "Eror de nodo: %s." +msgid "" +"%s Enterprise also features event correlation. Through correlation you can " +"generate realtime alerts and / or new events based on logical rules. This " +"allows you to automate troubleshooting. If you know the value of working " +"with events, event correlation will take you to a new level." +msgstr "" +"%s Enterprise también incluye correlación de eventos. A través de esta " +"correlación puede generar alertas en tiempo real y / o nuevos eventos " +"basados en reglas lógicas. Esto le permite automatizar la resolución de " +"errores. Si ya conoce la importancia de trabajar con eventos, la correlación " +"de eventos le llevará a otro nivel." -#: ../../enterprise/include/functions_enterprise_api.php:3474 +#: ../../general/alert_enterprise.php:152 #, php-format -msgid "Invalid value %d on first other parameter" -msgstr "Valor %d no válido en el primer otro parámetro" - -#: ../../enterprise/include/functions_enterprise_api.php:3707 -msgid "The module is already in the policy." -msgstr "El módulo ya está en la política" - -#: ../../enterprise/include/functions_enterprise_api.php:3744 -#: ../../enterprise/include/functions_enterprise_api.php:3780 msgid "" -"Error adding web analysis module to policy. \n" -"\t\t\t\t\t\tId_module_type is not correct for web analysis modules." +"Report generating on the Enterprise version is also more powerful: it has " +"wizards, you can schedule emails in PDF to be sent according to the schedule " +"you decide, and it has a template system to create personalized reports " +"quickly for each of your customers. It will even allow your customers to " +"generate their own reports from templates created by you. If reports are key " +"to your business, %s Enterprise version is for you." msgstr "" -"Error al añadir módulo de análisis web a la política. \n" -"\t\t\t\t\t\tId_module_type no es correcto para los módulos de análisis web." +"La generación de informes en la versión Enterprise también es más potente: " +"tiene asistentes, puede programar el envío de emails en PDF cuando usted " +"decida y tiene un sistema de plantillas para crear informes personalizados " +"rápidamente para todos sus clientes. También le permitirá a sus clientes " +"crear sus propios informes a partir de las plantillas que usted haya creado. " +"Si los informes son la clave de su negocio, %s versión Enterprise es para " +"usted." -#: ../../enterprise/include/functions_enterprise_api.php:3756 -msgid "" -"Error adding network module to policy. \n" -"\t\t\t\t\t\tId_module_type is not correct for network modules." -msgstr "" -"Error al añadir módulo de red a la política. \n" -"\t\t\t\t\t\tId_module_type no es correcto para los módulos de red." +#: ../../general/alert_enterprise.php:156 +msgid "These options are only effective on the Enterprise version." +msgstr "Estas opciones solo funcionan en la versión Enterprise." -#: ../../enterprise/include/functions_enterprise_api.php:3768 +#: ../../general/alert_enterprise.php:164 msgid "" -"Error adding web module to policy. \n" -"\t\t\t\t\t\tId_module_type is not correct for web modules." +"This system is heavily loaded. OpenSource version could get a lot more " +"agents but fine tuning requires knowledge and time. Checkout the Enterprise " +"Version for a professional supported system." msgstr "" -"Error al añadir módulo web a la política. \n" -"\t\t\t\t\t\tId_module_type no es correcto para los módulos web." +"Este sistema está muy congestionado. La versión OpenSource podría obtener " +"muchos más agentes, pero la precisión requiere de tiempo y conocimiento. " +"Instala la versión Enterprise para obtener un sistema profesional compatible." -#: ../../enterprise/include/functions_enterprise_api.php:3795 +#: ../../general/alert_enterprise.php:168 msgid "" -"Error adding module to policy.\n" -"\t\t\t\t\tconfiguration_data is not correct base64." -msgstr "" -"Error al añadir módulo a la política.\n" -"\t\t\t\t\tconfiguration_data no es correcto en base64." - -#: ../../enterprise/include/functions_enterprise_api.php:4266 -#: ../../enterprise/include/functions_enterprise_api.php:4318 -#: ../../enterprise/include/functions_enterprise_api.php:4371 -msgid "Error getting inventory modules" -msgstr "Error al obtener módulos de inventario" - -#: ../../enterprise/include/functions_enterprise_api.php:5261 -#, php-format -msgid "Error updating user %s " -msgstr "Error al actualizar el usuario %s " - -#: ../../enterprise/include/functions_enterprise_api.php:5263 -#, php-format -msgid "Updated user %s " -msgstr "Usuario %s actualizado " +"This system has too many modules per agent. OpenSource version could manage " +"thousands of modules, but is not recommended to have more than 40 modules " +"per agent. This configuration has B/A modules per agent. Checkout the " +"Enterprise Version for a professional supported system." +msgstr "" +"El sistema tiene muchos módulos por agente. La versión OpenSource puede " +"manejar miles de módulos, pero no se recomienda tener más de 40 módulos por " +"agente. Esta configuración tiene módulos B/A por agente. Instala la versión " +"Enterprise para obtener un sistema profesional compatible." + +#: ../../general/alert_enterprise.php:172 +msgid "" +"Too much remote modules has been detected on this system. OpenSource version " +"could manage thousands of modules, but performance is limited on high amount " +"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"supported system with improved capacity on network monitoring, including " +"distributed servers." +msgstr "" +"Se han detectado muchos módulos remotos en este sistema. La versión " +"OpenSource puede manejar miles de módulos, pero el rendimiento será limitado " +"con un gran número de peticiones SNMP o ICMP. Instala la versión Enterprise " +"para obtener un sistema profesional compatible." -#: ../../enterprise/include/functions_enterprise_api.php:5273 -#, php-format -msgid "Error creating user %s " -msgstr "Error al crear el usuario %s " - -#: ../../enterprise/include/functions_enterprise_api.php:5275 -#, php-format -msgid "Created user %s " -msgstr "Usuario %s creado " - -#: ../../enterprise/include/functions_enterprise_api.php:5476 -#, php-format -msgid "" -"There are groups that not exist in node. The followings elements " -"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d) " +#: ../../general/alert_enterprise.php:176 +msgid "" +"This system has too much events in the database. Checkout database purge " +"options. Checkout the Enterprise Version for a professional supported system." msgstr "" -"Hay grupos que no existen en el nodo. Los siguientes elementos " -"grupos/perfiles/perfiles de usuario se han creado/actualizado correctamente " -"(%d/%d/%d) " +"Este sistema tiene muchos eventos en la base de datos. Consulta las opciones " +"de purga de la base de datos. Instala la versión Enterprise para obtener un " +"sistema profesional compatible." -#: ../../enterprise/include/functions_enterprise_api.php:5489 -#, php-format +#: ../../general/alert_enterprise.php:180 msgid "" -"Error creating/updating the followings elements groups/profiles/user " -"profiles (%d/%d/%d) " +"You have defined a high number of alerts, this may cause you performance " +"problems in the future. In the Enterprise version, you can use event " +"correlation alerts to simplify the alerting system and have easier " +"administration and increased performance." msgstr "" -"Error al crear/actualizar los siguientes elementos grupos/perfiles/perfiles " -"de usuario (%d/%d/%d) " +"Tiene definido un gran número de agentes que podrían provocar problemas de " +"rendimiento en un futuro. En la versión Enterprise puedes usar la " +"correlación de alertas de eventos para simplificar el sistema de alertas y " +"poder manejarlo de forma sencilla y aumentar el rendimiento." -#: ../../enterprise/include/functions_enterprise_api.php:5505 +#: ../../general/login_help_dialog.php:41 #, php-format msgid "" -"The followings elements groups/profiles/user profiles were created/updated " -"sucessfully (%d/%d/%d) " +"If this is your first time using %s, we suggest a few links that'll help you " +"learn more about the software. Monitoring can be overwhelming, but take your " +"time to learn how to harness the power of %s!" msgstr "" -"Los siguientes elementos grupos/perfiles/perfiles de usuario se han " -"creado/actualizado correctamente (%d/%d/%d) " +"Si esta es la primera vez que usa %s, le sugerimos algunos enlaces que le " +"ayudarán a saber más sobre este software. La monitorización puede ser " +"abrumadora, pero tómese su tiempo en aprender a aprovechar todo el potencial " +"de %s!" -#: ../../enterprise/include/functions_enterprise_api.php:5684 -msgid "Error adding agent to policy. Agent does not exist." -msgstr "Error al añadir agente a política. El agente no existe." +#: ../../general/login_help_dialog.php:55 +#: ../../general/login_help_dialog.php:60 +msgid "Online help" +msgstr "Ayuda en línea" -#: ../../enterprise/include/functions_enterprise_api.php:5696 -msgid "Error adding agent to policy." -msgstr "Error al añadir agente a la política" +#: ../../general/login_help_dialog.php:68 +#: ../../general/login_help_dialog.php:73 +msgid "Enterprise version" +msgstr "Versión Enterprise" -#: ../../enterprise/include/functions_enterprise_api.php:5703 -msgid "Error adding agent to policy. The agent is already in the policy." -msgstr "" -"Error al añadir agente a la política. El agente ya existe en la política." +#: ../../general/login_help_dialog.php:86 +msgid "Forums" +msgstr "Foros" -#: ../../enterprise/include/functions_events.php:219 -msgid "Id source events" -msgstr "Eventos fuente de ID" +#: ../../general/login_help_dialog.php:94 +#: ../../general/login_help_dialog.php:99 ../../general/mysqlerr.php:144 +msgid "Documentation" +msgstr "Documentación" -#: ../../enterprise/include/functions_events.php:230 -#: ../../enterprise/include/functions_reporting_csv.php:1876 -msgid "Hours" -msgstr "Horas" +#: ../../general/login_help_dialog.php:108 +msgid "Click here to don't show again this message" +msgstr "Pincha aquí para no volver a ver este mensaje" -#: ../../enterprise/include/functions_events.php:245 -#: ../../enterprise/include/functions_events.php:267 -msgid "More than 5 tags" -msgstr "Más de 5 etiquetas" +#: ../../general/logon_ok.php:165 +#, php-format +msgid "%s Overview" +msgstr "Esquema %s" + +#: ../../general/logon_ok.php:204 +msgid "by" +msgstr "por" -#: ../../enterprise/include/functions_groups.php:49 -msgid "Metaconsole" -msgstr "Metaconsola" +#: ../../general/logon_ok.php:218 +msgid "News board" +msgstr "Tablón de noticias" -#: ../../enterprise/include/functions_hostdevices.php:44 -msgid "SNMP enabled" -msgstr "SNMP activado" +#: ../../general/logon_ok.php:294 +msgid "Latest activity" +msgstr "Actividad reciente" -#: ../../enterprise/include/functions_hostdevices.php:84 -msgid "SNMP Default community" -msgstr "Comunidad SNMP por defecto" +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "No se encontró ningún agente" -#: ../../enterprise/include/functions_hostdevices.php:86 +#: ../../general/logon_failed.php:30 msgid "" -"You can specify several values, separated by commas, for example: " -"public,mysecret,1234" +"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 "" -"Puede especificar varios valores, separados por coma, por ejemplo: " -"public,mysecret,1234" +"La combinación usuario/contraseña es incorrecta. Comprueba que no está " +"habilitado el bloqueo de mayúsculas, los campos distinguen entre mayúsculas " +"y minúsculas.

Todas las acciones, incluidos los intentos fallidos de " +"acceso son guardados en el sistema de registro de logs de Pandora FMS y " +"pueden ser revisados por cada usuario. Contacta al administrador cualquier " +"incidente o fallo." -#: ../../enterprise/include/functions_hostdevices.php:213 -msgid "WMI enabled" -msgstr "WMI habilitado" +#: ../../general/noaccess2.php:22 +msgid "Access to this page is restricted" +msgstr "El acceso a esta página está restringido." -#: ../../enterprise/include/functions_hostdevices.php:230 -msgid "WMI Auth. strings" -msgstr "Cadenas de autenticación WMI" - -#: ../../enterprise/include/functions_hostdevices.php:232 +#: ../../general/noaccess2.php:34 msgid "" -"Auth strings must be defined as user%pass, comma separated as many you need." +"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 "" -"Las cadenas de autenticación deben definirse como usuario%contraseña, " -"separadas por comas, tantas como necesite." - -#: ../../enterprise/include/functions_hostdevices.php:248 -msgid "OS detection" -msgstr "Detección de SO" - -#: ../../enterprise/include/functions_hostdevices.php:260 -msgid "Name resolution" -msgstr "Resolución de nombres" - -#: ../../enterprise/include/functions_hostdevices.php:271 -msgid "Parent detection" -msgstr "Detección de padres" - -#: ../../enterprise/include/functions_hostdevices.php:282 -msgid "Parent recursion" -msgstr "Recursión del padre" - -#: ../../enterprise/include/functions_hostdevices.php:293 -msgid "VLAN enabled" -msgstr "VLAN habilitada" - -#: ../../enterprise/include/functions_inventory.php:66 -#: ../../enterprise/include/functions_inventory.php:698 -msgid "No changes found" -msgstr "No se han encontrado cambios" - -#: ../../enterprise/include/functions_inventory.php:92 -msgid "Get CSV file" -msgstr "Obtener archivo CSV" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Client" -msgstr "Cliente" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Subscription" -msgstr "Suscripción" - -#: ../../enterprise/include/functions_license.php:120 -msgid "Expires" -msgstr "Caduca" - -#: ../../enterprise/include/functions_setup.php:53 -#: ../../enterprise/include/functions_setup.php:95 -msgid "Log collector" -msgstr "Colector de logs" - -#: ../../enterprise/include/functions_setup.php:121 -msgid "Metaconsole link status" -msgstr "Estado del link de la metaconsola" - -#: ../../enterprise/include/functions_setup.php:153 -msgid "DB connection" -msgstr "Conexión a la base de datos" - -#: ../../enterprise/include/functions_setup.php:162 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:620 -msgid "Agent cache" -msgstr "Caché de agente" - -#: ../../enterprise/include/functions_setup.php:175 -msgid "This console is joining a metaconsole." -msgstr "Esta consola se unirá a una Metaconsola" - -#: ../../enterprise/include/functions_setup.php:183 -msgid "This console is not joining any metaconsole." -msgstr "Esta consola no se unirá a ninguna Metaconsola" - -#: ../../enterprise/include/functions_local_components.php:175 -msgid "Empty configuration" -msgstr "Configuración vacía" - -#: ../../enterprise/include/functions_local_components.php:180 -msgid "Empty OS" -msgstr "SO vacío" - -#: ../../enterprise/include/functions_log.php:381 -msgid "Lines" -msgstr "Líneas" - -#: ../../enterprise/include/functions_login.php:22 -msgid "You must change password:" -msgstr "Tienes que cambiar la contraseña:" - -#: ../../enterprise/include/functions_login.php:38 -msgid "Password must be different from the 3 previous changes." -msgstr "La contraseña debe ser diferente a los 3 cambios anteriores." +"El acceso a esta página está restringido a usuarios autorizados solamente. " +"Por favor, contacta con el administrador del sistema si necesitas " +"ayuda.

\n" +"\t\t\tTen en cuenta que todos los intentos de acceso a esta página son " +"guardados en los logs de seguridad de la base de datos de Pandora FMS." -#: ../../enterprise/include/functions_login.php:50 -msgid "Old pass: " -msgstr "Contraseña antigua: " +#: ../../general/mysqlerr.php:107 +msgid "Database error" +msgstr "Error en la base de datos" -#: ../../enterprise/include/functions_login.php:53 -msgid "New pass: " -msgstr "Contraseña nueva: " - -#: ../../enterprise/include/functions_login.php:57 -msgid "Confirm: " -msgstr "Confirmar: " - -#: ../../enterprise/include/functions_login.php:63 -msgid "Change" -msgstr "Cambiar" - -#: ../../enterprise/include/functions_login.php:97 -msgid "Login blocked" -msgstr "Inicio de sesión bloqueado" - -#: ../../enterprise/include/functions_login.php:105 -msgid "User has been blocked. Try again in " -msgstr "Tu usuario ha sido bloqueado. Vuelve a intentarlo en " - -#: ../../enterprise/include/functions_login.php:105 -msgid " minutes" -msgstr " minutos" - -#: ../../enterprise/include/functions_login.php:138 -msgid "Login successfully" -msgstr "Inicio de sesión correcto" - -#: ../../enterprise/include/functions_login.php:145 -msgid "Successfully" -msgstr "Correcto" - -#: ../../enterprise/include/functions_login.php:146 -msgid "User pass successfully updated" -msgstr "La contraseña se ha actualizado correctamente." - -#: ../../enterprise/include/functions_login.php:252 -msgid "Password must be different from the " -msgstr "La contraseña debe ser diferente de " - -#: ../../enterprise/include/functions_login.php:252 -msgid " previous changes." -msgstr " los cambios anteriores." - -#: ../../enterprise/include/functions_login.php:265 -msgid "Password must be different" -msgstr "La contraseña no puede ser la misma." - -#: ../../enterprise/include/functions_login.php:276 -msgid "Password too short" -msgstr "La contraseña es demasiado corta" - -#: ../../enterprise/include/functions_login.php:324 -msgid "Invalid old password" -msgstr "Contraseña antigua no válida" - -#: ../../enterprise/include/functions_login.php:357 -msgid "Password confirm does not match" -msgstr "Las contraseñas no coinciden." - -#: ../../enterprise/include/functions_login.php:364 -msgid "Password empty" -msgstr "La contraseña está vacía." - -#: ../../enterprise/include/functions_metaconsole.php:2726 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:133 -msgid "Target server ip address is set" -msgstr "Dirección IP del servidor de destino configurada" - -#: ../../enterprise/include/functions_metaconsole.php:2733 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:129 -msgid "There are differences between MR versions" -msgstr "Hay diferencias entre las versiones de las actualizaciones menores" - -#: ../../enterprise/include/functions_metaconsole.php:2740 -msgid "Agent alerts action does not exist in target node" -msgstr "La acción de alertas de agentes no existe en el nodo objetivo." - -#: ../../enterprise/include/functions_metaconsole.php:2747 -msgid "Agent alerts template does not exist in target node" -msgstr "La plantilla de alertas de agente no existe en el nodo objetivo" - -#: ../../enterprise/include/functions_metaconsole.php:2754 -msgid "Agent inventory does not exist in target node" -msgstr "El inventario de agente no existe en el nodo objetivo" - -#: ../../enterprise/include/functions_metaconsole.php:2761 -msgid "Exists agent conf please remove configuration file from target node." +#: ../../general/mysqlerr.php:117 +msgid "" +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." msgstr "" -"Existe archivo de configuración de agente, elimine el fichero del nodo " -"objetivo." - -#: ../../enterprise/include/functions_metaconsole.php:2768 -msgid "Agent collections does not exist in target node" -msgstr "Las colecciones de agente no existen en el nodo objetivo" - -#: ../../enterprise/include/functions_metaconsole.php:2775 -msgid "Agent plugins does not exist in target node" -msgstr "El plugin de agente no existe en el nodo objetivo" +"Error al conectar con la base de datos de histórico, revise la configuración " +"o póngase en contacto con el administrador del sistema si necesita ayuda." -#: ../../enterprise/include/functions_metaconsole.php:2782 +#: ../../general/mysqlerr.php:119 msgid "" -"Agent policies definitions does not match with defined ones in target node" +"Failure to connect to Database server, please check the configuration file " +"config.php or contact system administrator if you need assistance." msgstr "" -"Las definiciones de políticas de agentes no coinciden con las definidas en " -"el nodo objetivo" +"Error al conectar con el servidor de la base de datos. Revise el archivo de " +"configuración config.php o póngase en contacto con el administrador del " +"sistema si necesita ayuda." -#: ../../enterprise/include/functions_metaconsole.php:2789 -msgid "Agent group does not exist in target node" -msgstr "El grupo de agente no existe en el nodo objetivo" - -#: ../../enterprise/include/functions_metaconsole.php:2796 -msgid "Agent already exists in target node" -msgstr "El agente ya existe en el nodo objetivo" - -#: ../../enterprise/include/functions_metaconsole.php:2820 -msgid "The agent: has not been added due to problems in the insertion" -msgstr "El agente: no se ha añadido por problemas en la inserción" - -#: ../../enterprise/include/functions_metaconsole.php:2825 -msgid "The agent: has already been added to the migration queue" -msgstr "El agente: ya se ha añadido a la cola de migración" - -#: ../../enterprise/include/functions_metaconsole.php:2903 -msgid "Cannot " -msgstr "No puede " - -#: ../../enterprise/include/functions_networkmap.php:934 -msgid "Map not found." -msgstr "Mapa no encontrado." - -#: ../../enterprise/include/functions_update_manager.php:186 -#: ../../enterprise/include/functions_update_manager.php:391 +#: ../../general/login_page.php:50 #, php-format -msgid "There is a error: %s" -msgstr "Hay un error: %s" +msgid "Go to %s Website" +msgstr "Ir a la página web de %s" -#: ../../enterprise/include/functions_update_manager.php:197 -#, php-format -msgid "There are %s updates, and the first to update is:" -msgstr "Hay %s actualizaciones y la primera actualización es:" +#: ../../general/login_page.php:63 +msgid "Go to Login" +msgstr "Ir a la pantalla de inicio" + +#: ../../general/login_page.php:227 +msgid "Login as admin" +msgstr "Entrar como administrador" -#: ../../enterprise/include/functions_update_manager.php:206 -msgid "Version number:" -msgstr "Número de versión:" +#: ../../general/login_page.php:283 +msgid "Authentication code" +msgstr "Código de autentificación" -#: ../../enterprise/include/functions_update_manager.php:207 -msgid "Show details" +#: ../../general/login_page.php:295 +msgid "View details" msgstr "Ver detalles" -#: ../../enterprise/include/functions_update_manager.php:642 -#: ../../enterprise/include/functions_update_manager.php:672 +#: ../../general/login_page.php:323 ../../general/login_page.php:326 #, php-format -msgid "Line '%s' not copied to the progress file." -msgstr "La línea '%s' no se ha copiado al archivo de progreso." +msgid "WELCOME TO %s" +msgstr "BIENVENIDO A %s" -#: ../../enterprise/include/functions_policies.php:3519 -msgid "Policy linkation" -msgstr "Vinculación de políticas" +#: ../../general/login_page.php:335 ../../general/login_page.php:338 +msgid "NEXT GENERATION" +msgstr "NEXT GENERATION" -#: ../../enterprise/include/functions_policies.php:3524 -msgid "Module linked" -msgstr "Módulo enlazado" +#: ../../general/login_page.php:467 ../../general/login_page.php:469 +#, php-format +msgid "Problem with %s database" +msgstr "Problema con la base de datos de %s" -#: ../../enterprise/include/functions_policies.php:3526 -#: ../../enterprise/include/functions_policies.php:3538 -msgid "Unlink from policy" -msgstr "Módulo desenlazado de la política" +#: ../../general/login_page.php:473 +msgid "" +"Cannot connect to the database, please check your database setup in the " +"include/config.php file.

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

\n" +"\t\tProbablemente, los valores de la base de datos, nombre del host, usuario " +"o contraseña son incorrectos o\n" +"\t\t el servidor de la base de datos no está activo." -#: ../../enterprise/include/functions_policies.php:3530 -msgid "Module unlinked" -msgstr "Módulo desenlazado" +#: ../../general/login_page.php:478 +msgid "DB ERROR" +msgstr "ERROR de la BD" -#: ../../enterprise/include/functions_policies.php:3532 -#: ../../enterprise/include/functions_policies.php:3544 -msgid "Relink to policy" -msgstr "Volver a enlazar a la política" - -#: ../../enterprise/include/functions_policies.php:3536 -msgid "Module pending to link" -msgstr "Módulo pendiente de enlazar" - -#: ../../enterprise/include/functions_policies.php:3542 -msgid "Module pending to unlink" -msgstr "Módulo pendiente de desenlazar" - -#: ../../enterprise/include/functions_policies.php:4036 -msgid "Create a new policy map" -msgstr "Crear un nuevo mapa de políticas" - -#: ../../enterprise/include/functions_policies.php:4381 +#: ../../general/login_page.php:484 #, php-format msgid "" -"This extension makes registration of policies enterprise.
You can get " -"more policies in our Public Resource Library" +"If you have modified the auth system, the origin of this problem could be " +"that %s cannot override the authorization variables from the config " +"database. Please remove them from your database by executing:
DELETE "
+"FROM tconfig WHERE token = \"auth\";
" msgstr "" -"Esta extensión permite registrar las políticas Enterprise.
Puedes " -"conseguir más políticas en nuestra Librería de recursos " -"pública." +"Si ha modificado el sistema de permisos, el origen de este problema podría " +"ser que %s no puede saltarse las variables de permisos de la base de datos " +"de configuración. Elimínelas de la base de datos ejecutando:
DELETE "
+"FROM tconfig WHERE token = \"auth\";
" -#: ../../enterprise/include/functions_policies.php:4431 -#: ../../enterprise/include/functions_policies.php:4439 -#: ../../enterprise/include/functions_policies.php:5033 -msgid "This will not produce any action." -msgstr "Esto no generará ninguna acción." +#: ../../general/login_page.php:489 +msgid "Empty configuration table" +msgstr "Tabla de configuración vacía" -#: ../../enterprise/include/functions_policies.php:4496 -#: ../../enterprise/include/functions_policies.php:5062 -#, php-format -msgid "Error connecting with node %s." -msgstr "Error al conectar con el nodo %s." - -#: ../../enterprise/include/functions_policies.php:4505 -#: ../../enterprise/include/functions_policies.php:5071 -#, php-format -msgid "Policy does not exist in node %s. Error creating it." -msgstr "La política no existe en ele nodo %s. Error al crearlo." - -#: ../../enterprise/include/functions_policies.php:4511 -#: ../../enterprise/include/functions_policies.php:5077 +#: ../../general/login_page.php:491 #, php-format msgid "" -"This policy exist in node %s with other name (%s). Change the name to '%s' " -"to apply the policy." +"Cannot load configuration variables from database. Please check your " +"database setup in the\n" +"\t\t\tinclude/config.php file.

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

%s Console cannot find include/config.php or this file " +"has invalid\n" +"\t\t\tpermissions and HTTP server cannot read it. Please read documentation " +"to fix this problem.
" msgstr "" -"Esta política existe en el nodo %s con otro nombre (%s). Cambie el nombre a " -"'%s' para aplicar la política." - -#: ../../enterprise/include/functions_policies.php:4523 -#: ../../enterprise/include/functions_policies.php:5089 -#, php-format -msgid "This policy is being applied on node %s." -msgstr "Esta política se está aplicando en el nodo %s." - -#: ../../enterprise/include/functions_policies.php:4538 -#, php-format -msgid "Error syncronizing the agents to node %s." -msgstr "Error al sincronizar los agentes al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4551 -#, php-format -msgid "Error syncronizing the groups to node %s." -msgstr "Error al sincronizar los grupos al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4564 -#, php-format -msgid "Error syncronizing the modules to node %s." -msgstr "Error al sincronizar los módulos al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4580 -#, php-format -msgid "Error syncronizing the alerts to node %s." -msgstr "Error al sincronizar las alertas al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4590 -#, php-format -msgid "Error syncronizing the alert actions to node %s." -msgstr "Error al sincronizar las acciones de alerta al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4604 -#, php-format -msgid "Error syncronizing the inventory modules to node %s." -msgstr "Error al sincronizar los módulos de inventario al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4617 -#, php-format -msgid "Error syncronizing the plugins to node %s." -msgstr "Error al sincronizar los plugins al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4631 -#, php-format -msgid "Error syncronizing the collections to node %s." -msgstr "Error al sincronizar las colecciones al nodo %s." - -#: ../../enterprise/include/functions_policies.php:4640 -#, php-format -msgid "Error adding the queue to node %s." -msgstr "Error al añadir la cola al nodo %s." - -#: ../../enterprise/include/functions_policies.php:5127 -msgid "Error syncronizing ." -msgstr "Error de sincronización." - -#: ../../enterprise/include/functions_reporting.php:46 -msgid "Advance options" -msgstr "Opciones avanzadas" - -#: ../../enterprise/include/functions_reporting.php:67 -msgid "Templates list" -msgstr "Lista de plantillas" - -#: ../../enterprise/include/functions_reporting.php:74 -#: ../../enterprise/meta/general/main_header.php:191 -msgid "Templates wizard" -msgstr "Asistente de plantillas" - -#: ../../enterprise/include/functions_reporting.php:102 -msgid "Templates Wizard" -msgstr "Asistente de plantillas" - -#: ../../enterprise/include/functions_reporting.php:1077 -msgid "Availability item created from wizard." -msgstr "Elemento disponible creado desde el asistente" - -#: ../../enterprise/include/functions_reporting.php:1726 -#: ../../enterprise/include/functions_reporting.php:2663 -#: ../../enterprise/include/functions_reporting.php:3656 -msgid "Planned Downtimes" -msgstr "Paradas planificadas" - -#: ../../enterprise/include/functions_reporting.php:1753 -msgid "SLA Compliance per days" -msgstr "Cumplimiento de SLA por días" - -#: ../../enterprise/include/functions_reporting.php:1845 -msgid "Summary of SLA Failures" -msgstr "Resumen de los fallos de SLA" - -#: ../../enterprise/include/functions_reporting.php:1847 -#: ../../enterprise/include/functions_reporting_csv.php:1453 -msgid "Day" -msgstr "Día" - -#: ../../enterprise/include/functions_reporting.php:1865 -#: ../../enterprise/include/functions_reporting.php:1866 -msgid "Out of SLA limits" -msgstr "Sin límites SLS" - -#: ../../enterprise/include/functions_reporting.php:1871 -#: ../../enterprise/include/functions_reporting.php:1872 -msgid "IN of SLA limits" -msgstr "Límite del IN de SLA" - -#: ../../enterprise/include/functions_reporting.php:2711 -msgid "T. Total" -msgstr "Tiempo total" - -#: ../../enterprise/include/functions_reporting.php:2712 -#: ../../enterprise/include/functions_reporting.php:3693 -msgid "T. OK" -msgstr "Tiempo OK" - -#: ../../enterprise/include/functions_reporting.php:2713 -#: ../../enterprise/include/functions_reporting.php:3694 -msgid "T. Error" -msgstr "Tiempo error" - -#: ../../enterprise/include/functions_reporting.php:2714 -#: ../../enterprise/include/functions_reporting.php:3695 -msgid "T. Unknown" -msgstr "Tiempo desconocido" - -#: ../../enterprise/include/functions_reporting.php:2715 -#: ../../enterprise/include/functions_reporting.php:3696 -msgid "T. Not_init" -msgstr "Tiempo no iniciado" - -#: ../../enterprise/include/functions_reporting.php:2716 -#: ../../enterprise/include/functions_reporting.php:3697 -msgid "T. Downtime" -msgstr "Tiempo en parada planificada" - -#: ../../enterprise/include/functions_reporting.php:2717 -#: ../../enterprise/include/functions_reporting.php:3698 -msgid "SLA %" -msgstr "SLA %" - -#: ../../enterprise/include/functions_reporting.php:3920 -msgid "Ignore Planned Downtime" -msgstr "Ignorar parada planeada" - -#: ../../enterprise/include/functions_reporting.php:4450 -msgid "Module Histogram Graph" -msgstr "Gráfico de histograma del módulo" - -#: ../../enterprise/include/functions_reporting.php:5226 -msgid "There are no SLAs defined." -msgstr "No hay SLAs definidos" - -#: ../../enterprise/include/functions_reporting.php:5786 -msgid "Scheduled shutdow" -msgstr "Parada planeada" - -#: ../../enterprise/include/functions_reporting.php:6148 -#: ../../enterprise/include/functions_reporting.php:6773 -#, php-format -msgid "Graph agents(%s) - %s" -msgstr "Gráficos de agentes (%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:6689 -#, php-format -msgid "Graph agent(%s) - %s" -msgstr "Gráfico de agente(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:7147 -msgid "There is not data for the selected conditions" -msgstr "No hay datos para las condiciones seleccionadas" - -#: ../../enterprise/include/functions_reporting.php:7345 -#: ../../enterprise/include/functions_reporting.php:7401 -msgid "Template editor" -msgstr "Editor de plantillas" - -#: ../../enterprise/include/functions_reporting.php:7420 -msgid "Get PDF file" -msgstr "Obtener archivo PDF" - -#: ../../enterprise/include/functions_reporting_csv.php:388 -msgid "Event report agent" -msgstr "Informe de los eventos de un agente" - -#: ../../enterprise/include/functions_reporting_csv.php:390 -msgid "Event report group" -msgstr "Informe de los eventos de un grupo" - -#: ../../enterprise/include/functions_reporting_csv.php:414 -msgid "Event report module" -msgstr "Informe de los eventos de un módulo" - -#: ../../enterprise/include/functions_reporting_csv.php:489 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -msgid "% OK" -msgstr "% OK" - -#: ../../enterprise/include/functions_reporting_csv.php:615 -msgid "Maximum value" -msgstr "Valor máximo" - -#: ../../enterprise/include/functions_reporting_csv.php:620 -msgid "Minimum value" -msgstr "Valor mínimo" - -#: ../../enterprise/include/functions_reporting_csv.php:623 -msgid "Average value" -msgstr "Valor medio" - -#: ../../enterprise/include/functions_reporting_csv.php:724 -msgid "Serialized data " -msgstr "Datos serializados " - -#: ../../enterprise/include/functions_reporting_csv.php:838 -msgid "Uknown agents" -msgstr "Agentes desconocidos" - -#: ../../enterprise/include/functions_reporting_csv.php:838 -msgid "Last 8 hours events" -msgstr "Eventos en las últimas 8 horas" - -#: ../../enterprise/include/functions_reporting_csv.php:914 -msgid "Illegal query or any other error" -msgstr "Consulta ilegal o cualquier otro error" - -#: ../../enterprise/include/functions_reporting_csv.php:932 -msgid "SQL horizontal bar graph" -msgstr "Gráfica de barras horizontales SQL" - -#: ../../enterprise/include/functions_reporting_csv.php:1013 -#: ../../enterprise/include/functions_reporting_csv.php:1015 -#: ../../enterprise/include/functions_reporting_csv.php:1021 -#: ../../enterprise/include/functions_reporting_csv.php:1023 -msgid "Minimum Value" -msgstr "Valor mínimo" - -#: ../../enterprise/include/functions_reporting_csv.php:1068 -#: ../../enterprise/include/functions_reporting_csv.php:1070 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../enterprise/include/functions_reporting_csv.php:1078 -msgid "Maximun Value" -msgstr "Valor máximo" - -#: ../../enterprise/include/functions_reporting_csv.php:1187 -msgid "AVG" -msgstr "Media" - -#: ../../enterprise/include/functions_reporting_csv.php:1222 -msgid "% Wrong" -msgstr "% Mal" - -#: ../../enterprise/include/functions_reporting_csv.php:1237 -msgid "Simple Graph" -msgstr "Gráfico simple" - -#: ../../enterprise/include/functions_reporting_csv.php:1297 -#: ../../enterprise/include/functions_reporting_csv.php:1343 -#: ../../enterprise/include/functions_reporting_csv.php:1416 -#: ../../enterprise/include/functions_reporting_csv.php:1535 -#: ../../enterprise/include/functions_reporting_csv.php:1803 -msgid "SLA Max" -msgstr "SLA máximo" - -#: ../../enterprise/include/functions_reporting_csv.php:1298 -#: ../../enterprise/include/functions_reporting_csv.php:1344 -#: ../../enterprise/include/functions_reporting_csv.php:1417 -#: ../../enterprise/include/functions_reporting_csv.php:1536 -#: ../../enterprise/include/functions_reporting_csv.php:1804 -msgid "SLA Min" -msgstr "SLA mínimo" - -#: ../../enterprise/include/functions_reporting_csv.php:1300 -#: ../../enterprise/include/functions_reporting_csv.php:1346 -msgid "Time Total " -msgstr "Tiempo total " - -#: ../../enterprise/include/functions_reporting_csv.php:1301 -#: ../../enterprise/include/functions_reporting_csv.php:1347 -msgid "Time OK " -msgstr "Tiempo OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1302 -#: ../../enterprise/include/functions_reporting_csv.php:1348 -msgid "Time Error " -msgstr "Tiempo de error " - -#: ../../enterprise/include/functions_reporting_csv.php:1303 -#: ../../enterprise/include/functions_reporting_csv.php:1349 -msgid "Time Unknown " -msgstr "Tiempo en desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:1304 -#: ../../enterprise/include/functions_reporting_csv.php:1350 -msgid "Time Not Init " -msgstr "Tiempo no iniciado " - -#: ../../enterprise/include/functions_reporting_csv.php:1305 -#: ../../enterprise/include/functions_reporting_csv.php:1351 -msgid "Time Downtime " -msgstr "Tiempo en parada planificada " - -#: ../../enterprise/include/functions_reporting_csv.php:1306 -#: ../../enterprise/include/functions_reporting_csv.php:1352 -msgid "Checks Total " -msgstr "Comprobaciones totales " - -#: ../../enterprise/include/functions_reporting_csv.php:1307 -#: ../../enterprise/include/functions_reporting_csv.php:1353 -msgid "Checks OK " -msgstr "Comprobaciones OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1308 -#: ../../enterprise/include/functions_reporting_csv.php:1354 -msgid "Checks Error " -msgstr "Comprobaciones con error " - -#: ../../enterprise/include/functions_reporting_csv.php:1309 -#: ../../enterprise/include/functions_reporting_csv.php:1355 -msgid "Checks Unknown " -msgstr "Comprobaciones en desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:1310 -#: ../../enterprise/include/functions_reporting_csv.php:1356 -msgid "Checks Not Init " -msgstr "Comprobaciones en no iniciado " - -#: ../../enterprise/include/functions_reporting_csv.php:1311 -#: ../../enterprise/include/functions_reporting_csv.php:1357 -msgid "SLA " -msgstr "SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1312 -#: ../../enterprise/include/functions_reporting_csv.php:1358 -msgid "Status " -msgstr "Estado " - -#: ../../enterprise/include/functions_reporting_csv.php:1404 -#: ../../enterprise/include/functions_reporting_csv.php:1520 -#: ../../enterprise/include/functions_reporting_csv.php:1720 -#: ../../enterprise/include/functions_reporting_csv.php:1788 -msgid "Subtitle" -msgstr "Subtítulo" - -#: ../../enterprise/include/functions_reporting_csv.php:1419 -#: ../../enterprise/include/functions_reporting_csv.php:1551 -#: ../../enterprise/include/functions_reporting_csv.php:1819 -msgid "Time Total Month" -msgstr "Tiempo total del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1420 -#: ../../enterprise/include/functions_reporting_csv.php:1552 -#: ../../enterprise/include/functions_reporting_csv.php:1820 -msgid "Time OK Month" -msgstr "Tiempo OK del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1421 -#: ../../enterprise/include/functions_reporting_csv.php:1553 -#: ../../enterprise/include/functions_reporting_csv.php:1821 -msgid "Time Error Month" -msgstr "Tiempo en error del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1422 -#: ../../enterprise/include/functions_reporting_csv.php:1554 -#: ../../enterprise/include/functions_reporting_csv.php:1822 -msgid "Time Unknown Month" -msgstr "Tiempo en desconocido del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1423 -#: ../../enterprise/include/functions_reporting_csv.php:1555 -#: ../../enterprise/include/functions_reporting_csv.php:1823 -msgid "Time Downtime Month" -msgstr "Tiempo en parada planificada del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1424 -#: ../../enterprise/include/functions_reporting_csv.php:1556 -#: ../../enterprise/include/functions_reporting_csv.php:1824 -msgid "Time Not Init Month" -msgstr "Tiempo en no iniciado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1425 -#: ../../enterprise/include/functions_reporting_csv.php:1557 -#: ../../enterprise/include/functions_reporting_csv.php:1825 -msgid "Checks Total Month" -msgstr "Comprobaciones totales del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1426 -#: ../../enterprise/include/functions_reporting_csv.php:1558 -#: ../../enterprise/include/functions_reporting_csv.php:1826 -msgid "Checks OK Month" -msgstr "Comprobaciones OK del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1427 -#: ../../enterprise/include/functions_reporting_csv.php:1559 -#: ../../enterprise/include/functions_reporting_csv.php:1827 -msgid "Checks Error Month" -msgstr "Comprobaciones en error del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1428 -#: ../../enterprise/include/functions_reporting_csv.php:1560 -#: ../../enterprise/include/functions_reporting_csv.php:1828 -msgid "Checks Unknown Month" -msgstr "Comprobaciones en desconocido del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1561 -#: ../../enterprise/include/functions_reporting_csv.php:1829 -msgid "Checks Not Init Month" -msgstr "Comprobaciones en no iniciado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1430 -#: ../../enterprise/include/functions_reporting_csv.php:1562 -#: ../../enterprise/include/functions_reporting_csv.php:1830 -msgid "SLA Month" -msgstr "SLA mensual" - -#: ../../enterprise/include/functions_reporting_csv.php:1431 -#: ../../enterprise/include/functions_reporting_csv.php:1563 -#: ../../enterprise/include/functions_reporting_csv.php:1831 -msgid "Status Month" -msgstr "Estado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1454 -#: ../../enterprise/include/functions_reporting_csv.php:1609 -msgid "Time Total Day" -msgstr "Tiempo total del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1455 -#: ../../enterprise/include/functions_reporting_csv.php:1610 -msgid "Time OK Day" -msgstr "Tiempo en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1456 -#: ../../enterprise/include/functions_reporting_csv.php:1611 -msgid "Time Error Day" -msgstr "Tiempo en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1457 -#: ../../enterprise/include/functions_reporting_csv.php:1612 -msgid "Time Unknown Day" -msgstr "Tiempo en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:1613 -msgid "Time Not Init Day" -msgstr "Tiempo en no iniciado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1459 -#: ../../enterprise/include/functions_reporting_csv.php:1614 -msgid "Time Downtime Day" -msgstr "Tiempo en parada planificada del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1460 -#: ../../enterprise/include/functions_reporting_csv.php:1615 -msgid "Time Out Day" -msgstr "Tiempo fuera del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1461 -#: ../../enterprise/include/functions_reporting_csv.php:1616 -msgid "Checks Total Day" -msgstr "Comprobaciones totales del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1462 -#: ../../enterprise/include/functions_reporting_csv.php:1617 -msgid "Checks OK Day" -msgstr "Comprobaciones en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1463 -#: ../../enterprise/include/functions_reporting_csv.php:1618 -msgid "Checks Error Day" -msgstr "Comprobaciones en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1464 -#: ../../enterprise/include/functions_reporting_csv.php:1619 -msgid "Checks Unknown Day" -msgstr "Comprobaciones en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1465 -#: ../../enterprise/include/functions_reporting_csv.php:1620 -msgid "Checks Not Init Day" -msgstr "Comprobaciones en no iniciado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1466 -#: ../../enterprise/include/functions_reporting_csv.php:1621 -msgid "SLA Day" -msgstr "SLA diario" - -#: ../../enterprise/include/functions_reporting_csv.php:1467 -#: ../../enterprise/include/functions_reporting_csv.php:1622 -msgid "SLA Fixed Day" -msgstr "SLA de día fijo" - -#: ../../enterprise/include/functions_reporting_csv.php:1468 -#: ../../enterprise/include/functions_reporting_csv.php:1623 -msgid "Date From Day" -msgstr "Fecha desde día" - -#: ../../enterprise/include/functions_reporting_csv.php:1469 -#: ../../enterprise/include/functions_reporting_csv.php:1624 -msgid "Date To Day" -msgstr "Fecha hasta día" - -#: ../../enterprise/include/functions_reporting_csv.php:1470 -#: ../../enterprise/include/functions_reporting_csv.php:1625 -msgid "Status Day" -msgstr "Estado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1531 -#: ../../enterprise/include/functions_reporting_csv.php:1799 -msgid "Month Number" -msgstr "Número de mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1532 -#: ../../enterprise/include/functions_reporting_csv.php:1800 -msgid "Year" -msgstr "Año" - -#: ../../enterprise/include/functions_reporting_csv.php:1582 -msgid "Time Total week" -msgstr "Tiempo total de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1583 -msgid "Time OK week" -msgstr "Tiempo en OK de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1584 -msgid "Time Error week" -msgstr "Tiempo en error de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1585 -msgid "Time Unknown week" -msgstr "Tiempo en desconocido de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1586 -msgid "Time Downtime week" -msgstr "Tiempo en parada planificada de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1587 -msgid "Time Not Init week" -msgstr "Tiempo en no iniciado de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1588 -msgid "Checks Total week" -msgstr "Comprobaciones totales de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1589 -msgid "Checks OK week" -msgstr "Comprobaciones en OK de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1590 -msgid "Checks Error week" -msgstr "Comprobaciones en error de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1591 -msgid "Checks Unknown week" -msgstr "Comprobaciones en desconocido de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1592 -msgid "Status week" -msgstr "Estado de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1608 -msgid "Day Week" -msgstr "Día de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1660 -msgid "S.L.A. Services" -msgstr "Servicios S.L.A" - -#: ../../enterprise/include/functions_reporting_csv.php:1678 -msgid "Lost sercice " -msgstr "Servicio perdido " - -#: ../../enterprise/include/functions_reporting_csv.php:1679 -msgid "Service " -msgstr "Servicio " - -#: ../../enterprise/include/functions_reporting_csv.php:1680 -msgid "Limit " -msgstr "Límite " - -#: ../../enterprise/include/functions_reporting_csv.php:1681 -msgid "SLA Compilance " -msgstr "Cumplimiento SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1682 -msgid "Unknown " -msgstr "Desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:1683 -msgid "Ok " -msgstr "Ok " - -#: ../../enterprise/include/functions_reporting_csv.php:1684 -msgid "Fail " -msgstr "Error " - -#: ../../enterprise/include/functions_reporting_csv.php:1685 -msgid "Result " -msgstr "Resultado " - -#: ../../enterprise/include/functions_reporting_csv.php:1730 -msgid "SLA max" -msgstr "SLA máximo" - -#: ../../enterprise/include/functions_reporting_csv.php:1731 -msgid "SLA min" -msgstr "SLA mínimo" - -#: ../../enterprise/include/functions_reporting_csv.php:1732 -msgid "SLA limit" -msgstr "Límite de SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1735 -msgid "Time Error" -msgstr "Tiempo de error" - -#: ../../enterprise/include/functions_reporting_csv.php:1741 -msgid "Checks Error" -msgstr "Comprobaciones en error" - -#: ../../enterprise/include/functions_reporting_csv.php:1743 -msgid "Checks Not Init" -msgstr "Comprobaciones en no iniciado" - -#: ../../enterprise/include/functions_reporting_csv.php:1745 -msgid "SLA Fixed" -msgstr "SLA fijo" - -#: ../../enterprise/include/functions_reporting_csv.php:1850 -msgid "Time Total day" -msgstr "Tiempo total del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1851 -msgid "Time OK day" -msgstr "Tiempo en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1852 -msgid "Time Error day" -msgstr "Tiempo en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1853 -msgid "Time Unknown day" -msgstr "Tiempo en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1854 -msgid "Time Downtime day" -msgstr "Tiempo en parada planificada del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1855 -msgid "Time Not Init day" -msgstr "Tiempo en no iniciado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1856 -msgid "Checks Total day" -msgstr "Comprobaciones totales del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1857 -msgid "Checks OK day" -msgstr "Comprobaciones en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1858 -msgid "Checks Error day" -msgstr "Comprobaciones en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1859 -msgid "Checks Unknown day" -msgstr "Comprobaciones en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1860 -msgid "Status day" -msgstr "Estado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1877 -msgid "Time Total hours" -msgstr "Tiempo total en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1878 -msgid "Time OK hours" -msgstr "Tiempo en OK en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1879 -msgid "Time Error hours" -msgstr "Tiempo en error en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1880 -msgid "Time Unknown hours" -msgstr "Tiempo en desconocido en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1881 -msgid "Time Not Init hours" -msgstr "Tiempo en no iniciado en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1882 -msgid "Time Downtime hours" -msgstr "Tiempo en parada planificada en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1883 -msgid "Time Out hours" -msgstr "Tiempo fuera en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1884 -msgid "Checks Total hours" -msgstr "Comprobaciones totales en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1885 -msgid "Checks OK hours" -msgstr "Comprobaciones en OK en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1886 -msgid "Checks Error hours" -msgstr "Comprobaciones en error en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1887 -msgid "Checks Unknown hours" -msgstr "Comprobaciones en desconocido en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1888 -msgid "Checks Not Init hours" -msgstr "Comprobaciones en no iniciado en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1889 -msgid "SLA hours" -msgstr "SLA horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1890 -msgid "SLA Fixed hours" -msgstr "SLA horario fijo" - -#: ../../enterprise/include/functions_reporting_csv.php:1891 -msgid "Date From hours" -msgstr "Desde" - -#: ../../enterprise/include/functions_reporting_csv.php:1892 -msgid "Date To hours" -msgstr "Hasta" - -#: ../../enterprise/include/functions_reporting_csv.php:1893 -msgid "Status hours" -msgstr "Estado horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2044 -msgid "Simple Baseline Graph" -msgstr "Gráfica simple base" - -#: ../../enterprise/include/functions_reporting_csv.php:2075 -msgid "Custom Graph" -msgstr "Gráfica personalizada" - -#: ../../enterprise/include/functions_reporting_csv.php:2111 -#: ../../enterprise/meta/include/functions_wizard_meta.php:309 -msgid "Agent modules" -msgstr "Módulos de agentes" - -#: ../../enterprise/include/functions_reporting_csv.php:2210 -msgid "Actions Triggered" -msgstr "Acciones disparadas" - -#: ../../enterprise/include/functions_reporting_csv.php:2210 -msgid "Template Triggered" -msgstr "Plantillas disparadas" - -#: ../../enterprise/include/functions_reporting_csv.php:2223 -msgid "Event Report Log" -msgstr "Log de informes de eventos" - -#: ../../enterprise/include/functions_reporting_pdf.php:1560 -msgid "Contents" -msgstr "Contenido" - -#: ../../enterprise/include/functions_snmp.php:65 -msgid "Trap status agent recovered" -msgstr "Estado del trap de agente recuperado" - -#: ../../enterprise/include/functions_tasklist.php:55 -msgid "" -"Discovery relies on a proper setup of cron, the time-based scheduling service" -msgstr "" -"El Discovery se basa en la correcta configuración de cron, el servicio de " -"programación en función del tiempo" - -#: ../../enterprise/include/functions_tasklist.php:74 -msgid "Please check process is no locked." -msgstr "Compruebe que el proceso no está bloqueado" - -#: ../../enterprise/include/functions_tasklist.php:158 -#: ../../enterprise/include/functions_tasklist.php:509 -msgid "There are no console task defined yet." -msgstr "Aún no hay tareas de consola definidas." - -#: ../../enterprise/include/functions_tasklist.php:514 -msgid "Console Tasks" -msgstr "Tareas de consola" - -#: ../../enterprise/include/functions_transactional.php:588 -msgid "Error in dependencies field" -msgstr "Error en el campo de las dependencias" - -#: ../../enterprise/include/functions_transactional.php:597 -msgid "Error in enables field" -msgstr "Error al activar el campo" - -#: ../../enterprise/include/functions_ui.php:79 -msgid "Select inventory module" -msgstr "Seleccionar módulo de inventario" - -#: ../../enterprise/include/functions_ui.php:96 -msgid "Use custom fields" -msgstr "Usar campos personalizados" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Field name" -msgstr "Nombre del campo" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "It's a password" -msgstr "Es una contraseña" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Add field" -msgstr "Añadir campo" - -#: ../../enterprise/load_enterprise.php:375 -#: ../../enterprise/load_enterprise.php:436 -msgid "Invalid licence." -msgstr "Licencia no válida" - -#: ../../enterprise/load_enterprise.php:375 -msgid "Please contact your system administrator." -msgstr "Por favor, contacta con el administrador del sistema." - -#: ../../enterprise/load_enterprise.php:436 -#, php-format -msgid "Please contact %s for a valid licence." -msgstr "Póngase en contacto con %s para obtener una licencia válida." - -#: ../../enterprise/load_enterprise.php:437 -#, php-format -msgid "Or disable %s enterprise" -msgstr "O desabilite %s enterprise" - -#: ../../enterprise/load_enterprise.php:542 -#: ../../enterprise/load_enterprise.php:843 -msgid "Request new licence" -msgstr "Solicitar una nueva licencia" - -#: ../../enterprise/load_enterprise.php:632 -msgid "" -"Metaconsole unreached

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

Este nodo tiene una licencia de Metaconsola " -"pero no pudo establecer contacto." - -#: ../../enterprise/load_enterprise.php:649 -#: ../../enterprise/load_enterprise.php:656 -#: ../../enterprise/load_enterprise.php:666 -#: ../../enterprise/load_enterprise.php:672 +"No se puede añadir variables de configuración desde la base de datos. Revise " +"la configuración de la base de datos en el\n" +"\t\t\tinclude/config.php archivo.

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

%s La consola no ha podido encontrarinclude/config.php " +"o este archivo no tiene\n" +"\t\t\tpermisos válidos y el servidor HTTP no puede leerlo. Lea la " +"documentación para solucionar el problema.
" + +#: ../../general/login_page.php:501 +msgid "No configuration file found" +msgstr "No se ha encontrado el archivo de configuración" + +#: ../../general/login_page.php:503 #, php-format msgid "" -"License out of limits

" -"This license allows %d agents and you have %d agents configured." +"%s Console cannot find include/config.php or this file has invalid\n" +"\t\tpermissions and HTTP server cannot read it. Please read documentation to " +"fix this problem." msgstr "" -"Licencia caducada

Esta " -"licencia es para %d agentes y tiene %d agentes configurados." +"La consola %s no ha podido encontrar include/config.php o este " +"archivo no tiene \n" +"\t\tpermisos válidos y el servidor HTTP no puede leerlo. Lea la " +"documentación para solucionar el problema." -#: ../../enterprise/load_enterprise.php:650 -#: ../../enterprise/load_enterprise.php:658 -#: ../../enterprise/load_enterprise.php:667 -#: ../../enterprise/load_enterprise.php:674 -#: ../../enterprise/load_enterprise.php:684 -#: ../../enterprise/load_enterprise.php:694 -#: ../../enterprise/load_enterprise.php:701 -#: ../../enterprise/load_enterprise.php:709 +#: ../../general/login_page.php:515 #, php-format -msgid "Please contact %s to renew the license." -msgstr "Póngase en contacto con %s para renovar la licencia." - -#: ../../enterprise/load_enterprise.php:657 -#: ../../enterprise/load_enterprise.php:659 -#: ../../enterprise/load_enterprise.php:673 -#: ../../enterprise/load_enterprise.php:675 -#: ../../enterprise/load_enterprise.php:700 -#: ../../enterprise/load_enterprise.php:702 -msgid "" -"This console will work in limited mode. Enterprise features will not " -"function." +msgid "You may try to run the %sinstallation wizard%s to create one." msgstr "" -"Esta consola funcionará en modo limitado. Las funcionalidades Enterprise no " -"funcionarán." +"Puedes intentar ejecutar el %sasistente de instalación%s para crear " +"uno." -#: ../../enterprise/load_enterprise.php:683 +#: ../../general/login_page.php:519 +msgid "Installer active" +msgstr "Instalador activo" + +#: ../../general/login_page.php:521 #, php-format msgid "" -"License out of limits

" -"This license allows %d modules and you have %d modules configured." +"For security reasons, normal operation is not possible until you delete " +"installer file.\n" +"\t\tPlease delete the ./install.php file before running %s Console." msgstr "" -" Licencia caducada

Esta " -"licencia permite %d módulos y tiene %d módulos configurados." +"Por motivos de seguridad, el funcionamiento no es posible hasta que elimine " +"el archivo de instalador.\n" +"\t\tBorre el archivo ./install.php antes de ejecutar la consola de " +"%s." -#: ../../enterprise/load_enterprise.php:693 -#: ../../enterprise/load_enterprise.php:699 -#: ../../enterprise/load_enterprise.php:708 +#: ../../general/login_page.php:528 +msgid "Bad permission for include/config.php" +msgstr "Permiso incorrecto para include/config.php" + +#: ../../general/login_page.php:530 msgid "" -"This license has expired. " -"

You can not get updates until you renew the license." +"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 "" -"Licencia caducada.

No " -"podrás actualizar Pandora FMS hasta que no renueves la licencia." +"Por motivos de seguridad, config.php ha de tener permisos " +"restrictivos, y \"otros\" usuarios\n" +"\t\t no deberían leerlo o editarlo. Debería escribirlo solo el propietario\n" +"\t\t (normalmente www-data o http daemon user), el funcionamiento normal no " +"será posible hasta que se cambien\n" +"\t\t los permisos para el archivo include/config.php. Por tu " +"seguridad, procede a cambiarlos." -#: ../../enterprise/load_enterprise.php:839 -msgid "Renew" -msgstr "Renovar" +#: ../../general/login_page.php:538 +msgid "Bad defined homedir" +msgstr "Homedir mal definida" -#: ../../enterprise/load_html_extra.php:185 -msgid "Activate license" -msgstr "Activar la licencia" +#: ../../general/login_page.php:539 +msgid "" +"In the config.php file in the variable $config[\"homedir\"] = add the " +"correct path" +msgstr "" +"En el archivo config.php en la variable $config[\"homedir\"] = añade la ruta " +"correcta" -#: ../../enterprise/load_html_extra.php:186 -msgid "Your request key is:" -msgstr "Tu clave es:" +#: ../../general/login_page.php:543 +msgid "Bad defined homeurl or homeurl_static" +msgstr "Homeurl o homeurl_static mal definida" -#: ../../enterprise/load_html_extra.php:188 +#: ../../general/login_page.php:544 +msgid "" +"In the config.php file in the variable $config[\"homeurl\"] or " +"$config[\"homeurl_static\"] = add the correct path" +msgstr "" +"En el archivo config.php en la variable $config[\"homeurl\"] o " +"$config[\"homeurl_static\"] = añade la ruta correcta" + +#: ../../general/pandora_help.php:23 +#, php-format +msgid "%s help system" +msgstr "Ayuda del sistema de %s" + +#: ../../general/pandora_help.php:72 +msgid "Help system error" +msgstr "Error del sistema de ayuda" + +#: ../../general/pandora_help.php:77 #, php-format msgid "" -"You can activate it manually here or " -"automatically filling the form below:" +"%s help system has been called with a help reference that currently don't " +"exist. There is no help content to show." msgstr "" -"Lo puedes activar manualmente aquí o " -"automáticamente rellenando el siguiente formulario:" +"El sistema de ayuda de %s se ha solicitado con una petición de ayuda que no " +"existe actualmente. No hay contenido de ayuda a mostrar" -#: ../../enterprise/load_html_extra.php:193 -msgid "Auth Key:" -msgstr "Clave de autentificación:" - -#: ../../enterprise/load_html_extra.php:201 -#: ../../enterprise/load_html_extra.php:220 -msgid "Online validation" -msgstr "Validación en línea" - -#: ../../enterprise/load_html_extra.php:213 -msgid "ERROR:" -msgstr "ERROR:" - -#: ../../enterprise/load_html_extra.php:213 -msgid "When connecting to licence server." -msgstr "Al conectar con el servidor de licencias." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:63 -#, php-format -msgid "Provisioning custom data %s successfully deleted." -msgstr "" -"Datos personalizados de aprovisionamiento %s borrados correctamente" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:70 -#, php-format -msgid "Cannot delete custom data %s." -msgstr "Error al borrar los datos personalizados %s" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:83 -msgid "There was an error when moving the custom provisioning data." -msgstr "Error al mover los datos de aprovisionamiento personalizado" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 -msgid "Cannot create an unnamed rule." -msgstr "No se pudo crear una regla sin nombre." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 -msgid "Error creating provisioning rule." -msgstr "Error al crear la regla de aprovisionamiento" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 -msgid "Error updating provisioning rule." -msgstr "Error al actualizar la regla de aprovisionamiento" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 -msgid "Error deleting provisioning rule." -msgstr "Error al borrar la regla de aprovisionamiento" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 -msgid "There was an error rule when moving the provisioning." -msgstr "Error al mover la regla de aprovisionamiento" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 -msgid "Edit rule" -msgstr "Editar regla" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 -msgid "Agent: " -msgstr "Agente: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 -msgid " already exists in target node" -msgstr " ya existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 -msgid " group does not exist in target node" -msgstr " grupo no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 -msgid "" -" policies definitions does not match with defined ones in target node" -msgstr "" -" definiciones de políticas no concuerdan con aquellas definidas en el nodo " -"de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 -msgid " plugins does not exist in target node" -msgstr " plugins no existen en el nodo de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 -msgid " collections does not exist in target node" -msgstr " colecciones no existen en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 -msgid " inventory does not exist in target node" -msgstr " inventario no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 -msgid " alerts template does not exist in target node" -msgstr " modelo de alertas no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 -msgid " alerts action does not exist in target node" -msgstr " acción de alertas no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 -msgid "Exists agent conf for agent: " -msgstr "Existe una configuración para el agente: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 -msgid " please remove configuration file from target node." -msgstr " por favor, borra el archivo de configuración del nodo de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 -msgid "The agent: " -msgstr "El agente: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 -msgid " has been successfully added to the migration queue " -msgstr " se añadió correctamente a la cola de migración " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 -msgid " has not been added due to problems in the insertion" -msgstr " no se añadió por problemas de inserción" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:227 -#, php-format -msgid "The agent: %d has already been added to the migration queue" -msgstr "El agente: %d ya se ha añadido a la cola de migración" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:247 -msgid "Problems delete queue" -msgstr "Error al borrar la cola" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:263 -msgid "Move Agents" -msgstr "Mover agentes" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:279 -msgid "Source Server" -msgstr "Servidor de origen" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:281 -msgid "Destination Server" -msgstr "Servidor de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:315 -msgid "Agents to move" -msgstr "Agentes para desplazar" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:336 -msgid "Add agents to destination server" -msgstr "Añadir agentes al servidor de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:344 -msgid "Remove agents to doesn't move to destination server" -msgstr "Si eliminas los agentes, no se desplazarán al servidor de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 -msgid "Discard history data" -msgstr "Descartar datos de histórico" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:375 -msgid "Agents do not exist in target server." -msgstr "Los agentes no existen en el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:376 -msgid "Check group is synchronized with target server." -msgstr "Comprueba que el grupo está sincronizado con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:377 -msgid "All policies needed are synchronized with target server." -msgstr "" -"Todas las políticas necesarias se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:378 -msgid "All remote plugins needed are synchronized with target server." -msgstr "" -"Todos los plugins necesarios se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:379 -msgid "All collections needed are syncronized with target server." -msgstr "" -"Todas las colecciones necesarias se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:380 -msgid "" -"All remote inventory definitions needed are syncronized with target server." -msgstr "" -"Todos los inventarios necesarios se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:381 -msgid "" -"All alert templates definitions needed are syncronized with target server." -msgstr "" -"Todas las definiciones de modelos de alertas necesarias se sincronizaron con " -"el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:382 -msgid "All alert actions needed are syncronized with target server." -msgstr "" -"Todas las acciones de alertas necesarias se sincronizaron con el servidor de " -"destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:383 -msgid "Agents conf does not exists in target server." -msgstr "La configuración del agente no existe en el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:384 -#, php-format -msgid "Both %s servers must be in the same version" -msgstr "Ambos servidores %s deben estar en la misma versión" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 -msgid "Check target server ip address is set" -msgstr "Comprueba que la IP del servidor de destino está configurada." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:395 -msgid "Move" -msgstr "Mover" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:410 -msgid "Source node" -msgstr "Nodo de origen" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:411 -msgid "Target node" -msgstr "Nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 -msgid "Active db only" -msgstr "BD activa solamente" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:452 -msgid "Creating modules in target node" -msgstr "Creando módulos en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:456 -msgid "Disabling agent in source node and enabling in target one" -msgstr "" -"Deshabilitando el agente en el nodo de origen y habilitándolo en el nodo de " -"destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:460 -msgid "Transferring data" -msgstr "Transfiriendo datos" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 -msgid "Creating agent in target node" -msgstr "Creando agente en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:476 -msgid "Completed" -msgstr "Completado" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:481 -msgid "Queued" -msgstr "En espera" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 -msgid "checking migration requirements" -msgstr "Comprobando requisitos de migración" - -#: ../../enterprise/meta/advanced/agents_setup.php:38 -msgid "Propagation" -msgstr "Propagación" - -#: ../../enterprise/meta/advanced/collections.php:28 -msgid "" -"The previous configuration of collections has been imported from the nodes. " -"Please check that the definitions are correct." -msgstr "" -"La configuración previa de las colecciones se ha importado desde los nodos. " -"Compruebe que las definiciones son correctas." - -#: ../../enterprise/meta/advanced/collections.php:29 -msgid "" -"These definitions will not be operational until you manually \n" -" copy the files from the nodes to the atachment/collection/ directory of " -"the meta console." -msgstr "" -"Estas definiciones no estarán operativas hasta que \n" -" copie manualmente los archivos desde los nodos al directorio " -"atachment/collection/ de la Metaconsola." - -#: ../../enterprise/meta/advanced/collections.php:122 -msgid "Deleted collection to the nodes" -msgstr "Colección eliminada de los nodos" - -#: ../../enterprise/meta/advanced/collections.php:123 -msgid "The collection could not be deleted to the nodes" -msgstr "La colección no se ha podido eliminar de los nodos" - -#: ../../enterprise/meta/advanced/collections.php:171 -msgid "Added collection to the nodes" -msgstr "Colección añadida a los nodos" - -#: ../../enterprise/meta/advanced/collections.php:172 -msgid "The collection could not be added to the nodes" -msgstr "No se ha podido añadir la colección a los nodos" - -#: ../../enterprise/meta/advanced/collections.php:255 -msgid "To manage collections you must activate centralized management" -msgstr "Para administrar colecciones, active la gestión centralizada" - -#: ../../enterprise/meta/advanced/collections.php:390 -#: ../../enterprise/meta/advanced/collections.php:408 -msgid "Deploy in nodes" -msgstr "Desplegar en nodos" - -#: ../../enterprise/meta/advanced/component_management.php:53 -msgid "Module groups Management" -msgstr "Gestor de grupos de módulo" - -#: ../../enterprise/meta/advanced/component_management.php:57 -msgid "OS Management" -msgstr "Administración de SO" - -#: ../../enterprise/meta/advanced/cron_main.php:375 -msgid "Date format in Pandora is year/month/day" -msgstr "El formato de fecha de Pandora FMS es año/mes/día" - -#: ../../enterprise/meta/advanced/cron_main.php:386 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "El formato de hora en Pandora FMS es horas(24h):minutos:segundos" - -#: ../../enterprise/meta/advanced/links.php:57 -msgid "The link was not updated, the data is identical" -msgstr "No se ha actualizado el link, los datos son idénticos" - -#: ../../enterprise/meta/advanced/links.php:97 -msgid "Link Name error" -msgstr "Error en el nombre de link" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:24 -#: ../../enterprise/meta/advanced/synchronizing.group.php:41 -msgid "" -"Be aware that group synchronization can change the group configuration of " -"the node" -msgstr "" -"Tenga en cuenta que la sincronización de grupos puede cambiar la " -"configuración de grupo del nodo" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:44 -#: ../../enterprise/meta/advanced/metasetup.password.php:46 -#: ../../enterprise/meta/advanced/metasetup.performance.php:44 -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/meta/advanced/metasetup.visual.php:47 -#, php-format -msgid "Could not be update: Error in %s" -msgstr "No se puede actualizar: error en %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 -msgid "Node synchronization process failed" -msgstr "Error al sincronizar con el nodo" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 -msgid "" -"If you are trying to migrate this node to a new metaconsole, please use the " -"form available at Settings > Enterprise at node console." -msgstr "" -"Si intenta migrar este nodo a una Metaconsola nueva, use el formulario " -"disponible en Configuración > Enterprise en la consola de nodos." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:194 -msgid "Could not be create, duplicated register found." -msgstr "No se ha podido crear, el registro ya existe." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:271 -msgid "Successfully delete" -msgstr "Borrado correctamente" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:272 -msgid "Could not be delete" -msgstr "No se puede eliminar" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:373 -#, php-format -msgid "%s Metaconsole item edition" -msgstr "Edición de elemento de Metaconsola %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 -msgid "Custom label to identify this setup." -msgstr "Etiqueta personalizada para identificar esta configuración." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 -#, php-format -msgid "Full path to %s console (without index.php). Example %s" -msgstr "Ruta completa de la consola %s (sin index.php). Ejemplo %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:386 -#, php-format -msgid "" -"Token previously configured on the destination %s console in order to use " -"delegated authentification." -msgstr "" -"Token previamente configurado en la consola %s de destino para usar la " -"autenticación delegada." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 -msgid "Define database connection from Pandora FMS node to this Metaconsole" -msgstr "" -"Definir conexión con la base de datos desde el nodo de Pandora FMs a esta " -"Metaconsola." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:496 -msgid "Metaconsole DB Host" -msgstr "Host de la base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:505 -msgid "Metaconsole DB Name" -msgstr "Nombre de base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:514 -msgid "Metaconsole DB User" -msgstr "Usuario de la base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:523 -msgid "Metaconsole DB Password" -msgstr "Contraseña de la base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:707 -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:79 -#: ../../enterprise/meta/include/functions_meta.php:1718 -msgid "Active events history" -msgstr "Histórico de eventos activos" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:89 -msgid "Migration block size" -msgstr "Tamaño del bloque de migración" - -#: ../../enterprise/meta/advanced/metasetup.php:49 -msgid "Consoles Setup" -msgstr "Configuración de consolas" - -#: ../../enterprise/meta/advanced/metasetup.php:57 -#: ../../enterprise/meta/advanced/metasetup.php:161 -msgid "General setup" -msgstr "Configuración general" - -#: ../../enterprise/meta/advanced/metasetup.php:65 -#: ../../enterprise/meta/advanced/metasetup.php:164 -msgid "Passwords setup" -msgstr "Configuración de contraseñas" - -#: ../../enterprise/meta/advanced/metasetup.php:84 -#: ../../enterprise/meta/advanced/metasetup.php:172 -msgid "Visual setup" -msgstr "Configuración visual" - -#: ../../enterprise/meta/advanced/metasetup.php:92 -#: ../../enterprise/meta/advanced/metasetup.php:176 -msgid "Performance setup" -msgstr "Configuración del rendimiento" - -#: ../../enterprise/meta/advanced/metasetup.php:108 -#: ../../enterprise/meta/advanced/metasetup.php:184 -msgid "Strings translation" -msgstr "Traducción de cadenas" - -#: ../../enterprise/meta/advanced/metasetup.php:116 -#: ../../enterprise/meta/advanced/metasetup.php:188 -msgid "Mail" -msgstr "Correo electrónico" - -#: ../../enterprise/meta/advanced/metasetup.php:127 -msgid "Options Update Manager" -msgstr "Opciones del Administrador de actualizaciones" - -#: ../../enterprise/meta/advanced/metasetup.php:135 -#: ../../enterprise/meta/advanced/metasetup.php:196 -msgid "Offline Update Manager" -msgstr "Administrador de actualizaciones offline" - -#: ../../enterprise/meta/advanced/metasetup.php:143 -#: ../../enterprise/meta/advanced/metasetup.php:200 -msgid "Online Update Manager" -msgstr "Administrador de actualizaciones online" - -#: ../../enterprise/meta/advanced/metasetup.php:156 -msgid "Consoles setup" -msgstr "Configuración de las consolas" - -#: ../../enterprise/meta/advanced/metasetup.php:192 -msgid "Online Update Options" -msgstr "Opciones de actualización online" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#, php-format -msgid "" -"If SSL is not properly configured, you will lose access to the %s Console. " -"Do you want to continue?" -msgstr "" -"Si el SSL no esta correctamente configurado, perderá el acceso a la consola " -"%s. ¿Desea continuar?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../enterprise/meta/include/functions_meta.php:406 -msgid "Centralized management" -msgstr "Gestión centralizada" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:192 -#, php-format -msgid "" -"Set this value when you need your %s to be accessible via a public URL (for " -"example using Apache mod_proxy settings)." -msgstr "" -"Ajuste este valor cuando necesite que %s esté accesible a través de una URL " -"pública (por ejemplo usando los ajustes mod_proxy de Apache)." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:203 -#, php-format -msgid "" -"If public URL is not properly configured, you will lose access to the %s " -"Console. Do you want to continue?" -msgstr "" -"Si la URL no está correctamente configurada, no tendrá acceso a la consola " -"%s. ¿Desea continuar?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:221 -msgid "Customize sections" -msgstr "Personalizar secciones" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:242 -msgid "Disabled sections" -msgstr "Secciones desactivadas" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:244 -msgid "Enabled sections" -msgstr "Activar secciones" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:249 -msgid "Push selected sections to enable it" -msgstr "Selecciona las secciones elegidas para activarlo" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:251 -msgid "Pop selected sections to disable it" -msgstr "Deshacer selección de las secciones para desactivarlo" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:130 -msgid "Data precision for reports and visual consoles" -msgstr "Precisión de datos para informes y consolas visuales" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:130 -msgid "Precision must be a integer number between 0 and 5" -msgstr "La precisión debe ser un número entero entre 0 y 5" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:153 -msgid "Graph TIP view" -msgstr "Visor de gráfico TIP" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:170 -msgid "Soft graphs:" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:220 -#: ../../enterprise/meta/include/functions_meta.php:1469 -msgid "Metaconsole elements" -msgstr "Elementos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:220 -msgid "The number of elements retrieved for each instance in some views." -msgstr "" -"Número de elementos recuperados para cada instancia en algunas vistas" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:318 -msgid "Custom logo (header)" -msgstr "Logo personalizado (cabecera)" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:141 -#: ../../enterprise/meta/advanced/policymanager.apply.php:149 -msgid "Only database" -msgstr "Bases de datos solamente" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:186 -msgid "Apply Policies" -msgstr "Aplicar políticas" - -#: ../../enterprise/meta/advanced/policymanager.php:58 -msgid "Policy Manager" -msgstr "Gestor de políticas" - -#: ../../enterprise/meta/advanced/policymanager.php:80 -msgid "Apply policies" -msgstr "Aplicar políticas" - -#: ../../enterprise/meta/advanced/policymanager.php:84 -#: ../../enterprise/meta/advanced/policymanager.php:102 -msgid "Policies queue" -msgstr "Cola de políticas" - -#: ../../enterprise/meta/advanced/policymanager.php:98 -msgid "Policies apply" -msgstr "Aplicar políticas" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:353 -msgid "Empty queue." -msgstr "Cola vacía" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:247 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:272 -#: ../../enterprise/meta/advanced/synchronizing.component.php:279 -#: ../../enterprise/meta/advanced/synchronizing.user.php:564 -#: ../../enterprise/meta/advanced/synchronizing.user.php:651 -#: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../enterprise/meta/include/functions_meta.php:111 -#: ../../enterprise/meta/include/functions_meta.php:208 -#, php-format -msgid "Error connecting to %s" -msgstr "Error al conectar con %s" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:255 -#, php-format -msgid "Error creating %s policies" -msgstr "Error al crear las políticas %s" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:259 -#, php-format -msgid "Created %s policies" -msgstr "%s políticas creadas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:264 -#, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "Error al crear/actualizar %s/%s módulos de políticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:268 -#, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "Creados/actualizados %s/%s módulos de políticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:273 -#, php-format -msgid "Error deleting %s policy modules" -msgstr "Error al eliminar %s módulos de políticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:277 -#, php-format -msgid "Deleted %s policy modules" -msgstr "Eliminados %s módulos de políticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:282 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "Error al crear %s alertas de políticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:286 -#, php-format -msgid "Created %s policy alerts" -msgstr "Alertas de políticas %s creadas correctamente" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:291 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "Error al eliminar %s alertas de políticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:295 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "%s alertas de políticas eliminadas correctamente" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:321 -#: ../../enterprise/meta/advanced/synchronizing.component.php:301 -#: ../../enterprise/meta/advanced/synchronizing.group.php:178 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:76 -#: ../../enterprise/meta/advanced/synchronizing.os.php:72 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:89 -#: ../../enterprise/meta/advanced/synchronizing.user.php:584 -msgid "This metaconsole" -msgstr "Esta Metaconsola" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:280 -#, php-format -msgid "Error creating/updating %s/%s comamnds" -msgstr "Error al crear/actualizar %s/%s comandos" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:284 -#, php-format -msgid "Created/Updated %s/%s commands" -msgstr "Creados/actualizados %s/%s comandos" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:289 -#, php-format -msgid "Error creating/updating %s/%s actions" -msgstr "Error al crear/actualizar %s/%s acciones" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:293 -#, php-format -msgid "Created/Updated %s/%s actions" -msgstr "Creadas/actualizadas %s/%s acciones" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:298 -#, php-format -msgid "Error creating/updating %s/%s templates" -msgstr "Error al crear/actualizar %s/%s plantillas" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 -#, php-format -msgid "Created/Updated %s/%s templates" -msgstr "Creadas/actualizadas %s/%s plantillas" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 -msgid "Synchronizing Alerts" -msgstr "Sincronizar alertas" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:254 -#, php-format -msgid "Error creating %s components groups " -msgstr "Error al crear %s grupos de componentes " - -#: ../../enterprise/meta/advanced/synchronizing.component.php:258 -#, php-format -msgid "Created %s component groups" -msgstr "Creados %s componentes de grupos" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:263 -#, php-format -msgid "Error creating/updating %s/%s local components " -msgstr "Error al crear/actualizar %s/%s componentes locales " - -#: ../../enterprise/meta/advanced/synchronizing.component.php:267 -#, php-format -msgid "Created/Updated %s/%s local components" -msgstr "Creados/actualizados %s/%s componentes locales" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:272 -#, php-format -msgid "Error creating/updating %s/%s network components " -msgstr "Error al crear/actualizar %s/%s componentes de red " - -#: ../../enterprise/meta/advanced/synchronizing.component.php:276 -#, php-format -msgid "Created/Updated %s/%s network components" -msgstr "Creados/actualizados %s/%s componentes de red" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:293 -msgid "Synchronizing Components" -msgstr "Sincronizar componentes" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:77 -#: ../../enterprise/meta/advanced/synchronizing.group.php:78 -#: ../../enterprise/meta/advanced/synchronizing.group.php:97 -#: ../../enterprise/meta/advanced/synchronizing.group.php:98 -msgid "Open for more details" -msgstr "Abrir para obtener más detalles" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:86 -#, php-format -msgid "Error creating %s groups" -msgstr "Error al crear %s grupos" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:106 -#, php-format -msgid "Error updating %s groups" -msgstr "Error al actualizar %s grupos" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:117 -#: ../../enterprise/meta/advanced/synchronizing.group.php:118 -msgid "Open for more details in creation" -msgstr "Abrir para obtener más detalles sobre la creación" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:128 -#: ../../enterprise/meta/advanced/synchronizing.group.php:129 -msgid "Open for more details in update" -msgstr "Abrir para obtener más detalles sobre la actualización" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:137 -#, php-format -msgid "Error creating/updating %s/%s groups" -msgstr "Error al crear/actualizar grupos %s/%s" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:149 -#, php-format -msgid "Created %s / Updated %s groups (" -msgstr "%s grupos creados / %s grupos actualizados" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:158 -msgid "None update or create group" -msgstr "Ninguna actualización o creación de grupo" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:170 -msgid "Synchronizing Groups" -msgstr "Sincronizar grupos" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:49 -#, php-format -msgid "Error connecting to %s." -msgstr "Error de conexión con %s." - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 -#, php-format -msgid "Error creating/updating %s/%s module groups." -msgstr "Error al crear/actualizar grupos de módulos %s/%s." - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:57 -#, php-format -msgid "Created/Updated %s/%s module groups." -msgstr "Grupos de módulos %s/%s creados/actualizados" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 -msgid "Synchronizing Module Groups" -msgstr "Sincronizando grupos de módulos" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:49 -#, php-format -msgid "Error creating/updating %s/%s OS" -msgstr "Error al crear/actualizar %s/%s SO" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:53 -#, php-format -msgid "Created/Updated %s/%s OS" -msgstr "Creado/Actualizado %s/%s SO" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:64 -msgid "Synchronizing OS" -msgstr "Sincronizando SO" - -#: ../../enterprise/meta/advanced/synchronizing.php:36 -#: ../../enterprise/meta/general/main_header.php:304 -msgid "Synchronizing" -msgstr "Sincronizando" - -#: ../../enterprise/meta/advanced/synchronizing.php:60 -#: ../../enterprise/meta/advanced/synchronizing.php:92 -msgid "Users synchronization" -msgstr "Sincronización de usuarios" - -#: ../../enterprise/meta/advanced/synchronizing.php:64 -#: ../../enterprise/meta/advanced/synchronizing.php:96 -msgid "Groups synchronization" -msgstr "Sincronización de grupos" - -#: ../../enterprise/meta/advanced/synchronizing.php:68 -#: ../../enterprise/meta/advanced/synchronizing.php:100 -msgid "Alerts synchronization" -msgstr "Sincronización de alertas" - -#: ../../enterprise/meta/advanced/synchronizing.php:72 -#: ../../enterprise/meta/advanced/synchronizing.php:104 -msgid "Components synchronization" -msgstr "Sincronización de componentes" - -#: ../../enterprise/meta/advanced/synchronizing.php:76 -#: ../../enterprise/meta/advanced/synchronizing.php:108 -msgid "Tags synchronization" -msgstr "Sincronización de etiquetas" - -#: ../../enterprise/meta/advanced/synchronizing.php:80 -#: ../../enterprise/meta/advanced/synchronizing.php:112 -msgid "OS synchronization" -msgstr "Sincronización de SO" - -#: ../../enterprise/meta/advanced/synchronizing.php:84 -#: ../../enterprise/meta/advanced/synchronizing.php:116 -msgid "Module Groups synchronization" -msgstr "Sincronización de grupos de módulo" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:66 -#, php-format -msgid "Error creating/updating %s/%s tags" -msgstr "Error al crear/actualizar %s/%s etiquetas" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:70 -#, php-format -msgid "Created/Updated %s/%s tags" -msgstr "Creadas/actualizadas %s/%s etiquetas" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:81 -msgid "Synchronizing Tags" -msgstr "Sincronizar etiquetas" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:311 -#, php-format -msgid "Error updating user %s" -msgstr "Error al actualizar usuario %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:315 -#, php-format -msgid "Updated user %s" -msgstr "Usuario actualizado %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:327 -#, php-format -msgid "Error creating user %s" -msgstr "Error al crear usuario %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:331 -#, php-format -msgid "Created user %s" -msgstr "Usuario creado %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:533 -#, php-format -msgid "" -"There are groups that not exist in node. The followings elements " -"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d)" -msgstr "" -"Hay grupos que no existen en el nodo. Los siguientes grupos de " -"elementos/perfiles/perfiles de usuario se crearon/actualizaron correctamente " -"(%d/%d/%d)." - -#: ../../enterprise/meta/advanced/synchronizing.user.php:542 -#, 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)" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:554 -#, 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)." - -#: ../../enterprise/meta/advanced/synchronizing.user.php:576 -msgid "Synchronizing Users" -msgstr "Sincronizar usuarios" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:612 -msgid "Profile mode" -msgstr "Modo de perfil" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:612 -msgid "Profile synchronization mode." -msgstr "Modo de perfil de sincronización" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:613 -msgid "New profile" -msgstr "Nuevo perfil" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:613 -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" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:613 -msgid "Copy profile" -msgstr "Copiar perfil" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:613 -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." - -#: ../../enterprise/meta/advanced/synchronizing.user.php:615 -#: ../../enterprise/meta/advanced/synchronizing.user.php:638 -msgid "Create groups if not exist" -msgstr "Crear grupos si no existen" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:615 -#: ../../enterprise/meta/advanced/synchronizing.user.php:638 -msgid "Create groups assigned to user profile if not exist in node" -msgstr "Crear grupos asignados al perfil de usuario si no existen en el nodo" - -#: ../../enterprise/meta/agentsearch.php:100 -msgid "Search results for" -msgstr "Buscar resultados para" - -#: ../../enterprise/meta/agentsearch.php:271 -msgid "There are no agents included in this group" -msgstr "No hay ningún agente en este grupo" - -#: ../../enterprise/meta/agentsearch.php:285 -msgid "Policies found" -msgstr "Políticas encontradas" - -#: ../../enterprise/meta/agentsearch.php:416 -msgid "There are no policies included in this group" -msgstr "No hay políticas incluidas en este grupo" - -#: ../../enterprise/meta/event/custom_events.php:98 -msgid "The user is not in neither group with EW profile" -msgstr "" -"El usuario no se encuentra en ninguno de los grupos con el perfil EW." - -#: ../../enterprise/meta/general/footer.php:28 -msgid "Page generated at" -msgstr "Página generada en" - -#: ../../enterprise/meta/general/login_page.php:58 -#: ../../enterprise/meta/include/process_reset_pass.php:41 -#: ../../enterprise/meta/include/reset_pass.php:41 -msgid "Go to Pandora FMS Support" -msgstr "Ir a soporte de Pandora FMS" - -#: ../../enterprise/meta/general/login_page.php:60 -#: ../../enterprise/meta/general/login_page.php:71 -#: ../../enterprise/meta/include/process_reset_pass.php:43 -#: ../../enterprise/meta/include/process_reset_pass.php:54 -#: ../../enterprise/meta/include/reset_pass.php:43 -#: ../../enterprise/meta/include/reset_pass.php:54 -msgid "Go to " -msgstr "Ir a " - -#: ../../enterprise/meta/general/login_page.php:69 -#: ../../enterprise/meta/include/process_reset_pass.php:52 -#: ../../enterprise/meta/include/reset_pass.php:52 -msgid "Go to Pandora FMS Wiki" -msgstr "Ir a la Wiki de Pandora FMS" - -#: ../../enterprise/meta/general/logon_ok.php:84 -#: ../../enterprise/meta/general/main_header.php:211 -#: ../../enterprise/meta/screens/screens.php:37 -msgid "Screens" -msgstr "Pantallas" - -#: ../../enterprise/meta/general/main_header.php:109 -msgid "Groups view" -msgstr "Visor de grupos" - -#: ../../enterprise/meta/general/main_header.php:121 -msgid "Monitors view" -msgstr "Visor de monitores" - -#: ../../enterprise/meta/general/main_header.php:127 -msgid "Custom fields view" -msgstr "Vista de campos personalizados" - -#: ../../enterprise/meta/general/main_header.php:165 -msgid "Create new report" -msgstr "Crear un nuevo informe" - -#: ../../enterprise/meta/general/main_header.php:181 -msgid "Report templates" -msgstr "Plantillas de informes" - -#: ../../enterprise/meta/general/main_header.php:226 -msgid "Favourite Visual Console" -msgstr "Consola visual favorita" - -#: ../../enterprise/meta/general/main_header.php:234 -msgid "Template Visual Console" -msgstr "Consola visual de plantillas" - -#: ../../enterprise/meta/general/main_header.php:241 -msgid "Wizard Visual Console" -msgstr "Consola visual de asistente" - -#: ../../enterprise/meta/general/main_header.php:270 -msgid "Live view" -msgstr "Vista en vivo" - -#: ../../enterprise/meta/general/main_header.php:316 -msgid "Agent management" -msgstr "Gestión de agentes" - -#: ../../enterprise/meta/general/main_header.php:328 -msgid "Alert management" -msgstr "Gestión de alertas" - -#: ../../enterprise/meta/general/main_header.php:340 -msgid "Component management" -msgstr "Gestión de componentes" - -#: ../../enterprise/meta/general/main_header.php:346 -msgid "Policy management" -msgstr "Gestión de políticas" - -#: ../../enterprise/meta/general/main_header.php:352 -msgid "Category management" -msgstr "Gestión de categorías" - -#: ../../enterprise/meta/general/main_header.php:358 -msgid "Server management" -msgstr "Gestión de servidores" - -#: ../../enterprise/meta/general/main_header.php:370 -msgid "Metasetup" -msgstr "Metasetup" - -#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 -msgid "" -"Metaconsole needs previous activation from regular console, please contact " -"system administrator if you need assistance.
" -msgstr "" -"La Metaconsola necesita una activación previa desde una consola regular. " -"Contacta con el administrador del sistema si necesitas asistencia.
" - -#: ../../enterprise/meta/include/functions_agents_meta.php:474 -#: ../../enterprise/meta/include/functions_agents_meta.php:521 -#: ../../enterprise/meta/include/functions_agents_meta.php:556 -msgid "Agents movement" -msgstr "Movimiento de agentes" - -#: ../../enterprise/meta/include/functions_agents_meta.php:482 -#: ../../enterprise/meta/include/functions_agents_meta.php:536 -msgid "Provisioning management" -msgstr "Gestión de aprovisionamiento" - -#: ../../enterprise/meta/include/functions_agents_meta.php:498 -#: ../../enterprise/meta/include/functions_agents_meta.php:526 -#: ../../enterprise/meta/include/functions_agents_meta.php:531 -msgid "Group management" -msgstr "Gestionar grupos" - -#: ../../enterprise/meta/include/functions_agents_meta.php:506 -msgid "Tree group" -msgstr "Árbol de grupos" - -#: ../../enterprise/meta/include/functions_agents_meta.php:541 -msgid "Provisioning rules management" -msgstr "Gestión de reglas de aprovisionamiento" - -#: ../../enterprise/meta/include/functions_agents_meta.php:551 -msgid "Colecctions" -msgstr "Colecciones" - -#: ../../enterprise/meta/include/functions_autoprovision.php:378 -msgid "Round Robin" -msgstr "Round Robin" - -#: ../../enterprise/meta/include/functions_autoprovision.php:383 -msgid "Less loaded" -msgstr "Menos cargado" - -#: ../../enterprise/meta/include/functions_autoprovision.php:503 -msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add " -"the first." -msgstr "" -"Ninguna entrada personalizada definida. Haz clic en \"Crear entrada " -"personalizada\" para añadir la primera." - -#: ../../enterprise/meta/include/functions_autoprovision.php:508 -msgid "Create custom entry" -msgstr "Crear entrada personalizada" - -#: ../../enterprise/meta/include/functions_autoprovision.php:535 -msgid "Provisioning configuration" -msgstr "Configuración de aprovisionamiento" - -#: ../../enterprise/meta/include/functions_autoprovision.php:546 -msgid "Configuration:" -msgstr "Configuración:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:584 -msgid "" -"There is no rules configured for this custom entry. Click on Add button to " -"create the first." -msgstr "" -"No hay reglas configuradas en esta entrada personalizada. Haz clic en el " -"botón Añadir para crear la primera." - -#: ../../enterprise/meta/include/functions_autoprovision.php:695 -msgid "There was an error when editing the rule." -msgstr "Error al editar la regla" - -#: ../../enterprise/meta/include/functions_autoprovision.php:709 -msgid "Operation:" -msgstr "Operación:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:723 -msgid "Method:" -msgstr "Método:" - -#: ../../enterprise/meta/include/functions_components_meta.php:68 -#: ../../enterprise/meta/include/functions_components_meta.php:92 -msgid "Plugin management" -msgstr "Gestión de plugins" - -#: ../../enterprise/meta/include/functions_components_meta.php:98 -msgid "Create plugin" -msgstr "Crear plugin" - -#: ../../enterprise/meta/include/functions_components_meta.php:100 -msgid "Edit plugin" -msgstr "Editar plugin" - -#: ../../enterprise/meta/include/functions_groups_meta.php:114 -#, php-format -msgid "Error Duplicate name (%s) " -msgstr "Error al duplicar nombre (%s) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:132 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(Error ID Duplicado (%d) ) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:153 -msgid "Error Duplicate name" -msgstr "Error al duplicar nombre" - -#: ../../enterprise/meta/include/functions_meta.php:342 -msgid "No admin user" -msgstr "No hay usuario administrador" - -#: ../../enterprise/meta/include/functions_meta.php:469 -msgid "Netflow disable custom live view filters" -msgstr "Desactivar filtros personalizados en la vista en vivo de Netflow" - -#: ../../enterprise/meta/include/functions_meta.php:537 -msgid "Customizable section" -msgstr "Sección personalizable" - -#: ../../enterprise/meta/include/functions_meta.php:972 -msgid "SAML profile parameters" -msgstr "Parámetros de perfil SAML" - -#: ../../enterprise/meta/include/functions_meta.php:1138 -#, php-format -msgid "%s host" -msgstr "Host %s" - -#: ../../enterprise/meta/include/functions_meta.php:1187 -msgid "Babel Enterprise host" -msgstr "Servidor de Babel Enterprise" - -#: ../../enterprise/meta/include/functions_meta.php:1304 -msgid "Graph color (min)" -msgstr "Color del gráfico (mín.)" - -#: ../../enterprise/meta/include/functions_meta.php:1313 -msgid "Graph color (avg)" -msgstr "Color del gráfico (med.)" - -#: ../../enterprise/meta/include/functions_meta.php:1322 -msgid "Graph color (max)" -msgstr "Color del gráfico (máx.)" - -#: ../../enterprise/meta/include/functions_meta.php:1415 -msgid "full scale charts" -msgstr "Gráficas a escala completa" - -#: ../../enterprise/meta/include/functions_meta.php:1424 -msgid "type mode type charts" -msgstr "tipo de gráfica" - -#: ../../enterprise/meta/include/functions_meta.php:1442 -msgid "type mode zoom charts" -msgstr "zoom de gráfica" - -#: ../../enterprise/meta/include/functions_meta.php:1460 -msgid "Type of charts" -msgstr "Tipo de gráficos" - -#: ../../enterprise/meta/include/functions_meta.php:1496 -msgid "Custom logo (white background)" -msgstr "Logo personalizado (fondo blanco)" - -#: ../../enterprise/meta/include/functions_meta.php:1586 -msgid "Custom background login" -msgstr "Fondo personalizado del inicio de sesión" - -#: ../../enterprise/meta/include/functions_meta.php:1754 -msgid "Default block size migration agents" -msgstr "Tamaño del bloque de migración de agentes por defecto" - -#: ../../enterprise/meta/include/functions_meta.php:1765 -msgid "Default block size execution event" -msgstr "Evento de ejecución en bloque por defecto" - -#: ../../enterprise/meta/include/functions_ui_meta.php:52 -#, php-format -msgid "%s - the Flexible Monitoring System" -msgstr "%s - Flexible Monitoring System" - -#: ../../enterprise/meta/include/functions_users_meta.php:200 -msgid "User synchronization" -msgstr "Sincronización de usuarios" - -#: ../../enterprise/meta/include/functions_users_meta.php:216 -msgid "Group synchronization" -msgstr "Sincronización de grupos" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:362 -msgid "Add selected modules to agent" -msgstr "Añadir los módulos seleccionados al agente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:400 -msgid "Undo changes" -msgstr "Deshacer los cambios" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:589 -msgid "Latency" -msgstr "Latencia" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:590 -msgid "Response" -msgstr "Respuesta" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:645 -msgid "String to check" -msgstr "Cadena para comprobar" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:651 -msgid "Add check" -msgstr "Añadir comprobación" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:660 -msgid "Delete check" -msgstr "Eliminar comprobación" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:953 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1046 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 -msgid "Various" -msgstr "Varios" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1091 -msgid "Web configuration" -msgstr "Configuración web" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 -msgid "Str: " -msgstr "Cadena: " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 -msgid " Inverse interval " -msgstr " Intervalo inverso " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 -msgid "Alerts in module" -msgstr "Alertas en el módulo" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1540 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1756 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1830 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 -msgid "Preview" -msgstr "Vista previa" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 -msgid "Checks" -msgstr "Comprobaciones" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 -msgid "Deleted modules" -msgstr "Módulos eliminados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2656 -#, php-format -msgid "Error adding module %s" -msgstr "Error al añadir el módulo %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2076 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2171 -msgid "" -"There was an error creating the alerts, the operation has been cancelled" -msgstr "Error al crear las alertas; operación cancelada" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2240 -#, php-format -msgid "Could not create agent %s" -msgstr "No se pudieron crear agentes %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2244 -msgid "Agent successfully added" -msgstr "Agentes añadidos correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2260 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2346 -#, php-format -msgid "%s Modules created" -msgstr "%s módulos creados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2303 -#, php-format -msgid "Could not update agent %s" -msgstr "No se pudo actualizar el agente %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2352 -#, php-format -msgid "%s Modules deleted" -msgstr "%s módulos eliminados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2668 -msgid "" -"There was an error creating the alerts, the operation has been cancelled ." -msgstr "Error al crear las alertas; operación cancelada" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2698 -msgid "Module successfully added." -msgstr "Módulo añadido correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2770 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2861 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3056 -#, php-format -msgid "Error updating module %s" -msgstr "Error al actualizar el módulo %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2792 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2883 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3078 -msgid "" -"There was an error updating the alerts, the operation has been cancelled" -msgstr "Error al actualizar las alertas, operación cancelada" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2813 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2904 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3099 -msgid "Successfully updated module." -msgstr "Módulo actualizado correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3476 -msgid "Manage agent modules" -msgstr "Gestionar módulos de agentes" - -#: ../../enterprise/meta/include/process_reset_pass.php:139 -#: ../../enterprise/meta/include/reset_pass.php:115 -#, php-format -msgid "%s NEXT GENERATION" -msgstr "%s SIGUIENTE GENERACIÓN" - -#: ../../enterprise/meta/index.php:274 ../../index.php:332 -msgid "The code shouldn't be empty" -msgstr "El código no debería estar vacío." - -#: ../../enterprise/meta/index.php:287 ../../index.php:345 -msgid "Expired login" -msgstr "Inicio de sesión caducado" - -#: ../../enterprise/meta/index.php:294 ../../enterprise/meta/index.php:300 -#: ../../index.php:352 ../../index.php:358 -msgid "Login error" -msgstr "Error de conexión" - -#: ../../enterprise/meta/index.php:573 ../../index.php:758 -msgid "Password changed successfully" -msgstr "Contraseña modificada correctamente" - -#: ../../enterprise/meta/index.php:579 ../../index.php:764 -msgid "Failed to change password" -msgstr "No se pudo modificar la contraseña." - -#: ../../enterprise/meta/index.php:598 ../../index.php:785 -msgid "Too much time since password change request" -msgstr "" -"Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña." - -#: ../../enterprise/meta/index.php:607 ../../index.php:794 -msgid "This user has not requested a password change" -msgstr "Este usuario no ha solicitado un cambio de contraseña." - -#: ../../enterprise/meta/index.php:623 ../../index.php:809 -msgid "Id user cannot be empty" -msgstr "El ID de usuario no puede estar vacío." - -#: ../../enterprise/meta/index.php:631 ../../index.php:817 -msgid "Error in reset password request" -msgstr "Error en la solicitud para restablecer la contraseña" - -#: ../../enterprise/meta/index.php:639 ../../index.php:825 -msgid "This user doesn't have a valid email address" -msgstr "Este usuario no tiene una dirección válida de email." - -#: ../../enterprise/meta/index.php:656 ../../index.php:836 -msgid "This is an automatically sent message for user " -msgstr "Este es un mensaje enviado automáticamente para el usuario " - -#: ../../enterprise/meta/index.php:659 ../../index.php:839 -msgid "Please click the link below to reset your password" -msgstr "Haz clic en el enlace de abajo para restablecer la contraseña." - -#: ../../enterprise/meta/index.php:661 ../../index.php:841 -msgid "Reset your password" -msgstr "Restablecer la contraseña" - -#: ../../enterprise/meta/index.php:665 ../../index.php:845 -msgid "Please do not reply to this email." -msgstr "No respondas a este email." - -#: ../../enterprise/meta/index.php:671 ../../index.php:850 -msgid "Error at sending the email" -msgstr "Error al enviar el email" - -#: ../../enterprise/meta/index.php:817 ../../enterprise/meta/index.php:896 -#: ../../index.php:1163 -msgid "Sorry! I can't find the page!" -msgstr "No se puede encontrar la página." - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:48 -msgid "Custom fields View" -msgstr "Vista de campos personalizados" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:60 -msgid "Custom Fields View" -msgstr "Vista de campos personalizados" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:197 -msgid "Custom Fields Data" -msgstr "Datos de campos personalizados" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -msgid "Status agents" -msgstr "Agentes de estado" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:247 -msgid "Status module" -msgstr "Módulo de estado" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:657 -msgid "Total counters" -msgstr "Contadores totales" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:660 -msgid "Total Agents" -msgstr "Agentes totales" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:669 -msgid "Total Modules" -msgstr "Módulos totales" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:690 -msgid "I.P" -msgstr "IP" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:712 -msgid "There are no custom search defined." -msgstr "No hay búsquedas personalizadas definidas." - -#: ../../enterprise/meta/monitoring/group_view.php:38 -msgid "Group View" -msgstr "Vista de grupo" - -#: ../../enterprise/meta/monitoring/group_view.php:134 -msgid "Summary by status" -msgstr "Resumen por estados" - -#: ../../enterprise/meta/monitoring/group_view.php:142 -#: ../../enterprise/meta/monitoring/group_view.php:146 -msgid "% Agents not init" -msgstr "% agentes no iniciados" - -#: ../../enterprise/meta/monitoring/group_view.php:143 -msgid "% Agents Warning" -msgstr "% Agentes en advertencia" - -#: ../../enterprise/meta/monitoring/group_view.php:144 -msgid "% Agents OK" -msgstr "% Agentes OK" - -#: ../../enterprise/meta/monitoring/group_view.php:145 -msgid "% Agents Unknown" -msgstr "% monitores en estado desconocido" - -#: ../../enterprise/meta/monitoring/group_view.php:149 -msgid "% Monitors Critical" -msgstr "% monitores en estado crítico" - -#: ../../enterprise/meta/monitoring/group_view.php:150 -msgid "% Monitors Warning" -msgstr "% monitores en estado de advertencia" - -#: ../../enterprise/meta/monitoring/group_view.php:151 -msgid "% Monitors OK" -msgstr "% monitores en estado OK" - -#: ../../enterprise/meta/monitoring/group_view.php:152 -msgid "% Monitors Unknown" -msgstr "% módulos en estado desconocido" - -#: ../../enterprise/meta/monitoring/group_view.php:153 -msgid "% Monitors Not init" -msgstr "% módulos no iniciados" - -#: ../../enterprise/meta/monitoring/group_view.php:178 -#: ../../enterprise/meta/monitoring/group_view.php:179 -msgid "This data doesn't show in realtime" -msgstr "Estos datos no se muestran en tiempo real" - -#: ../../enterprise/meta/monitoring/group_view.php:187 -msgid "Group or Tag" -msgstr "Grupo o etiqueta" - -#: ../../enterprise/meta/monitoring/tactical.php:251 -msgid "Report of state" -msgstr "Informe de estado" - -#: ../../enterprise/meta/monitoring/tactical.php:279 -msgid "Report of events" -msgstr "Informe de eventos" - -#: ../../enterprise/meta/monitoring/tactical.php:284 -msgid "Info of state in events" -msgstr "Información de estado en eventos" - -#: ../../enterprise/meta/monitoring/tactical.php:302 -msgid "More events" -msgstr "Más eventos" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 -msgid "Edit agent" -msgstr "Editar agente" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 -msgid "Please, set a valid IP/Name address" -msgstr "Por favor, introduce una IP/Nombre de dirección válido." - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:309 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -msgid "Create module" -msgstr "Crear módulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:172 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -#, php-format -msgid "Cannot connect to %s instance." -msgstr "No se ha podido conectar con la instancia de %s." - -#: ../../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:252 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:257 -msgid "Click Create to continue" -msgstr "Haz clic en Crear para continuar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 -msgid "Select the agent to be edited or deleted" -msgstr "Selecciona el agente que quieras editar o eliminar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:314 -msgid "Manage modules" -msgstr "Gestionar módulos" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:360 -msgid "Select the agent where the module will be created" -msgstr "Selecciona el agente donde quieres crear el módulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 -msgid "Create Module" -msgstr "Crear módulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:430 -msgid "Select the module to be edited or deleted" -msgstr "Selecciona el módulo para editarlo o borrarlo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:540 -msgid "Select the module where the alert will be created" -msgstr "Selecciona el módulo donde se creará la alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 -msgid "Select the alert to be edited or deleted" -msgstr "Selecciona la alerta que quieres editar o eliminar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 -msgid "Advanced configuration" -msgstr "Configuración avanzada" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 -msgid "Invalid characters founded in module name" -msgstr "Se han encontrado caracteres no válidos en el nombre del módulo." - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 -msgid "Please, set a name" -msgstr "Por favor, introduce un nombre." - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 -msgid "Please, set an interval" -msgstr "Por favor, introduce un intervalo." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:92 -msgid "The alert you are trying to add is already in the list of alerts" -msgstr "" -"La alerta que estás intentando añadir ya se encuentra en la lista de alertas." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 -msgid "Please, select an alert" -msgstr "Por favor, selecciona una alerta." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 -msgid "Please, select an agent" -msgstr "Por favor, selecciona 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:63 -msgid "Create visualmap" -msgstr "Crear mapa visual" - -#: ../../enterprise/mobile/operation/dashboard.php:66 -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:98 -msgid "Dashboards list" -msgstr "Lista de dashboards" - -#: ../../enterprise/mobile/operation/dashboard.php:124 -msgid "No Dashboards" -msgstr "No hay dashboards" - -#: ../../enterprise/mobile/operation/dashboard.php:159 -msgid "Dashboard name" -msgstr "Nombre del dashboard" - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 -msgid "Unsucessful get module inventory data." -msgstr "No se han podido obtener datos del módulo de inventario." - -#: ../../enterprise/operation/agentes/agent_inventory.php:61 -msgid "This agent has not modules inventory" -msgstr "Este agente no tiene módulos de inventario." - -#: ../../enterprise/operation/agentes/agent_inventory.php:162 -#: ../../enterprise/operation/agentes/agent_inventory.php:163 -msgid "Diff view" -msgstr "Vista de diferencia" - -#: ../../enterprise/operation/agentes/collection_view.php:53 -msgid "No collection assigned to this agent" -msgstr "No se ha asignado ninguna colección a este agente." - -#: ../../enterprise/operation/agentes/manage_transmap.php:38 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:97 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:289 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 -msgid "Transactions List" -msgstr "Lista de transacciones" - -#: ../../enterprise/operation/agentes/manage_transmap.php:63 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:106 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:368 -msgid "Edit main data" -msgstr "Editar datos principales" - -#: ../../enterprise/operation/agentes/manage_transmap.php:72 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:377 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 -msgid "Edit Transaction" -msgstr "Editar transacción" - -#: ../../enterprise/operation/agentes/manage_transmap.php:82 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:125 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:387 -msgid "View Transaction" -msgstr "Ver transacción" - -#: ../../enterprise/operation/agentes/manage_transmap.php:113 -msgid "Return to windowed mode" -msgstr "Volver al modo ventana" - -#: ../../enterprise/operation/agentes/manage_transmap.php:119 -msgid "Transactional Map - " -msgstr "Mapa transaccional - " - -#: ../../enterprise/operation/agentes/manage_transmap.php:128 -msgid "Transaction not found" -msgstr "Transacción no encontrada" - -#: ../../enterprise/operation/agentes/manage_transmap.php:131 -msgid "Master lock file not found (No data to show)" -msgstr "Archivo de bloqueo maestro no encontrado (no hay datos que mostrar)" - -#: ../../enterprise/operation/agentes/manage_transmap.php:134 -msgid "Transaction is stopped" -msgstr "Transacción detenida" - -#: ../../enterprise/operation/agentes/manage_transmap.php:137 -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:46 -msgid "Please, reset the transaction" -msgstr "Por favor, reinicia la transacción." - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:85 -msgid "Successfully data updated" -msgstr "Datos actualizados correctamente" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:86 -msgid "Could not be data updated" -msgstr "Error al actualizar los datos" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:130 -msgid "Transactional Map - Create Phase - " -msgstr "Mapa Transaccional - Crear Fase - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:145 -msgid "Index" -msgstr "Índice" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:148 -msgid "Dependencies" -msgstr "Dependencias" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:149 -msgid "Enables" -msgstr "Activa" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:214 -msgid "Not valid dependencies field" -msgstr "Campo de dependencias no válido" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:220 -msgid "Not valid enables field" -msgstr "Campo de activación no válido" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:294 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:393 -msgid "Transactional Map - Create Transaction" -msgstr "Mapa Transaccional - Crear Transacción -" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:311 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:414 -msgid "Loop interval" -msgstr "Intervalo del bucle" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 -msgid "Go back to phases list" -msgstr "Volver a lista de fases" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 -msgid "Transactional Map - Phase - " -msgstr "Mapa transaccional - Fase - " - -#: ../../enterprise/operation/agentes/policy_view.php:38 -msgid "This agent has no policy assigned" -msgstr "Este agente no tiene ninguna política asignada." - -#: ../../enterprise/operation/agentes/policy_view.php:69 -msgid "Policy outdate" -msgstr "Política obsoleta" - -#: ../../enterprise/operation/agentes/policy_view.php:138 -#: ../../enterprise/operation/agentes/policy_view.php:145 -msgid "Toggle the collection table" -msgstr "Cambiar la tabla de la colección" - -#: ../../enterprise/operation/agentes/policy_view.php:141 -msgid "Descripttion" -msgstr "Descripción" - -#: ../../enterprise/operation/agentes/policy_view.php:146 -msgid "Show Collection" -msgstr "Mostrar colecciones" - -#: ../../enterprise/operation/agentes/policy_view.php:205 -#: ../../enterprise/operation/agentes/policy_view.php:214 -msgid "Toggle the alert table" -msgstr "Cambia a la tabla de alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:215 -msgid "Show Alert" -msgstr "Mostrar alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:322 -#: ../../enterprise/operation/agentes/policy_view.php:331 -msgid "Toggle the module table" -msgstr "Cambiar a la tabla de alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:323 -msgid "Relationship" -msgstr "Relación" - -#: ../../enterprise/operation/agentes/policy_view.php:332 -msgid "Show Modules" -msgstr "Mostrar módulos" - -#: ../../enterprise/operation/agentes/policy_view.php:351 -msgid "(Un-adopted)" -msgstr "(Desadoptados)" - -#: ../../enterprise/operation/agentes/policy_view.php:354 -msgid "(Adopted)" -msgstr "(Adoptados)" - -#: ../../enterprise/operation/agentes/policy_view.php:359 -msgid "(Un-adopted) (Unlinked)" -msgstr "(Desadoptados)(Desvinculados)" - -#: ../../enterprise/operation/agentes/policy_view.php:362 -msgid "(Adopted) (Unlinked)" -msgstr "(Adoptados)(Desvinculados)" - -#: ../../enterprise/operation/agentes/tag_view.php:31 -#: ../../enterprise/operation/menu.php:205 -msgid "Tag view" -msgstr "Visor de etiquetas" - -#: ../../enterprise/operation/agentes/transactional_map.php:49 -msgid "Transactions list" -msgstr "Lista de transacciones" - -#: ../../enterprise/operation/agentes/transactional_map.php:123 -msgid "Name can't be empty" -msgstr "El nombre no se puede quedar en blanco." - -#: ../../enterprise/operation/agentes/transactional_map.php:180 -msgid "Transaction name" -msgstr "Nombre de la transacción" - -#: ../../enterprise/operation/agentes/transactional_map.php:183 -msgid "Running status" -msgstr "Estado de ejecución" - -#: ../../enterprise/operation/agentes/transactional_map.php:185 -msgid "Time spent" -msgstr "Tiempo utilizado" - -#: ../../enterprise/operation/agentes/transactional_map.php:227 -msgid "Stopped" -msgstr "Detenido" - -#: ../../enterprise/operation/agentes/transactional_map.php:233 -msgid "Starting" -msgstr "Iniciando" - -#: ../../enterprise/operation/agentes/transactional_map.php:235 -msgid "Stopping" -msgstr "Deteniendo" - -#: ../../enterprise/operation/agentes/transactional_map.php:372 -msgid "Edit phases" -msgstr "Editar fases" - -#: ../../enterprise/operation/agentes/transactional_map.php:380 -msgid "Error in phases section" -msgstr "Error en la sección de fases" - -#: ../../enterprise/operation/agentes/transactional_map.php:402 -msgid "Create Transaction" -msgstr "Crear transacción" - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 -msgid "No agent selected" -msgstr "No hay ningún agente seleccionado." - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 -msgid "Route not found" -msgstr "Ruta no encontrada" - -#: ../../enterprise/operation/agentes/ux_console_view.php:64 -msgid "No ux transaction selected." -msgstr "Ninguna transacción UX seleccionada" - -#: ../../enterprise/operation/agentes/ux_console_view.php:145 -msgid "No ux transactions found." -msgstr "Ninguna transacción UX encontrada" - -#: ../../enterprise/operation/agentes/ux_console_view.php:154 -#: ../../enterprise/operation/agentes/wux_console_view.php:233 -msgid "Transaction" -msgstr "Transacción" - -#: ../../enterprise/operation/agentes/ux_console_view.php:163 -#: ../../enterprise/operation/agentes/wux_console_view.php:242 -msgid "Show transaction" -msgstr "Mostrar transacción" - -#: ../../enterprise/operation/agentes/ux_console_view.php:189 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 -msgid "Execution results for transaction " -msgstr "Resultados de ejecución para la transacción " - -#: ../../enterprise/operation/agentes/ux_console_view.php:280 -#: ../../enterprise/operation/agentes/wux_console_view.php:288 -msgid "Global results" -msgstr "Resultados globales" - -#: ../../enterprise/operation/agentes/ux_console_view.php:361 -#: ../../enterprise/operation/agentes/wux_console_view.php:526 -msgid "Transaction history" -msgstr "Histórico de transacciones" - -#: ../../enterprise/operation/agentes/ver_agente.php:234 -msgid "URL Route Analyzer" -msgstr "Analizador de ruta de URL" - -#: ../../enterprise/operation/agentes/ver_agente.php:250 -msgid "UX Console" -msgstr "Consola UX" - -#: ../../enterprise/operation/agentes/ver_agente.php:266 -msgid "WUX Console" -msgstr "Consola WUX" - -#: ../../enterprise/operation/agentes/wux_console_view.php:81 -msgid "No wux transaction selected." -msgstr "Ninguna transacción WUX seleccionada" - -#: ../../enterprise/operation/agentes/wux_console_view.php:155 -msgid "Phase modules not found" -msgstr "Fase de módulo no encontrada" - -#: ../../enterprise/operation/agentes/wux_console_view.php:215 -msgid "Selected transaction has no stats" -msgstr "La transacción seleccionada no tiene estadísticas." - -#: ../../enterprise/operation/agentes/wux_console_view.php:224 -msgid "No WUX transactions found." -msgstr "Ninguna transacción WUX encontrada" - -#: ../../enterprise/operation/agentes/wux_console_view.php:317 -msgid "Failed: " -msgstr "Fallo: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:346 -msgid "Success: " -msgstr "Éxito: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:356 -msgid "Total transaction time: " -msgstr "Tiempo total de la transacción: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:570 -msgid "Invalid transaction." -msgstr "Transacción no válida" - -#: ../../enterprise/operation/inventory/inventory.php:248 -msgid "Order by agent" -msgstr "Ordenar por agente" - -#: ../../enterprise/operation/inventory/inventory.php:289 -msgid "Export this list to CSV" -msgstr "Exportar esta lista a CSV" - -#: ../../enterprise/operation/log/log_viewer.php:315 -#: ../../enterprise/operation/menu.php:195 -msgid "Log viewer" -msgstr "Visor de logs" - -#: ../../enterprise/operation/log/log_viewer.php:338 -msgid "All words" -msgstr "Todas las palabras" - -#: ../../enterprise/operation/log/log_viewer.php:339 -msgid "Any word" -msgstr "Cualquier palabra" - -#: ../../enterprise/operation/log/log_viewer.php:342 -msgid "Search mode" -msgstr "Modo de búsqueda" - -#: ../../enterprise/operation/log/log_viewer.php:371 -msgid "Full context" -msgstr "Contexto completo" - -#: ../../enterprise/operation/log/log_viewer.php:564 -msgid "Show log entries" -msgstr "Mostrar entradas de log" - -#: ../../enterprise/operation/log/log_viewer.php:565 -msgid "Graph log results" -msgstr "Resultados de logs de gráficas" - -#: ../../enterprise/operation/log/log_viewer.php:567 -msgid "Display mode" -msgstr "Modo de visualización" - -#: ../../enterprise/operation/log/log_viewer.php:580 -msgid "Use capture model" -msgstr "Usar modelo de captura" - -#: ../../enterprise/operation/log/log_viewer.php:603 -msgid "Create new model" -msgstr "Crear nuevo modelo" - -#: ../../enterprise/operation/log/log_viewer.php:610 -msgid "Graph type" -msgstr "Tipo de gráfica" - -#: ../../enterprise/operation/log/log_viewer.php:782 -msgid "The start date cannot be greater than the end date" -msgstr "" -"La fecha de inicio no puede ser posterior a la fecha de finalización." - -#: ../../enterprise/operation/log/log_viewer.php:915 -msgid "Add new capture model" -msgstr "Añadir nuevo modelo de captura" - -#: ../../enterprise/operation/log/log_viewer.php:918 -msgid "Edit capture model" -msgstr "Editar modelo de captura" - -#: ../../enterprise/operation/log/log_viewer.php:1002 -msgid "Error create new model" -msgstr "Error al crear nuevo modelo" - -#: ../../enterprise/operation/log/log_viewer.php:1029 -msgid "Error delete model" -msgstr "Error al borrar modelo" - -#: ../../enterprise/operation/log/log_viewer.php:1075 -msgid "Error update model" -msgstr "Error al actualizar modelo" - -#: ../../enterprise/operation/menu.php:32 -msgid "Cluster View" -msgstr "Visor de clústers" - -#: ../../enterprise/operation/menu.php:157 -msgid "Transactional map" -msgstr "Mapa transaccional" - -#: ../../enterprise/operation/menu.php:174 -msgid "Custom SQL" -msgstr "SQL personalizado" - -#: ../../enterprise/operation/reporting/custom_reporting.php:65 -#: ../../enterprise/operation/reporting/custom_reporting.php:119 -msgid "Send by email" -msgstr "Enviar por correo electrónico" - -#: ../../enterprise/operation/reporting/custom_reporting.php:73 -msgid "ID Report" -msgstr "ID Informe" - -#: ../../enterprise/operation/reporting/custom_reporting.php:147 -msgid "Send by email " -msgstr "Enviar por correo electrónico " - -#: ../../enterprise/operation/services/services.list.php:41 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/services/services.treeview_services.php:40 -msgid "Service table view" -msgstr "Vista de tabla de servicios" - -#: ../../enterprise/operation/services/services.list.php:52 -#: ../../enterprise/operation/services/services.table_services.php:49 -#: ../../enterprise/operation/services/services.treeview_services.php:51 -msgid "Service tree view" -msgstr "Vista de árbol de servicios" - -#: ../../enterprise/operation/services/services.list.php:77 -msgid "Service deleted successfully" -msgstr "Servicio eliminado correctamente" - -#: ../../enterprise/operation/services/services.list.php:78 -msgid "Error deleting service" -msgstr "Error al eliminar el servicio" - -#: ../../enterprise/operation/services/services.list.php:86 -msgid "Service forced successfully" -msgstr "Servicio forzado correctamente" - -#: ../../enterprise/operation/services/services.list.php:87 -msgid "Error service forced" -msgstr "Error al forzar el servicio" - -#: ../../enterprise/operation/services/services.list.php:356 -#: ../../enterprise/operation/services/services.list.php:362 -#: ../../enterprise/operation/services/services.table_services.php:332 -#: ../../enterprise/operation/services/services.table_services.php:338 -#: ../../enterprise/operation/services/services.treeview_services.php:92 -msgid "No services defined." -msgstr "No hay servicios definidos" - -#: ../../enterprise/operation/services/services.list.php:504 -#: ../../enterprise/operation/services/services.service.php:249 -msgid "SLA graph" -msgstr "Gráfico SLA" - -#: ../../enterprise/operation/services/services.list.php:508 -msgid "Status graph" -msgstr "Gráfica de estados" - -#: ../../enterprise/operation/services/services.service.php:134 -msgid "No Services" -msgstr "Sin servicios" - -#: ../../enterprise/operation/services/services.service.php:260 -msgid "List of elements" -msgstr "Lista de elementos" - -#: ../../index.php:908 -msgid "User doesn\\'t exist." -msgstr "El usuario no existe." - -#: ../../index.php:927 -msgid "User only can use the API." -msgstr "El usuario solo puede usar la API." +#~ msgid "Welcome to Pandora FMS" +#~ msgstr "Bienvenido a Pandora FMS" #~ msgid "Message overview" #~ msgstr "Vista general de mensajes" @@ -47871,6 +47778,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Data value" #~ msgstr "valor de los datos" +#~ msgid "Layout" +#~ msgstr "Diseño" + #~ msgid "Remote modules" #~ msgstr "Módulos remotos" @@ -48052,6 +47962,12 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Network sweep" #~ msgstr "Barrido de red" +#~ msgid "Module template" +#~ msgstr "Plantilla de módulos" + +#~ msgid "SNMP Default community" +#~ msgstr "Comunidad SNMP por defecto" + #~ msgid "Pandora management" #~ msgstr "Gestionar Pandora FMS" @@ -48061,9 +47977,21 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Show branch children" #~ msgstr "Mostrar los grupos dependientes" +#~ msgid "Network component management" +#~ msgstr "Gestión de los componentes de red" + #~ msgid "Local Pandora FMS" #~ msgstr "Pandora FMS local" +#~ msgid "Descriptive name for the connection" +#~ msgstr "Descripción para la conexión" + +#~ msgid "Group that owns the connection" +#~ msgstr "Grupo asignado a la conexión" + +#~ msgid "Zoom level used when the map is opened" +#~ msgstr "Nivel de zoom por defecto cuando se abre el mapa" + #~ msgid "Language code for Pandora" #~ msgstr "Código de idioma para Pandora FMS" @@ -48129,6 +48057,12 @@ msgstr "El usuario solo puede usar la API." #~ 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 "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" + +#~ msgid "You can remotely edit this agent configuration" +#~ msgstr "Puede editar remotamente la configuración de este agente" + #~ msgid "No tags selected" #~ msgstr "Ninguna etiqueta seleccionada" @@ -48361,6 +48295,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Purge all audit data" #~ msgstr "Borrar todos los datos de auditoría" +#~ msgid "Default zoom level when opening the map" +#~ msgstr "Nivel de zoom por defecto al abrir el mapa" + #~ msgid "Update Layer" #~ msgstr "Actualizar capa" @@ -48428,9 +48365,6 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Months" #~ msgstr "Meses" -#~ msgid "Static graph" -#~ msgstr "Imagen estática" - #~ msgid "Database maintance problem" #~ msgstr "Problema en el mantenimiento de la base de datos" @@ -48659,6 +48593,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Workunit added" #~ msgstr "Hora de trabajo añadida" +#~ msgid "Copy dashboard" +#~ msgstr "Copiar dashboard" + #~ msgid "No Validated" #~ msgstr "No validado" @@ -48738,6 +48675,9 @@ msgstr "El usuario solo puede usar la API." #~ "Si el cron está instalado el intervalo del módulo es ignorado y el módulo " #~ "corre con la fecha indicada" +#~ msgid "Activate this to prevent the relation from being updated or deleted" +#~ msgstr "Activar esta opción para evitar que sea actualizado o borrado" + #, php-format #~ msgid "Purge task launched for agent %s :: Data older than %s" #~ msgstr "" @@ -48767,12 +48707,23 @@ msgstr "El usuario solo puede usar la API." #~ msgid "No special days configured" #~ msgstr "No hay días especiales configurados" +#~ msgid "Directory where the server logs are stored." +#~ msgstr "Directorio donde se guardan los logs del servidor" + #~ msgid "Paginate module view" #~ msgstr "Paginar vista de módulos" #~ msgid "Fixed menu" #~ msgstr "Menú fijo" +#~ 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" + +#~ msgid "Data will be compacted in intervals of the specified length." +#~ msgstr "Los datos se compactarán en intervalos de la longitud especificada." + #, php-format #~ msgid "The last version of package installed is: %d" #~ msgstr "La última versión de paquete instalado es: %d" @@ -48854,6 +48805,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Variable" #~ msgstr "Variable" +#~ msgid "Delete all" +#~ msgstr "Eliminar todo" + #~ msgid "Val." #~ msgstr "Val." @@ -48891,6 +48845,13 @@ msgstr "El usuario solo puede usar la API." #~ 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 "" +#~ "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 "Remote Babel Enterprise" #~ msgstr "Babel Enterprise remoto" @@ -48924,9 +48885,18 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Show a graph of an agent module" #~ msgstr "Mostrar una gráfica de un módulo de agente" +#~ msgid "5 hours" +#~ msgstr "5 horas" + #~ msgid "Show a top n of agents modules." #~ msgstr "Mostrar el top N de módulos" +#~ 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 "Successful added modules" #~ msgstr "Módulos añadidos con éxito" @@ -49051,9 +49021,15 @@ 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 "Succesful updated" #~ msgstr "Actualizado correctamente" @@ -49406,6 +49382,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "There are not warnings" #~ msgstr "No hay advertencias" +#~ msgid "New chat message" +#~ msgstr "Nuevo mensaje del chat" + #~ msgid "Press here to activate shortcut bar" #~ msgstr "Haga click aquí para activar la barra de acesso directo" @@ -49467,6 +49446,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Autorefresh time" #~ msgstr "Tiempo de autorrefresco" +#~ msgid "Error sendding message." +#~ msgstr "Error al enviar mensaje" + #~ msgid "Shortcut bar" #~ msgstr "Barra de acceso directo" @@ -49759,6 +49741,24 @@ msgstr "El usuario solo puede usar la API." #~ msgid "This is defined in minutes" #~ msgstr "Esto se define en minutos" +#~ msgid "Network maps reading" +#~ msgstr "Lectura de mapas de red" + +#~ msgid "Network maps writing" +#~ msgstr "Escritura de mapas de red" + +#~ msgid "Network maps management" +#~ msgstr "Gestión de mapas de red" + +#~ msgid "Visual console reading" +#~ msgstr "Lectura de consola visual" + +#~ msgid "Visual console writing" +#~ msgstr "Escritura de consola visual" + +#~ msgid "Visual console management" +#~ msgstr "Gestión de consola visual" + #~ msgid "Strict ACL" #~ msgstr "ACL Estricto" @@ -49890,6 +49890,10 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Module Agent address" #~ msgstr "Dirección del módulo de agente" +#, php-format +#~ msgid "Last %s" +#~ msgstr "Último %s" + #~ msgid "Networkmap list" #~ msgstr "Lista de mapas de red" @@ -50011,6 +50015,12 @@ 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 "Save the actual layout design" +#~ msgstr "Guardar el diseño actual" + +#~ msgid "Config widget" +#~ msgstr "Configurar el widget" + #~ msgid "Different parent" #~ msgstr "Diferente padre" @@ -50064,9 +50074,28 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Join the Pandora FMS community" #~ msgstr "Únete a la comunidad de Pandora FMS" +#~ msgid "This field allows url insertion using the BBCode's url tag" +#~ msgstr "" +#~ "Este campo permite la inserción de URL mediante la etiqueta URL de BBCode" + #~ msgid "The format is: [url='url to navigate']'text to show'[/url]" #~ msgstr "El formato es: [url='url para navegar']'texto para mostrar'[/url]" +#~ msgid "Without protocol and port" +#~ msgstr "Sin protocolo y puerto" + +#~ msgid "Hostname of the eHorus API" +#~ msgstr "Nombre del propietario de la API de eHorus" + +#~ msgid "" +#~ "Time in seconds to set the maximum time of the requests to the eHorus API" +#~ msgstr "" +#~ "Tiempo en segundos para establecer el tiempo máximo de respuesta para la API " +#~ "de eHorus" + +#~ msgid "0 to disable" +#~ msgstr "0 para deshabilitar" + #~ msgid "e.g., switch.ehorus.com" #~ msgstr "e.g., switch.ehorus.com" @@ -50095,9 +50124,24 @@ msgstr "El usuario solo puede usar la API." #~ msgstr "" #~ "Esta instancia no está registrada en el Administrador de actualizaciones" +#~ msgid "No slides selected" +#~ msgstr "No se han seleccionado diapositivas" + +#~ msgid "Missing id" +#~ msgstr "Identificador perdido" + +#~ msgid "Tab" +#~ msgstr "Pestaña" + #~ msgid "Show a service map" #~ msgstr "Mostrar mapa de servicios" +#~ msgid "There are unsaved changes" +#~ msgstr "Hay cambios sin guardar" + +#~ 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 "critical" #~ msgstr "crítico" @@ -50116,6 +50160,9 @@ msgstr "El usuario solo puede usar la API." #~ 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 "Open all nodes" #~ msgstr "Abrir todos los nodos" @@ -50253,6 +50300,9 @@ msgstr "El usuario solo puede usar la API." #~ "Los eventos no se muestran porque este nodo de Pandora FMS tiene la " #~ "replicación de eventos activada." +#~ msgid "Error: there are cells not empty." +#~ msgstr "Error: las celdas no pueden estar vacías" + #~ msgid "Pandora Server Disk IO Wait" #~ msgstr "Tiempo de espera de E/S en disco del servidor de Pandora FMS" @@ -50279,6 +50329,13 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Number fired of alerts" #~ msgstr "Número de alertas disparadas" +#~ msgid "" +#~ "You can set the command path in the menu Administration -> Extensions -" +#~ "> Config Network Tools" +#~ msgstr "" +#~ "Puedes establecer la ruta de comando en el menú Administración -> " +#~ "Extensiones -> Configuración de herramientas de red" + #~ msgid "If it is empty, Pandora searchs the ping system." #~ msgstr "Si está vacío, Pandora FMS buscará el sistema Ping" @@ -50540,6 +50597,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" #~ msgstr "ej.: [url=pandorafms.org]Comunidad de Pandora FMS[/url]" +#~ msgid "Agent icon for GIS Maps." +#~ msgstr "Icono de agente para mapas GIS" + #~ msgid "Insert by Pandora Console" #~ msgstr "Insertado por la consola de Pandora FMS" @@ -50576,6 +50636,16 @@ msgstr "El usuario solo puede usar la API." #~ "\t \t \t \t 3) encontraste un nuevo error. Por favor, indica una manera de " #~ "duplicar este error" +#~ msgid "Any value below this number is discarted." +#~ msgstr "Cualquier valor por debajo de este número queda descartado." + +#~ msgid "Any value over this number is discarted." +#~ msgstr "Cualquier valor por encima de este número es descartado." + +#~ msgid "The module still stores data but the alerts and events will be stop" +#~ msgstr "" +#~ "El módulo todavía almacena datos, pero las alertas y eventos se detendrán." + #~ 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 " @@ -50586,9 +50656,39 @@ msgstr "El usuario solo puede usar la API." #~ "correctamente instalado y funcionando. Es muy importante para el correcto " #~ "funcionamiento y rendimiento de Pandora FMS." +#~ msgid "Descriptive name for the map" +#~ msgstr "Nombre descriptivo para el mapa" + +#~ msgid "" +#~ "At least one map connection must be defined, it will be possible to change " +#~ "between the connections in the map" +#~ msgstr "" +#~ "Se tiene que definir por lo menos una conexión al mapa. Será posible " +#~ "intercambiar las conexiones del mapa." + +#~ msgid "Group that owns the map" +#~ msgstr "Grupo propietario del mapa" + +#~ msgid "" +#~ "Each layer can show agents from one group or the agents added to that layer " +#~ "or both." +#~ msgstr "" +#~ "Cada capa puede mostrar agentes de un grupo o los agentes añadidos a esa " +#~ "capa o ambas cosas." + +#~ msgid "It is possible to edit, delete and reorder the layers." +#~ msgstr "Es posible editar, borrar y reordenar las capas." + #~ msgid "Module groups defined in Pandora" #~ msgstr "Grupos de módulos definidos en Pandora FMS" +#~ msgid "" +#~ "In case you use an Export server you can link this module and export data to " +#~ "one these." +#~ msgstr "" +#~ "Si usas un Export server, puedes enlazar este módulo y exportar los datos " +#~ "con el export server." + #~ msgid "Output format" #~ msgstr "Formato de salida" @@ -50678,9 +50778,37 @@ msgstr "El usuario solo puede usar la API." #~ msgid "There are no recon scripts in the system" #~ msgstr "No existen scripts recon en el sistema" +#~ msgid "Position to center the map when the map is opened" +#~ msgstr "Posición para centrar el mapa cuando se abra" + +#~ msgid "This selects what to change by clicking on the map" +#~ msgstr "Seleccionar qué cambia cuando se pincha en el mapa" + #~ msgid "To get your Pandora FMS Enterprise License:" #~ msgstr "Para obtener una Licencia de Pandora FMS Enterprise" +#~ 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 ralentización en la consola y " +#~ "un problema de rendimiento en el sistema." + +#~ msgid "" +#~ "If realtime statistics are disabled, statistics interval resfresh will be " +#~ "set here." +#~ msgstr "" +#~ "Si se deshabilitan las estadísticas en tiempo real, el intervalo de refresco " +#~ "de las estadísticas será definido aquí." + +#~ msgid "" +#~ "This number is the maximum number of files in attachment directory. If this " +#~ "number is reached then a warning message will appear in the header " +#~ "notification space." +#~ msgstr "" +#~ "Nº máximo de archivos en el directorio de adjuntos. Si se alcanza el número " +#~ "se mostrará un mensaje en el área de notificaciones de la cabecera." + #~ msgid "" #~ "Enable this option if you want to fallback to local authentication when " #~ "remote (ldap etc...) authentication failed." @@ -50688,6 +50816,26 @@ msgstr "El usuario solo puede usar la API." #~ "Activa esta opción si quieres volver a la autentificación local cuando falla " #~ "la autentificación remota (LDAP, etc.)." +#~ msgid "" +#~ "If this option is enabled, the users can use double authentication with " +#~ "their accounts" +#~ msgstr "" +#~ "Si esta opción está activada, los usuarios pueden usar la doble " +#~ "autentificación con sus cuentas." + +#~ msgid "e.g., 18080" +#~ msgstr "ej. 18080" + +#~ msgid "Directory where agent remote configuration is stored." +#~ msgstr "Directorio en el que se almacena la configuración remota del agente" + +#~ msgid "" +#~ "Path where you put your cert and name of this cert. Remember your cert only " +#~ "in .pem extension." +#~ msgstr "" +#~ "Ruta donde se ubica el certificado y el nombre del mismo. Recuerda que el " +#~ "certificado debe ir únicamente con la extensión .pem" + #~ msgid "" #~ "If SSL is not properly configured you will lose access to Pandora FMS " #~ "Console. Do you want to continue?" @@ -50695,6 +50843,13 @@ msgstr "El usuario solo puede usar la API." #~ "Si no se ha configurado el SSL correctamente, podrías perder el acceso a la " #~ "consola de Pandora FMS. ¿Quieres continuar?" +#~ msgid "" +#~ "If set to yes no events or alerts will be generated, but agents will " +#~ "continue receiving data." +#~ msgstr "" +#~ "Si se configura como afirmativo ningún evento o alerta se generará, pero los " +#~ "agentes continuarán recibiendo datos." + #~ msgid "" #~ "Set this value when your PandoraFMS across inverse proxy or for example with " #~ "mod_proxy of Apache." @@ -50724,6 +50879,17 @@ msgstr "El usuario solo puede usar la API." #~ msgid "audit log directory" #~ msgstr "Directorio de logs de auditoría" +#, php-format +#~ msgid "User %s login at %s" +#~ msgstr "El usuario %s entró a las %s" + +#, php-format +#~ msgid "User %s logout at %s" +#~ msgstr "El usuario %s salió a las %s" + +#~ msgid "Error login." +#~ msgstr "Error de inicio de sesión" + #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance.

Please know that all " @@ -50744,6 +50910,21 @@ msgstr "El usuario solo puede usar la API." #~ "\"images / custom_logo\". Puedes cargar más archivos (solo JPEG) en la " #~ "herramienta de carga de la consola." +#~ msgid "The planned downtimes created in the past will affect the SLA reports" +#~ msgstr "" +#~ "Las paradas planificadas creadas con fecha anterior a la actual afectarán a " +#~ "los informes SLA." + +#~ 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 "" +#~ "Configuración del asistente. El \"modo total\" muestra el icono en la " +#~ "cabecera y en las ayudas contextuales con sonido. \"Bajo demanda\" es igual " +#~ "que el modo total pero sin sonido. En el \"modo experto\" no se mostrarán " +#~ "los iconos ni en la cabecera ni como ayuda contextual." + #~ msgid "" #~ "If Enterprise ACL System is enabled without rules you will lose access to " #~ "Pandora FMS Console (even admin). Do you want to continue?" @@ -50751,6 +50932,33 @@ msgstr "El usuario solo puede usar la API." #~ "Si se activa el sistema ACL Enterprise sin reglas, perderás el acceso a la " #~ "consola de Pandora FMS (incluso siendo administrador). ¿Deseas continuar?" +#~ msgid "Directory where netflow data will be stored." +#~ msgstr "Directorio donde los datos Netflow se almacenarán" + +#~ msgid "" +#~ "Maximum number of points that a netflow area chart will display. The higher " +#~ "the resolution the performance. Values between 50 and 100 are recommended." +#~ msgstr "" +#~ "Máximo número de puntos que una tabla de área Netflow puede mostrar. Cuanto " +#~ "más alta sea la resolución, mejor será la ejecución. Se recomiendan los " +#~ "valores entre 50 y 100." + +#~ msgid "Sets the maximum lifetime for netflow data in days." +#~ msgstr "Fijar el tiempo máximo para los datos Netflow en días" + +#~ msgid "" +#~ "This enabling this, you get a label with agent name in GIS maps. If you have " +#~ "lots of agents in the map, will be unreadable. Disabled by default." +#~ msgstr "" +#~ "Al habilitarlo, se obtiene una etiqueta con el nombre del agente en los " +#~ "mapas GIS. Si hay muchos agentes en el mapa, podría ser ilegible. " +#~ "Deshabilitado por defecto." + +#~ 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." + #~ msgid "" #~ "When the agent name have a lot of characters, in some places in Pandora " #~ "Console it is necesary truncate to N characters." @@ -50772,12 +50980,22 @@ msgstr "El usuario solo puede usar la API." #~ "Cuando el texto de la descripción tiene muchos caracteres, en algunos " #~ "lugares de la consola será necesario truncar su longitud a N caracteres." +#~ msgid "This enabling this, max, min and avg values will be shown with units." +#~ msgstr "" +#~ "Si activas esta opción, el máximo, el mínimo y la media aparecerán con " +#~ "unidades." + #~ msgid "Graph resolution (1-low, 5-high)" #~ msgstr "Resolución gráfica (1 = baja, 5 = alta)" #~ msgid "Interactive charts" #~ msgstr "Gráficos interactivos" +#~ msgid "" +#~ "This interval will affect to the lines between elements on the Visual Console" +#~ msgstr "" +#~ "Este intervalo afectará a las líneas entre elementos en la consola visual" + #~ msgid "Show QR Code icon in the header" #~ msgstr "Mostrar icono del código QR en la cabecera" @@ -51089,6 +51307,10 @@ msgstr "El usuario solo puede usar la API." #~ "FMS. Se recomienda hacer una copia de seguridad antes de continuar con el " #~ "proceso." +#~ msgid "Custom directory where the graphviz binaries are stored." +#~ msgstr "" +#~ "Directorio personalizado donde se almacenan los archivos binarios de graphviz" + #~ msgid "" #~ "Variable disable_functions containts functions system() or exec(), in PHP " #~ "configuration file (php.ini)" @@ -51135,6 +51357,10 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Recon server detected a new host" #~ msgstr "El servidor recon detectó un equipo nuevo" +#, php-format +#~ msgid "User %s was deleted in the DB at %s" +#~ msgstr "El usuario %s fue borrado de la base de datos el %s" + #~ msgid "Label color" #~ msgstr "Color de la etiqueta" @@ -51227,6 +51453,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Successfully set in process" #~ msgstr "Establecido en modo \"en proceso\" correctamente" +#~ msgid "WebChat" +#~ msgstr "Chat de la web" + #~ msgid "Recon view" #~ msgstr "Vista recon" @@ -51252,9 +51481,30 @@ msgstr "El usuario solo puede usar la API." #~ "No puedes cambiar su información de usuario desde Pandora FMS bajo el actual " #~ "esquema de autentificación." +#~ msgid "Webchat" +#~ msgstr "Chat de la web" + +#~ msgid "Users Online" +#~ msgstr "Usuarios en línea" + #~ msgid "Connection established...get last 24h messages..." #~ msgstr "Conexión establecida. Obtener mensajes de las últimas 24 horas." +#~ msgid "Error in connection." +#~ msgstr "Error de conexión" + +#~ 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, estás intentando añadir un widget en una celda vacía. Por favor, " +#~ "guarda el diseño antes de añadir cualquier control en esta celda." + +#~ msgid "" +#~ "If propagate acl is activated, this group will include its child groups" +#~ msgstr "" +#~ "Si la propagación de ACL está activada, este grupo incluirá los grupos hijos." + #~ msgid "Show a defined custom graph" #~ msgstr "Mostrar un gráfico personalizado definido" @@ -51264,6 +51514,18 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Show Agent/Module View" #~ msgstr "Mostrar la vista Agentes/Módulos" +#~ msgid "12 Hours" +#~ msgstr "12 horas" + +#~ msgid "24 Hours" +#~ msgstr "24 horas" + +#~ msgid "2 Hours" +#~ msgstr "2 horas" + +#~ msgid "48 Hours" +#~ msgstr "48 horas" + #~ msgid "Module with icon" #~ msgstr "Módulo con icono" @@ -51276,6 +51538,14 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Show a list of global monitor health" #~ msgstr "Mostrar una lista global del estado de los monitores" +#~ msgid "" +#~ "Please could you fill the widget data previous to filling the list items." +#~ msgstr "" +#~ "Por favor, rellena el widget de datos antes de la lista de elementos." + +#~ msgid "Selection module one by one" +#~ msgstr "Selección de módulos uno a uno" + #~ msgid "" #~ "The user doesn't have permission to read agents. Please contact with your " #~ "pandora administrator." @@ -51283,6 +51553,9 @@ msgstr "El usuario solo puede usar la API." #~ "El usuario no tiene permiso para leer los agentes. Por favor, contacta con " #~ "el administrador de Pandora FMS." +#~ msgid "This widget only working in desktop version." +#~ msgstr "El widget solo funciona en la versión de escritorio." + #~ msgid "Cron extension has never run or it's not configured well" #~ msgstr "" #~ "La extensión de tareas programadas (cron) no se ha ejecutado nunca o no está " @@ -51313,6 +51586,9 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Plug-in cannot be enabled" #~ msgstr "El plugin no puede ser habilitado." +#~ msgid "Apply all" +#~ msgstr "Aplicar todo" + #~ msgid "Delete remote conf server files in Pandora" #~ msgstr "Borrar los servidores de configuración remota en Pandora FMS" @@ -51323,12 +51599,72 @@ msgstr "El usuario solo puede usar la API." #~ "Si se borra este archivo de configuración, Pandora FMS enviará la " #~ "configuración local a la consola." +#~ msgid "You should set the weights manually" +#~ msgstr "Se tienen que 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 "" +#~ "Solo los elementos configurados como \"elementos críticos\" se utilizan para " +#~ "calcular el estado del servicio." + +#~ msgid "" +#~ "Before activating this option check your ACL Setup. You may lose access to " +#~ "the console." +#~ msgstr "" +#~ "Antes de activar esta opción comprueba la configuración ACL. Puede que " +#~ "pierdas el acceso a la consola." + +#~ 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 "Remote Integria" #~ msgstr "Integria IMS remoto" #~ msgid "Remote Pandora FMS" #~ msgstr "Pandora FMS remoto" +#~ msgid "" +#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" +#~ msgstr "" +#~ "Selecciona la ruta donde se haya instalado SimpleSAML (por defecto \"/opt/\")" + +#~ msgid "" +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." +#~ msgstr "" +#~ "El histórico de eventos SOLO será utilizado para los informes de eventos, y " +#~ "no para los gráficos o el visor de eventos." + +#~ msgid "Number of days before events is transfered to history database." +#~ msgstr "" +#~ "Número de días antes de transferir los eventos a la base de datos del " +#~ "histórico" + +#~ msgid "Time interval between data transfer." +#~ msgstr "Intervalo de tiempo entre cada transferencia de datos" + +#~ msgid "" +#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgstr "" +#~ "Tamaño del sistema de transferencia de datos (similar a un búfer de datos)" + +#~ msgid "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 del " +#~ "histórico" + +#~ msgid "Only one service map widget is supported at this moment" +#~ msgstr "Solo un widget de mapa de servicios es soportado actualmente." + #~ msgid "" #~ "Server name doesnt match. Check the node server name and configure the same " #~ "one on metasetup" @@ -51347,6 +51683,20 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Run import command using the following command" #~ msgstr "Ejecuta el comando de importación mediante el siguiente comando" +#~ msgid "" +#~ "Configure a purge period more frequent than a compact data period has no " +#~ "sense" +#~ msgstr "" +#~ "No tiene sentido configurar un período de purga más frecuente que el período " +#~ "de compactación de datos." + +#~ msgid "" +#~ "If the compaction or purge of the data is more frequent than the events " +#~ "deletion, anomalies in module graphs could appear" +#~ msgstr "" +#~ "Si la compactación o purga de datos es más frecuente que el borrado de " +#~ "eventos, pueden surgir anomalías en los gráficos de módulo." + #~ msgid "Legend Graph" #~ msgstr "Leyenda del gráfico" @@ -51377,6 +51727,22 @@ msgstr "El usuario solo puede usar la API." #~ "consola.

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

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

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

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

Esta " +#~ "licencia permite %d módulos y tiene %d módulos configurados." + #~ msgid "Please contact Artica at info@artica.es to renew the license." #~ msgstr "" #~ "Por favor, contacta con Ártica ST (info@artica.es) para renovar la licencia." @@ -51409,6 +51775,11 @@ msgstr "El usuario solo puede usar la API." #~ msgid "There was a problem loading tag" #~ msgstr "Error al cargar las etiquetas" +#~ 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 "" #~ "All the items are not available in CSV, only the previous versions ones." #~ msgstr "" @@ -51497,6 +51868,25 @@ msgstr "El usuario solo puede usar la API." #~ msgid "Hide not init agents" #~ msgstr "Ocultar agentes no iniciados" +#~ msgid "Show link to public dashboard" +#~ msgstr "Mostrar el enlace al dashboard público" + +#~ msgid "Dashboard name" +#~ msgstr "Nombre del dashboard" + +#~ msgid "No Dashboards" +#~ msgstr "No hay dashboards" + +#~ msgid "Dashboards list" +#~ msgstr "Lista de dashboards" + +#~ 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 "" #~ "\"Translate string\" extension is missed in the server. This extension is " #~ "mandatory to be configured on metaconsole." diff --git a/pandora_console/include/languages/index.pot b/pandora_console/include/languages/index.pot index b3a881d8b5..873c644c84 100644 --- a/pandora_console/include/languages/index.pot +++ b/pandora_console/include/languages/index.pot @@ -3,13 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#: ../../include/functions_api.php:9570 +#: ../../enterprise/meta/monitoring/group_view.php:177 +#: ../../enterprise/meta/monitoring/group_view.php:184 +#: ../../enterprise/include/functions_reporting_csv.php:2039 +#: ../../include/functions_reporting_html.php:3043 +#: ../../include/functions_reporting_html.php:3049 +#: ../../include/functions_reporting_html.php:3055 +#: ../../include/functions_reporting_html.php:3061 +#: ../../include/functions_reporting_html.php:3067 +#: ../../include/functions_reporting_html.php:3073 +#: ../../include/functions_reporting_html.php:3128 +#: ../../include/functions_reporting_html.php:3134 +#: ../../include/functions_reporting_html.php:3140 +#: ../../include/functions_reporting_html.php:3146 +#: ../../include/functions_api.php:13532 #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-14 16:29+0100\n" +"POT-Creation-Date: 2020-06-05 14:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,6511 +31,27295 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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 "" - -#: ../../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/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 "" - -#: ../../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/graph_builder.graph_editor.php:85 -#: ../../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 -#: ../../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 "" - -#: ../../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 "" - -#: ../../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/agentes/planned_downtime.editor.php:840 -#: ../../godmode/agentes/module_manager.php:568 -#: ../../godmode/agentes/agent_template.php:231 -msgid "Action" -msgstr "" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 -#: ../../operation/menu.php:89 -msgid "MIB uploader" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_statistics.php:116 -#: ../../operation/snmpconsole/snmp_view.php:467 -msgid "There are no SNMP traps in database" -msgstr "" - -#: ../../operation/snmpconsole/snmp_statistics.php:127 -msgid "Traps received by source" -msgstr "" - -#: ../../operation/snmpconsole/snmp_statistics.php:127 -#: ../../operation/snmpconsole/snmp_statistics.php:185 -#: ../../include/functions_reporting.php:959 -#, php-format -msgid "Top %d" -msgstr "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_statistics.php:141 -#: ../../operation/snmpconsole/snmp_statistics.php:199 -msgid "Number" -msgstr "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:589 -msgid "View agent details" -msgstr "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_statistics.php:185 -msgid "Traps received by Enterprise String" -msgstr "" - -#: ../../operation/snmpconsole/snmp_statistics.php:198 -msgid "Trap Enterprise String" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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_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 "" - -#: ../../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/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 -#: ../../mobile/operation/modules.php:120 -#: ../../mobile/operation/modules.php:212 -#: ../../mobile/operation/modules.php:213 -#: ../../mobile/operation/modules.php:503 -#: ../../mobile/operation/modules.php:507 -#: ../../mobile/operation/modules.php:511 -#: ../../mobile/operation/modules.php:515 -#: ../../mobile/operation/modules.php:523 -#: ../../mobile/operation/modules.php:528 -#: ../../mobile/operation/modules.php:533 -#: ../../mobile/operation/modules.php:623 -#: ../../mobile/operation/modules.php:754 -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_view.php:420 -#: ../../godmode/snmpconsole/snmp_alert.php:664 -#: ../../godmode/snmpconsole/snmp_alert.php:1003 -msgid "Trap type" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:421 -msgid "Search by trap type" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_view.php:435 -msgid "Group by Enterprise String/IP" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_view.php:524 -msgid "Trap subtype" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_view.php:644 -#: ../../operation/events/sound_events.php:83 -#: ../../operation/agentes/group_view.php:174 -#: ../../extensions/agents_alerts.php:324 -#: ../../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:7966 ../../include/functions.php:1035 -#: ../../godmode/alerts/alert_view.php:85 -#: ../../godmode/alerts/alert_list.list.php:642 -msgid "Alert fired" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:647 -#: ../../extensions/agents_alerts.php:332 -#: ../../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 -#: ../../godmode/alerts/alert_list.list.php:650 -msgid "Alert not fired" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_view.php:669 -#: ../../operation/events/events.build_table.php:700 -#: ../../include/functions_events.php:4046 -msgid "Show more" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:681 -msgid "Variable bindings:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:694 -msgid "See more details" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:707 -msgid "Enterprise String:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:713 -msgid "Description:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:745 -msgid "Trap type:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:773 -msgid "Count:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:777 -msgid "First trap:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:781 -msgid "Last trap:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:801 -msgid "No matching traps found" -msgstr "" - -#: ../../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 "" - -#: ../../operation/snmpconsole/snmp_browser.php:92 -msgid "SNMP Browser" -msgstr "" - -#: ../../operation/search_main.php:52 -msgid "Agents found" -msgstr "" - -#: ../../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 "" - -#: ../../operation/search_main.php:55 -msgid "Modules found" -msgstr "" - -#: ../../operation/search_main.php:66 -msgid "Users found" -msgstr "" - -#: ../../operation/search_main.php:69 -msgid "Graphs found" -msgstr "" - -#: ../../operation/search_main.php:72 -msgid "Reports found" -msgstr "" - -#: ../../operation/search_main.php:75 -msgid "Maps found" -msgstr "" - -#: ../../operation/search_main.php:78 -msgid "Helps found" -msgstr "" - -#: ../../operation/search_main.php:88 -#, php-format -msgid "Show %s of %s. View all matches" -msgstr "" - -#: ../../operation/menu.php:31 ../../operation/menu.php:106 -msgid "Monitoring" -msgstr "" - -#: ../../operation/menu.php:37 -msgid "Views" -msgstr "" - -#: ../../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 "" - -#: ../../operation/menu.php:48 ../../operation/users/user_edit.php:279 -#: ../../operation/agentes/group_view.php:70 -msgid "Group view" -msgstr "" - -#: ../../operation/menu.php:51 ../../operation/tree.php:87 -msgid "Tree view" -msgstr "" - -#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:145 -#: ../../godmode/agentes/agent_manager.php:166 -msgid "Agent detail" -msgstr "" - -#: ../../operation/menu.php:59 ../../operation/agentes/status_monitor.php:40 -msgid "Monitor detail" -msgstr "" - -#: ../../operation/menu.php:62 ../../operation/users/user_edit.php:281 -#: ../../operation/agentes/alerts_status.php:132 -msgid "Alert detail" -msgstr "" - -#: ../../operation/menu.php:70 -msgid "Netflow Live View" -msgstr "" - -#: ../../operation/menu.php:84 ../../include/functions_menu.php:517 -msgid "SNMP console" -msgstr "" - -#: ../../operation/menu.php:85 -msgid "SNMP browser" -msgstr "" - -#: ../../operation/menu.php:92 ../../include/functions_menu.php:513 -msgid "SNMP filters" -msgstr "" - -#: ../../operation/menu.php:93 ../../include/functions_menu.php:515 -msgid "SNMP trap generator" -msgstr "" - -#: ../../operation/menu.php:98 ../../operation/events/events_rss.php:185 -msgid "SNMP" -msgstr "" - -#: ../../operation/menu.php:117 -msgid "Network map" -msgstr "" - -#: ../../operation/menu.php:128 ../../operation/users/user_edit.php:277 -#: ../../extensions/resource_exportation.php:355 -msgid "Visual console" -msgstr "" - -#: ../../operation/menu.php:185 ../../operation/gis_maps/gis_map.php:31 -msgid "GIS Maps" -msgstr "" - -#: ../../operation/menu.php:190 -msgid "List of Gis maps" -msgstr "" - -#: ../../operation/menu.php:224 -msgid "Topology maps" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/menu.php:249 ../../godmode/reporting/graphs.php:75 -msgid "Custom graphs" -msgstr "" - -#: ../../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 "" - -#: ../../operation/menu.php:274 ../../godmode/users/configure_profile.php:275 -msgid "View events" -msgstr "" - -#: ../../operation/menu.php:288 -msgid "RSS" -msgstr "" - -#: ../../operation/menu.php:293 -msgid "Marquee" -msgstr "" - -#: ../../operation/menu.php:299 -msgid "CSV File" -msgstr "" - -#: ../../operation/menu.php:307 ../../operation/events/sound_events.php:51 -msgid "Sound Events" -msgstr "" - -#: ../../operation/menu.php:319 ../../operation/events/events.php:439 -msgid "Sound Alerts" -msgstr "" - -#: ../../operation/menu.php:329 -msgid "Workspace" -msgstr "" - -#: ../../operation/menu.php:336 ../../general/header.php:294 -#: ../../general/header.php:296 -msgid "Edit my user" -msgstr "" - -#: ../../operation/menu.php:342 -msgid "WebChat" -msgstr "" - -#: ../../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 "" - -#: ../../operation/menu.php:364 -msgid "List of Incidents" -msgstr "" - -#: ../../operation/menu.php:373 ../../operation/messages/message_edit.php:46 -#: ../../operation/messages/message_list.php:43 ../../godmode/menu.php:457 -msgid "Messages" -msgstr "" - -#: ../../operation/menu.php:379 -msgid "Messages List" -msgstr "" - -#: ../../operation/menu.php:380 -msgid "New message" -msgstr "" - -#: ../../operation/menu.php:399 ../../operation/agentes/exportdata.php:36 -msgid "Export data" -msgstr "" - -#: ../../operation/menu.php:405 -msgid "Scheduled downtime" -msgstr "" - -#: ../../operation/menu.php:410 -msgid "Recon view" -msgstr "" - -#: ../../operation/menu.php:485 -msgid "Tools" -msgstr "" - -#: ../../operation/search_reports.php:38 -#: ../../operation/reporting/custom_reporting.php:38 -#: ../../godmode/reporting/reporting_builder.php:532 -msgid "Report name" -msgstr "" - -#: ../../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 "" - -#: ../../operation/search_reports.php:40 -#: ../../operation/reporting/custom_reporting.php:40 -#: ../../godmode/reporting/reporting_builder.php:534 -msgid "HTML" -msgstr "" - -#: ../../operation/search_reports.php:41 -#: ../../operation/reporting/custom_reporting.php:41 -#: ../../godmode/reporting/reporting_builder.php:535 -msgid "XML" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:190 -#: ../../operation/events/events_list.php:714 -msgid "No filter loaded" -msgstr "" - -#: ../../operation/events/events_list.php:192 -#: ../../operation/events/events_list.php:715 -msgid "Filter loaded" -msgstr "" - -#: ../../operation/events/events_list.php:194 -#: ../../operation/events/events_list.php:257 -#: ../../operation/events/events_list.php:607 -msgid "Save filter" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:217 -msgid "New filter" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:224 -#: ../../godmode/events/event_edit_filter.php:215 -msgid "Filter name" -msgstr "" - -#: ../../operation/events/events_list.php:227 -msgid "Save in Group" -msgstr "" - -#: ../../operation/events/events_list.php:229 -#: ../../godmode/reporting/graph_builder.graph_editor.php:140 -msgid "Filter group" -msgstr "" - -#: ../../operation/events/events_list.php:244 -msgid "Overwrite filter" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:410 -#: ../../godmode/events/event_edit_filter.php:253 -msgid "Agent search" -msgstr "" - -#: ../../operation/events/events_list.php:430 -#: ../../godmode/events/event_edit_filter.php:285 -msgid "User ack." -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:442 -#: ../../godmode/events/event_edit_filter.php:388 -msgid "Module search" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:461 -#: ../../godmode/events/event_edit_filter.php:379 -msgid "Alert events" -msgstr "" - -#: ../../operation/events/events_list.php:464 -#: ../../godmode/events/event_edit_filter.php:383 -msgid "Filter alert events" -msgstr "" - -#: ../../operation/events/events_list.php:465 -#: ../../godmode/events/event_edit_filter.php:384 -msgid "Only alert events" -msgstr "" - -#: ../../operation/events/events_list.php:479 -#: ../../godmode/events/event_edit_filter.php:305 -msgid "Date from" -msgstr "" - -#: ../../operation/events/events_list.php:485 -#: ../../godmode/events/event_edit_filter.php:308 -msgid "Date to" -msgstr "" - -#: ../../operation/events/events_list.php:491 -#: ../../operation/agentes/datos_agente.php:189 -#: ../../include/ajax/module.php:162 -msgid "Timestamp from:" -msgstr "" - -#: ../../operation/events/events_list.php:494 -#: ../../operation/agentes/datos_agente.php:195 -#: ../../include/ajax/module.php:170 -msgid "Timestamp to:" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:575 -#: ../../godmode/events/event_filter.php:111 -#: ../../godmode/events/event_edit_filter.php:245 -msgid "Event status" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:581 -#: ../../godmode/events/event_edit_filter.php:299 -msgid "All events" -msgstr "" - -#: ../../operation/events/events_list.php:582 -#: ../../godmode/events/event_edit_filter.php:300 -msgid "Group events" -msgstr "" - -#: ../../operation/events/events_list.php:583 -msgid "Group agents" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:613 -msgid "Show events graph" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events_list.php:637 -msgid "Event control filter" -msgstr "" - -#: ../../operation/events/events_list.php:641 -msgid "Error creating filter." -msgstr "" - -#: ../../operation/events/events_list.php:642 -msgid "Error creating filter is duplicated." -msgstr "" - -#: ../../operation/events/events_list.php:643 -msgid "Filter created." -msgstr "" - -#: ../../operation/events/events_list.php:645 -msgid "Filter updated." -msgstr "" - -#: ../../operation/events/events_list.php:646 -msgid "Error updating filter." -msgstr "" - -#: ../../operation/events/events_list.php:1081 -msgid "Filter name cannot be left blank" -msgstr "" - -#: ../../operation/events/events_list.php:1150 -#: ../../operation/events/events_list.php:1236 -msgid "none" -msgstr "" - -#: ../../operation/events/events_list.php:1558 -msgid "Events generated -by agent-" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events_rss.php:32 -msgid "Your IP is not into the IP list with API access." -msgstr "" - -#: ../../operation/events/events_rss.php:46 -msgid "The URL of your feed has bad hash." -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/event_statistics.php:37 -#: ../../operation/agentes/tactical.php:203 -#: ../../include/functions_events.php:1025 -msgid "Event graph" -msgstr "" - -#: ../../operation/events/event_statistics.php:41 -msgid "Event graph by user" -msgstr "" - -#: ../../operation/events/event_statistics.php:57 -#: ../../operation/agentes/tactical.php:209 -#: ../../include/functions_events.php:1030 -msgid "Event graph by agent" -msgstr "" - -#: ../../operation/events/event_statistics.php:61 -#: ../../include/functions_reporting_html.php:1769 -msgid "Amount events validated" -msgstr "" - -#: ../../operation/events/events.build_table.php:37 -msgid "More detail" -msgstr "" - -#: ../../operation/events/events.build_table.php:85 -#: ../../operation/events/events.build_table.php:89 -msgid "The Agent: " -msgstr "" - -#: ../../operation/events/events.build_table.php:86 -#: ../../operation/events/events.build_table.php:90 -msgid " has " -msgstr "" - -#: ../../operation/events/events.build_table.php:87 -#: ../../operation/events/events.build_table.php:91 -msgid " events." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events.build_table.php:155 -#: ../../mobile/operation/events.php:108 -#: ../../include/functions_events.php:3530 -msgid "Event Name" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events.build_table.php:198 -#: ../../include/functions_events.php:3568 -msgid "Agent Module" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events.build_table.php:235 -#: ../../include/functions_events.php:3599 -msgid "Extra ID" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events.build_table.php:677 -#: ../../include/functions_events.php:4023 -msgid "Validate event" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/events/events.build_table.php:754 -msgid "Validate selected" -msgstr "" - -#: ../../operation/events/events.build_table.php:770 -#: ../../godmode/snmpconsole/snmp_alert.php:1331 -#: ../../godmode/agentes/agent_manager.php:220 -msgid "Delete selected" -msgstr "" - -#: ../../operation/events/sound_events.php:68 -msgid "Sound console" -msgstr "" - -#: ../../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/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 "" - -#: ../../operation/events/sound_events.php:84 -#: ../../include/functions_reporting.php:7125 -msgid "Monitor critical" -msgstr "" - -#: ../../operation/events/sound_events.php:85 -#: ../../include/functions_reporting.php:7140 -msgid "Monitor unknown" -msgstr "" - -#: ../../operation/events/sound_events.php:86 -#: ../../include/functions_reporting.php:7129 -msgid "Monitor warning" -msgstr "" - -#: ../../operation/events/events.php:71 -msgid "Event" -msgstr "" - -#: ../../operation/events/events.php:195 -msgid "" -"Event viewer is disabled due event replication. For more information, please " -"contact with the administrator" -msgstr "" - -#: ../../operation/events/events.php:334 -#: ../../operation/users/user_edit.php:278 ../../godmode/events/events.php:37 -msgid "Event list" -msgstr "" - -#: ../../operation/events/events.php:339 -msgid "History event list" -msgstr "" - -#: ../../operation/events/events.php:344 -msgid "RSS Events" -msgstr "" - -#: ../../operation/events/events.php:349 -msgid "Marquee display" -msgstr "" - -#: ../../operation/events/events.php:354 -msgid "Export to CSV file" -msgstr "" - -#: ../../operation/events/events.php:358 ../../operation/events/events.php:397 -msgid "Sound events" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events.php:401 -msgid "History" -msgstr "" - -#: ../../operation/events/events.php:446 -msgid "Main event view" -msgstr "" - -#: ../../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 "" - -#: ../../operation/events/events.php:464 -msgid "No events selected" -msgstr "" - -#: ../../operation/events/events.php:490 -msgid "Successfully validated" -msgstr "" - -#: ../../operation/events/events.php:491 ../../operation/events/events.php:768 -#: ../../operation/events/events.php:920 -msgid "Could not be validated" -msgstr "" - -#: ../../operation/events/events.php:495 -msgid "Successfully set in process" -msgstr "" - -#: ../../operation/events/events.php:496 -msgid "Could not be set in process" -msgstr "" - -#: ../../operation/events/events.php:800 -msgid "Successfully delete" -msgstr "" - -#: ../../operation/events/events.php:803 -msgid "Error deleting event" -msgstr "" - -#: ../../operation/users/webchat.php:71 -msgid "Webchat" -msgstr "" - -#: ../../operation/users/webchat.php:82 -msgid "Users Online" -msgstr "" - -#: ../../operation/users/webchat.php:86 -#: ../../operation/messages/message_edit.php:92 -#: ../../operation/messages/message_edit.php:210 -msgid "Message" -msgstr "" - -#: ../../operation/users/webchat.php:90 -#: ../../operation/messages/message_edit.php:217 -msgid "Send message" -msgstr "" - -#: ../../operation/users/webchat.php:157 -msgid "Connection established...get last 24h messages..." -msgstr "" - -#: ../../operation/users/webchat.php:168 -msgid "Error in connection." -msgstr "" - -#: ../../operation/users/webchat.php:249 -msgid "Error sendding message." -msgstr "" - -#: ../../operation/users/webchat.php:277 -msgid "Error login." -msgstr "" - -#: ../../operation/users/user_edit.php:62 -#: ../../godmode/users/configure_user.php:90 -msgid "User detail editor" -msgstr "" - -#: ../../operation/users/user_edit.php:130 -#: ../../operation/users/user_edit.php:137 -msgid "Password successfully updated" -msgstr "" - -#: ../../operation/users/user_edit.php:131 -#: ../../operation/users/user_edit.php:138 -#, php-format -msgid "Error updating passwords: %s" -msgstr "" - -#: ../../operation/users/user_edit.php:143 -msgid "" -"Passwords didn't match or other problem encountered while updating passwords" -msgstr "" - -#: ../../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 "" - -#: ../../operation/users/user_edit.php:155 -#: ../../operation/users/user_edit.php:165 -msgid "Error updating user info" -msgstr "" - -#: ../../operation/users/user_edit.php:175 -msgid "Edit my User" -msgstr "" - -#: ../../operation/users/user_edit.php:186 -#: ../../godmode/users/configure_user.php:445 -msgid "Full (display) name" -msgstr "" - -#: ../../operation/users/user_edit.php:208 -#: ../../godmode/users/configure_user.php:477 -#: ../../godmode/users/user_list.php:407 -msgid "E-mail" -msgstr "" - -#: ../../operation/users/user_edit.php:210 -#: ../../godmode/users/configure_user.php:481 -msgid "Phone number" -msgstr "" - -#: ../../operation/users/user_edit.php:219 -msgid "New Password" -msgstr "" - -#: ../../operation/users/user_edit.php:221 -#: ../../godmode/users/configure_user.php:457 -msgid "Password confirmation" -msgstr "" - -#: ../../operation/users/user_edit.php:229 -msgid "" -"You can not change your password from Pandora FMS under the current " -"authentication scheme" -msgstr "" - -#: ../../operation/users/user_edit.php:238 -msgid "If checkbox is clicked then block size global configuration is used" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/users/user_edit.php:255 -#: ../../godmode/users/configure_user.php:449 -msgid "Language" -msgstr "" - -#: ../../operation/users/user_edit.php:274 -msgid "Home screen" -msgstr "" - -#: ../../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 "" - -#: ../../operation/users/user_edit.php:284 -#: ../../mobile/include/functions_web.php:21 -msgid "Dashboard" -msgstr "" - -#: ../../operation/users/user_edit.php:322 -#: ../../godmode/users/configure_user.php:509 -#: ../../godmode/groups/configure_group.php:196 -msgid "Skin" -msgstr "" - -#: ../../operation/users/user_edit.php:334 -#: ../../include/functions_config.php:359 -#: ../../godmode/setup/setup_auth.php:128 -msgid "Double authentication" -msgstr "" - -#: ../../operation/users/user_edit.php:339 -msgid "Show information" -msgstr "" - -#: ../../operation/users/user_edit.php:345 -msgid "Event filter" -msgstr "" - -#: ../../operation/users/user_edit.php:350 -msgid "Newsletter Subscribed" -msgstr "" - -#: ../../operation/users/user_edit.php:352 -msgid "Already subscribed to Pandora FMS newsletter" -msgstr "" - -#: ../../operation/users/user_edit.php:355 -#: ../../general/login_identification_wizard.php:167 -msgid "Subscribe to our newsletter" -msgstr "" - -#: ../../operation/users/user_edit.php:358 -msgid "Newsletter Reminder" -msgstr "" - -#: ../../operation/users/user_edit.php:414 -msgid "Autorefresh" -msgstr "" - -#: ../../operation/users/user_edit.php:414 -msgid "This will activate autorefresh in selected pages" -msgstr "" - -#: ../../operation/users/user_edit.php:421 -msgid "Full list of pages" -msgstr "" - -#: ../../operation/users/user_edit.php:423 -msgid "List of pages with autorefresh" -msgstr "" - -#: ../../operation/users/user_edit.php:429 -msgid "Push selected pages into autorefresh list" -msgstr "" - -#: ../../operation/users/user_edit.php:433 -msgid "Pop selected pages out of autorefresh list" -msgstr "" - -#: ../../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 "" - -#: ../../operation/users/user_edit.php:469 -msgid "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/users/user_edit.php:541 -msgid "This user doesn't have any assigned profile/group." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/users/user_edit.php:710 -msgid "Double autentication information" -msgstr "" - -#: ../../operation/users/user_edit.php:773 -#: ../../operation/users/user_edit.php:849 -msgid "Double autentication activation" -msgstr "" - -#: ../../operation/users/user_edit.php:799 -msgid "The double authentication will be deactivated" -msgstr "" - -#: ../../operation/users/user_edit.php:800 -msgid "Deactivate" -msgstr "" - -#: ../../operation/users/user_edit.php:832 -msgid "The double autentication was deactivated successfully" -msgstr "" - -#: ../../operation/users/user_edit.php:835 -#: ../../operation/users/user_edit.php:839 -msgid "There was an error deactivating the double autentication" -msgstr "" - -#: ../../operation/reporting/custom_reporting.php:32 -#: ../../operation/reporting/graph_viewer.php:344 -msgid "There are no defined reportings" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/reporting/graph_viewer.php:143 -#: ../../godmode/reporting/graph_builder.php:209 -msgid "Graph editor" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:149 -#: ../../godmode/reporting/graph_builder.php:212 -msgid "View graph" -msgstr "" - -#: ../../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 +#: ../../views/dashboard/header.php:40 +#: ../../enterprise/meta/screens/screens.visualmap.php:176 +#: ../../enterprise/operation/agentes/manage_transmap.php:108 +#: ../../extensions/disabled/matrix_events.php:28 +#: ../../extensions/agents_alerts.php:125 +#: ../../extensions/agents_modules.php:374 +#: ../../extensions/agents_modules.php:381 +#: ../../extensions/agents_modules.php:384 +#: ../../operation/visual_console/pure_ajax.php:169 +#: ../../operation/visual_console/view.php:184 +#: ../../operation/visual_console/legacy_view.php:172 +#: ../../operation/gis_maps/render_view.php:123 +#: ../../operation/reporting/reporting_viewer.php:114 +#: ../../operation/reporting/graph_viewer.php:173 msgid "Full screen mode" msgstr "" -#: ../../operation/reporting/graph_viewer.php:184 -msgid "No data." -msgstr "" - -#: ../../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 "" - -#: ../../operation/reporting/graph_viewer.php:216 -#: ../../operation/reporting/graph_viewer.php:239 -msgid "Graph defined" -msgstr "" - -#: ../../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 "" - -#: ../../operation/reporting/graph_viewer.php:218 -#: ../../godmode/reporting/graph_builder.main.php:158 -msgid "Stacked area" -msgstr "" - -#: ../../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 "" - -#: ../../operation/reporting/graph_viewer.php:220 -#: ../../godmode/reporting/graph_builder.main.php:160 -msgid "Stacked line" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:221 -#: ../../godmode/reporting/graph_builder.main.php:161 -msgid "Bullet chart" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:222 -#: ../../godmode/reporting/graph_builder.main.php:162 -msgid "Gauge" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:223 -msgid "Horizontal Bars" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:224 -msgid "Vertical Bars" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:225 -#: ../../godmode/reporting/graph_builder.main.php:165 -msgid "Pie" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:230 -#: ../../godmode/reporting/graph_builder.main.php:169 -msgid "Equalize maximum thresholds" -msgstr "" - -#: ../../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 "" - -#: ../../operation/reporting/graph_viewer.php:240 -msgid "Zoom x1" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:241 -msgid "Zoom x2" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:242 -msgid "Zoom x3" -msgstr "" - -#: ../../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 "" - -#: ../../operation/reporting/graph_viewer.php:310 -#: ../../operation/reporting/reporting_viewer.php:314 -msgid "Invalid date selected" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:317 -msgid "Custom graph viewer" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:328 -#: ../../operation/search_graphs.php:33 ../../godmode/reporting/graphs.php:152 -msgid "Graph name" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:77 -#: ../../godmode/netflow/nf_item_list.php:39 -msgid "Report list" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:86 -#: ../../godmode/reporting/reporting_builder.php:1960 -msgid "List items" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:90 -#: ../../godmode/reporting/reporting_builder.php:1963 -msgid "Item editor" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:98 -#: ../../godmode/reporting/reporting_builder.php:1972 -msgid "View report" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:147 -msgid "View Report" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:186 -msgid "Set initial date" -msgstr "" - -#: ../../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 "" - -#: ../../operation/reporting/reporting_viewer.php:197 -#: ../../include/functions_reporting_html.php:119 -msgid "Items period before" -msgstr "" - -#: ../../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 "" - -#: ../../operation/reporting/reporting_viewer.php:212 -msgid "Invalid date selected. Initial date must be before end date." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/tree.php:67 ../../extensions/module_groups.php:325 -#: ../../godmode/menu.php:49 -msgid "Module groups" -msgstr "" - -#: ../../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 -#: ../../include/functions_reports.php:569 -#: ../../include/functions_reports.php:571 -#: ../../include/functions_reports.php:573 -#: ../../include/functions_reports.php:575 -#: ../../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 "" - -#: ../../operation/tree.php:80 ../../include/functions_maps.php:37 -#: ../../include/functions_networkmap.php:1635 -msgid "Policies" -msgstr "" - -#: ../../operation/tree.php:88 -#, php-format -msgid "Sort the agents by %s" -msgstr "" - -#: ../../operation/tree.php:91 -msgid "tags" -msgstr "" - -#: ../../operation/tree.php:97 -msgid "groups" -msgstr "" - -#: ../../operation/tree.php:100 -msgid "module groups" -msgstr "" - -#: ../../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 "" - -#: ../../operation/tree.php:107 -msgid "policies" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/tree.php:138 -msgid "Agent status" -msgstr "" - -#: ../../operation/tree.php:140 -msgid "Search agent" -msgstr "" - -#: ../../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 "" - -#: ../../operation/tree.php:163 -#: ../../include/functions_reporting_html.php:2751 -msgid "Module status" -msgstr "" - -#: ../../operation/tree.php:165 -msgid "Search module" -msgstr "" - -#: ../../operation/tree.php:189 -msgid "Tree search" -msgstr "" - -#: ../../operation/tree.php:264 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -msgid "No data found" -msgstr "" - -#: ../../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 "" - -#: ../../operation/tree.php:272 -msgid "Total modules" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/tree.php:281 -msgid "Critical agents" -msgstr "" - -#: ../../operation/tree.php:282 ../../mobile/operation/groups.php:157 -msgid "Critical modules" -msgstr "" - -#: ../../operation/tree.php:286 -msgid "Warning agents" -msgstr "" - -#: ../../operation/tree.php:287 ../../mobile/operation/groups.php:153 -msgid "Warning modules" -msgstr "" - -#: ../../operation/tree.php:291 -msgid "Unknown agents" -msgstr "" - -#: ../../operation/tree.php:292 ../../mobile/operation/groups.php:141 -msgid "Unknown modules" -msgstr "" - -#: ../../operation/tree.php:296 -msgid "Not init agents" -msgstr "" - -#: ../../operation/tree.php:297 ../../mobile/operation/groups.php:145 -msgid "Not init modules" -msgstr "" - -#: ../../operation/tree.php:301 -msgid "Normal agents" -msgstr "" - -#: ../../operation/tree.php:302 ../../mobile/operation/groups.php:149 -msgid "Normal modules" -msgstr "" - -#: ../../operation/tree.php:357 -#: ../../operation/agentes/status_monitor.php:1530 -#: ../../operation/agentes/estado_monitores.php:367 -msgid "Module: " -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:122 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:127 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:149 -msgid "Error creating filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:152 -msgid "Filter created successfully" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:167 -msgid "Filter updated successfully" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:168 -msgid "Error updating filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:193 -msgid "Draw live filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:224 -msgid "Connection" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:248 -msgid "The interval will be divided in chunks the length of the resolution." -msgstr "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:274 -#: ../../godmode/setup/setup_netflow.php:70 -msgid "IP address resolution can take a lot of time" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:283 -msgid "IP address resolution" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:284 -#: ../../godmode/setup/setup_netflow.php:69 -msgid "Resolve the IP addresses to get their hostnames." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:335 -msgid "Select a filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:349 -#: ../../godmode/netflow/nf_edit_form.php:210 -msgid "Dst Ip" -msgstr "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:358 -#: ../../godmode/netflow/nf_edit_form.php:213 -msgid "Src Ip" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:397 -#: ../../godmode/netflow/nf_edit_form.php:225 -msgid "Aggregate by" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:399 -#: ../../include/functions_netflow.php:1660 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Protocol" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:399 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Src Ip Address" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:399 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Dst Ip Address" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:402 -msgid "Router ip" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:405 -#: ../../godmode/netflow/nf_edit_form.php:230 -msgid "Output format" -msgstr "" - -#: ../../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 "" - -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes per second" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:406 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Kilobytes" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:406 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Megabytes" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:406 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Kilobytes per second" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:406 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Megabytes per second" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:417 -msgid "Draw" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:421 -msgid "Save as new filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:422 -msgid "Update current filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:436 -msgid "No filter selected" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/visual_console/pure_ajax.php:126 -#: ../../operation/visual_console/render_view.php:129 -#: ../../godmode/reporting/visual_console_builder.php:684 -msgid "Builder" -msgstr "" - -#: ../../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 "" - -#: ../../operation/visual_console/render_view.php:232 -#: ../../operation/visual_console/public_console.php:153 -msgid "Until refresh" -msgstr "" - -#: ../../operation/visual_console/public_console.php:130 -#: ../../general/header.php:147 -msgid "QR code of the page" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/search_users.php:50 -msgid "Profile" -msgstr "" - -#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:275 -#: ../../godmode/users/user_list.php:413 -msgid "Admin" -msgstr "" - -#: ../../operation/search_users.php:64 -#: ../../godmode/users/configure_user.php:468 -#: ../../godmode/users/user_list.php:414 -msgid "Administrator" -msgstr "" - -#: ../../operation/search_users.php:69 -#: ../../godmode/users/configure_user.php:473 -msgid "Standard User" -msgstr "" - -#: ../../operation/search_users.php:82 ../../godmode/users/user_list.php:457 -msgid "The user doesn't have any assigned profile/group" -msgstr "" - -#: ../../operation/gis_maps/gis_map.php:29 -#: ../../godmode/gis_maps/configure_gis_map.php:214 -msgid "GIS Maps list" -msgstr "" - -#: ../../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 "" - -#: ../../operation/gis_maps/gis_map.php:175 -msgid "No maps found" -msgstr "" - -#: ../../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 "" - -#: ../../operation/gis_maps/gis_map.php:194 -msgid "Caution: Do you want delete the map?" -msgstr "" - -#: ../../operation/gis_maps/gis_map.php:201 -msgid "Do you want to set default the map?" -msgstr "" - -#: ../../operation/gis_maps/gis_map.php:209 -msgid "There was error on setup the default map." -msgstr "" - -#: ../../operation/gis_maps/ajax.php:217 ../../operation/gis_maps/ajax.php:254 -msgid "Position (Lat, Long, Alt)" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:218 -msgid "Start contact" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:220 -msgid "Num reports" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:222 -#: ../../operation/agentes/gis_view.php:186 -msgid "Manual placement" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:258 -msgid "Default position of map." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/gis_maps/ajax.php:315 -#: ../../operation/agentes/estado_generalagente.php:159 -#: ../../include/functions_treeview.php:642 -msgid "Agent Version" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/gis_maps/render_view.php:135 -#: ../../include/functions.php:2583 -msgid "5 seconds" -msgstr "" - -#: ../../operation/gis_maps/render_view.php:136 -#: ../../include/functions.php:2584 -msgid "10 seconds" -msgstr "" - -#: ../../operation/gis_maps/render_view.php:137 -#: ../../include/functions.php:2586 -msgid "30 seconds" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/gis_maps/render_view.php:141 -#: ../../extensions/agents_modules.php:107 -#: ../../extensions/agents_alerts.php:85 -msgid "10 minutes" -msgstr "" - -#: ../../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 "" - -#: ../../operation/gis_maps/render_view.php:143 -#: ../../include/functions_netflow.php:1053 -#: ../../include/functions_netflow.php:1086 -msgid "2 hours" -msgstr "" - -#: ../../operation/gis_maps/render_view.php:145 -msgid "Refresh: " -msgstr "" - -#: ../../operation/gis_maps/render_view.php:151 -#: ../../include/functions_config.php:531 -#: ../../include/functions_config.php:1551 -#: ../../godmode/massive/massive_edit_agents.php:405 +#: ../../views/dashboard/header.php:51 ../../extensions/agents_alerts.php:127 +#: ../../extensions/agents_modules.php:483 +#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/legacy_view.php:217 +#: ../../operation/gis_maps/render_view.php:125 +#: ../../operation/reporting/reporting_viewer.php:116 +#: ../../operation/reporting/graph_viewer.php:175 +#: ../../operation/events/events.php:669 +msgid "Back to normal mode" +msgstr "" + +#: ../../views/dashboard/header.php:59 ../../views/dashboard/list.php:209 +msgid "Update Dashboard" +msgstr "" + +#: ../../views/dashboard/header.php:60 ../../views/dashboard/header.php:88 +#: ../../views/dashboard/list.php:210 ../../enterprise/load_enterprise.php:428 +#: ../../enterprise/load_enterprise.php:911 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:415 +#: ../../enterprise/include/class/Omnishell.class.php:1446 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/functions_update_manager.php:245 +#: ../../enterprise/operation/agentes/transactional_map.php:312 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:47 +#: ../../enterprise/operation/services/services.service.php:212 +#: ../../enterprise/operation/services/services.service_map.php:172 +#: ../../enterprise/operation/services/services.list.php:196 +#: ../../enterprise/operation/services/services.list.php:486 +#: ../../enterprise/operation/services/services.table_services.php:175 +#: ../../godmode/update_manager/update_manager.offline.php:104 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../include/functions_config.php:1168 +#: ../../include/functions_config.php:2839 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../include/lib/Dashboard/Widgets/service_map.php:334 +#: ../../include/functions_update_manager.php:1399 +#: ../../operation/gis_maps/render_view.php:153 msgid "Ok" msgstr "" -#: ../../operation/gis_maps/render_view.php:154 -msgid "Show agents by state: " +#: ../../views/dashboard/header.php:61 ../../views/dashboard/header.php:89 +#: ../../views/dashboard/list.php:211 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1099 +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:469 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:355 +#: ../../enterprise/godmode/services/services.service.php:643 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:268 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:344 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:241 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1527 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1629 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1681 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1713 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1748 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/AgentRepository.class.php:882 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../enterprise/include/functions_update_manager.php:244 +#: ../../godmode/update_manager/update_manager.offline.php:103 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/events/custom_events.php:202 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../include/class/ConfigPEN.class.php:663 +#: ../../include/class/ConfigPEN.class.php:687 +#: ../../include/class/TreeGroupEdition.class.php:93 +#: ../../include/class/NetworkMap.class.php:2822 +#: ../../include/class/CredentialStore.class.php:1115 +#: ../../include/class/CredentialStore.class.php:1167 +#: ../../include/class/ModuleTemplates.class.php:1277 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:643 +#: ../../include/functions_update_manager.php:204 +#: ../../include/functions_update_manager.php:468 +#: ../../include/functions_update_manager.php:762 +#: ../../include/functions_update_manager.php:1398 +#: ../../operation/agentes/pandora_networkmap.editor.php:573 +#: ../../operation/snmpconsole/snmp_browser.php:157 +#: ../../operation/snmpconsole/snmp_browser.php:486 +#: ../../operation/snmpconsole/snmp_browser.php:566 +#: ../../operation/snmpconsole/snmp_browser.php:581 +#: ../../general/header.php:785 +msgid "Cancel" msgstr "" -#: ../../operation/gis_maps/render_view.php:157 -msgid "Map" +#: ../../views/dashboard/header.php:71 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 +#: ../../enterprise/extensions/vmware/vmware_view.php:1292 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316 +#: ../../enterprise/include/class/DeploymentCenter.class.php:724 +#: ../../enterprise/include/class/AgentRepository.class.php:618 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2855 +#: ../../extensions/net_tools.php:493 +#: ../../godmode/update_manager/update_manager.php:35 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../include/class/ConfigPEN.class.php:595 +#: ../../include/class/CredentialStore.class.php:737 +#: ../../include/functions_events.php:295 +msgid "Options" msgstr "" -#: ../../operation/messages/message_edit.php:35 -#: ../../operation/messages/message_list.php:32 -msgid "Received messages" +#: ../../views/dashboard/header.php:80 +msgid "Back to dashboards list" msgstr "" -#: ../../operation/messages/message_edit.php:39 -#: ../../operation/messages/message_list.php:36 -msgid "Sent messages" +#: ../../views/dashboard/header.php:87 +msgid "Slides" msgstr "" -#: ../../operation/messages/message_edit.php:43 -#: ../../operation/messages/message_list.php:40 -#: ../../operation/messages/message_list.php:226 -msgid "Create message" +#: ../../views/dashboard/header.php:100 +msgid "Slides mode" msgstr "" -#: ../../operation/messages/message_edit.php:60 -msgid "This message does not exist in the system" +#: ../../views/dashboard/header.php:112 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1243 +#: ../../enterprise/godmode/policies/policy_queue.php:566 +#: ../../enterprise/include/class/Omnishell.class.php:544 +#: ../../enterprise/include/class/Omnishell.class.php:1276 +#: ../../extensions/agents_alerts.php:101 +#: ../../extensions/agents_modules.php:492 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:175 +#: ../../include/ajax/module.php:919 +#: ../../include/class/NetworkMap.class.php:2816 +#: ../../operation/visual_console/view.php:339 +#: ../../operation/visual_console/legacy_public_view.php:120 +#: ../../operation/visual_console/legacy_view.php:231 +#: ../../operation/visual_console/public_view.php:104 +#: ../../operation/gis_maps/render_view.php:147 +#: ../../operation/reporting/graph_viewer.php:294 +#: ../../operation/events/events.php:679 +#: ../../operation/servers/recon_view.php:50 ../../general/login_page.php:70 +#: ../../general/login_page.php:294 +msgid "Refresh" msgstr "" -#: ../../operation/messages/message_edit.php:79 -#: ../../operation/messages/message_edit.php:160 -#: ../../operation/messages/message_list.php:125 -msgid "Sender" +#: ../../views/dashboard/header.php:164 +msgid "Add Cell" msgstr "" -#: ../../operation/messages/message_edit.php:80 -msgid "at" +#: ../../views/dashboard/list.php:38 +msgid "Dashboards" msgstr "" -#: ../../operation/messages/message_edit.php:82 -#: ../../operation/messages/message_edit.php:169 -#: ../../operation/messages/message_list.php:123 -msgid "Destination" +#: ../../views/dashboard/list.php:48 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:243 +#: ../../enterprise/meta/advanced/metasetup.relations.php:86 +#: ../../enterprise/meta/advanced/links.php:81 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:148 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:222 +#: ../../enterprise/extensions/ipam/ipam_action.php:84 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:112 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:184 +#: ../../enterprise/godmode/modules/local_components.php:362 +#: ../../enterprise/godmode/policies/policies.php:172 +#: ../../enterprise/godmode/alerts/alert_events_list.php:180 +#: ../../enterprise/godmode/alerts/alert_events_list.php:232 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:135 +#: ../../enterprise/godmode/reporting/graph_template_list.php:99 +#: ../../enterprise/godmode/reporting/graph_template_list.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:301 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:97 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:235 +#: ../../enterprise/include/class/DatabaseHA.class.php:1034 +#: ../../enterprise/operation/agentes/transactional_map.php:156 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:65 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_nc_groups.php:141 +#: ../../godmode/modules/manage_network_components.php:414 +#: ../../godmode/users/profile_list.php:86 +#: ../../godmode/users/user_list.php:171 ../../godmode/users/user_list.php:218 +#: ../../godmode/users/configure_user.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:112 +#: ../../godmode/netflow/nf_item_list.php:122 +#: ../../godmode/netflow/nf_item_list.php:150 +#: ../../godmode/netflow/nf_edit.php:91 ../../godmode/netflow/nf_edit.php:124 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_filters.php:159 +#: ../../godmode/massive/massive_delete_action_alerts.php:124 +#: ../../godmode/massive/massive_delete_modules.php:143 +#: ../../godmode/massive/massive_delete_alerts.php:186 +#: ../../godmode/alerts/alert_actions.php:169 +#: ../../godmode/alerts/alert_commands.php:380 +#: ../../godmode/alerts/alert_templates.php:251 +#: ../../godmode/alerts/alert_special_days.php:250 +#: ../../godmode/alerts/alert_list.php:228 +#: ../../godmode/alerts/alert_list.php:316 ../../godmode/setup/news.php:112 +#: ../../godmode/setup/gis.php:58 ../../godmode/setup/links.php:73 +#: ../../godmode/reporting/map_builder.php:158 +#: ../../godmode/reporting/graphs.php:97 ../../godmode/reporting/graphs.php:107 +#: ../../godmode/reporting/graphs.php:150 +#: ../../godmode/reporting/reporting_builder.php:623 +#: ../../godmode/events/event_filter.php:54 +#: ../../godmode/events/event_filter.php:81 +#: ../../include/functions_api.php:13929 +#: ../../include/class/ConfigPEN.class.php:480 +#: ../../operation/messages/message_list.php:85 +#: ../../operation/messages/message_list.php:103 +#: ../../operation/snmpconsole/snmp_view.php:112 +#: ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/incident_detail.php:96 +#: ../../operation/incidents/incident_detail.php:134 +#: ../../operation/incidents/incident.php:98 +#: ../../operation/incidents/list_integriaims_incidents.php:85 +#: ../../operation/reporting/graph_viewer.php:39 +#: ../../operation/reporting/graph_viewer.php:47 +msgid "Successfully deleted" msgstr "" -#: ../../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" +#: ../../views/dashboard/list.php:49 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:146 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:220 +#: ../../enterprise/extensions/ipam/ipam_action.php:82 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:110 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:182 +#: ../../enterprise/godmode/modules/local_components.php:363 +#: ../../enterprise/godmode/policies/policy_alerts.php:199 +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_modules.php:1291 +#: ../../enterprise/godmode/policies/policies.php:175 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:108 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:135 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:135 +#: ../../enterprise/godmode/policies/policy_collections.php:77 +#: ../../enterprise/godmode/policies/policy_agents.php:115 +#: ../../enterprise/godmode/policies/policy_agents.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:181 +#: ../../enterprise/godmode/alerts/alert_events_list.php:233 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:270 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:136 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 +#: ../../enterprise/operation/agentes/transactional_map.php:157 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:66 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_network_components.php:415 +#: ../../godmode/users/configure_user.php:651 +#: ../../godmode/massive/massive_delete_action_alerts.php:125 +#: ../../godmode/massive/massive_delete_alerts.php:187 +#: ../../godmode/alerts/alert_actions.php:170 +#: ../../godmode/alerts/alert_commands.php:381 +#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/alerts/alert_special_days.php:251 +#: ../../godmode/alerts/alert_list.php:229 +#: ../../godmode/alerts/alert_list.php:317 ../../godmode/setup/news.php:113 +#: ../../godmode/setup/gis.php:56 +#: ../../godmode/reporting/reporting_builder.php:624 +#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/messages/message_list.php:86 +#: ../../operation/snmpconsole/snmp_view.php:113 +#: ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/incident_detail.php:97 +#: ../../operation/incidents/incident_detail.php:135 +#: ../../operation/incidents/incident.php:99 +#: ../../operation/incidents/list_integriaims_incidents.php:86 +msgid "Could not be deleted" msgstr "" -#: ../../operation/messages/message_edit.php:104 -msgid "wrote" +#: ../../views/dashboard/list.php:56 +msgid "Successfully duplicate" msgstr "" -#: ../../operation/messages/message_edit.php:119 -msgid "Reply" +#: ../../views/dashboard/list.php:57 +msgid "Could not be duplicate" msgstr "" -#: ../../operation/messages/message_edit.php:136 +#: ../../views/dashboard/list.php:65 +msgid "There are no dashboards defined." +msgstr "" + +#: ../../views/dashboard/list.php:90 ../../views/dashboard/formDashboard.php:71 +#: ../../enterprise/views/cluster/list.php:58 +#: ../../enterprise/meta/advanced/servers.build_table.php:58 +#: ../../enterprise/meta/include/functions_autoprovision.php:448 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:580 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1132 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1458 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1681 +#: ../../enterprise/meta/agentsearch.php:301 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:369 +#: ../../enterprise/extensions/ipam/ipam_list.php:135 +#: ../../enterprise/extensions/ipam/ipam_excel.php:105 +#: ../../enterprise/extensions/ipam/ipam_excel.php:175 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1198 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1677 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:270 +#: ../../enterprise/extensions/ipam/ipam_editor.php:99 +#: ../../enterprise/godmode/modules/configure_local_component.php:152 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:369 +#: ../../enterprise/godmode/modules/local_components.php:561 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:331 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:612 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:81 +#: ../../enterprise/godmode/agentes/collection_manager.php:115 +#: ../../enterprise/godmode/agentes/collection_manager.php:201 +#: ../../enterprise/godmode/agentes/inventory_manager.php:217 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:519 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/policies/configure_policy.php:76 +#: ../../enterprise/godmode/policies/policy_modules.php:1446 +#: ../../enterprise/godmode/policies/policies.php:432 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:253 +#: ../../enterprise/godmode/policies/policy_collections.php:149 +#: ../../enterprise/godmode/policies/policy_collections.php:244 +#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:1074 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 +#: ../../enterprise/godmode/alerts/alert_events.php:591 +#: ../../enterprise/godmode/alerts/alert_events_list.php:501 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 +#: ../../enterprise/godmode/services/services.service.php:385 +#: ../../enterprise/godmode/setup/setup_skins.php:84 +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/godmode/setup/edit_skin.php:230 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:135 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:139 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:105 +#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +#: ../../enterprise/godmode/reporting/mysql_builder.php:160 +#: ../../enterprise/godmode/reporting/mysql_builder.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1521 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:246 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:36 +#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:680 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2850 +#: ../../enterprise/include/functions_services.php:2475 +#: ../../enterprise/operation/agentes/policy_view.php:139 +#: ../../enterprise/operation/agentes/policy_view.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:654 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:68 +#: ../../enterprise/operation/agentes/collection_view.php:62 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:146 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:307 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:410 +#: ../../enterprise/operation/services/services.service.php:163 +#: ../../enterprise/operation/services/services.list.php:423 +#: ../../extensions/files_repo/files_repo_list.php:53 +#: ../../godmode/modules/manage_nc_groups_form.php:68 +#: ../../godmode/modules/manage_network_templates_form.php:156 +#: ../../godmode/modules/manage_nc_groups.php:231 +#: ../../godmode/modules/manage_network_components_form_common.php:59 +#: ../../godmode/modules/module_list.php:59 +#: ../../godmode/modules/manage_network_templates.php:234 +#: ../../godmode/groups/configure_group.php:118 +#: ../../godmode/groups/group_list.php:681 +#: ../../godmode/groups/configure_modu_group.php:64 +#: ../../godmode/groups/modu_group_list.php:235 +#: ../../godmode/users/user_list.php:329 +#: ../../godmode/agentes/planned_downtime.editor.php:637 +#: ../../godmode/agentes/planned_downtime.editor.php:1035 +#: ../../godmode/agentes/configure_field.php:71 +#: ../../godmode/agentes/module_manager_editor_common.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:1128 +#: ../../godmode/agentes/module_manager.php:639 +#: ../../godmode/netflow/nf_edit.php:146 +#: ../../godmode/netflow/nf_edit_form.php:198 +#: ../../godmode/alerts/configure_alert_command.php:172 +#: ../../godmode/alerts/alert_actions.php:225 +#: ../../godmode/alerts/alert_commands.php:412 +#: ../../godmode/alerts/alert_templates.php:365 +#: ../../godmode/alerts/configure_alert_action.php:128 +#: ../../godmode/alerts/configure_alert_template.php:918 +#: ../../godmode/setup/os.builder.php:33 ../../godmode/setup/os.list.php:32 +#: ../../godmode/setup/setup_integria.php:260 +#: ../../godmode/setup/setup_integria.php:383 +#: ../../godmode/reporting/create_container.php:205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:826 +#: ../../godmode/reporting/reporting_builder.main.php:79 +#: ../../godmode/reporting/reporting_builder.main.php:83 +#: ../../godmode/reporting/graph_builder.main.php:106 +#: ../../godmode/events/event_filter.php:121 +#: ../../godmode/events/event_responses.editor.php:76 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:65 +#: ../../godmode/servers/modificar_server.php:56 +#: ../../godmode/servers/plugin.php:328 ../../godmode/servers/plugin.php:969 +#: ../../godmode/tag/tag.php:175 ../../godmode/tag/edit_tag.php:168 +#: ../../godmode/category/edit_category.php:151 +#: ../../mobile/operation/visualmaps.php:162 +#: ../../include/functions_reporting_html.php:963 +#: ../../include/functions_reporting_html.php:971 +#: ../../include/functions_reporting_html.php:1958 +#: ../../include/functions_reporting_html.php:2655 +#: ../../include/functions_reporting_html.php:5172 +#: ../../include/functions_treeview.php:78 +#: ../../include/class/NetworkMap.class.php:2931 +#: ../../include/class/NetworkMap.class.php:2972 +#: ../../include/class/NetworkMap.class.php:2990 +#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/ManageNetScanScripts.class.php:408 +#: ../../include/class/ManageNetScanScripts.class.php:549 +#: ../../include/class/ModuleTemplates.class.php:815 +#: ../../include/class/ModuleTemplates.class.php:965 +#: ../../include/functions_filemanager.php:619 +#: ../../include/functions_snmp_browser.php:1334 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4131 ../../operation/search_users.php:35 +#: ../../operation/search_helps.php:32 +#: ../../operation/agentes/pandora_networkmap.editor.php:258 +#: ../../operation/agentes/pandora_networkmap.php:693 +#: ../../operation/netflow/nf_live_view.php:362 +#: ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:198 +#: ../../operation/search_policies.php:34 ../../operation/search_maps.php:27 +msgid "Name" +msgstr "" + +#: ../../views/dashboard/list.php:91 +msgid "Cells" +msgstr "" + +#: ../../views/dashboard/list.php:92 +#: ../../views/dashboard/formDashboard.php:101 +#: ../../enterprise/views/cluster/list.php:60 +#: ../../enterprise/meta/advanced/synchronizing.user.php:633 +#: ../../enterprise/meta/advanced/cron_main.php:413 +#: ../../enterprise/meta/advanced/collections.php:321 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:138 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:255 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:352 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:417 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:606 +#: ../../enterprise/meta/include/functions_wizard_meta.php:193 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1803 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/agentsearch.php:117 +#: ../../enterprise/meta/agentsearch.php:303 +#: ../../enterprise/extensions/ipam/ipam_editor.php:173 +#: ../../enterprise/godmode/modules/configure_local_component.php:268 +#: ../../enterprise/godmode/modules/local_components.php:439 +#: ../../enterprise/godmode/modules/local_components.php:563 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:189 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:111 +#: ../../enterprise/godmode/agentes/collections.php:323 +#: ../../enterprise/godmode/policies/configure_policy.php:79 +#: ../../enterprise/godmode/policies/policies.php:333 +#: ../../enterprise/godmode/policies/policies.php:434 +#: ../../enterprise/godmode/policies/policy_agents.php:671 +#: ../../enterprise/godmode/policies/policy_agents.php:714 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:85 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 +#: ../../enterprise/godmode/alerts/alert_events.php:594 +#: ../../enterprise/godmode/alerts/alert_events_list.php:411 +#: ../../enterprise/godmode/alerts/alert_events_list.php:502 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:403 +#: ../../enterprise/godmode/services/services.service.php:391 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:147 +#: ../../enterprise/godmode/reporting/graph_template_list.php:148 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:164 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:375 +#: ../../enterprise/godmode/reporting/visual_console_template.php:171 +#: ../../enterprise/godmode/reporting/visual_console_template.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1807 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:94 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:642 +#: ../../enterprise/include/functions_tasklist.php:172 +#: ../../enterprise/include/functions_alert_event.php:1134 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../enterprise/include/class/Azure.cloud.php:760 +#: ../../enterprise/include/class/VMware.app.php:656 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/Aws.cloud.php:451 +#: ../../enterprise/include/class/Aws.cloud.php:1118 +#: ../../enterprise/include/class/MySQL.app.php:473 +#: ../../enterprise/include/class/Oracle.app.php:471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:692 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:842 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2747 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2851 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:817 +#: ../../enterprise/include/functions_events.php:97 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/tag_view.php:87 +#: ../../enterprise/operation/agentes/tag_view.php:582 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:71 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../enterprise/operation/agentes/ver_agente.php:49 +#: ../../enterprise/operation/agentes/ver_agente.php:70 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:310 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:413 +#: ../../enterprise/operation/log/log_viewer.php:477 +#: ../../enterprise/operation/inventory/inventory.php:180 +#: ../../enterprise/operation/services/services.service.php:166 +#: ../../enterprise/operation/services/services.list.php:219 +#: ../../enterprise/operation/services/services.list.php:428 +#: ../../enterprise/operation/services/services.table_services.php:198 +#: ../../extensions/agents_alerts.php:94 +#: ../../extensions/agents_modules.php:389 +#: ../../godmode/modules/manage_network_templates_form.php:223 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_templates_form.php:327 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/modules/manage_network_components.php:534 +#: ../../godmode/modules/manage_network_components.php:670 +#: ../../godmode/users/user_list.php:258 +#: ../../godmode/agentes/configurar_agente.php:449 +#: ../../godmode/agentes/modificar_agente.php:168 +#: ../../godmode/agentes/modificar_agente.php:495 +#: ../../godmode/agentes/planned_downtime.list.php:400 +#: ../../godmode/agentes/planned_downtime.editor.php:647 +#: ../../godmode/agentes/planned_downtime.editor.php:1036 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/netflow/nf_edit.php:147 +#: ../../godmode/netflow/nf_edit_form.php:202 +#: ../../godmode/snmpconsole/snmp_alert.php:778 +#: ../../godmode/gis_maps/configure_gis_map.php:462 +#: ../../godmode/gis_maps/configure_gis_map.php:566 +#: ../../godmode/massive/massive_copy_modules.php:84 +#: ../../godmode/massive/massive_copy_modules.php:237 +#: ../../godmode/massive/massive_standby_alerts.php:146 +#: ../../godmode/massive/massive_delete_action_alerts.php:163 +#: ../../godmode/massive/massive_add_alerts.php:183 +#: ../../godmode/massive/massive_delete_agents.php:114 +#: ../../godmode/massive/massive_enable_disable_alerts.php:146 +#: ../../godmode/massive/massive_edit_agents.php:400 +#: ../../godmode/massive/massive_edit_agents.php:550 +#: ../../godmode/massive/massive_delete_profiles.php:109 +#: ../../godmode/massive/massive_delete_alerts.php:254 +#: ../../godmode/massive/massive_add_action_alerts.php:156 +#: ../../godmode/massive/massive_add_profiles.php:102 +#: ../../godmode/alerts/configure_alert_command.php:180 +#: ../../godmode/alerts/alert_actions.php:197 +#: ../../godmode/alerts/alert_actions.php:226 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../godmode/alerts/alert_commands.php:414 +#: ../../godmode/alerts/configure_alert_special_days.php:69 +#: ../../godmode/alerts/alert_templates.php:366 +#: ../../godmode/alerts/configure_alert_action.php:140 +#: ../../godmode/alerts/configure_alert_template.php:922 +#: ../../godmode/alerts/alert_special_days.php:274 +#: ../../godmode/setup/news.php:178 ../../godmode/setup/gis.php:66 +#: ../../godmode/setup/gis_step_2.php:206 +#: ../../godmode/setup/setup_integria.php:286 +#: ../../godmode/setup/setup_integria.php:409 +#: ../../godmode/reporting/create_container.php:224 +#: ../../godmode/reporting/create_container.php:502 +#: ../../godmode/reporting/create_container.php:591 +#: ../../godmode/reporting/map_builder.php:308 +#: ../../godmode/reporting/map_builder.php:336 +#: ../../godmode/reporting/graphs.php:168 +#: ../../godmode/reporting/graphs.php:266 +#: ../../godmode/reporting/visual_console_favorite.php:111 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1210 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:270 +#: ../../godmode/reporting/reporting_builder.main.php:91 +#: ../../godmode/reporting/reporting_builder.php:643 +#: ../../godmode/reporting/reporting_builder.php:829 +#: ../../godmode/reporting/graph_builder.main.php:116 +#: ../../godmode/events/event_filter.php:122 +#: ../../godmode/events/event_responses.editor.php:87 +#: ../../godmode/events/event_edit_filter.php:265 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/events/custom_events.php:99 +#: ../../godmode/wizards/HostDevices.class.php:928 +#: ../../mobile/operation/agents.php:79 ../../mobile/operation/agents.php:143 +#: ../../mobile/operation/agents.php:219 ../../mobile/operation/agents.php:220 +#: ../../mobile/operation/agents.php:393 ../../mobile/operation/modules.php:147 +#: ../../mobile/operation/modules.php:152 +#: ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/modules.php:242 ../../mobile/operation/alerts.php:95 +#: ../../mobile/operation/alerts.php:100 ../../mobile/operation/alerts.php:212 +#: ../../mobile/operation/alerts.php:213 +#: ../../mobile/operation/visualmaps.php:55 +#: ../../mobile/operation/visualmaps.php:60 +#: ../../mobile/operation/visualmaps.php:164 +#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 +#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:662 +#: ../../mobile/operation/events.php:663 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:526 +#: ../../include/functions_visual_map_editor.php:1307 +#: ../../include/functions_reporting_html.php:2606 +#: ../../include/functions_reporting_html.php:2659 +#: ../../include/functions_cron.php:459 +#: ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:667 +#: ../../include/functions_graph.php:5050 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:213 +#: ../../include/functions_visual_map.php:4215 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:545 +#: ../../include/rest-api/models/VisualConsole/Item.php:2021 +#: ../../include/class/NetworkMap.class.php:2862 +#: ../../include/class/NetworkMap.class.php:2915 +#: ../../include/class/NetworkMap.class.php:3202 +#: ../../include/class/CredentialStore.class.php:732 +#: ../../include/class/CredentialStore.class.php:763 +#: ../../include/class/CredentialStore.class.php:848 +#: ../../include/class/CustomNetScan.class.php:499 +#: ../../include/class/ModuleTemplates.class.php:706 +#: ../../include/functions_container.php:150 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:220 +#: ../../include/functions_snmp_browser.php:1337 +#: ../../include/functions_events.php:193 +#: ../../include/functions_events.php:244 +#: ../../include/functions_events.php:4606 +#: ../../include/functions_events.php:6051 ../../operation/search_agents.php:45 +#: ../../operation/search_agents.php:51 ../../operation/users/user_edit.php:749 +#: ../../operation/visual_console/view.php:265 +#: ../../operation/agentes/estado_agente.php:218 +#: ../../operation/agentes/estado_agente.php:719 +#: ../../operation/agentes/pandora_networkmap.editor.php:268 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +#: ../../operation/agentes/exportdata.php:226 +#: ../../operation/agentes/status_monitor.php:357 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/ver_agente.php:848 +#: ../../operation/agentes/estado_generalagente.php:339 +#: ../../operation/agentes/alerts_status.functions.php:73 +#: ../../operation/netflow/nf_live_view.php:372 +#: ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/incident_detail.php:338 +#: ../../operation/incidents/configure_integriaims_incident.php:242 +#: ../../operation/incidents/incident.php:423 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:375 +#: ../../operation/incidents/list_integriaims_incidents.php:127 +#: ../../operation/events/events_list.php:903 +#: ../../operation/events/sound_events.php:71 +#: ../../operation/events/events.php:885 +#: ../../operation/events/events.build_table.php:222 +#: ../../operation/search_maps.php:28 ../../general/ui/agents_list.php:76 +msgid "Group" +msgstr "" + +#: ../../views/dashboard/list.php:93 +msgid "Favorite" +msgstr "" + +#: ../../views/dashboard/list.php:94 ../../extensions/agents_alerts.php:161 +#: ../../operation/agentes/networkmap.dinamic.php:111 +#: ../../operation/agentes/pandora_networkmap.view.php:813 +#: ../../operation/snmpconsole/snmp_statistics.php:43 +#: ../../operation/snmpconsole/snmp_browser.php:63 +#: ../../operation/snmpconsole/snmp_view.php:88 +#: ../../operation/events/events.php:718 +msgid "Full screen" +msgstr "" + +#: ../../views/dashboard/list.php:97 +#: ../../enterprise/godmode/policies/policy_modules.php:1640 +#: ../../enterprise/godmode/policies/policies.php:591 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:213 +#: ../../godmode/massive/massive_copy_modules.php:300 +#: ../../godmode/alerts/alert_actions.php:227 +#: ../../godmode/reporting/map_builder.php:338 +#: ../../operation/agentes/pandora_networkmap.php:700 +#: ../../operation/agentes/pandora_networkmap.php:794 +msgid "Copy" +msgstr "" + +#: ../../views/dashboard/list.php:98 +#: ../../enterprise/meta/advanced/servers.build_table.php:135 +#: ../../enterprise/meta/advanced/metasetup.visual.php:406 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:501 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:711 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:712 +#: ../../enterprise/meta/advanced/links.php:152 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:280 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:446 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:638 +#: ../../enterprise/meta/include/functions_autoprovision.php:491 +#: ../../enterprise/meta/include/functions_autoprovision.php:492 +#: ../../enterprise/meta/include/functions_autoprovision.php:657 +#: ../../enterprise/meta/include/functions_autoprovision.php:658 +#: ../../enterprise/meta/include/functions_wizard_meta.php:396 +#: ../../enterprise/extensions/backup/main.php:234 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:428 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:443 +#: ../../enterprise/godmode/modules/local_components.php:613 +#: ../../enterprise/godmode/modules/local_components.php:626 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:668 +#: ../../enterprise/godmode/agentes/inventory_manager.php:246 +#: ../../enterprise/godmode/agentes/plugins_manager.php:124 +#: ../../enterprise/godmode/agentes/plugins_manager.php:168 +#: ../../enterprise/godmode/policies/policy_plugins.php:121 +#: ../../enterprise/godmode/policies/policy_alerts.php:474 +#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/policies/policy_modules.php:1585 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:515 +#: ../../enterprise/godmode/policies/policies.php:609 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:298 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:285 +#: ../../enterprise/godmode/policies/policy_agents.php:874 +#: ../../enterprise/godmode/policies/policy_agents.php:1225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:369 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:221 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:132 +#: ../../enterprise/godmode/alerts/alert_events_list.php:656 +#: ../../enterprise/godmode/alerts/alert_events_list.php:731 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:486 +#: ../../enterprise/godmode/setup/setup_acl.php:462 +#: ../../enterprise/godmode/reporting/graph_template_list.php:189 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:469 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:495 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:182 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:201 +#: ../../enterprise/godmode/reporting/mysql_builder.php:67 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:431 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/include/functions_tasklist.php:468 +#: ../../enterprise/include/functions_tasklist.php:495 +#: ../../enterprise/include/ajax/transactional.ajax.php:119 +#: ../../enterprise/include/ajax/transactional.ajax.php:208 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:74 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1497 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1536 +#: ../../enterprise/include/class/AgentRepository.class.php:758 +#: ../../enterprise/include/class/AgentRepository.class.php:793 +#: ../../enterprise/include/class/Omnishell.class.php:1111 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2987 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3297 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:624 +#: ../../enterprise/operation/agentes/transactional_map.php:376 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:229 +#: ../../enterprise/operation/services/services.list.php:567 +#: ../../extensions/files_repo/files_repo_list.php:109 +#: ../../godmode/modules/manage_network_templates_form.php:242 +#: ../../godmode/modules/manage_nc_groups.php:262 +#: ../../godmode/modules/manage_nc_groups.php:272 +#: ../../godmode/modules/manage_network_components.php:738 +#: ../../godmode/modules/manage_network_components.php:759 +#: ../../godmode/modules/manage_network_templates.php:269 +#: ../../godmode/modules/manage_network_templates.php:282 +#: ../../godmode/groups/group_list.php:756 +#: ../../godmode/groups/group_list.php:757 +#: ../../godmode/groups/modu_group_list.php:236 +#: ../../godmode/extensions.php:260 ../../godmode/extensions.php:262 +#: ../../godmode/users/user_list.php:542 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/planned_downtime.list.php:409 +#: ../../godmode/agentes/planned_downtime.list.php:489 +#: ../../godmode/agentes/planned_downtime.editor.php:1085 +#: ../../godmode/agentes/planned_downtime.editor.php:1088 +#: ../../godmode/agentes/planned_downtime.editor.php:1139 +#: ../../godmode/agentes/fields_manager.php:151 +#: ../../godmode/agentes/module_manager_editor_common.php:1223 +#: ../../godmode/agentes/module_manager.php:655 +#: ../../godmode/agentes/module_manager.php:936 +#: ../../godmode/agentes/module_manager.php:962 +#: ../../godmode/netflow/nf_item_list.php:265 +#: ../../godmode/netflow/nf_item_list.php:275 +#: ../../godmode/netflow/nf_edit.php:172 ../../godmode/netflow/nf_edit.php:183 +#: ../../godmode/snmpconsole/snmp_alert.php:1310 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_delete_action_alerts.php:256 +#: ../../godmode/massive/massive_delete_modules.php:563 +#: ../../godmode/massive/massive_delete_agents.php:192 +#: ../../godmode/massive/massive_delete_profiles.php:178 +#: ../../godmode/massive/massive_delete_alerts.php:326 +#: ../../godmode/alerts/alert_actions.php:228 +#: ../../godmode/alerts/alert_list.list.php:837 +#: ../../godmode/alerts/alert_templates.php:408 +#: ../../godmode/setup/news.php:241 ../../godmode/setup/gis.php:67 +#: ../../godmode/setup/links.php:143 ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1278 +#: ../../godmode/setup/setup_visuals.php:1298 +#: ../../godmode/reporting/reporting_builder.list_items.php:536 +#: ../../godmode/reporting/reporting_builder.list_items.php:566 +#: ../../godmode/reporting/reporting_builder.list_items.php:589 +#: ../../godmode/reporting/reporting_builder.list_items.php:690 +#: ../../godmode/reporting/create_container.php:596 +#: ../../godmode/reporting/create_container.php:649 +#: ../../godmode/reporting/map_builder.php:339 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/graphs.php:308 +#: ../../godmode/reporting/graphs.php:325 +#: ../../godmode/reporting/graph_builder.graph_editor.php:202 +#: ../../godmode/reporting/graph_builder.graph_editor.php:242 +#: ../../godmode/reporting/visual_console_builder.elements.php:666 +#: ../../godmode/reporting/reporting_builder.php:1060 +#: ../../godmode/reporting/reporting_builder.php:1151 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/events/event_filter.php:175 +#: ../../godmode/events/event_responses.list.php:63 +#: ../../godmode/servers/servers.build_table.php:213 +#: ../../include/functions_cron.php:708 ../../include/functions_cron.php:730 +#: ../../include/class/ConfigPEN.class.php:260 +#: ../../include/class/NetworkMap.class.php:2813 +#: ../../include/class/ManageNetScanScripts.class.php:410 +#: ../../include/class/CredentialStore.class.php:1010 +#: ../../include/class/CredentialStore.class.php:1163 +#: ../../include/class/ModuleTemplates.class.php:850 +#: ../../include/class/ModuleTemplates.class.php:1116 +#: ../../include/functions_container.php:188 +#: ../../include/functions_container.php:322 +#: ../../operation/visual_console/view.php:561 +#: ../../operation/agentes/pandora_networkmap.php:702 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/messages/message_list.php:169 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/messages/message_list.php:261 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/snmpconsole/snmp_view.php:1188 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/incident_detail.php:478 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:129 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:301 +#: ../../operation/incidents/list_integriaims_incidents.php:306 +msgid "Delete" +msgstr "" + +#: ../../views/dashboard/list.php:131 #, php-format -msgid "Message successfully sent to user %s" +msgid "Private for (%s)" msgstr "" -#: ../../operation/messages/message_edit.php:137 +#: ../../views/dashboard/list.php:174 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:498 +#: ../../enterprise/meta/advanced/metasetup.relations.php:584 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:698 +#: ../../enterprise/meta/advanced/links.php:166 +#: ../../enterprise/meta/advanced/policymanager.queue.php:333 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1097 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 +#: ../../enterprise/extensions/backup/main.php:295 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:419 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:492 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:379 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:427 +#: ../../enterprise/godmode/modules/local_components.php:613 +#: ../../enterprise/godmode/agentes/inventory_manager.php:245 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 +#: ../../enterprise/godmode/policies/policy_alerts.php:453 +#: ../../enterprise/godmode/policies/policy_modules.php:1521 +#: ../../enterprise/godmode/policies/policy_modules.php:1534 +#: ../../enterprise/godmode/policies/policy_modules.php:1579 +#: ../../enterprise/godmode/policies/policy_queue.php:535 +#: ../../enterprise/godmode/policies/policy_queue.php:572 +#: ../../enterprise/godmode/policies/policy_queue.php:590 +#: ../../enterprise/godmode/policies/policies.php:582 +#: ../../enterprise/godmode/policies/policies.php:600 +#: ../../enterprise/godmode/policies/policies.php:625 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:277 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:279 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:284 +#: ../../enterprise/godmode/policies/policy_agents.php:413 +#: ../../enterprise/godmode/policies/policy_agents.php:635 +#: ../../enterprise/godmode/policies/policy_agents.php:867 +#: ../../enterprise/godmode/policies/policy_agents.php:933 +#: ../../enterprise/godmode/policies/policy_agents.php:1030 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:368 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:634 +#: ../../enterprise/godmode/alerts/alert_events_list.php:728 +#: ../../enterprise/godmode/alerts/alert_events_list.php:839 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:485 +#: ../../enterprise/godmode/setup/setup_skins.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:801 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:608 +#: ../../enterprise/godmode/reporting/graph_template_list.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:399 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:462 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +#: ../../enterprise/include/functions_tasklist.php:464 +#: ../../enterprise/include/functions_tasklist.php:491 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1518 +#: ../../enterprise/include/class/AgentRepository.class.php:775 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1103 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3282 +#: ../../enterprise/include/functions_services.php:2753 +#: ../../enterprise/operation/agentes/transactional_map.php:360 +#: ../../enterprise/operation/agentes/transactional_map.php:364 +#: ../../enterprise/operation/agentes/transactional_map.php:375 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:228 +#: ../../enterprise/operation/services/services.list.php:566 +#: ../../extensions/files_repo/files_repo_list.php:108 +#: ../../godmode/modules/manage_nc_groups.php:261 +#: ../../godmode/modules/manage_network_components.php:738 +#: ../../godmode/modules/manage_network_templates.php:259 +#: ../../godmode/modules/manage_network_templates.php:269 +#: ../../godmode/groups/group_list.php:745 +#: ../../godmode/groups/modu_group_list.php:249 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/users/profile_list.php:366 +#: ../../godmode/users/user_list.php:542 ../../godmode/users/user_list.php:544 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/modificar_agente.php:734 +#: ../../godmode/agentes/planned_downtime.editor.php:1133 +#: ../../godmode/agentes/fields_manager.php:151 +#: ../../godmode/agentes/agent_manager.php:231 +#: ../../godmode/agentes/module_manager_editor_common.php:209 +#: ../../godmode/agentes/module_manager.php:879 +#: ../../godmode/agentes/module_manager.php:890 +#: ../../godmode/agentes/module_manager.php:912 +#: ../../godmode/agentes/module_manager.php:932 +#: ../../godmode/agentes/module_manager.php:954 +#: ../../godmode/netflow/nf_item_list.php:264 +#: ../../godmode/netflow/nf_edit.php:171 +#: ../../godmode/snmpconsole/snmp_alert.php:1310 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_alert.php:1570 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_operations.php:312 +#: ../../godmode/massive/massive_operations.php:321 +#: ../../godmode/massive/massive_standby_alerts.php:215 +#: ../../godmode/massive/massive_delete_action_alerts.php:254 +#: ../../godmode/massive/massive_delete_modules.php:561 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_delete_agents.php:190 +#: ../../godmode/massive/massive_edit_plugins.php:588 +#: ../../godmode/massive/massive_enable_disable_alerts.php:203 +#: ../../godmode/massive/massive_delete_profiles.php:176 +#: ../../godmode/massive/massive_add_action_alerts.php:234 +#: ../../godmode/massive/massive_add_profiles.php:169 +#: ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/alerts/alert_list.list.php:969 +#: ../../godmode/alerts/alert_commands.php:463 +#: ../../godmode/alerts/alert_commands.php:465 +#: ../../godmode/alerts/alert_templates.php:405 +#: ../../godmode/alerts/alert_special_days.php:506 +#: ../../godmode/setup/news.php:280 ../../godmode/setup/links.php:157 +#: ../../godmode/reporting/create_container.php:648 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/graphs.php:307 +#: ../../godmode/reporting/visual_console_builder.elements.php:405 +#: ../../godmode/reporting/reporting_builder.php:1053 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:495 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:757 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:777 +#: ../../godmode/servers/plugin.php:1031 ../../godmode/tag/tag.php:294 +#: ../../godmode/category/category.php:129 +#: ../../godmode/category/category.php:134 +#: ../../include/functions_profile.php:257 +#: ../../include/class/ConfigPEN.class.php:660 +#: ../../include/class/TreeGroupEdition.class.php:94 +#: ../../include/class/CredentialStore.class.php:1161 +#: ../../include/class/ModuleTemplates.class.php:840 +#: ../../include/class/ModuleTemplates.class.php:850 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:727 +#: ../../include/functions_container.php:187 +#: ../../include/functions_container.php:321 +#: ../../include/functions_events.php:3528 +#: ../../operation/users/user_edit.php:1079 +#: ../../operation/agentes/pandora_networkmap.editor.php:570 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/snmpconsole/snmp_browser.php:578 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/incidents/incident_detail.php:446 +#: ../../operation/incidents/incident_detail.php:494 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:245 +#: ../../operation/incidents/list_integriaims_incidents.php:305 +#: ../../operation/events/events.build_table.php:966 +msgid "Are you sure?" +msgstr "" + +#: ../../views/dashboard/list.php:219 +msgid "New dashboard" +msgstr "" + +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85 +msgid "Add widget" +msgstr "" + +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "" + +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:74 +#: ../../operation/snmpconsole/snmp_view.php:1259 +#: ../../operation/events/events.php:2431 +msgid "Until next" +msgstr "" + +#: ../../views/dashboard/formDashboard.php:84 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 +#: ../../godmode/reporting/reporting_builder.php:819 +msgid "Private" +msgstr "" + +#: ../../views/dashboard/formDashboard.php:113 +#: ../../enterprise/godmode/services/services.service.php:440 +#: ../../enterprise/godmode/reporting/visual_console_template.php:200 +msgid "Favourite" +msgstr "" + +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "" + +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "" + +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "" + +#: ../../views/dashboard/slides.php:40 +#: ../../operation/snmpconsole/snmp_view.php:705 +msgid "Exit fullscreen" +msgstr "" + +#: ../../views/dashboard/slides.php:178 +msgid "Change every" +msgstr "" + +#: ../../views/dashboard/slides.php:200 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 +#: ../../include/functions.php:3665 +msgid "Previous" +msgstr "" + +#: ../../views/dashboard/slides.php:215 +#: ../../enterprise/operation/agentes/transactional_map.php:365 +msgid "Stop" +msgstr "" + +#: ../../views/dashboard/slides.php:226 +msgid "Pause" +msgstr "" + +#: ../../views/dashboard/slides.php:237 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:90 +#: ../../enterprise/godmode/alerts/alert_events.php:675 +#: ../../enterprise/godmode/wizards/Cloud.class.php:535 +#: ../../enterprise/include/class/VMware.app.php:489 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/SAP.app.php:432 +#: ../../enterprise/include/class/Aws.cloud.php:1310 +#: ../../enterprise/include/class/MySQL.app.php:587 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:752 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1766 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1869 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1173 +#: ../../godmode/alerts/configure_alert_template.php:1010 +#: ../../godmode/alerts/configure_alert_template.php:1017 +#: ../../godmode/wizards/HostDevices.class.php:765 +#: ../../include/class/CustomNetScan.class.php:548 +msgid "Next" +msgstr "" + +#: ../../views/dashboard/slides.php:249 +msgid "Mode Cell" +msgstr "" + +#: ../../views/dashboard/slides.php:255 +msgid "Mode Layout" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/extensions/ipam/ipam_editor.php:141 +#: ../../enterprise/operation/services/services.treeview_services.php:61 +#: ../../enterprise/operation/services/services.treeview_services.php:67 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../operation/agentes/ver_agente.php:1549 ../../operation/menu.php:33 +#: ../../operation/menu.php:166 +msgid "Monitoring" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:35 +msgid "Clusters" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:59 +#: ../../enterprise/views/cluster/view.php:270 +#: ../../enterprise/meta/advanced/collections.php:322 +#: ../../enterprise/meta/include/functions_autoprovision.php:449 +#: ../../enterprise/meta/include/functions_wizard_meta.php:198 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:585 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1142 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1462 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1807 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:302 +#: ../../enterprise/extensions/backup/main.php:131 +#: ../../enterprise/extensions/backup/main.php:261 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:319 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:371 +#: ../../enterprise/extensions/ipam/ipam_list.php:136 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:410 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_excel.php:106 +#: ../../enterprise/extensions/ipam/ipam_excel.php:176 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:161 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1222 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1678 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:223 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:271 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_editor.php:133 +#: ../../enterprise/godmode/modules/configure_local_component.php:449 +#: ../../enterprise/godmode/modules/configure_local_component.php:610 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:370 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:334 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:82 +#: ../../enterprise/godmode/agentes/collection_manager.php:117 +#: ../../enterprise/godmode/agentes/collection_manager.php:203 +#: ../../enterprise/godmode/agentes/inventory_manager.php:218 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:134 +#: ../../enterprise/godmode/agentes/collections.php:324 +#: ../../enterprise/godmode/policies/configure_policy.php:95 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:254 +#: ../../enterprise/godmode/policies/policy_collections.php:151 +#: ../../enterprise/godmode/policies/policy_collections.php:246 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:522 +#: ../../enterprise/godmode/alerts/alert_events.php:606 +#: ../../enterprise/godmode/services/services.service.php:388 +#: ../../enterprise/godmode/services/services.elements.php:731 +#: ../../enterprise/godmode/setup/setup_skins.php:121 +#: ../../enterprise/godmode/setup/edit_skin.php:256 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:157 +#: ../../enterprise/godmode/reporting/graph_template_list.php:147 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:167 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:508 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:314 +#: ../../enterprise/mobile/include/enterprise.class.php:88 +#: ../../enterprise/include/functions_cron.php:261 +#: ../../enterprise/include/functions_reporting_pdf.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:454 +#: ../../enterprise/include/functions_reporting_csv.php:457 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:706 +#: ../../enterprise/include/functions_reporting_csv.php:733 +#: ../../enterprise/include/functions_reporting_csv.php:735 +#: ../../enterprise/include/functions_reporting_csv.php:764 +#: ../../enterprise/include/functions_reporting_csv.php:766 +#: ../../enterprise/include/functions_reporting_csv.php:796 +#: ../../enterprise/include/functions_reporting_csv.php:798 +#: ../../enterprise/include/functions_reporting_csv.php:833 +#: ../../enterprise/include/functions_reporting_csv.php:835 +#: ../../enterprise/include/functions_reporting_csv.php:856 +#: ../../enterprise/include/functions_reporting_csv.php:858 +#: ../../enterprise/include/functions_reporting_csv.php:907 +#: ../../enterprise/include/functions_reporting_csv.php:909 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:956 +#: ../../enterprise/include/functions_reporting_csv.php:980 +#: ../../enterprise/include/functions_reporting_csv.php:982 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1011 +#: ../../enterprise/include/functions_reporting_csv.php:1013 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1066 +#: ../../enterprise/include/functions_reporting_csv.php:1068 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1121 +#: ../../enterprise/include/functions_reporting_csv.php:1123 +#: ../../enterprise/include/functions_reporting_csv.php:1170 +#: ../../enterprise/include/functions_reporting_csv.php:1172 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1225 +#: ../../enterprise/include/functions_reporting_csv.php:1227 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1254 +#: ../../enterprise/include/functions_reporting_csv.php:1256 +#: ../../enterprise/include/functions_reporting_csv.php:1291 +#: ../../enterprise/include/functions_reporting_csv.php:1293 +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1531 +#: ../../enterprise/include/functions_reporting_csv.php:1677 +#: ../../enterprise/include/functions_reporting_csv.php:1679 +#: ../../enterprise/include/functions_reporting_csv.php:1731 +#: ../../enterprise/include/functions_reporting_csv.php:1799 +#: ../../enterprise/include/functions_reporting_csv.php:1968 +#: ../../enterprise/include/functions_reporting_csv.php:2005 +#: ../../enterprise/include/functions_reporting_csv.php:2009 +#: ../../enterprise/include/functions_reporting_csv.php:2061 +#: ../../enterprise/include/functions_reporting_csv.php:2063 +#: ../../enterprise/include/functions_reporting_csv.php:2092 +#: ../../enterprise/include/functions_reporting_csv.php:2094 +#: ../../enterprise/include/functions_reporting_csv.php:2128 +#: ../../enterprise/include/functions_reporting_csv.php:2130 +#: ../../enterprise/include/functions_reporting_csv.php:2160 +#: ../../enterprise/include/functions_reporting_csv.php:2162 +#: ../../enterprise/include/functions_reporting_csv.php:2182 +#: ../../enterprise/include/functions_reporting_csv.php:2184 +#: ../../enterprise/include/functions_reporting_csv.php:2223 +#: ../../enterprise/include/functions_reporting_csv.php:2225 +#: ../../enterprise/include/functions_reporting_csv.php:2277 +#: ../../enterprise/include/functions_reporting_csv.php:2279 +#: ../../enterprise/include/functions_reporting_csv.php:2310 +#: ../../enterprise/include/functions_reporting_csv.php:2312 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:716 +#: ../../enterprise/include/functions_services.php:2476 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../enterprise/include/functions_update_manager.php:209 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../enterprise/operation/agentes/transactional_map.php:181 +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:77 +#: ../../enterprise/operation/agentes/ver_agente.php:57 +#: ../../enterprise/operation/agentes/collection_view.php:64 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:411 +#: ../../enterprise/operation/services/services.service.php:164 +#: ../../enterprise/operation/services/services.list.php:426 +#: ../../extensions/files_repo/files_repo_form.php:62 +#: ../../extensions/files_repo/files_repo_list.php:54 +#: ../../godmode/modules/manage_network_templates_form.php:160 +#: ../../godmode/modules/manage_network_templates_form.php:222 +#: ../../godmode/modules/manage_network_components_form.php:296 +#: ../../godmode/modules/manage_network_components.php:669 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/modules/manage_network_templates.php:235 +#: ../../godmode/groups/configure_group.php:196 +#: ../../godmode/groups/group_list.php:689 +#: ../../godmode/users/user_list.php:334 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/modificar_agente.php:496 +#: ../../godmode/agentes/planned_downtime.list.php:399 +#: ../../godmode/agentes/planned_downtime.editor.php:663 +#: ../../godmode/agentes/agent_manager.php:400 +#: ../../godmode/agentes/module_manager_editor_common.php:997 +#: ../../godmode/agentes/module_manager.php:649 +#: ../../godmode/netflow/nf_item_list.php:177 +#: ../../godmode/snmpconsole/snmp_alert.php:754 +#: ../../godmode/snmpconsole/snmp_alert.php:1278 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/snmpconsole/snmp_filters.php:258 +#: ../../godmode/massive/massive_edit_plugins.php:506 +#: ../../godmode/massive/massive_edit_agents.php:598 +#: ../../godmode/massive/massive_edit_modules.php:671 +#: ../../godmode/alerts/configure_alert_command.php:194 +#: ../../godmode/alerts/alert_commands.php:415 +#: ../../godmode/alerts/configure_alert_special_days.php:92 +#: ../../godmode/alerts/alert_templates.php:46 +#: ../../godmode/alerts/configure_alert_template.php:935 +#: ../../godmode/setup/os.builder.php:34 ../../godmode/setup/os.list.php:33 +#: ../../godmode/setup/setup_integria.php:271 +#: ../../godmode/setup/setup_integria.php:394 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:234 +#: ../../godmode/reporting/graphs.php:264 +#: ../../godmode/reporting/reporting_builder.item_editor.php:898 +#: ../../godmode/reporting/reporting_builder.main.php:188 +#: ../../godmode/reporting/reporting_builder.php:792 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_responses.editor.php:93 +#: ../../godmode/events/event_responses.list.php:51 +#: ../../godmode/servers/modificar_server.php:64 +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:478 +#: ../../godmode/tag/tag.php:175 ../../godmode/tag/tag.php:225 +#: ../../godmode/tag/edit_tag.php:176 ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:133 +#: ../../include/functions_reporting_html.php:2609 +#: ../../include/functions_reporting_html.php:2660 +#: ../../include/functions_reporting_html.php:4182 +#: ../../include/functions_reporting_html.php:5173 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/module.php:844 +#: ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:631 +#: ../../include/class/ConfigPEN.class.php:442 +#: ../../include/class/ConfigPEN.class.php:593 +#: ../../include/class/ManageNetScanScripts.class.php:409 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 +#: ../../include/class/ModuleTemplates.class.php:816 +#: ../../include/class/ModuleTemplates.class.php:977 +#: ../../include/class/ModuleTemplates.class.php:1115 +#: ../../include/functions_container.php:148 +#: ../../include/functions_snmp_browser.php:536 +#: ../../include/functions_snmp_browser.php:1353 +#: ../../include/functions_events.php:3599 ../../operation/search_users.php:39 +#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 +#: ../../operation/agentes/gis_view.php:219 +#: ../../operation/agentes/estado_agente.php:707 +#: ../../operation/agentes/pandora_networkmap.editor.php:291 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/estado_generalagente.php:216 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/incident_detail.php:476 +#: ../../operation/incidents/incident_detail.php:526 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:256 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:298 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:311 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:443 +#: ../../operation/search_reports.php:35 ../../operation/search_graphs.php:30 +#: ../../operation/reporting/custom_reporting.php:35 +#: ../../operation/reporting/graph_viewer.php:377 +#: ../../operation/search_policies.php:35 +msgid "Description" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:206 +#: ../../enterprise/godmode/policies/policy_modules.php:1447 +#: ../../enterprise/godmode/services/services.elements.php:637 +#: ../../enterprise/godmode/services/services.elements.php:660 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:274 +#: ../../enterprise/include/functions_reporting_csv.php:1406 +#: ../../enterprise/include/functions_reporting_csv.php:1522 +#: ../../enterprise/include/functions_reporting_csv.php:1722 +#: ../../enterprise/include/functions_reporting_csv.php:1790 +#: ../../enterprise/include/functions_services.php:2474 +#: ../../enterprise/operation/agentes/policy_view.php:325 +#: ../../enterprise/operation/agentes/tag_view.php:583 +#: ../../enterprise/operation/agentes/ver_agente.php:29 +#: ../../godmode/modules/manage_network_templates_form.php:220 +#: ../../godmode/modules/manage_network_components_form_common.php:75 +#: ../../godmode/modules/manage_network_components.php:668 +#: ../../godmode/agentes/agent_template.php:234 +#: ../../godmode/agentes/modificar_agente.php:494 +#: ../../godmode/agentes/planned_downtime.list.php:401 +#: ../../godmode/agentes/planned_downtime.editor.php:673 +#: ../../godmode/agentes/module_manager_editor_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:373 +#: ../../godmode/agentes/module_manager_editor_common.php:1221 +#: ../../godmode/agentes/module_manager.php:647 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:285 +#: ../../godmode/alerts/alert_templates.php:368 +#: ../../godmode/setup/news.php:237 ../../godmode/setup/gis_step_2.php:225 +#: ../../godmode/setup/setup_integria.php:333 +#: ../../godmode/setup/setup_integria.php:456 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:796 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:303 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../godmode/servers/servers.build_table.php:67 +#: ../../godmode/servers/modificar_server.php:70 +#: ../../godmode/servers/plugin.php:970 +#: ../../mobile/operation/visualmaps.php:67 +#: ../../mobile/operation/visualmaps.php:68 +#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 +#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:680 +#: ../../mobile/operation/events.php:681 +#: ../../include/functions_visual_map_editor.php:634 +#: ../../include/functions_visual_map_editor.php:652 +#: ../../include/functions_visual_map_editor.php:780 +#: ../../include/functions_reporting_html.php:964 +#: ../../include/functions_reporting_html.php:972 +#: ../../include/functions_reporting_html.php:1184 +#: ../../include/functions_reporting_html.php:1192 +#: ../../include/functions_reporting_html.php:1959 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:4181 +#: ../../include/ajax/module.php:842 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:461 +#: ../../include/class/ModuleTemplates.class.php:1114 +#: ../../include/class/AgentWizard.class.php:440 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:273 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:530 +#: ../../include/functions_events.php:2397 +#: ../../include/functions_events.php:4537 +#: ../../operation/agentes/estado_agente.php:722 +#: ../../operation/agentes/ver_agente.php:979 +#: ../../operation/netflow/nf_live_view.php:311 +#: ../../operation/incidents/configure_integriaims_incident.php:210 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:377 +#: ../../operation/search_modules.php:33 +#: ../../operation/events/sound_events.php:74 +msgid "Type" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:4602 +#: ../../operation/agentes/pandora_networkmap.php:695 +msgid "Nodes" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:59 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:414 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:692 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:119 +#: ../../enterprise/meta/agentsearch.php:304 +#: ../../enterprise/extensions/backup/main.php:134 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/extensions/vmware/vmware_view.php:1092 +#: ../../enterprise/godmode/agentes/collection_manager.php:118 +#: ../../enterprise/godmode/agentes/collection_manager.php:204 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_modules.php:1448 +#: ../../enterprise/godmode/policies/policy_queue.php:427 +#: ../../enterprise/godmode/policies/policies.php:431 +#: ../../enterprise/godmode/policies/policy_collections.php:152 +#: ../../enterprise/godmode/policies/policy_collections.php:247 +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:108 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/alerts/alert_events_list.php:504 +#: ../../enterprise/godmode/servers/HA_cluster.php:131 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/include/functions_reporting_csv.php:1754 +#: ../../enterprise/include/functions_reporting.php:1680 +#: ../../enterprise/include/functions_reporting.php:2580 +#: ../../enterprise/include/functions_reporting.php:3572 +#: ../../enterprise/include/functions_reporting.php:5361 +#: ../../enterprise/include/functions_services.php:2490 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:211 +#: ../../enterprise/operation/agentes/policy_view.php:326 +#: ../../enterprise/operation/agentes/tag_view.php:585 +#: ../../enterprise/operation/agentes/tag_view.php:662 +#: ../../enterprise/operation/agentes/collection_view.php:65 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/services.list.php:202 +#: ../../enterprise/operation/services/services.list.php:433 +#: ../../enterprise/operation/services/services.table_services.php:181 +#: ../../extensions/agents_alerts.php:522 ../../extensions/net_tools.php:241 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/module_manager.php:650 +#: ../../godmode/massive/massive_copy_modules.php:105 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_delete_modules.php:391 +#: ../../godmode/massive/massive_delete_agents.php:142 +#: ../../godmode/massive/massive_edit_agents.php:429 +#: ../../godmode/massive/massive_edit_agents.php:640 +#: ../../godmode/alerts/alert_list.list.php:457 +#: ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/setup/setup_integria.php:351 +#: ../../godmode/setup/setup_integria.php:474 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:435 +#: ../../godmode/servers/servers.build_table.php:66 +#: ../../mobile/operation/agents.php:83 ../../mobile/operation/agents.php:130 +#: ../../mobile/operation/agents.php:228 ../../mobile/operation/agents.php:229 +#: ../../mobile/operation/agents.php:396 ../../mobile/operation/modules.php:139 +#: ../../mobile/operation/modules.php:140 +#: ../../mobile/operation/modules.php:250 +#: ../../mobile/operation/modules.php:251 +#: ../../mobile/operation/modules.php:576 +#: ../../mobile/operation/modules.php:582 +#: ../../mobile/operation/modules.php:588 +#: ../../mobile/operation/modules.php:594 +#: ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:613 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:692 +#: ../../mobile/operation/modules.php:700 +#: ../../mobile/operation/modules.php:820 ../../mobile/operation/alerts.php:87 +#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:228 +#: ../../mobile/operation/alerts.php:229 ../../mobile/operation/alerts.php:331 +#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369 +#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:672 +#: ../../include/functions_reporting_html.php:497 +#: ../../include/functions_reporting_html.php:961 +#: ../../include/functions_reporting_html.php:970 +#: ../../include/functions_reporting_html.php:1182 +#: ../../include/functions_reporting_html.php:1190 +#: ../../include/functions_reporting_html.php:1953 +#: ../../include/functions_reporting_html.php:2610 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/ajax/alert_list.ajax.php:282 +#: ../../include/ajax/alert_list.ajax.php:307 ../../include/ajax/module.php:845 +#: ../../include/ajax/custom_fields.php:406 +#: ../../include/functions_snmp.php:369 +#: ../../include/class/NetworkMap.class.php:2932 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:291 +#: ../../include/functions_snmp_browser.php:560 +#: ../../include/functions_events.php:194 +#: ../../include/functions_events.php:247 +#: ../../include/functions_events.php:2415 +#: ../../include/functions_events.php:4580 +#: ../../include/functions_events.php:6007 ../../operation/search_agents.php:55 +#: ../../operation/agentes/alerts_status.php:526 +#: ../../operation/agentes/alerts_status.php:561 +#: ../../operation/agentes/alerts_status.php:596 +#: ../../operation/agentes/alerts_status.php:628 +#: ../../operation/agentes/estado_agente.php:244 +#: ../../operation/agentes/estado_agente.php:728 +#: ../../operation/agentes/status_monitor.php:1166 +#: ../../operation/agentes/alerts_status.functions.php:88 +#: ../../operation/messages/message_list.php:160 +#: ../../operation/snmpconsole/snmp_view.php:560 +#: ../../operation/snmpconsole/snmp_view.php:794 +#: ../../operation/snmpconsole/snmp_view.php:1145 +#: ../../operation/incidents/incident_detail.php:304 +#: ../../operation/incidents/integriaims_export_csv.php:91 +#: ../../operation/incidents/configure_integriaims_incident.php:226 +#: ../../operation/incidents/incident.php:303 +#: ../../operation/incidents/incident.php:420 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:373 +#: ../../operation/incidents/list_integriaims_incidents.php:116 +#: ../../operation/search_modules.php:35 +#: ../../operation/events/events.build_table.php:351 +#: ../../operation/search_policies.php:37 +#: ../../operation/servers/recon_view.php:103 +msgid "Status" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:448 +#: ../../enterprise/godmode/policies/policy_agents.php:482 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:353 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:179 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:117 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:544 +#: ../../godmode/reporting/graph_builder.graph_editor.php:320 +#: ../../include/ajax/events.php:561 ../../include/functions_html.php:825 +#: ../../include/functions_html.php:968 +#: ../../include/functions_snmp_browser.php:1154 +#: ../../operation/events/events_list.php:426 +msgid "Filter group" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:95 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1446 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:180 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:722 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2947 +#: ../../enterprise/include/functions_events.php:117 +#: ../../godmode/snmpconsole/snmp_alert.php:1119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2642 +#: ../../godmode/events/event_edit_filter.php:327 +#: ../../mobile/operation/agents.php:238 ../../mobile/operation/modules.php:293 +#: ../../mobile/operation/alerts.php:222 ../../mobile/operation/events.php:700 +#: ../../include/ajax/module.php:247 +#: ../../include/class/ConfigPEN.class.php:621 +#: ../../include/class/CredentialStore.class.php:776 +#: ../../operation/snmpconsole/snmp_view.php:576 +#: ../../operation/events/events_list.php:753 +#: ../../operation/events/events.php:952 +msgid "Free search" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:121 +msgid "New cluster" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:44 +#: ../../enterprise/views/cluster/view.php:62 +#: ../../enterprise/views/cluster/edit.php:41 +#: ../../enterprise/views/cluster/edit.php:67 +msgid "Cluster list" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:50 +#: ../../enterprise/views/cluster/view.php:75 +msgid "Cluster details" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:70 +msgid "Edit this cluster" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:156 +#: ../../enterprise/views/cluster/view.php:158 +#: ../../enterprise/meta/include/functions_wizard_meta.php:242 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1146 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1531 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1815 +#: ../../enterprise/meta/agentsearch.php:225 +#: ../../enterprise/meta/agentsearch.php:232 +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:115 +#: ../../enterprise/godmode/policies/policy_agents.php:1399 +#: ../../enterprise/godmode/policies/policy_agents.php:1416 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:544 +#: ../../enterprise/godmode/setup/edit_skin.php:273 +#: ../../enterprise/include/class/VMware.app.php:777 +#: ../../enterprise/include/class/DatabaseHA.class.php:210 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3142 +#: ../../enterprise/include/functions_policies.php:4912 +#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/agentes/modificar_agente.php:586 +#: ../../godmode/agentes/module_manager_editor_common.php:230 +#: ../../godmode/agentes/module_manager_editor_common.php:827 +#: ../../godmode/agentes/module_manager_editor_common.php:975 +#: ../../godmode/massive/massive_edit_agents.php:642 +#: ../../godmode/massive/massive_edit_agents.php:718 +#: ../../godmode/massive/massive_edit_modules.php:693 +#: ../../godmode/alerts/alert_list.list.php:129 +#: ../../godmode/alerts/configure_alert_template.php:824 +#: ../../godmode/alerts/alert_view.php:512 ../../mobile/operation/agent.php:172 +#: ../../mobile/operation/alerts.php:50 +#: ../../include/functions_visual_map_editor.php:758 +#: ../../include/functions_reporting_html.php:2622 +#: ../../include/functions_treeview.php:72 +#: ../../include/functions_treeview.php:595 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:342 +#: ../../include/functions_reporting.php:4751 +#: ../../operation/search_agents.php:80 +#: ../../operation/agentes/estado_generalagente.php:109 +#: ../../operation/agentes/estado_generalagente.php:111 +#: ../../operation/agentes/alerts_status.functions.php:81 +msgid "Disabled" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:871 +#: ../../enterprise/godmode/services/services.service.php:434 +#: ../../godmode/agentes/modificar_agente.php:595 +#: ../../godmode/agentes/planned_downtime.list.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:679 +#: ../../godmode/agentes/agent_manager.php:692 +#: ../../godmode/agentes/module_manager_editor_common.php:972 +#: ../../godmode/agentes/module_manager.php:746 +#: ../../godmode/massive/massive_edit_agents.php:691 +#: ../../godmode/massive/massive_edit_modules.php:1032 +#: ../../mobile/operation/agent.php:179 ../../include/ajax/module.php:993 +#: ../../include/class/Tree.class.php:808 ../../operation/search_agents.php:87 +#: ../../operation/agentes/estado_agente.php:791 +#: ../../operation/agentes/estado_generalagente.php:115 +#: ../../operation/agentes/estado_generalagente.php:117 +msgid "Quiet" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:172 +#: ../../enterprise/views/cluster/view.php:180 +#: ../../godmode/agentes/modificar_agente.php:599 +#: ../../operation/search_agents.php:98 +#: ../../operation/agentes/estado_agente.php:795 +#: ../../operation/agentes/estado_generalagente.php:125 +#: ../../operation/agentes/estado_generalagente.php:133 +msgid "Agent in planned downtime" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:217 +msgid "Force cluster status calculation" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:245 +#: ../../enterprise/meta/agentsearch.php:115 +#: ../../enterprise/extensions/ipam/ipam_network.php:326 +#: ../../enterprise/godmode/modules/configure_local_component.php:171 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:371 +#: ../../enterprise/godmode/modules/local_components.php:502 +#: ../../enterprise/godmode/modules/local_components.php:527 +#: ../../enterprise/godmode/modules/local_components.php:562 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:209 +#: ../../enterprise/include/class/DeploymentCenter.class.php:716 +#: ../../enterprise/include/class/DeploymentCenter.class.php:777 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1249 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../enterprise/include/class/AgentRepository.class.php:336 +#: ../../enterprise/include/class/AgentRepository.class.php:613 +#: ../../enterprise/include/class/AgentRepository.class.php:656 +#: ../../enterprise/operation/agentes/tag_view.php:580 +#: ../../godmode/agentes/modificar_agente.php:493 +#: ../../godmode/agentes/planned_downtime.editor.php:1037 +#: ../../godmode/agentes/agent_manager.php:358 +#: ../../godmode/massive/massive_edit_agents.php:557 +#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:392 +#: ../../include/functions_reporting_html.php:2607 +#: ../../include/class/Diagnostics.class.php:739 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 +#: ../../include/functions_events.php:4080 ../../operation/search_agents.php:43 +#: ../../operation/search_agents.php:49 ../../operation/tree.php:56 +#: ../../operation/tree.php:110 ../../operation/agentes/estado_agente.php:713 +#: ../../operation/agentes/estado_generalagente.php:188 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:261 +#: ../../extensions/net_tools.php:364 +#: ../../operation/agentes/estado_generalagente.php:202 +msgid "IP address" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:263 +#: ../../enterprise/views/cluster/view.php:273 +#: ../../enterprise/meta/advanced/servers.build_table.php:98 +#: ../../enterprise/meta/advanced/servers.build_table.php:99 +#: ../../enterprise/meta/advanced/servers.build_table.php:105 +#: ../../enterprise/meta/advanced/metasetup.visual.php:802 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/extensions/ipam/ipam_network.php:363 +#: ../../enterprise/extensions/ipam/ipam_network.php:439 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:199 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:220 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:55 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:389 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_reporting.php:5379 +#: ../../enterprise/include/functions_services.php:2051 +#: ../../enterprise/include/functions_services.php:2259 +#: ../../enterprise/include/functions_services.php:2808 +#: ../../godmode/modules/manage_network_components.php:684 +#: ../../godmode/modules/manage_network_components.php:685 +#: ../../godmode/extensions.php:189 ../../godmode/extensions.php:204 +#: ../../godmode/agentes/planned_downtime.list.php:494 +#: ../../godmode/alerts/alert_view.php:108 +#: ../../godmode/servers/servers.build_table.php:115 +#: ../../godmode/servers/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:122 +#: ../../mobile/operation/agent.php:205 ../../mobile/operation/agent.php:215 +#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 +#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 +#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 +#: ../../include/functions_servers.php:1235 +#: ../../include/functions_reporting_html.php:591 +#: ../../include/functions_reporting_html.php:594 +#: ../../include/functions_reporting_html.php:4255 +#: ../../include/functions_reporting_html.php:4308 +#: ../../include/functions.php:1127 ../../include/functions.php:1133 +#: ../../include/functions.php:1137 ../../include/ajax/module.php:1033 +#: ../../include/functions_treeview.php:162 +#: ../../include/functions_treeview.php:331 +#: ../../include/functions_treeview.php:427 ../../include/functions_ui.php:2573 +#: ../../include/functions_ui.php:2581 ../../include/functions_db.php:208 +#: ../../include/functions_events.php:3554 +#: ../../include/functions_events.php:3664 +#: ../../include/functions_events.php:3685 +#: ../../include/functions_events.php:3690 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3704 +#: ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3767 +#: ../../include/functions_events.php:3794 +#: ../../include/functions_events.php:3814 +#: ../../include/functions_events.php:3908 +#: ../../include/functions_events.php:4045 +#: ../../include/functions_events.php:4076 +#: ../../include/functions_events.php:4090 +#: ../../include/functions_events.php:4095 +#: ../../include/functions_events.php:4125 +#: ../../include/functions_events.php:4218 +#: ../../include/functions_events.php:4285 +#: ../../include/functions_events.php:4295 +#: ../../include/functions_events.php:4454 +#: ../../include/functions_events.php:4522 +#: ../../include/functions_events.php:4598 +#: ../../include/functions_events.php:4627 +#: ../../include/functions_events.php:4642 +#: ../../include/functions_events.php:4652 +#: ../../include/functions_events.php:6786 +#: ../../include/functions_events.php:6805 +#: ../../include/functions_events.php:6810 +#: ../../include/functions_events.php:6817 +#: ../../include/functions_events.php:6830 +#: ../../include/functions_events.php:6843 +#: ../../include/functions_events.php:6855 +#: ../../include/functions_events.php:6906 +#: ../../include/functions_events.php:6933 +#: ../../include/functions_events.php:6953 +#: ../../operation/agentes/status_monitor.php:1511 +#: ../../operation/agentes/estado_generalagente.php:204 +#: ../../operation/agentes/estado_generalagente.php:210 +#: ../../operation/agentes/estado_generalagente.php:219 +#: ../../operation/agentes/estado_generalagente.php:347 +#: ../../operation/agentes/estado_generalagente.php:363 +#: ../../operation/agentes/estado_generalagente.php:374 +#: ../../operation/snmpconsole/snmp_view.php:919 +#: ../../operation/snmpconsole/snmp_view.php:939 +msgid "N/A" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:285 +#: ../../include/functions_treeview.php:708 +#: ../../operation/agentes/estado_generalagente.php:208 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:287 +msgid "Cluster agent" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:342 +#: ../../operation/agentes/estado_generalagente.php:816 +msgid "Events (Last 24h)" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:414 +#: ../../operation/agentes/stat_win.php:380 +#: ../../operation/agentes/interface_traffic_graph_win.php:247 +msgid "Reload" +msgstr "" + +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "" + +#: ../../enterprise/views/cluster/edit.php:84 +msgid "View this cluster" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:65 +msgid "Create visualmap" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:67 +#: ../../enterprise/meta/advanced/collections.editor.php:175 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:277 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:443 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:635 +#: ../../enterprise/meta/include/functions_autoprovision.php:480 +#: ../../enterprise/meta/include/functions_autoprovision.php:481 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/meta/include/functions_autoprovision.php:645 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2692 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:316 +#: ../../enterprise/godmode/agentes/collections.editor.php:210 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:184 +#: ../../enterprise/godmode/alerts/alert_events_list.php:720 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 +#: ../../enterprise/godmode/reporting/mysql_builder.php:112 +#: ../../enterprise/godmode/reporting/mysql_builder.php:124 +#: ../../enterprise/godmode/reporting/mysql_builder.php:133 +#: ../../enterprise/godmode/reporting/mysql_builder.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:425 +#: ../../enterprise/include/functions_tasklist.php:460 +#: ../../enterprise/include/functions_tasklist.php:485 +#: ../../enterprise/include/ajax/transactional.ajax.php:117 +#: ../../enterprise/include/ajax/transactional.ajax.php:205 +#: ../../enterprise/include/class/Omnishell.class.php:1086 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2975 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:611 +#: ../../enterprise/operation/agentes/tag_view.php:719 +#: ../../extensions/files_repo/files_repo_list.php:103 +#: ../../godmode/groups/group_list.php:736 +#: ../../godmode/groups/group_list.php:737 +#: ../../godmode/users/profile_list.php:364 +#: ../../godmode/users/user_list.php:540 +#: ../../godmode/agentes/modificar_agente.php:616 +#: ../../godmode/agentes/modificar_agente.php:622 +#: ../../godmode/agentes/planned_downtime.list.php:408 +#: ../../godmode/agentes/fields_manager.php:150 +#: ../../godmode/alerts/alert_special_days.php:504 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1797 +#: ../../godmode/reporting/reporting_builder.php:1042 +#: ../../godmode/events/event_responses.list.php:64 +#: ../../godmode/servers/servers.build_table.php:193 +#: ../../godmode/servers/plugin.php:163 ../../godmode/servers/plugin.php:1030 +#: ../../include/functions_cron.php:697 ../../include/functions_cron.php:719 +#: ../../include/ajax/module.php:975 +#: ../../include/class/NetworkMap.class.php:3038 +#: ../../operation/agentes/estado_agente.php:830 +#: ../../operation/agentes/estado_agente.php:833 +#: ../../operation/agentes/pandora_networkmap.php:701 +#: ../../operation/agentes/status_monitor.php:1341 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/list_integriaims_incidents.php:299 +#: ../../operation/search_reports.php:48 +#: ../../operation/servers/recon_view.php:115 +msgid "Edit" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:106 +#: ../../enterprise/meta/screens/screens.visualmap.php:125 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:90 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:597 +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../godmode/agentes/configurar_agente.php:369 +#: ../../godmode/agentes/modificar_agente.php:54 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/modificar_agente.php:654 ../../godmode/menu.php:531 +#: ../../godmode/setup/setup_visuals.php:159 +#: ../../godmode/setup/setup_visuals.php:223 +#: ../../godmode/setup/setup_visuals.php:277 +#: ../../godmode/setup/setup_visuals.php:282 +#: ../../godmode/setup/setup_visuals.php:321 +#: ../../godmode/setup/setup_visuals.php:358 +#: ../../godmode/setup/setup_visuals.php:380 +#: ../../godmode/setup/setup_visuals.php:405 +#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:443 +#: ../../godmode/setup/setup_visuals.php:462 +#: ../../godmode/setup/setup_visuals.php:612 +#: ../../godmode/reporting/visual_console_builder.php:795 +#: ../../godmode/module_library/module_library_view.php:56 +#: ../../godmode/module_library/module_library_view.php:65 +#: ../../operation/visual_console/pure_ajax.php:164 +#: ../../operation/visual_console/view.php:175 +#: ../../operation/visual_console/legacy_view.php:167 +#: ../../operation/agentes/estado_agente.php:811 +#: ../../operation/agentes/estado_agente.php:814 +#: ../../operation/agentes/status_monitor.php:50 +#: ../../operation/agentes/ver_agente.php:1550 +msgid "View" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:134 +#: ../../godmode/reporting/visual_console_builder.php:789 +#: ../../operation/visual_console/pure_ajax.php:160 +#: ../../operation/visual_console/legacy_view.php:163 +msgid "Builder" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:144 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:81 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:88 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:92 +#: ../../enterprise/include/functions_reporting.php:34 +#: ../../enterprise/include/functions_reporting.php:6973 +#: ../../enterprise/include/functions_reporting.php:6999 +#: ../../godmode/reporting/visual_console_builder.php:784 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../operation/visual_console/pure_ajax.php:155 +#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/legacy_view.php:158 +msgid "Wizard" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:152 +#: ../../godmode/reporting/visual_console_builder.php:772 +#: ../../operation/visual_console/pure_ajax.php:141 +#: ../../operation/visual_console/view.php:154 +#: ../../operation/visual_console/legacy_view.php:144 +msgid "List elements" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:160 +#: ../../godmode/reporting/visual_console_builder.php:768 +#: ../../godmode/reporting/graph_builder.php:253 +#: ../../godmode/reporting/reporting_builder.main.php:63 +#: ../../godmode/reporting/reporting_builder.php:3076 +#: ../../operation/visual_console/pure_ajax.php:136 +#: ../../operation/visual_console/view.php:149 +#: ../../operation/visual_console/legacy_view.php:139 +#: ../../operation/reporting/reporting_viewer.php:87 +#: ../../operation/reporting/graph_viewer.php:156 +msgid "Main data" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:168 +#: ../../godmode/reporting/visual_console_builder.php:764 +#: ../../operation/visual_console/pure_ajax.php:129 +#: ../../operation/visual_console/view.php:142 +#: ../../operation/visual_console/legacy_view.php:132 +#: ../../operation/gis_maps/render_view.php:132 +msgid "Show link to public Visual Console" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:187 +#: ../../godmode/reporting/visual_console_builder.php:760 +#: ../../operation/visual_console/pure_ajax.php:118 +#: ../../operation/visual_console/view.php:117 +#: ../../operation/visual_console/legacy_view.php:119 +msgid "Visual consoles list" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:197 +#: ../../godmode/reporting/visual_console_builder.php:803 +msgid "New visual console" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:205 +#: ../../enterprise/meta/screens/screens.visualmap.php:210 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:177 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:97 +#: ../../enterprise/godmode/reporting/visual_console_template.php:98 +#: ../../extensions/resource_exportation.php:426 +#: ../../godmode/users/configure_user.php:890 +#: ../../godmode/reporting/map_builder.php:93 +#: ../../godmode/reporting/visual_console_favorite.php:87 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:236 +#: ../../operation/users/user_edit.php:338 ../../operation/menu.php:189 +#: ../../operation/menu.php:193 +msgid "Visual console" +msgstr "" + +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:211 +#: ../../enterprise/meta/general/logon_ok.php:84 +msgid "Screens" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:32 +#: ../../godmode/servers/servers.build_table.php:37 +msgid "There are no servers configured into the database" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:623 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:40 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/class/AgentRepository.class.php:360 +#: ../../enterprise/include/class/AgentRepository.class.php:615 +#: ../../extensions/realtime_graphs.php:175 ../../godmode/extensions.php:137 +#: ../../godmode/servers/servers.build_table.php:68 +#: ../../include/functions_snmp_browser.php:679 +msgid "Version" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:426 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:536 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:615 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:227 +#: ../../enterprise/meta/monitoring/group_view.php:138 +#: ../../enterprise/meta/monitoring/group_view.php:179 +#: ../../enterprise/meta/include/functions_wizard_meta.php:407 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1819 +#: ../../enterprise/meta/agentsearch.php:118 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:109 +#: ../../enterprise/godmode/policies/policy_modules.php:449 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:559 +#: ../../enterprise/godmode/policies/policies.php:531 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:638 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:861 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:159 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:359 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:197 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/include/functions_reporting_csv.php:2133 +#: ../../enterprise/include/functions_policies.php:3719 +#: ../../enterprise/operation/agentes/tag_view.php:584 +#: ../../enterprise/operation/services/services.service_map.php:184 +#: ../../extensions/agents_alerts.php:206 +#: ../../extensions/agents_modules.php:693 +#: ../../godmode/agentes/configurar_agente.php:388 +#: ../../godmode/agentes/configurar_agente.php:623 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:573 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:613 +#: ../../godmode/agentes/modificar_agente.php:630 +#: ../../godmode/agentes/planned_downtime.editor.php:1039 +#: ../../godmode/agentes/planned_downtime.editor.php:1117 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:884 +#: ../../godmode/massive/massive_copy_modules.php:183 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_edit_plugins.php:363 +#: ../../godmode/massive/massive_edit_modules.php:398 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/graph_builder.graph_editor.php:336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1551 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:452 +#: ../../godmode/servers/servers.build_table.php:69 +#: ../../mobile/operation/agents.php:82 ../../mobile/operation/agents.php:399 +#: ../../mobile/operation/modules.php:212 ../../mobile/operation/home.php:78 +#: ../../mobile/operation/agent.php:304 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:4353 +#: ../../include/functions_reports.php:718 +#: ../../include/functions_reports.php:722 +#: ../../include/functions_reports.php:726 +#: ../../include/functions_reports.php:730 +#: ../../include/functions_reports.php:734 +#: ../../include/functions_reports.php:738 +#: ../../include/functions_reports.php:742 +#: ../../include/functions_reports.php:746 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:404 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:408 +#: ../../include/lib/Dashboard/Widgets/service_map.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 +#: ../../operation/search_agents.php:54 ../../operation/tree.php:83 +#: ../../operation/search_results.php:157 +#: ../../operation/agentes/estado_agente.php:725 +#: ../../operation/agentes/graphs.php:188 +#: ../../operation/agentes/exportdata.php:281 +#: ../../operation/agentes/group_view.php:155 +#: ../../operation/agentes/group_view.php:188 +msgid "Modules" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Lag" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:71 +msgid "T/Q" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:71 +msgid "Threads / Queued modules currently" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:283 +#: ../../enterprise/include/class/DatabaseHA.class.php:799 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:73 +#: ../../operation/incidents/integriaims_export_csv.php:94 +#: ../../operation/incidents/incident.php:424 +msgid "Updated" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:70 +#: ../../enterprise/meta/include/functions_autoprovision.php:616 +#: ../../enterprise/godmode/modules/local_components.php:564 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policies.php:435 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316 +#: ../../godmode/users/profile_list.php:301 +#: ../../godmode/users/user_list.php:335 +#: ../../godmode/alerts/alert_list.list.php:460 +#: ../../godmode/alerts/alert_templates.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/graphs.php:276 +#: ../../godmode/reporting/reporting_builder.php:838 +#: ../../godmode/reporting/reporting_builder.php:1029 +#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/plugin.php:973 +#: ../../include/functions_container.php:158 +#: ../../operation/gis_maps/gis_map.php:109 +msgid "Op." +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:89 +#: ../../godmode/servers/servers.build_table.php:101 +msgid "This is a master server" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:104 +#: ../../enterprise/meta/advanced/servers.build_table.php:110 +#: ../../godmode/servers/servers.build_table.php:121 +#: ../../godmode/servers/servers.build_table.php:127 +msgid "of" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:136 +#: ../../godmode/servers/servers.build_table.php:214 +msgid "Modules run by this server will stop working. Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:162 +#: ../../godmode/servers/servers.build_table.php:240 +msgid "Tactical server information" +msgstr "" + +#: ../../enterprise/meta/advanced/component_management.php:49 +#: ../../include/functions_menu.php:500 +msgid "Tags management" +msgstr "" + +#: ../../enterprise/meta/advanced/component_management.php:53 +msgid "Module groups Management" +msgstr "" + +#: ../../enterprise/meta/advanced/component_management.php:57 +msgid "OS Management" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:48 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:43 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.auth.php:44 +#: ../../enterprise/meta/advanced/metasetup.performance.php:44 #, php-format -msgid "Error sending message to user %s" +msgid "Could not be update: Error in %s" msgstr "" -#: ../../operation/messages/message_edit.php:145 -msgid "Message successfully sent" +#: ../../enterprise/meta/advanced/metasetup.visual.php:55 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:50 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:153 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.auth.php:51 +#: ../../enterprise/meta/advanced/metasetup.performance.php:51 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:82 +msgid "Successfully update" msgstr "" -#: ../../operation/messages/message_edit.php:146 +#: ../../enterprise/meta/advanced/metasetup.visual.php:95 +#: ../../godmode/menu.php:320 ../../godmode/setup/setup.php:108 +#: ../../godmode/setup/setup.php:180 +msgid "Visual styles" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:101 +#: ../../enterprise/meta/include/functions_meta.php:1293 +#: ../../godmode/setup/setup_visuals.php:1175 +#: ../../include/functions_config.php:848 +msgid "Date format string" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:104 +#: ../../godmode/setup/setup_visuals.php:1176 +msgid "Example" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:130 +#: ../../godmode/setup/setup_visuals.php:1194 +msgid "Timestamp, time comparison, or compact mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:132 +#: ../../godmode/setup/setup_visuals.php:1196 +msgid "Comparation in rollover" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:141 +#: ../../godmode/setup/setup_visuals.php:1197 +msgid "Timestamp in rollover" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:150 +#: ../../godmode/setup/setup_visuals.php:1198 +msgid "Compact mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:159 +#: ../../godmode/setup/setup_visuals.php:740 +#: ../../include/functions_config.php:856 +msgid "Graph color #1" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:169 +#: ../../godmode/setup/setup_visuals.php:744 +#: ../../include/functions_config.php:860 +msgid "Graph color #2" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:179 +#: ../../godmode/setup/setup_visuals.php:748 +#: ../../include/functions_config.php:864 +msgid "Graph color #3" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:190 +msgid "Data precision for reports and visual consoles" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:193 +msgid "Precision must be a integer number between 0 and 5" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:209 +#: ../../enterprise/meta/include/functions_meta.php:1338 +#: ../../godmode/setup/setup_visuals.php:855 +#: ../../godmode/reporting/visual_console_builder.wizard.php:305 +#: ../../include/functions_visual_map_editor.php:618 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:452 +msgid "Percentile" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:212 +msgid "Show percentile 95 in graphs" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:225 +#: ../../enterprise/meta/include/functions_meta.php:1392 +#: ../../godmode/setup/setup_visuals.php:780 +#: ../../include/functions_config.php:896 +msgid "Value to interface graphics" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:235 +#: ../../enterprise/meta/include/functions_meta.php:1404 +#: ../../godmode/users/configure_user.php:932 +#: ../../godmode/setup/setup_visuals.php:60 +#: ../../godmode/events/event_edit_filter.php:359 +#: ../../include/functions_config.php:913 +#: ../../operation/users/user_edit.php:289 +#: ../../operation/snmpconsole/snmp_view.php:531 +#: ../../operation/events/events_list.php:838 +msgid "Block size for pagination" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:245 +#: ../../enterprise/meta/include/functions_meta.php:1413 +#: ../../godmode/setup/setup_visuals.php:812 +#: ../../include/functions_config.php:917 +msgid "Use round corners" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:253 +#: ../../enterprise/meta/include/functions_meta.php:1422 +#: ../../include/functions_config.php:1121 +msgid "Disable help" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:261 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:699 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:332 +#: ../../enterprise/meta/advanced/metasetup.setup.php:338 +#: ../../enterprise/meta/advanced/metasetup.setup.php:348 +#: ../../enterprise/meta/advanced/metasetup.setup.php:354 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:176 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:248 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:345 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:583 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 +#: ../../enterprise/meta/event/custom_events.php:225 +#: ../../enterprise/meta/event/custom_events.php:271 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:373 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:395 +#: ../../enterprise/extensions/ipam/ipam_network.php:518 +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/modules/configure_local_component.php:672 +#: ../../enterprise/godmode/modules/configure_local_component.php:678 +#: ../../enterprise/godmode/modules/configure_local_component.php:686 +#: ../../enterprise/godmode/modules/configure_local_component.php:692 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:838 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:433 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:564 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:660 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:164 +#: ../../enterprise/godmode/policies/policy_alerts.php:518 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:425 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:531 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:115 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:173 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:231 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:467 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:580 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:847 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:863 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:879 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:895 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:910 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:916 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:714 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:820 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1050 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1066 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1082 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1098 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1114 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1129 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1135 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_agents.php:406 +#: ../../enterprise/godmode/policies/policy_agents.php:1362 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:107 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:191 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:93 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:367 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:519 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:520 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:521 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:522 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:571 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:188 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:227 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:250 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:103 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:181 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:105 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:820 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:934 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:969 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../enterprise/godmode/alerts/alert_events.php:567 +#: ../../enterprise/godmode/alerts/alert_events_list.php:686 +#: ../../enterprise/godmode/setup/setup.php:678 +#: ../../enterprise/godmode/setup/setup.php:695 +#: ../../enterprise/godmode/setup/setup.php:704 +#: ../../enterprise/godmode/setup/setup.php:721 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:255 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:738 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:784 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:164 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:548 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:567 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:581 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:591 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:601 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:605 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:530 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:562 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:586 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:602 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:644 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:677 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:686 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:705 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:350 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:369 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:380 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:78 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:484 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:894 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:910 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:931 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:940 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1253 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1281 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1300 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1327 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:337 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:483 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:515 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:568 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:601 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:631 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:652 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:672 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:697 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:720 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:741 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:949 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1043 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1058 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1068 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1083 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1105 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:187 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:219 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:225 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:237 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:283 +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../enterprise/include/class/Omnishell.class.php:836 +#: ../../enterprise/include/class/SAP.app.php:591 +#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:830 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:838 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:986 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1107 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1116 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1810 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2399 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2444 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3402 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:142 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../enterprise/operation/log/log_viewer.php:600 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:330 +#: ../../godmode/modules/manage_network_components_form_network.php:235 +#: ../../godmode/modules/manage_network_components_form.php:572 +#: ../../godmode/modules/manage_network_components_form.php:578 +#: ../../godmode/modules/manage_network_components_form.php:587 +#: ../../godmode/modules/manage_network_components_form.php:593 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:856 +#: ../../godmode/users/configure_user.php:870 +#: ../../godmode/users/configure_user.php:977 +#: ../../godmode/users/configure_user.php:983 +#: ../../godmode/agentes/status_monitor_custom_fields.php:216 +#: ../../godmode/agentes/status_monitor_custom_fields.php:264 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:103 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:152 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:197 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:430 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:533 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:788 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:804 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:820 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:836 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:851 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:857 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:461 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:584 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:719 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1075 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1091 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1107 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1123 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1139 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1154 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1160 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:458 +#: ../../godmode/agentes/agent_manager.php:394 +#: ../../godmode/agentes/agent_manager.php:727 +#: ../../godmode/agentes/agent_manager.php:896 +#: ../../godmode/agentes/agent_manager.php:1171 +#: ../../godmode/agentes/module_manager_editor_common.php:667 +#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1297 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 +#: ../../godmode/agentes/module_manager_editor_common.php:1312 +#: ../../godmode/agentes/module_manager_editor_common.php:1318 +#: ../../godmode/snmpconsole/snmp_alert.php:25 +#: ../../godmode/snmpconsole/snmp_alert.php:1127 +#: ../../godmode/gis_maps/configure_gis_map.php:511 +#: ../../godmode/massive/massive_copy_modules.php:363 +#: ../../godmode/massive/massive_copy_modules.php:496 +#: ../../godmode/massive/massive_delete_modules.php:478 +#: ../../godmode/massive/massive_delete_modules.php:571 +#: ../../godmode/massive/massive_delete_modules.php:618 +#: ../../godmode/massive/massive_delete_modules.php:665 +#: ../../godmode/massive/massive_delete_modules.php:673 +#: ../../godmode/massive/massive_delete_modules.php:674 +#: ../../godmode/massive/massive_delete_modules.php:675 +#: ../../godmode/massive/massive_delete_modules.php:676 +#: ../../godmode/massive/massive_delete_modules.php:742 +#: ../../godmode/massive/massive_delete_modules.php:772 +#: ../../godmode/massive/massive_add_alerts.php:275 +#: ../../godmode/massive/massive_edit_plugins.php:316 +#: ../../godmode/massive/massive_edit_agents.php:578 +#: ../../godmode/massive/massive_delete_alerts.php:331 +#: ../../godmode/massive/massive_add_action_alerts.php:319 +#: ../../godmode/massive/massive_edit_modules.php:430 +#: ../../godmode/massive/massive_edit_modules.php:847 +#: ../../godmode/massive/massive_edit_modules.php:981 +#: ../../godmode/massive/massive_edit_modules.php:1097 +#: ../../godmode/massive/massive_edit_modules.php:1132 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/massive/massive_edit_modules.php:1243 +#: ../../godmode/massive/massive_edit_modules.php:1314 +#: ../../godmode/massive/massive_edit_modules.php:1423 +#: ../../godmode/massive/massive_edit_modules.php:1424 +#: ../../godmode/massive/massive_edit_modules.php:1425 +#: ../../godmode/massive/massive_edit_modules.php:1426 +#: ../../godmode/massive/massive_edit_modules.php:1659 +#: ../../godmode/massive/massive_edit_modules.php:1719 +#: ../../godmode/alerts/alert_list.list.php:717 +#: ../../godmode/alerts/configure_alert_action.php:164 +#: ../../godmode/alerts/configure_alert_template.php:694 +#: ../../godmode/alerts/configure_alert_template.php:714 +#: ../../godmode/setup/os.builder.php:38 +#: ../../godmode/setup/setup_visuals.php:396 +#: ../../godmode/setup/setup_visuals.php:415 +#: ../../godmode/setup/setup_visuals.php:862 +#: ../../godmode/reporting/create_container.php:457 +#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:408 +#: ../../godmode/reporting/graph_builder.graph_editor.php:428 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1588 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1724 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1777 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2548 +#: ../../godmode/reporting/visual_console_builder.elements.php:390 +#: ../../godmode/reporting/visual_console_builder.elements.php:537 +#: ../../godmode/reporting/visual_console_builder.elements.php:547 +#: ../../godmode/reporting/visual_console_builder.wizard.php:286 +#: ../../godmode/reporting/visual_console_builder.wizard.php:458 +#: ../../godmode/reporting/visual_console_builder.wizard.php:471 +#: ../../godmode/reporting/visual_console_builder.wizard.php:505 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../godmode/reporting/visual_console_builder.wizard.php:557 +#: ../../godmode/reporting/visual_console_builder.wizard.php:752 +#: ../../godmode/reporting/visual_console_builder.wizard.php:762 +#: ../../godmode/reporting/visual_console_builder.wizard.php:794 +#: ../../godmode/events/event_edit_filter.php:643 +#: ../../godmode/events/custom_events.php:178 +#: ../../godmode/events/custom_events.php:226 +#: ../../godmode/wizards/HostDevices.class.php:1095 +#: ../../mobile/operation/events.php:638 +#: ../../include/functions_visual_map_editor.php:370 +#: ../../include/functions_visual_map_editor.php:372 +#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:867 +#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:982 +#: ../../include/functions.php:1076 ../../include/functions_networkmap.php:1483 +#: ../../include/ajax/planned_downtime.ajax.php:82 +#: ../../include/ajax/alert_list.ajax.php:480 +#: ../../include/ajax/custom_fields.php:658 ../../include/ajax/events.php:393 +#: ../../include/functions_integriaims.php:146 +#: ../../include/functions_profile.php:276 +#: ../../include/functions_profile.php:293 +#: ../../include/functions_profile.php:308 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:363 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:398 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:616 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:628 +#: ../../include/rest-api/models/VisualConsole/Item.php:1969 +#: ../../include/rest-api/models/VisualConsole/Item.php:2080 +#: ../../include/rest-api/models/VisualConsole/Item.php:2193 +#: ../../include/rest-api/models/VisualConsole/Item.php:2311 +#: ../../include/functions_html.php:366 ../../include/functions_html.php:611 +#: ../../include/functions_html.php:821 ../../include/functions_html.php:866 +#: ../../include/functions_html.php:913 ../../include/functions_html.php:914 +#: ../../include/functions_html.php:964 ../../include/functions_html.php:1009 +#: ../../include/functions_html.php:3623 +#: ../../include/class/NetworkMap.class.php:2804 +#: ../../include/class/NetworkMap.class.php:3048 +#: ../../include/class/NetworkMap.class.php:3057 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3125 +#: ../../include/class/NetworkMap.class.php:3210 +#: ../../include/class/NetworkMap.class.php:3216 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:325 +#: ../../include/lib/Dashboard/Widgets/service_map.php:227 +#: ../../include/lib/Dashboard/Widgets/service_map.php:247 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:301 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:311 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3384 +#: ../../include/functions_events.php:3400 +#: ../../operation/users/user_edit.php:382 +#: ../../operation/users/user_edit.php:418 +#: ../../operation/users/user_edit.php:475 +#: ../../operation/users/user_edit.php:489 +#: ../../operation/users/user_edit.php:833 +#: ../../operation/users/user_edit.php:840 +#: ../../operation/users/user_edit.php:849 +#: ../../operation/users/user_edit.php:856 +#: ../../operation/agentes/pandora_networkmap.editor.php:319 +#: ../../operation/agentes/ver_agente.php:986 +#: ../../operation/agentes/ver_agente.php:1029 +#: ../../operation/agentes/ver_agente.php:1039 +#: ../../operation/snmpconsole/snmp_browser.php:324 +#: ../../operation/snmpconsole/snmp_browser.php:339 +#: ../../operation/snmpconsole/snmp_browser.php:349 +#: ../../operation/snmpconsole/snmp_browser.php:468 +#: ../../operation/snmpconsole/snmp_view.php:605 +#: ../../operation/snmpconsole/snmp_view.php:1030 +#: ../../operation/snmpconsole/snmp_view.php:1041 +#: ../../operation/gis_maps/render_view.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:278 +#: ../../operation/incidents/list_integriaims_incidents.php:282 +#: ../../operation/events/events_list.php:518 +#: ../../operation/events/events_list.php:1269 +#: ../../operation/events/events.php:1596 +msgid "None" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:262 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:381 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:300 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:208 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:235 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:253 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:320 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:278 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:325 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/extensions/backup/main.php:112 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1454 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1478 +#: ../../enterprise/godmode/modules/local_components.php:482 +#: ../../enterprise/godmode/modules/local_components.php:508 +#: ../../enterprise/godmode/modules/local_components.php:533 +#: ../../enterprise/godmode/agentes/collections.data.php:432 +#: ../../enterprise/godmode/policies/policy_queue.php:414 +#: ../../enterprise/godmode/policies/policy_queue.php:419 +#: ../../enterprise/godmode/policies/policy_queue.php:430 +#: ../../enterprise/godmode/policies/policy_queue.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:699 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:114 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:191 +#: ../../enterprise/godmode/setup/setup_acl.php:362 +#: ../../enterprise/godmode/setup/setup_acl.php:379 +#: ../../enterprise/godmode/setup/setup_acl.php:396 +#: ../../enterprise/godmode/setup/setup_acl.php:620 +#: ../../enterprise/godmode/setup/setup_acl.php:628 +#: ../../enterprise/godmode/setup/setup_acl.php:639 +#: ../../enterprise/godmode/setup/setup_acl.php:680 +#: ../../enterprise/godmode/setup/setup_acl.php:711 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:185 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:608 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:634 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1838 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1845 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1870 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2549 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576 +#: ../../enterprise/include/functions_metaconsole.php:839 +#: ../../enterprise/include/functions_metaconsole.php:840 +#: ../../enterprise/include/functions_metaconsole.php:1188 +#: ../../enterprise/operation/agentes/tag_view.php:124 +#: ../../enterprise/operation/agentes/tag_view.php:150 +#: ../../enterprise/operation/agentes/tag_view.php:188 +#: ../../enterprise/operation/agentes/tag_view.php:216 +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../enterprise/operation/agentes/tag_view.php:283 +#: ../../enterprise/operation/agentes/tag_view.php:369 +#: ../../enterprise/operation/agentes/agent_inventory.php:74 +#: ../../enterprise/operation/log/log_viewer.php:469 +#: ../../enterprise/operation/log/log_viewer.php:512 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 +#: ../../enterprise/operation/inventory/inventory.php:57 +#: ../../enterprise/operation/inventory/inventory.php:58 +#: ../../enterprise/operation/inventory/inventory.php:134 +#: ../../enterprise/operation/inventory/inventory.php:135 +#: ../../enterprise/operation/inventory/inventory.php:193 +#: ../../extensions/agents_modules.php:401 +#: ../../extensions/files_repo/files_repo_form.php:46 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_components.php:574 +#: ../../godmode/massive/massive_copy_modules.php:111 +#: ../../godmode/massive/massive_copy_modules.php:271 +#: ../../godmode/massive/massive_delete_modules.php:303 +#: ../../godmode/massive/massive_delete_modules.php:350 +#: ../../godmode/massive/massive_delete_modules.php:405 +#: ../../godmode/massive/massive_delete_modules.php:426 +#: ../../godmode/massive/massive_delete_agents.php:148 +#: ../../godmode/massive/massive_delete_agents.php:162 +#: ../../godmode/massive/massive_edit_agents.php:435 +#: ../../godmode/massive/massive_edit_agents.php:448 +#: ../../godmode/massive/massive_edit_modules.php:284 +#: ../../godmode/massive/massive_edit_modules.php:331 +#: ../../godmode/massive/massive_edit_modules.php:369 +#: ../../godmode/massive/massive_edit_modules.php:454 +#: ../../godmode/admin_access_logs.php:83 +#: ../../godmode/admin_access_logs.php:87 +#: ../../godmode/alerts/alert_list.list.php:115 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:135 +#: ../../godmode/alerts/alert_templates.php:291 +#: ../../godmode/alerts/alert_list.php:413 +#: ../../godmode/alerts/alert_list.php:462 +#: ../../godmode/alerts/alert_list.php:476 +#: ../../godmode/setup/gis_step_2.php:207 +#: ../../godmode/setup/setup_visuals.php:863 +#: ../../godmode/reporting/reporting_builder.list_items.php:209 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.list_items.php:213 +#: ../../godmode/reporting/reporting_builder.list_items.php:235 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/create_container.php:514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1294 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2340 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2367 +#: ../../godmode/reporting/visual_console_builder.wizard.php:360 +#: ../../godmode/reporting/visual_console_builder.wizard.php:374 +#: ../../godmode/events/event_edit_filter.php:289 +#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:567 +#: ../../mobile/operation/agents.php:38 ../../mobile/operation/modules.php:48 +#: ../../mobile/operation/modules.php:264 +#: ../../mobile/operation/modules.php:279 ../../mobile/operation/alerts.php:47 +#: ../../mobile/operation/alerts.php:54 ../../mobile/operation/events.php:682 +#: ../../mobile/operation/events.php:692 ../../mobile/operation/events.php:1158 +#: ../../mobile/operation/events.php:1187 ../../include/functions.php:1074 +#: ../../include/functions.php:1333 ../../include/functions_groupview.php:95 +#: ../../include/functions_modules.php:3258 +#: ../../include/functions_modules.php:3260 +#: ../../include/functions_graph.php:3032 ../../include/functions_users.php:369 +#: ../../include/functions_users.php:612 +#: ../../include/functions_notifications.php:108 +#: ../../include/class/CredentialStore.class.php:494 +#: ../../include/functions_reporting.php:2306 +#: ../../include/lib/Dashboard/Widgets/events_list.php:350 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:371 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/functions_groups.php:685 +#: ../../include/functions_groups.php:1964 +#: ../../include/functions_events.php:5787 +#: ../../include/functions_events.php:6385 ../../operation/tree.php:157 +#: ../../operation/tree.php:201 ../../operation/agentes/estado_agente.php:245 +#: ../../operation/agentes/status_monitor.php:394 +#: ../../operation/agentes/status_monitor.php:422 +#: ../../operation/agentes/status_monitor.php:459 +#: ../../operation/agentes/status_monitor.php:538 +#: ../../operation/agentes/status_monitor.php:541 +#: ../../operation/agentes/status_monitor.php:641 +#: ../../operation/agentes/estado_monitores.php:513 +#: ../../operation/agentes/estado_monitores.php:558 +#: ../../operation/agentes/alerts_status.functions.php:78 +#: ../../operation/agentes/alerts_status.functions.php:84 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:118 +#: ../../operation/snmpconsole/snmp_view.php:525 +#: ../../operation/snmpconsole/snmp_view.php:554 +#: ../../operation/snmpconsole/snmp_view.php:562 +#: ../../operation/snmpconsole/snmp_view.php:847 +#: ../../operation/incidents/list_integriaims_incidents.php:122 +#: ../../operation/incidents/list_integriaims_incidents.php:133 +#: ../../operation/incidents/list_integriaims_incidents.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:161 +#: ../../operation/events/events_list.php:813 +#: ../../operation/events/events_list.php:825 +#: ../../operation/events/events_list.php:934 +#: ../../operation/events/events_list.php:946 +#: ../../operation/events/events.php:897 ../../operation/events/events.php:966 +#: ../../operation/events/events.php:1058 +#: ../../operation/events/events.php:1110 +#: ../../operation/events/events.php:2001 +#: ../../operation/events/events.build_table.php:616 +#: ../../general/subselect_data_module.php:62 +msgid "All" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:263 +#: ../../godmode/setup/setup_visuals.php:864 +msgid "On Boolean graphs" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:266 +msgid "Graph TIP view" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 +#: ../../operation/agentes/interface_traffic_graph_win.php:223 +msgid "This option may cause performance issues" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:281 +#: ../../godmode/setup/setup_visuals.php:873 +msgid "Standard mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:282 +#: ../../godmode/setup/setup_visuals.php:874 +msgid "Classic mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:284 +msgid "Soft graphs:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:304 +#: ../../godmode/setup/setup_visuals.php:879 +msgid "Zoom graphs:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:318 +#: ../../godmode/setup/setup_visuals.php:821 +msgid "Type of module charts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:320 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:213 +#: ../../godmode/setup/setup_visuals.php:822 +#: ../../godmode/setup/setup_visuals.php:839 +#: ../../godmode/reporting/create_container.php:326 +#: ../../godmode/reporting/graph_builder.main.php:151 +#: ../../include/functions_visual_map_editor.php:502 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:636 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:261 +#: ../../operation/agentes/graphs.php:229 +#: ../../operation/agentes/graphs.php:236 +#: ../../operation/agentes/graphs.php:402 +#: ../../operation/agentes/graphs.php:421 +#: ../../operation/reporting/graph_viewer.php:265 +msgid "Area" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:329 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:215 +#: ../../godmode/setup/setup_visuals.php:829 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../godmode/reporting/create_container.php:327 +#: ../../godmode/reporting/visual_console_builder.elements.php:278 +#: ../../godmode/reporting/graph_builder.main.php:153 +#: ../../include/functions_visual_map_editor.php:72 +#: ../../include/functions_visual_map_editor.php:501 +#: ../../include/functions_visual_map_editor.php:1309 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:635 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:263 +#: ../../operation/visual_console/view.php:275 +#: ../../operation/agentes/graphs.php:231 +#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/graphs.php:410 +#: ../../operation/agentes/graphs.php:425 +#: ../../operation/reporting/graph_viewer.php:267 +msgid "Line" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:339 +#: ../../enterprise/meta/include/functions_meta.php:1485 +msgid "Metaconsole elements" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:341 +msgid "The number of elements retrieved for each instance in some views." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:354 +#: ../../enterprise/meta/advanced/metasetup.visual.php:756 +#: ../../enterprise/meta/advanced/metasetup.visual.php:757 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 +#: ../../extensions/agents_alerts.php:104 +#: ../../extensions/agents_alerts.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:1039 +#: ../../godmode/setup/setup_visuals.php:926 +#: ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/setup/setup_visuals.php:1261 +#: ../../include/functions_visual_map_editor.php:1133 +#: ../../include/functions_visual_map_editor.php:1134 +#: ../../include/functions.php:493 ../../include/functions.php:633 +#: ../../include/functions_html.php:1431 +msgid "seconds" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:355 +#: ../../enterprise/meta/advanced/metasetup.visual.php:758 +#: ../../enterprise/meta/advanced/metasetup.visual.php:759 +#: ../../enterprise/meta/advanced/metasetup.visual.php:760 +#: ../../enterprise/meta/advanced/metasetup.visual.php:761 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/setup/setup_visuals.php:929 +#: ../../godmode/setup/setup_visuals.php:930 +#: ../../godmode/setup/setup_visuals.php:931 +#: ../../godmode/setup/setup_visuals.php:1262 +#: ../../include/functions_visual_map_editor.php:1135 +#: ../../include/functions_visual_map_editor.php:1136 +#: ../../include/functions_visual_map_editor.php:1137 +#: ../../include/functions_visual_map_editor.php:1138 +#: ../../include/functions.php:497 ../../include/functions.php:637 +#: ../../include/functions_html.php:1432 +msgid "minutes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:356 +#: ../../godmode/setup/setup_visuals.php:1263 ../../include/functions.php:498 +#: ../../include/functions.php:638 ../../include/functions_html.php:1433 +msgid "hours" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:357 +#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 +#: ../../godmode/setup/setup_visuals.php:1264 ../../include/functions.php:494 +#: ../../include/functions.php:634 ../../include/functions_html.php:1434 +msgid "days" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:358 +#: ../../godmode/setup/setup_visuals.php:1265 ../../include/functions.php:495 +#: ../../include/functions.php:635 ../../include/functions_html.php:1436 +msgid "months" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:359 +#: ../../godmode/setup/setup_visuals.php:1266 ../../include/functions.php:496 +#: ../../include/functions.php:636 ../../include/functions_html.php:1437 +msgid "years" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:362 +msgid "Add new custom value to intervals" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:585 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:737 +#: ../../enterprise/meta/advanced/links.php:175 +#: ../../enterprise/meta/include/functions_autoprovision.php:675 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1367 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:468 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:354 +#: ../../enterprise/godmode/agentes/collection_manager.php:119 +#: ../../enterprise/godmode/agentes/collection_manager.php:139 +#: ../../enterprise/godmode/agentes/inventory_manager.php:182 +#: ../../enterprise/godmode/agentes/plugins_manager.php:104 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:223 +#: ../../enterprise/godmode/policies/policy_plugins.php:96 +#: ../../enterprise/godmode/policies/policy_alerts.php:540 +#: ../../enterprise/godmode/policies/policy_alerts.php:604 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:397 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:215 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:150 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:138 +#: ../../enterprise/godmode/alerts/alert_events_list.php:699 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:345 +#: ../../enterprise/godmode/setup/setup_acl.php:407 +#: ../../enterprise/godmode/setup/setup_acl.php:426 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:829 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:217 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:295 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:71 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2183 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:266 +#: ../../extensions/files_repo/files_repo_form.php:84 +#: ../../godmode/modules/manage_network_templates_form.php:335 +#: ../../godmode/users/configure_profile.php:355 +#: ../../godmode/agentes/planned_downtime.editor.php:854 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/agentes/planned_downtime.editor.php:1158 +#: ../../godmode/snmpconsole/snmp_alert.php:1436 +#: ../../godmode/gis_maps/configure_gis_map.php:562 +#: ../../godmode/massive/massive_add_alerts.php:267 +#: ../../godmode/massive/massive_add_action_alerts.php:236 +#: ../../godmode/alerts/alert_list.list.php:769 +#: ../../godmode/setup/news.php:289 ../../godmode/setup/links.php:166 +#: ../../godmode/setup/setup_visuals.php:1216 +#: ../../godmode/setup/setup_visuals.php:1271 +#: ../../godmode/setup/setup_visuals.php:1291 +#: ../../godmode/reporting/graph_builder.graph_editor.php:377 +#: ../../godmode/reporting/visual_console_builder.wizard.php:551 +#: ../../godmode/events/event_edit_filter.php:475 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../godmode/servers/plugin.php:1052 +#: ../../include/functions_notifications.php:853 +#: ../../include/class/ManageNetScanScripts.class.php:475 +#: ../../include/functions_snmp_browser.php:1234 +#: ../../operation/incidents/incident_detail.php:425 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:321 +#: ../../operation/events/events_list.php:601 +#: ../../operation/events/events_list.php:675 +#: ../../operation/events/events.php:528 ../../operation/events/events.php:602 +msgid "Add" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:392 +#: ../../enterprise/meta/include/functions_meta.php:1641 +#: ../../godmode/setup/setup_visuals.php:1276 +#: ../../include/functions_config.php:1280 +msgid "Delete interval" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:426 +#: ../../enterprise/meta/include/functions_meta.php:1494 +#: ../../godmode/setup/setup_visuals.php:1166 +msgid "Show only the group name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:428 +#: ../../include/functions_config.php:1149 +msgid "Show the group name instead the group icon." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:438 +#: ../../enterprise/meta/include/functions_meta.php:1693 +#: ../../godmode/setup/setup_visuals.php:82 +#: ../../include/functions_config.php:1165 +msgid "Display data of proc modules in other format" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:446 +#: ../../enterprise/meta/include/functions_meta.php:1698 +#: ../../godmode/setup/setup_visuals.php:91 +#: ../../include/functions_config.php:1169 +msgid "Display text proc modules have state is ok" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:456 +#: ../../enterprise/meta/include/functions_meta.php:1703 +#: ../../godmode/setup/setup_visuals.php:95 +#: ../../include/functions_config.php:1173 +msgid "Display text when proc modules have state critical" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:477 +#: ../../godmode/setup/setup_visuals.php:172 +#: ../../include/functions_config.php:993 +msgid "Login background" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:479 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:493 +#: ../../enterprise/meta/advanced/metasetup.visual.php:527 +#: ../../enterprise/meta/advanced/metasetup.visual.php:882 +#: ../../enterprise/meta/advanced/metasetup.visual.php:973 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:427 +#: ../../enterprise/godmode/policies/policy_alerts.php:340 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:229 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:107 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:89 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/operation/agentes/policy_view.php:268 +#: ../../extensions/agents_alerts.php:556 +#: ../../godmode/users/configure_user.php:718 +#: ../../godmode/users/configure_user.php:889 +#: ../../godmode/agentes/module_manager_editor_common.php:576 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/alerts/alert_list.list.php:584 +#: ../../godmode/alerts/alert_special_days.php:306 +#: ../../godmode/alerts/alert_special_days.php:318 +#: ../../godmode/alerts/alert_view.php:43 +#: ../../godmode/setup/gis_step_2.php:403 +#: ../../godmode/setup/gis_step_2.php:489 +#: ../../godmode/setup/setup_visuals.php:192 +#: ../../godmode/setup/setup_visuals.php:214 +#: ../../godmode/setup/setup_visuals.php:434 +#: ../../godmode/setup/setup_visuals.php:453 +#: ../../godmode/setup/setup_visuals.php:1038 +#: ../../godmode/setup/setup_visuals.php:1075 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../include/functions_ui.php:1210 ../../operation/users/user_edit.php:298 +#: ../../operation/users/user_edit.php:301 +#: ../../operation/users/user_edit.php:312 +#: ../../operation/users/user_edit.php:337 +#: ../../operation/snmpconsole/snmp_view.php:542 +#: ../../operation/gis_maps/gis_map.php:106 +#: ../../operation/events/events_list.php:849 +msgid "Default" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:517 +#: ../../enterprise/meta/include/functions_meta.php:1521 +#: ../../godmode/setup/setup_visuals.php:186 +#: ../../include/functions_config.php:937 +msgid "Custom favicon" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:519 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:544 +msgid "Custom logo (header)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:573 +#: ../../godmode/setup/setup_visuals.php:285 +msgid "Custom logo (header white background)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:601 +#: ../../godmode/setup/setup_visuals.php:324 +msgid "Custom logo (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:629 +#: ../../godmode/setup/setup_visuals.php:363 +msgid "Custom Splash (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:657 +#: ../../enterprise/meta/include/functions_meta.php:1548 +#: ../../godmode/setup/setup_visuals.php:507 +#: ../../include/functions_config.php:1005 +msgid "Product name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:668 +#: ../../enterprise/meta/include/functions_meta.php:1557 +#: ../../godmode/setup/setup_visuals.php:513 +#: ../../include/functions_config.php:1009 +msgid "Copyright notice" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:679 +#: ../../godmode/setup/setup_visuals.php:482 +msgid "Title 1 (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:690 +#: ../../godmode/setup/setup_visuals.php:489 +msgid "Title 2 (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:700 +#: ../../enterprise/meta/include/functions_meta.php:1584 +#: ../../godmode/setup/setup_visuals.php:495 +msgid "Docs URL (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:710 +#: ../../enterprise/meta/include/functions_meta.php:1593 +#: ../../godmode/setup/setup_visuals.php:501 +msgid "Support URL (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:720 +#: ../../godmode/setup/setup_visuals.php:630 +msgid "Graphs font family" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:733 +#: ../../enterprise/meta/include/functions_meta.php:1467 +#: ../../godmode/setup/setup_visuals.php:563 +msgid "Visual effects and animation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:743 +#: ../../godmode/setup/setup_visuals.php:916 +msgid "Legacy Visual Console View" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:745 +msgid "To use the old view when using the Visual Console visor" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:762 +#: ../../godmode/setup/setup_visuals.php:932 +#: ../../include/functions_visual_map_editor.php:1139 +msgid "hour" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:764 +#: ../../godmode/setup/setup_visuals.php:934 +msgid "Default cache expiration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:769 +#: ../../godmode/setup/setup_visuals.php:939 +#: ../../include/functions_visual_map_editor.php:1165 +msgid "No cache" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:781 +#: ../../enterprise/meta/include/functions_meta.php:1718 +#: ../../godmode/setup/setup_visuals.php:951 +#: ../../include/functions_config.php:1057 +msgid "Default interval for refresh on Visual Console" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:784 +msgid "This interval will affect to Visual Console pages" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:810 +#: ../../godmode/setup/setup_visuals.php:1330 +msgid "Data multiplier to use in graphs/data" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:814 +#: ../../godmode/setup/setup_visuals.php:1332 +msgid "Use 1024 when module unit are bytes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +#: ../../godmode/setup/setup_visuals.php:1333 +msgid "Use always 1000" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:816 +#: ../../godmode/setup/setup_visuals.php:1334 +msgid "Use always 1024" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:840 +msgid "Reports configuration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:846 +#: ../../godmode/setup/setup_visuals.php:1003 +msgid "Show report info with description" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:847 +msgid "" +"Custom report description info. It will be applied to all reports and " +"templates by default." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:858 +#: ../../godmode/setup/setup_visuals.php:1012 +msgid "Custom report front page" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:859 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:870 +#: ../../enterprise/meta/include/functions_meta.php:1365 +#: ../../godmode/setup/setup_visuals.php:1022 +#: ../../include/functions_config.php:1316 +msgid "PDF font size (px)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:873 +#: ../../enterprise/meta/include/functions_meta.php:1356 +#: ../../godmode/setup/setup_visuals.php:1027 +#: ../../include/functions_config.php:1312 +msgid "HTML font size for SLA (em)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:876 +#: ../../godmode/setup/setup_visuals.php:1032 +msgid "PDF font family" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:887 +#: ../../enterprise/meta/include/functions_meta.php:1449 +#: ../../godmode/setup/setup_visuals.php:1046 +msgid "Graph image height for HTML reports" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:889 +msgid "" +"This is the height in pixels of the module graph or custom graph in the " +"reports (only: HTML)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:906 +#: ../../godmode/setup/setup_visuals.php:1319 +#: ../../include/functions_config.php:1344 +msgid "CSV divider" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:947 +#: ../../enterprise/meta/include/functions_meta.php:1374 +#: ../../enterprise/meta/include/functions_meta.php:1383 +#: ../../godmode/setup/setup_visuals.php:1055 +msgid "Interval description" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:949 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 seconds”, " +"a short one is 10h 20m 33s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:964 +#: ../../enterprise/meta/advanced/metasetup.visual.php:977 +#: ../../enterprise/meta/advanced/metasetup.visual.php:987 +#: ../../enterprise/meta/advanced/metasetup.visual.php:997 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1012 +#: ../../enterprise/meta/include/functions_meta.php:1657 +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../enterprise/meta/include/functions_meta.php:1673 +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../enterprise/meta/include/functions_meta.php:1683 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../godmode/setup/setup_visuals.php:1069 +#: ../../godmode/setup/setup_visuals.php:1080 +#: ../../godmode/setup/setup_visuals.php:1088 +#: ../../godmode/setup/setup_visuals.php:1099 +#: ../../godmode/setup/setup_visuals.php:1115 +#: ../../include/functions_config.php:1320 +#: ../../include/functions_config.php:1324 +#: ../../include/functions_config.php:1328 +#: ../../include/functions_config.php:1332 +#: ../../include/functions_config.php:1336 +#: ../../include/functions_config.php:1340 +msgid "Custom report front" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:964 +#: ../../enterprise/meta/include/functions_meta.php:1503 +#: ../../enterprise/meta/include/functions_meta.php:1673 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:103 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1069 +#: ../../include/functions_config.php:941 +#: ../../include/functions_config.php:1328 +msgid "Custom logo" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:965 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console " +"installation. You can upload more files (ONLY JPEG AND PNG) with the upload " +"tool." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:987 +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1088 +#: ../../include/functions_config.php:1332 +msgid "Header" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:997 +#: ../../enterprise/meta/include/functions_meta.php:1683 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:119 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1099 +#: ../../include/functions_config.php:1336 +msgid "First page" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1012 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1115 +#: ../../include/functions_config.php:1340 +msgid "Footer" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1028 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:228 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:154 +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:578 +#: ../../enterprise/meta/advanced/links.php:135 +#: ../../enterprise/meta/advanced/collections.data.php:150 +#: ../../enterprise/meta/advanced/collections.data.php:219 +#: ../../enterprise/meta/advanced/collections.data.php:260 +#: ../../enterprise/meta/advanced/collections.data.php:331 +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:123 +#: ../../enterprise/meta/advanced/collections.editor.php:196 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:156 +#: ../../enterprise/meta/advanced/cron_main.php:454 +#: ../../enterprise/meta/advanced/metasetup.setup.php:313 +#: ../../enterprise/meta/advanced/metasetup.performance.php:121 +#: ../../enterprise/meta/event/custom_events.php:211 +#: ../../enterprise/meta/include/functions_autoprovision.php:564 +#: ../../enterprise/meta/include/functions_autoprovision.php:763 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:327 +#: ../../enterprise/extensions/translate_string.php:364 +#: ../../enterprise/extensions/ipam/ipam_network.php:619 +#: ../../enterprise/extensions/ipam/ipam_massive.php:112 +#: ../../enterprise/extensions/ipam/ipam_editor.php:227 +#: ../../enterprise/extensions/vmware/vmware_view.php:1243 +#: ../../enterprise/extensions/vmware/vmware_view.php:1679 +#: ../../enterprise/godmode/modules/configure_local_component.php:651 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:410 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:342 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:654 +#: ../../enterprise/godmode/agentes/collection_manager.php:148 +#: ../../enterprise/godmode/agentes/collection_manager.php:149 +#: ../../enterprise/godmode/agentes/collection_manager.php:260 +#: ../../enterprise/godmode/agentes/collection_manager.php:261 +#: ../../enterprise/godmode/agentes/inventory_manager.php:180 +#: ../../enterprise/godmode/agentes/inventory_manager.php:250 +#: ../../enterprise/godmode/agentes/collections.data.php:98 +#: ../../enterprise/godmode/agentes/collections.data.php:225 +#: ../../enterprise/godmode/agentes/collections.data.php:294 +#: ../../enterprise/godmode/agentes/collections.data.php:381 +#: ../../enterprise/godmode/agentes/collections.data.php:382 +#: ../../enterprise/godmode/agentes/collections.editor.php:159 +#: ../../enterprise/godmode/agentes/collections.editor.php:230 +#: ../../enterprise/godmode/agentes/plugins_manager.php:122 +#: ../../enterprise/godmode/agentes/plugins_manager.php:147 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:250 +#: ../../enterprise/godmode/policies/configure_policy.php:112 +#: ../../enterprise/godmode/policies/policy_modules.php:419 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:213 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:289 +#: ../../enterprise/godmode/policies/policy_collections.php:202 +#: ../../enterprise/godmode/policies/policy_collections.php:275 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:364 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:361 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:174 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1012 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:271 +#: ../../enterprise/godmode/services/services.service.php:559 +#: ../../enterprise/godmode/services/services.elements.php:764 +#: ../../enterprise/godmode/setup/setup_history.php:79 +#: ../../enterprise/godmode/setup/setup.php:451 +#: ../../enterprise/godmode/setup/setup.php:630 +#: ../../enterprise/godmode/setup/setup_module_library.php:58 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:242 +#: ../../enterprise/godmode/setup/setup_log_collector.php:65 +#: ../../enterprise/godmode/setup/edit_skin.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:107 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:175 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:77 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1632 +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +#: ../../enterprise/include/class/AgentRepository.class.php:885 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/SAPView.class.php:308 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2183 +#: ../../enterprise/include/functions_update_manager.php:252 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:170 +#: ../../enterprise/operation/agentes/collection_view.php:100 +#: ../../enterprise/operation/agentes/collection_view.php:101 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:224 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:452 +#: ../../extensions/files_repo/files_repo_form.php:78 +#: ../../extensions/net_tools.php:499 +#: ../../godmode/modules/manage_nc_groups_form.php:90 +#: ../../godmode/modules/manage_network_templates_form.php:166 +#: ../../godmode/modules/manage_network_components_form.php:307 +#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_modu_group.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:271 +#: ../../godmode/users/configure_profile.php:360 +#: ../../godmode/users/configure_user.php:1087 +#: ../../godmode/agentes/agent_template.php:258 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 +#: ../../godmode/agentes/module_manager_editor.php:743 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:487 +#: ../../godmode/agentes/planned_downtime.list.php:492 +#: ../../godmode/agentes/planned_downtime.editor.php:846 +#: ../../godmode/agentes/agent_manager.php:981 +#: ../../godmode/agentes/configure_field.php:135 +#: ../../godmode/netflow/nf_edit_form.php:258 +#: ../../godmode/snmpconsole/snmp_alert.php:1098 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/snmpconsole/snmp_filters.php:230 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/massive/massive_edit_plugins.php:376 +#: ../../godmode/massive/massive_edit_agents.php:818 +#: ../../godmode/massive/massive_edit_modules.php:1175 +#: ../../godmode/alerts/configure_alert_command.php:237 +#: ../../godmode/alerts/alert_list.list.php:150 +#: ../../godmode/alerts/alert_list.list.php:157 +#: ../../godmode/alerts/alert_list.list.php:845 +#: ../../godmode/alerts/configure_alert_special_days.php:104 +#: ../../godmode/alerts/configure_alert_action.php:282 +#: ../../godmode/alerts/configure_alert_action.php:286 +#: ../../godmode/setup/news.php:223 ../../godmode/setup/setup_ehorus.php:162 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/os.php:55 ../../godmode/setup/os.php:113 +#: ../../godmode/setup/setup_auth.php:306 +#: ../../godmode/setup/setup_integria.php:554 ../../godmode/setup/links.php:126 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/setup/setup_visuals.php:1346 +#: ../../godmode/setup/setup_general.php:397 +#: ../../godmode/setup/performance.php:672 +#: ../../godmode/reporting/visual_console_builder.data.php:220 +#: ../../godmode/reporting/create_container.php:298 +#: ../../godmode/reporting/visual_console_builder.elements.php:664 +#: ../../godmode/reporting/reporting_builder.main.php:46 +#: ../../godmode/reporting/graph_builder.main.php:182 +#: ../../godmode/events/event_responses.editor.php:205 +#: ../../godmode/events/event_edit_filter.php:622 +#: ../../godmode/events/custom_events.php:166 +#: ../../godmode/servers/modificar_server.php:98 +#: ../../godmode/servers/plugin.php:182 ../../godmode/servers/plugin.php:564 +#: ../../godmode/tag/edit_tag.php:229 +#: ../../godmode/category/edit_category.php:166 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../include/ajax/alert_list.ajax.php:541 +#: ../../include/class/ConfigPEN.class.php:691 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/ManageNetScanScripts.class.php:768 +#: ../../include/class/CredentialStore.class.php:1119 +#: ../../include/class/ModuleTemplates.class.php:927 +#: ../../include/functions_events.php:3405 +#: ../../include/functions_events.php:3485 +#: ../../include/functions_update_manager.php:1406 +#: ../../operation/users/user_edit.php:714 +#: ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/incidents/configure_integriaims_incident.php:320 +#: ../../operation/reporting/reporting_viewer.php:219 +#: ../../operation/events/events_list.php:1059 +msgid "Update" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1210 +#: ../../godmode/setup/setup_visuals.php:1594 +msgid "Logo preview" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1232 +#: ../../godmode/setup/setup_visuals.php:1624 +msgid "Splash Preview" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1237 +#: ../../godmode/setup/setup_visuals.php:1648 +msgid "Background preview" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:272 +#: ../../enterprise/meta/advanced/synchronizing.user.php:564 +#: ../../enterprise/meta/advanced/synchronizing.user.php:651 +#: ../../enterprise/meta/advanced/synchronizing.component.php:279 +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../enterprise/meta/include/functions_meta.php:111 +#: ../../enterprise/meta/include/functions_meta.php:208 +#: ../../godmode/groups/group_list.php:530 #, php-format -msgid "Error sending message to group %s" +msgid "Error connecting to %s" msgstr "" -#: ../../operation/messages/message_edit.php:203 -msgid "Select user" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:280 +#, php-format +msgid "Error creating/updating %s/%s comamnds" msgstr "" -#: ../../operation/messages/message_edit.php:204 -msgid "OR" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:284 +#, php-format +msgid "Created/Updated %s/%s commands" msgstr "" -#: ../../operation/messages/message_edit.php:205 -msgid "Select group" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:289 +#, php-format +msgid "Error creating/updating %s/%s actions" msgstr "" -#: ../../operation/messages/message_list.php:74 -msgid "Not deleted. Error deleting messages" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:293 +#, php-format +msgid "Created/Updated %s/%s actions" msgstr "" -#: ../../operation/messages/message_list.php:80 -#: ../../operation/messages/message_list.php:88 -msgid "You have" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:298 +#, php-format +msgid "Error creating/updating %s/%s templates" msgstr "" -#: ../../operation/messages/message_list.php:81 -msgid "sent message(s)" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 +#, php-format +msgid "Created/Updated %s/%s templates" msgstr "" -#: ../../operation/messages/message_list.php:89 -msgid "unread message(s)" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 +msgid "Synchronizing Alerts" msgstr "" -#: ../../operation/messages/message_list.php:97 -msgid "There are no messages." +#: ../../enterprise/meta/advanced/synchronizing.alert.php:320 +#: ../../enterprise/meta/advanced/synchronizing.group.php:177 +#: ../../enterprise/meta/advanced/synchronizing.user.php:583 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:75 +#: ../../enterprise/meta/advanced/synchronizing.component.php:300 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:88 +#: ../../enterprise/meta/advanced/synchronizing.os.php:71 +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:130 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:104 +#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../godmode/agentes/agent_incidents.php:94 +#: ../../godmode/massive/massive_copy_modules.php:128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1243 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/events/custom_events.php:108 +#: ../../include/functions_events.php:202 +#: ../../include/functions_events.php:271 +#: ../../include/functions_events.php:4223 +#: ../../include/functions_events.php:4291 +#: ../../include/functions_events.php:6094 +#: ../../operation/agentes/pandora_networkmap.editor.php:306 +#: ../../operation/incidents/incident_detail.php:317 +#: ../../operation/incidents/incident.php:425 +#: ../../operation/events/events_list.php:985 +#: ../../operation/events/events.php:1005 +#: ../../operation/events/events.build_table.php:293 +msgid "Source" msgstr "" -#: ../../operation/messages/message_list.php:136 -msgid "Click to read" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:321 +#: ../../enterprise/meta/advanced/synchronizing.group.php:178 +#: ../../enterprise/meta/advanced/synchronizing.user.php:584 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:76 +#: ../../enterprise/meta/advanced/synchronizing.component.php:301 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:89 +#: ../../enterprise/meta/advanced/synchronizing.os.php:72 +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +msgid "This metaconsole" msgstr "" -#: ../../operation/messages/message_list.php:141 -msgid "Mark as unread" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:333 +#: ../../enterprise/meta/advanced/synchronizing.group.php:216 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:86 +#: ../../enterprise/meta/advanced/synchronizing.component.php:311 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:99 +#: ../../enterprise/meta/advanced/synchronizing.os.php:82 +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:182 +#: ../../godmode/massive/massive_copy_modules.php:223 +msgid "Targets" msgstr "" -#: ../../operation/messages/message_list.php:148 -#: ../../operation/messages/message_list.php:153 -msgid "Message unread - click to read" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:340 +#: ../../enterprise/meta/advanced/synchronizing.group.php:223 +#: ../../enterprise/meta/advanced/synchronizing.user.php:660 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:621 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:93 +#: ../../enterprise/meta/advanced/synchronizing.component.php:318 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:106 +#: ../../enterprise/meta/advanced/synchronizing.os.php:89 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:127 +#: ../../enterprise/include/functions_setup.php:172 +msgid "Sync" msgstr "" -#: ../../operation/messages/message_list.php:180 -msgid "No Subject" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 +msgid "Agent: " msgstr "" -#: ../../operation/search_helps.php:22 -msgid "Zero results found." +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 +msgid " already exists in target node" msgstr "" -#: ../../operation/search_helps.php:23 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +msgid " group does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 +msgid " policies definitions does not match with defined ones in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 +msgid " plugins does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +msgid " collections does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 +msgid " inventory does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 +msgid " alerts template does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 +msgid " alerts action does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 +msgid "Exists agent conf for agent: " +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 +msgid " please remove configuration file from target node." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:129 +#: ../../enterprise/include/functions_metaconsole.php:2755 +msgid "There are differences between MR versions" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:133 +#: ../../enterprise/include/functions_metaconsole.php:2748 +msgid "Target server ip address is set" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 +msgid "The agent: " +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 +msgid " has been successfully added to the migration queue " +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 +msgid " has not been added due to problems in the insertion" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:227 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:244 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:100 +#: ../../enterprise/godmode/reporting/graph_template_list.php:127 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:126 +#: ../../godmode/modules/manage_nc_groups.php:142 +#: ../../godmode/agentes/planned_downtime.list.php:113 +#: ../../godmode/netflow/nf_item_list.php:123 +#: ../../godmode/netflow/nf_item_list.php:151 +#: ../../godmode/netflow/nf_edit.php:92 ../../godmode/netflow/nf_edit.php:125 +#: ../../godmode/reporting/map_builder.php:166 +#: ../../godmode/reporting/graphs.php:99 ../../godmode/reporting/graphs.php:110 +#: ../../godmode/reporting/graphs.php:151 +#: ../../godmode/events/event_filter.php:55 +#: ../../godmode/events/event_filter.php:82 +#: ../../operation/reporting/graph_viewer.php:41 +#: ../../operation/reporting/graph_viewer.php:49 +msgid "Not deleted. Error deleting data" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:247 +msgid "Problems delete queue" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:263 +msgid "Move Agents" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:279 +msgid "Source Server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:281 +msgid "Destination Server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:313 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:137 +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/include/functions_autoprovision.php:450 +#: ../../enterprise/godmode/agentes/collections.agents.php:55 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:110 +#: ../../enterprise/godmode/policies/policy_queue.php:459 +#: ../../enterprise/godmode/policies/policies.php:433 +#: ../../enterprise/godmode/policies/policies.php:553 +#: ../../enterprise/godmode/policies/policy_agents.php:532 +#: ../../enterprise/godmode/policies/policy_agents.php:651 +#: ../../enterprise/godmode/policies/policy.php:61 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../enterprise/include/functions_cron.php:210 +#: ../../enterprise/include/functions_tasklist.php:278 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/include/functions_reporting.php:6835 +#: ../../enterprise/include/functions_policies.php:3800 +#: ../../enterprise/operation/services/services.service_map.php:179 +#: ../../extensions/agents_alerts.php:205 +#: ../../extensions/agents_alerts.php:390 +#: ../../extensions/agents_modules.php:416 +#: ../../extensions/agents_modules.php:693 +#: ../../godmode/massive/massive_standby_alerts.php:164 +#: ../../godmode/massive/massive_delete_modules.php:511 +#: ../../godmode/massive/massive_add_alerts.php:203 +#: ../../godmode/massive/massive_delete_agents.php:172 +#: ../../godmode/massive/massive_edit_plugins.php:345 +#: ../../godmode/massive/massive_enable_disable_alerts.php:151 +#: ../../godmode/massive/massive_edit_agents.php:457 +#: ../../godmode/massive/massive_delete_alerts.php:278 +#: ../../godmode/massive/massive_edit_modules.php:483 +#: ../../godmode/alerts/alert_list.list.php:68 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1420 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1482 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1602 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +#: ../../mobile/include/functions_web.php:21 +#: ../../mobile/operation/agents.php:190 ../../mobile/operation/home.php:72 +#: ../../mobile/operation/agent.php:160 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:1890 +#: ../../include/functions_reporting_html.php:2344 +#: ../../include/functions_cron.php:557 +#: ../../include/class/Diagnostics.class.php:1152 +#: ../../include/class/Diagnostics.class.php:1156 +#: ../../include/class/Diagnostics.class.php:1160 +#: ../../include/class/Diagnostics.class.php:1164 +#: ../../include/class/NetworkMap.class.php:3214 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:333 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:336 +#: ../../include/lib/Dashboard/Widgets/service_map.php:341 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:79 +#: ../../operation/agentes/group_view.php:154 +#: ../../operation/agentes/group_view.php:187 +msgid "Agents" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:315 +msgid "Agents to move" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:336 +msgid "Add agents to destination server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:344 +msgid "Remove agents to doesn't move to destination server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +msgid "Discard history data" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:375 +msgid "Agents do not exist in target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:376 +msgid "Check group is synchronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:377 +msgid "All policies needed are synchronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:378 +msgid "All remote plugins needed are synchronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:379 +msgid "All collections needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:380 +msgid "" +"All remote inventory definitions needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:381 +msgid "" +"All alert templates definitions needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:382 +msgid "All alert actions needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:383 +msgid "Agents conf does not exists in target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:384 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 +msgid "Check target server ip address is set" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:395 +msgid "Move" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:409 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:105 +#: ../../enterprise/include/functions_inventory.php:76 +#: ../../include/functions_events.php:238 +msgid "Agent alias" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:410 +msgid "Source node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:411 +msgid "Target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:187 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/alerts/alert_events.php:616 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:399 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:507 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:736 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1042 +#: ../../godmode/snmpconsole/snmp_alert.php:1126 +#: ../../godmode/alerts/alert_list.list.php:120 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:945 +#: ../../godmode/alerts/alert_view.php:97 +#: ../../godmode/setup/setup_integria.php:304 +#: ../../godmode/setup/setup_integria.php:427 +#: ../../include/functions_reporting_html.php:4065 +#: ../../include/functions_events.php:4255 +#: ../../operation/agentes/estado_generalagente.php:586 +#: ../../operation/incidents/incident_detail.php:347 +#: ../../operation/incidents/integriaims_export_csv.php:93 +#: ../../operation/incidents/configure_integriaims_incident.php:272 +#: ../../operation/incidents/incident.php:309 +#: ../../operation/incidents/incident.php:422 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:376 +#: ../../operation/incidents/list_integriaims_incidents.php:144 +msgid "Priority" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +#: ../../enterprise/godmode/alerts/alert_events.php:120 +#: ../../enterprise/godmode/alerts/alert_events.php:124 +#: ../../enterprise/godmode/alerts/alert_events.php:141 +#: ../../enterprise/godmode/alerts/alert_events.php:145 +#: ../../enterprise/godmode/alerts/alert_events.php:162 +#: ../../enterprise/godmode/alerts/alert_events.php:166 +#: ../../enterprise/godmode/setup/setup_history.php:66 +#: ../../godmode/alerts/configure_alert_template.php:178 +#: ../../godmode/alerts/configure_alert_template.php:182 +#: ../../godmode/alerts/configure_alert_template.php:199 +#: ../../godmode/alerts/configure_alert_template.php:203 +#: ../../godmode/alerts/configure_alert_template.php:220 +#: ../../godmode/alerts/configure_alert_template.php:224 +#: ../../include/functions_config.php:1458 +msgid "Step" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 +msgid "Active db only" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:416 +#: ../../enterprise/meta/advanced/collections.php:324 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 +#: ../../enterprise/meta/include/functions_autoprovision.php:451 +#: ../../enterprise/meta/include/functions_alerts_meta.php:125 +#: ../../enterprise/meta/include/functions_alerts_meta.php:144 +#: ../../enterprise/extensions/backup/main.php:136 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:374 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:321 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:273 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:366 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:83 +#: ../../enterprise/godmode/agentes/inventory_manager.php:221 +#: ../../enterprise/godmode/agentes/collections.php:326 +#: ../../enterprise/godmode/policies/policy_alerts.php:287 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:256 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:343 +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 +#: ../../enterprise/godmode/setup/setup_skins.php:122 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2234 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2393 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3355 +#: ../../enterprise/operation/agentes/transactional_map.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:150 +#: ../../enterprise/operation/services/services.list.php:439 +#: ../../extensions/agents_alerts.php:207 +#: ../../extensions/agents_alerts.php:225 +#: ../../godmode/groups/group_list.php:691 +#: ../../godmode/agentes/modificar_agente.php:497 +#: ../../godmode/agentes/planned_downtime.editor.php:1042 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:221 +#: ../../godmode/alerts/alert_list.list.php:114 +#: ../../godmode/alerts/alert_list.list.php:459 +#: ../../godmode/alerts/alert_commands.php:416 +#: ../../godmode/alerts/alert_view.php:347 +#: ../../godmode/alerts/alert_list.builder.php:95 +#: ../../godmode/events/event_responses.list.php:53 +#: ../../godmode/tag/tag.php:230 ../../godmode/category/category.php:112 +#: ../../include/functions_reporting_html.php:2402 +#: ../../include/functions_cron.php:460 +#: ../../include/functions_treeview.php:417 +#: ../../include/functions_filemanager.php:622 +msgid "Actions" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:452 +msgid "Creating modules in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:456 +msgid "Disabling agent in source node and enabling in target one" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:460 +msgid "Transferring data" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 +msgid "Creating agent in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:471 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1578 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1583 +#: ../../enterprise/include/class/DatabaseHA.class.php:207 +#: ../../enterprise/include/class/AgentRepository.class.php:832 +#: ../../enterprise/include/class/AgentRepository.class.php:837 +#: ../../enterprise/include/class/Omnishell.class.php:1029 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/transactional_map.php:318 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:450 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 +#: ../../include/ajax/snmp_browser.ajax.php:219 +#: ../../include/class/ConfigPEN.class.php:738 +#: ../../include/class/ConfigPEN.class.php:743 +#: ../../include/class/HelpFeedBack.class.php:353 +#: ../../include/class/Diagnostics.class.php:2077 +#: ../../include/class/CredentialStore.class.php:1065 +#: ../../include/class/CredentialStore.class.php:1070 +#: ../../include/class/ModuleTemplates.class.php:1319 +#: ../../include/class/ModuleTemplates.class.php:1324 +#: ../../include/class/AgentWizard.class.php:687 +#: ../../include/class/AgentWizard.class.php:692 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:597 +#: ../../operation/visual_console/view.php:602 +msgid "Failed" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:481 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:414 +#: ../../enterprise/include/class/Omnishell.class.php:362 +msgid "Finished" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:476 +msgid "Completed" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:481 +msgid "Queued" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:486 +#: ../../enterprise/extensions/backup/main.php:170 +#: ../../enterprise/operation/agentes/transactional_map.php:241 +#: ../../godmode/agentes/planned_downtime.list.php:404 +#: ../../godmode/agentes/planned_downtime.list.php:470 +msgid "Running" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 +msgid "checking migration requirements" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:138 +msgid "Server deleted successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:140 +msgid "There was a problem deleting the server" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:126 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:128 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:141 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:143 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:171 +#: ../../enterprise/extensions/translate_string.php:302 +#: ../../godmode/users/configure_user.php:712 +#: ../../operation/users/user_edit.php:306 +msgid "Language" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:183 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:244 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:341 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:508 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:579 +#: ../../enterprise/meta/agentsearch.php:89 +#: ../../enterprise/meta/general/main_header.php:687 +#: ../../enterprise/meta/general/main_header.php:689 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:514 +#: ../../enterprise/godmode/modules/local_components.php:539 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:307 +#: ../../enterprise/godmode/policies/policy_collections.php:234 +#: ../../enterprise/godmode/policies/policy_agents.php:695 +#: ../../enterprise/godmode/policies/policy_agents.php:700 +#: ../../enterprise/godmode/alerts/alert_events_list.php:423 +#: ../../enterprise/godmode/alerts/alert_events_list.php:434 +#: ../../enterprise/operation/agentes/tag_view.php:198 +#: ../../enterprise/operation/agentes/agent_inventory.php:109 +#: ../../enterprise/operation/agentes/agent_inventory.php:114 +#: ../../enterprise/operation/log/log_viewer.php:382 +#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../enterprise/operation/inventory/inventory.php:196 +#: ../../enterprise/operation/inventory/inventory.php:237 +#: ../../enterprise/operation/services/services.treeview_services.php:118 +#: ../../enterprise/operation/services/services.list.php:184 +#: ../../enterprise/operation/services/services.list.php:262 +#: ../../enterprise/operation/services/services.table_services.php:163 +#: ../../enterprise/operation/services/services.table_services.php:241 +#: ../../extensions/module_groups.php:270 +#: ../../godmode/modules/manage_network_components.php:599 +#: ../../godmode/groups/group_list.php:631 +#: ../../godmode/groups/group_list.php:634 +#: ../../godmode/users/user_list.php:270 ../../godmode/users/user_list.php:280 +#: ../../godmode/agentes/modificar_agente.php:208 +#: ../../godmode/agentes/modificar_agente.php:214 +#: ../../godmode/agentes/planned_downtime.list.php:144 +#: ../../godmode/agentes/planned_downtime.list.php:183 +#: ../../godmode/agentes/module_manager.php:44 +#: ../../godmode/admin_access_logs.php:69 +#: ../../godmode/alerts/alert_actions.php:188 +#: ../../godmode/alerts/alert_actions.php:201 +#: ../../godmode/alerts/alert_templates.php:297 +#: ../../godmode/alerts/alert_templates.php:308 +#: ../../godmode/reporting/map_builder.php:302 +#: ../../godmode/reporting/map_builder.php:323 +#: ../../godmode/reporting/graphs.php:178 +#: ../../godmode/reporting/visual_console_favorite.php:108 +#: ../../godmode/reporting/visual_console_favorite.php:138 +#: ../../godmode/reporting/reporting_builder.item_editor.php:954 +#: ../../godmode/reporting/reporting_builder.php:681 +#: ../../godmode/module_library/module_library_view.php:84 +#: ../../godmode/module_library/module_library_view.php:94 +#: ../../include/functions_snmp.php:358 +#: ../../include/functions_snmp_browser.php:766 +#: ../../include/functions_snmp_browser.php:1177 +#: ../../operation/search_results.php:191 +#: ../../operation/agentes/estado_agente.php:231 +#: ../../operation/agentes/estado_agente.php:255 +#: ../../operation/agentes/status_monitor.php:444 +#: ../../operation/agentes/alerts_status.functions.php:178 +#: ../../operation/agentes/alerts_status.functions.php:187 +#: ../../operation/incidents/incident.php:368 +#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:184 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:303 +#: ../../enterprise/godmode/policies/policies.php:352 +#: ../../enterprise/godmode/policies/policy_collections.php:228 +#: ../../godmode/admin_access_logs.php:70 +msgid "Free text for search (*)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:203 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:204 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:205 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:598 +#: ../../enterprise/godmode/setup/setup_acl.php:338 +#: ../../enterprise/godmode/setup/setup_acl.php:632 +#: ../../enterprise/include/functions_cron.php:546 +#: ../../enterprise/include/functions_backup.php:523 +#: ../../enterprise/include/functions_backup.php:524 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:747 +#: ../../include/functions_html.php:1208 ../../include/functions_html.php:1209 +#: ../../include/functions_html.php:1313 ../../include/functions_html.php:1314 +#: ../../include/functions_html.php:1474 ../../include/functions_html.php:1475 +#: ../../include/class/CredentialStore.class.php:869 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Custom" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3082 +#: ../../include/class/NetworkMap.class.php:3083 +msgid "Relations" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:615 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:363 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:532 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:670 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2268 +#: ../../enterprise/include/functions_reporting_csv.php:959 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/operation/services/services.service.php:171 +#: ../../enterprise/operation/services/services.list.php:432 +#: ../../godmode/agentes/module_manager_editor_common.php:1130 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:102 +#: ../../godmode/massive/massive_edit_modules.php:812 +#: ../../godmode/alerts/configure_alert_template.php:730 +#: ../../godmode/setup/setup_visuals.php:1207 +#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1288 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2078 +#: ../../godmode/reporting/visual_console_builder.wizard.php:339 +#: ../../include/functions_visual_map_editor.php:625 +#: ../../include/functions_reporting_html.php:856 +#: ../../include/functions_reporting_html.php:1785 +#: ../../include/functions_reporting_html.php:3665 +#: ../../include/functions_reporting_html.php:4183 +#: ../../include/ajax/events.php:1690 ../../include/functions_graph.php:5285 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:499 +#: ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:526 +msgid "Value" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:550 +#: ../../enterprise/extensions/ipam/ipam_list.php:145 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:375 +#: ../../enterprise/godmode/policies/policy_alerts.php:510 +#: ../../enterprise/godmode/policies/policy_modules.php:1448 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../enterprise/godmode/alerts/alert_events.php:630 +#: ../../enterprise/godmode/alerts/alert_events.php:649 +#: ../../enterprise/godmode/alerts/alert_events_list.php:503 +#: ../../enterprise/godmode/reporting/graph_template_list.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3367 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3390 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:389 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2517 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 +#: ../../enterprise/include/functions_services.php:2494 +#: ../../enterprise/operation/agentes/policy_view.php:209 +#: ../../extensions/agents_alerts.php:520 +#: ../../godmode/modules/manage_nc_groups.php:232 +#: ../../godmode/modules/manage_network_components.php:672 +#: ../../godmode/modules/manage_network_templates.php:236 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/planned_downtime.editor.php:1126 +#: ../../godmode/agentes/module_manager.php:654 +#: ../../godmode/netflow/nf_item_list.php:180 +#: ../../godmode/netflow/nf_edit.php:148 +#: ../../godmode/snmpconsole/snmp_alert.php:1287 +#: ../../godmode/snmpconsole/snmp_alert.php:1364 +#: ../../godmode/snmpconsole/snmp_filters.php:260 +#: ../../godmode/massive/massive_operations.php:340 +#: ../../godmode/massive/massive_standby_alerts.php:211 +#: ../../godmode/massive/massive_delete_action_alerts.php:224 +#: ../../godmode/massive/massive_enable_disable_alerts.php:199 +#: ../../godmode/massive/massive_add_action_alerts.php:210 +#: ../../godmode/admin_access_logs.php:82 +#: ../../godmode/admin_access_logs.php:197 +#: ../../godmode/alerts/alert_list.list.php:714 +#: ../../godmode/alerts/alert_view.php:415 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2897 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3299 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3320 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:126 +#: ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:2403 +#: ../../include/functions_reporting_html.php:4689 +#: ../../include/functions.php:2889 ../../include/ajax/alert_list.ajax.php:280 +#: ../../include/ajax/alert_list.ajax.php:305 +#: ../../include/ajax/alert_list.ajax.php:472 +#: ../../include/functions_profile.php:216 +#: ../../include/class/ModuleTemplates.class.php:817 +#: ../../include/functions_events.php:6130 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.php:524 +#: ../../operation/agentes/alerts_status.php:559 +#: ../../operation/agentes/alerts_status.php:594 +#: ../../operation/agentes/alerts_status.php:626 +#: ../../operation/agentes/alerts_status.functions.php:110 +#: ../../operation/snmpconsole/snmp_view.php:836 +#: ../../operation/snmpconsole/snmp_view.php:1185 +#: ../../operation/search_alerts.php:36 +#: ../../operation/events/events.build_table.php:362 +#: ../../general/logon_ok.php:246 +msgid "Action" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:70 +msgid "Passwords" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:76 +#: ../../enterprise/meta/include/functions_meta.php:567 +#: ../../enterprise/godmode/setup/setup.php:480 +#: ../../include/functions_config.php:473 +msgid "Enable password policy" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:77 +#: ../../enterprise/meta/advanced/metasetup.password.php:119 +#: ../../enterprise/meta/advanced/metasetup.password.php:124 +#: ../../enterprise/meta/advanced/metasetup.password.php:130 +#: ../../enterprise/meta/advanced/metasetup.password.php:136 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/advanced/metasetup.setup.php:146 +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:217 +#: ../../enterprise/meta/advanced/metasetup.setup.php:275 +#: ../../enterprise/meta/advanced/metasetup.setup.php:286 +#: ../../enterprise/meta/advanced/metasetup.performance.php:80 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:439 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:508 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:848 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:876 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:330 +#: ../../enterprise/godmode/setup/setup_auth.php:372 +#: ../../enterprise/godmode/setup/setup_auth.php:1102 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:176 +#: ../../enterprise/godmode/reporting/visual_console_template.php:214 +#: ../../enterprise/include/functions_cron.php:718 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2141 +#: ../../godmode/update_manager/update_manager.setup.php:261 +#: ../../godmode/users/configure_user.php:882 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:687 +#: ../../godmode/massive/massive_edit_agents.php:696 +#: ../../godmode/massive/massive_edit_modules.php:588 +#: ../../godmode/massive/massive_edit_modules.php:657 +#: ../../godmode/massive/massive_edit_modules.php:697 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1009 +#: ../../godmode/massive/massive_edit_modules.php:1037 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/reporting/reporting_builder.main.php:172 +#: ../../godmode/reporting/reporting_builder.php:965 +#: ../../godmode/reporting/visual_console_builder.wizard.php:400 +#: ../../godmode/reporting/visual_console_builder.wizard.php:487 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_profile.php:255 ../../include/functions_snmp.php:390 +#: ../../operation/users/user_edit.php:302 +#: ../../operation/netflow/nf_live_view.php:452 +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Yes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:78 +#: ../../enterprise/meta/advanced/metasetup.password.php:120 +#: ../../enterprise/meta/advanced/metasetup.password.php:125 +#: ../../enterprise/meta/advanced/metasetup.password.php:131 +#: ../../enterprise/meta/advanced/metasetup.password.php:137 +#: ../../enterprise/meta/advanced/metasetup.password.php:141 +#: ../../enterprise/meta/advanced/metasetup.password.php:145 +#: ../../enterprise/meta/advanced/metasetup.setup.php:143 +#: ../../enterprise/meta/advanced/metasetup.setup.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:207 +#: ../../enterprise/meta/advanced/metasetup.setup.php:214 +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +#: ../../enterprise/meta/advanced/metasetup.setup.php:276 +#: ../../enterprise/meta/advanced/metasetup.setup.php:296 +#: ../../enterprise/meta/advanced/metasetup.performance.php:81 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:509 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:549 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:877 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:333 +#: ../../enterprise/godmode/setup/setup_auth.php:375 +#: ../../enterprise/godmode/setup/setup_auth.php:1105 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:427 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:178 +#: ../../enterprise/godmode/reporting/visual_console_template.php:214 +#: ../../enterprise/include/functions_cron.php:717 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2141 +#: ../../godmode/update_manager/update_manager.setup.php:262 +#: ../../godmode/users/configure_user.php:883 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:538 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:697 +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/massive/massive_edit_modules.php:658 +#: ../../godmode/massive/massive_edit_modules.php:698 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1010 +#: ../../godmode/massive/massive_edit_modules.php:1038 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/alerts/alert_view.php:384 ../../godmode/setup/news.php:277 +#: ../../godmode/reporting/reporting_builder.main.php:179 +#: ../../godmode/reporting/reporting_builder.php:967 +#: ../../godmode/reporting/visual_console_builder.wizard.php:410 +#: ../../godmode/reporting/visual_console_builder.wizard.php:488 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 +#: ../../include/functions_profile.php:255 ../../include/functions_snmp.php:382 +#: ../../include/functions_events.php:4550 +#: ../../include/functions_events.php:4555 +#: ../../operation/users/user_edit.php:303 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/snmpconsole/snmp_view.php:629 +msgid "No" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:98 +#: ../../enterprise/meta/include/functions_meta.php:576 +#: ../../enterprise/godmode/setup/setup.php:489 +#: ../../include/functions_config.php:477 +msgid "Min. size password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:99 +#: ../../enterprise/godmode/setup/setup.php:497 +msgid " Caracters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/meta/include/functions_meta.php:603 +#: ../../enterprise/godmode/setup/setup.php:518 +#: ../../include/functions_config.php:481 +msgid "Password expiration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +msgid "Set 0 if never expire." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:103 +#: ../../enterprise/godmode/setup/setup.php:526 +msgid " Days" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/meta/include/functions_meta.php:621 +#: ../../enterprise/godmode/setup/setup.php:538 +#: ../../include/functions_config.php:489 +msgid "User blocked if login fails" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:107 +#: ../../enterprise/godmode/setup/setup.php:546 +msgid " Minutes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/meta/include/functions_meta.php:630 +#: ../../enterprise/godmode/setup/setup.php:549 +#: ../../include/functions_config.php:493 +msgid "Number of failed login attempts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +msgid "Two attempts minimum" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:111 +#: ../../enterprise/godmode/setup/setup.php:557 +msgid " Attempts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/meta/include/functions_meta.php:650 +#: ../../enterprise/godmode/setup/setup.php:578 +#: ../../include/functions_config.php:513 +msgid "Compare previous password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:118 +#: ../../enterprise/meta/include/functions_meta.php:639 +#: ../../enterprise/godmode/setup/setup.php:569 +#: ../../include/functions_config.php:509 +msgid "Enable password history" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/include/functions_meta.php:660 +#: ../../enterprise/godmode/setup/setup.php:560 +#: ../../include/functions_config.php:505 +msgid "Apply password policy to admin users" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:129 +#: ../../enterprise/meta/include/functions_meta.php:612 +#: ../../enterprise/godmode/setup/setup.php:529 +#: ../../include/functions_config.php:485 +msgid "Force change password on first login" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:135 +#: ../../enterprise/meta/include/functions_meta.php:585 +#: ../../enterprise/godmode/setup/setup.php:500 +#: ../../include/functions_config.php:497 +msgid "Password must have numbers" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/include/functions_meta.php:594 +#: ../../enterprise/godmode/setup/setup.php:509 +#: ../../include/functions_config.php:501 +msgid "Password must have symbols" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/include/functions_meta.php:670 +#: ../../enterprise/godmode/setup/setup.php:590 +#: ../../include/functions_config.php:517 +msgid "Activate reset password" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.php:34 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/advanced/synchronizing.php:32 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:38 +#: ../../enterprise/meta/monitoring/group_view.php:34 +#: ../../enterprise/meta/monitoring/tactical.php:36 +#: ../../enterprise/meta/index.php:784 ../../enterprise/meta/agentsearch.php:29 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../godmode/netflow/nf_item_list.php:51 +#: ../../godmode/netflow/nf_edit.php:53 +#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../operation/agentes/ver_agente.php:1162 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Main" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.php:38 +msgid "Propagation" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:170 +msgid "Create rule" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 +#: ../../godmode/update_manager/update_manager.setup.php:127 +#: ../../godmode/update_manager/update_manager.setup.php:178 +msgid "Succesful Update the url config vars." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:89 +#: ../../godmode/update_manager/update_manager.setup.php:128 +#: ../../godmode/update_manager/update_manager.setup.php:179 +msgid "Unsuccesful Update the url config vars." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:96 +#: ../../godmode/setup/setup_general.php:359 +msgid "Mail configuration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:101 +#: ../../include/functions_config.php:335 +msgid "From dir" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:364 +#: ../../include/functions_config.php:339 +msgid "From name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:107 +#: ../../include/functions_config.php:331 +msgid "Server SMTP" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:110 +#: ../../include/functions_config.php:343 +msgid "Port SMTP" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:113 +#: ../../godmode/setup/setup_general.php:376 +#: ../../include/functions_config.php:351 +msgid "Email user" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:116 +#: ../../godmode/setup/setup_general.php:379 +#: ../../include/functions_config.php:355 +msgid "Email password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:49 +msgid "Consoles Setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:57 +#: ../../enterprise/meta/advanced/metasetup.php:179 +msgid "General setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:65 +#: ../../enterprise/meta/advanced/metasetup.php:182 +msgid "Passwords setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:74 +#: ../../enterprise/meta/advanced/metasetup.php:186 ../../godmode/menu.php:314 +#: ../../godmode/setup/setup.php:98 ../../godmode/setup/setup.php:169 +msgid "Authentication" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:84 +#: ../../enterprise/meta/advanced/metasetup.php:190 +msgid "Visual setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:92 +#: ../../enterprise/meta/advanced/metasetup.php:194 +msgid "Performance setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:100 +#: ../../enterprise/meta/advanced/metasetup.php:198 ../../godmode/menu.php:378 +#: ../../godmode/setup/file_manager.php:28 +msgid "File manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:108 +#: ../../enterprise/meta/advanced/metasetup.php:202 +msgid "Strings translation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:116 +#: ../../enterprise/meta/advanced/metasetup.php:206 +msgid "Mail" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:128 +msgid "Relations rules" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:141 +msgid "Options Update Manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:149 +#: ../../enterprise/meta/advanced/metasetup.php:218 +msgid "Offline Update Manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:157 +#: ../../enterprise/meta/advanced/metasetup.php:222 +msgid "Online Update Manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:174 +msgid "Consoles setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:210 +msgid "Relations Rules" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:214 +msgid "Online Update Options" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:41 +#: ../../enterprise/meta/advanced/metasetup.auth.php:24 +msgid "" +"Be aware that group synchronization can change the group configuration of " +"the node" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:77 +#: ../../enterprise/meta/advanced/synchronizing.group.php:78 +#: ../../enterprise/meta/advanced/synchronizing.group.php:97 +#: ../../enterprise/meta/advanced/synchronizing.group.php:98 +msgid "Open for more details" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:86 +#, php-format +msgid "Error creating %s groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:106 +#, php-format +msgid "Error updating %s groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:117 +#: ../../enterprise/meta/advanced/synchronizing.group.php:118 +msgid "Open for more details in creation" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:128 +#: ../../enterprise/meta/advanced/synchronizing.group.php:129 +msgid "Open for more details in update" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:137 +#, php-format +msgid "Error creating/updating %s/%s groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:149 +#, php-format +msgid "Created %s / Updated %s groups (" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:158 +msgid "None update or create group" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:170 +msgid "Synchronizing Groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:188 +#: ../../enterprise/godmode/policies/policy_agents.php:554 +#: ../../enterprise/godmode/setup/setup_auth.php:225 +#: ../../enterprise/godmode/setup/setup_auth.php:492 +#: ../../enterprise/godmode/setup/setup_auth.php:1224 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:298 +#: ../../godmode/reporting/visual_console_builder.wizard.php:382 +#: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 +#: ../../include/functions_networkmap.php:1283 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:216 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:270 +#: ../../include/lib/Dashboard/Widgets/events_list.php:357 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:282 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:326 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:282 +#: ../../operation/tree.php:65 +#: ../../operation/agentes/pandora_networkmap.php:698 +msgid "Groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:311 +#, php-format +msgid "Error updating user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:315 +#, php-format +msgid "Updated user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:327 +#, php-format +msgid "Error creating user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:331 +#, php-format +msgid "Created user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:533 #, php-format msgid "" -"You can find more help in the Pandora's wiki" +"There are groups that not exist in node. The followings elements groups/" +"profiles/user profiles were created/updated sucessfully (%d/%d/%d)" msgstr "" -#: ../../operation/search_helps.php:37 -msgid "Matches" +#: ../../enterprise/meta/advanced/synchronizing.user.php:542 +#, php-format +msgid "" +"Error creating/updating the followings elements groups/profiles/user " +"profiles (%d/%d/%d)" msgstr "" -#: ../../operation/servers/recon_view.php:36 -#: ../../operation/servers/recon_view.php:51 -msgid "Recon View" +#: ../../enterprise/meta/advanced/synchronizing.user.php:554 +#, php-format +msgid "" +"The followings elements groups/profiles/user profiles were created/updated " +"sucessfully (%d/%d/%d)" msgstr "" -#: ../../operation/servers/recon_view.php:46 -#: ../../operation/search_agents.php:111 -#: ../../operation/agentes/ver_agente.php:947 -msgid "Manage" +#: ../../enterprise/meta/advanced/synchronizing.user.php:576 +msgid "Synchronizing Users" msgstr "" -#: ../../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" +#: ../../enterprise/meta/advanced/synchronizing.user.php:586 +#: ../../godmode/massive/massive_delete_profiles.php:110 +#: ../../godmode/massive/massive_add_profiles.php:103 +#: ../../include/functions_reporting.php:9290 +#: ../../operation/search_results.php:92 +msgid "Users" msgstr "" -#: ../../operation/servers/recon_view.php:89 -#: ../../godmode/servers/manage_recontask_form.php:218 -msgid "Task name" +#: ../../enterprise/meta/advanced/synchronizing.user.php:598 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/include/functions_ui.php:92 +msgid "Target" msgstr "" -#: ../../operation/servers/recon_view.php:95 -#: ../../godmode/servers/manage_recontask_form.php:242 -#: ../../godmode/servers/manage_recontask.php:291 -msgid "Network" +#: ../../enterprise/meta/advanced/synchronizing.user.php:608 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:336 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:574 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 +#: ../../enterprise/meta/general/main_header.php:556 +#: ../../enterprise/godmode/policies/policy_alerts.php:582 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:387 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:198 +#: ../../enterprise/godmode/alerts/alert_events.php:636 +#: ../../enterprise/godmode/services/services.service.php:514 +#: ../../enterprise/godmode/services/services.service.php:525 +#: ../../enterprise/godmode/services/services.service.php:544 +#: ../../extensions/agents_alerts.php:282 ../../extensions/insert_data.php:183 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:146 +#: ../../godmode/massive/massive_copy_modules.php:122 +#: ../../godmode/massive/massive_delete_modules.php:310 +#: ../../godmode/massive/massive_delete_modules.php:445 +#: ../../godmode/massive/massive_add_alerts.php:255 +#: ../../godmode/massive/massive_delete_alerts.php:247 +#: ../../godmode/massive/massive_edit_modules.php:291 +#: ../../godmode/massive/massive_edit_modules.php:404 +#: ../../godmode/alerts/alert_list.builder.php:81 +#: ../../godmode/alerts/alert_list.builder.php:148 +#: ../../godmode/setup/setup_integria.php:292 +#: ../../godmode/setup/setup_integria.php:310 +#: ../../godmode/setup/setup_integria.php:339 +#: ../../godmode/setup/setup_integria.php:357 +#: ../../godmode/setup/setup_integria.php:415 +#: ../../godmode/setup/setup_integria.php:433 +#: ../../godmode/setup/setup_integria.php:462 +#: ../../godmode/setup/setup_integria.php:480 +#: ../../operation/incidents/configure_integriaims_incident.php:216 +#: ../../operation/incidents/configure_integriaims_incident.php:232 +#: ../../operation/incidents/configure_integriaims_incident.php:278 +#: ../../general/header.php:261 +msgid "Select" msgstr "" -#: ../../operation/servers/recon_view.php:104 +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 +msgid "Profile mode" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 +msgid "Profile synchronization mode." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "New profile" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "" +"The selected user profile will be added to the selected users into the target" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "Copy profile" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 +msgid "The target user profiles will be replaced with the source user profiles" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 +msgid "Create groups if not exist" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 +msgid "Create groups assigned to user profile if not exist in node" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:224 +#: ../../enterprise/godmode/setup/setup_auth.php:491 +#: ../../enterprise/godmode/setup/setup_auth.php:1223 +#: ../../godmode/users/profile_list.php:276 ../../godmode/menu.php:133 +msgid "Profiles" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:178 +#: ../../enterprise/godmode/policies/policy.php:220 +#: ../../enterprise/include/functions_enterprise_api.php:3341 +msgid "Duplicated or incompatible operation in the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:170 +#: ../../enterprise/godmode/policies/policy.php:216 +msgid "Operation successfully added to the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +msgid "Only database" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:174 +#: ../../enterprise/godmode/policies/policy.php:217 +#: ../../enterprise/include/functions_enterprise_api.php:3338 +msgid "Operation cannot be added to the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:218 +#: ../../include/functions_networkmap.php:1287 +#: ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/tree.php:93 ../../operation/search_results.php:170 +#: ../../operation/search_main.php:73 +msgid "Policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../godmode/menu.php:264 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../mobile/include/functions_web.php:26 +msgid "Servers" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:213 +#: ../../enterprise/meta/advanced/policymanager.queue.php:307 +#: ../../enterprise/godmode/policies/policy_queue.php:507 +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/include/functions_update_manager.php:247 +#: ../../godmode/update_manager/update_manager.offline.php:106 +#: ../../include/functions_visual_map_editor.php:573 +#: ../../include/functions_update_manager.php:1401 +msgid "Apply" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 +msgid "Node synchronization process failed" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 +msgid "" +"If you are trying to migrate this node to a new metaconsole, please use the " +"form available at Settings > Enterprise at node console." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:154 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:83 +msgid "Could not be update" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:194 +msgid "Could not be create, duplicated register found." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:254 +#: ../../enterprise/meta/advanced/links.php:46 +#: ../../enterprise/meta/advanced/cron_main.php:156 +#: ../../enterprise/meta/advanced/cron_main.php:202 +#: ../../enterprise/meta/advanced/cron_main.php:290 +#: ../../enterprise/extensions/ipam/ipam_action.php:135 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:37 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:217 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:230 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:278 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:291 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:388 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:77 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:108 +#: ../../enterprise/operation/agentes/transactional_map.php:108 +#: ../../godmode/modules/manage_nc_groups.php:82 +#: ../../godmode/users/profile_list.php:222 +#: ../../godmode/users/configure_user.php:359 +#: ../../godmode/agentes/configurar_agente.php:780 +#: ../../godmode/agentes/planned_downtime.editor.php:517 +#: ../../godmode/snmpconsole/snmp_alert.php:260 +#: ../../godmode/snmpconsole/snmp_filters.php:143 +#: ../../godmode/alerts/alert_commands.php:351 +#: ../../godmode/alerts/configure_alert_template.php:488 +#: ../../godmode/alerts/alert_special_days.php:164 +#: ../../godmode/alerts/alert_list.php:177 ../../godmode/setup/news.php:62 +#: ../../godmode/setup/gis.php:44 ../../godmode/setup/links.php:41 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:834 +msgid "Successfully created" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:255 +#: ../../enterprise/extensions/ipam/ipam_action.php:129 +#: ../../enterprise/godmode/modules/local_components.php:108 +#: ../../enterprise/godmode/modules/local_components.php:273 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:385 +#: ../../enterprise/godmode/policies/policies.php:211 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:38 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:78 +#: ../../enterprise/operation/agentes/transactional_map.php:109 +#: ../../godmode/modules/manage_nc_groups.php:83 +#: ../../godmode/modules/manage_network_components.php:172 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/users/configure_user.php:360 +#: ../../godmode/agentes/configurar_agente.php:351 +#: ../../godmode/agentes/configurar_agente.php:775 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:421 +#: ../../godmode/agentes/planned_downtime.editor.php:510 +#: ../../godmode/alerts/alert_commands.php:338 +#: ../../godmode/alerts/configure_alert_template.php:150 +#: ../../godmode/alerts/configure_alert_template.php:479 +#: ../../godmode/alerts/alert_special_days.php:159 +#: ../../godmode/alerts/alert_list.php:164 ../../godmode/setup/news.php:63 +#: ../../godmode/setup/gis.php:46 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4578 +#: ../../include/functions_alerts.php:2825 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:829 +#: ../../operation/agentes/pandora_networkmap.php:126 +#: ../../operation/agentes/pandora_networkmap.php:367 +msgid "Could not be created" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:271 +msgid "Successfully delete" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:272 +msgid "Could not be delete" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:288 +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:491 +#: ../../enterprise/godmode/alerts/alert_events_list.php:252 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:144 +#: ../../godmode/users/user_list.php:240 +#: ../../godmode/agentes/configurar_agente.php:2177 +#: ../../godmode/agentes/modificar_agente.php:133 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:337 +#: ../../include/ajax/alert_list.ajax.php:344 +msgid "Successfully enabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:289 +#: ../../enterprise/godmode/policies/policy_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_modules.php:492 +#: ../../enterprise/godmode/alerts/alert_events_list.php:253 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:145 +#: ../../godmode/agentes/configurar_agente.php:2178 +#: ../../godmode/agentes/modificar_agente.php:134 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:338 +#: ../../include/ajax/alert_list.ajax.php:346 +msgid "Could not be enabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:305 +#: ../../enterprise/godmode/policies/policy_alerts.php:115 +#: ../../enterprise/godmode/policies/policy_modules.php:507 +#: ../../enterprise/godmode/alerts/alert_events_list.php:272 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:153 +#: ../../godmode/users/user_list.php:234 +#: ../../godmode/agentes/configurar_agente.php:2196 +#: ../../godmode/agentes/modificar_agente.php:156 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:358 +#: ../../include/ajax/alert_list.ajax.php:365 +msgid "Successfully disabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:306 +#: ../../enterprise/godmode/policies/policy_alerts.php:116 +#: ../../enterprise/godmode/policies/policy_modules.php:508 +#: ../../enterprise/godmode/alerts/alert_events_list.php:273 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:154 +#: ../../godmode/agentes/configurar_agente.php:2197 +#: ../../godmode/agentes/modificar_agente.php:157 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:359 +#: ../../include/ajax/alert_list.ajax.php:367 +msgid "Could not be disabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:373 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:622 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:523 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1549 +#: ../../enterprise/include/functions_reporting_csv.php:959 +#: ../../godmode/reporting/graph_builder.graph_editor.php:200 +#: ../../godmode/reporting/reporting_builder.item_editor.php:931 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:246 +#: ../../godmode/reporting/visual_console_builder.wizard.php:466 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../include/functions_visual_map_editor.php:194 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:1823 +#: ../../include/rest-api/models/VisualConsole/Item.php:2017 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 +#: ../../include/lib/Dashboard/Widgets/module_value.php:278 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 +#: ../../include/lib/Dashboard/Widgets/module_status.php:294 +#: ../../operation/visual_console/view.php:250 +msgid "Label" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +msgid "Custom label to identify this setup." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:624 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:203 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +msgid "Console URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "Auth token" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:386 +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use " +"delegated authentification." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:398 +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 +#: ../../enterprise/meta/include/functions_meta.php:487 +#: ../../enterprise/meta/include/functions_meta.php:496 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:207 +#: ../../godmode/setup/setup_general.php:164 +#: ../../include/functions_config.php:205 +msgid "API password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:408 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:230 +msgid "Console User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:417 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:234 +msgid "Console Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:427 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:625 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:212 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "DB Host" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:436 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:216 +msgid "DB Name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:445 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 +msgid "DB User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:454 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:225 +msgid "DB Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:463 +#: ../../enterprise/include/class/DatabaseHA.class.php:936 +msgid "DB port" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:559 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 +#: ../../enterprise/godmode/alerts/alert_events_list.php:688 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:169 +#: ../../extensions/quick_shell.php:477 +#: ../../godmode/agentes/module_manager_editor.php:719 +#: ../../godmode/agentes/agent_manager.php:800 +#: ../../godmode/agentes/agent_manager.php:939 +#: ../../godmode/massive/massive_edit_agents.php:728 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +#: ../../include/functions_visual_map_editor.php:805 +#: ../../operation/events/events_list.php:1016 +#: ../../operation/events/events.php:1254 +msgid "Advanced options" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:496 +msgid "Metaconsole DB Host" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:505 +msgid "Metaconsole DB Name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:514 +msgid "Metaconsole DB User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:523 +msgid "Metaconsole DB Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:532 +#: ../../enterprise/godmode/setup/setup.php:249 +msgid "Metaconsole DB port" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:616 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:267 +msgid "DB" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:617 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:268 +msgid "API" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:618 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:269 +msgid "Compatibility" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:619 +#: ../../enterprise/godmode/setup/setup.php:104 +#: ../../include/functions_config.php:390 +msgid "Events replication" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:620 +#: ../../enterprise/include/functions_setup.php:163 +msgid "Agent cache" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:626 +#: ../../enterprise/extensions/disabled/check_acls.php:66 +#: ../../enterprise/extensions/disabled/check_acls.php:159 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 +#: ../../enterprise/godmode/servers/HA_cluster.php:138 +#: ../../godmode/users/user_list.php:332 ../../godmode/users/user_list.php:483 +#: ../../operation/search_users.php:51 +msgid "Admin" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:701 +msgid "The rules for this module may stop working. Are you sure?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 +msgid "There aren't server added to metaconsole" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:44 ../../godmode/setup/links.php:39 +msgid "There was a problem creating link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:57 +msgid "The link was not updated, the data is identical" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:65 ../../godmode/setup/links.php:58 +msgid "There was a problem modifying link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:67 +#: ../../enterprise/extensions/ipam/ipam_action.php:193 +#: ../../enterprise/extensions/ipam/ipam_massive.php:47 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:104 +#: ../../enterprise/godmode/policies/policy_modules.php:1219 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:105 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:288 +#: ../../enterprise/godmode/alerts/alert_events.php:428 +#: ../../enterprise/godmode/alerts/alert_events_list.php:99 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:126 +#: ../../enterprise/operation/agentes/transactional_map.php:140 +#: ../../godmode/modules/manage_nc_groups.php:111 +#: ../../godmode/users/profile_list.php:205 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/configurar_agente.php:1115 +#: ../../godmode/agentes/planned_downtime.editor.php:519 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:383 +#: ../../godmode/snmpconsole/snmp_filters.php:89 +#: ../../godmode/massive/massive_edit_modules.php:166 +#: ../../godmode/alerts/configure_alert_command.php:112 +#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/configure_alert_template.php:506 +#: ../../godmode/alerts/alert_special_days.php:232 +#: ../../godmode/alerts/alert_list.php:93 +#: ../../godmode/alerts/alert_list.php:295 ../../godmode/setup/news.php:99 +#: ../../godmode/setup/gis.php:36 ../../godmode/setup/links.php:60 +#: ../../godmode/events/event_edit_filter.php:191 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:137 +#: ../../operation/incidents/incident.php:157 +msgid "Successfully updated" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:79 ../../godmode/setup/links.php:71 +msgid "There was a problem deleting link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:97 +msgid "Link Name error" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:124 +#: ../../enterprise/meta/advanced/links.php:151 +#: ../../godmode/setup/links.php:113 ../../godmode/setup/links.php:142 +msgid "Link name" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/godmode/policies/policy_linking.php:170 +#: ../../godmode/setup/links.php:116 +msgid "Link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:133 +#: ../../enterprise/meta/advanced/collections.data.php:44 +#: ../../enterprise/meta/advanced/collections.data.php:73 +#: ../../enterprise/meta/advanced/collections.data.php:95 +#: ../../enterprise/meta/advanced/collections.data.php:112 +#: ../../enterprise/meta/advanced/collections.data.php:134 +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.editor.php:110 +#: ../../enterprise/meta/advanced/cron_main.php:462 +#: ../../enterprise/meta/advanced/collections.php:391 +#: ../../enterprise/meta/advanced/collections.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:277 +#: ../../enterprise/meta/include/functions_autoprovision.php:562 +#: ../../enterprise/meta/include/functions_autoprovision.php:761 +#: ../../enterprise/extensions/backup/main.php:284 +#: ../../enterprise/extensions/ipam/ipam_list.php:210 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/extensions/ipam/ipam_editor.php:229 +#: ../../enterprise/godmode/modules/configure_local_component.php:654 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:454 +#: ../../enterprise/godmode/modules/local_components.php:634 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:652 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:701 +#: ../../enterprise/godmode/agentes/collections.agents.php:40 +#: ../../enterprise/godmode/agentes/collections.data.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:139 +#: ../../enterprise/godmode/agentes/collections.data.php:163 +#: ../../enterprise/godmode/agentes/collections.data.php:180 +#: ../../enterprise/godmode/agentes/collections.data.php:204 +#: ../../enterprise/godmode/agentes/collections.data.php:251 +#: ../../enterprise/godmode/agentes/collections.editor.php:146 +#: ../../enterprise/godmode/agentes/collections.php:391 +#: ../../enterprise/godmode/policies/configure_policy.php:115 +#: ../../enterprise/godmode/policies/policy_modules.php:423 +#: ../../enterprise/godmode/policies/policies.php:654 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:267 +#: ../../enterprise/godmode/alerts/alert_events_list.php:753 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:517 +#: ../../enterprise/godmode/services/services.service.php:555 +#: ../../enterprise/godmode/services/services.elements.php:768 +#: ../../enterprise/godmode/setup/edit_skin.php:296 +#: ../../enterprise/godmode/reporting/aws_view.php:167 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:237 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:575 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3027 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:348 +#: ../../godmode/modules/manage_nc_groups_form.php:93 +#: ../../godmode/modules/manage_network_templates_form.php:168 +#: ../../godmode/modules/manage_nc_groups.php:283 +#: ../../godmode/modules/manage_network_components_form.php:311 +#: ../../godmode/modules/manage_network_components.php:792 +#: ../../godmode/modules/manage_network_templates.php:291 +#: ../../godmode/groups/configure_group.php:237 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/users/profile_list.php:381 +#: ../../godmode/users/configure_user.php:1084 +#: ../../godmode/agentes/module_manager_editor.php:761 +#: ../../godmode/agentes/planned_downtime.list.php:373 +#: ../../godmode/agentes/planned_downtime.list.php:536 +#: ../../godmode/agentes/agent_manager.php:990 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/agentes/module_manager.php:164 +#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/snmpconsole/snmp_alert.php:1100 +#: ../../godmode/snmpconsole/snmp_alert.php:1456 +#: ../../godmode/snmpconsole/snmp_filters.php:232 +#: ../../godmode/snmpconsole/snmp_filters.php:305 +#: ../../godmode/massive/massive_add_profiles.php:171 +#: ../../godmode/alerts/configure_alert_command.php:240 +#: ../../godmode/alerts/alert_actions.php:323 +#: ../../godmode/alerts/alert_list.list.php:886 +#: ../../godmode/alerts/alert_commands.php:480 +#: ../../godmode/alerts/configure_alert_special_days.php:107 +#: ../../godmode/alerts/alert_templates.php:427 +#: ../../godmode/alerts/configure_alert_action.php:290 +#: ../../godmode/alerts/alert_special_days.php:521 +#: ../../godmode/alerts/alert_special_days.php:539 +#: ../../godmode/alerts/alert_list.php:449 ../../godmode/setup/news.php:221 +#: ../../godmode/setup/gis.php:94 ../../godmode/setup/os.php:50 +#: ../../godmode/setup/os.php:77 ../../godmode/setup/links.php:124 +#: ../../godmode/reporting/create_container.php:301 +#: ../../godmode/reporting/map_builder.php:492 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1789 +#: ../../godmode/reporting/graph_builder.main.php:184 +#: ../../godmode/events/event_responses.editor.php:193 +#: ../../godmode/events/event_edit_filter.php:625 +#: ../../godmode/servers/plugin.php:562 ../../godmode/tag/edit_tag.php:238 +#: ../../godmode/category/edit_category.php:176 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../include/class/ManageNetScanScripts.class.php:766 +#: ../../include/class/ModuleTemplates.class.php:877 +#: ../../include/class/ModuleTemplates.class.php:922 +#: ../../include/functions_filemanager.php:797 +#: ../../include/functions_filemanager.php:803 +#: ../../operation/gis_maps/gis_map.php:202 +#: ../../operation/incidents/incident_detail.php:402 +#: ../../operation/incidents/configure_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +msgid "Create" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:147 +#: ../../godmode/setup/links.php:138 +msgid "There isn't links" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:58 +msgid "Policy Manager" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:80 +msgid "Apply policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:84 +#: ../../enterprise/meta/advanced/policymanager.php:102 +msgid "Policies queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:98 +msgid "Policies apply" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:49 +#, php-format +msgid "Error connecting to %s." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 +#, php-format +msgid "Error creating/updating %s/%s module groups." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:57 +#, php-format +msgid "Created/Updated %s/%s module groups." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 +msgid "Synchronizing Module Groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:254 +#, php-format +msgid "Error creating %s components groups " +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:258 +#, php-format +msgid "Created %s component groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:263 +#, php-format +msgid "Error creating/updating %s/%s local components " +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:267 +#, php-format +msgid "Created/Updated %s/%s local components" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:272 +#, php-format +msgid "Error creating/updating %s/%s network components " +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:276 +#, php-format +msgid "Created/Updated %s/%s network components" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:293 +msgid "Synchronizing Components" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:35 +#: ../../enterprise/meta/advanced/collections.editor.php:39 +#: ../../enterprise/meta/include/functions_agents_meta.php:514 +#: ../../enterprise/godmode/agentes/collections.agents.php:46 +#: ../../enterprise/godmode/agentes/collections.data.php:45 +#: ../../enterprise/godmode/agentes/collections.editor.php:61 +#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:58 +#: ../../enterprise/include/functions_policies.php:3784 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:48 +#: ../../enterprise/meta/advanced/collections.data.php:88 +#: ../../enterprise/meta/advanced/collections.data.php:103 +#: ../../enterprise/meta/advanced/collections.data.php:120 +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:162 +#: ../../enterprise/meta/advanced/collections.data.php:184 +#: ../../enterprise/meta/advanced/collections.data.php:225 +#: ../../enterprise/meta/advanced/collections.data.php:250 +#: ../../enterprise/meta/advanced/collections.editor.php:33 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:49 +#: ../../enterprise/godmode/agentes/collections.agents.php:58 +#: ../../enterprise/godmode/agentes/collections.data.php:65 +#: ../../enterprise/godmode/agentes/collections.data.php:104 +#: ../../enterprise/godmode/agentes/collections.data.php:154 +#: ../../enterprise/godmode/agentes/collections.data.php:171 +#: ../../enterprise/godmode/agentes/collections.data.php:188 +#: ../../enterprise/godmode/agentes/collections.data.php:212 +#: ../../enterprise/godmode/agentes/collections.data.php:237 +#: ../../enterprise/godmode/agentes/collections.data.php:261 +#: ../../enterprise/godmode/agentes/collections.data.php:284 +#: ../../enterprise/godmode/agentes/collections.editor.php:51 +#: ../../enterprise/include/functions_reporting_pdf.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:739 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2187 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/functions_reporting_csv.php:2315 +#: ../../enterprise/include/functions_reporting.php:2008 +#: ../../enterprise/include/functions_reporting.php:2041 +#: ../../enterprise/include/functions_reporting.php:2045 +#: ../../enterprise/include/functions_services.php:2489 +#: ../../enterprise/operation/agentes/policy_view.php:327 +#: ../../enterprise/operation/agentes/tag_view.php:661 +#: ../../extensions/insert_data.php:191 ../../extensions/insert_data.php:192 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:114 +#: ../../mobile/operation/modules.php:690 +#: ../../mobile/operation/modules.php:691 +#: ../../mobile/operation/modules.php:692 +#: ../../mobile/operation/modules.php:693 +#: ../../mobile/operation/modules.php:694 +#: ../../mobile/operation/modules.php:695 +#: ../../mobile/operation/modules.php:696 +#: ../../mobile/operation/modules.php:697 +#: ../../mobile/operation/modules.php:698 +#: ../../mobile/operation/modules.php:700 +#: ../../mobile/operation/modules.php:823 +#: ../../include/functions_reporting_html.php:2140 +#: ../../include/functions_reporting_html.php:2144 +#: ../../include/functions_reporting_html.php:2147 +#: ../../include/functions_reporting_html.php:2152 +#: ../../include/functions_reporting_html.php:2198 +#: ../../include/ajax/module.php:847 ../../include/ajax/custom_fields.php:402 +#: ../../include/functions_graph.php:3673 +#: ../../include/functions_netflow.php:297 +#: ../../include/functions_reporting.php:3206 +#: ../../include/functions_reporting.php:3247 +#: ../../include/functions_events.php:208 +#: ../../include/functions_events.php:289 +#: ../../include/functions_events.php:6118 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1188 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_modules.php:37 +#: ../../operation/events/events.build_table.php:330 +msgid "Data" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:78 +#: ../../enterprise/godmode/agentes/collections.data.php:144 +msgid "" +"Unable to create the collection. Another collection with the same short name." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +msgid "Unable to create the collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +msgid "Invalid characters in short name" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:110 +#: ../../enterprise/godmode/agentes/collections.data.php:50 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:161 +#: ../../enterprise/godmode/agentes/collections.data.php:178 +#: ../../enterprise/godmode/agentes/collections.data.php:202 +#: ../../enterprise/godmode/agentes/collections.data.php:249 +msgid "Manager configuration > New" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +#: ../../enterprise/include/functions_local_components.php:170 +msgid "Empty name" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:138 +#: ../../enterprise/meta/advanced/collections.data.php:180 +#: ../../enterprise/godmode/agentes/collections.data.php:208 +#: ../../enterprise/godmode/agentes/collections.data.php:257 +msgid "Unable to create the collection." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:156 +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:327 +msgid "Correct create collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:164 +#: ../../enterprise/meta/advanced/collections.data.php:228 +#: ../../enterprise/meta/advanced/collections.data.php:252 +#: ../../enterprise/meta/advanced/collections.editor.php:36 +#: ../../enterprise/meta/advanced/collections.editor.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:350 +#: ../../enterprise/godmode/agentes/collections.agents.php:52 +#: ../../enterprise/godmode/agentes/collections.data.php:107 +#: ../../enterprise/godmode/agentes/collections.data.php:239 +#: ../../enterprise/godmode/agentes/collections.data.php:286 +#: ../../enterprise/godmode/agentes/collections.editor.php:57 +#: ../../enterprise/godmode/agentes/collections.editor.php:378 +#: ../../enterprise/godmode/agentes/collections.editor.php:401 +#: ../../enterprise/include/functions_collection.php:136 +#: ../../operation/agentes/ver_agente.php:1322 +msgid "Files" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:218 +#: ../../enterprise/godmode/agentes/collections.data.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:223 +#: ../../enterprise/godmode/agentes/collections.data.php:303 +#: ../../enterprise/godmode/agentes/collections.data.php:316 +#: ../../enterprise/godmode/agentes/collections.data.php:321 +#: ../../enterprise/godmode/agentes/collections.editor.php:70 +msgid "Manager configuration > Edit " +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:271 +#: ../../enterprise/godmode/agentes/collections.data.php:307 +msgid "Unable to edit the collection, empty name." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:319 +msgid "Unable to edit the collection." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:303 +#: ../../enterprise/meta/include/functions_autoprovision.php:540 +#: ../../enterprise/godmode/agentes/collections.data.php:352 +#: ../../godmode/setup/os.builder.php:32 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:315 +#: ../../enterprise/godmode/agentes/collections.data.php:365 +msgid "Recreate file" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:343 +#: ../../enterprise/meta/advanced/collections.data.php:344 +#: ../../enterprise/godmode/agentes/collection_manager.php:161 +#: ../../enterprise/godmode/agentes/collection_manager.php:162 +#: ../../enterprise/godmode/agentes/collection_manager.php:273 +#: ../../enterprise/godmode/agentes/collection_manager.php:274 +#: ../../enterprise/godmode/agentes/collections.data.php:393 +#: ../../enterprise/godmode/agentes/collections.data.php:394 +msgid "Need to regenerate" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:353 +#: ../../enterprise/meta/advanced/collections.data.php:354 +#: ../../enterprise/meta/advanced/collections.php:370 +#: ../../enterprise/meta/advanced/collections.php:371 +#: ../../enterprise/godmode/agentes/collection_manager.php:170 +#: ../../enterprise/godmode/agentes/collection_manager.php:171 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collection_manager.php:283 +#: ../../enterprise/godmode/agentes/collections.data.php:403 +#: ../../enterprise/godmode/agentes/collections.data.php:404 +#: ../../enterprise/godmode/agentes/collections.php:372 +#: ../../enterprise/godmode/agentes/collections.php:373 +#: ../../enterprise/operation/agentes/collection_view.php:122 +#: ../../enterprise/operation/agentes/collection_view.php:123 +msgid "The collection directory does not exist." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:367 +#: ../../enterprise/godmode/agentes/collections.data.php:418 +#: ../../godmode/reporting/visual_console_builder.data.php:136 +msgid "Group:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:389 +#: ../../enterprise/godmode/agentes/collections.data.php:440 +msgid "Short name:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "" +"The collection's short name is the name of dir in attachment dir and the " +"package collection." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.data.php:445 +msgid "Empty for default short name fc_X where X is the collection id." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:401 +#: ../../enterprise/meta/include/functions_autoprovision.php:543 +#: ../../enterprise/godmode/agentes/collections.data.php:449 +#: ../../operation/snmpconsole/snmp_view.php:1023 +msgid "Description:" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:63 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:70 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:83 +msgid "There was an error when moving the custom provisioning data." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:99 +#: ../../enterprise/meta/advanced/collections.editor.php:165 +#: ../../enterprise/godmode/agentes/collections.editor.php:135 +#: ../../enterprise/godmode/agentes/collections.editor.php:200 +#: ../../godmode/servers/plugin.php:157 +#: ../../include/functions_filemanager.php:749 +msgid "Edit file" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:102 +#: ../../enterprise/meta/advanced/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:138 +#: ../../enterprise/godmode/agentes/collections.editor.php:202 +msgid "Back to file explorer" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:139 +#: ../../enterprise/meta/advanced/collections.editor.php:304 +#: ../../enterprise/godmode/agentes/collections.editor.php:174 +#: ../../enterprise/godmode/agentes/collections.editor.php:350 +#: ../../include/functions_filemanager.php:334 +msgid "Security error." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:190 +#: ../../enterprise/godmode/agentes/collections.editor.php:224 +#: ../../godmode/servers/plugin.php:176 +msgid "Compatibility mode" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:235 +#: ../../enterprise/godmode/agentes/collections.editor.php:269 +msgid "Correct update file." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:236 +#: ../../enterprise/godmode/agentes/collections.editor.php:270 +msgid "Incorrect update file." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:351 +#: ../../enterprise/godmode/agentes/collections.editor.php:402 +msgid "Please, first save a new collection before to upload files." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:101 +#: ../../godmode/update_manager/update_manager.setup.php:193 +msgid "URL update manager:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:105 +#: ../../godmode/update_manager/update_manager.setup.php:197 +msgid "URL update manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:111 +#: ../../godmode/update_manager/update_manager.setup.php:203 +msgid "Proxy server:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:115 +#: ../../godmode/update_manager/update_manager.setup.php:207 +msgid "Proxy server" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:121 +#: ../../godmode/update_manager/update_manager.setup.php:213 +msgid "Proxy port:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:125 +#: ../../godmode/update_manager/update_manager.setup.php:217 +msgid "Proxy port" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:131 +#: ../../godmode/update_manager/update_manager.setup.php:223 +msgid "Proxy user:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:135 +#: ../../godmode/update_manager/update_manager.setup.php:227 +msgid "Proxy user" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:141 +#: ../../godmode/update_manager/update_manager.setup.php:233 +msgid "Proxy password:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:145 +#: ../../godmode/update_manager/update_manager.setup.php:237 +msgid "Proxy password" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:66 +#, php-format +msgid "Error creating/updating %s/%s tags" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:70 +#, php-format +msgid "Created/Updated %s/%s tags" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:81 +msgid "Synchronizing Tags" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:72 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:84 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:527 +msgid "Add new job" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:157 +#: ../../enterprise/meta/advanced/cron_main.php:203 +#: ../../enterprise/meta/advanced/cron_main.php:291 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:209 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:271 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:360 +msgid "Path doesn't exists or is not writable" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:171 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:240 +msgid "Only administrator users can create this type of functions" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:239 +#: ../../enterprise/meta/advanced/cron_main.php:273 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:345 +msgid "Edit job" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:324 +msgid "" +"In order to make backups it is necessary to have mysqldump on your console." +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:345 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:603 +#: ../../enterprise/include/functions_tasklist.php:168 +#: ../../include/functions_cron.php:455 +msgid "Task" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:376 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:613 +#: ../../enterprise/include/functions_tasklist.php:169 +#: ../../include/functions_cron.php:456 +msgid "Scheduled" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:389 +#: ../../enterprise/include/functions_tasklist.php:170 +#: ../../include/functions_cron.php:457 +msgid "Next execution" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:398 +msgid "Date format in Pandora is year/month/day" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:409 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:435 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:542 +#: ../../godmode/events/event_responses.editor.php:128 +#: ../../include/ajax/events.php:1685 +#: ../../include/lib/Dashboard/Widgets/events_list.php:590 +#: ../../include/functions_events.php:3606 +#: ../../operation/events/events.php:1577 +msgid "Parameters" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:521 +#: ../../enterprise/godmode/alerts/alert_events.php:700 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:967 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3593 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/operation/log/log_viewer.php:754 +#: ../../enterprise/operation/log/log_viewer.php:766 +#: ../../extensions/insert_data.php:221 +#: ../../godmode/agentes/planned_downtime.editor.php:1463 +#: ../../godmode/alerts/configure_alert_template.php:1277 +#: ../../godmode/setup/news.php:311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3779 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:642 +#: ../../operation/tree.php:475 ../../operation/agentes/stat_win.php:447 +#: ../../operation/agentes/interface_traffic_graph_win.php:312 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:448 +#: ../../operation/network/network_report.php:356 +#: ../../operation/network/network_usage_map.php:208 +#: ../../operation/netflow/nf_live_view.php:739 +#: ../../operation/snmpconsole/snmp_view.php:1227 +#: ../../operation/snmpconsole/snmp_view.php:1239 +#: ../../operation/reporting/reporting_viewer.php:275 +#: ../../operation/reporting/reporting_viewer.php:295 +#: ../../operation/reporting/graph_viewer.php:315 +#: ../../operation/events/events_list.php:2007 +#: ../../operation/events/events.php:2474 +msgid "Choose time" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:522 +#: ../../enterprise/godmode/alerts/alert_events.php:701 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:968 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:928 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3843 +#: ../../enterprise/operation/log/log_viewer.php:755 +#: ../../enterprise/operation/log/log_viewer.php:767 +#: ../../extensions/insert_data.php:222 +#: ../../godmode/agentes/planned_downtime.editor.php:1464 +#: ../../godmode/alerts/configure_alert_template.php:1278 +#: ../../godmode/setup/news.php:312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3780 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:476 ../../operation/agentes/stat_win.php:448 +#: ../../operation/agentes/interface_traffic_graph_win.php:313 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:449 +#: ../../operation/network/network_report.php:357 +#: ../../operation/network/network_usage_map.php:209 +#: ../../operation/netflow/nf_live_view.php:740 +#: ../../operation/snmpconsole/snmp_view.php:1228 +#: ../../operation/snmpconsole/snmp_view.php:1240 +#: ../../operation/reporting/reporting_viewer.php:276 +#: ../../operation/reporting/reporting_viewer.php:296 +#: ../../operation/reporting/graph_viewer.php:316 +#: ../../operation/events/events_list.php:2008 +#: ../../operation/events/events.php:2475 +msgid "Time" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:523 +#: ../../enterprise/godmode/alerts/alert_events.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:969 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3595 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3844 +#: ../../enterprise/operation/log/log_viewer.php:756 +#: ../../enterprise/operation/log/log_viewer.php:768 +#: ../../extensions/insert_data.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:1465 +#: ../../godmode/alerts/configure_alert_template.php:1279 +#: ../../godmode/setup/news.php:313 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3781 +#: ../../include/functions_html.php:1594 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:644 +#: ../../operation/tree.php:477 ../../operation/agentes/stat_win.php:449 +#: ../../operation/agentes/interface_traffic_graph_win.php:314 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:450 +#: ../../operation/network/network_report.php:358 +#: ../../operation/network/network_usage_map.php:210 +#: ../../operation/netflow/nf_live_view.php:741 +#: ../../operation/snmpconsole/snmp_view.php:1229 +#: ../../operation/snmpconsole/snmp_view.php:1241 +#: ../../operation/reporting/reporting_viewer.php:277 +#: ../../operation/reporting/reporting_viewer.php:297 +#: ../../operation/reporting/graph_viewer.php:317 +#: ../../operation/events/events_list.php:2009 +#: ../../operation/events/events.php:2476 +msgid "Hour" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:524 +#: ../../enterprise/godmode/alerts/alert_events.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:970 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3596 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3845 +#: ../../enterprise/operation/log/log_viewer.php:757 +#: ../../enterprise/operation/log/log_viewer.php:769 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1466 +#: ../../godmode/alerts/configure_alert_template.php:1280 +#: ../../godmode/setup/news.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3782 +#: ../../include/functions_html.php:1595 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 +#: ../../operation/tree.php:478 ../../operation/agentes/stat_win.php:450 +#: ../../operation/agentes/interface_traffic_graph_win.php:315 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:451 +#: ../../operation/network/network_report.php:359 +#: ../../operation/network/network_usage_map.php:211 +#: ../../operation/netflow/nf_live_view.php:742 +#: ../../operation/snmpconsole/snmp_view.php:1230 +#: ../../operation/snmpconsole/snmp_view.php:1242 +#: ../../operation/reporting/reporting_viewer.php:278 +#: ../../operation/reporting/reporting_viewer.php:298 +#: ../../operation/reporting/graph_viewer.php:318 +#: ../../operation/events/events_list.php:2010 +#: ../../operation/events/events.php:2477 +msgid "Minute" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:525 +#: ../../enterprise/godmode/alerts/alert_events.php:704 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:971 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3597 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3846 +#: ../../enterprise/operation/log/log_viewer.php:758 +#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1467 +#: ../../godmode/alerts/configure_alert_template.php:1281 +#: ../../godmode/setup/news.php:315 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3783 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:646 +#: ../../operation/tree.php:479 ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:316 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:452 +#: ../../operation/network/network_report.php:360 +#: ../../operation/network/network_usage_map.php:212 +#: ../../operation/netflow/nf_live_view.php:743 +#: ../../operation/snmpconsole/snmp_view.php:1231 +#: ../../operation/snmpconsole/snmp_view.php:1243 +#: ../../operation/reporting/reporting_viewer.php:279 +#: ../../operation/reporting/reporting_viewer.php:299 +#: ../../operation/reporting/graph_viewer.php:319 +#: ../../operation/events/events_list.php:2011 +#: ../../operation/events/events.php:2478 +msgid "Second" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:526 +#: ../../enterprise/godmode/alerts/alert_events.php:705 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:972 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3598 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3847 +#: ../../enterprise/operation/agentes/agent_inventory.php:108 +#: ../../enterprise/operation/log/log_viewer.php:759 +#: ../../enterprise/operation/log/log_viewer.php:771 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1468 +#: ../../godmode/alerts/configure_alert_template.php:1282 +#: ../../godmode/setup/news.php:316 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3784 +#: ../../include/functions.php:499 ../../include/functions.php:639 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:480 ../../operation/agentes/stat_win.php:452 +#: ../../operation/agentes/interface_traffic_graph_win.php:317 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:453 +#: ../../operation/network/network_report.php:361 +#: ../../operation/network/network_usage_map.php:213 +#: ../../operation/netflow/nf_live_view.php:744 +#: ../../operation/snmpconsole/snmp_view.php:1232 +#: ../../operation/snmpconsole/snmp_view.php:1244 +#: ../../operation/reporting/reporting_viewer.php:280 +#: ../../operation/reporting/reporting_viewer.php:300 +#: ../../operation/reporting/graph_viewer.php:320 +#: ../../operation/events/events_list.php:2012 +#: ../../operation/events/events.php:2479 +msgid "Now" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:527 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:413 +#: ../../enterprise/godmode/alerts/alert_events.php:706 +#: ../../enterprise/godmode/setup/setup.php:739 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:973 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3599 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3848 +#: ../../enterprise/operation/log/log_viewer.php:760 +#: ../../enterprise/operation/log/log_viewer.php:772 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1469 +#: ../../godmode/alerts/configure_alert_template.php:1283 +#: ../../godmode/setup/news.php:317 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3785 +#: ../../godmode/wizards/HostDevices.class.php:792 +#: ../../mobile/include/ui.class.php:670 ../../mobile/include/ui.class.php:728 +#: ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../include/functions_snmp_browser.php:566 ../../operation/tree.php:481 +#: ../../operation/agentes/stat_win.php:453 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:454 +#: ../../operation/network/network_report.php:362 +#: ../../operation/network/network_usage_map.php:214 +#: ../../operation/netflow/nf_live_view.php:745 +#: ../../operation/snmpconsole/snmp_view.php:1233 +#: ../../operation/snmpconsole/snmp_view.php:1245 +#: ../../operation/reporting/reporting_viewer.php:281 +#: ../../operation/reporting/reporting_viewer.php:301 +#: ../../operation/reporting/graph_viewer.php:321 +#: ../../operation/events/events_list.php:2013 +#: ../../operation/events/events.php:2480 +msgid "Close" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:36 +#: ../../enterprise/meta/general/main_header.php:304 +msgid "Synchronizing" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:60 +#: ../../enterprise/meta/advanced/synchronizing.php:92 +msgid "Users synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:64 +#: ../../enterprise/meta/advanced/synchronizing.php:96 +msgid "Groups synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:68 +#: ../../enterprise/meta/advanced/synchronizing.php:100 +msgid "Alerts synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:72 +#: ../../enterprise/meta/advanced/synchronizing.php:104 +msgid "Components synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:76 +#: ../../enterprise/meta/advanced/synchronizing.php:108 +msgid "Tags synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:80 +#: ../../enterprise/meta/advanced/synchronizing.php:112 +msgid "OS synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:84 +#: ../../enterprise/meta/advanced/synchronizing.php:116 +msgid "Module Groups synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:160 +#: ../../godmode/modules/manage_network_components_form_common.php:65 +#: ../../godmode/users/configure_user.php:947 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/alert_commands.php:137 +#: ../../godmode/alerts/configure_alert_template.php:857 +#: ../../godmode/alerts/configure_alert_template.php:871 +#: ../../godmode/alerts/configure_alert_template.php:962 +msgid "Basic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:370 +#: ../../include/functions_config.php:161 +msgid "Language settings" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:379 +#: ../../godmode/setup/setup_general.php:126 +#: ../../include/functions_config.php:173 +msgid "Auto login (hash) password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:136 +#: ../../enterprise/meta/include/functions_meta.php:388 +#: ../../godmode/setup/setup_general.php:129 +#: ../../include/functions_config.php:177 +msgid "Time source" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:137 +#: ../../godmode/setup/setup_general.php:130 +#: ../../mobile/operation/events.php:127 +#: ../../include/functions_reporting_html.php:1039 +#: ../../include/functions_reporting_html.php:2016 +#: ../../include/functions.php:1238 ../../include/functions_graph.php:2683 +#: ../../include/functions_graph.php:3101 +#: ../../include/functions_graph.php:3562 +#: ../../include/functions_graph.php:3564 +#: ../../include/functions_reporting.php:8474 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:412 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:408 +#: ../../include/functions_events.php:2482 +#: ../../include/functions_events.php:3052 +#: ../../operation/events/events.php:1993 +msgid "System" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:138 +#: ../../godmode/setup/setup_general.php:131 +msgid "Database" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:141 +#: ../../enterprise/meta/include/functions_meta.php:397 +#: ../../godmode/setup/setup_general.php:141 +#: ../../include/functions_config.php:189 +msgid "Enforce https" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. " +"Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../enterprise/meta/include/functions_meta.php:406 +msgid "Centralized management" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/include/functions_meta.php:415 +#: ../../godmode/setup/setup_general.php:152 +#: ../../include/functions_config.php:197 +msgid "Attachment store" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +msgid "Directory where temporary data is stored." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:424 +#: ../../godmode/setup/setup_general.php:123 +msgid "Phantomjs bin directory" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "Directory where phantomjs binary file exists and has execution grants." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:156 +#: ../../godmode/setup/setup_general.php:188 +#: ../../include/functions_visual_map_editor.php:268 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_update_manager.php:159 +msgid "Africa" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:157 +#: ../../godmode/setup/setup_general.php:189 +#: ../../include/functions_visual_map_editor.php:269 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_update_manager.php:160 +msgid "America" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../godmode/setup/setup_general.php:190 +#: ../../include/functions_visual_map_editor.php:270 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_update_manager.php:161 +msgid "Antarctica" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:159 +#: ../../godmode/setup/setup_general.php:191 +#: ../../include/functions_visual_map_editor.php:271 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_update_manager.php:162 +msgid "Arctic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:160 +#: ../../godmode/setup/setup_general.php:192 +#: ../../include/functions_visual_map_editor.php:272 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_update_manager.php:163 +msgid "Asia" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:161 +#: ../../godmode/setup/setup_general.php:193 +#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_update_manager.php:164 +msgid "Atlantic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../godmode/setup/setup_general.php:194 +#: ../../include/functions_visual_map_editor.php:274 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_update_manager.php:165 +msgid "Australia" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +#: ../../godmode/setup/setup_general.php:195 +#: ../../include/functions_visual_map_editor.php:275 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_update_manager.php:166 +msgid "Europe" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../godmode/setup/setup_general.php:196 +#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_update_manager.php:167 +msgid "Indian" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +#: ../../godmode/setup/setup_general.php:197 +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_update_manager.php:168 +msgid "Pacific" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:198 +#: ../../include/functions_visual_map_editor.php:278 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_update_manager.php:169 +msgid "UTC" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:185 +#: ../../enterprise/meta/include/functions_meta.php:433 +#: ../../godmode/setup/setup_general.php:218 +#: ../../include/functions_config.php:235 +#: ../../include/functions_update_manager.php:189 +msgid "Timezone setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:187 +#: ../../godmode/setup/setup_general.php:231 +msgid "Change timezone" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:442 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_config.php:267 +msgid "Public URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:192 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:195 +#: ../../enterprise/meta/include/functions_meta.php:451 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_config.php:271 +msgid "Force use Public URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:196 +msgid "Force using defined public URL)." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s " +"Console. Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#: ../../enterprise/meta/include/functions_meta.php:460 +#: ../../godmode/setup/setup_general.php:266 +#: ../../include/functions_config.php:275 +msgid "Public URL host exclusions" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../include/functions_config.php:1378 +msgid "Disable custom live view filters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 +msgid "" +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 +#: ../../enterprise/meta/include/functions_meta.php:478 +#: ../../godmode/setup/setup_general.php:276 +#: ../../include/functions_config.php:287 +msgid "Command Snapshot" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 +msgid "The string modules with several lines show as command output" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:221 +msgid "Customize sections" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:242 +msgid "Disabled sections" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:244 +msgid "Enabled sections" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:249 +msgid "Push selected sections to enable it" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:251 +msgid "Pop selected sections to disable it" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 +msgid "Please be careful if you put a password put https access." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:263 +#: ../../enterprise/meta/include/functions_meta.php:505 +#: ../../godmode/setup/setup_general.php:155 +#: ../../include/functions_config.php:201 +msgid "IP list with API access" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:273 +#: ../../enterprise/meta/include/functions_meta.php:514 +#: ../../enterprise/godmode/setup/setup.php:377 +msgid "Enable update manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +#: ../../enterprise/meta/include/functions_meta.php:538 +#: ../../godmode/setup/setup_general.php:332 +#: ../../include/functions_config.php:323 +msgid "Audit log directory" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +msgid "Directory where audit log is stored." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:281 +#: ../../enterprise/meta/include/functions_meta.php:547 +#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../include/functions_config.php:386 +msgid "Size of collection" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:282 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:285 +msgid "Enable Agent API" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:49 +#, php-format +msgid "Error creating/updating %s/%s OS" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:53 +#, php-format +msgid "Created/Updated %s/%s OS" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:64 +msgid "Synchronizing OS" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../enterprise/meta/advanced/policymanager.queue.php:257 +#: ../../enterprise/extensions/resource_exportation/functions.php:18 +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/godmode/agentes/plugins_manager.php:121 +#: ../../enterprise/godmode/policies/policy_queue.php:404 +#: ../../enterprise/godmode/policies/policy_queue.php:458 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:98 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:84 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:191 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:94 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:96 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:348 +#: ../../enterprise/include/functions_policies.php:4046 +#: ../../enterprise/operation/agentes/policy_view.php:50 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/status_monitor_custom_fields.php:73 +#: ../../godmode/agentes/status_monitor_custom_fields.php:142 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/alerts/alert_view.php:115 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:839 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:547 +#: ../../operation/agentes/status_monitor.php:1134 +msgid "Policy" +msgstr "" + +#: ../../enterprise/meta/advanced/license_meta.php:50 +#: ../../include/functions_api.php:13610 +msgid "Metaconsole and all nodes license updated" +msgstr "" + +#: ../../enterprise/meta/advanced/license_meta.php:52 +#: ../../include/functions_api.php:13612 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:71 +#: ../../godmode/menu.php:317 ../../godmode/setup/setup.php:103 +#: ../../godmode/setup/setup.php:174 +msgid "Performance" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:76 +#: ../../enterprise/meta/include/functions_meta.php:1730 +#: ../../godmode/setup/performance.php:251 +#: ../../godmode/setup/performance.php:470 +#: ../../include/functions_config.php:738 +msgid "Max. days before delete events" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1739 +msgid "Active events history" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1748 +#: ../../godmode/setup/performance.php:272 +#: ../../include/functions_config.php:751 +msgid "Max. days before delete audit events" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/include/functions_meta.php:1757 +#: ../../godmode/setup/performance.php:561 +#: ../../include/functions_config.php:783 +msgid "Default hours for event view" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +msgid "Migration block size" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:99 +#: ../../godmode/setup/performance.php:635 +msgid "Events response max. execution" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:101 +msgid "Number of events that will perform the desired action at the same time" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:28 +msgid "" +"The previous configuration of collections has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:28 +#: ../../godmode/servers/plugin.php:589 +msgid "Note:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:29 +msgid "" +"These definitions will not be operational until you manually \n" +" copy the files from the nodes to the atachment/collection/ directory of " +"the meta console." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:31 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:466 +#: ../../godmode/servers/plugin.php:592 +msgid "You can find more information at:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:51 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:123 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:220 +#: ../../enterprise/meta/monitoring/group_view.php:192 +#: ../../enterprise/meta/monitoring/group_view.php:198 +#: ../../enterprise/meta/monitoring/tactical.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:974 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1061 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1706 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1726 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:48 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103 +#: ../../enterprise/godmode/services/services.service.php:411 +#: ../../enterprise/godmode/services/services.service.php:566 +#: ../../enterprise/include/functions_reporting.php:4466 +#: ../../enterprise/include/functions_services.php:2324 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:111 +#: ../../enterprise/operation/services/services.service.php:170 +#: ../../enterprise/operation/services/services.service.php:225 +#: ../../enterprise/operation/services/services.service_map.php:171 +#: ../../enterprise/operation/services/services.treeview_services.php:248 +#: ../../enterprise/operation/services/services.list.php:197 +#: ../../enterprise/operation/services/services.list.php:431 +#: ../../enterprise/operation/services/services.list.php:498 +#: ../../enterprise/operation/services/services.table_services.php:176 +#: ../../godmode/groups/group_list.php:870 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:260 +#: ../../godmode/massive/massive_delete_modules.php:395 +#: ../../godmode/massive/massive_delete_modules.php:416 +#: ../../godmode/massive/massive_delete_agents.php:137 +#: ../../godmode/massive/massive_edit_agents.php:424 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/massive/massive_edit_modules.php:359 +#: ../../godmode/massive/massive_edit_modules.php:444 +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../godmode/servers/plugin.php:602 ../../mobile/operation/agents.php:41 +#: ../../mobile/operation/modules.php:50 +#: ../../include/functions_reporting_html.php:1899 +#: ../../include/functions.php:1038 ../../include/functions.php:1275 +#: ../../include/functions.php:1278 ../../include/functions.php:1317 +#: ../../include/functions_graph.php:3485 +#: ../../include/functions_graph.php:3486 +#: ../../include/functions_graph.php:4959 ../../include/functions_ui.php:291 +#: ../../include/functions_ui.php:2568 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/class/Diagnostics.class.php:1800 +#: ../../include/class/AgentWizard.class.php:442 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:285 +#: ../../include/lib/Dashboard/Widgets/service_map.php:333 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:624 +#: ../../include/functions_events.php:3108 ../../operation/tree.php:160 +#: ../../operation/tree.php:204 ../../operation/tree.php:372 +#: ../../operation/agentes/estado_agente.php:238 +#: ../../operation/agentes/status_monitor.php:381 +#: ../../operation/agentes/group_view.php:198 +#: ../../operation/agentes/group_view.php:203 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/tactical.php:148 +#: ../../operation/netflow/nf_live_view.php:451 +#: ../../operation/gis_maps/render_view.php:152 +msgid "Warning" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:122 +msgid "Deleted collection to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:123 +msgid "The collection could not be deleted to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:134 +#: ../../enterprise/meta/advanced/collections.php:156 +#: ../../enterprise/godmode/agentes/collection_manager.php:100 +#: ../../enterprise/godmode/agentes/collections.php:182 +#: ../../enterprise/godmode/agentes/collections.php:204 +msgid "Successful create collection package." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:157 +#: ../../enterprise/godmode/agentes/collection_manager.php:101 +#: ../../enterprise/godmode/agentes/collections.php:205 +msgid "Can not create collection package." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:171 +msgid "Added collection to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:172 +msgid "The collection could not be added to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:255 +msgid "To manage collections you must activate centralized management" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:260 +#: ../../enterprise/godmode/agentes/collections.php:239 +msgid "Error: The main directory of collections does not exist." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:319 +#: ../../enterprise/godmode/agentes/collections.php:321 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:201 +#: ../../godmode/agentes/configurar_agente.php:606 +msgid "Collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:320 +#: ../../enterprise/godmode/agentes/collection_manager.php:116 +#: ../../enterprise/godmode/agentes/collections.php:322 +#: ../../enterprise/godmode/policies/policy_collections.php:150 +#: ../../enterprise/godmode/policies/policy_collections.php:245 +msgid "Short Name" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:346 +#: ../../enterprise/godmode/agentes/collections.php:347 +msgid "Are you sure to delete?" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:347 +#: ../../enterprise/godmode/agentes/collections.php:348 +msgid "Delete collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:353 +#: ../../enterprise/godmode/agentes/collections.php:355 +msgid "Are you sure to re-apply?" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:354 +#: ../../enterprise/godmode/agentes/collections.php:356 +msgid "Re-Apply changes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:361 +#: ../../enterprise/godmode/agentes/collections.php:363 +msgid "Are you sure to apply?" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:362 +#: ../../enterprise/godmode/agentes/collections.php:364 +msgid "Apply changes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:398 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:62 +msgid "Operation successfully deleted from the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "Operation cannot be deleted from the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:613 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:361 +#: ../../enterprise/godmode/policies/policy_queue.php:416 +#: ../../enterprise/godmode/policies/policy_queue.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:140 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../extensions/api_checker.php:156 ../../extensions/net_tools.php:345 +#: ../../godmode/extensions.php:146 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../include/functions_reporting_html.php:1784 +#: ../../include/functions_reporting_html.php:3662 +#: ../../include/functions_menu.php:604 +msgid "Operation" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:420 +msgid "Apply (database and files)" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:311 +#: ../../enterprise/godmode/policies/policy_queue.php:421 +#: ../../enterprise/godmode/policies/policy_queue.php:511 +msgid "Apply (only database)" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:431 +msgid "Complete" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:432 +msgid "Incomplete" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/extensions/backup/main.php:120 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1516 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:141 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policies.php:363 +#: ../../enterprise/godmode/policies/policy_linking.php:101 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:192 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:254 +#: ../../enterprise/godmode/setup/setup_skins.php:93 +#: ../../enterprise/godmode/setup/setup_acl.php:442 +#: ../../enterprise/include/class/SAPView.class.php:400 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2779 +#: ../../enterprise/operation/services/services.treeview_services.php:139 +#: ../../enterprise/operation/services/services.treeview_services.php:144 +#: ../../enterprise/operation/services/services.list.php:380 +#: ../../enterprise/operation/services/services.list.php:385 +#: ../../enterprise/operation/services/services.table_services.php:356 +#: ../../enterprise/operation/services/services.table_services.php:361 +#: ../../godmode/modules/manage_network_templates_form.php:265 +#: ../../godmode/modules/manage_network_templates_form.php:325 +#: ../../godmode/agentes/module_manager.php:48 +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/snmpconsole/snmp_alert.php:1134 +#: ../../godmode/snmpconsole/snmp_filters.php:182 +#: ../../godmode/snmpconsole/snmp_filters.php:259 +#: ../../godmode/admin_access_logs.php:90 +#: ../../godmode/admin_access_logs.php:97 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:861 +#: ../../godmode/tag/tag.php:180 ../../include/functions_ui.php:3318 +#: ../../include/functions_ui.php:3337 ../../include/functions_ui.php:3348 +#: ../../include/class/ModuleTemplates.class.php:691 +#: ../../operation/tree.php:193 ../../operation/agentes/graphs.php:258 +#: ../../operation/agentes/estado_monitores.php:587 +#: ../../operation/agentes/alerts_status.functions.php:121 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/netflow/nf_live_view.php:383 +#: ../../operation/incidents/incident.php:293 +#: ../../operation/incidents/list_integriaims_incidents.php:227 +#: ../../operation/incidents/list_integriaims_incidents.php:231 +msgid "Filter" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:324 +#: ../../enterprise/meta/agentsearch.php:92 +#: ../../enterprise/godmode/modules/local_components.php:525 +#: ../../enterprise/godmode/alerts/alert_events_list.php:451 +#: ../../godmode/modules/manage_network_components.php:611 +#: ../../godmode/users/user_list.php:293 +#: ../../godmode/alerts/alert_actions.php:214 +#: ../../godmode/alerts/alert_templates.php:320 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:193 ../../godmode/tag/tag.php:302 +#: ../../operation/tree.php:238 ../../operation/agentes/alerts_status.php:458 +#: ../../operation/agentes/status_monitor.php:720 +#: ../../operation/events/events_list.php:1088 +msgid "Show Options" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:97 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:691 +#: ../../enterprise/meta/include/functions_wizard_meta.php:173 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1794 +#: ../../enterprise/meta/agentsearch.php:112 +#: ../../enterprise/meta/agentsearch.php:300 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1772 +#: ../../enterprise/include/class/CSVImportAgents.class.php:152 +#: ../../enterprise/include/class/SAPView.class.php:207 +#: ../../enterprise/include/functions_events.php:283 +#: ../../godmode/agentes/agent_manager.php:380 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../godmode/massive/massive_edit_agents.php:581 +#: ../../godmode/reporting/reporting_builder.item_editor.php:910 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +#: ../../include/functions_events.php:6001 +#: ../../operation/events/events_list.php:807 +#: ../../operation/events/events.php:1052 +#: ../../operation/events/events.build_table.php:156 +#: ../../operation/servers/recon_view.php:174 +msgid "Server" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1254 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1259 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1264 +#: ../../enterprise/godmode/policies/policy_queue.php:461 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:673 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:441 +#: ../../operation/servers/recon_view.php:109 #: ../../operation/servers/recon_view.php:158 msgid "Progress" msgstr "" -#: ../../operation/servers/recon_view.php:107 -#: ../../operation/incidents/incident_detail.php:261 -msgid "Updated at" +#: ../../enterprise/meta/advanced/policymanager.queue.php:337 +#: ../../enterprise/godmode/policies/policy_queue.php:541 +msgid "Delete from queue" msgstr "" -#: ../../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" +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +msgid "Empty queue." msgstr "" -#: ../../operation/servers/recon_view.php:140 -msgid "Pending" -msgstr "" - -#: ../../operation/servers/recon_view.php:145 -#: ../../godmode/servers/manage_recontask.php:314 -msgid "Network recon task" -msgstr "" - -#: ../../operation/servers/recon_view.php:173 -msgid "has no recon tasks assigned" -msgstr "" - -#: ../../operation/search_maps.php:33 -msgid "Elements" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/search_results.php:64 ../../mobile/operation/home.php:135 -msgid "Global search" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/search_results.php:114 -#: ../../include/functions_groups.php:120 -msgid "Reports" -msgstr "" - -#: ../../operation/search_results.php:124 -msgid "Maps" -msgstr "" - -#: ../../operation/search_results.php:144 -msgid "Helps" -msgstr "" - -#: ../../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 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:95 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:689 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:356 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:612 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3468 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/extensions/ipam/ipam_network.php:325 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:212 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:396 +#: ../../enterprise/godmode/agentes/collections.agents.php:106 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:82 +#: ../../enterprise/godmode/policies/policy_linking.php:122 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/services/services.elements.php:616 +#: ../../enterprise/godmode/services/services.elements.php:641 +#: ../../enterprise/godmode/services/services.elements.php:656 +#: ../../enterprise/godmode/services/services.elements.php:663 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1879 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3148 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3357 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:287 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/include/functions_inventory.php:253 +#: ../../enterprise/include/functions_inventory.php:710 +#: ../../enterprise/include/functions_inventory.php:766 +#: ../../enterprise/include/functions_reporting_pdf.php:465 +#: ../../enterprise/include/functions_reporting_pdf.php:473 +#: ../../enterprise/include/functions_reporting_pdf.php:481 +#: ../../enterprise/include/functions_reporting_pdf.php:497 +#: ../../enterprise/include/functions_reporting_pdf.php:654 +#: ../../enterprise/include/functions_alert_event.php:1131 +#: ../../enterprise/include/functions_reporting_csv.php:462 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:1303 +#: ../../enterprise/include/functions_reporting_csv.php:1349 +#: ../../enterprise/include/functions_reporting_csv.php:1422 +#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1736 +#: ../../enterprise/include/functions_reporting_csv.php:1809 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2133 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:839 +#: ../../enterprise/include/functions_reporting.php:1675 +#: ../../enterprise/include/functions_reporting.php:2009 +#: ../../enterprise/include/functions_reporting.php:2040 +#: ../../enterprise/include/functions_reporting.php:2058 +#: ../../enterprise/include/functions_reporting.php:2575 +#: ../../enterprise/include/functions_reporting.php:3567 +#: ../../enterprise/include/functions_services.php:2507 +#: ../../enterprise/include/functions_events.php:147 +#: ../../enterprise/operation/agentes/tag_view.php:577 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:147 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:412 +#: ../../enterprise/operation/log/log_viewer.php:463 +#: ../../enterprise/operation/inventory/inventory.php:224 +#: ../../extensions/agents_alerts.php:312 +#: ../../extensions/agents_alerts.php:586 ../../extensions/insert_data.php:155 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:112 #: ../../godmode/agentes/planned_downtime.list.php:177 -msgid "Search" +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +#: ../../godmode/agentes/module_manager_editor_common.php:1219 +#: ../../godmode/gis_maps/configure_gis_map.php:517 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/alerts/alert_list.list.php:452 +#: ../../godmode/alerts/alert_list.list.php:696 +#: ../../godmode/alerts/alert_view.php:64 +#: ../../godmode/alerts/alert_list.builder.php:55 +#: ../../godmode/reporting/reporting_builder.list_items.php:377 +#: ../../godmode/reporting/create_container.php:355 +#: ../../godmode/reporting/create_container.php:522 +#: ../../godmode/reporting/create_container.php:593 +#: ../../godmode/reporting/graph_builder.graph_editor.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1301 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2852 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3281 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3305 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:470 +#: ../../godmode/reporting/visual_console_builder.wizard.php:758 +#: ../../godmode/reporting/visual_console_builder.wizard.php:781 +#: ../../godmode/servers/plugin.php:70 ../../mobile/operation/agents.php:75 +#: ../../mobile/operation/agents.php:388 ../../mobile/operation/modules.php:570 +#: ../../mobile/operation/home.php:92 ../../mobile/operation/alerts.php:316 +#: ../../mobile/operation/events.php:553 +#: ../../include/functions_visual_map_editor.php:388 +#: ../../include/functions_visual_map_editor.php:421 +#: ../../include/functions_reporting_html.php:492 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:965 +#: ../../include/functions_reporting_html.php:973 +#: ../../include/functions_reporting_html.php:1782 +#: ../../include/functions_reporting_html.php:2307 +#: ../../include/functions_reporting_html.php:2399 +#: ../../include/functions_reporting_html.php:2702 +#: ../../include/functions_reporting_html.php:2760 +#: ../../include/functions_reporting_html.php:2768 +#: ../../include/functions_reporting_html.php:2776 +#: ../../include/functions_reporting_html.php:2788 +#: ../../include/functions_reporting_html.php:2908 +#: ../../include/functions_reporting_html.php:3031 +#: ../../include/functions_reporting_html.php:3116 +#: ../../include/functions_reporting_html.php:3659 +#: ../../include/functions_reporting_html.php:3715 +#: ../../include/functions_reporting_html.php:3753 +#: ../../include/functions_reporting_html.php:4062 +#: ../../include/functions_reporting_html.php:4102 +#: ../../include/functions_reporting_html.php:4352 +#: ../../include/functions_reporting_html.php:5113 +#: ../../include/ajax/alert_list.ajax.php:436 +#: ../../include/functions_graph.php:5175 ../../include/functions_gis.php:229 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:540 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:307 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:331 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:492 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:196 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:572 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:213 +#: ../../include/class/NetworkMap.class.php:2856 +#: ../../include/class/NetworkMap.class.php:2909 +#: ../../include/class/NetworkMap.class.php:3158 +#: ../../include/functions_reporting.php:4982 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:248 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 +#: ../../include/lib/Dashboard/Widgets/module_value.php:290 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 +#: ../../include/lib/Dashboard/Widgets/module_status.php:306 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1299 +#: ../../operation/search_agents.php:41 ../../operation/search_agents.php:47 +#: ../../operation/agentes/alerts_status.php:521 +#: ../../operation/agentes/alerts_status.php:591 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:704 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1139 +#: ../../operation/agentes/estado_monitores.php:116 +#: ../../operation/agentes/ver_agente.php:991 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 +#: ../../operation/search_alerts.php:33 +#: ../../operation/incidents/incident_detail.php:376 +#: ../../operation/search_modules.php:32 +#: ../../operation/events/sound_events.php:77 +#: ../../operation/events/events.php:1637 +#: ../../operation/events/events.build_table.php:80 +msgid "Agent" msgstr "" -#: ../../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" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:96 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +#: ../../enterprise/godmode/servers/HA_cluster.php:122 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../enterprise/include/class/DeploymentCenter.class.php:715 +#: ../../enterprise/include/class/DeploymentCenter.class.php:765 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1240 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../extensions/api_checker.php:123 ../../extensions/users_connected.php:78 +#: ../../godmode/admin_access_logs.php:75 +#: ../../godmode/admin_access_logs.php:76 +#: ../../godmode/reporting/visual_console_builder.elements.php:693 +#: ../../include/functions_visual_map_editor.php:1363 +#: ../../include/functions_reporting_html.php:2324 +#: ../../include/functions_reporting_html.php:2608 +#: ../../operation/network/network_report.php:195 +msgid "IP" msgstr "" -#: ../../operation/agentes/status_monitor.php:45 -msgid "Monitor view" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:98 +#: ../../godmode/massive/massive_edit_modules.php:440 +msgid "Agent Status" msgstr "" -#: ../../operation/agentes/status_monitor.php:306 -msgid "Monitor status" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:113 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:219 +#: ../../enterprise/meta/monitoring/group_view.php:191 +#: ../../enterprise/meta/monitoring/group_view.php:197 +#: ../../enterprise/meta/monitoring/tactical.php:241 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/include/functions_services.php:2312 +#: ../../enterprise/operation/agentes/tag_view.php:110 +#: ../../enterprise/operation/services/services.treeview_services.php:263 +#: ../../godmode/groups/group_list.php:885 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../godmode/massive/massive_copy_modules.php:99 +#: ../../godmode/massive/massive_copy_modules.php:259 +#: ../../godmode/massive/massive_delete_modules.php:394 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_delete_agents.php:136 +#: ../../godmode/massive/massive_edit_agents.php:423 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../godmode/massive/massive_edit_modules.php:443 +#: ../../mobile/operation/agents.php:40 ../../mobile/operation/modules.php:49 +#: ../../include/functions_reporting_html.php:1897 +#: ../../include/functions.php:1034 ../../include/functions.php:1273 +#: ../../include/functions.php:1280 ../../include/functions.php:1313 +#: ../../include/functions_graph.php:3475 +#: ../../include/functions_graph.php:3476 +#: ../../include/functions_graph.php:4955 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:284 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:639 +#: ../../include/functions_events.php:3104 ../../operation/tree.php:159 +#: ../../operation/tree.php:203 ../../operation/tree.php:387 +#: ../../operation/agentes/estado_agente.php:237 +#: ../../operation/agentes/status_monitor.php:380 +#: ../../operation/agentes/group_view.php:197 +#: ../../operation/agentes/group_view.php:202 +#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/tactical.php:149 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Normal" msgstr "" -#: ../../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" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:118 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:221 +#: ../../enterprise/meta/monitoring/group_view.php:193 +#: ../../enterprise/meta/monitoring/group_view.php:199 +#: ../../enterprise/meta/monitoring/tactical.php:239 +#: ../../enterprise/meta/include/functions_wizard_meta.php:983 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1070 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1715 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1733 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:104 +#: ../../enterprise/godmode/services/services.service.php:407 +#: ../../enterprise/godmode/services/services.elements.php:751 +#: ../../enterprise/include/functions_reporting.php:2882 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4471 +#: ../../enterprise/include/functions_reporting.php:5420 +#: ../../enterprise/include/functions_services.php:2320 +#: ../../enterprise/include/functions_services.php:2484 +#: ../../enterprise/operation/agentes/tag_view.php:112 +#: ../../enterprise/operation/services/services.service.php:169 +#: ../../enterprise/operation/services/services.service.php:219 +#: ../../enterprise/operation/services/services.service_map.php:170 +#: ../../enterprise/operation/services/services.treeview_services.php:243 +#: ../../enterprise/operation/services/services.list.php:198 +#: ../../enterprise/operation/services/services.list.php:430 +#: ../../enterprise/operation/services/services.list.php:492 +#: ../../enterprise/operation/services/services.table_services.php:177 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/groups/group_list.php:865 +#: ../../godmode/massive/massive_copy_modules.php:101 +#: ../../godmode/massive/massive_copy_modules.php:261 +#: ../../godmode/massive/massive_delete_modules.php:396 +#: ../../godmode/massive/massive_delete_modules.php:417 +#: ../../godmode/massive/massive_delete_agents.php:138 +#: ../../godmode/massive/massive_edit_agents.php:425 +#: ../../godmode/massive/massive_edit_modules.php:360 +#: ../../godmode/massive/massive_edit_modules.php:445 +#: ../../mobile/operation/agents.php:39 ../../mobile/operation/modules.php:51 +#: ../../include/functions_reporting_html.php:775 +#: ../../include/functions_reporting_html.php:1898 +#: ../../include/functions_reporting_html.php:3575 +#: ../../include/functions.php:1042 ../../include/functions.php:1277 +#: ../../include/functions.php:1278 ../../include/functions.php:1280 +#: ../../include/functions.php:1321 ../../include/functions_graph.php:3495 +#: ../../include/functions_graph.php:3496 +#: ../../include/functions_graph.php:4963 ../../include/functions_ui.php:2568 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/class/AgentWizard.class.php:443 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:286 +#: ../../include/lib/Dashboard/Widgets/service_map.php:332 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:619 +#: ../../include/functions_events.php:3112 ../../operation/tree.php:161 +#: ../../operation/tree.php:205 ../../operation/tree.php:367 +#: ../../operation/agentes/estado_agente.php:239 +#: ../../operation/agentes/status_monitor.php:382 +#: ../../operation/agentes/group_view.php:199 +#: ../../operation/agentes/group_view.php:204 +#: ../../operation/agentes/estado_monitores.php:514 +#: ../../operation/agentes/tactical.php:147 +#: ../../operation/gis_maps/render_view.php:151 +msgid "Critical" msgstr "" -#: ../../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" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 +#: ../../enterprise/meta/monitoring/group_view.php:189 +#: ../../enterprise/meta/monitoring/group_view.php:195 +#: ../../enterprise/meta/monitoring/tactical.php:242 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:105 +#: ../../enterprise/include/functions_cron.php:549 +#: ../../enterprise/include/functions_reporting_pdf.php:578 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:222 +#: ../../enterprise/include/functions_reporting.php:1712 +#: ../../enterprise/include/functions_reporting.php:2623 +#: ../../enterprise/include/functions_reporting.php:3616 +#: ../../enterprise/include/functions_reporting.php:4476 +#: ../../enterprise/include/functions_reporting.php:5380 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:579 +#: ../../enterprise/operation/agentes/transactional_map.php:330 +#: ../../enterprise/operation/agentes/transactional_map.php:348 +#: ../../enterprise/operation/agentes/tag_view.php:113 +#: ../../enterprise/operation/services/services.service.php:231 +#: ../../enterprise/operation/services/services.service_map.php:173 +#: ../../enterprise/operation/services/services.treeview_services.php:253 +#: ../../enterprise/operation/services/services.list.php:199 +#: ../../enterprise/operation/services/services.list.php:505 +#: ../../enterprise/operation/services/services.table_services.php:178 +#: ../../extensions/module_groups.php:52 +#: ../../godmode/groups/group_list.php:875 +#: ../../godmode/massive/massive_copy_modules.php:102 +#: ../../godmode/massive/massive_copy_modules.php:262 +#: ../../godmode/massive/massive_delete_modules.php:397 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_agents.php:139 +#: ../../godmode/massive/massive_edit_agents.php:426 +#: ../../godmode/massive/massive_edit_modules.php:361 +#: ../../godmode/massive/massive_edit_modules.php:446 +#: ../../godmode/alerts/alert_list.builder.php:282 +#: ../../mobile/operation/agents.php:42 ../../mobile/operation/modules.php:52 +#: ../../include/functions_reporting_html.php:1887 +#: ../../include/functions_reporting_html.php:1900 +#: ../../include/functions_reporting_html.php:2514 +#: ../../include/functions_reporting_html.php:2867 +#: ../../include/functions.php:1228 ../../include/functions.php:3798 +#: ../../include/ajax/module.php:936 ../../include/functions_ui.php:538 +#: ../../include/functions_ui.php:539 +#: ../../include/functions_visual_map.php:2455 +#: ../../include/functions_visual_map.php:2483 +#: ../../include/functions_visual_map.php:2501 +#: ../../include/functions_visual_map.php:2519 +#: ../../include/functions_alerts.php:685 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:550 ../../include/functions_maps.php:54 +#: ../../include/functions_netflow.php:1608 +#: ../../include/functions_reporting.php:4592 +#: ../../include/functions_filemanager.php:681 +#: ../../include/lib/Dashboard/Widgets/events_list.php:549 +#: ../../include/lib/Dashboard/Widgets/service_map.php:335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:408 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:629 +#: ../../include/functions_events.php:3016 +#: ../../include/functions_events.php:5179 ../../operation/tree.php:162 +#: ../../operation/tree.php:206 ../../operation/tree.php:377 +#: ../../operation/agentes/estado_agente.php:240 +#: ../../operation/agentes/status_monitor.php:383 +#: ../../operation/agentes/group_view.php:195 +#: ../../operation/agentes/group_view.php:200 +#: ../../operation/agentes/estado_monitores.php:519 +#: ../../operation/agentes/pandora_networkmap.view.php:266 +#: ../../operation/agentes/tactical.php:150 +#: ../../operation/events/events.php:1929 +msgid "Unknown" msgstr "" -#: ../../operation/agentes/status_monitor.php:327 -#: ../../operation/incidents/incident.php:238 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:132 +msgid "No init" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:48 +msgid "Custom fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:60 +msgid "Custom Fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:160 +#: ../../enterprise/godmode/policies/policies.php:350 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:567 +#: ../../extensions/agents_modules.php:392 +#: ../../godmode/agentes/modificar_agente.php:204 +#: ../../godmode/agentes/planned_downtime.editor.php:936 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +#: ../../operation/agentes/estado_agente.php:226 +msgid "Recursion" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:170 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../godmode/events/event_edit_filter.php:580 +#: ../../operation/events/events_list.php:795 +#: ../../operation/events/events.php:1063 +msgid "Module search" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:197 +msgid "Custom Fields Data" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:223 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:106 +#: ../../enterprise/operation/agentes/tag_view.php:114 +#: ../../godmode/massive/massive_copy_modules.php:103 +#: ../../godmode/massive/massive_copy_modules.php:263 +#: ../../godmode/massive/massive_delete_modules.php:398 +#: ../../godmode/massive/massive_delete_modules.php:419 +#: ../../godmode/massive/massive_delete_agents.php:140 +#: ../../godmode/massive/massive_edit_agents.php:427 +#: ../../godmode/massive/massive_edit_modules.php:362 +#: ../../godmode/massive/massive_edit_modules.php:447 +#: ../../godmode/events/event_edit_filter.php:281 +#: ../../mobile/operation/modules.php:53 ../../include/functions.php:1279 +#: ../../include/lib/Dashboard/Widgets/events_list.php:262 +#: ../../include/functions_events.php:3064 +#: ../../operation/agentes/estado_agente.php:241 +#: ../../operation/agentes/status_monitor.php:384 +#: ../../operation/events/events_list.php:928 +#: ../../operation/events/events.php:891 +msgid "Not normal" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:225 +#: ../../enterprise/meta/monitoring/group_view.php:190 +#: ../../enterprise/meta/monitoring/group_view.php:196 +#: ../../enterprise/meta/monitoring/tactical.php:243 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:107 +#: ../../enterprise/operation/agentes/transactional_map.php:336 +#: ../../enterprise/operation/agentes/tag_view.php:116 +#: ../../enterprise/operation/services/services.treeview_services.php:258 +#: ../../godmode/groups/group_list.php:880 +#: ../../godmode/massive/massive_copy_modules.php:104 +#: ../../godmode/massive/massive_copy_modules.php:264 +#: ../../godmode/massive/massive_delete_modules.php:399 +#: ../../godmode/massive/massive_delete_modules.php:420 +#: ../../godmode/massive/massive_delete_agents.php:141 +#: ../../godmode/massive/massive_edit_agents.php:428 +#: ../../godmode/massive/massive_edit_modules.php:363 +#: ../../godmode/massive/massive_edit_modules.php:448 +#: ../../mobile/operation/modules.php:55 +#: ../../include/functions_reporting_html.php:592 +#: ../../include/functions_reporting_html.php:1901 +#: ../../include/functions_reporting_html.php:3445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:376 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:409 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:634 +#: ../../operation/tree.php:163 ../../operation/tree.php:207 +#: ../../operation/tree.php:382 ../../operation/agentes/estado_agente.php:242 +#: ../../operation/agentes/status_monitor.php:386 +#: ../../operation/agentes/group_view.php:196 +#: ../../operation/agentes/group_view.php:201 +#: ../../operation/agentes/tactical.php:151 +msgid "Not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 +msgid "Status agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:247 +msgid "Status module" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:267 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:273 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:274 +#: ../../include/ajax/events.php:622 ../../operation/events/events_list.php:364 +#: ../../operation/events/events_list.php:481 +#: ../../operation/events/events_list.php:1036 +#: ../../operation/events/events.php:991 +msgid "Save filter" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:281 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:287 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:288 +#: ../../include/ajax/custom_fields.php:577 ../../include/ajax/events.php:387 +#: ../../include/ajax/events.php:403 +#: ../../operation/netflow/nf_live_view.php:389 +#: ../../operation/events/events_list.php:372 +#: ../../operation/events/events_list.php:512 +#: ../../operation/events/events_list.php:523 +#: ../../operation/events/events_list.php:1039 +#: ../../operation/events/events.php:983 +msgid "Load filter" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:296 +#: ../../enterprise/extensions/vmware/vmware_view.php:1450 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1493 +#: ../../enterprise/include/class/AgentRepository.class.php:754 +#: ../../enterprise/include/class/Omnishell.class.php:1074 +#: ../../enterprise/operation/agentes/tag_view.php:154 +#: ../../include/class/ConfigPEN.class.php:251 +#: ../../include/class/CredentialStore.class.php:1006 +#: ../../operation/agentes/status_monitor.php:426 +#: ../../operation/incidents/incident.php:301 msgid "Show" msgstr "" -#: ../../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" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:310 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:437 +#: ../../enterprise/operation/log/log_viewer.php:662 +#: ../../enterprise/operation/reporting/custom_reporting.php:62 +#: ../../godmode/modules/manage_network_templates.php:270 +#: ../../godmode/agentes/planned_downtime.list.php:524 +#: ../../godmode/admin_access_logs.php:39 +#: ../../include/graphs/functions_flot.php:359 +#: ../../include/class/ModuleTemplates.class.php:851 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:220 +msgid "Export to CSV" msgstr "" -#: ../../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." +#: ../../enterprise/meta/monitoring/custom_fields_view.php:337 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:339 +#: ../../enterprise/include/class/DatabaseHA.class.php:216 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:574 +#: ../../include/functions_ui.php:3359 +msgid "Processing" msgstr "" -#: ../../operation/agentes/status_monitor.php:349 -#: ../../operation/agentes/alerts_status.functions.php:91 -msgid "No tags" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:364 +#: ../../mobile/operation/groups.php:143 +#: ../../include/functions_reporting_html.php:4534 +#: ../../include/functions_agents.php:3485 +msgid "Agents critical" msgstr "" -#: ../../operation/agentes/status_monitor.php:380 -#: ../../godmode/agentes/module_manager_editor_data.php:17 -msgid "Data server module" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:377 +#: ../../include/functions_reporting_html.php:4537 +#: ../../include/functions_agents.php:3495 +msgid "Agents warning" msgstr "" -#: ../../operation/agentes/status_monitor.php:382 -#: ../../godmode/agentes/module_manager_editor_network.php:64 -msgid "Network server module" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:390 +#: ../../include/functions_reporting_html.php:4543 +#: ../../include/functions_agents.php:3475 +#: ../../include/functions_agents.php:3529 +msgid "Agents ok" msgstr "" -#: ../../operation/agentes/status_monitor.php:384 -#: ../../godmode/agentes/module_manager_editor_plugin.php:47 -msgid "Plugin server module" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:403 +#: ../../mobile/operation/groups.php:146 +#: ../../include/functions_reporting_html.php:4546 +#: ../../include/functions_agents.php:3505 +msgid "Agents unknown" msgstr "" -#: ../../operation/agentes/status_monitor.php:386 -#: ../../godmode/agentes/module_manager_editor_wmi.php:32 -msgid "WMI server module" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:416 +#: ../../mobile/operation/groups.php:140 +#: ../../include/functions_reporting_html.php:4552 +#: ../../include/functions_agents.php:3519 +msgid "Agents not init" msgstr "" -#: ../../operation/agentes/status_monitor.php:388 -#: ../../godmode/agentes/module_manager_editor_prediction.php:88 -msgid "Prediction server module" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:442 +#: ../../include/functions_reporting.php:9145 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor critical" msgstr "" -#: ../../operation/agentes/status_monitor.php:390 -msgid "Web server module" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:453 +#: ../../include/functions_reporting.php:9149 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor warning" msgstr "" -#: ../../operation/agentes/status_monitor.php:394 -#: ../../operation/agentes/status_monitor.php:962 -msgid "Server type" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:464 +#: ../../include/functions_reporting.php:9156 +msgid "Monitor normal" msgstr "" -#: ../../operation/agentes/status_monitor.php:398 -#: ../../godmode/agentes/modificar_agente.php:158 -msgid "Only enabled" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:475 +#: ../../include/functions_reporting.php:9160 +#: ../../operation/events/sound_events.php:75 +msgid "Monitor unknown" msgstr "" -#: ../../operation/agentes/status_monitor.php:398 -#: ../../godmode/agentes/modificar_agente.php:157 -msgid "Only disabled" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:486 +#: ../../include/functions_reporting.php:9167 +msgid "Monitor not init" msgstr "" -#: ../../operation/agentes/status_monitor.php:400 -msgid "Show monitors..." +#: ../../enterprise/meta/monitoring/custom_fields_view.php:501 +#: ../../include/functions_reporting_html.php:4561 +#: ../../include/functions_reporting_html.php:4566 +msgid "Agents by status" msgstr "" -#: ../../operation/agentes/status_monitor.php:410 -msgid "Data type" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:509 +#: ../../include/functions_reporting.php:9187 +#: ../../include/functions_reporting.php:9193 +msgid "Monitors by status" msgstr "" -#: ../../operation/agentes/status_monitor.php:529 -msgid "Advanced Options" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:523 +#: ../../enterprise/operation/services/services.treeview_services.php:241 +#: ../../godmode/groups/group_list.php:863 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 +#: ../../operation/tree.php:365 +msgid "Critical agents" msgstr "" -#: ../../operation/agentes/status_monitor.php:539 -#: ../../operation/agentes/agent_fields.php:38 -msgid "Agent custom fields" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 +#: ../../enterprise/operation/services/services.treeview_services.php:246 +#: ../../godmode/groups/group_list.php:868 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 +#: ../../operation/tree.php:370 +msgid "Warning agents" msgstr "" -#: ../../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" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 +#: ../../enterprise/operation/services/services.treeview_services.php:261 +#: ../../godmode/groups/group_list.php:883 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:637 +#: ../../operation/tree.php:385 +msgid "Normal agents" msgstr "" -#: ../../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." +#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 +#: ../../enterprise/operation/services/services.treeview_services.php:251 +#: ../../godmode/groups/group_list.php:873 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:627 +#: ../../operation/tree.php:375 +msgid "Unknown agents" msgstr "" -#: ../../operation/agentes/status_monitor.php:952 -msgid "Data Type" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 +#: ../../enterprise/operation/services/services.treeview_services.php:256 +#: ../../godmode/groups/group_list.php:878 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:632 +#: ../../operation/tree.php:380 +msgid "Not init agents" msgstr "" -#: ../../operation/agentes/status_monitor.php:980 -#: ../../include/ajax/module.php:748 -#: ../../godmode/agentes/module_manager.php:565 -msgid "Warn" -msgstr "" - -#: ../../operation/agentes/status_monitor.php:1035 -#: ../../operation/agentes/pandora_networkmap.view.php:258 -msgid "(Adopt) " -msgstr "" - -#: ../../operation/agentes/status_monitor.php:1045 -#: ../../operation/agentes/pandora_networkmap.view.php:268 -msgid "(Unlinked) (Adopt) " -msgstr "" - -#: ../../operation/agentes/status_monitor.php:1049 -#: ../../operation/agentes/pandora_networkmap.view.php:272 -msgid "(Unlinked) " -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/status_monitor.php:1443 -msgid "This group doesn't have any monitor" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:153 -msgid "Succesfully created" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/pandora_networkmap.php:247 -msgid "Succesfully updated" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:260 -msgid "Succesfully duplicate" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:260 -msgid "Could not be duplicated" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:269 -msgid "Succesfully deleted" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:365 -#: ../../operation/agentes/pandora_networkmap.view.php:701 -#: ../../operation/agentes/pandora_networkmap.editor.php:133 -msgid "Networkmap" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:399 -#: ../../include/functions_reporting_html.php:3479 -msgid "Nodes" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/pandora_networkmap.php:466 -msgid "Pending to generate" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:486 -msgid "Config" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:502 -msgid "There are no maps defined." -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.php:509 -msgid "Create networkmap" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/agent_fields.php:45 -#: ../../operation/agentes/estado_generalagente.php:354 -#: ../../include/functions_treeview.php:691 -msgid "Custom field" -msgstr "" - -#: ../../operation/agentes/agent_fields.php:48 -#: ../../operation/agentes/custom_fields.php:87 -msgid "empty" -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:111 -msgid "Success be updated." -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:114 -msgid "Could not be updated." -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:227 -msgid "Name: " -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:277 -msgid "Policy: " -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:326 -msgid "Status: " -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:370 -msgid "Data: " -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:373 -#: ../../operation/agentes/estado_generalagente.php:552 -msgid "Last contact: " -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:703 -#: ../../operation/agentes/pandora_networkmap.editor.php:162 -msgid "Not found networkmap." -msgstr "" - -#: ../../operation/agentes/pandora_networkmap.view.php:747 -msgid "List of networkmap" -msgstr "" - -#: ../../operation/agentes/exportdata.php:82 -#: ../../operation/agentes/exportdata.excel.php:67 -#: ../../operation/agentes/exportdata.csv.php:68 -msgid "Invalid time specified" -msgstr "" - -#: ../../operation/agentes/exportdata.php:218 -#: ../../operation/agentes/exportdata.excel.php:165 -#: ../../operation/agentes/exportdata.csv.php:182 -msgid "No modules specified" -msgstr "" - -#: ../../operation/agentes/exportdata.php:244 -#: ../../godmode/db/db_refine.php:83 -msgid "Source agent" -msgstr "" - -#: ../../operation/agentes/exportdata.php:276 -msgid "No modules of type string. You can not calculate their average" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/exportdata.php:319 -msgid "End date" -msgstr "" - -#: ../../operation/agentes/exportdata.php:327 -msgid "Export type" -msgstr "" - -#: ../../operation/agentes/exportdata.php:330 -#: ../../include/functions_netflow.php:1034 -msgid "Data table" -msgstr "" - -#: ../../operation/agentes/exportdata.php:331 -#: ../../extensions/insert_data.php:185 -msgid "CSV" -msgstr "" - -#: ../../operation/agentes/exportdata.php:332 -msgid "MS Excel" -msgstr "" - -#: ../../operation/agentes/exportdata.php:333 -msgid "Average per hour/day" -msgstr "" - -#: ../../operation/agentes/exportdata.php:341 -#: ../../extensions/resource_exportation.php:354 -#: ../../extensions/resource_exportation.php:357 -msgid "Export" -msgstr "" - -#: ../../operation/agentes/custom_fields.php:52 -msgid "No fields defined" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/custom_fields.php:61 -#: ../../godmode/agentes/configure_field.php:51 -#: ../../godmode/agentes/fields_manager.php:96 -msgid "Display on front" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/estado_monitores.php:35 -msgid "Tag's information" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:81 -msgid "Relationship information" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:128 -msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:129 -msgid "Full list of monitors" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:154 -msgid "List of modules" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:445 -msgid "Status:" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:451 -msgid "Not Normal" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:459 -msgid "Free text for search (*):" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:460 -msgid "Search by module name, list matches." -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:472 -#: ../../godmode/agentes/module_manager.php:120 -msgid "Show in hierachy mode" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:475 -msgid "Reset" -msgstr "" - -#: ../../operation/agentes/snapshot_view.php:66 -msgid "Current data at" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:108 -msgid "Full list of alerts" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:135 -msgid "Alerts view" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:144 -msgid "Insufficient permissions to validate alerts" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:396 -#: ../../godmode/alerts/alert_list.list.php:163 -msgid "Alert control filter" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/agentes/alerts_status.php:599 -msgid "No alerts found" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:165 -msgid "Received data from" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:172 -msgid "Main database" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:172 -msgid "History database" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:173 -msgid "" -"Switch between the main database and the history database to retrieve module " -"data" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:185 -#: ../../include/ajax/module.php:149 -msgid "Choose a time from now" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:188 -#: ../../include/ajax/module.php:161 -msgid "Specify time range" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:202 -#: ../../operation/agentes/alerts_status.functions.php:97 -msgid "Free text for search" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:286 -#: ../../include/ajax/module.php:345 -#: ../../godmode/agentes/module_manager.php:523 -msgid "No available data to show" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/tactical.php:135 -msgid "Report of State" -msgstr "" - -#: ../../operation/agentes/tactical.php:188 -#: ../../include/functions_events.php:880 -msgid "Latest events" -msgstr "" - -#: ../../operation/agentes/ehorus.php:30 -msgid "Missing agent id" -msgstr "" - -#: ../../operation/agentes/ehorus.php:48 -msgid "Missing ehorus agent id" -msgstr "" - -#: ../../operation/agentes/ehorus.php:80 -msgid "There was an error retrieving an authorization token" -msgstr "" - -#: ../../operation/agentes/ehorus.php:93 -#: ../../operation/agentes/ehorus.php:129 -msgid "There was an error processing the response" -msgstr "" - -#: ../../operation/agentes/ehorus.php:116 -msgid "There was an error retrieving the agent data" -msgstr "" - -#: ../../operation/agentes/ehorus.php:134 -msgid "Remote management of this agent with eHorus" -msgstr "" - -#: ../../operation/agentes/ehorus.php:136 -msgid "Launch" -msgstr "" - -#: ../../operation/agentes/ehorus.php:142 -msgid "The connection was lost and the authorization token was expired" -msgstr "" - -#: ../../operation/agentes/ehorus.php:144 -msgid "Reload the page to request a new authorization token" -msgstr "" - -#: ../../operation/agentes/alerts_status.functions.php:32 -msgid "Alert(s) validated" -msgstr "" - -#: ../../operation/agentes/alerts_status.functions.php:33 -msgid "Error processing alert(s)" -msgstr "" - -#: ../../operation/agentes/alerts_status.functions.php:72 -#: ../../mobile/operation/alerts.php:36 -msgid "All (Enabled)" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/alerts_status.functions.php:81 -#: ../../mobile/operation/alerts.php:45 -#: ../../godmode/alerts/alert_list.list.php:141 -msgid "Standby off" -msgstr "" - -#: ../../operation/agentes/alerts_status.functions.php:99 -msgid "Filter by agent name, module name, template name or action name" -msgstr "" - -#: ../../operation/agentes/alerts_status.functions.php:109 -msgid "No actions" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:48 -#: ../../operation/agentes/stat_win.php:44 -msgid "There was a problem connecting with the node" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:66 -msgid "In" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:67 -msgid "Out" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:201 -#: ../../operation/agentes/stat_win.php:268 -msgid "Pandora FMS Graph configuration menu" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:220 -#: ../../operation/agentes/stat_win.php:297 -msgid "Refresh time" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:239 -#: ../../operation/agentes/stat_win.php:377 -msgid "Show percentil" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:245 -#: ../../operation/agentes/stat_win.php:326 -msgid "Zoom factor" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:272 -#: ../../operation/agentes/stat_win.php:421 -msgid "Reload" -msgstr "" - -#: ../../operation/agentes/ver_agente.php:686 -msgid "Main IP" -msgstr "" - -#: ../../operation/agentes/ver_agente.php:697 -#: ../../include/functions_events.php:2043 -msgid "Last remote contact" -msgstr "" - -#: ../../operation/agentes/ver_agente.php:737 -msgid "Monitors down" -msgstr "" - -#: ../../operation/agentes/ver_agente.php:773 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:592 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:242 +#: ../../godmode/groups/group_list.php:864 #: ../../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" +#: ../../include/lib/Dashboard/Widgets/tree_view.php:618 +#: ../../operation/tree.php:366 +msgid "Critical modules" msgstr "" -#: ../../operation/agentes/ver_agente.php:822 -msgid "Address" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:247 +#: ../../godmode/groups/group_list.php:869 +#: ../../mobile/operation/groups.php:158 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:623 +#: ../../operation/tree.php:371 +msgid "Warning modules" msgstr "" -#: ../../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" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:612 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:262 +#: ../../godmode/groups/group_list.php:884 +#: ../../mobile/operation/groups.php:155 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:638 +#: ../../operation/tree.php:386 +msgid "Normal modules" msgstr "" -#: ../../operation/agentes/ver_agente.php:863 -msgid "Sons" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:622 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:252 +#: ../../godmode/groups/group_list.php:874 +#: ../../mobile/operation/groups.php:149 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:628 +#: ../../operation/tree.php:376 +msgid "Unknown modules" msgstr "" -#: ../../operation/agentes/ver_agente.php:1008 -#: ../../godmode/agentes/configurar_agente.php:374 -msgid "GIS data" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:632 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:257 +#: ../../godmode/groups/group_list.php:879 +#: ../../mobile/operation/groups.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:633 +#: ../../operation/tree.php:381 +msgid "Not init modules" msgstr "" -#: ../../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" +#: ../../enterprise/meta/monitoring/custom_fields_view.php:657 +msgid "Total counters" msgstr "" -#: ../../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 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:660 +msgid "Total Agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:669 +msgid "Total Modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:690 +msgid "I.P" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +#: ../../include/functions_api.php:143 +msgid "No data to show." +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:712 +msgid "There are no custom search defined." +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1098 +#: ../../enterprise/meta/event/custom_events.php:247 +#: ../../godmode/agentes/status_monitor_custom_fields.php:239 +#: ../../godmode/events/custom_events.php:201 +#: ../../include/class/TreeGroupEdition.class.php:92 +msgid "Confirm" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:455 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:668 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:244 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:169 +#: ../../godmode/agentes/planned_downtime.list.php:403 +#: ../../godmode/menu.php:197 ../../godmode/setup/setup.php:236 +#: ../../include/functions_reports.php:854 +#: ../../include/functions_reports.php:858 +#: ../../include/class/ConfigPEN.class.php:321 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1540 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1756 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1830 +msgid "Preview" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:211 +#: ../../godmode/agentes/configurar_agente.php:741 +#: ../../godmode/agentes/modificar_agente.php:758 +#: ../../operation/agentes/estado_agente.php:906 +#: ../../operation/agentes/estado_agente.php:917 +#: ../../operation/snmpconsole/snmp_statistics.php:155 +#: ../../operation/snmpconsole/snmp_view.php:901 +msgid "Create agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 +msgid "Advanced configuration" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:618 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:232 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1535 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1751 +#: ../../enterprise/meta/agentsearch.php:120 +#: ../../enterprise/godmode/policies/policy_alerts.php:35 +#: ../../enterprise/godmode/policies/policies.php:541 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +#: ../../enterprise/godmode/alerts/alert_events.php:84 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +#: ../../enterprise/godmode/services/services.service.php:487 +#: ../../enterprise/include/functions_policies.php:3760 +#: ../../enterprise/operation/agentes/tag_view.php:586 +#: ../../extensions/agents_alerts.php:472 +#: ../../godmode/groups/configure_group.php:184 +#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/agentes/configurar_agente.php:397 +#: ../../godmode/agentes/modificar_agente.php:636 ../../godmode/menu.php:207 +#: ../../godmode/massive/massive_copy_modules.php:200 +#: ../../godmode/alerts/configure_alert_command.php:43 +#: ../../godmode/alerts/alert_actions.php:52 +#: ../../godmode/alerts/alert_commands.php:284 +#: ../../godmode/alerts/configure_alert_special_days.php:55 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/configure_alert_action.php:60 +#: ../../godmode/alerts/configure_alert_action.php:73 +#: ../../godmode/alerts/configure_alert_template.php:69 +#: ../../godmode/alerts/configure_alert_template.php:93 +#: ../../godmode/alerts/configure_alert_template.php:126 +#: ../../godmode/alerts/alert_special_days.php:45 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/alerts/alert_list.php:449 +#: ../../mobile/include/functions_web.php:24 +#: ../../mobile/operation/agents.php:84 ../../mobile/operation/agents.php:397 +#: ../../mobile/operation/home.php:65 ../../mobile/operation/agent.php:328 +#: ../../mobile/operation/alerts.php:176 +#: ../../include/functions_reporting_html.php:1918 +#: ../../include/functions_reporting_html.php:4362 +#: ../../include/functions_treeview.php:409 +#: ../../include/functions_reports.php:812 +#: ../../include/functions_reports.php:816 +#: ../../include/functions_reports.php:821 ../../operation/search_agents.php:56 +#: ../../operation/search_results.php:105 +#: ../../operation/agentes/estado_agente.php:731 +#: ../../operation/agentes/ver_agente.php:1173 +msgid "Alerts" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:309 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 +#: ../../operation/snmpconsole/snmp_browser.php:574 +msgid "Create module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:376 +msgid "Edit module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:173 +#, php-format +msgid "Cannot connect to %s instance." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +msgid "Invalid characters founded in module name" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:216 +#: ../../godmode/agentes/configurar_agente.php:718 +#: ../../godmode/agentes/configurar_agente.php:740 ../../godmode/menu.php:71 +msgid "Manage agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:609 +#: ../../enterprise/meta/agentsearch.php:33 +#: ../../enterprise/meta/agentsearch.php:39 +#: ../../godmode/events/event_edit_filter.php:337 +#: ../../operation/events/events_list.php:755 +#: ../../operation/events/events.php:1046 +msgid "Agent search" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 +msgid "Select the agent to be edited or deleted" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:274 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:440 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:632 +#: ../../mobile/operation/agents.php:195 ../../mobile/operation/modules.php:217 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:154 +#: ../../mobile/operation/alerts.php:181 +#: ../../mobile/operation/visualmap.php:125 +#: ../../mobile/operation/visualmaps.php:114 +#: ../../mobile/operation/module_graph.php:367 +#: ../../mobile/operation/module_graph.php:379 +#: ../../mobile/operation/events.php:614 +#: ../../mobile/operation/tactical.php:104 +msgid "Back" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:314 +msgid "Manage modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:360 +msgid "Select the agent where the module will be created" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 +msgid "Create Module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:430 +msgid "Select the module to be edited or deleted" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:473 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:553 +#: ../../extensions/agents_alerts.php:217 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +msgid "Create alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:478 +#: ../../godmode/users/configure_profile.php:243 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/alerts/alert_list.php:449 +msgid "Manage alerts" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:540 +msgid "Select the module where the alert will be created" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 +msgid "Select the alert to be edited or deleted" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/massive/massive_delete_modules.php:299 +#: ../../godmode/massive/massive_edit_modules.php:279 +msgid "Module type" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/functions_reporting_html.php:4103 +#: ../../include/functions_reporting_html.php:4257 +msgid "Monitor" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:253 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:675 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1862 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../extensions/agents_modules.php:395 +#: ../../godmode/modules/manage_network_components_form_common.php:122 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +#: ../../godmode/massive/massive_edit_modules.php:817 +#: ../../godmode/reporting/create_container.php:508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1286 +#: ../../mobile/operation/modules.php:159 +#: ../../mobile/operation/modules.php:160 +#: ../../mobile/operation/modules.php:268 +#: ../../mobile/operation/modules.php:269 +#: ../../include/functions_graph.php:5198 +#: ../../include/functions_treeview.php:122 +#: ../../include/functions_events.php:4137 +#: ../../operation/agentes/status_monitor.php:405 +#: ../../operation/agentes/estado_monitores.php:545 +#: ../../operation/agentes/ver_agente.php:983 +msgid "Module group" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3475 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:21 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 +#: ../../enterprise/godmode/policies/policy_alerts.php:286 +#: ../../enterprise/godmode/policies/policy_alerts.php:502 +#: ../../enterprise/godmode/policies/policy_linking.php:123 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +#: ../../enterprise/godmode/services/services.elements.php:613 +#: ../../enterprise/godmode/services/services.elements.php:645 +#: ../../enterprise/godmode/services/services.elements.php:655 +#: ../../enterprise/godmode/services/services.elements.php:712 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1903 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3380 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 +#: ../../enterprise/include/functions_inventory.php:711 +#: ../../enterprise/include/functions_inventory.php:767 +#: ../../enterprise/include/functions_ui.php:47 +#: ../../enterprise/include/functions_reporting_pdf.php:466 +#: ../../enterprise/include/functions_reporting_pdf.php:474 +#: ../../enterprise/include/functions_reporting_pdf.php:482 +#: ../../enterprise/include/functions_reporting_pdf.php:498 +#: ../../enterprise/include/functions_alert_event.php:1132 +#: ../../enterprise/include/functions_reporting_csv.php:463 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:1304 +#: ../../enterprise/include/functions_reporting_csv.php:1350 +#: ../../enterprise/include/functions_reporting_csv.php:1423 +#: ../../enterprise/include/functions_reporting_csv.php:1542 +#: ../../enterprise/include/functions_reporting_csv.php:1737 +#: ../../enterprise/include/functions_reporting_csv.php:1810 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:840 +#: ../../enterprise/include/functions_reporting.php:1676 +#: ../../enterprise/include/functions_reporting.php:2576 +#: ../../enterprise/include/functions_reporting.php:3568 +#: ../../enterprise/include/functions_services.php:2569 +#: ../../enterprise/include/functions_events.php:157 +#: ../../enterprise/operation/agentes/policy_view.php:207 +#: ../../enterprise/operation/agentes/agent_inventory.php:69 +#: ../../enterprise/operation/inventory/inventory.php:185 +#: ../../extensions/agents_alerts.php:519 +#: ../../extensions/agents_modules.php:429 ../../extensions/insert_data.php:172 +#: ../../godmode/agentes/module_manager_editor_prediction.php:138 +#: ../../godmode/agentes/planned_downtime.list.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:1125 +#: ../../godmode/agentes/agent_manager.php:534 +#: ../../godmode/agentes/agent_manager.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:1176 +#: ../../godmode/agentes/module_manager_editor_common.php:1220 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/massive/massive_edit_agents.php:548 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/alerts/alert_list.list.php:454 +#: ../../godmode/alerts/alert_list.list.php:706 +#: ../../godmode/alerts/alert_view.php:68 +#: ../../godmode/alerts/alert_list.builder.php:69 +#: ../../godmode/reporting/reporting_builder.list_items.php:382 +#: ../../godmode/reporting/create_container.php:378 +#: ../../godmode/reporting/create_container.php:528 +#: ../../godmode/reporting/create_container.php:594 +#: ../../godmode/reporting/graph_builder.graph_editor.php:199 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1359 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3308 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:469 +#: ../../godmode/reporting/visual_console_builder.wizard.php:790 +#: ../../godmode/servers/plugin.php:71 ../../mobile/operation/alerts.php:319 +#: ../../include/functions_visual_map_editor.php:463 +#: ../../include/functions_reporting_html.php:493 +#: ../../include/functions_reporting_html.php:855 +#: ../../include/functions_reporting_html.php:1783 +#: ../../include/functions_reporting_html.php:2400 +#: ../../include/functions_reporting_html.php:2761 +#: ../../include/functions_reporting_html.php:2769 +#: ../../include/functions_reporting_html.php:2777 +#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2909 +#: ../../include/functions_reporting_html.php:3037 +#: ../../include/functions_reporting_html.php:3122 +#: ../../include/functions_reporting_html.php:3660 +#: ../../include/functions_reporting_html.php:3716 +#: ../../include/ajax/alert_list.ajax.php:278 +#: ../../include/ajax/alert_list.ajax.php:303 +#: ../../include/ajax/alert_list.ajax.php:457 +#: ../../include/functions_graph.php:5282 +#: ../../include/functions_treeview.php:64 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:557 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:410 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:324 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:348 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:510 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:213 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:591 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:231 +#: ../../include/functions_reporting.php:4983 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 +#: ../../include/lib/Dashboard/Widgets/module_value.php:308 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 +#: ../../include/lib/Dashboard/Widgets/module_status.php:324 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:641 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/alerts_status.php:522 +#: ../../operation/agentes/alerts_status.php:557 +#: ../../operation/agentes/alerts_status.php:592 +#: ../../operation/agentes/alerts_status.php:624 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:118 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:31 +msgid "Module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:228 +msgid "Module description" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:244 +msgid "Step by step wizard" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 +#: ../../enterprise/meta/general/main_header.php:298 +#: ../../enterprise/meta/general/main_header.php:386 +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/godmode/modules/configure_local_component.php:161 +#: ../../godmode/modules/manage_network_components_form_common.php:66 +#: ../../godmode/users/configure_user.php:948 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/alerts/alert_commands.php:130 +#: ../../godmode/alerts/alert_commands.php:140 +#: ../../godmode/alerts/configure_alert_template.php:861 +#: ../../godmode/alerts/configure_alert_template.php:875 +#: ../../godmode/alerts/configure_alert_template.php:963 +#: ../../operation/netflow/nf_live_view.php:482 +msgid "Advanced" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:257 +msgid "Click Create to continue" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:359 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 +#: ../../godmode/reporting/graph_builder.graph_editor.php:399 +msgid "Please, select a module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 +#: ../../enterprise/godmode/alerts/alert_events.php:672 +#: ../../enterprise/godmode/wizards/Cloud.class.php:535 +#: ../../enterprise/include/class/VMware.app.php:752 +#: ../../enterprise/include/class/Omnishell.class.php:829 +#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/Aws.cloud.php:1310 +#: ../../enterprise/include/class/MySQL.app.php:906 +#: ../../enterprise/include/class/Oracle.app.php:943 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1945 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1179 +#: ../../godmode/alerts/configure_alert_template.php:1004 +#: ../../godmode/wizards/HostDevices.class.php:1192 +#: ../../include/class/CustomNetScan.class.php:723 +msgid "Finish" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:92 +msgid "The alert you are trying to add is already in the list of alerts" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:93 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:545 +#: ../../operation/incidents/incident_detail.php:141 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:136 +msgid "No description available" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:96 +#: ../../enterprise/operation/agentes/policy_view.php:157 +#: ../../enterprise/operation/agentes/policy_view.php:223 +#: ../../enterprise/operation/agentes/policy_view.php:465 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/modules/manage_network_components_form_wmi.php:60 +#: ../../godmode/alerts/configure_alert_template.php:1111 +#: ../../godmode/alerts/alert_list.builder.php:285 +#: ../../include/functions.php:2553 +msgid "Empty" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 +#: ../../include/functions_events.php:3154 +#: ../../include/functions_events.php:3433 +msgid "New" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 +msgid "" +"Are you sure? If the agent is on a policy, it will be removed from the " +"policy." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 +msgid "Please, select an alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 +msgid "Please, select an agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 +#: ../../enterprise/godmode/policies/policy_modules.php:1603 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:178 +#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:684 +#: ../../godmode/massive/massive_copy_modules.php:219 +#: ../../include/functions_events.php:3980 +#: ../../operation/reporting/reporting_viewer.php:255 +#: ../../general/ui/agents_list.php:146 +msgid "Loading" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:109 +#: ../../enterprise/meta/include/functions_wizard_meta.php:641 +#: ../../godmode/tag/edit_tag.php:184 +#: ../../include/functions_reporting.php:5072 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:110 +msgid "String" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:111 +msgid "No agent name specified" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 +msgid "Another agent already exists with the same name" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:114 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:414 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:417 +#: ../../godmode/agentes/module_manager_editor_common.php:568 +#: ../../godmode/agentes/module_manager_editor_common.php:570 +#, php-format +msgid "Agent interval x %s" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:38 +msgid "Group View" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +#: ../../godmode/groups/group_list.php:270 +#: ../../godmode/users/configure_user.php:892 +#: ../../operation/users/user_edit.php:340 +#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:50 +msgid "Group view" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:134 +msgid "Summary by status" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:142 +#: ../../enterprise/meta/monitoring/group_view.php:146 +msgid "% Agents not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:143 +msgid "% Agents Warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:144 +msgid "% Agents OK" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:145 +msgid "% Agents Unknown" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:149 +msgid "% Monitors Critical" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:150 +msgid "% Monitors Warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "% Monitors OK" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:152 +msgid "% Monitors Unknown" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:153 +msgid "% Monitors Not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:168 +#: ../../godmode/agentes/modificar_agente.php:749 +#: ../../operation/agentes/estado_agente.php:913 +#: ../../operation/agentes/group_view.php:533 +msgid "There are no defined agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/monitoring/group_view.php:179 +msgid "This data doesn't show in realtime" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:187 +msgid "Group or Tag" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:188 +#: ../../enterprise/include/functions_inventory.php:350 +#: ../../enterprise/include/functions_inventory.php:489 +#: ../../enterprise/operation/agentes/agent_inventory.php:240 +#: ../../enterprise/operation/services/services.treeview_services.php:233 +#: ../../godmode/groups/group_list.php:855 +#: ../../include/functions_reporting_html.php:1886 +#: ../../include/functions_reporting_html.php:1896 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 +#: ../../operation/tree.php:357 ../../operation/agentes/group_view.php:194 +msgid "Total" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:200 +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/operation/agentes/policy_view.php:281 +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:534 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions.php:1231 ../../include/functions_agents.php:2609 +#: ../../include/functions_agents.php:2620 ../../include/functions_ui.php:1223 +#: ../../include/functions_reporting.php:10036 +#: ../../include/functions_events.php:2682 +#: ../../include/functions_events.php:3032 +#: ../../operation/agentes/group_view.php:205 +#: ../../operation/snmpconsole/snmp_view.php:963 +#: ../../operation/events/sound_events.php:75 +msgid "Alert fired" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:305 +#: ../../operation/agentes/group_view.php:276 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this " +"reason, an agent can be counted several times." +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:40 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../godmode/users/configure_user.php:893 +#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:99 +#: ../../include/lib/Dashboard/Widgets/tactical.php:176 +#: ../../include/lib/Dashboard/Widgets/tactical.php:481 +#: ../../operation/users/user_edit.php:341 +#: ../../operation/agentes/tactical.php:54 ../../operation/menu.php:47 +msgid "Tactical view" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:251 +msgid "Report of state" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:145 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/extensions/ipam/ipam_network.php:327 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../godmode/menu.php:255 ../../mobile/include/functions_web.php:23 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609 +#: ../../include/functions.php:3784 ../../include/functions_reports.php:827 +#: ../../include/functions_reports.php:831 +#: ../../include/functions_reports.php:835 ../../operation/menu.php:389 +#: ../../operation/events/events.php:799 ../../operation/events/events.php:814 +msgid "Events" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:279 +msgid "Report of events" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:284 +msgid "Info of state in events" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:302 +msgid "More events" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:38 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/users/configure_profile.php:250 ../../operation/menu.php:395 +msgid "View events" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:192 +#: ../../godmode/netflow/nf_edit_form.php:189 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:189 +#: ../../include/ajax/custom_fields.php:642 +msgid "Create filter" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:250 +#: ../../godmode/events/events.php:50 +msgid "Event responses" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:925 +#: ../../godmode/agentes/agent_manager.php:950 ../../godmode/menu.php:77 +#: ../../godmode/massive/massive_edit_agents.php:810 +#: ../../godmode/events/events.php:55 ../../godmode/events/events.php:67 +#: ../../include/functions_events.php:4099 +#: ../../operation/agentes/status_monitor.php:44 +#: ../../operation/agentes/status_monitor.php:57 +#: ../../operation/agentes/ver_agente.php:1257 msgid "Custom fields" msgstr "" -#: ../../operation/agentes/ver_agente.php:1076 -msgid "Log Viewer" +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:280 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2798 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:62 ../../godmode/events/events.php:82 +msgid "Filters" msgstr "" -#: ../../operation/agentes/ver_agente.php:1089 ../../godmode/menu.php:269 -#: ../../godmode/setup/setup.php:102 ../../godmode/setup/setup.php:133 -msgid "eHorus" +#: ../../enterprise/meta/event/custom_events.php:79 +#: ../../godmode/events/events.php:72 ../../include/ajax/events.php:1253 +msgid "Responses" msgstr "" -#: ../../operation/agentes/ver_agente.php:1096 -msgid "Terminal" +#: ../../enterprise/meta/event/custom_events.php:98 +msgid "The user is not in neither group with EW profile" msgstr "" -#: ../../operation/agentes/ver_agente.php:1101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1281 -msgid "Display" +#: ../../enterprise/meta/event/custom_events.php:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:53 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1172 +msgid "Fields" msgstr "" -#: ../../operation/agentes/ver_agente.php:1106 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:301 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 -msgid "Processes" +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:126 +msgid "Fields available" msgstr "" -#: ../../operation/agentes/ver_agente.php:1111 -#: ../../general/firts_task/service_list.php:28 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:300 +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/events/custom_events.php:146 +msgid "Fields selected" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:133 +msgid "Add fields to select" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:196 +#: ../../godmode/agentes/status_monitor_custom_fields.php:179 +#: ../../godmode/events/custom_events.php:141 +msgid "Delete fields to select" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:205 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:246 +#: ../../godmode/agentes/status_monitor_custom_fields.php:238 +#: ../../godmode/events/custom_events.php:200 +msgid "" +"There must be at least one custom field. Timestamp will be set by default" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:447 +#: ../../enterprise/meta/include/functions_autoprovision.php:612 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1434 +#: ../../enterprise/godmode/alerts/alert_events_list.php:499 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2849 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:639 +#: ../../godmode/reporting/graph_builder.graph_editor.php:203 +#: ../../godmode/reporting/graph_builder.graph_editor.php:304 +msgid "Sort" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:503 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add " +"the first." +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:508 +msgid "Create custom entry" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:535 +msgid "Provisioning configuration" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:546 +msgid "Configuration:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:584 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to " +"create the first." +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:614 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:227 +#: ../../extensions/quick_shell.php:154 +msgid "Method" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:695 +msgid "There was an error when editing the rule." +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:709 +msgid "Operation:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:723 +msgid "Method:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:788 +#: ../../enterprise/godmode/alerts/alert_events_list.php:568 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:434 +msgid "Move up" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:796 +#: ../../enterprise/godmode/alerts/alert_events_list.php:580 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 +msgid "Move down" +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 +#: ../../enterprise/meta/general/main_header.php:310 +#: ../../enterprise/meta/general/main_header.php:392 +#: ../../enterprise/meta/general/main_header.php:408 +#: ../../enterprise/meta/general/main_header.php:415 +#: ../../godmode/users/profile_list.php:44 +#: ../../godmode/users/profile_list.php:55 +#: ../../godmode/users/configure_profile.php:40 +#: ../../godmode/users/configure_profile.php:51 +#: ../../godmode/users/user_list.php:135 ../../godmode/users/user_list.php:145 +#: ../../godmode/users/configure_user.php:140 +#: ../../operation/users/user_edit_header.php:90 +msgid "User management" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 +#: ../../godmode/users/profile_list.php:48 +#: ../../godmode/users/configure_profile.php:44 +#: ../../godmode/users/user_list.php:139 +#: ../../godmode/users/configure_user.php:144 ../../godmode/menu.php:127 +msgid "Profile management" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +#: ../../enterprise/meta/general/main_header.php:622 +#: ../../enterprise/meta/general/main_header.php:628 +#: ../../operation/menu.php:476 ../../general/header.php:379 +#: ../../general/header.php:389 +msgid "Edit my user" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:188 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:210 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../godmode/agentes/agent_manager.php:275 +msgid "Alias" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:209 +#: ../../enterprise/meta/include/functions_wizard_meta.php:213 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1466 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1811 +#: ../../godmode/agentes/agent_manager.php:284 +#: ../../godmode/servers/modificar_server.php:60 +#: ../../include/functions_reporting_html.php:3035 +#: ../../include/functions_reporting_html.php:3120 +#: ../../include/functions_treeview.php:619 +#: ../../include/functions_events.php:4075 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:238 +#: ../../enterprise/meta/include/functions_wizard_meta.php:681 +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:47 +#: ../../enterprise/include/functions_metaconsole.php:1287 +#: ../../enterprise/include/functions_metaconsole.php:1320 +#: ../../enterprise/include/functions_metaconsole.php:1353 +#: ../../enterprise/include/functions_metaconsole.php:1386 +#: ../../enterprise/include/functions_metaconsole.php:1419 +#: ../../enterprise/include/functions_metaconsole.php:1452 +#: ../../enterprise/include/functions_metaconsole.php:1485 +msgid "Check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:247 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1151 +#: ../../enterprise/godmode/alerts/alert_events.php:121 +#: ../../enterprise/godmode/alerts/alert_events.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:847 +#: ../../enterprise/include/class/Aws.cloud.php:282 +#: ../../godmode/alerts/configure_alert_template.php:179 +#: ../../godmode/alerts/configure_alert_template.php:183 +#: ../../godmode/setup/setup.php:89 ../../godmode/setup/setup.php:163 +#: ../../godmode/servers/plugin.php:360 ../../godmode/servers/plugin.php:365 +#: ../../include/ajax/events.php:1229 ../../include/functions_reports.php:752 +#: ../../include/functions_reporting.php:7319 +msgid "General" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:307 +#: ../../godmode/modules/manage_network_templates_form.php:329 +#: ../../include/class/ModuleTemplates.class.php:730 +msgid "Components" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:309 +#: ../../enterprise/include/functions_reporting_csv.php:2119 +msgid "Agent modules" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:362 +msgid "Add selected modules to agent" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:400 +msgid "Undo changes" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:596 +#: ../../enterprise/godmode/services/services.service.php:398 +#: ../../enterprise/operation/services/services.list.php:235 +#: ../../enterprise/operation/services/services.table_services.php:214 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:745 +#: ../../include/ajax/events.php:1515 +msgid "Auto" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:597 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:746 +msgid "Force primary key" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1471 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1172 +#: ../../enterprise/meta/include/functions_meta.php:1221 +#: ../../enterprise/meta/include/functions_meta.php:1270 +#: ../../enterprise/meta/general/login_page.php:109 +#: ../../enterprise/meta/general/login_page.php:151 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:189 +#: ../../enterprise/godmode/setup/setup_auth.php:974 +#: ../../enterprise/godmode/setup/setup_auth.php:1006 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:167 +#: ../../enterprise/include/class/MySQL.app.php:521 +#: ../../enterprise/include/class/Oracle.app.php:502 +#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:77 +#: ../../godmode/admin_access_logs.php:86 +#: ../../godmode/admin_access_logs.php:196 +#: ../../godmode/setup/setup_ehorus.php:77 +#: ../../godmode/setup/setup_integria.php:216 +#: ../../godmode/events/custom_events.php:98 +#: ../../mobile/include/user.class.php:272 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:4687 +#: ../../include/functions.php:2889 ../../include/functions_cron.php:454 +#: ../../include/functions_config.php:653 +#: ../../include/functions_config.php:673 +#: ../../include/functions_config.php:1593 +#: ../../include/class/CredentialStore.class.php:735 +#: ../../include/class/CredentialStore.class.php:1030 +#: ../../include/functions_events.php:192 +#: ../../include/functions_events.php:241 +#: ../../include/functions_events.php:6039 +#: ../../include/functions_events.php:6466 ../../operation/search_users.php:60 +#: ../../operation/users/user_edit.php:679 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:125 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:299 +#: ../../operation/events/events.build_table.php:202 +#: ../../operation/events/events.build_table.php:697 +#: ../../general/logon_ok.php:245 ../../general/login_page.php:206 +#: ../../general/login_page.php:248 +msgid "User" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1475 +#: ../../enterprise/meta/include/functions_meta.php:1183 +#: ../../enterprise/meta/include/functions_meta.php:1232 +#: ../../enterprise/meta/include/functions_meta.php:1281 +#: ../../enterprise/meta/general/login_page.php:123 +#: ../../enterprise/meta/general/login_page.php:165 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:694 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/godmode/setup/setup_auth.php:980 +#: ../../enterprise/godmode/setup/setup_auth.php:1012 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:247 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:44 +#: ../../enterprise/include/functions_setup.php:84 +#: ../../enterprise/include/class/VMware.app.php:625 +#: ../../enterprise/include/class/MySQL.app.php:533 +#: ../../enterprise/include/class/Oracle.app.php:514 +#: ../../extensions/api_checker.php:143 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:739 +#: ../../godmode/agentes/module_manager_editor_wmi.php:76 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:469 +#: ../../godmode/massive/massive_edit_modules.php:836 +#: ../../godmode/setup/setup_ehorus.php:83 +#: ../../godmode/setup/setup_integria.php:222 +#: ../../mobile/include/user.class.php:279 +#: ../../include/functions_config.php:657 +#: ../../include/functions_config.php:677 +#: ../../include/functions_config.php:1598 +#: ../../include/class/CredentialStore.class.php:882 +#: ../../include/class/CredentialStore.class.php:909 +#: ../../include/class/CredentialStore.class.php:1031 +#: ../../include/class/CredentialStore.class.php:1048 +#: ../../include/class/AgentWizard.class.php:282 +#: ../../operation/users/user_edit.php:685 ../../general/login_page.php:220 +#: ../../general/login_page.php:261 +msgid "Password" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:589 +msgid "Latency" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Response" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:592 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:144 +msgid "Check type" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:609 +#: ../../enterprise/meta/include/functions_wizard_meta.php:666 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:63 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:909 +#: ../../enterprise/include/functions_enterprise.php:321 +#: ../../godmode/massive/massive_edit_modules.php:1069 +msgid "Web checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:645 +msgid "String to check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:651 +msgid "Add check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:660 +msgid "Delete check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:673 +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:118 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load basic" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:679 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 +msgid "Load a basic structure on Web Checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:687 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:132 +msgid "Check the correct structure of the WebCheck" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:694 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:198 +msgid "First line must be \"task_begin\"" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:199 +msgid "Webchecks configuration is empty" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:200 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:201 +msgid "Last line must be \"task_end\"" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:485 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:202 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:204 +msgid "Web checks are built correctly" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:915 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1034 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1521 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1741 +#: ../../enterprise/meta/agentsearch.php:116 +#: ../../enterprise/extensions/ipam/ipam_list.php:138 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1204 +#: ../../enterprise/godmode/modules/configure_local_component.php:283 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:405 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:447 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:255 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:533 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:560 +#: ../../enterprise/include/class/SAP.app.php:493 +#: ../../enterprise/include/class/Aws.cloud.php:464 +#: ../../enterprise/include/class/Aws.cloud.php:1203 +#: ../../enterprise/include/class/MySQL.app.php:556 +#: ../../enterprise/include/class/Oracle.app.php:537 +#: ../../enterprise/operation/agentes/tag_view.php:581 +#: ../../enterprise/operation/agentes/tag_view.php:658 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/agent_manager.php:335 +#: ../../godmode/agentes/module_manager_editor_common.php:562 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +#: ../../godmode/agentes/module_manager.php:648 +#: ../../godmode/massive/massive_edit_agents.php:553 +#: ../../godmode/massive/massive_edit_modules.php:682 +#: ../../godmode/wizards/HostDevices.class.php:794 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:429 +#: ../../mobile/operation/modules.php:630 +#: ../../mobile/operation/modules.php:632 +#: ../../mobile/operation/modules.php:821 +#: ../../include/functions_reporting_html.php:2661 +#: ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:625 +#: ../../include/class/CustomNetScan.class.php:518 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:320 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:296 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:306 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50 +#: ../../operation/agentes/estado_agente.php:716 +#: ../../operation/agentes/status_monitor.php:1160 +#: ../../operation/agentes/estado_generalagente.php:293 +#: ../../operation/netflow/nf_live_view.php:262 +#: ../../operation/search_modules.php:34 +#: ../../operation/servers/recon_view.php:97 +msgid "Interval" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:921 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1040 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1526 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1746 +#: ../../enterprise/godmode/modules/configure_local_component.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:711 +#: ../../godmode/modules/manage_network_components_form_common.php:303 +#: ../../godmode/agentes/module_manager_editor_common.php:537 +#: ../../godmode/massive/massive_edit_modules.php:853 +#: ../../include/functions_reporting_html.php:2662 +msgid "Unit" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:953 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1046 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:961 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1482 +#: ../../extensions/net_tools.php:392 +msgid "SNMP Community" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:968 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1054 +#: ../../enterprise/include/functions_hostdevices.php:291 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1149 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1276 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1286 +#: ../../extensions/api_checker.php:195 +msgid "Credentials" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:975 +#: ../../enterprise/meta/include/functions_wizard_meta.php:984 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1504 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1513 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:380 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1088 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2025 +#: ../../include/functions_reporting_html.php:3719 +#: ../../include/functions_ui.php:2568 +#: ../../include/functions_reporting.php:1391 +msgid "Min" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:977 +#: ../../enterprise/meta/include/functions_wizard_meta.php:986 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1073 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1506 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1709 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1718 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:373 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:741 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2212 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1090 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2018 +#: ../../include/functions_reporting_html.php:3718 +#: ../../include/functions_ui.php:2568 +#: ../../include/functions_reporting.php:1387 +msgid "Max" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:979 +#: ../../enterprise/meta/include/functions_wizard_meta.php:988 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1736 +#: ../../enterprise/godmode/modules/configure_local_component.php:325 +#: ../../enterprise/godmode/modules/configure_local_component.php:360 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:433 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:231 +#: ../../godmode/agentes/module_manager_editor_common.php:431 +#: ../../godmode/agentes/module_manager_editor_common.php:484 +#: ../../godmode/massive/massive_edit_modules.php:582 +#: ../../godmode/massive/massive_edit_modules.php:651 +msgid "Inverse interval" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:993 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1080 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 +#: ../../include/ajax/module.php:846 +msgid "Thresholds" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1086 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:169 +msgid "Proxy URL" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1091 +msgid "Web configuration" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +msgid "Str: " +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 +msgid " Inverse interval " +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 +msgid "Alerts in module" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1378 +#: ../../include/functions_reporting_html.php:4063 +msgid "Alert description" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 +msgid "Deleted modules" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2055 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2155 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2638 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2757 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2848 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3043 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:391 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:427 +msgid "Another module already exists with the same name" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2650 +#, php-format +msgid "Error adding module %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2171 +msgid "" +"There was an error creating the alerts, the operation has been cancelled" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 +#: ../../enterprise/godmode/policies/policy_modules.php:863 +msgid "Successfully added module." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2240 +#, php-format +msgid "Could not create agent %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2244 +msgid "Agent successfully added" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2260 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2340 +#, php-format +msgid "%s Modules created" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2303 +#, php-format +msgid "Could not update agent %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2307 +#: ../../enterprise/include/class/AgentRepository.class.php:495 +msgid "Agent successfully updated" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2346 +#, php-format +msgid "%s Modules deleted" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2662 +msgid "" +"There was an error creating the alerts, the operation has been cancelled ." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2692 +msgid "Module successfully added." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2764 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2855 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3050 +#, php-format +msgid "Error updating module %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2786 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2877 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3072 +msgid "" +"There was an error updating the alerts, the operation has been cancelled" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2807 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2898 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3093 +msgid "Successfully updated module." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3470 +msgid "Manage agent modules" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1687 +#: ../../enterprise/include/functions_reporting.php:1571 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2462 +#: ../../enterprise/include/functions_reporting.php:3092 +#: ../../enterprise/include/functions_reporting.php:4066 +#: ../../godmode/alerts/configure_alert_special_days.php:83 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/alerts/alert_special_days.php:265 +#: ../../godmode/alerts/alert_special_days.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1128 +#: ../../include/functions_html.php:1581 +msgid "Monday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1693 +#: ../../enterprise/include/functions_reporting.php:1572 +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../enterprise/include/functions_reporting.php:2463 +#: ../../enterprise/include/functions_reporting.php:3093 +#: ../../enterprise/include/functions_reporting.php:4067 +#: ../../godmode/alerts/configure_alert_special_days.php:84 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/alerts/alert_special_days.php:266 +#: ../../godmode/alerts/alert_special_days.php:477 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1134 +#: ../../include/functions_html.php:1582 +msgid "Tuesday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1699 +#: ../../enterprise/include/functions_reporting.php:1573 +#: ../../enterprise/include/functions_reporting.php:2146 +#: ../../enterprise/include/functions_reporting.php:2464 +#: ../../enterprise/include/functions_reporting.php:3094 +#: ../../enterprise/include/functions_reporting.php:4068 +#: ../../godmode/alerts/configure_alert_special_days.php:85 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/alerts/alert_special_days.php:267 +#: ../../godmode/alerts/alert_special_days.php:481 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1140 +#: ../../include/functions_html.php:1583 +msgid "Wednesday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/include/functions_reporting.php:1574 +#: ../../enterprise/include/functions_reporting.php:2147 +#: ../../enterprise/include/functions_reporting.php:2465 +#: ../../enterprise/include/functions_reporting.php:3095 +#: ../../enterprise/include/functions_reporting.php:4069 +#: ../../godmode/alerts/configure_alert_special_days.php:86 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/alerts/alert_special_days.php:268 +#: ../../godmode/alerts/alert_special_days.php:485 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1146 +#: ../../include/functions_html.php:1584 +msgid "Thursday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1711 +#: ../../enterprise/include/functions_reporting.php:1575 +#: ../../enterprise/include/functions_reporting.php:2148 +#: ../../enterprise/include/functions_reporting.php:2466 +#: ../../enterprise/include/functions_reporting.php:3096 +#: ../../enterprise/include/functions_reporting.php:4070 +#: ../../godmode/alerts/configure_alert_special_days.php:87 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/alerts/alert_special_days.php:269 +#: ../../godmode/alerts/alert_special_days.php:489 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1152 +#: ../../include/functions_html.php:1585 +msgid "Friday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1717 +#: ../../enterprise/include/functions_reporting.php:1576 +#: ../../enterprise/include/functions_reporting.php:2149 +#: ../../enterprise/include/functions_reporting.php:2467 +#: ../../enterprise/include/functions_reporting.php:3097 +#: ../../enterprise/include/functions_reporting.php:4071 +#: ../../godmode/alerts/configure_alert_special_days.php:88 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/alerts/alert_special_days.php:270 +#: ../../godmode/alerts/alert_special_days.php:493 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1158 +#: ../../include/functions_html.php:1586 +msgid "Saturday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1723 +#: ../../enterprise/include/functions_reporting.php:1577 +#: ../../enterprise/include/functions_reporting.php:2150 +#: ../../enterprise/include/functions_reporting.php:2468 +#: ../../enterprise/include/functions_reporting.php:3098 +#: ../../enterprise/include/functions_reporting.php:4072 +#: ../../godmode/alerts/configure_alert_special_days.php:89 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/alerts/alert_special_days.php:271 +#: ../../godmode/alerts/alert_special_days.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1164 +#: ../../include/functions_html.php:1580 +msgid "Sunday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/extensions/ipam/ipam_editor.php:197 +#: ../../enterprise/godmode/setup/setup_history.php:63 +#: ../../godmode/alerts/alert_templates.php:73 +#: ../../include/functions_config.php:1442 +msgid "Days" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:298 +#: ../../enterprise/godmode/alerts/alert_events.php:522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2144 +#: ../../godmode/snmpconsole/snmp_alert.php:1020 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:624 +#: ../../godmode/alerts/alert_view.php:310 +msgid "Time threshold" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/include/functions_reporting_pdf.php:1516 +#: ../../enterprise/include/functions_reporting_pdf.php:1589 +#: ../../enterprise/include/functions_reporting_pdf.php:1702 +#: ../../enterprise/include/functions_reporting_csv.php:806 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2273 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2277 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3261 +#: ../../godmode/agentes/planned_downtime.list.php:146 +#: ../../godmode/alerts/alert_list.list.php:612 +#: ../../godmode/alerts/alert_list.list.php:615 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:125 +#: ../../include/functions_reporting_html.php:2910 +#: ../../include/functions_snmp.php:402 ../../include/functions_snmp.php:410 +#: ../../include/rest-api/index.php:318 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:448 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:509 +#: ../../operation/agentes/gis_view.php:217 +#: ../../operation/reporting/reporting_viewer.php:212 +msgid "From" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_alerts.php:535 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:324 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/godmode/alerts/alert_events_list.php:692 +#: ../../enterprise/include/functions_reporting_pdf.php:1522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:941 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:971 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2273 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2277 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2424 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3389 +#: ../../extensions/agents_alerts.php:251 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../godmode/alerts/alert_list.list.php:612 +#: ../../godmode/alerts/alert_list.list.php:733 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:121 +#: ../../include/functions_reporting_html.php:126 +#: ../../include/ajax/alert_list.ajax.php:504 +#: ../../include/functions_reporting.php:11766 +#: ../../operation/reporting/reporting_viewer.php:216 +msgid "to" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:189 +msgid "Event id" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:395 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503 +#: ../../include/functions_reporting_html.php:1183 +#: ../../include/functions_reporting_html.php:1191 +#: ../../include/functions_reporting_html.php:3995 +#: ../../include/functions_events.php:190 +#: ../../include/functions_events.php:2401 +#: ../../include/functions_events.php:4503 +msgid "Event name" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1735 +#: ../../godmode/agentes/modificar_agente.php:491 +#: ../../godmode/agentes/agent_manager.php:208 +#: ../../mobile/operation/modules.php:570 +#: ../../mobile/operation/modules.php:819 +#: ../../include/functions_reporting_html.php:2605 +#: ../../include/functions_treeview.php:599 +#: ../../include/functions_events.php:191 +#: ../../include/functions_events.php:235 +#: ../../include/functions_events.php:2406 +#: ../../include/functions_events.php:6026 +#: ../../operation/events/events.php:1618 +#: ../../operation/events/events.build_table.php:182 +msgid "Agent name" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:82 +#: ../../enterprise/include/functions_inventory.php:77 +#: ../../enterprise/include/functions_inventory.php:239 +#: ../../enterprise/include/functions_inventory.php:259 +#: ../../enterprise/include/functions_inventory.php:420 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/operation/agentes/tag_view.php:663 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:239 ../../godmode/events/custom_events.php:101 +#: ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:822 ../../mobile/operation/events.php:516 +#: ../../include/functions_reporting_html.php:968 +#: ../../include/functions_reporting_html.php:976 +#: ../../include/functions_reporting_html.php:1187 +#: ../../include/functions_reporting_html.php:1194 +#: ../../include/functions_reporting_html.php:1962 +#: ../../include/functions_reporting_html.php:3997 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/ajax/custom_fields.php:405 ../../include/ajax/events.php:1500 +#: ../../include/functions_netflow.php:274 +#: ../../include/functions_events.php:195 +#: ../../include/functions_events.php:250 +#: ../../include/functions_events.php:2411 +#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:6033 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1196 +#: ../../operation/agentes/estado_generalagente.php:579 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:168 +#: ../../operation/snmpconsole/snmp_view.php:826 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:123 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:297 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/events.build_table.php:192 +msgid "Timestamp" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:248 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:625 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2567 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1302 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1011 +#: ../../enterprise/include/functions_events.php:127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 +#: ../../godmode/events/event_filter.php:123 +#: ../../godmode/events/event_edit_filter.php:283 +#: ../../include/lib/Dashboard/Widgets/events_list.php:275 +#: ../../include/functions_events.php:196 +#: ../../include/functions_events.php:6057 +#: ../../operation/events/events_list.php:923 +#: ../../operation/events/events.php:901 +msgid "Event type" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/operation/agentes/tag_view.php:182 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../godmode/modules/manage_network_components.php:667 +#: ../../godmode/agentes/agent_template.php:233 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:83 +#: ../../mobile/operation/modules.php:567 +#: ../../mobile/operation/modules.php:818 ../../include/ajax/module.php:843 +#: ../../include/ajax/custom_fields.php:401 +#: ../../operation/agentes/status_monitor.php:433 +#: ../../operation/agentes/status_monitor.php:1150 +msgid "Module name" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../godmode/agentes/configurar_agente.php:633 +#: ../../godmode/events/custom_events.php:104 ../../include/functions.php:3791 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:198 +#: ../../include/functions_events.php:259 +#: ../../include/functions_events.php:2484 +#: ../../include/functions_events.php:6070 +#: ../../operation/agentes/estado_monitores.php:515 +#: ../../operation/snmpconsole/snmp_view.php:519 +#: ../../operation/snmpconsole/snmp_view.php:831 +#: ../../operation/snmpconsole/snmp_view.php:1165 +#: ../../operation/events/events.build_table.php:253 +msgid "Alert" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:340 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:172 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:599 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2540 +#: ../../enterprise/include/functions_reporting.php:1849 +#: ../../enterprise/include/functions_events.php:137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2331 +#: ../../godmode/events/event_filter.php:125 +#: ../../godmode/events/event_edit_filter.php:298 +#: ../../godmode/events/custom_events.php:105 +#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398 +#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:690 +#: ../../mobile/operation/events.php:691 +#: ../../include/functions_reporting_html.php:966 +#: ../../include/functions_reporting_html.php:974 +#: ../../include/functions_reporting_html.php:1185 +#: ../../include/functions_reporting_html.php:1193 +#: ../../include/functions_reporting_html.php:1960 +#: ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:343 +#: ../../include/functions_events.php:199 +#: ../../include/functions_events.php:262 +#: ../../include/functions_events.php:2393 +#: ../../include/functions_events.php:4561 +#: ../../include/functions_events.php:6076 +#: ../../operation/snmpconsole/snmp_view.php:548 +#: ../../operation/events/events_list.php:939 +#: ../../operation/events/events.php:974 +#: ../../operation/events/events.build_table.php:263 +msgid "Severity" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:599 +#: ../../godmode/events/custom_events.php:106 +#: ../../godmode/wizards/HostDevices.class.php:955 +#: ../../include/class/CustomNetScan.class.php:467 +#: ../../include/functions_events.php:200 +#: ../../include/functions_events.php:265 +#: ../../include/functions_events.php:3498 +#: ../../include/functions_events.php:6082 +#: ../../include/functions_events.php:6468 +#: ../../operation/events/events_list.php:989 +#: ../../operation/events/events.php:1025 +#: ../../operation/events/events.build_table.php:273 +#: ../../operation/events/events.build_table.php:699 +msgid "Comment" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:522 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:146 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:106 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:814 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:105 +#: ../../enterprise/godmode/setup/setup_auth.php:226 +#: ../../enterprise/godmode/setup/setup_auth.php:493 +#: ../../enterprise/godmode/setup/setup_auth.php:1225 +#: ../../enterprise/operation/agentes/tag_view.php:202 +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../enterprise/operation/agentes/tag_view.php:655 +#: ../../godmode/modules/manage_network_components_form_common.php:338 +#: ../../godmode/massive/massive_copy_modules.php:156 +#: ../../godmode/massive/massive_delete_modules.php:377 +#: ../../godmode/massive/massive_delete_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:378 +#: ../../godmode/massive/massive_edit_modules.php:463 +#: ../../godmode/massive/massive_edit_modules.php:975 +#: ../../godmode/events/custom_events.php:107 ../../godmode/tag/edit_tag.php:57 +#: ../../mobile/operation/events.php:557 +#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_treeview.php:168 +#: ../../include/functions_profile.php:214 +#: ../../include/lib/Dashboard/Widgets/events_list.php:373 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:327 +#: ../../include/functions_events.php:201 +#: ../../include/functions_events.php:268 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:6088 ../../operation/tree.php:47 +#: ../../operation/users/user_edit.php:750 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/events/events.build_table.php:283 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:203 +#: ../../include/functions_events.php:4281 +msgid "Extra id" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/agentes/agent_incidents.php:95 +#: ../../godmode/setup/setup_integria.php:322 +#: ../../godmode/setup/setup_integria.php:445 +#: ../../godmode/events/custom_events.php:110 +#: ../../mobile/operation/events.php:520 ../../include/functions_events.php:204 +#: ../../include/functions_events.php:277 +#: ../../include/functions_events.php:4520 +#: ../../include/functions_events.php:6045 +#: ../../operation/incidents/incident_detail.php:294 +#: ../../operation/incidents/integriaims_export_csv.php:97 +#: ../../operation/incidents/configure_integriaims_incident.php:288 +#: ../../operation/incidents/incident.php:426 +#: ../../operation/incidents/list_integriaims_incidents.php:138 +#: ../../operation/incidents/list_integriaims_incidents.php:268 +#: ../../operation/events/events.build_table.php:212 +msgid "Owner" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:111 +#: ../../include/functions_events.php:205 +#: ../../include/functions_events.php:280 +#: ../../include/functions_events.php:6106 +#: ../../operation/events/events.build_table.php:313 +msgid "ACK Timestamp" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:126 +#: ../../godmode/events/custom_events.php:112 +#: ../../include/functions_events.php:206 +#: ../../include/functions_events.php:283 +#: ../../include/functions_events.php:4276 +#: ../../include/functions_events.php:6112 +#: ../../operation/events/events.php:2490 +#: ../../operation/events/events.build_table.php:323 +msgid "Instructions" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:130 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:50 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:207 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:426 +#: ../../include/functions_events.php:207 +msgid "Server name" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:3926 +#: ../../include/lib/Dashboard/Widgets/module_status.php:173 +#: ../../include/lib/Dashboard/Widgets/module_status.php:556 +#: ../../include/functions_events.php:209 +#: ../../include/functions_events.php:6124 ../../operation/tree.php:219 +msgid "Module status" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 +#: ../../general/login_page.php:74 +msgid "Splash login" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:52 +#: ../../enterprise/include/reset_pass.php:53 +#: ../../general/login_help_dialog.php:81 +#: ../../general/login_help_dialog.php:86 ../../general/login_page.php:142 +#: ../../general/login_page.php:145 +msgid "Support" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:619 +#: ../../godmode/servers/plugin.php:507 ../../include/functions_ui.php:1422 +#: ../../include/class/ManageNetScanScripts.class.php:694 +msgid "Help" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:94 +#: ../../enterprise/include/process_reset_pass.php:95 +#: ../../operation/users/user_edit.php:281 +msgid "New Password" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:112 +#: ../../enterprise/include/process_reset_pass.php:110 +msgid "Repeat password" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:118 +#: ../../enterprise/include/process_reset_pass.php:116 +msgid "Change password" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:121 +#: ../../enterprise/meta/index.php:576 +#: ../../enterprise/include/process_reset_pass.php:119 ../../index.php:769 +msgid "Passwords must be the same" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:129 +#: ../../enterprise/meta/include/reset_pass.php:105 +#: ../../enterprise/meta/general/noaccess.php:17 +#: ../../enterprise/include/process_reset_pass.php:127 +#: ../../enterprise/include/reset_pass.php:107 +msgid "Back to login" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:139 +#: ../../enterprise/meta/include/reset_pass.php:115 +#, php-format +msgid "%s NEXT GENERATION" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:147 +#: ../../enterprise/meta/include/reset_pass.php:123 +#: ../../enterprise/meta/general/login_page.php:201 +#: ../../include/functions_config.php:2171 +msgid "METACONSOLE" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:161 +#: ../../enterprise/meta/include/reset_pass.php:137 +#: ../../enterprise/meta/general/login_page.php:216 +#: ../../enterprise/include/process_reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:154 ../../general/login_page.php:357 +msgid "Build" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:474 +#: ../../enterprise/meta/include/functions_agents_meta.php:521 +#: ../../enterprise/meta/include/functions_agents_meta.php:556 +msgid "Agents movement" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:482 +#: ../../enterprise/meta/include/functions_agents_meta.php:536 +msgid "Provisioning management" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:490 +#: ../../enterprise/meta/include/functions_agents_meta.php:546 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:409 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:661 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 +msgid "Agent autoconfiguration" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:498 +#: ../../enterprise/meta/include/functions_agents_meta.php:526 +#: ../../enterprise/meta/include/functions_agents_meta.php:531 +msgid "Group management" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:506 +msgid "Tree group" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:541 +msgid "Provisioning rules management" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:551 +msgid "Colecctions" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:342 +msgid "No admin user" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:361 +#: ../../include/functions_config.php:382 +msgid "Activate Metaconsole" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:469 +msgid "Netflow disable custom live view filters" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:528 +msgid "Customizable section" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:556 +msgid "Agent API" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:681 +#: ../../godmode/setup/setup_auth.php:279 +#: ../../include/functions_config.php:525 +msgid "Authentication method" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:690 +#: ../../godmode/setup/setup_auth.php:53 ../../include/functions_config.php:617 +msgid "Fallback to local authentication" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:699 +#: ../../enterprise/meta/include/functions_meta.php:871 +#: ../../godmode/setup/setup_auth.php:65 ../../include/functions_config.php:529 +msgid "Autocreate remote users" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:708 +#: ../../enterprise/godmode/setup/setup_auth.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:297 +#: ../../enterprise/godmode/setup/setup_auth.php:352 +#: ../../enterprise/godmode/setup/setup_auth.php:1082 +#: ../../include/functions_config.php:533 +msgid "Autocreate profile" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:717 +#: ../../enterprise/godmode/setup/setup_auth.php:58 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:358 +#: ../../enterprise/godmode/setup/setup_auth.php:1088 +#: ../../include/functions_config.php:537 +msgid "Autocreate profile group" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:726 +#: ../../enterprise/godmode/setup/setup_auth.php:65 +#: ../../enterprise/godmode/setup/setup_auth.php:310 +#: ../../enterprise/godmode/setup/setup_auth.php:365 +#: ../../enterprise/godmode/setup/setup_auth.php:1095 +#: ../../include/functions_config.php:541 +msgid "Autocreate profile tags" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:735 +#: ../../enterprise/godmode/setup/setup_auth.php:316 +#: ../../include/functions_config.php:545 +msgid "Automatically assigned no hierarchy" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:744 +#: ../../enterprise/godmode/setup/setup_auth.php:551 +#: ../../enterprise/godmode/setup/setup_auth.php:1288 +#: ../../include/functions_config.php:549 +msgid "Autocreate blacklist" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:753 +#: ../../enterprise/meta/include/functions_meta.php:1003 +#: ../../godmode/setup/setup_auth.php:215 +#: ../../include/functions_config.php:721 +#: ../../operation/users/user_edit.php:397 +msgid "Double authentication" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:764 +#: ../../enterprise/meta/include/functions_meta.php:1015 +#: ../../include/functions_config.php:725 +msgid "Session timeout" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:775 +#: ../../enterprise/godmode/setup/setup_auth.php:559 +#: ../../enterprise/godmode/setup/setup_auth.php:1296 +#: ../../include/functions_config.php:553 +msgid "Active directory server" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:784 +#: ../../enterprise/godmode/setup/setup_auth.php:565 +#: ../../enterprise/godmode/setup/setup_auth.php:1302 +#: ../../include/functions_config.php:557 +msgid "Active directory port" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:793 +#: ../../enterprise/meta/include/functions_meta.php:1053 +#: ../../enterprise/godmode/setup/setup_auth.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1308 +#: ../../godmode/setup/setup_auth.php:133 +#: ../../include/functions_config.php:561 +#: ../../include/functions_config.php:597 +msgid "Start TLS" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:802 +#: ../../enterprise/godmode/setup/setup_auth.php:341 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../include/functions_config.php:565 +msgid "Advanced Config AD" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:811 +#: ../../enterprise/godmode/setup/setup_auth.php:577 +#: ../../enterprise/godmode/setup/setup_auth.php:1314 +#: ../../include/functions_config.php:573 +msgid "Domain" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:820 +#: ../../enterprise/godmode/setup/setup_auth.php:399 +#: ../../enterprise/godmode/setup/setup_auth.php:1129 +#: ../../include/functions_config.php:577 +msgid "Advanced Permisions AD" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:829 +#: ../../enterprise/godmode/setup/setup_auth.php:126 +#: ../../include/functions_config.php:581 +msgid "Advanced Permissions LDAP" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:838 +#: ../../enterprise/godmode/setup/setup_auth.php:103 +#: ../../include/functions_config.php:569 +msgid "Advanced Config LDAP" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:847 +#: ../../enterprise/meta/include/functions_meta.php:858 +#: ../../enterprise/godmode/setup/setup_auth.php:329 +#: ../../enterprise/godmode/setup/setup_auth.php:371 +#: ../../enterprise/godmode/setup/setup_auth.php:1101 +msgid "Auto enable node access" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:883 +#: ../../include/functions_config.php:681 +msgid "Saml path" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:895 +#: ../../include/functions_config.php:685 +msgid "Saml source" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:907 +#: ../../include/functions_config.php:689 +msgid "Saml user id parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:919 +#: ../../include/functions_config.php:693 +msgid "Saml mail parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:931 +#: ../../include/functions_config.php:697 +msgid "Saml group name parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:943 +#: ../../include/functions_config.php:701 +msgid "Saml attr type parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:955 +#: ../../include/functions_config.php:705 +msgid "Saml profiles and tags parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:967 +#: ../../include/functions_config.php:717 +msgid "Saml profile and tag separator" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:979 +msgid "SAML profile parameters" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:991 +#: ../../include/functions_config.php:713 +msgid "Saml tag parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1026 +#: ../../godmode/setup/setup_auth.php:88 ../../include/functions_config.php:585 +msgid "LDAP server" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1035 +#: ../../godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:589 +msgid "LDAP port" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1044 +#: ../../godmode/setup/setup_auth.php:119 +#: ../../include/functions_config.php:593 +msgid "LDAP version" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1062 +#: ../../godmode/setup/setup_auth.php:144 +#: ../../include/functions_config.php:601 +msgid "Base DN" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1071 +#: ../../godmode/setup/setup_auth.php:157 +#: ../../include/functions_config.php:605 +msgid "Login attribute" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1080 +#: ../../godmode/setup/setup_auth.php:170 +#: ../../include/functions_config.php:609 +msgid "Admin LDAP login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1089 +#: ../../godmode/setup/setup_auth.php:183 +#: ../../include/functions_config.php:613 +msgid "Admin LDAP password" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1101 +#: ../../enterprise/godmode/setup/setup_auth.php:79 +#: ../../include/functions_config.php:630 +msgid "Save Password" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1114 +#: ../../enterprise/godmode/setup/setup_auth.php:98 +#: ../../include/functions_config.php:621 +msgid "Login user attribute" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1123 +#: ../../include/functions_config.php:637 +msgid "Save profile" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1134 +#: ../../enterprise/godmode/setup/setup_auth.php:91 +#: ../../include/functions_config.php:625 +msgid "LDAP function" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1145 +#, php-format +msgid "%s host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1154 +#: ../../enterprise/meta/include/functions_meta.php:1203 +#: ../../enterprise/meta/include/functions_meta.php:1252 +#: ../../enterprise/godmode/setup/setup_auth.php:962 +#: ../../enterprise/godmode/setup/setup_auth.php:994 +#: ../../include/functions_config.php:645 +#: ../../include/functions_config.php:665 +msgid "MySQL port" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1163 +#: ../../enterprise/meta/include/functions_meta.php:1212 +#: ../../enterprise/meta/include/functions_meta.php:1261 +#: ../../enterprise/godmode/setup/setup_history.php:54 +#: ../../enterprise/godmode/setup/setup_auth.php:968 +#: ../../enterprise/godmode/setup/setup_auth.php:1000 +#: ../../include/functions_config.php:649 +#: ../../include/functions_config.php:669 +#: ../../include/functions_config.php:1426 +msgid "Database name" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1194 +msgid "Babel Enterprise host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/godmode/setup/setup_auth.php:988 +#: ../../include/functions_config.php:661 +msgid "Integria host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1302 +#: ../../include/functions_config.php:852 +msgid "Timestamp or time comparation" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1311 +msgid "Graph color (min)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1320 +msgid "Graph color (avg)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1329 +msgid "Graph color (max)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1347 +#: ../../include/functions_config.php:900 +msgid "Data precision for reports" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1431 +msgid "full scale charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1440 +msgid "type mode type charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1458 +msgid "type mode zoom charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1476 +msgid "Type of charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1512 +msgid "Custom logo (white background)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1530 +#: ../../include/functions_config.php:953 +msgid "Custom logo login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1539 +#: ../../include/functions_config.php:957 +msgid "Custom splash login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1566 +#: ../../include/functions_config.php:985 +msgid "Custom title1 login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1575 +#: ../../include/functions_config.php:989 +msgid "Custom title2 login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1602 +msgid "Custom background login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1646 +#: ../../include/functions_config.php:929 +msgid "Font path" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1651 +#: ../../include/functions_config.php:1348 +msgid "Use data multiplier" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1663 +#: ../../include/functions_config.php:1307 +msgid "Custom report info" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1324 +msgid "Font family" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1708 +#: ../../include/functions_config.php:1049 +msgid "Use the legacy Visual Console" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1713 +#: ../../include/functions_config.php:1053 +msgid "Default expiration of the Visual Console item's cache" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1766 +#: ../../godmode/setup/performance.php:589 +#: ../../include/functions_config.php:795 +msgid "Use agent access graph" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1775 +msgid "Default block size migration agents" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1786 +msgid "Default block size execution event" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1804 +msgid "Node address default" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:56 +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../godmode/menu.php:80 +msgid "Component groups" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:60 +#: ../../enterprise/meta/include/functions_components_meta.php:84 +#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:150 +msgid "Local components" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:64 +#: ../../enterprise/meta/include/functions_components_meta.php:88 +msgid "Network components" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:68 +#: ../../enterprise/meta/include/functions_components_meta.php:92 +msgid "Plugin management" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:72 +#: ../../enterprise/meta/include/functions_components_meta.php:105 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:68 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:234 +#: ../../enterprise/godmode/menu.php:69 +#: ../../enterprise/include/functions_policies.php:3752 +msgid "Inventory modules" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:98 +msgid "Create plugin" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:100 +msgid "Edit plugin" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:52 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:875 +#: ../../enterprise/include/functions_login.php:104 +#: ../../godmode/massive/massive_edit_plugins.php:867 +#: ../../godmode/massive/massive_edit_plugins.php:868 +#: ../../include/functions.php:1239 ../../include/ajax/double_auth.ajax.php:246 +#: ../../include/ajax/double_auth.ajax.php:343 +#: ../../include/ajax/double_auth.ajax.php:388 +#: ../../include/ajax/double_auth.ajax.php:503 +#: ../../include/functions_ui.php:283 +#: ../../include/class/Diagnostics.class.php:1818 +#: ../../include/functions_events.php:2706 +#: ../../include/functions_events.php:3056 +#: ../../operation/users/user_edit.php:975 +#: ../../operation/users/user_edit.php:1041 +msgid "Error" +msgstr "" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:121 +#: ../../enterprise/meta/include/functions_alerts_meta.php:140 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:254 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:161 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/include/functions_reporting.php:96 +#: ../../enterprise/include/functions_reporting.php:6966 +#: ../../enterprise/include/functions_reporting.php:6994 +#: ../../enterprise/include/functions_reporting.php:7055 +#: ../../godmode/agentes/configurar_agente.php:639 ../../godmode/menu.php:141 +#: ../../godmode/menu.php:217 ../../include/class/ConfigPEN.class.php:326 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:148 +#: ../../godmode/menu.php:224 +msgid "Commands" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:94 +#: ../../enterprise/include/reset_pass.php:96 +msgid "User to reset password" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:98 +#: ../../enterprise/meta/index.php:649 +#: ../../enterprise/include/reset_pass.php:100 ../../index.php:835 +msgid "Reset password" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:141 +#: ../../enterprise/meta/include/reset_pass.php:144 +#: ../../enterprise/include/reset_pass.php:158 +#: ../../enterprise/include/reset_pass.php:161 +msgid "Reset password failed" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:148 +#: ../../enterprise/meta/general/login_page.php:243 +#: ../../enterprise/meta/general/login_page.php:285 +#: ../../enterprise/include/reset_pass.php:165 ../../general/login_page.php:385 +#: ../../general/login_page.php:427 +msgid "ERROR" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already " +"exists in the database" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "" + +#: ../../enterprise/meta/index.php:262 ../../mobile/include/user.class.php:189 +#: ../../include/ajax/double_auth.ajax.php:487 ../../index.php:320 +msgid "Invalid code" +msgstr "" + +#: ../../enterprise/meta/index.php:274 ../../index.php:332 +msgid "The code shouldn't be empty" +msgstr "" + +#: ../../enterprise/meta/index.php:287 ../../index.php:345 +msgid "Expired login" +msgstr "" + +#: ../../enterprise/meta/index.php:294 ../../enterprise/meta/index.php:300 +#: ../../index.php:352 ../../index.php:358 +msgid "Login error" +msgstr "" + +#: ../../enterprise/meta/index.php:567 ../../index.php:758 +msgid "Password changed successfully" +msgstr "" + +#: ../../enterprise/meta/index.php:573 ../../index.php:764 +msgid "Failed to change password" +msgstr "" + +#: ../../enterprise/meta/index.php:592 ../../index.php:785 +msgid "Too much time since password change request" +msgstr "" + +#: ../../enterprise/meta/index.php:601 ../../index.php:794 +msgid "This user has not requested a password change" +msgstr "" + +#: ../../enterprise/meta/index.php:617 ../../index.php:809 +msgid "Id user cannot be empty" +msgstr "" + +#: ../../enterprise/meta/index.php:625 ../../index.php:817 +msgid "Error in reset password request" +msgstr "" + +#: ../../enterprise/meta/index.php:633 ../../index.php:825 +msgid "This user doesn't have a valid email address" +msgstr "" + +#: ../../enterprise/meta/index.php:650 ../../index.php:836 +msgid "This is an automatically sent message for user " +msgstr "" + +#: ../../enterprise/meta/index.php:653 ../../index.php:839 +msgid "Please click the link below to reset your password" +msgstr "" + +#: ../../enterprise/meta/index.php:655 ../../index.php:841 +msgid "Reset your password" +msgstr "" + +#: ../../enterprise/meta/index.php:659 ../../index.php:845 +msgid "Please do not reply to this email." +msgstr "" + +#: ../../enterprise/meta/index.php:665 ../../index.php:850 +msgid "Error at sending the email" +msgstr "" + +#: ../../enterprise/meta/index.php:811 ../../enterprise/meta/index.php:890 +#: ../../index.php:1112 +msgid "Sorry! I can't find the page!" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:100 +msgid "Search results for" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:101 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:114 +msgid "Descrtiption" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:121 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:328 +#: ../../enterprise/operation/agentes/tag_view.php:587 +#: ../../enterprise/operation/agentes/ver_agente.php:74 +#: ../../godmode/users/user_list.php:330 +#: ../../godmode/agentes/planned_downtime.editor.php:1038 +#: ../../mobile/operation/agents.php:85 ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:409 ../../mobile/operation/agents.php:412 +#: ../../mobile/operation/agent.php:211 ../../include/ajax/module.php:849 +#: ../../include/functions_treeview.php:645 +#: ../../include/functions_events.php:4089 ../../operation/search_users.php:37 +#: ../../operation/search_agents.php:57 +#: ../../operation/agentes/estado_agente.php:734 +#: ../../operation/agentes/ver_agente.php:858 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:275 +msgid "There are no agents included in this group" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:289 +msgid "Policies found" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:383 +#: ../../enterprise/godmode/policies/policies.php:493 +#: ../../operation/search_policies.php:49 +msgid "Policy updated" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:391 +#: ../../enterprise/godmode/policies/policies.php:501 +#: ../../operation/search_policies.php:57 +msgid "Pending update policy only database" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:399 +#: ../../enterprise/godmode/policies/policies.php:509 +#: ../../operation/search_policies.php:65 +msgid "Pending update policy" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:420 +msgid "There are no policies included in this group" +msgstr "" + +#: ../../enterprise/meta/general/footer.php:28 ../../general/footer.php:47 +#, php-format +msgid "%s %s - Build %s - MR %s" +msgstr "" + +#: ../../enterprise/meta/general/footer.php:28 +msgid "Page generated at" +msgstr "" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccesssaml.php:133 +#: ../../enterprise/meta/general/noaccess.php:25 ../../mobile/index.php:257 +#: ../../mobile/operation/agents.php:172 ../../mobile/operation/modules.php:194 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:99 +#: ../../mobile/operation/alerts.php:158 +#: ../../mobile/operation/visualmap.php:79 +#: ../../mobile/operation/visualmaps.php:91 +#: ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/events.php:468 ../../mobile/operation/tactical.php:81 +#: ../../general/noaccesssaml.php:133 ../../general/noaccess.php:133 +#: ../../general/noaccess2.php:15 ../../general/noaccess2.php:17 +msgid "You don't have access to this page" +msgstr "" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../enterprise/meta/general/noaccess.php:29 ../../general/noaccess2.php:27 +msgid "No access" +msgstr "" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 +msgid "" +"Metaconsole needs previous activation from regular console, please contact " +"system administrator if you need assistance.
" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../operation/tree.php:102 ../../operation/menu.php:53 +msgid "Tree view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:109 +msgid "Groups view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../operation/agentes/alerts_status.php:184 +msgid "Alerts view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:121 +msgid "Monitors view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:127 +msgid "Custom fields view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:158 +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../enterprise/include/functions_cron.php:1346 +#: ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:131 +msgid "Reports" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:165 +msgid "Create new report" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:181 +msgid "Report templates" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:191 +#: ../../enterprise/include/functions_reporting.php:74 +msgid "Templates wizard" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:201 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:618 +#: ../../enterprise/godmode/menu.php:116 +#: ../../enterprise/godmode/services/services.service.php:349 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:200 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:120 +#: ../../enterprise/include/functions_groups.php:65 +#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/services/services.service_map.php:165 +#: ../../enterprise/operation/services/services.treeview_services.php:61 +#: ../../enterprise/operation/services/services.treeview_services.php:67 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:553 +#: ../../include/lib/Dashboard/Widgets/service_map.php:327 +#: ../../operation/agentes/ver_agente.php:1318 +#: ../../general/first_task/service_list.php:25 msgid "Services" msgstr "" -#: ../../operation/agentes/ver_agente.php:1116 -msgid "Files" +#: ../../enterprise/meta/general/main_header.php:219 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:88 +#: ../../enterprise/godmode/reporting/visual_console_template.php:89 +#: ../../enterprise/include/functions_enterprise.php:317 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:436 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:187 +#: ../../enterprise/meta/general/main_header.php:226 +msgid "Favourite Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:234 +msgid "Template Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:241 +msgid "Wizard Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:264 +#: ../../enterprise/include/functions_enterprise.php:313 +#: ../../godmode/menu.php:325 ../../godmode/setup/setup.php:115 +#: ../../godmode/setup/setup.php:185 ../../include/functions_reports.php:862 +#: ../../include/functions_reports.php:866 +#: ../../include/functions_reports.php:870 +msgid "Netflow" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:270 +msgid "Live view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:316 +msgid "Agent management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:322 +#: ../../enterprise/meta/general/main_header.php:424 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/local_components.php:123 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_network_components.php:201 +#: ../../godmode/modules/module_list.php:26 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:328 +#: ../../enterprise/meta/general/main_header.php:440 +msgid "Alert management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:334 +#: ../../enterprise/meta/general/main_header.php:449 +#: ../../enterprise/godmode/menu.php:237 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +msgid "Event alerts" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:340 +msgid "Component management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:346 +msgid "Policy management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:352 +msgid "Category management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:358 +#: ../../enterprise/meta/general/main_header.php:431 +msgid "Server management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:364 ../../godmode/menu.php:351 +msgid "License" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:370 +msgid "Metasetup" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:376 +#: ../../enterprise/meta/general/main_header.php:398 +#: ../../enterprise/meta/general/main_header.php:457 ../../godmode/menu.php:370 +#: ../../godmode/menu.php:488 ../../general/links_menu.php:17 +msgid "Links" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:467 +#: ../../godmode/extensions.php:26 +msgid "Extensions" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:516 +#: ../../enterprise/meta/general/main_header.php:522 +#: ../../general/header.php:48 ../../general/header.php:54 +msgid "All systems" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:516 +#: ../../general/header.php:48 +msgid "Down" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:519 +#: ../../general/header.php:51 +msgid "servers down" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:522 +#: ../../general/header.php:54 +msgid "Ready" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:533 +#: ../../mobile/include/functions_web.php:32 +#: ../../mobile/include/ui.class.php:210 +#: ../../mobile/include/user.class.php:317 ../../mobile/operation/home.php:150 +#: ../../general/header.php:404 ../../general/header.php:406 +msgid "Logout" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:550 +#: ../../general/header.php:231 +msgid "Configure autorefresh" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:567 +#: ../../enterprise/meta/general/main_header.php:579 +#: ../../general/header.php:291 ../../general/header.php:308 +msgid "Disabled autorefresh" +msgstr "" + +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../include/functions_reports.php:884 +msgid "Network traffic" +msgstr "" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:232 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:251 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:276 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../godmode/reporting/graphs.php:87 +#: ../../godmode/reporting/visual_console_favorite.php:78 +#: ../../godmode/reporting/reporting_builder.php:529 +#: ../../godmode/reporting/reporting_builder.php:536 +#: ../../godmode/reporting/reporting_builder.php:3033 +#: ../../godmode/reporting/reporting_builder.php:3040 +#: ../../godmode/reporting/reporting_builder.php:3122 +#: ../../godmode/reporting/reporting_builder.php:3129 +#: ../../operation/menu.php:327 +#: ../../operation/reporting/reporting_viewer.php:129 +#: ../../operation/reporting/reporting_viewer.php:134 +#: ../../operation/reporting/custom_reporting.php:23 +#: ../../operation/reporting/graph_viewer.php:365 +msgid "Reporting" +msgstr "" + +#: ../../enterprise/meta/general/noaccesssaml.php:138 +#: ../../general/noaccesssaml.php:138 +msgid "" +"Access to this page is restricted to authorized users SAML only, please " +"contact system administrator if you need assistance." +msgstr "" + +#: ../../enterprise/meta/general/noaccesssaml.php:140 +#: ../../general/noaccesssaml.php:140 +#, php-format +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of " +"%s System Database" +msgstr "" + +#: ../../enterprise/meta/general/noaccess.php:34 ../../general/noaccess.php:138 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance." +msgstr "" + +#: ../../enterprise/meta/general/noaccess.php:36 ../../general/noaccess.php:140 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security " +"logs of %s System Database" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:130 +#: ../../enterprise/meta/general/login_page.php:171 +#: ../../mobile/include/user.class.php:283 ../../general/login_page.php:267 +msgid "Login" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:138 +#: ../../general/login_page.php:235 +msgid "Login with SAML" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:179 +#: ../../general/login_page.php:309 +msgid "Forgot your password?" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:193 +#: ../../include/functions_config.php:2167 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:219 +#: ../../enterprise/meta/general/login_page.php:222 +#: ../../enterprise/meta/general/login_page.php:236 +#: ../../enterprise/meta/general/login_page.php:239 +#: ../../enterprise/meta/general/login_page.php:256 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../general/login_page.php:361 ../../general/login_page.php:364 +#: ../../general/login_page.php:378 ../../general/login_page.php:381 +#: ../../general/login_page.php:398 ../../general/login_page.php:401 +msgid "Password reset" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:226 +#: ../../general/login_page.php:368 +msgid "INFO" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:227 +#: ../../general/login_page.php:369 +msgid "An email has been sent to your email address" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:263 +#: ../../general/login_page.php:405 +msgid "SUCCESS" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:278 +#: ../../enterprise/meta/general/login_page.php:281 +#: ../../enterprise/include/functions_login.php:141 +#: ../../general/login_page.php:420 ../../general/login_page.php:423 +#: ../../general/login_page.php:552 ../../general/login_page.php:555 +msgid "Login failed" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:303 +#: ../../enterprise/meta/general/login_page.php:306 +#: ../../enterprise/meta/general/login_page.php:310 +#: ../../general/login_page.php:445 ../../general/login_page.php:448 +#: ../../general/login_page.php:452 +msgid "Logged out" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:311 +#: ../../mobile/include/user.class.php:241 ../../general/login_page.php:453 +#, php-format +msgid "" +"Your session has ended. Please close your browser window to close this %s " +"session." +msgstr "" + +#: ../../enterprise/load_enterprise.php:375 +#: ../../enterprise/load_enterprise.php:440 +msgid "Invalid licence." +msgstr "" + +#: ../../enterprise/load_enterprise.php:375 +msgid "Please contact your system administrator." +msgstr "" + +#: ../../enterprise/load_enterprise.php:440 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "" + +#: ../../enterprise/load_enterprise.php:441 +#, php-format +msgid "Or disable %s enterprise" +msgstr "" + +#: ../../enterprise/load_enterprise.php:538 +#: ../../enterprise/godmode/alerts/alert_events_list.php:758 +#: ../../enterprise/godmode/reporting/aws_view.php:154 +#: ../../enterprise/godmode/wizards/Cloud.class.php:305 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3062 +#: ../../godmode/setup/license.php:143 ../../mobile/operation/events.php:570 +#: ../../include/ajax/alert_list.ajax.php:266 +#: ../../include/ajax/alert_list.ajax.php:292 +#: ../../operation/agentes/alerts_status.php:541 +#: ../../operation/agentes/alerts_status.php:578 +#: ../../operation/agentes/alerts_status.php:611 +#: ../../operation/agentes/alerts_status.php:697 +#: ../../operation/snmpconsole/snmp_view.php:972 +#: ../../operation/snmpconsole/snmp_view.php:1133 +#: ../../operation/snmpconsole/snmp_view.php:1186 +msgid "Validate" +msgstr "" + +#: ../../enterprise/load_enterprise.php:542 +#: ../../enterprise/load_enterprise.php:836 +msgid "Request new licence" +msgstr "" + +#: ../../enterprise/load_enterprise.php:622 +msgid "" +"Metaconsole unreached

" +"This node has a metaconsole license and cannot contact with the metaconsole." +msgstr "" + +#: ../../enterprise/load_enterprise.php:639 +#: ../../enterprise/load_enterprise.php:646 +#: ../../enterprise/load_enterprise.php:656 +#: ../../enterprise/load_enterprise.php:662 +#, php-format +msgid "" +"License exceeded

This " +"license allows %d agents and you have %d agents configured." +msgstr "" + +#: ../../enterprise/load_enterprise.php:640 +#: ../../enterprise/load_enterprise.php:648 +#: ../../enterprise/load_enterprise.php:657 +#: ../../enterprise/load_enterprise.php:664 +#: ../../enterprise/load_enterprise.php:677 +#, php-format +msgid "Please contact %s to extend the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:647 +#: ../../enterprise/load_enterprise.php:649 +#: ../../enterprise/load_enterprise.php:663 +#: ../../enterprise/load_enterprise.php:665 +#: ../../enterprise/load_enterprise.php:693 +#: ../../enterprise/load_enterprise.php:695 +msgid "" +"This console will work in limited mode. Enterprise features will not " +"function." +msgstr "" + +#: ../../enterprise/load_enterprise.php:676 +#, php-format +msgid "" +"License exceeded

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

You can not get updates until you renew the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:687 +#: ../../enterprise/load_enterprise.php:694 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:702 +#, php-format +msgid "" +"This license is outside of support.

This %s installation will continue working normally and " +"without limitations, but without support or updates." +msgstr "" + +#: ../../enterprise/load_enterprise.php:832 +msgid "Renew" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:16 +msgid "ACL users for this agent" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:142 +msgid "System incidents reading" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:143 +msgid "System incidents writing" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:144 +msgid "System incidents management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:145 +msgid "Agents reading" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +#: ../../include/functions_menu.php:502 +msgid "Agents management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:147 +msgid "Agents disable" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:148 +msgid "Alerts editing" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +#: ../../godmode/menu.php:125 +msgid "Users management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:150 +msgid "Database management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:151 +msgid "Alerts management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:152 +msgid "Reports reading" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:153 +msgid "Reports writing" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:154 +msgid "Reports management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:155 +msgid "Events reading" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:156 +msgid "Events writing" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:64 +#: ../../enterprise/extensions/disabled/check_acls.php:157 +msgid "Events management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:65 +#: ../../enterprise/extensions/disabled/check_acls.php:158 +msgid "Systems management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:118 +msgid "There are no defined users" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/menu.php:117 +msgid "Module tags" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:206 +msgid "ACL module tags for the modules in this agent" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:217 +msgid "Only admin users can see this section." +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:224 +msgid "Check ACL" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +msgid "Element Id" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:107 +#: ../../enterprise/godmode/policies/policy_queue.php:479 +#: ../../enterprise/godmode/policies/policy_linking.php:125 +msgid "Node" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:150 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:57 +#: ../../enterprise/godmode/reporting/visual_console_template.php:58 +#: ../../godmode/reporting/map_builder.php:56 +#: ../../godmode/reporting/visual_console_favorite.php:49 +msgid "Visual Console List" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:155 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:61 +#: ../../godmode/reporting/visual_console_favorite.php:54 +#: ../../godmode/reporting/visual_console_favorite.php:78 +msgid "Visual Favourite Console" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:161 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:68 +#: ../../enterprise/godmode/reporting/visual_console_template.php:69 +#: ../../godmode/reporting/map_builder.php:67 +#: ../../godmode/reporting/visual_console_favorite.php:60 +msgid "Visual Console Template" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:166 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:73 +#: ../../enterprise/godmode/reporting/visual_console_template.php:74 +#: ../../godmode/reporting/map_builder.php:72 +#: ../../godmode/reporting/visual_console_favorite.php:65 +msgid "Visual Console Template Wizard" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:171 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:183 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:427 +#: ../../enterprise/extensions/disabled/visual_console_manager.php:430 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:80 +#: ../../enterprise/godmode/reporting/visual_console_template.php:81 +#: ../../godmode/reporting/map_builder.php:77 +#: ../../godmode/reporting/visual_console_favorite.php:71 +msgid "Visual Console Manager" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:212 +#, php-format +msgid "%d elements updated" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:213 +msgid "There was an error updating the elements" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:248 +#: ../../include/functions_visual_map_editor.php:991 +#: ../../include/rest-api/models/VisualConsole/Item.php:2354 +msgid "By status weight" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:249 +#: ../../include/functions_visual_map_editor.php:992 +#: ../../include/rest-api/models/VisualConsole/Item.php:2355 +msgid "By critical elements" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:251 +msgid "Type of the status calculation" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:257 +#: ../../include/functions_visual_map_editor.php:1012 +#: ../../include/rest-api/models/VisualConsole/Item.php:2353 +msgid "By default" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:264 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:154 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:208 +#: ../../godmode/reporting/graph_builder.graph_editor.php:201 +#: ../../godmode/reporting/graph_builder.graph_editor.php:370 +msgid "Weight" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:279 +#: ../../enterprise/godmode/services/services.elements.php:735 +#: ../../include/functions_visual_map_editor.php:1058 +#: ../../include/rest-api/models/VisualConsole/Item.php:2392 +msgid "Critical weight" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:294 +#: ../../enterprise/godmode/services/services.elements.php:739 +#: ../../include/functions_visual_map_editor.php:1084 +#: ../../include/rest-api/models/VisualConsole/Item.php:2406 +msgid "Warning weight" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:309 +msgid "Visual Consoles" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:313 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../operation/search_maps.php:29 +msgid "Elements" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:319 +msgid "Visual Console Information" +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:320 +msgid "There are no items selected." +msgstr "" + +#: ../../enterprise/extensions/disabled/visual_console_manager.php:323 +msgid "" +"Massive editing of the procedure for calculating the status of elements " +"linked to a visual console" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:170 +#: ../../enterprise/extensions/ipam.php:423 ../../extensions/files_repo.php:119 +#: ../../extensions/files_repo.php:207 +msgid "Operation view" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:185 +#: ../../enterprise/extensions/ipam.php:407 +msgid "Subnetworks calculator" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:194 +#: ../../enterprise/extensions/ipam.php:431 +msgid "Vlan config" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:204 +#: ../../enterprise/extensions/ipam.php:441 +msgid "Vlan wizard" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:219 +msgid "Vlan statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:231 +#: ../../enterprise/extensions/ipam.php:451 +msgid "Supernet config" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:242 +msgid "Supernet statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:254 +#: ../../enterprise/extensions/ipam.php:461 +msgid "Supernet map" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:271 +#: ../../enterprise/extensions/ipam/ipam_list.php:178 +msgid "Manage addresses" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:279 +msgid "Massive operations" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:287 +#: ../../enterprise/extensions/ipam/ipam_list.php:184 +msgid "Addresses view" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:296 +#: ../../enterprise/extensions/ipam.php:308 +#: ../../enterprise/extensions/ipam.php:415 ../../extensions/files_repo.php:115 +#: ../../extensions/files_repo.php:204 +msgid "Administration view" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:331 +#: ../../enterprise/extensions/ipam.php:478 +#: ../../enterprise/extensions/ipam.php:518 +#: ../../enterprise/extensions/ipam.php:519 +msgid "IPAM" +msgstr "" + +#: ../../enterprise/extensions/vmware.php:43 +msgid "Failed to initialize VMware extension." +msgstr "" + +#: ../../enterprise/extensions/vmware.php:86 +#: ../../enterprise/extensions/vmware/vmware_view.php:1336 +msgid "VMware View" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:79 +#, php-format +msgid "%s database backup utility" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:91 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:82 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 +#: ../../enterprise/operation/log/log_viewer.php:329 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:133 +msgid "Not supported in Windows systems" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:94 +msgid "Filter backups" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:106 +msgid "Path backups" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:132 +#: ../../enterprise/include/functions_log.php:268 +#: ../../enterprise/include/functions_inventory.php:712 +#: ../../enterprise/include/functions_reporting_pdf.php:652 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:739 +#: ../../enterprise/include/functions_reporting_csv.php:2282 +#: ../../enterprise/include/functions_reporting.php:1967 +#: ../../enterprise/include/functions_reporting.php:2004 +#: ../../enterprise/include/functions_reporting.php:2039 +#: ../../enterprise/include/functions_reporting.php:2057 +#: ../../enterprise/operation/agentes/agent_inventory.php:75 +#: ../../enterprise/operation/inventory/inventory.php:241 +#: ../../extensions/insert_data.php:193 ../../extensions/users_connected.php:79 +#: ../../godmode/admin_access_logs.php:198 +#: ../../godmode/alerts/configure_alert_special_days.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1676 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:2139 +#: ../../include/functions_reporting_html.php:2146 +#: ../../include/functions_reporting_html.php:2151 +#: ../../include/functions_reporting_html.php:2197 +#: ../../include/functions_reporting_html.php:4690 +#: ../../include/functions.php:2889 ../../include/functions_reporting.php:3205 +#: ../../include/functions_reporting.php:3246 +#: ../../include/functions_events.php:6464 +#: ../../operation/incidents/list_integriaims_incidents.php:167 +#: ../../operation/reporting/graph_viewer.php:243 +#: ../../operation/events/events.build_table.php:695 +#: ../../general/logon_ok.php:247 +msgid "Date" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:133 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../godmode/events/event_responses.editor.php:112 +#: ../../include/functions_visual_map_editor.php:126 +#: ../../include/functions_visual_map_editor.php:179 +#: ../../include/functions_visual_map_editor.php:770 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 +#: ../../include/rest-api/models/VisualConsole/Item.php:1873 +#: ../../include/functions_filemanager.php:621 +#: ../../operation/incidents/incident_detail.php:477 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:126 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:300 +msgid "Size" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:135 +#: ../../enterprise/include/functions_tasklist.php:345 +#: ../../enterprise/include/functions_tasklist.php:376 +#: ../../include/functions_cron.php:622 ../../include/functions_cron.php:652 +#: ../../include/class/Diagnostics.class.php:2166 +msgid "Path" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:195 +#: ../../enterprise/godmode/services/services.service.php:644 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:423 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2306 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../enterprise/include/functions_reporting_csv.php:1386 +#: ../../enterprise/include/functions_reporting_csv.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1628 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1680 +#: ../../enterprise/include/class/DatabaseHA.class.php:389 +#: ../../enterprise/include/class/DatabaseHA.class.php:626 +#: ../../enterprise/include/class/DatabaseHA.class.php:728 +#: ../../enterprise/include/class/AgentRepository.class.php:881 +#: ../../enterprise/include/functions_reporting.php:1705 +#: ../../enterprise/include/functions_reporting.php:2613 +#: ../../enterprise/include/functions_reporting.php:2877 +#: ../../enterprise/include/functions_reporting.php:3606 +#: ../../enterprise/include/functions_reporting.php:3875 +#: ../../enterprise/include/functions_reporting.php:4461 +#: ../../enterprise/include/functions_reporting.php:5377 +#: ../../enterprise/include/functions_reporting.php:5415 +#: ../../enterprise/include/functions_services.php:2811 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:422 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/setup/setup_general.php:521 +#: ../../godmode/setup/setup_general.php:539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2104 +#: ../../include/functions_reporting_html.php:599 +#: ../../include/functions_reporting_html.php:770 +#: ../../include/functions_reporting_html.php:2520 +#: ../../include/functions_reporting_html.php:3570 +#: ../../include/functions_db.php:1781 +#: ../../include/class/ConfigPEN.class.php:662 +#: ../../include/class/ConfigPEN.class.php:686 +#: ../../include/class/HelpFeedBack.class.php:368 +#: ../../include/class/CredentialStore.class.php:1114 +#: ../../include/class/ModuleTemplates.class.php:1276 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:642 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:312 +#: ../../operation/agentes/pandora_networkmap.editor.php:572 +#: ../../operation/snmpconsole/snmp_browser.php:580 +msgid "OK" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:199 +msgid "Lost" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:211 +#: ../../extensions/files_repo/files_repo_list.php:96 +msgid "Download" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:243 +msgid "Backups list" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:248 +msgid "Create backup" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:265 +msgid "Path to save backup" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:265 +msgid "It is important that Apache can read and write on the selected path" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:37 +#, php-format +msgid "Created group %s" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:38 +#, php-format +msgid "Could not create group %s" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:45 +msgid "File processed" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:53 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1356 +msgid "CSV format" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:54 +msgid "The CSV file must have the fields in the following order" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:70 +#: ../../enterprise/include/class/CSVImportAgents.class.php:144 +msgid "Upload file" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:73 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1360 +#: ../../enterprise/include/class/CSVImportAgents.class.php:161 +msgid "Separator" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:86 +msgid "Upload CSV file" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:91 +#: ../../enterprise/include/class/CSVImportAgents.class.php:196 +#: ../../include/functions_filemanager.php:800 +msgid "Go" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:119 +msgid "No addresses found on this network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:256 +msgid "Edit address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:261 +msgid "Disabled address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:261 +msgid "This address will not be updated by the server" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:323 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:276 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:253 +#: ../../enterprise/extensions/ipam/ipam_excel.php:107 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1732 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:192 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:42 +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export_form.php:99 +#: ../../godmode/setup/setup_general.php:412 +#: ../../operation/agentes/ver_agente.php:995 +msgid "Address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:324 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1733 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:197 +#: ../../include/class/Diagnostics.class.php:725 +#: ../../include/class/Diagnostics.class.php:743 +msgid "Hostname" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:328 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1395 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1738 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:231 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:329 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1401 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1479 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1739 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:241 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:330 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../enterprise/include/class/DatabaseHA.class.php:204 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3148 +#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/agentes/module_manager_editor_common.php:977 +#: ../../godmode/agentes/module_manager_editor_common.php:987 +#: ../../godmode/massive/massive_edit_agents.php:717 +#: ../../godmode/alerts/alert_list.list.php:128 +#: ../../godmode/alerts/configure_alert_template.php:825 +#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_reporting_html.php:2620 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:343 +msgid "Enabled" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:331 +#: ../../enterprise/extensions/ipam/ipam_network.php:596 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1736 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:144 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:268 +#: ../../enterprise/extensions/ipam/ipam_massive.php:83 +#: ../../enterprise/include/functions_reporting_csv.php:912 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/admin_access_logs.php:200 +#: ../../mobile/operation/events.php:561 +#: ../../include/functions_reporting_html.php:4692 +#: ../../include/functions.php:2889 ../../include/ajax/events.php:1236 +#: ../../operation/users/user_edit.php:590 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:461 +#: ../../general/logon_ok.php:249 +msgid "Comments" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:342 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1734 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1132 +msgid "Alive" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:351 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1137 +msgid "Not alive" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:382 +#: ../../enterprise/extensions/ipam/ipam_network.php:457 +#: ../../enterprise/extensions/ipam/ipam_network.php:499 +msgid "Change to automatic mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:391 +#: ../../enterprise/extensions/ipam/ipam_network.php:466 +#: ../../enterprise/extensions/ipam/ipam_network.php:508 +msgid "Change to manual mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:587 +msgid "Add comments" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:615 +msgid "Update agent address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_network.php:781 +msgid "Please, uncheck auto option to set manual agent." +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:50 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:97 +msgid "There is no supernet name. Please introduce a name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:54 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:101 +msgid "There is no supernet address. Please introduce a address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:58 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:105 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:62 +msgid "There is no valid address. Please introduce a address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:66 +msgid "There is no valid mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:80 +msgid "Supernet created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:82 +msgid "Supernet not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:86 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:131 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:125 +msgid "Supernet updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:127 +msgid "Supernet not updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:152 +msgid "Could not be deleted, please select supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:181 +msgid "Network name cannot be repeated in this supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:188 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:150 +msgid "Successfully added networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:192 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:154 +msgid "Network could not be added" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:197 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:159 +msgid "Network name could not be added, please select network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:202 +msgid "supernet name could not be added, please select supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:226 +msgid "Could not be deleted, please select supernet and network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:266 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:159 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:40 +msgid "Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:290 +#: ../../enterprise/extensions/ipam/ipam_excel.php:108 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 +msgid "Mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:372 +#: ../../enterprise/extensions/ipam/ipam_excel.php:109 +msgid "Subneting Mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:340 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:460 +msgid "Update Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:347 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:541 +msgid "New Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:370 +msgid "Address / Masks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:373 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:272 +msgid "Networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:390 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:453 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:284 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:340 +msgid "Not assigned networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:447 +msgid "Delete network to supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:467 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:487 +msgid "Add network to supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:470 +msgid "Next network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:500 +msgid "Delete Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:521 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:393 +#: ../../include/functions_visual_map_editor.php:725 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:558 +msgid "Show statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:534 +msgid "No Supernet found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:108 +msgid "No networks found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:134 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:65 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:160 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:180 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1676 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:146 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:65 +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +#: ../../godmode/wizards/HostDevices.class.php:912 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:432 +#: ../../include/functions_ui.php:853 ../../operation/menu.php:74 +#: ../../operation/servers/recon_view.php:100 +msgid "Network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:137 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1217 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1679 +#: ../../enterprise/extensions/ipam/ipam_editor.php:137 +#: ../../godmode/events/event_responses.editor.php:105 +msgid "Location" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:141 +msgid "IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:142 +#: ../../enterprise/operation/services/services.service.php:180 +#: ../../enterprise/operation/services/services.list.php:436 +#: ../../extensions/agents_alerts.php:55 +#: ../../extensions/agents_modules.php:316 +#: ../../operation/agentes/group_view.php:61 +#: ../../operation/agentes/tactical.php:45 +msgid "Last update" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:164 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1206 +#: ../../enterprise/godmode/services/services.service.php:396 +#: ../../enterprise/include/class/VMware.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:502 +#: ../../enterprise/include/class/Aws.cloud.php:1212 +#: ../../enterprise/include/class/MySQL.app.php:565 +#: ../../enterprise/include/class/Oracle.app.php:546 +#: ../../enterprise/operation/services/services.list.php:234 +#: ../../enterprise/operation/services/services.table_services.php:213 +#: ../../godmode/wizards/HostDevices.class.php:803 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:531 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "Manual" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:169 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1772 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1773 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1774 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:291 +#: ../../enterprise/include/functions_tasklist.php:439 +#: ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1326 +#: ../../include/functions_cron.php:686 +#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:538 +#: ../../operation/agentes/estado_generalagente.php:303 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:192 +msgid "Edit network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_list.php:196 +msgid "Delete network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:409 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:557 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:611 +msgid "Interfaces" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:220 +msgid "Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +msgid "succesfully created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +msgid "not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +msgid "exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:71 +msgid "please, select VLAN to be created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:230 +msgid "Please enter adress, for search vlans" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:262 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:444 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:733 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:517 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:774 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:309 +msgid "SNMP community" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:271 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:447 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:736 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../enterprise/include/functions_hostdevices.php:64 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:520 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:777 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:767 +#: ../../include/class/AgentWizard.class.php:322 +msgid "SNMP version" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:298 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:480 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:769 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../enterprise/include/functions_hostdevices.php:124 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:533 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:791 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../include/functions_snmp_browser.php:730 +msgid "Auth user" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:307 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:482 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:771 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/include/functions_hostdevices.php:135 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:535 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../include/functions_snmp_browser.php:732 +msgid "Auth password" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:323 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:486 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:775 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:649 +#: ../../enterprise/include/functions_hostdevices.php:151 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:539 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:797 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:791 +#: ../../include/functions_snmp_browser.php:736 +msgid "Privacy method" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:326 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/include/functions_hostdevices.php:156 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../include/functions_snmp_browser.php:737 +msgid "DES" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:327 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/include/functions_hostdevices.php:157 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../include/functions_snmp_browser.php:737 +msgid "AES" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:336 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:488 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:777 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:541 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:799 +msgid "privacy pass" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:346 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:491 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:780 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:653 +#: ../../enterprise/include/functions_hostdevices.php:182 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:544 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:802 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:795 +#: ../../include/functions_snmp_browser.php:741 +msgid "Auth method" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:349 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/include/functions_hostdevices.php:187 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../include/class/Diagnostics.class.php:2166 +#: ../../include/functions_snmp_browser.php:742 +msgid "MD5" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:350 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/include/functions_hostdevices.php:188 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../include/functions_snmp_browser.php:742 +msgid "SHA" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:359 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:493 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:782 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:655 +#: ../../enterprise/include/functions_hostdevices.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:546 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:797 +#: ../../include/functions_snmp_browser.php:743 +msgid "Security level" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:362 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:496 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:785 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../enterprise/include/functions_hostdevices.php:202 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:549 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:807 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:800 +#: ../../include/functions_snmp_browser.php:746 +msgid "Not auth and not privacy method" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:363 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:497 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:786 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +#: ../../enterprise/include/functions_hostdevices.php:203 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:550 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:808 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:801 +#: ../../include/functions_snmp_browser.php:747 +msgid "Auth and not privacy method" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:364 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:498 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:787 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:660 +#: ../../enterprise/include/functions_hostdevices.php:204 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:551 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:809 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:802 +#: ../../include/functions_snmp_browser.php:748 +msgid "Auth and privacy method" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:373 +#: ../../enterprise/include/functions_hostdevices.php:113 +msgid "Context" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:396 +msgid "Run" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:408 +msgid "Vlan name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:423 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:278 +msgid "Created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:419 +msgid "No vlans found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:109 +#: ../../enterprise/extensions/ipam/ipam_action.php:172 +msgid "Incorrect format in Subnet field" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:115 +#: ../../enterprise/extensions/ipam/ipam_action.php:178 +msgid "The location is not filled, please add a location." +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:140 +#, php-format +msgid "Could not be created: %s" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:191 +#: ../../enterprise/extensions/ipam/ipam_massive.php:48 +#: ../../enterprise/godmode/modules/local_components.php:341 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:105 +#: ../../enterprise/godmode/policies/policy_modules.php:1220 +#: ../../enterprise/godmode/policies/policies.php:250 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 +#: ../../enterprise/godmode/alerts/alert_events.php:429 +#: ../../enterprise/godmode/alerts/alert_events_list.php:100 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:176 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:109 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:127 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../godmode/modules/manage_network_components.php:384 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/planned_downtime.editor.php:512 +#: ../../godmode/alerts/configure_alert_command.php:113 +#: ../../godmode/alerts/alert_templates.php:163 +#: ../../godmode/alerts/configure_alert_template.php:507 +#: ../../godmode/alerts/alert_special_days.php:227 +#: ../../godmode/alerts/alert_list.php:94 +#: ../../godmode/alerts/alert_list.php:296 ../../godmode/setup/gis.php:38 +#: ../../include/functions_alerts.php:2825 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:202 +#: ../../operation/agentes/pandora_networkmap.php:500 +#: ../../operation/snmpconsole/snmp_view.php:138 +#: ../../operation/incidents/incident.php:158 +msgid "Could not be updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:297 +#: ../../operation/agentes/pandora_networkmap.view.php:151 +msgid "Could not be updated." +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:303 +msgid "Successfully updated." +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_action.php:308 +#: ../../include/functions_reporting.php:2198 +msgid "No changes found." +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:104 +#: ../../enterprise/extensions/ipam/ipam_excel.php:174 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../extensions/api_checker.php:161 +#: ../../godmode/modules/module_list.php:58 +#: ../../godmode/groups/group_list.php:679 +#: ../../godmode/groups/modu_group_list.php:234 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../godmode/agentes/agent_manager.php:214 +#: ../../godmode/agentes/agent_incidents.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:206 +#: ../../godmode/alerts/alert_commands.php:413 +#: ../../godmode/setup/os.list.php:31 ../../include/functions_events.php:5997 +#: ../../operation/incidents/incident.php:419 +#: ../../operation/incidents/list_integriaims_incidents.php:261 +#: ../../operation/events/events.build_table.php:146 +msgid "ID" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:110 +#: ../../enterprise/extensions/ipam/ipam_excel.php:177 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1383 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1685 +msgid "Total IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:111 +#: ../../enterprise/extensions/ipam/ipam_excel.php:178 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1686 +msgid "Alive IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:112 +#: ../../enterprise/extensions/ipam/ipam_excel.php:179 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1687 +msgid "Occupied %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:113 +#: ../../enterprise/extensions/ipam/ipam_excel.php:180 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1688 +msgid "Available %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:114 +#: ../../enterprise/extensions/ipam/ipam_excel.php:181 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1689 +msgid "Managed IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:115 +#: ../../enterprise/extensions/ipam/ipam_excel.php:182 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1690 +msgid "Managed %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:116 +#: ../../enterprise/extensions/ipam/ipam_excel.php:183 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1691 +msgid "Unmanaged %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:117 +#: ../../enterprise/extensions/ipam/ipam_excel.php:184 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1692 +msgid "Reserved IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:118 +#: ../../enterprise/extensions/ipam/ipam_excel.php:185 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1693 +msgid "Reserved %" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_excel.php:119 +#: ../../enterprise/extensions/ipam/ipam_excel.php:186 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1694 +msgid "Not reserved %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:81 +msgid "Current Networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "Please, create networks to assign to " +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "all networks selected" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:130 +msgid "Please, create networks to assign to" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:288 +msgid "Export to Excel" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:341 +msgid "Assign next free IP" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:360 +msgid "Next available IP" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1191 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:272 +#: ../../include/ajax/events.php:1234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:66 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:429 +msgid "Details" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1193 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:245 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +msgid "Subnet" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1232 +#: ../../enterprise/godmode/agentes/inventory_manager.php:254 +#: ../../enterprise/operation/services/services.list.php:558 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:419 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:501 +#: ../../include/ajax/module.php:917 ../../include/functions_ui.php:1138 +#: ../../operation/agentes/group_view.php:192 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/servers/recon_view.php:91 +#: ../../operation/servers/recon_view.php:123 +msgid "Force" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1381 +#: ../../operation/snmpconsole/snmp_statistics.php:53 +#: ../../operation/snmpconsole/snmp_view.php:80 ../../operation/menu.php:398 +#: ../../operation/menu.php:506 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../operation/events/event_statistics.php:46 +msgid "Statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1389 +msgid "Occupied" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1391 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 +msgid "Available" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1397 +msgid "Not managed" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1403 +msgid "Not Reserved" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +msgid "DESC" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +msgid "ASC" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +msgid "A -> Z" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +msgid "Z -> A" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Last check" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +msgid "Newer -> Older" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Older -> Newer" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1449 +msgid "Exact address match" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1453 +msgid "S.O" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1458 +msgid "Big" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1459 +msgid "Tiny" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1460 +msgid "Icons style" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1469 +msgid "Show not alive hosts" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1472 +msgid "Show only managed addresses" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1475 +msgid "Reserved addresses" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1480 +msgid "Unreserved" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1490 +msgid "Last Contact" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1520 +msgid "Filter options" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1675 +msgid "id Network" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1680 +msgid "ID recon task" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1681 +msgid "Scan Interval" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1682 +msgid "Users Operator" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1683 +msgid "Total Ips" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1684 +msgid "Last Update" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1737 +msgid "OS Name" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1740 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:417 +msgid "Created at" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1741 +msgid "Last updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1742 +msgid "Last modified" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1743 +msgid "Dhcp Leased" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1744 +msgid "Dhcp Leased Mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1745 +msgid "Dhcp Leased Expiration" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1746 +msgid "Mac address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:136 +msgid "There is not an available IP." +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:138 +msgid "Next available IP Address is:" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:155 +msgid "Reserve this IP now" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:162 +msgid "Manage this IP now" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:207 +msgid "Operating system" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:217 +msgid "This agent has other IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 +msgid "Generate events" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:246 +msgid "Leases Dhcp" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 +msgid "leased mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:257 +msgid "leased expiration" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:262 +#: ../../include/class/NetworkMap.class.php:2935 +msgid "MAC" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:288 +msgid "Edited" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:298 +msgid "Tracking" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:313 +msgid "Ping" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:329 +#: ../../include/ajax/events.php:1033 ../../include/ajax/events.php:1066 +#, php-format +msgid "Executing command: %s" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:336 +#: ../../include/ajax/events.php:1050 ../../include/ajax/events.php:1073 +msgid "Execute again" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:350 +msgid "Ping to host" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:44 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:72 +msgid "There is no vlan name. Please introduce a name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:55 +msgid "Vlan created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:57 +msgid "Vlan not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:95 +msgid "Vlan name exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:89 +msgid "Vlan updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:91 +msgid "Vlan not updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:115 +msgid "Could not be deleted, please select vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:143 +msgid "Network name cannot be repeated in this Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:164 +msgid "Vlan name could not be added, please select vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:188 +msgid "Could not be deleted, please select vlan and network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:240 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:346 +msgid "Update Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:247 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:431 +msgid "New Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:314 +msgid "Delete network to vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:353 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:372 +msgid "Add network to Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:356 +msgid "Create network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:388 +msgid "Delete Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:44 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:45 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:56 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:57 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:58 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:59 +msgid "Example:" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 +msgid "Bit mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:49 +msgid "Net mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 +msgid "Mask format" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:67 +msgid "Calculate" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:74 +msgid "Address field is empty" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:82 +msgid "Mask field is empty" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:100 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:118 +msgid "Incorrect address format" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:105 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:110 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:123 +msgid "Incorrect mask format" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:151 +msgid "Network mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:167 +msgid "Network wildcard" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:172 +msgid "Network address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:177 +msgid "Broadcast address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:182 +msgid "First valid IP" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:187 +msgid "Last valid IP" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_calculator.php:193 +msgid "Hosts/Net" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:46 +msgid "Network not found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:83 +#: ../../operation/incidents/incident.php:325 +msgid "All users" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +msgid "Format: IP/Mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:96 +msgid "Examples" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:119 +#: ../../enterprise/include/class/Azure.cloud.php:744 +#: ../../enterprise/include/class/VMware.app.php:528 +#: ../../enterprise/include/class/SAP.app.php:471 +#: ../../enterprise/include/class/Aws.cloud.php:433 +#: ../../enterprise/include/class/Aws.cloud.php:1097 +#: ../../enterprise/include/class/MySQL.app.php:452 +#: ../../enterprise/include/class/Oracle.app.php:450 +#: ../../godmode/wizards/HostDevices.class.php:844 +#: ../../include/functions_servers.php:590 +#: ../../include/functions_servers.php:1223 +#: ../../include/class/CustomNetScan.class.php:478 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:137 +msgid "For example: Central Data Center" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:142 +msgid "Include statistical monitors" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:157 +msgid "Lightweight mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:158 +msgid "Use quicker network scan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:174 +msgid "Target group for monitoring agent" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 +msgid "Scan interval" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 +msgid "0 for manually scan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 +msgid "Operator users" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 +msgid "" +"The list of users can manage the networks in the IPAM. Only the admin users " +"can manage networks and edit the networks." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:38 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:46 +#, php-format +msgid "Warning create '%s' policy, the name exist, the policy have a name %s." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:55 +msgid "Error the policy haven't name." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:76 +#, php-format +msgid "Success create '%s' policy." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:77 +#, php-format +msgid "Error create '%s' policy." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:114 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:118 +#, php-format +msgid "Success add '%s' agent." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:119 +#, php-format +msgid "Error add '%s' agent." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:138 +msgid "The collection does not exist" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:143 +#, php-format +msgid "Success add '%s' collection." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:144 +#, php-format +msgid "Error add '%s' collection." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:162 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:163 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:176 +msgid "Error add the module, haven't type." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:377 +#: ../../enterprise/extensions/resource_registration/functions.php:438 +#: ../../enterprise/extensions/resource_registration/functions.php:539 +#: ../../enterprise/extensions/resource_registration/functions.php:595 +msgid "Error add the module, error in tag component." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:647 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:657 +#, php-format +msgid "Success add '%s' module." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:658 +#, php-format +msgid "Error add '%s' module." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:670 +#, php-format +msgid "Error add the alert, the template '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:681 +#, php-format +msgid "Error add the alert, the module '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:697 +#, php-format +msgid "Success add '%s' alert." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:698 +#, php-format +msgid "Error add '%s' alert." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:719 +#, php-format +msgid "Error add the alert, the action '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:738 +#, php-format +msgid "Success add '%s' action." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:739 +#: ../../extensions/resource_registration.php:385 +#: ../../extensions/resource_registration.php:407 +#: ../../extensions/resource_registration.php:418 +#, php-format +msgid "Error add '%s' action." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:691 +msgid "Host ESX" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1016 +#: ../../enterprise/include/functions_services.php:2682 +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/operation/agentes/policy_view.php:387 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/tag_view.php:930 +#: ../../enterprise/operation/agentes/tag_view.php:936 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../mobile/operation/modules.php:521 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:584 +#: ../../mobile/operation/modules.php:607 +#: ../../include/functions_modules.php:2566 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:3508 +#: ../../include/functions_modules.php:3540 ../../include/functions_ui.php:3610 +#: ../../include/functions_ui.php:3676 ../../include/class/Tree.class.php:610 +#: ../../include/functions_events.php:54 ../../include/functions_events.php:106 +#: ../../include/functions_events.php:169 +#: ../../operation/agentes/status_monitor.php:1388 +#: ../../operation/agentes/status_monitor.php:1394 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/pandora_networkmap.view.php:310 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/search_modules.php:102 +#: ../../operation/search_modules.php:129 +#: ../../operation/events/events.php:1744 +#: ../../operation/events/events.php:1811 +#: ../../operation/events/events.php:1838 +msgid "NORMAL" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1021 +#: ../../enterprise/include/functions_services.php:2688 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/operation/agentes/policy_view.php:381 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:944 +#: ../../enterprise/operation/agentes/tag_view.php:950 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../mobile/operation/modules.php:527 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:590 +#: ../../mobile/operation/modules.php:615 +#: ../../include/functions_modules.php:2560 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:3512 +#: ../../include/functions_modules.php:3532 ../../include/functions_ui.php:3616 +#: ../../include/functions_ui.php:3686 ../../include/class/Tree.class.php:580 +#: ../../include/functions_events.php:57 ../../include/functions_events.php:110 +#: ../../include/functions_events.php:154 +#: ../../operation/agentes/status_monitor.php:1402 +#: ../../operation/agentes/status_monitor.php:1408 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/pandora_networkmap.view.php:304 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:137 +#: ../../operation/events/events.php:1719 +#: ../../operation/events/events.php:1817 +#: ../../operation/events/events.php:1843 +msgid "CRITICAL" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1026 +#: ../../enterprise/include/functions_services.php:2694 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:384 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:958 +#: ../../enterprise/operation/agentes/tag_view.php:964 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../godmode/update_manager/update_manager.offline.php:100 +#: ../../mobile/operation/modules.php:533 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:596 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2563 +#: ../../include/functions_modules.php:2580 +#: ../../include/functions_modules.php:3516 +#: ../../include/functions_modules.php:3548 ../../include/functions_ui.php:3604 +#: ../../include/functions_ui.php:3681 ../../include/class/Tree.class.php:588 +#: ../../include/class/NetworkMap.class.php:2820 +#: ../../include/functions_events.php:68 ../../include/functions_events.php:102 +#: ../../include/functions_events.php:172 +#: ../../operation/agentes/status_monitor.php:1416 +#: ../../operation/agentes/status_monitor.php:1422 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:307 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:114 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1749 +#: ../../operation/events/events.php:1805 +#: ../../operation/events/events.php:1860 +msgid "WARNING" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1031 +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/include/functions_services.php:2727 +#: ../../enterprise/include/functions_services.php:2734 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:2580 +#: ../../include/functions_modules.php:3520 ../../include/functions_ui.php:3623 +#: ../../include/functions_ui.php:3701 ../../include/class/Tree.class.php:594 +#: ../../include/functions_events.php:71 ../../include/functions_events.php:115 +#: ../../include/functions_events.php:175 +#: ../../operation/agentes/status_monitor.php:1430 +#: ../../operation/agentes/status_monitor.php:1436 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:120 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1716 +#: ../../operation/events/events.php:1824 +#: ../../operation/events/events.php:1835 +msgid "UNKNOWN" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1043 +msgid "CPU Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1053 +msgid "Memory Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1063 +msgid "Disk I/O Rate" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1073 +msgid "Network Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1172 +msgid "Settings updated " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1174 +msgid "No changes in settings " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +msgid "CPU usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1183 +#: ../../enterprise/extensions/vmware/vmware_view.php:1189 +#: ../../enterprise/extensions/vmware/vmware_view.php:1195 +#: ../../enterprise/extensions/vmware/vmware_view.php:1201 +msgid "Force minimum value" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +#: ../../enterprise/extensions/vmware/vmware_view.php:1203 +msgid "Force maximum value" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +msgid "Memory usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +msgid "Provisioning Usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +msgid "Network usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1211 +msgid "Map items" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1212 +msgid "Show datastores" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1214 +msgid "Show ESXis" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +msgid "Show VMs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1218 +msgid "Font size (px)" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1220 +msgid "Node radius (px)" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1225 +msgid "" +"Looking for VMware configuration? You can configure several tasks using " +"Discovery Applications." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1226 +#: ../../enterprise/extensions/vmware/vmware_view.php:1457 +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "this link" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1233 +msgid "Graph settings" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1238 +msgid "Map settings" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1278 +msgid "Welcome" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1281 +#: ../../enterprise/extensions/vmware/vmware_view.php:1299 +#: ../../include/lib/Dashboard/Widgets/network_map.php:267 +#: ../../operation/gis_maps/render_view.php:165 +msgid "Map" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1284 +#: ../../enterprise/extensions/vmware/vmware_view.php:1304 +#: ../../godmode/users/configure_user.php:899 +#: ../../mobile/include/functions_web.php:20 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:344 ../../operation/menu.php:355 +msgid "Dashboard" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1288 +msgid "ESX Detail" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1309 +msgid "ESX details" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1314 +msgid "VMware view options" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1435 +msgid "" +"Some ESX Hosts are not up to date, please check VMware plugin configuration." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1437 +msgid "VMware plugin is working." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1446 +msgid "View VMware map" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1447 +msgid "View VMware dashboard" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1448 +msgid "View ESX Host statistics from" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1455 +msgid "There are no VMware information detected in this environment." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1456 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1659 +msgid "Show Datastores" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1662 +msgid "Show ESX" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1665 +msgid "Show VM" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1669 +#: ../../godmode/reporting/visual_console_builder.wizard.php:235 +msgid "Font" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1673 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:124 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:74 +#: ../../operation/agentes/pandora_networkmap.editor.php:281 msgid "Node radius" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:197 -#: ../../include/functions_groups.php:92 ../../godmode/menu.php:212 +#: ../../enterprise/extensions/vmware/vmware_view.php:1683 +msgid "View options" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:343 +msgid "Status: " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "" + +#: ../../enterprise/extensions/backup.php:69 +msgid "Backup" +msgstr "" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../extensions/resource_exportation.php:425 +#: ../../extensions/resource_exportation.php:428 +#: ../../operation/agentes/exportdata.php:372 +msgid "Export" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group.php:26 +msgid "CSV import group" +msgstr "" + +#: ../../enterprise/load_html_extra.php:194 +msgid "Activate license" +msgstr "" + +#: ../../enterprise/load_html_extra.php:195 +msgid "Your request key is:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:197 +#, php-format +msgid "" +"You can activate it manually here or " +"automatically filling the form below:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:202 +msgid "Auth Key:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:210 +#: ../../enterprise/load_html_extra.php:229 +msgid "Online validation" +msgstr "" + +#: ../../enterprise/load_html_extra.php:222 +msgid "ERROR:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:222 +msgid "When connecting to licence server." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:137 +msgid "Update Local Component" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:139 +msgid "Create Local Component" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:158 +#: ../../godmode/modules/manage_network_components_form_common.php:63 +#: ../../godmode/alerts/configure_alert_template.php:959 +msgid "Wizard level" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:186 +msgid "Throw unknown events" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:286 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:375 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +#: ../../godmode/massive/massive_edit_modules.php:524 +msgid "Dynamic Interval" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:288 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../godmode/agentes/module_manager_editor_common.php:628 +msgid "Advanced options Dynamic Threshold" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:290 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +msgid "Dynamic Min. " +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:379 +#: ../../godmode/modules/manage_network_components_form_common.php:163 +#: ../../godmode/massive/massive_edit_modules.php:528 +msgid "Dynamic Max." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:294 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:381 +#: ../../godmode/modules/manage_network_components_form_common.php:165 +#: ../../godmode/massive/massive_edit_modules.php:530 +msgid "Dynamic Two Tailed: " +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:297 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:384 +#: ../../godmode/modules/manage_network_components_form_common.php:168 +#: ../../godmode/agentes/module_manager_editor_common.php:385 +#: ../../godmode/massive/massive_edit_modules.php:533 +#: ../../include/functions_treeview.php:96 +#: ../../include/functions_alerts.php:662 +msgid "Warning status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../enterprise/godmode/modules/configure_local_component.php:333 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:262 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:311 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:388 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:457 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:671 +#: ../../godmode/modules/manage_network_components_form_common.php:169 +#: ../../godmode/modules/manage_network_components_form_common.php:204 +#: ../../godmode/massive/massive_edit_modules.php:537 +#: ../../godmode/massive/massive_edit_modules.php:606 +#: ../../godmode/massive/massive_edit_modules.php:813 +#: ../../godmode/alerts/configure_alert_template.php:764 +#: ../../include/functions_reporting_html.php:4219 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:659 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Min." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/configure_local_component.php:342 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:277 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:326 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:403 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:472 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:673 +#: ../../godmode/modules/manage_network_components_form_common.php:178 +#: ../../godmode/modules/manage_network_components_form_common.php:213 +#: ../../godmode/agentes/module_manager_editor_common.php:400 +#: ../../godmode/agentes/module_manager_editor_common.php:453 +#: ../../godmode/massive/massive_edit_modules.php:552 +#: ../../godmode/massive/massive_edit_modules.php:621 +#: ../../godmode/massive/massive_edit_modules.php:815 +#: ../../godmode/alerts/configure_alert_template.php:775 +#: ../../include/functions_reporting_html.php:4220 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:658 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Max." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:316 +#: ../../enterprise/godmode/modules/configure_local_component.php:351 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:292 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:341 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:418 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:487 +#: ../../godmode/modules/manage_network_components_form_common.php:187 +#: ../../godmode/modules/manage_network_components_form_common.php:222 +#: ../../godmode/agentes/module_manager_editor_common.php:416 +#: ../../godmode/agentes/module_manager_editor_common.php:469 +#: ../../godmode/massive/massive_edit_modules.php:567 +#: ../../godmode/massive/massive_edit_modules.php:636 +#: ../../include/functions_treeview.php:90 +#: ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:332 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:453 +#: ../../godmode/modules/manage_network_components_form_common.php:203 +#: ../../godmode/agentes/module_manager_editor_common.php:438 +#: ../../godmode/massive/massive_edit_modules.php:602 +#: ../../include/functions_treeview.php:108 +#: ../../include/functions_alerts.php:663 +msgid "Critical status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:217 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../godmode/modules/manage_network_components_form_common.php:234 +#: ../../godmode/agentes/module_manager_editor_common.php:710 +#: ../../godmode/massive/massive_edit_modules.php:858 +msgid "FF threshold" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:366 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:220 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:784 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:712 +#: ../../godmode/massive/massive_edit_modules.php:922 +msgid "Keep counters" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:374 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:237 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:728 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:743 +#: ../../godmode/modules/manage_network_components_form_common.php:251 +#: ../../godmode/agentes/module_manager_editor_common.php:729 +#: ../../godmode/massive/massive_edit_modules.php:866 +#: ../../godmode/massive/massive_edit_modules.php:881 +msgid "All state changing" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:389 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:727 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../godmode/modules/manage_network_components_form_common.php:267 +#: ../../godmode/agentes/module_manager_editor_common.php:751 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/massive/massive_edit_modules.php:891 +msgid "Each state changing" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:390 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:260 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../godmode/modules/manage_network_components_form_common.php:268 +#: ../../godmode/agentes/module_manager_editor_common.php:752 +#: ../../godmode/massive/massive_edit_modules.php:892 +msgid "To normal" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:399 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:764 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:766 +#: ../../godmode/massive/massive_edit_modules.php:902 +msgid "To warning" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:408 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:288 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:774 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/massive/massive_edit_modules.php:912 +msgid "To critical" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:419 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:1966 +#: ../../godmode/modules/manage_network_components_form_common.php:296 +#: ../../godmode/agentes/module_manager_editor_common.php:487 +#: ../../godmode/massive/massive_edit_modules.php:970 +#: ../../include/functions_reporting.php:3150 +msgid "Historical data" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:422 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../godmode/agentes/module_manager_editor_common.php:810 +#: ../../godmode/massive/massive_edit_modules.php:956 +msgid "FF timeout" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:430 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../godmode/massive/massive_edit_modules.php:966 +msgid "" +"Timeout in secs from start of flip flop counting. If this value is exceeded, " +"FF counter is reset. Set to 0 for no timeout." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +msgid "This value can be set only in the async modules." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:433 +#: ../../enterprise/include/functions_reporting_csv.php:1002 +#: ../../godmode/modules/manage_network_components_form_common.php:299 +#: ../../godmode/agentes/module_manager_editor_common.php:605 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:474 +#: ../../include/functions_reports.php:727 +#: ../../include/functions_reporting.php:4850 +msgid "Min. Value" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:433 +#: ../../godmode/modules/manage_network_components_form_common.php:300 +msgid "Any value below this number is discarted" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:438 +#: ../../enterprise/include/functions_reporting_csv.php:1057 +#: ../../godmode/modules/manage_network_components_form_common.php:301 +#: ../../godmode/agentes/module_manager_editor_common.php:609 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:486 +#: ../../include/functions_reports.php:723 +#: ../../include/functions_reporting.php:4846 +msgid "Max. Value" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:438 +#: ../../godmode/modules/manage_network_components_form_common.php:302 +msgid "Any value over this number is discarted" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:445 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:559 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:590 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:472 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load a basic structure on data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +msgid "Check the correct structure of the data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:478 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +msgid "First line must be \"module_begin\"" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:479 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +msgid "Data configuration is empty" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:480 +#: ../../enterprise/godmode/modules/configure_local_component.php:484 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +msgid "Last line must be \"module_end\"" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:481 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +msgid "" +"Name is missed. Please add a line with \"module_name yourmodulename\" to " +"data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:482 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to " +"data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:483 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +msgid "Type is wrong. Please set a correct type" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:486 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 +msgid "Error in the syntax, please check the data configuration." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:487 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +msgid "Data configuration are built correctly" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/agentes/module_manager_editor_common.php:1009 +#: ../../godmode/massive/massive_edit_modules.php:1020 +msgid "Critical instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/massive/massive_edit_modules.php:1020 +msgid "Instructions when the status is critical" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../godmode/agentes/module_manager_editor_common.php:1014 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Warning instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Instructions when the status is warning" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../godmode/agentes/module_manager_editor_common.php:1018 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "Unknown instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:505 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "Instructions when the status is unknown" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../godmode/modules/manage_network_components_form_common.php:329 +#: ../../godmode/agentes/module_manager_editor_common.php:1059 +#: ../../godmode/massive/massive_edit_modules.php:988 +#: ../../godmode/module_library/module_library_view.php:105 +msgid "Category" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../godmode/modules/manage_network_components_form_common.php:349 +#: ../../godmode/agentes/module_manager_editor_common.php:836 +msgid "Tags available" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:551 +#: ../../godmode/modules/manage_network_components_form_common.php:367 +#: ../../godmode/agentes/module_manager_editor_common.php:926 +msgid "Add tags to module" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:553 +#: ../../godmode/modules/manage_network_components_form_common.php:369 +#: ../../godmode/agentes/module_manager_editor_common.php:928 +msgid "Delete tags to module" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:555 +#: ../../enterprise/godmode/setup/setup_auth.php:169 +#: ../../enterprise/godmode/setup/setup_auth.php:441 +#: ../../enterprise/godmode/setup/setup_auth.php:1171 +#: ../../godmode/modules/manage_network_components_form_common.php:371 +#: ../../godmode/agentes/module_manager_editor_common.php:930 +msgid "Tags selected" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:577 +msgid "Macros" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:613 +#: ../../godmode/servers/plugin.php:485 +#: ../../include/class/ManageNetScanScripts.class.php:640 +msgid "Default value" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:629 +#: ../../godmode/servers/plugin.php:524 +#: ../../include/class/ManageNetScanScripts.class.php:728 +msgid "Add macro" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:637 +#: ../../godmode/servers/plugin.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:746 +msgid "Delete macro" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:882 +#: ../../godmode/modules/manage_network_components_form_common.php:634 +#: ../../godmode/agentes/module_manager_editor_common.php:1826 +msgid "Normal Status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:883 +#: ../../godmode/modules/manage_network_components_form_common.php:635 +#: ../../godmode/agentes/module_manager_editor_common.php:1827 +msgid "Warning Status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:884 +#: ../../godmode/modules/manage_network_components_form_common.php:636 +#: ../../godmode/agentes/module_manager_editor_common.php:1828 +msgid "Critical Status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:886 +#: ../../godmode/modules/manage_network_components_form_common.php:638 +#: ../../godmode/agentes/module_manager_editor_common.php:1830 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:887 +#: ../../godmode/modules/manage_network_components_form_common.php:639 +#: ../../godmode/agentes/module_manager_editor_common.php:1831 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:35 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:73 +msgid "" +"This console is not manager of this environment,\n" +" please manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:120 +msgid "Successfully created inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:123 +#: ../../enterprise/include/functions_enterprise_api.php:4583 +msgid "Error creating inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:140 +#: ../../enterprise/godmode/agentes/inventory_manager.php:125 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 +msgid "Successfully updated inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../enterprise/godmode/agentes/inventory_manager.php:127 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/include/functions_enterprise_api.php:4630 +msgid "Error updating inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:171 +#: ../../enterprise/godmode/agentes/inventory_manager.php:97 +msgid "Successfully deleted inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:174 +#: ../../enterprise/godmode/agentes/inventory_manager.php:99 +#: ../../enterprise/include/functions_enterprise_api.php:4672 +msgid "Error deleting inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:207 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:240 +#: ../../enterprise/godmode/modules/local_components.php:388 +#: ../../godmode/modules/manage_nc_groups.php:184 +#: ../../godmode/modules/manage_network_components.php:446 +#: ../../godmode/modules/manage_network_templates.php:102 +msgid "Successfully multiple deleted" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:208 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:241 +#: ../../enterprise/godmode/modules/local_components.php:389 +#: ../../godmode/modules/manage_nc_groups.php:185 +#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_templates.php:103 +msgid "Not deleted. Error deleting multiple data" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:267 +msgid "Successfully created inventory module in the node" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:270 +msgid "Error creating inventory module in the node" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:372 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:381 +msgid "No inventory modules defined" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:402 +msgid "Local module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:404 +msgid "Remote/Local" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:420 +msgid "Deploy to the nodes" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:464 +msgid "" +"The configurations of inventory modules from the nodes have been unified. \n" +"\t\tFrom this point on, changes to the inventory scripts must be made " +"through this screen." +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:107 +#: ../../godmode/modules/manage_network_components.php:169 +#: ../../godmode/alerts/configure_alert_template.php:149 +#, php-format +msgid "Successfully created from %s" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:123 +msgid "Local component management" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:279 +#: ../../godmode/modules/manage_network_components.php:309 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:347 +#: ../../godmode/modules/manage_network_components.php:390 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:488 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2763 +#: ../../godmode/modules/manage_network_components.php:580 +msgid "Free Search" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:489 +msgid "Search by name, description or data, list matches." +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:612 +#: ../../enterprise/godmode/policies/policy_modules.php:1530 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:453 +#: ../../godmode/modules/manage_network_components.php:737 +#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/alerts/alert_templates.php:402 +msgid "Duplicate" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:162 +msgid "Inventory module error" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../include/class/ModuleTemplates.class.php:1113 +msgid "Format" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../include/ajax/double_auth.ajax.php:145 +#: ../../include/ajax/double_auth.ajax.php:283 +msgid "Code" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55 +msgid "Cannot delete rule from autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61 +msgid "Agent Autoconfiguration Information" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62 +msgid "" +"You must click the Create or Update buttom for a correct configuration!!!" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99 +msgid "Cannot create unnamed autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126 +msgid "Cannot update autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:56 +msgid "Agent autoconfiguration list" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 +#: ../../operation/search_agents.php:115 +#: ../../operation/agentes/ver_agente.php:1149 +#: ../../operation/servers/recon_view.php:47 +msgid "Manage" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:313 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#: ../../enterprise/godmode/agentes/collections.php:57 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:18 +#: ../../enterprise/include/functions_enterprise_api.php:3044 +#: ../../enterprise/include/functions_enterprise_api.php:5643 +#: ../../include/functions_api.php:153 +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console (Metaconsole)." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:322 +msgid "Autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:364 +#: ../../include/class/CredentialStore.class.php:883 +msgid "Extra" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:392 +msgid "Add rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +msgid "Rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:419 +msgid "New group" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:378 +msgid "Launch custom event" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:452 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +msgid "Launch alert action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:453 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:511 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:300 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:438 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:507 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:538 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:606 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:629 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:685 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:710 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:726 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:787 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:847 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:875 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +#: ../../godmode/massive/massive_edit_agents.php:543 +#: ../../godmode/massive/massive_edit_agents.php:551 +#: ../../godmode/massive/massive_edit_agents.php:555 +#: ../../godmode/massive/massive_edit_agents.php:563 +#: ../../godmode/massive/massive_edit_agents.php:587 +#: ../../godmode/massive/massive_edit_agents.php:634 +#: ../../godmode/massive/massive_edit_agents.php:641 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/massive/massive_edit_agents.php:686 +#: ../../godmode/massive/massive_edit_agents.php:695 +#: ../../godmode/massive/massive_edit_agents.php:723 +#: ../../godmode/massive/massive_edit_agents.php:790 +#: ../../godmode/massive/massive_edit_modules.php:587 +#: ../../godmode/massive/massive_edit_modules.php:656 +#: ../../godmode/massive/massive_edit_modules.php:687 +#: ../../godmode/massive/massive_edit_modules.php:696 +#: ../../godmode/massive/massive_edit_modules.php:755 +#: ../../godmode/massive/massive_edit_modules.php:773 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../godmode/massive/massive_edit_modules.php:807 +#: ../../godmode/massive/massive_edit_modules.php:827 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/massive/massive_edit_modules.php:925 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:989 +#: ../../godmode/massive/massive_edit_modules.php:995 +#: ../../godmode/massive/massive_edit_modules.php:1008 +#: ../../godmode/massive/massive_edit_modules.php:1036 +#: ../../include/functions_html.php:1168 ../../include/functions_html.php:1269 +#: ../../include/functions_html.php:1401 +msgid "No change" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:515 +#: ../../godmode/agentes/agent_manager.php:425 +#: ../../include/functions_events.php:4616 +#: ../../operation/agentes/estado_generalagente.php:344 +msgid "Secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:561 +#: ../../godmode/agentes/agent_manager.php:475 +msgid "Add secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:565 +#: ../../godmode/agentes/agent_manager.php:486 +msgid "Remove secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:600 +#: ../../enterprise/godmode/policies/configure_policy.php:47 +msgid "Add policy" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:615 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:350 +msgid "Op" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:632 +msgid "Extra configuration block" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:634 +msgid "" +"Put here any extra configuration you want to be applied to any new agent " +"matching previously defined rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:667 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:698 +msgid "Extra actions" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:688 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:991 +msgid "Add extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:856 +msgid "Add new rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:858 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:168 +msgid "Update rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1078 +msgid "Update extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:42 +msgid "Cannot delete autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "There are no defined autoconfigurations" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124 +msgid "Add new configuration definition" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:37 +#: ../../enterprise/operation/agentes/tag_view.php:275 +#: ../../operation/agentes/status_monitor.php:529 +msgid "Web server module" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:150 +msgid "Requests" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:153 +msgid "Agent browser id" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:159 +msgid "HTTP auth (login)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:162 +msgid "HTTP auth (password)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:176 +msgid "Proxy auth (login)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:180 +msgid "Proxy auth (pass)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:187 +msgid "Proxy auth (server)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:191 +msgid "Proxy auth (realm)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:203 +msgid "There isn't get or post" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.agents.php:38 +msgid "Show Agent >" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.agents.php:116 +msgid "This collection has not been added to any agents" +msgstr "" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:33 +#: ../../enterprise/godmode/policies/policies.php:561 +#: ../../enterprise/include/functions_reporting_csv.php:661 +#: ../../enterprise/operation/agentes/ver_agente.php:184 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 +#: ../../enterprise/operation/menu.php:19 +#: ../../enterprise/operation/inventory/inventory.php:126 +#: ../../godmode/agentes/configurar_agente.php:611 +#: ../../include/functions_reports.php:841 +#: ../../include/functions_reports.php:842 +#: ../../include/functions_reports.php:846 +#: ../../include/functions_reporting.php:2220 +msgid "Inventory" +msgstr "" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:50 +#: ../../enterprise/godmode/policies/policy.php:72 +#: ../../enterprise/include/functions_policies.php:3808 +#: ../../godmode/agentes/configurar_agente.php:617 +msgid "Agent plugins" +msgstr "" + +#: ../../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 "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:83 +msgid "Succesful add the collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:84 +msgid "Unsuccesful add the collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:131 +#: ../../enterprise/godmode/agentes/collection_manager.php:246 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:91 +msgid "Show files" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:191 +#: ../../enterprise/operation/agentes/agent_inventory.php:254 +#: ../../enterprise/operation/log/log_viewer.php:865 +#: ../../enterprise/operation/log/log_viewer.php:873 +#: ../../enterprise/operation/inventory/inventory.php:282 +#: ../../godmode/reporting/reporting_builder.php:1120 +#: ../../include/functions_reporting.php:2272 +msgid "No data found." +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:197 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:839 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:547 +#: ../../operation/agentes/status_monitor.php:1134 +msgid "P." +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:202 +#: ../../enterprise/operation/agentes/policy_view.php:140 +#: ../../enterprise/operation/agentes/collection_view.php:63 +msgid "Dir" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/policies/policy_collections.php:153 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:158 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:146 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../godmode/alerts/alert_special_days.php:507 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../godmode/events/event_edit_filter.php:556 +#: ../../operation/events/events_list.php:617 +#: ../../operation/events/events_list.php:689 +#: ../../operation/events/events.php:544 ../../operation/events/events.php:616 +msgid "Remove" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:164 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:846 +#: ../../enterprise/godmode/services/services.elements.php:620 +#: ../../enterprise/godmode/services/services.elements.php:649 +#: ../../enterprise/godmode/services/services.elements.php:657 +#: ../../enterprise/godmode/services/services.elements.php:726 +#: ../../enterprise/include/functions_visual_map_editor.php:20 +#: ../../enterprise/include/functions_visual_map_editor.php:32 +#: ../../enterprise/include/functions_visual_map_editor.php:45 +#: ../../enterprise/include/functions_visual_map_editor.php:76 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:286 +#: ../../enterprise/include/functions_reporting.php:5358 +#: ../../enterprise/include/functions_services.php:2531 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../include/lib/Dashboard/Widgets/service_map.php:240 +msgid "Service" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic arithmetic" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:30 +msgid "Synthetic average" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 +msgid "Fixed value" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:117 +msgid "Add module to operation as add" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:118 +msgid "Add module to operations as deduct" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operations as multiplicate " +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Add module to operations as divide" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +msgid "Remove selected modules" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:126 +msgid "Add module to average operation" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:127 +msgid "Remove selected modules from operations stack" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:134 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:395 +#: ../../enterprise/include/functions_tasklist.php:173 +#: ../../godmode/massive/massive_copy_modules.php:169 +#: ../../godmode/alerts/alert_list.list.php:460 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:447 +msgid "Operations" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +msgid "Move down selected modules" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +msgid "Move up selected modules" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:173 +msgid "Select Service" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 +msgid "Netflow filter" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:195 +msgid "Select filter" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:81 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:119 +msgid "Successfully added inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:83 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:122 +msgid "Error adding inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:86 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:125 +msgid "The inventory of the module already exists" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:107 +msgid "Successfully forced inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:109 +msgid "Error forcing inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:341 +msgid "Error: The collection directory does not exist." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:84 +msgid "Files in " +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in updated succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in cannot be updated" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 +msgid "Plug-in deleted succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 +msgid "Plug-in cannot be deleted" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:67 +msgid "Plug-in added succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:68 +msgid "Plug-in cannot be added" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in " +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in cannot be " +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:101 +#: ../../enterprise/godmode/policies/policy_plugins.php:85 +msgid "New plug-in" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:119 +#: ../../enterprise/godmode/policies/policies.php:557 +#: ../../godmode/menu.php:279 +msgid "Plugins" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:123 +#: ../../enterprise/godmode/agentes/plugins_manager.php:155 +#: ../../enterprise/godmode/policies/policy_alerts.php:656 +#: ../../enterprise/godmode/alerts/alert_events_list.php:798 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../godmode/extensions.php:260 ../../godmode/users/user_list.php:537 +#: ../../godmode/alerts/alert_list.list.php:937 +#: ../../operation/users/user_edit_notifications.php:63 +msgid "Enable" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:123 +#: ../../enterprise/godmode/agentes/plugins_manager.php:161 +#: ../../enterprise/godmode/policies/policy_alerts.php:648 +#: ../../enterprise/godmode/alerts/alert_events_list.php:790 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../godmode/extensions.php:262 ../../godmode/users/user_list.php:535 +#: ../../godmode/alerts/alert_list.list.php:928 +#: ../../include/functions.php:3191 +msgid "Disable" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:99 +#: ../../godmode/agentes/module_manager_editor_common.php:116 +msgid "Manual setup" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:710 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:646 +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "No component was found" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:114 +msgid "Error: The conf file of agent is not readble." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:118 +msgid "Error: The conf file of agent is not writable." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:171 +#: ../../enterprise/godmode/policies/policy_modules.php:383 +msgid "Add module" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 +msgid "No module was found" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:241 +msgid "Delete remote conf agent files" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +#: ../../godmode/agentes/agent_manager.php:548 +msgid "Delete remote configuration file" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +msgid "" +"Delete this conf file implies that for restore you must reactive remote " +"config in the local agent." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:97 +#: ../../godmode/agentes/module_manager_editor_common.php:213 +msgid "Delete module" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:124 +msgid "Run performance tests" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:135 +msgid "Target web site" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:137 +msgid "" +"The url specified in this field is mandatory to retrieve performance stats." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:151 +msgid "target web site (http://...)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:158 +msgid "Execute tests from" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:174 +msgid "Browser" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:176 +msgid "" +"Support for IE and Edge browsers is experimental. Tests might not work as " +"expected." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:334 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:347 +msgid "Add file" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:354 +msgid "Upload your selenium test in html format" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:382 +#: ../../godmode/groups/configure_group.php:192 +#: ../../godmode/agentes/agent_manager.php:193 +#: ../../godmode/agentes/module_manager_editor_common.php:522 +#: ../../godmode/massive/massive_edit_agents.php:629 +msgid "Custom ID" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:438 +#: ../../godmode/agentes/module_manager.php:834 +msgid "" +"The policy modules of data type will only update their intervals when policy " +"is applied." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:464 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../godmode/agentes/module_manager_editor_common.php:795 +#: ../../godmode/massive/massive_edit_modules.php:942 +msgid "FF interval" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:805 +#: ../../godmode/massive/massive_edit_modules.php:952 +msgid "Module execution flip flop time interval (in secs)." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:484 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 +#: ../../godmode/massive/massive_edit_modules.php:1063 +msgid "Retries" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:499 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:902 +#: ../../godmode/massive/massive_edit_modules.php:1065 +msgid "Number of retries that the module will attempt to run." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:558 +#: ../../enterprise/godmode/policies/policy_modules.php:408 +#: ../../godmode/agentes/module_manager_editor.php:723 +#: ../../godmode/agentes/module_manager_editor_common.php:1142 +msgid "Custom macros" +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:77 +#: ../../operation/agentes/pandora_networkmap.editor.php:201 +#: ../../operation/agentes/pandora_networkmap.php:649 +#: ../../operation/agentes/pandora_networkmap.view.php:768 +msgid "Networkmap" +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:85 +#: ../../operation/agentes/pandora_networkmap.editor.php:241 +#: ../../operation/agentes/pandora_networkmap.view.php:774 +msgid "Not found networkmap." +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:145 +#: ../../operation/agentes/pandora_networkmap.editor.php:415 +msgid "Save networkmap" +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:156 +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +msgid "Update networkmap" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:70 +msgid "Success: recreate file" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:72 +msgid "Error: recreate file " +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:87 +#: ../../enterprise/godmode/agentes/collections.php:117 +#: ../../enterprise/godmode/agentes/collections.php:226 +msgid "Collections Management" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:169 +msgid "Manager collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 +msgid "Data Copy" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 +msgid "No selected agents to copy" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 +msgid "No source agent selected" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +msgid "Making copy of configuration file for" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +msgid "Error copying md5 file " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +msgid " md5 file" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid "Copied " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +msgid "Error copying " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid " config file" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:129 +msgid "Remote configuration management" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:335 +msgid "Source group" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:145 +#: ../../operation/agentes/exportdata.php:247 +msgid "Source agent" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:178 +msgid "To agent(s):" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 +msgid "Replicate configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager.php:21 +msgid "Create a new web Server module" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager.php:31 +msgid "Create a new web analysis module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:37 +msgid "" +"Successfully added to delete pending plugins. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:38 +msgid "Cannot be added to delete pending plugins." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:51 +#: ../../enterprise/godmode/policies/policy_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_modules.php:1294 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:111 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:138 +#: ../../enterprise/godmode/policies/policy_collections.php:80 +#: ../../enterprise/godmode/policies/policy_agents.php:118 +#: ../../enterprise/godmode/policies/policy_agents.php:140 +msgid "Successfully reverted deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:52 +#: ../../enterprise/godmode/policies/policy_alerts.php:203 +#: ../../enterprise/godmode/policies/policy_modules.php:1295 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:112 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 +#: ../../enterprise/godmode/policies/policy_collections.php:81 +#: ../../enterprise/godmode/policies/policy_agents.php:119 +#: ../../enterprise/godmode/policies/policy_agents.php:141 +msgid "Could not be reverted" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:154 +msgid "There are no defined plugins" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:67 +#: ../../enterprise/godmode/policies/policy_modules.php:572 +#: ../../enterprise/godmode/policies/policies.php:287 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:61 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:79 +#: ../../enterprise/godmode/policies/policy_collections.php:46 +#: ../../enterprise/godmode/policies/policy_agents.php:105 +#: ../../godmode/agentes/module_manager_editor.php:534 +msgid "This policy is applying and cannot be modified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:136 +#: ../../enterprise/godmode/alerts/alert_events_list.php:292 +#: ../../godmode/massive/massive_standby_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:379 +msgid "Successfully set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:293 +#: ../../godmode/massive/massive_standby_alerts.php:105 +#: ../../godmode/alerts/alert_list.php:380 +msgid "Could not be set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:157 +#: ../../enterprise/godmode/alerts/alert_events_list.php:312 +#: ../../godmode/massive/massive_standby_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:400 +msgid "Successfully set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:158 +#: ../../enterprise/godmode/alerts/alert_events_list.php:313 +#: ../../godmode/massive/massive_standby_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:401 +msgid "Could not be set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " created successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " could not be created" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:198 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:107 +msgid "" +"Successfully added to delete pending alerts. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:155 +msgid "Added action successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:156 +#: ../../enterprise/godmode/policies/policy_agents.php:227 +#: ../../enterprise/godmode/alerts/alert_events_list.php:212 +#: ../../godmode/massive/massive_delete_action_alerts.php:129 +#: ../../godmode/massive/massive_add_alerts.php:141 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../godmode/massive/massive_add_action_alerts.php:99 +#: ../../godmode/massive/massive_add_action_alerts.php:119 +#: ../../godmode/massive/massive_add_action_alerts.php:122 +#: ../../godmode/massive/massive_add_action_alerts.php:125 +#: ../../godmode/alerts/alert_list.php:262 +#: ../../operation/incidents/incident_detail.php:76 +msgid "Could not be added" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:134 +msgid "Deleted action successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:285 +#: ../../enterprise/godmode/policies/policy_alerts.php:492 +#: ../../enterprise/godmode/reporting/visual_console_template.php:89 +#: ../../enterprise/include/functions_tasklist.php:275 +#: ../../enterprise/include/functions_reporting_csv.php:2229 +#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../extensions/agents_alerts.php:266 +#: ../../extensions/agents_alerts.php:586 +#: ../../godmode/alerts/alert_list.list.php:458 +#: ../../godmode/alerts/alert_view.php:72 +#: ../../godmode/alerts/alert_list.builder.php:132 +#: ../../mobile/operation/alerts.php:323 +#: ../../include/functions_reporting_html.php:2401 +#: ../../include/functions_reporting_html.php:2404 +#: ../../include/functions_cron.php:554 +#: ../../include/ajax/alert_list.ajax.php:279 +#: ../../include/ajax/alert_list.ajax.php:304 +#: ../../include/functions_treeview.php:416 +#: ../../include/functions_treeview.php:457 +#: ../../operation/agentes/alerts_status.php:523 +#: ../../operation/agentes/alerts_status.php:558 +#: ../../operation/agentes/alerts_status.php:593 +#: ../../operation/agentes/alerts_status.php:625 +#: ../../operation/search_alerts.php:35 +#: ../../operation/servers/recon_view.php:106 +msgid "Template" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:362 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:242 +#: ../../enterprise/godmode/alerts/alert_events_list.php:637 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2299 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3252 +#: ../../godmode/alerts/alert_list.list.php:604 +#: ../../godmode/alerts/alert_view.php:198 +#: ../../include/functions_alerts.php:666 +msgid "Always" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:364 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:244 +#: ../../enterprise/godmode/alerts/alert_events_list.php:639 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3254 +#: ../../godmode/alerts/alert_list.list.php:606 +#: ../../include/class/Diagnostics.class.php:1172 +#: ../../include/class/Diagnostics.class.php:1176 +msgid "On" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:368 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:248 +#: ../../enterprise/godmode/alerts/alert_events_list.php:643 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3258 +#: ../../godmode/alerts/alert_list.list.php:610 +msgid "Until" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:464 +#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:280 +#: ../../enterprise/godmode/policies/policy_agents.php:871 +#: ../../enterprise/godmode/policies/policy_agents.php:1222 +msgid "Undo deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:531 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:322 +#: ../../enterprise/godmode/alerts/alert_events_list.php:690 +#: ../../extensions/agents_alerts.php:249 +#: ../../godmode/massive/massive_add_action_alerts.php:214 +#: ../../godmode/alerts/alert_list.list.php:722 +#: ../../godmode/alerts/alert_list.builder.php:119 +#: ../../include/ajax/alert_list.ajax.php:493 +msgid "Number of alerts match from" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:548 +msgid "There is not alerts configured in this policy." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:576 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:97 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:109 +#: ../../godmode/massive/massive_standby_alerts.php:178 +#: ../../godmode/massive/massive_add_alerts.php:249 +#: ../../godmode/massive/massive_enable_disable_alerts.php:166 +#: ../../godmode/massive/massive_delete_alerts.php:241 +msgid "Alert template" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:587 +msgid "Policy module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:665 +#: ../../enterprise/godmode/alerts/alert_events_list.php:807 +#: ../../godmode/alerts/alert_list.list.php:946 +msgid "Set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:674 +#: ../../enterprise/godmode/alerts/alert_events_list.php:816 +#: ../../godmode/alerts/alert_list.list.php:955 +msgid "Set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:688 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:272 +#: ../../enterprise/godmode/alerts/alert_events_list.php:671 +#: ../../enterprise/godmode/alerts/alert_events_list.php:673 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:460 +#: ../../godmode/snmpconsole/snmp_alert.php:1329 +#: ../../godmode/alerts/alert_list.list.php:828 +#: ../../godmode/alerts/alert_list.list.php:832 +#: ../../godmode/alerts/alert_list.list.php:985 +msgid "Add action" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/servers/HA_cluster.php:52 +#: ../../enterprise/include/functions_policies.php:3711 +#: ../../godmode/agentes/configurar_agente.php:380 +#: ../../godmode/agentes/configurar_agente.php:600 ../../godmode/menu.php:292 +#: ../../godmode/menu.php:299 +#: ../../godmode/module_library/module_library_view.php:45 +#: ../../operation/agentes/estado_agente.php:179 +#: ../../operation/gis_maps/render_view.php:160 +msgid "Setup" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:98 +msgid "Force Apply" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:98 +msgid "" +"Force the creation of modules even if the software agent does not have " +"remote configuration" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:295 +msgid "" +"If you change this description, you must change into the text of Data " +"configuration." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:368 +msgid "Invalid module type." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:521 +msgid "Could not be added module(s). You must select a policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:554 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:560 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:864 +msgid "Could not be added module." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1243 +msgid "" +"The module type in Data configuration is empty, take from combo box of form." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1247 +msgid "" +"The module name in Data configuration is empty, take from text field of form." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1277 +#: ../../enterprise/godmode/policies/policy_modules.php:1290 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:132 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1281 +msgid "Could not be added to deleted all modules." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1344 +#: ../../godmode/agentes/configurar_agente.php:2122 +#, php-format +msgid "copy of %s" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1362 +#: ../../godmode/agentes/configurar_agente.php:2136 +#, php-format +msgid "copy of %s (%d)" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1386 +msgid "Successfully duplicate the module." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1387 +#: ../../operation/agentes/pandora_networkmap.php:525 +msgid "Could not be duplicated" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1474 +msgid "Local component" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1489 +#: ../../enterprise/godmode/policies/policy_modules.php:1490 +msgid "Disabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1496 +#: ../../enterprise/godmode/policies/policy_modules.php:1497 +msgid "Enabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1506 +#: ../../enterprise/godmode/policies/policy_modules.php:1507 +#: ../../godmode/agentes/module_manager.php:862 +#: ../../godmode/agentes/module_manager.php:863 +msgid "Enable module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1515 +#: ../../enterprise/godmode/policies/policy_modules.php:1516 +#: ../../godmode/agentes/module_manager.php:871 +#: ../../godmode/agentes/module_manager.php:872 +msgid "Disable module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +msgid "There are no defined modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1610 +#: ../../godmode/massive/massive_copy_modules.php:172 +msgid "Copy modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1611 +msgid "Copy selected modules to policy: " +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1673 +#: ../../godmode/agentes/module_manager_editor.php:795 +msgid "No module name provided" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1674 +#: ../../godmode/agentes/module_manager_editor.php:805 +msgid "No target IP provided" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1675 +#: ../../godmode/agentes/module_manager_editor.php:815 +msgid "No SNMP OID provided" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1814 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1834 +msgid "Please select any module to copy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:876 +#: ../../enterprise/include/functions_massive.php:15 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:224 +#: ../../godmode/massive/massive_delete_action_alerts.php:129 +#: ../../godmode/massive/massive_add_action_alerts.php:122 +#: ../../godmode/massive/massive_edit_modules.php:1865 +#: ../../godmode/reporting/visual_console_builder.php:579 +#: ../../include/functions_visual_map.php:2674 +msgid "No modules selected" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:416 +msgid "Successfully modules created" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:431 +msgid "Some required fields are missed" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:431 +msgid "name" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:401 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 +msgid "Processing error" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:433 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:475 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:722 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:600 +#: ../../extensions/realtime_graphs.php:158 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:439 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:469 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:727 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:749 +#: ../../include/class/AgentWizard.class.php:218 +#: ../../include/functions_snmp_browser.php:651 +msgid "Target IP" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:436 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:725 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:906 +#: ../../enterprise/godmode/setup/setup_history.php:51 +#: ../../enterprise/godmode/servers/manage_export_form.php:121 +#: ../../extensions/quick_shell.php:145 +#: ../../godmode/modules/manage_network_components_form_network.php:53 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:472 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:730 +#: ../../godmode/agentes/module_manager_editor_network.php:126 +#: ../../godmode/massive/massive_edit_modules.php:1073 +#: ../../godmode/servers/modificar_server.php:82 +#: ../../include/functions_config.php:1422 +#: ../../include/class/AgentWizard.class.php:230 +msgid "Port" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:454 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:526 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:743 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:484 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:479 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../include/class/AgentWizard.class.php:155 +#: ../../include/functions_snmp_browser.php:699 +msgid "Local console" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:470 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:542 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:759 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:500 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:500 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:758 +#: ../../godmode/events/event_responses.editor.php:174 +#: ../../include/class/AgentWizard.class.php:295 +msgid "Server to execute command" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:519 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:808 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:572 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:830 +#: ../../include/class/AgentWizard.class.php:152 +msgid "SNMP Walk" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:523 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:576 +msgid "Unable to do SNMP walk" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:569 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:796 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:992 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:737 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:640 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1015 +msgid "Create modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:108 +msgid "Operations successfully deleted from the queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:109 +msgid "Operations cannot be deleted from the queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:185 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:220 +msgid "Update pending" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:222 +msgid "Update pending agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:235 +#: ../../enterprise/godmode/policies/policy_agents.php:838 +#: ../../enterprise/godmode/policies/policy_agents.php:1180 +msgid "Add to apply queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:238 +msgid "Add to apply queue only for database" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:245 +msgid "Update pending groups" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:252 +msgid "Link pending modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:257 +msgid "Will be linked in the next policy application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:260 +msgid "Unlink pending modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:265 +msgid "Will be unlinked in the next policy application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:270 +msgid "Delete pending" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:272 +msgid "Delete pending agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:277 +#: ../../enterprise/godmode/policies/policy_queue.php:285 +#: ../../enterprise/godmode/policies/policy_queue.php:293 +#: ../../enterprise/godmode/policies/policy_queue.php:301 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:317 +#: ../../enterprise/godmode/policies/policy_queue.php:325 +#: ../../enterprise/godmode/policies/policy_queue.php:333 +msgid "Will be deleted in the next policy application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:280 +msgid "Delete pending groups" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:288 +msgid "Delete pending modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:296 +msgid "Delete pending inventory modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:304 +msgid "Delete pending alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:312 +msgid "Delete pending external alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:320 +msgid "Delete pending file collections" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:328 +msgid "Delete pending plugins" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:339 +msgid "Advices" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:342 +msgid "Queue summary" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:342 +#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../godmode/users/user_list.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:1139 +#: ../../godmode/alerts/alert_list.list.php:167 +#: ../../operation/agentes/alerts_status.php:475 +#: ../../operation/agentes/graphs.php:262 +#: ../../operation/snmpconsole/snmp_view.php:682 +#: ../../operation/snmpconsole/snmp_view.php:764 +msgid "Toggle filter(s)" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:447 +msgid "Queue filter" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:555 +msgid "Empty queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:572 +msgid "This operation could take a long time" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:583 +msgid "Apply all queues" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:591 +msgid "Clear all items" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:194 +msgid "Policy name already exists" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:262 +msgid "Policies Management" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 +#: ../../godmode/alerts/alert_actions.php:109 +#: ../../godmode/alerts/alert_commands.php:401 +#: ../../godmode/reporting/map_builder.php:267 +#: ../../godmode/reporting/map_builder.php:274 +#: ../../include/functions_agents.php:941 +msgid "Successfully copied" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:274 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:333 +#: ../../godmode/alerts/alert_actions.php:110 +#: ../../godmode/alerts/alert_commands.php:402 +msgid "Could not be copied" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:281 +msgid "All policy agents added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:282 +msgid "Policy agents cannot be added to the delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:296 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:27 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:25 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:27 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:27 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:28 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:25 +#: ../../godmode/massive/massive_operations.php:288 +msgid "" +"This node is configured with centralized mode. All policies information is " +"read only. Go to metaconsole to manage it." +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:356 +msgid "a" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:523 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/include/functions_policies.php:3776 +msgid "Linking" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:536 +msgid "Agent Wizard" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:545 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:41 +#: ../../enterprise/include/functions_policies.php:3768 +msgid "External alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:549 +#: ../../enterprise/godmode/policies/policy.php:50 +#: ../../enterprise/include/functions_policies.php:3792 +msgid "Queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:611 +msgid "There must be no agents to delete the policy." +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:614 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:622 +msgid "Deleting all policy agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:625 +msgid "All the policy agents will be deleted" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:634 +msgid "Delete all agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:234 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:200 +#, php-format +msgid "Free space on %s" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:383 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:353 +#, php-format +msgid "%s service modules created succesfully" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:390 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:360 +#, php-format +msgid "Error creating %s service modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:399 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 +#, php-format +msgid "%s process modules created succesfully" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:406 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:376 +#, php-format +msgid "Error creating %s process modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:415 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:385 +#, php-format +msgid "%s disk space modules created succesfully" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:422 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:392 +#, php-format +msgid "Error creating %s disk space modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:431 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:401 +#, php-format +msgid "%s modules created from components succesfully" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:438 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:408 +#, php-format +msgid "Error creating %s modules from components" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:445 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:694 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 +#, php-format +msgid "%s modules already exist" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:485 +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:449 +#: ../../include/class/AgentWizard.class.php:258 +msgid "Namespace" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:495 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:692 +#: ../../enterprise/godmode/setup/setup_module_library.php:46 +#: ../../enterprise/include/functions_ui.php:102 +#: ../../extensions/quick_shell.php:138 +#: ../../godmode/modules/manage_network_components_form_wmi.php:47 +#: ../../godmode/agentes/module_manager_editor_wmi.php:63 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:459 +#: ../../godmode/massive/massive_edit_modules.php:834 +#: ../../include/class/CredentialStore.class.php:881 +#: ../../include/class/AgentWizard.class.php:270 +msgid "Username" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:562 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:517 +msgid "WMI Explore" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:571 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:525 +msgid "Unable to do WMI explorer" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:619 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:841 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:554 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:864 +#: ../../operation/agentes/ver_agente.php:1314 +msgid "Processes" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:620 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:842 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:555 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 +msgid "Free space on disk" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:621 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:556 +msgid "WMI components" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:623 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:846 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:558 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:869 +msgid "Wizard mode" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:643 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:578 +#: ../../godmode/agentes/planned_downtime.editor.php:938 +msgid "Filter by group" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:738 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:745 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:752 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:759 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:970 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:972 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:974 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:976 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:979 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:675 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:683 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:691 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:699 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:993 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:995 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:999 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 +msgid "Add to modules list" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:767 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:982 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:708 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1005 +msgid "Remove from modules list" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:852 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:868 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:884 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:900 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1055 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1071 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1087 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1103 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1119 +#: ../../enterprise/include/functions_events.php:198 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:793 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:809 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:825 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:841 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1080 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1096 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1112 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1128 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1144 +#: ../../godmode/events/event_edit_filter.php:404 +#: ../../mobile/operation/events.php:528 +#: ../../include/functions_events.php:4547 +#: ../../operation/events/events_list.php:968 +#: ../../operation/events/events.php:946 +msgid "Repeated" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:862 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1065 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:803 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1090 +#: ../../godmode/reporting/visual_console_builder.wizard.php:276 +#: ../../include/functions_visual_map_editor.php:544 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:370 +msgid "Process" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:922 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1144 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:863 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1169 +msgid "Modules list is empty" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:87 +msgid "Error: Update linking modules to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:89 +msgid "Success: Update linking modules to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:99 +msgid "Free text for filter (*)" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:100 +msgid "Free text for filter" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:110 +msgid "Cannot retrieve unlinked modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:112 +msgid "There are no defined modules unlinked" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:114 +msgid "List of modules unlinked" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "The SNMP remote plugin doesnt seem to be installed" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "It is necessary to use some features" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 +msgid "" +"Please, install the SNMP remote plugin (The name of the plugin must be " +"snmp_remote.pl)" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:283 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:286 +msgid "Remote system doesnt support host SNMP information" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:369 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:371 +msgid "The number of bytes read from this device since boot" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:370 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:372 +msgid "The number of bytes written to this device since boot" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:371 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:373 +msgid "The number of read accesses from this device since boot" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:372 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:374 +msgid "The number of write accesses from this device since boot" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:544 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:548 +#, php-format +msgid "Check if the process %s is running or not" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:611 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:615 +msgid "Disk use information" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:676 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 +#, php-format +msgid "%s modules created succesfully" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:682 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:688 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:691 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:697 +#, php-format +msgid "Error creating %s modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:702 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:711 +msgid "Modules created succesfully" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 +#: ../../enterprise/include/functions_inventory.php:179 +#: ../../enterprise/operation/services/services.treeview_services.php:223 +#: ../../godmode/groups/group_list.php:845 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:604 +#: ../../operation/tree.php:347 ../../operation/network/network_report.php:333 +msgid "No data found" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +msgid "If the device is a network device, try with the SNMP Interfaces wizard" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:840 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 +msgid "Devices" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:843 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:866 +msgid "Temperature sensors" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:844 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:867 +msgid "Other SNMP data" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:886 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:891 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:909 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:914 +msgid "SNMP remote plugin is necessary for this feature" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1049 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1074 +msgid "Device" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1097 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1122 +msgid "Temperature" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:71 +#: ../../godmode/alerts/alert_list.php:172 +msgid "No module specified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:94 +msgid "Created successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +msgid "Duplicated alert" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +msgid "Modules in policy per agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +msgid "There is not external alerts configured in this policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:342 +msgid "Modules in policy agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 +msgid "The complete and exact name of the module must be specified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:370 +msgid "Alert Template" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 +msgid "Module is not selected" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:247 +msgid "There are no defined inventory modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:76 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:204 +#: ../../enterprise/godmode/policies/policy_collections.php:277 +#: ../../enterprise/operation/agentes/policy_view.php:172 +#: ../../enterprise/operation/agentes/collection_view.php:111 +#: ../../enterprise/operation/agentes/collection_view.php:112 +msgid "Outdate" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:221 +msgid "Collections in policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:225 +msgid "Collections to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:296 +msgid "No available collection to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:114 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:136 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:189 +#: ../../enterprise/godmode/policies/policy_agents.php:332 +msgid "Successfully added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:190 +#: ../../enterprise/godmode/policies/policy_agents.php:333 +msgid "Could not be added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:226 +#: ../../enterprise/godmode/alerts/alert_events_list.php:211 +#: ../../godmode/massive/massive_add_alerts.php:140 +#: ../../godmode/massive/massive_add_action_alerts.php:119 +#: ../../godmode/alerts/alert_list.php:261 +#: ../../operation/incidents/incident_detail.php:75 +msgid "Successfully added" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:239 +msgid "Successfully deleted from delete pending agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:240 +msgid "Could not be deleted from delete pending agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:419 +msgid "Apply to" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:470 +#: ../../enterprise/godmode/policies/policy_agents.php:503 +#: ../../enterprise/godmode/policies/policy_agents.php:542 +#: ../../enterprise/godmode/policies/policy_agents.php:687 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:98 +#: ../../godmode/massive/massive_copy_modules.php:96 +#: ../../godmode/massive/massive_copy_modules.php:249 +#: ../../godmode/massive/massive_standby_alerts.php:161 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_delete_modules.php:362 +#: ../../godmode/massive/massive_add_alerts.php:200 +#: ../../godmode/massive/massive_delete_agents.php:126 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_delete_alerts.php:275 +#: ../../godmode/massive/massive_add_action_alerts.php:168 +#: ../../godmode/massive/massive_edit_modules.php:343 +#: ../../include/functions_html.php:837 ../../include/functions_html.php:980 +msgid "Group recursion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:517 +#: ../../enterprise/godmode/policies/policy_agents.php:525 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:389 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:169 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:570 +msgid "Filter agent" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:534 +msgid "Agents in Policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:556 +msgid "Groups in Policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:630 +msgid "Add agents to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:638 +msgid "Delete agents from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:697 +msgid "Applied" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:698 +msgid "Not applied" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:709 +#: ../../godmode/agentes/configurar_agente.php:512 +#: ../../godmode/agentes/configurar_agente.php:653 +#: ../../godmode/agentes/agent_manager.php:538 +#: ../../godmode/massive/massive_edit_agents.php:646 +#: ../../godmode/servers/servers.build_table.php:202 +msgid "Remote configuration" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:709 +#: ../../enterprise/operation/agentes/policy_view.php:323 +msgid "R." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:206 +#: ../../enterprise/operation/agentes/policy_view.php:211 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../mobile/operation/agents.php:396 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../include/functions_events.php:2393 +#: ../../operation/agentes/alerts_status.php:513 +#: ../../operation/agentes/alerts_status.php:549 +#: ../../operation/agentes/alerts_status.php:584 +#: ../../operation/agentes/alerts_status.php:617 +msgid "S." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:712 +msgid "Unlinked modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:712 +msgid "U." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:397 +msgid "A." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:715 +#: ../../enterprise/godmode/policies/policy_agents.php:1078 +#: ../../enterprise/operation/agentes/policy_view.php:52 +msgid "Last application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 +msgid "Add to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 +msgid "D." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:782 +#: ../../godmode/agentes/agent_manager.php:247 +msgid "This agent can be remotely configured" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:788 +msgid "This agent can not be remotely configured" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:827 +#: ../../enterprise/godmode/policies/policy_agents.php:1169 +msgid "Process deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:889 +#: ../../enterprise/godmode/policies/policy_agents.php:1123 +#: ../../enterprise/operation/agentes/policy_view.php:66 +msgid "Policy applied" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:895 +#: ../../enterprise/godmode/policies/policy_agents.php:1129 +msgid "Need apply" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:905 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 +msgid "Applying policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:915 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 +msgid "Deleting from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:930 +#: ../../godmode/massive/massive_delete_modules.php:72 +#: ../../godmode/massive/massive_add_alerts.php:100 +#: ../../godmode/massive/massive_delete_agents.php:35 +#: ../../godmode/massive/massive_edit_agents.php:136 +#: ../../godmode/massive/massive_delete_alerts.php:98 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../include/functions_visual_map.php:2566 +#: ../../include/functions_visual_map.php:2953 +msgid "No agents selected" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1026 +msgid "Add groups to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1034 +msgid "Delete groups from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1077 +msgid "Total agents in policy group" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1077 +msgid "T." +msgstr "" + +#: ../../enterprise/godmode/policies/policy.php:92 +#: ../../enterprise/include/functions_policies.php:3729 +#: ../../godmode/agentes/configurar_agente.php:467 +msgid "Agent wizard" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:23 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 ../../include/functions_menu.php:545 +msgid "SNMP trap editor" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:338 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:284 +#: ../../extensions/realtime_graphs.php:172 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:522 +msgid "OID" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:339 +msgid "Custom OID" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1991 +#: ../../enterprise/include/functions_reporting_csv.php:2151 +#: ../../enterprise/include/functions_reporting_csv.php:2165 +#: ../../godmode/setup/news.php:195 ../../godmode/setup/setup_visuals.php:1208 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1808 +#: ../../include/functions_reports.php:804 +#: ../../include/functions_reporting.php:5111 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:199 +msgid "Successfully added trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:189 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:201 +msgid "Error adding trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:204 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 +msgid "This custom OID is preexistent." +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:245 +msgid "No change in data" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:247 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:274 +msgid "Successfully updated trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:276 +msgid "Error updating trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:289 +msgid "Successfully deleted trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:292 +msgid "Error deleting trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:302 +msgid "Fail uploaded file" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:307 +msgid "" +"MIB files will be loaded and searched for SNMP trap definitions. They will " +"not be installed on the system! You can use the MIB uploader for that " +"purpose." +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:316 +msgid "Load MIB" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 +msgid "Upload MIB" +msgstr "" + +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "" + +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:69 +msgid "Policies operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:48 +msgid "SNMP operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:27 +msgid "Satellite operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:258 +msgid "Duplicate config" +msgstr "" + +#: ../../enterprise/godmode/menu.php:87 +#: ../../enterprise/include/functions_policies.php:3708 +msgid "Manage policies" +msgstr "" + +#: ../../enterprise/godmode/menu.php:96 +msgid "Manage agent autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/include/class/AgentRepository.class.php:596 +msgid "Software agents repository" +msgstr "" + +#: ../../enterprise/godmode/menu.php:127 +#: ../../enterprise/include/functions_setup.php:48 +#: ../../enterprise/include/functions_setup.php:90 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "" + +#: ../../enterprise/godmode/menu.php:138 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "" + +#: ../../enterprise/godmode/menu.php:142 +#: ../../enterprise/include/class/DeploymentCenter.class.php:573 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:638 +msgid "Agent deployment" +msgstr "" + +#: ../../enterprise/godmode/menu.php:152 +msgid "Mysql" +msgstr "" + +#: ../../enterprise/godmode/menu.php:153 +#: ../../enterprise/godmode/setup/setup.php:179 +#: ../../enterprise/include/class/Oracle.app.php:406 +msgid "Oracle" +msgstr "" + +#: ../../enterprise/godmode/menu.php:154 +#: ../../enterprise/include/class/VMware.app.php:458 +msgid "VMware" +msgstr "" + +#: ../../enterprise/godmode/menu.php:155 +#: ../../enterprise/include/class/SAPView.class.php:612 +#: ../../enterprise/include/class/SAPView.class.php:615 +#: ../../include/class/CredentialStore.class.php:872 +msgid "SAP" +msgstr "" + +#: ../../enterprise/godmode/menu.php:156 +#: ../../enterprise/godmode/wizards/Applications.class.php:154 +#: ../../enterprise/godmode/wizards/Applications.class.php:162 +msgid "Applications" +msgstr "" + +#: ../../enterprise/godmode/menu.php:167 +msgid "Amazon Web Services" +msgstr "" + +#: ../../enterprise/godmode/menu.php:168 +msgid "Microsoft Azure" +msgstr "" + +#: ../../enterprise/godmode/menu.php:169 +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Cloud.class.php:191 +#: ../../enterprise/include/class/Azure.cloud.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:183 +#: ../../enterprise/include/class/Aws.cloud.php:94 +#: ../../enterprise/include/class/Aws.cloud.php:141 +msgid "Cloud" +msgstr "" + +#: ../../enterprise/godmode/menu.php:184 +msgid "New console task" +msgstr "" + +#: ../../enterprise/godmode/menu.php:194 +msgid "Enterprise ACL Setup" +msgstr "" + +#: ../../enterprise/godmode/menu.php:203 +msgid "Skins" +msgstr "" + +#: ../../enterprise/godmode/menu.php:213 +msgid "Manage database HA" +msgstr "" + +#: ../../enterprise/godmode/menu.php:223 +#: ../../enterprise/godmode/servers/manage_export.php:43 +#: ../../enterprise/godmode/servers/manage_export_form.php:59 +msgid "Export targets" +msgstr "" + +#: ../../enterprise/godmode/menu.php:233 +msgid "Alert correlation" +msgstr "" + +#: ../../enterprise/godmode/menu.php:249 +msgid "Log Collector" +msgstr "" + +#: ../../enterprise/godmode/menu.php:267 +msgid "Password policy" +msgstr "" + +#: ../../enterprise/godmode/menu.php:275 +#: ../../enterprise/include/functions_setup.php:40 +#: ../../enterprise/include/functions_setup.php:79 +#: ../../godmode/extensions.php:138 ../../godmode/setup/setup.php:225 +msgid "Enterprise" +msgstr "" + +#: ../../enterprise/godmode/menu.php:288 +#: ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "" + +#: ../../enterprise/godmode/menu.php:297 ../../godmode/setup/setup.php:133 +#: ../../godmode/setup/setup.php:203 +#: ../../godmode/module_library/module_library_view.php:65 +msgid "Module Library" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:76 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:73 +msgid "Successful update the tags" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:77 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:74 +msgid "Unsuccessful update the tags" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 +msgid "Tags unused" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:163 +msgid "Tags used" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 +msgid "Success: create the alerts." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 +msgid "Failed: create the alerts for this modules, please check." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../include/functions_alerts.php:656 +msgid "Regular expression" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 +msgid "Modules in policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:83 +msgid "Bulk alerts policy add" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:84 +msgid "Bulk alerts policy delete" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:85 +msgid "Bulk tags module policy edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:86 +msgid "Bulk modules policy tags edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:87 +msgid "Bulk modules policy add from agent" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:88 +msgid "Bulk modules policy edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:99 +msgid "Bulk alert SNMP delete" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:100 +msgid "Bulk alert SNMP edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:111 +msgid "Bulk Satellite modules edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:59 +msgid "Successfully copied " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +#: ../../include/ajax/events.php:1802 ../../include/ajax/events.php:1816 +#: ../../include/ajax/events.php:1830 +msgid "Module " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " cannot be copied to " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:168 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:173 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:182 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:240 +#: ../../enterprise/godmode/setup/setup_auth.php:66 +#: ../../enterprise/godmode/setup/setup_auth.php:264 +#: ../../enterprise/godmode/setup/setup_auth.php:311 +#: ../../enterprise/godmode/setup/setup_auth.php:366 +#: ../../enterprise/godmode/setup/setup_auth.php:529 +#: ../../enterprise/godmode/setup/setup_auth.php:1096 +#: ../../enterprise/godmode/setup/setup_auth.php:1263 +#: ../../enterprise/godmode/setup/setup_acl.php:440 +#: ../../enterprise/include/class/DeploymentCenter.class.php:739 +#: ../../enterprise/include/class/AgentRepository.class.php:633 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1542 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3764 +#: ../../enterprise/operation/services/services.list.php:208 +#: ../../enterprise/operation/services/services.list.php:239 +#: ../../enterprise/operation/services/services.table_services.php:187 +#: ../../enterprise/operation/services/services.table_services.php:218 +#: ../../godmode/agentes/planned_downtime.list.php:160 +#: ../../godmode/agentes/planned_downtime.editor.php:944 +#: ../../godmode/agentes/agent_manager.php:314 +#: ../../godmode/agentes/agent_manager.php:525 +#: ../../godmode/massive/massive_copy_modules.php:162 +#: ../../godmode/massive/massive_delete_modules.php:383 +#: ../../godmode/massive/massive_delete_modules.php:497 +#: ../../godmode/massive/massive_edit_agents.php:517 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/massive/massive_add_action_alerts.php:175 +#: ../../godmode/massive/massive_edit_modules.php:384 +#: ../../godmode/massive/massive_edit_modules.php:469 +#: ../../godmode/reporting/create_container.php:541 +#: ../../godmode/reporting/visual_console_builder.wizard.php:556 +#: ../../godmode/events/event_edit_filter.php:397 +#: ../../include/functions_visual_map_editor.php:464 +#: ../../include/functions_visual_map_editor.php:1362 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/ajax/visual_console_builder.ajax.php:1186 +#: ../../include/functions_profile.php:316 +#: ../../include/functions_html.php:1601 ../../include/functions_html.php:1602 +#: ../../include/functions_html.php:1603 ../../include/functions_html.php:1604 +#: ../../include/functions_html.php:1605 ../../include/functions_html.php:1607 +#: ../../include/functions_html.php:1608 ../../include/functions_html.php:1609 +#: ../../include/functions_html.php:1610 ../../include/functions_html.php:1611 +#: ../../include/lib/Dashboard/Widgets/events_list.php:282 +#: ../../operation/events/events_list.php:789 +#: ../../operation/events/events.php:1093 +#: ../../operation/events/events.php:2299 +msgid "Any" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:173 +#: ../../godmode/massive/massive_copy_modules.php:197 +msgid "No modules for this agent" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:206 +msgid "To policies" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:342 +#: ../../godmode/massive/massive_copy_modules.php:525 +#: ../../godmode/massive/massive_delete_modules.php:802 +#: ../../godmode/massive/massive_add_alerts.php:295 +#: ../../godmode/massive/massive_delete_agents.php:217 +#: ../../godmode/massive/massive_edit_agents.php:914 +#: ../../godmode/massive/massive_delete_alerts.php:354 +#: ../../godmode/massive/massive_add_action_alerts.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1211 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:349 +#: ../../godmode/massive/massive_copy_modules.php:535 +#: ../../include/functions_agents.php:763 +msgid "No source agent to copy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:354 +#: ../../godmode/massive/massive_copy_modules.php:548 +#: ../../include/functions_agents.php:794 +msgid "No modules have been selected" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +msgid "No destiny policies to copy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:189 +#: ../../godmode/massive/massive_delete_modules.php:348 +#: ../../godmode/massive/massive_edit_modules.php:329 +msgid "Agent group" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 +msgid "Filter module" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:230 +#: ../../godmode/massive/massive_delete_action_alerts.php:195 +#: ../../godmode/massive/massive_delete_modules.php:526 +#: ../../godmode/massive/massive_add_alerts.php:232 +#: ../../godmode/massive/massive_delete_alerts.php:305 +#: ../../godmode/massive/massive_add_action_alerts.php:182 +#: ../../godmode/massive/massive_edit_modules.php:496 +msgid "When select agents" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:234 +#: ../../extensions/agents_modules.php:421 +#: ../../extensions/agents_modules.php:424 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:621 +#: ../../godmode/agentes/planned_downtime.editor.php:954 +#: ../../godmode/massive/massive_delete_action_alerts.php:199 +#: ../../godmode/massive/massive_delete_modules.php:530 +#: ../../godmode/massive/massive_add_alerts.php:236 +#: ../../godmode/massive/massive_delete_alerts.php:309 +#: ../../godmode/massive/massive_add_action_alerts.php:186 +#: ../../godmode/massive/massive_edit_modules.php:500 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1528 +msgid "Show common modules" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:235 +#: ../../extensions/agents_modules.php:422 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:622 +#: ../../godmode/agentes/planned_downtime.editor.php:955 +#: ../../godmode/massive/massive_delete_action_alerts.php:200 +#: ../../godmode/massive/massive_delete_modules.php:531 +#: ../../godmode/massive/massive_add_alerts.php:237 +#: ../../godmode/massive/massive_delete_alerts.php:310 +#: ../../godmode/massive/massive_add_action_alerts.php:187 +#: ../../godmode/massive/massive_edit_modules.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1529 +msgid "Show all modules" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:394 +msgid "Updated modules on database" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 +msgid "Agent configuration files updated" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:26 +#: ../../operation/snmpconsole/snmp_view.php:606 +#: ../../operation/snmpconsole/snmp_view.php:1031 +#: ../../operation/snmpconsole/snmp_view.php:1045 +msgid "Cold start (0)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:27 +#: ../../operation/snmpconsole/snmp_view.php:607 +#: ../../operation/snmpconsole/snmp_view.php:1032 +#: ../../operation/snmpconsole/snmp_view.php:1049 +msgid "Warm start (1)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:28 +#: ../../operation/snmpconsole/snmp_view.php:608 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1053 +msgid "Link down (2)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:29 +#: ../../operation/snmpconsole/snmp_view.php:609 +#: ../../operation/snmpconsole/snmp_view.php:1034 +#: ../../operation/snmpconsole/snmp_view.php:1057 +msgid "Link up (3)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +#: ../../operation/snmpconsole/snmp_view.php:610 +#: ../../operation/snmpconsole/snmp_view.php:1035 +#: ../../operation/snmpconsole/snmp_view.php:1061 +msgid "Authentication failure (4)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../enterprise/godmode/setup/setup_acl.php:350 +#: ../../enterprise/godmode/setup/setup_acl.php:354 +#: ../../enterprise/include/class/Aws.cloud.php:284 +#: ../../extensions/api_checker.php:176 +#: ../../godmode/groups/configure_group.php:204 +#: ../../godmode/users/configure_user.php:896 +#: ../../godmode/snmpconsole/snmp_alert.php:31 +#: ../../include/functions_graph.php:2897 +#: ../../include/functions_graph.php:2971 +#: ../../include/functions_graph.php:3046 +#: ../../include/functions_graph.php:3120 +#: ../../include/functions_graph.php:3197 +#: ../../include/functions_graph.php:3406 +#: ../../include/functions_graph.php:3514 +#: ../../include/functions_graph.php:3579 +#: ../../include/functions_graph.php:3709 +#: ../../include/functions_graph.php:3721 +#: ../../include/functions_graph.php:3722 +#: ../../include/functions_graph.php:3725 +#: ../../include/functions_graph.php:3730 +#: ../../include/functions_graph.php:3731 +#: ../../include/functions_graph.php:3734 +#: ../../include/functions_graph.php:4689 +#: ../../operation/users/user_edit.php:343 +#: ../../operation/snmpconsole/snmp_statistics.php:180 +#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_view.php:611 +#: ../../operation/snmpconsole/snmp_view.php:1036 +#: ../../operation/snmpconsole/snmp_view.php:1065 +#: ../../operation/gis_maps/render_view.php:154 +msgid "Other" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:145 +#: ../../godmode/snmpconsole/snmp_alert.php:712 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:153 +#: ../../godmode/snmpconsole/snmp_alert.php:716 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:181 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Custom OIDs/Datas." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:185 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:290 +#: ../../godmode/snmpconsole/snmp_alert.php:802 +#: ../../godmode/snmpconsole/snmp_alert.php:1124 +#: ../../include/functions_snmp.php:443 +#: ../../operation/snmpconsole/snmp_view.php:603 +msgid "Trap type" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:200 +msgid "SNMP Alerts to be deleted" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:205 +#, php-format +msgid "Successfully updated alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:213 +#, php-format +msgid "Unsuccessfully updated alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +msgid "SNMP Alerts to be edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:286 +#: ../../godmode/snmpconsole/snmp_alert.php:765 +msgid "Custom Value/OID" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:288 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:112 +#: ../../godmode/snmpconsole/snmp_alert.php:773 +#: ../../godmode/snmpconsole/snmp_alert.php:1268 +#: ../../operation/snmpconsole/snmp_view.php:799 +msgid "SNMP Agent" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:292 +#: ../../godmode/snmpconsole/snmp_alert.php:807 +msgid "Single value" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:294 +#: ../../enterprise/godmode/alerts/alert_events.php:533 +#: ../../godmode/snmpconsole/snmp_alert.php:1012 +#: ../../godmode/alerts/configure_alert_template.php:635 +msgid "Min. number of alerts" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:296 +#: ../../enterprise/godmode/alerts/alert_events.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1015 +#: ../../godmode/alerts/configure_alert_template.php:648 +msgid "Max. number of alerts" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../godmode/snmpconsole/snmp_alert.php:1034 +msgid "Other value" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:317 +#: ../../godmode/snmpconsole/snmp_alert.php:1085 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../include/functions_visual_map_editor.php:832 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 +#: ../../include/rest-api/models/VisualConsole/Item.php:1905 +msgid "Position" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 +msgid "Modules unused" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:151 +msgid "Modules used" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 +msgid "Success: remove the alerts." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +msgid "Modules agents in policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:377 +#: ../../godmode/massive/massive_edit_modules.php:526 +msgid "Dynamic Min." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 +#: ../../godmode/massive/massive_edit_modules.php:724 +msgid "SMNP community" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:585 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:734 +msgid "SNMP OID" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:137 +#: ../../enterprise/include/functions_hostdevices.php:168 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:793 +msgid "The pass length must be eight character minimum." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:166 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:793 +#: ../../include/functions_snmp_browser.php:738 +msgid "Privacy pass" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:678 +#: ../../enterprise/operation/agentes/tag_view.php:136 +#: ../../godmode/agentes/module_manager_editor_common.php:244 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 +#: ../../godmode/massive/massive_edit_modules.php:820 +#: ../../include/functions_graph.php:5148 +#: ../../include/functions_treeview.php:116 +#: ../../operation/agentes/status_monitor.php:406 +msgid "Not assigned" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:698 +#: ../../godmode/agentes/module_manager_editor_common.php:665 +#: ../../godmode/massive/massive_edit_modules.php:840 +msgid "Export target" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:723 +#: ../../enterprise/godmode/services/services.service.php:394 +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +#: ../../enterprise/operation/services/services.list.php:238 +#: ../../enterprise/operation/services/services.table_services.php:217 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/alerts/alert_view.php:421 +msgid "Mode" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:788 +#: ../../godmode/massive/massive_edit_modules.php:926 +msgid "Active Counters" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:927 +msgid "Inactive Counters" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "Policy linking status" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "This field only has sense in modules adopted by a policy." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../godmode/massive/massive_edit_modules.php:995 +msgid "Linked" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 +#: ../../godmode/agentes/module_manager.php:790 +#: ../../godmode/agentes/module_manager.php:793 +#: ../../godmode/massive/massive_edit_modules.php:995 +#: ../../include/ajax/module.php:957 ../../include/ajax/module.php:960 +msgid "Unlinked" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:843 +#: ../../godmode/modules/manage_network_components_form_common.php:306 +#: ../../godmode/agentes/module_manager_editor_common.php:698 +#: ../../godmode/massive/massive_edit_modules.php:1004 +msgid "Discard unknown events" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:872 +#: ../../godmode/massive/massive_edit_modules.php:1033 +msgid "The module still store data but the alerts and events will be stop" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:887 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1051 +#: ../../godmode/massive/massive_edit_modules.php:1050 +msgid "Timeout" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:896 +#: ../../godmode/massive/massive_edit_modules.php:1059 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 +#: ../../godmode/modules/manage_network_components_form_network.php:196 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1076 +msgid "TCP send" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:916 +#: ../../godmode/modules/manage_network_components_form_network.php:203 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1079 +msgid "TCP receive" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:919 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1082 +msgid "WMI query" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:922 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 +#: ../../godmode/massive/massive_edit_modules.php:1085 +msgid "Key string" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:925 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +#: ../../godmode/massive/massive_edit_modules.php:1088 +msgid "Field number" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:928 +#: ../../extensions/plugin_registration.php:406 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:324 +#: ../../godmode/massive/massive_edit_modules.php:1091 +msgid "Plugin" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/modules/manage_network_components_form_network.php:210 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:492 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/alerts/configure_alert_command.php:176 +#: ../../godmode/alerts/configure_alert_action.php:147 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../godmode/servers/plugin.php:422 ../../godmode/servers/plugin.php:427 +#: ../../godmode/servers/plugin.php:971 +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Command" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../godmode/modules/manage_network_components_form_network.php:229 +#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/massive/massive_edit_modules.php:1126 +msgid "Credential identifier" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:978 +#: ../../godmode/modules/manage_network_components_form_network.php:245 +#: ../../godmode/agentes/module_manager_editor_network.php:468 +#: ../../godmode/massive/massive_edit_modules.php:1140 +msgid "Inherited" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:979 +#: ../../godmode/modules/manage_network_components_form_network.php:246 +#: ../../godmode/massive/massive_edit_modules.php:1141 +msgid "Linux" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:980 +#: ../../godmode/modules/manage_network_components_form_network.php:247 +#: ../../godmode/massive/massive_edit_modules.php:1142 +msgid "Windows" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:983 +#: ../../godmode/modules/manage_network_components_form_network.php:250 +#: ../../godmode/massive/massive_edit_modules.php:1145 +msgid "Target OS" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:49 +msgid "Show extended info" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:69 +msgid "" +"The security check cannot be performed. There are no data in " +"tsession_extended to check the hash." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:77 +msgid "Security check is ok." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:82 +msgid "Security check is fail." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:186 +msgid "Extended info:" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:186 +msgid "Changes:" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 +#: ../../enterprise/godmode/alerts/alert_events.php:47 +#: ../../enterprise/godmode/alerts/alert_events_list.php:57 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 +msgid "List event alerts" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:55 +#: ../../enterprise/godmode/alerts/alert_events.php:52 +#: ../../enterprise/godmode/alerts/alert_events_list.php:61 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 +msgid "Builder event alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:59 +#: ../../enterprise/godmode/alerts/alert_events.php:60 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:88 +msgid "List event rules" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +msgid "Configure event rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +msgid "User comment" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +msgid "This field will be processed with regexp" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../operation/events/sound_events.php:80 +msgid "Event" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 +msgid "Window" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1392 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1014 +#: ../../include/functions_reporting_html.php:962 +#: ../../include/functions_reporting_html.php:1186 +#: ../../include/functions_reporting_html.php:1955 +#: ../../operation/snmpconsole/snmp_view.php:810 +msgid "Count" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +#: ../../include/class/Tree.class.php:686 +msgid "Module alerts" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:169 +msgid "Recursion:" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:175 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:404 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:324 +#: ../../godmode/reporting/create_container.php:534 +#: ../../godmode/reporting/create_container.php:595 +#: ../../mobile/operation/modules.php:170 +#: ../../mobile/operation/modules.php:171 +#: ../../mobile/operation/modules.php:283 +#: ../../mobile/operation/modules.php:284 +#: ../../operation/agentes/group_view.php:283 +msgid "Tag" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:84 +msgid "Configure event alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:142 +#: ../../enterprise/godmode/alerts/alert_events.php:146 +#: ../../godmode/alerts/configure_alert_template.php:200 +#: ../../godmode/alerts/configure_alert_template.php:204 +msgid "Conditions" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:163 +#: ../../enterprise/godmode/alerts/alert_events.php:167 +#: ../../godmode/alerts/configure_alert_template.php:221 +#: ../../godmode/alerts/configure_alert_template.php:225 +msgid "Advanced fields" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:396 +msgid "Could not be created, please fill alert name" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:487 +#: ../../godmode/alerts/configure_alert_template.php:585 +msgid "Days of week" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:488 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:885 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1985 +#: ../../godmode/agentes/planned_downtime.editor.php:753 +#: ../../godmode/alerts/configure_alert_template.php:586 +#: ../../godmode/alerts/alert_special_days.php:357 +#: ../../godmode/alerts/alert_view.php:212 ../../include/functions.php:1080 +#: ../../include/functions_reporting.php:11779 +msgid "Mon" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:490 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:886 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1986 +#: ../../godmode/agentes/planned_downtime.editor.php:754 +#: ../../godmode/alerts/configure_alert_template.php:588 +#: ../../godmode/alerts/alert_special_days.php:358 +#: ../../godmode/alerts/alert_view.php:213 ../../include/functions.php:1084 +#: ../../include/functions_reporting.php:11784 +msgid "Tue" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:492 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:887 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1987 +#: ../../godmode/agentes/planned_downtime.editor.php:755 +#: ../../godmode/alerts/configure_alert_template.php:590 +#: ../../godmode/alerts/alert_special_days.php:359 +#: ../../godmode/alerts/alert_view.php:214 ../../include/functions.php:1088 +#: ../../include/functions_reporting.php:11789 +msgid "Wed" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:494 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:888 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1988 +#: ../../godmode/agentes/planned_downtime.editor.php:756 +#: ../../godmode/alerts/configure_alert_template.php:592 +#: ../../godmode/alerts/alert_special_days.php:360 +#: ../../godmode/alerts/alert_view.php:215 ../../include/functions.php:1092 +#: ../../include/functions_reporting.php:11794 +msgid "Thu" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:496 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:889 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1989 +#: ../../godmode/agentes/planned_downtime.editor.php:757 +#: ../../godmode/alerts/configure_alert_template.php:594 +#: ../../godmode/alerts/alert_special_days.php:361 +#: ../../godmode/alerts/alert_view.php:216 ../../include/functions.php:1096 +#: ../../include/functions_reporting.php:11799 +msgid "Fri" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:498 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:890 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1990 +#: ../../godmode/agentes/planned_downtime.editor.php:758 +#: ../../godmode/alerts/configure_alert_template.php:596 +#: ../../godmode/alerts/alert_special_days.php:362 +#: ../../godmode/alerts/alert_view.php:217 ../../include/functions.php:1100 +#: ../../include/functions_reporting.php:11804 +msgid "Sat" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:500 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:891 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1991 +#: ../../godmode/agentes/planned_downtime.editor.php:759 +#: ../../godmode/alerts/configure_alert_template.php:598 +#: ../../godmode/alerts/alert_special_days.php:356 +#: ../../godmode/alerts/alert_view.php:218 ../../include/functions.php:1104 +#: ../../include/functions_reporting.php:11809 +msgid "Sun" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:503 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1731 +#: ../../godmode/alerts/configure_alert_template.php:604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1172 +#: ../../operation/events/events.php:1179 +msgid "Time from" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1749 +#: ../../godmode/alerts/configure_alert_template.php:613 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1190 +#: ../../operation/events/events.php:1230 +msgid "Time to" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:551 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1001 +msgid "Rule evaluation mode" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:563 +#: ../../godmode/snmpconsole/snmp_alert.php:1089 +#: ../../godmode/alerts/configure_alert_template.php:658 +msgid "Disable event" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:566 +msgid "Group by" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:572 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1851 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2625 +#: ../../godmode/alerts/alert_commands.php:91 +#: ../../godmode/alerts/alert_commands.php:93 +#: ../../godmode/alerts/alert_commands.php:107 +#: ../../godmode/alerts/alert_commands.php:113 +#: ../../godmode/alerts/configure_alert_template.php:852 +#: ../../godmode/alerts/alert_view.php:466 +#: ../../godmode/alerts/alert_view.php:544 +#, php-format +msgid "Field %s" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:645 +#: ../../extensions/agents_alerts.php:262 +#: ../../godmode/alerts/configure_alert_action.php:116 +#: ../../godmode/alerts/alert_list.builder.php:128 +msgid "Create Action" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +msgid "Please Read" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +msgid "" +"Since the alert can have multiple actions. You can edit them from the alert " +"list of events." +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +#: ../../godmode/servers/modificar_server.php:117 +#: ../../godmode/servers/modificar_server.php:128 +msgid "Successfully action" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +msgid "Error processing action" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 +#: ../../operation/agentes/alerts_status.functions.php:34 +msgid "Alert(s) validated" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 +msgid "Error validating alert(s)" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 +msgid "Ac." +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:621 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2918 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283 +msgid "No associated actions" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:650 +#: ../../enterprise/godmode/alerts/alert_events_list.php:695 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3269 +#: ../../extensions/agents_alerts.php:299 +#: ../../godmode/alerts/alert_list.list.php:619 +#: ../../godmode/alerts/alert_list.list.php:746 +#: ../../godmode/alerts/configure_alert_action.php:179 +#: ../../godmode/alerts/alert_view.php:389 +#: ../../godmode/alerts/alert_list.builder.php:165 +#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:4184 +#: ../../include/ajax/alert_list.ajax.php:517 +msgid "Threshold" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/operation/agentes/policy_view.php:281 +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:534 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions_ui.php:1223 +msgid "time(s)" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:711 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3116 +#: ../../enterprise/operation/agentes/policy_view.php:284 +#: ../../extensions/agents_alerts.php:570 +#: ../../godmode/alerts/alert_list.list.php:537 +#: ../../godmode/alerts/alert_view.php:85 ../../mobile/operation/alerts.php:308 +#: ../../include/functions_ui.php:1226 +#: ../../include/functions_reporting.php:10045 +msgid "Alert disabled" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:714 +#: ../../enterprise/operation/agentes/policy_view.php:287 +#: ../../extensions/agents_alerts.php:573 +#: ../../godmode/alerts/alert_list.list.php:540 +#: ../../godmode/alerts/alert_view.php:88 ../../mobile/operation/alerts.php:311 +#: ../../include/functions_agents.php:2611 +#: ../../include/functions_agents.php:2622 ../../include/functions_ui.php:1229 +#: ../../include/functions_reporting.php:9959 +#: ../../operation/snmpconsole/snmp_view.php:965 +msgid "Alert not fired" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:725 +msgid "View associated rules" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:741 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3008 +msgid "There are no defined events alerts" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +msgid "Event rules" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:103 +msgid "" +"This view will be removed in a future version. Please use \"Alert correlation" +"\" instead." +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:225 +msgid "Error creating rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:229 +msgid "Successfully created rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:244 +msgid "Error updating rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:247 +msgid "Successfully updating rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:257 +msgid "Error updating rule operators" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 +msgid "Successfully update rule operators" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +msgid "(Agent)" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 +msgid "Operator" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:499 +msgid "Logic expression for these rules:" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:507 +msgid "Update operators" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:512 +msgid "There are no defined alert event rules" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:58 +#: ../../enterprise/operation/services/services.treeview_services.php:165 +#: ../../enterprise/operation/services/services.list.php:588 +#: ../../enterprise/operation/services/services.table_services.php:438 +msgid "Create Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:85 +#: ../../enterprise/godmode/services/services.service.php:148 +msgid "No name and description specified for the service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:93 +#: ../../enterprise/godmode/services/services.service.php:156 +msgid "No name specified for the service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:101 +#: ../../enterprise/godmode/services/services.service.php:164 +msgid "No description specified for the service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:110 +msgid "Error creating service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:117 +msgid "Service created successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:204 +msgid "Error updating service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:211 +msgid "Service updated successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:227 +#: ../../enterprise/godmode/services/services.service.php:262 +#: ../../enterprise/operation/services/services.service.php:37 +#: ../../enterprise/operation/services/services.service_map.php:44 +#: ../../include/ajax/update_manager.ajax.php:751 +msgid "Not found" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:234 +msgid "New Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:288 +#: ../../enterprise/godmode/services/services.elements.php:117 +#: ../../enterprise/operation/services/services.service.php:62 +#: ../../enterprise/operation/services/services.service_map.php:70 +#: ../../enterprise/operation/services/services.treeview_services.php:46 +#: ../../enterprise/operation/services/services.list.php:46 +#: ../../enterprise/operation/services/services.table_services.php:43 +msgid "Services list" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:296 +#: ../../enterprise/godmode/services/services.elements.php:127 +#: ../../enterprise/operation/services/services.service.php:72 +#: ../../enterprise/operation/services/services.service_map.php:80 +msgid "Services tree view" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:304 +#: ../../enterprise/godmode/services/services.elements.php:137 +#: ../../enterprise/operation/services/services.service.php:82 +#: ../../enterprise/operation/services/services.service_map.php:90 +msgid "Services table view" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:312 +#: ../../enterprise/godmode/services/services.elements.php:146 +#: ../../enterprise/operation/services/services.service.php:91 +#: ../../enterprise/operation/services/services.service_map.php:102 +msgid "Config Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:320 +#: ../../enterprise/godmode/services/services.elements.php:154 +#: ../../enterprise/operation/services/services.service.php:95 +#: ../../enterprise/operation/services/services.service_map.php:110 +msgid "Config Elements" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:328 +#: ../../enterprise/godmode/services/services.elements.php:164 +#: ../../enterprise/operation/services/services.service.php:103 +#: ../../enterprise/operation/services/services.service_map.php:122 +msgid "View Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:336 +#: ../../enterprise/godmode/services/services.elements.php:173 +#: ../../enterprise/operation/services/services.service.php:108 +#: ../../enterprise/operation/services/services.service_map.php:131 +#: ../../include/lib/Dashboard/Widgets/service_map.php:378 +msgid "Service map" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:375 +msgid "No Services or concrete action" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:379 +msgid "General Data" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:400 +#: ../../enterprise/operation/services/services.list.php:236 +#: ../../enterprise/operation/services/services.table_services.php:215 +msgid "Simple" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:403 +#: ../../enterprise/godmode/services/services.elements.php:81 +msgid "This values are by default because the service is auto calculate mode." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:419 +msgid "Agent to store data" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:437 +msgid "Cascade Protection" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:448 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 +#: ../../enterprise/include/functions_reporting_csv.php:1282 +#: ../../include/functions_reports.php:684 +#: ../../include/functions_reporting.php:871 +msgid "S.L.A." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:452 +msgid "Calculate continuous SLA for this service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:455 +msgid "S.L.A. interval" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:466 +msgid "S.L.A. limit" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:467 +msgid "Please set limit between 0 to 100." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:481 +msgid "" +"Here are described the alert templates, which will use their default " +"actions.\n" +"\t\tYou can modify the default behaviour editing alerts in the agent who " +"stores data and alert definitions about the service and the SLA status." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:498 +msgid "Warning Service alert" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:519 +msgid "Critical Service alert" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:538 +msgid "SLA critical service alert" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:647 +msgid "" +"This change in the service configuration will delete the history of the " +"service modules. Do you wish to continue?" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:649 +msgid "" +"This change in the service configuration will prevent the SLA modules from " +"being created. Do you wish to continue?" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:95 +msgid "Invalid service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:196 +#: ../../enterprise/include/functions_services.php:2748 +msgid "Edit service elements" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:211 +msgid "Error empty module" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:222 +msgid "Error empty agent" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:233 +msgid "Error empty service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:241 +msgid "Error unknown type" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:266 +msgid "Service element created successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:267 +msgid "Error creating service element" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:438 +msgid "Service element updated successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:439 +msgid "Error updating service element" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:552 +msgid "Service element deleted successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:553 +msgid "Error deleting service element" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:609 +msgid "Edit element service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:653 +msgid "Create element service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:722 +msgid "First select an agent" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:743 +msgid "Unknown weight" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:747 +msgid "Ok weight" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:753 +msgid "Only the critical elements are relevant to calculate the service status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:42 +#: ../../include/functions_config.php:1410 +msgid "Enable history database" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:45 +msgid "Enable event history" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_config.php:1418 +msgid "Host" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:57 +#: ../../include/functions_config.php:1430 +msgid "Database user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:60 +#: ../../include/functions_config.php:1434 +msgid "Database password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:69 +#: ../../include/functions_config.php:1466 +msgid "Delay" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:72 +msgid "Event days" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:47 +#: ../../include/functions_config.php:374 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:77 +#: ../../include/functions_config.php:378 +msgid "Use Enterprise ACL System" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:116 +#: ../../include/functions_config.php:395 +msgid "Replication interval" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:124 +msgid "Seconds" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:130 +#: ../../include/functions_config.php:399 +msgid "Replication limit" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:144 +msgid "Last replication at" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:146 +msgid "No replication yet" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:157 +#: ../../include/functions_config.php:403 +msgid "Replication mode" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:160 +msgid "Only validated events" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:161 +#: ../../godmode/events/event_edit_filter.php:402 +#: ../../operation/events/events_list.php:969 +#: ../../operation/events/events.php:935 +msgid "All events" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:175 +msgid "Metaconsole DB engine" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:178 +#: ../../enterprise/include/class/MySQL.app.php:419 +msgid "MySQL" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "Metaconsole DB host" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:207 +msgid "Metaconsole DB name" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:221 +msgid "Metaconsole DB user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:235 +msgid "Metaconsole DB password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:263 +#: ../../include/functions_config.php:407 +msgid "Show events list in local console (read only)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:274 +msgid "Events Configuration Information" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:276 +msgid "" +" If you are replicating events, events validated or deleted on the " +"metaconsole WILL NOT be deleted or validated here. This option is just to " +"allow local pandora users to see events, but not to operate with them. " +"Operation, when event replication is enabled, should be done only in " +"metaconsole" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:281 +#: ../../include/functions_config.php:465 +msgid "Inventory changes blacklist" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:344 +msgid "Out of black list" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:346 +msgid "In black list" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:351 +msgid "Push selected modules into blacklist" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:353 +msgid "Pop selected modules out of blacklist" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:365 +#: ../../include/functions_config.php:440 +msgid "Activate Log Collector" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:389 +msgid "Disable newsletter" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:401 +msgid "Critical threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:413 +msgid "Warning threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:426 +#: ../../include/functions_config.php:460 +msgid "SAP/R3 Plugin Licence" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:442 +msgid "Enterprise options" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:601 +msgid "Enterprise password policy" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:35 +#: ../../enterprise/godmode/setup/edit_skin.php:41 +msgid "Skins configuration" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:74 +msgid "Error deleting skin" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:76 +msgid "Successfully deleted skin" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:119 +msgid "Skin name" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:120 +#: ../../enterprise/godmode/setup/edit_skin.php:238 +msgid "Relative path" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:147 +msgid "There are no defined skins" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:153 +msgid "Create skin" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_module_library.php:64 +#: ../../enterprise/godmode/wizards/Cloud.class.php:353 +#: ../../godmode/module_library/module_library_view.php:145 +msgid "Invalid username or password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_module_library.php:65 +#: ../../godmode/module_library/module_library_view.php:144 +msgid "Problem with authentication. Check your internet connection" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:28 +msgid "Metaconsole setup" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 +msgid "Pandora FMS Metaconsole item edition" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "" +"Token previously configured on the destination Pandora console in order to " +"use delegated authentification." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 +msgid "ElasticSearch IP" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 +msgid "IP of ElasticSearch server" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 +msgid "ElasticSearch Port" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 +msgid "Port of ElasticSearch server" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:42 +#: ../../include/functions_config.php:1400 +msgid "Number of logs viewed" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../include/functions_config.php:1404 +msgid "Days to purge old information" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:46 +msgid "ElasticSearch Status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:31 +msgid "Active directory" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:32 +msgid "SAML" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:84 +msgid "Force automatically create profile user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:89 +msgid "Local command" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "PHP function" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:96 +#: ../../enterprise/include/functions_tasklist.php:224 +#: ../../enterprise/include/functions_tasklist.php:281 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:196 +#: ../../include/functions_cron.php:508 ../../include/functions_cron.php:560 +#: ../../include/functions_update_manager.php:744 +#: ../../operation/search_users.php:36 +msgid "Email" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:167 +#: ../../enterprise/godmode/setup/setup_auth.php:439 +#: ../../enterprise/godmode/setup/setup_auth.php:1169 +msgid "Profiles selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:168 +#: ../../enterprise/godmode/setup/setup_auth.php:440 +#: ../../enterprise/godmode/setup/setup_auth.php:1170 +msgid "Groups selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:170 +#: ../../enterprise/godmode/setup/setup_auth.php:227 +#: ../../include/functions_profile.php:215 +msgid "No hierarchy" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:171 +#: ../../enterprise/godmode/setup/setup_auth.php:228 +msgid "LDAP Attributes" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:443 +#: ../../enterprise/godmode/setup/setup_auth.php:495 +#: ../../enterprise/godmode/setup/setup_auth.php:1173 +#: ../../enterprise/godmode/setup/setup_auth.php:1227 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:237 +#: ../../enterprise/godmode/setup/setup_auth.php:502 +#: ../../enterprise/godmode/setup/setup_auth.php:1234 +msgid "Select profile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:281 +#: ../../enterprise/godmode/setup/setup_auth.php:539 +#: ../../enterprise/godmode/setup/setup_auth.php:1276 +msgid "Add new permissions" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:371 +#: ../../enterprise/godmode/setup/setup_auth.php:1101 +msgid "New users will be able to log in to the nodes." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:442 +#: ../../enterprise/godmode/setup/setup_auth.php:494 +#: ../../enterprise/godmode/setup/setup_auth.php:1172 +#: ../../enterprise/godmode/setup/setup_auth.php:1226 +msgid "AD Groups" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:795 +msgid "You must select a profile from the list of profiles." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:699 +#: ../../enterprise/godmode/setup/setup_auth.php:800 +msgid "You must select a group from the list of groups." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../include/functions_config.php:641 +msgid "MySQL host" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1019 +msgid "SimpleSAML path" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1023 +msgid "SAML source" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1028 +msgid "SAML user id attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1033 +msgid "SAML mail attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1038 +msgid "SAML group name attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1043 +msgid "Simple attribute / Multivalue attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1048 +msgid "SAML profiles and tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1053 +msgid "Profile attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1058 +msgid "Tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1063 +msgid "SAML profile and tags prefix" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:43 +msgid "Enterprise ACL setup" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:295 +msgid "This record already exists in the database" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:339 +#: ../../enterprise/godmode/setup/setup_acl.php:414 +msgid "Add new ACL element to profile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:344 +#: ../../enterprise/godmode/setup/setup_acl.php:459 +msgid "Section" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:351 +#: ../../enterprise/godmode/setup/setup_acl.php:561 +msgid "Mobile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:355 +#: ../../enterprise/godmode/setup/setup_acl.php:557 +msgid "Head search" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:372 +#: ../../enterprise/godmode/setup/setup_acl.php:460 +msgid "Section 2" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:389 +#: ../../enterprise/godmode/setup/setup_acl.php:461 +msgid "Section 3" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:413 +msgid "Hidden" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:419 +msgid "Page" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:438 +msgid "Filter by profile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:458 +#: ../../godmode/users/configure_profile.php:217 +#: ../../godmode/massive/massive_delete_profiles.php:108 +#: ../../godmode/massive/massive_add_profiles.php:101 +#: ../../include/functions_profile.php:212 +#: ../../operation/users/user_edit.php:748 +msgid "Profile name" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:616 +#: ../../enterprise/godmode/setup/setup_acl.php:626 +#: ../../include/functions_graph.php:2924 +#: ../../include/functions_graph.php:2956 +msgid "Invalid" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:658 +#: ../../enterprise/godmode/reporting/visual_console_template.php:229 +#: ../../enterprise/operation/agentes/wux_console_view.php:591 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2833 +msgid "No data to show" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Successfully updated skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:46 +#: ../../enterprise/godmode/setup/edit_skin.php:64 +msgid "Error updating skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:194 +msgid "Error creating skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:198 +msgid "Successfully created skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:239 +msgid "" +"Zip file with skin subdirectory. The name of the zip file only can have " +"alphanumeric characters." +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:264 +msgid "Group/s" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:140 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 +msgid "Cleanup sucessfully" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:143 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 +msgid "Cleanup error" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:188 +msgid "No item could be applied to report." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:126 +msgid "Sucessfully applied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +msgid "reports" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +msgid "items" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:128 +msgid "Could not be applied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 +#: ../../godmode/massive/massive_operations.php:283 +msgid "" +"In order to perform massive operations, PHP needs a correct configuration in " +"timeout parameters. Please, open your PHP configuration file (php.ini) for " +"example: sudo vi /etc/php5/apache2/php.ini;
And set your timeout " +"parameters to a correct value:
max_execution_time = 0 and " +"max_input_time = -1" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:214 +msgid "Create template report wizard" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:259 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:149 +msgid "Clean up template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 +msgid "Create report per agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 +#: ../../enterprise/include/functions_cron.php:223 +#: ../../enterprise/include/functions_tasklist.php:280 +#: ../../enterprise/include/functions_reporting_csv.php:2004 +#: ../../enterprise/include/functions_reporting_csv.php:2008 +#: ../../godmode/reporting/reporting_builder.php:791 +#: ../../include/functions_cron.php:559 ../../operation/search_reports.php:34 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 +msgid "" +"Left in blank if you want to use default name: Template name - agents (num " +"agents) - Date" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:281 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:206 +msgid "Target group" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:321 +msgid "Filter by" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:396 +msgid "Filter tag" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:410 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:420 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:142 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:147 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:653 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:655 +#: ../../include/functions_snmp_browser.php:1187 +#: ../../include/functions_snmp_browser.php:1189 +msgid "Select all" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:413 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:251 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:653 +msgid "Agents available" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:423 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:160 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:655 +msgid "Agents to apply" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:445 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:274 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 +msgid "Add agents to template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:449 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:276 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:215 +msgid "Undo agents to template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:467 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:294 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:233 +msgid "Apply template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:601 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +msgid "Please set template distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:605 +msgid "Please set agent distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:626 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:422 +msgid "" +"This will be delete all reports created in previous template applications. " +"Do you want to continue?" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:713 +msgid "CPU" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:133 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:128 +msgid "Failed to retrieve AWS information using selected account." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:141 +msgid "AWS credentials not validated." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:145 +msgid "Discovery Cloud: AWS" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:150 +msgid "Please, select an account: " +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:159 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:162 +msgid "" +"Within this view you will find information collected using Discovery Cloud " +"AWS task. You will be able to see the most relevant information about your " +"infrastructure, such as the current cost of your contracted services, the " +"number of instances per region or resource usage metrics. In order to " +"collect this information you must create a Cloud Monitoring Discovery task." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:165 +msgid "Press the create button to begin." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:194 +msgid "Instance table" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:170 +msgid "Visual console name" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:170 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use " +"default name: Template name - agent alias" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 +#: ../../enterprise/godmode/reporting/mysql_builder.php:173 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:205 ../../godmode/setup/gis_step_2.php:346 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:217 +#: ../../godmode/reporting/reporting_builder.main.php:34 +#: ../../operation/agentes/graphs.php:335 +msgid "Save" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:153 +msgid "Edit template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:722 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* " +"will match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:32 +#: ../../enterprise/godmode/reporting/graph_template_list.php:44 +#: ../../enterprise/godmode/reporting/graph_template_list.php:55 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:90 +#: ../../godmode/reporting/graph_builder.php:249 +#: ../../godmode/reporting/graph_container.php:55 +#: ../../godmode/reporting/graphs.php:45 ../../godmode/reporting/graphs.php:56 +#: ../../operation/reporting/graph_viewer.php:152 +msgid "Graph list" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:75 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:100 +#: ../../godmode/reporting/create_container.php:176 +#: ../../godmode/reporting/graph_container.php:72 +#: ../../godmode/reporting/graph_container.php:75 +msgid "Graph container" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:79 +msgid "Graph template management" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:146 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:372 +#: ../../godmode/alerts/alert_list.list.php:55 +msgid "Template name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:195 +msgid "There are no defined graph templates" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:137 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 +#: ../../enterprise/godmode/reporting/visual_console_template.php:182 +msgid "Create template" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:43 +msgid "Not created. Blank name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:78 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 +msgid "Graph template editor" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:123 +#: ../../godmode/modules/manage_nc_groups.php:93 +#: ../../godmode/netflow/nf_edit_form.php:118 +#: ../../godmode/events/event_edit_filter.php:181 +msgid "Not updated. Blank name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:141 +msgid "Template updated successfully" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:142 +#: ../../include/class/ModuleTemplates.class.php:350 +msgid "Error updating template" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:176 +#: ../../godmode/setup/gis_step_2.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 +#: ../../godmode/events/event_responses.editor.php:121 +#: ../../include/functions_visual_map_editor.php:98 +#: ../../include/functions_visual_map_editor.php:600 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:469 +msgid "Width" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:180 +#: ../../godmode/setup/gis_step_2.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:123 +#: ../../include/functions_visual_map_editor.php:605 +msgid "Height" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../godmode/setup/performance.php:552 +#: ../../godmode/reporting/create_container.php:314 +#: ../../include/functions.php:2540 ../../include/functions.php:3201 +#: ../../include/ajax/module.php:165 ../../include/ajax/graph.ajax.php:140 +#: ../../operation/gis_maps/render_view.php:143 +msgid "1 hour" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 +#: ../../operation/gis_maps/render_view.php:144 +msgid "2 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 +msgid "3 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 +#: ../../include/ajax/module.php:166 +msgid "6 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 +#: ../../godmode/setup/performance.php:553 ../../include/ajax/module.php:167 +msgid "12 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 +#: ../../godmode/reporting/create_container.php:318 +#: ../../include/functions.php:2543 ../../include/ajax/module.php:168 +#: ../../include/ajax/graph.ajax.php:144 +msgid "1 day" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../godmode/setup/performance.php:555 +msgid "2 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 +msgid "4 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 +#: ../../godmode/setup/performance.php:557 +msgid "Last week" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 +#: ../../godmode/reporting/create_container.php:322 +#: ../../include/functions.php:2545 ../../include/ajax/module.php:170 +#: ../../include/ajax/graph.ajax.php:148 +msgid "15 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:195 +#: ../../godmode/setup/performance.php:559 +msgid "Last month" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +msgid "2 months" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:197 +#: ../../include/ajax/module.php:173 +msgid "6 months" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 +#: ../../include/functions.php:2549 ../../include/ajax/module.php:174 +msgid "1 year" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1605 +#: ../../enterprise/include/functions_reporting_csv.php:455 +#: ../../enterprise/include/functions_reporting_csv.php:458 +#: ../../enterprise/include/functions_reporting_csv.php:738 +#: ../../enterprise/include/functions_reporting_csv.php:769 +#: ../../enterprise/include/functions_reporting_csv.php:801 +#: ../../enterprise/include/functions_reporting_csv.php:861 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1296 +#: ../../enterprise/include/functions_reporting_csv.php:1682 +#: ../../godmode/agentes/module_manager_editor_prediction.php:159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1045 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:262 +#: ../../godmode/reporting/graph_builder.main.php:141 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:623 +msgid "Period" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:207 +msgid "Stacked" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:214 +#: ../../godmode/reporting/graph_builder.main.php:152 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:262 +#: ../../operation/reporting/graph_viewer.php:266 +msgid "Stacked area" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:216 +#: ../../godmode/reporting/graph_builder.main.php:154 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:264 +#: ../../operation/reporting/graph_viewer.php:268 +msgid "Stacked line" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:791 +msgid "Top n" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../include/functions_reports.php:770 +#: ../../include/functions_reporting.php:2376 +msgid "Exception" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:55 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:55 +msgid "Only table" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:56 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:56 +msgid "Table & Graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:57 +msgid "Only graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:42 +msgid "Global" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:205 +msgid "Elements to apply" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1005 +msgid "Last value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:792 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1584 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1007 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5583 +msgid "" +"Warning: period 0 reports cannot be used to show information back in time. " +"Information contained in this kind of reports will be always reporting the " +"most recent information" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +msgid "If you select several agents, only the common modules will be displayed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../include/functions_reporting_html.php:3720 +msgid "Sum" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:387 +#: ../../include/functions_reporting.php:7605 +msgid "Rate" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:294 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../godmode/agentes/agent_manager.php:296 +#: ../../godmode/snmpconsole/snmp_alert.php:1448 +#: ../../include/class/ModuleTemplates.class.php:887 +#: ../../operation/events/events.php:1525 +msgid "Delete selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:308 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2129 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1942 +msgid "Group by agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2512 +msgid "Show in the same row" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +msgid "Show one module per row with all its operations" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2165 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2688 +#: ../../enterprise/operation/log/log_viewer.php:369 +#: ../../godmode/netflow/nf_item_list.php:175 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2535 +#: ../../include/lib/Dashboard/Widgets/top_n.php:266 +msgid "Order" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:378 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:61 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2168 +#: ../../enterprise/operation/log/log_viewer.php:366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:61 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1959 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:62 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2175 +#: ../../enterprise/operation/log/log_viewer.php:365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:62 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1966 +#: ../../include/lib/Dashboard/Widgets/top_n.php:260 +msgid "Descending" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:342 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:392 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2182 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1973 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "By agent name" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:350 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2194 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1985 +#: ../../include/lib/Dashboard/Widgets/top_n.php:248 +msgid "Quantity (n)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:362 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2209 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2015 +#: ../../include/lib/Dashboard/Widgets/top_n.php:285 +#: ../../operation/agentes/ver_agente.php:1310 +msgid "Display" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2093 +msgid "Condition" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2285 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2097 +#: ../../include/functions_reporting.php:2398 +msgid "Everything" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2292 +msgid ">=" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:421 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2299 +msgid "<" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2313 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 +#: ../../include/functions_reporting_html.php:2531 +msgid "Not OK" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:433 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2117 +msgid "Show graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:407 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2219 +msgid "Show resume" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2431 +msgid "" +"Show a resume table with max, min, average of total modules on the report " +"bottom" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:779 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3069 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2764 +msgid "Show item in landscape format (only PDF)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:476 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:795 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2773 +msgid "Page break at the end of the item (only PDF)" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:103 +msgid "Wizard template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:77 +msgid "Advance Reporting" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 +msgid "Page orientation" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:95 +#: ../../include/functions_visual_map_editor.php:775 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464 +msgid "Vertical" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:98 +#: ../../include/functions_visual_map_editor.php:776 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463 +msgid "Horizontal" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1562 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:313 +#: ../../godmode/reporting/reporting_builder.list_items.php:388 +#: ../../godmode/reporting/create_container.php:332 +#: ../../godmode/reporting/create_container.php:441 +#: ../../godmode/reporting/create_container.php:495 +#: ../../godmode/reporting/reporting_builder.item_editor.php:982 +msgid "Time lapse" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373 +msgid "Order:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409 +msgid "" +"Show a resume table with max, min, average of total modules on the report " +"bottom:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:429 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2410 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2199 +msgid "Show address instead module name" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2411 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 +msgid "Show the main address of agent." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 +#: ../../godmode/reporting/graphs.php:87 ../../operation/menu.php:343 +msgid "Custom graphs" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:499 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1842 +#: ../../include/functions_reports.php:785 +msgid "SQL query" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2046 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:347 +msgid "Time compare (Overlapped)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2240 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2063 +msgid "Full resolution graph (TIP)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:572 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2073 +#: ../../godmode/reporting/graph_builder.main.php:165 +#: ../../include/functions.php:3806 ../../include/functions.php:3814 +msgid "Percentil" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:573 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 +msgid "" +"If this option was checked, only adding in elements that type of modules " +"support this option." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:587 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2316 +msgid "Show Summary group" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:651 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2594 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +msgid "Event Status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:677 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2621 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2429 +#: ../../operation/agentes/tactical.php:223 +msgid "Event graphs" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:681 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2433 +msgid "By agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +msgid "By user validator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:701 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2453 +msgid "By criticity" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:711 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2655 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2463 +msgid "Validated vs unvalidated" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:730 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1643 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1083 +msgid "Data range" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1064 +msgid "Projection period" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1864 +msgid "Serialized header" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2033 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1865 +msgid "The separator character is |" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2087 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1900 +msgid "Field separator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2088 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1901 +msgid "Separator for different fields in the serialized text chain" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2108 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1921 +msgid "Line separator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2109 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1922 +msgid "" +"Separator in different lines (composed by fields) of the serialized text " +"chain" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2748 +msgid "Uncompress module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:813 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3054 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2749 +msgid "Use uncompressed module data." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:104 +#: ../../enterprise/include/functions_reporting.php:38 +msgid "Wizard SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:128 +#: ../../enterprise/include/functions_reporting.php:2087 +#: ../../include/functions_reports.php:689 +msgid "Monthly S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 +#: ../../enterprise/include/functions_reporting.php:3015 +#: ../../include/functions_reports.php:693 +msgid "Weekly S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 +msgid "hourly S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 +msgid "Availability Graph S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:134 +#: ../../enterprise/include/functions_reporting.php:4864 +#: ../../include/functions_reports.php:703 +msgid "Services S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +msgid "SLA min value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "Enter possible range of values in SLA." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:255 +msgid "SLA min Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +msgid "SLA max value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:261 +msgid "SLA max Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "SLA Limit %" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:267 +msgid "SLA Limit Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:272 +msgid "Dynamic SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:279 +msgid "Inverse SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:288 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2754 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2591 +msgid "Failover mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2592 +msgid "" +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 +msgid "Failover type" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2779 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2616 +msgid "Failover normal" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2791 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2628 +msgid "Failover simple" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2536 +msgid "SLA items sorted by fulfillment value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1656 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 +msgid "Only display wrong SLAs" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:414 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:538 +msgid "Dynamic SLA can not be Inverse" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:543 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:547 +msgid "SLA Limit value is needed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:164 +#: ../../enterprise/include/functions_reporting.php:7009 +#: ../../enterprise/include/functions_reporting.php:7065 +#: ../../godmode/reporting/reporting_builder.php:3084 +#: ../../operation/reporting/reporting_viewer.php:99 +msgid "Item editor" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:133 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:158 +#: ../../godmode/reporting/reporting_builder.php:3080 +#: ../../operation/reporting/reporting_viewer.php:93 +msgid "List items" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 +msgid "List templates" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:376 +#: ../../godmode/reporting/reporting_builder.php:793 +#: ../../operation/search_reports.php:36 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:377 +#: ../../godmode/reporting/reporting_builder.php:794 +#: ../../operation/search_reports.php:37 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:378 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:379 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:380 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:196 +#: ../../operation/agentes/exportdata.php:362 +msgid "CSV" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:433 +#: ../../godmode/reporting/reporting_builder.php:933 +msgid "HTML view" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:434 +#: ../../godmode/reporting/reporting_builder.php:940 +msgid "Export to XML" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:435 +#: ../../enterprise/operation/reporting/custom_reporting.php:60 +#: ../../include/class/Diagnostics.class.php:141 +msgid "Export to PDF" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 +#: ../../enterprise/operation/reporting/custom_reporting.php:61 +msgid "Export to JSON" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:482 +msgid "You haven't created templates yet." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +msgid "Generate a dynamic report" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 +msgid "Period " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:586 +msgid "Set start and end date" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:599 +#: ../../include/ajax/module.php:205 +#: ../../operation/agentes/datos_agente.php:198 +#: ../../operation/events/events_list.php:867 +msgid "Timestamp from:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:617 +#: ../../include/ajax/module.php:225 +#: ../../operation/agentes/datos_agente.php:204 +#: ../../operation/events/events_list.php:870 +msgid "Timestamp to:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:636 +msgid "Monthly SLA period" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:636 +msgid "This field only applies in case of Monthly SLA item." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:678 +#: ../../enterprise/include/class/Omnishell.class.php:844 +msgid "Add agents" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:685 +msgid "Undo agents" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:721 +msgid "RegEx agent filter" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:737 +msgid "Generate" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1083 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1105 +msgid "Please set agent or agent regex distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1113 +msgid "No agent matches regular expression " +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:156 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3380 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3856 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4001 +#: ../../enterprise/operation/log/log_viewer.php:346 +msgid "Exact match" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Decrease Weight" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Increase Weight" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:111 +#: ../../enterprise/godmode/reporting/visual_console_template.php:125 +msgid "visual console has not been selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:117 +msgid "Error. Error created template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:119 +msgid "Successfully created template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:131 +msgid "Error. Error delete template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:133 +msgid "Successfully delete template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:155 +msgid "Create From" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:158 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:188 +msgid "Create New Template" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:53 +#: ../../enterprise/godmode/reporting/mysql_builder.php:144 +msgid "Custom Mysql template builder" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:87 +msgid "Create custom SQL" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +msgid ": Create new custom" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:115 +msgid "Create new custom" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 +msgid "Successfully operation" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 +msgid "Could not be operation" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:165 +#: ../../enterprise/include/functions_reporting_csv.php:899 +#: ../../include/functions_reporting.php:5134 +msgid "SQL" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1471 +#: ../../godmode/reporting/reporting_builder.php:3164 +msgid "Successfull action" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1472 +#: ../../godmode/servers/modificar_server.php:115 +#: ../../godmode/servers/modificar_server.php:126 +msgid "Unsuccessfull action" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1489 +#: ../../godmode/reporting/reporting_builder.item_editor.php:787 +msgid "Item Editor" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1670 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1110 +msgid "Current month" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +msgid "Working time" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1781 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1795 +msgid "Select server" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 +msgid "" +"Case insensitive regular expression for agent name. For example: Network.* " +"will match with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1904 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3508 +msgid "" +"Case insensitive regular expression or string for module name. For example: " +"if you use this field with \"Module exact match\" enabled then this field " +"has to be fulfilled with the literally string of the module name, if not you " +"can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " +"usage in matchine 1." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 +msgid "Module exact match" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1927 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3211 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3286 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3433 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +msgid "Check it if you want to match module name literally" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1942 +msgid "Hide items without data" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1943 +msgid "Check it if you want not show items without data" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1956 +#: ../../godmode/reporting/create_container.php:448 +#: ../../godmode/reporting/create_container.php:590 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1712 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.elements.php:481 +#: ../../include/functions_visual_map_editor.php:363 +#: ../../include/functions_visual_map_editor.php:366 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:609 +#: ../../include/functions_reports.php:554 +#: ../../include/functions_reports.php:641 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_reporting.php:7680 +msgid "Custom graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +msgid "Query SQL" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2003 +msgid "" +"This query should always return a field called label and a field called " +"value. Example: SELECT alias AS label, total_count AS value FROM tagente" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2015 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1852 +msgid "Max items" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2048 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1824 +msgid "Custom SQL template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2066 +msgid "SQL preview" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2071 +#: ../../enterprise/include/functions_reporting_csv.php:2173 +#: ../../enterprise/include/functions_reporting_csv.php:2187 +#: ../../extensions/api_checker.php:224 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1884 +#: ../../godmode/events/event_responses.editor.php:138 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../operation/gis_maps/ajax.php:316 +msgid "URL" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2226 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2032 +#: ../../include/functions_reporting_html.php:3717 +#: ../../include/functions_reporting.php:1397 +msgid "Avg" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2339 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2131 +msgid "Select fields to show" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 +#: ../../enterprise/include/functions_reporting_csv.php:466 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 +#: ../../include/functions_reporting_html.php:3041 +msgid "Total time" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2355 +#: ../../enterprise/include/functions_reporting_csv.php:470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2147 +#: ../../include/functions_reporting_html.php:3047 +msgid "Time failed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:474 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2155 +msgid "Time in OK status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2371 +#: ../../enterprise/include/functions_reporting_csv.php:478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2163 +msgid "Time in unknown status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2383 +#: ../../enterprise/include/functions_reporting_csv.php:482 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2175 +msgid "Time of not initialized module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 +#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2187 +msgid "Time of downtime" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2287 +msgid "

Select fields to show

" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2457 +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2247 +#: ../../include/functions_reporting_html.php:3126 +msgid "Total checks" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2465 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2255 +#: ../../include/functions_reporting_html.php:3132 +msgid "Checks failed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2473 +#: ../../enterprise/include/functions_reporting_csv.php:502 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2263 +msgid "Checks in OK status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2485 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2275 +msgid "Unknown checks" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 +#: ../../enterprise/include/functions_reporting_csv.php:614 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2295 +#: ../../include/functions_reporting_html.php:3331 +msgid "Agent max value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2303 +msgid "Agent min values" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2493 +msgid "Height (dynamic graphs)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2709 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2477 +msgid "Query History Database" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 +msgid "Priority mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2726 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2563 +msgid "Priority ok mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2738 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2575 +msgid "Priority unknown mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 +msgid "Modules to match" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2809 +msgid "Select the modules to match when create a report for agents" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2909 +msgid "Modules to match (Free text)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911 +msgid "Free text to filter the modules of agents when apply this template." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2928 +msgid "Create a graph for each agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2930 +msgid "" +"If it is checked, the regexp or name of modules match only each to each to " +"agent, instead create a big graph with all modules from all agents." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2957 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 +msgid "Calculate for custom intervals" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2664 +msgid "Time lapse intervals" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2971 +msgid "" +"Lapses of time in which the period is divided to make more precise " +"calculations" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2709 +msgid "Table only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3026 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 +msgid "Graph only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +msgid "Graph and table" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3098 +#: ../../godmode/netflow/nf_item_list.php:284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2788 +msgid "Create item" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3107 +#: ../../extensions/agents_modules.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2795 +#: ../../include/functions_visual_map_editor.php:1324 +msgid "Update item" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3156 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2882 +msgid "SLA Min. (value)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2887 +msgid "SLA Max. (value)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3166 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2892 +msgid "SLA Limit (%)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3183 +msgid "Please save the SLA template for start to add items in this list." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3865 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4010 +msgid "Not literally" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3269 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3499 +msgid "" +"Case insensitive regular expression for agent name. For example: Network* " +"will match with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3285 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514 +msgid "Literal module name forced" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3573 +#: ../../godmode/reporting/create_container.php:386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1410 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3105 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3233 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3504 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3591 +#: ../../include/functions_html.php:4194 +msgid "Select an Agent first" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3405 +msgid "Please save the template to start adding items into the list." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3891 +msgid "Name and SLA limit should not be empty" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:87 +#: ../../godmode/modules/module_list.php:57 +#: ../../godmode/groups/configure_group.php:121 +#: ../../godmode/groups/group_list.php:683 +#: ../../godmode/setup/os.builder.php:37 +#: ../../godmode/reporting/visual_console_builder.elements.php:254 +#: ../../include/functions_visual_map_editor.php:68 +#: ../../include/functions_visual_map_editor.php:1305 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2029 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:383 +#: ../../include/lib/Dashboard/Widgets/module_status.php:373 +#: ../../operation/visual_console/view.php:255 +msgid "Icon" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:125 +#: ../../include/graphs/export_data.php:74 +msgid "Selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:135 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 +msgid "Push the selected services into the list" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:145 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:146 +msgid "Remove the services from the list" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:201 +msgid "Icon preview" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:267 +msgid "The services list is empty" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:279 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:292 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:305 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +msgid "Ascendent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:283 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:309 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +msgid "Descent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:362 +#: ../../godmode/netflow/nf_item_list.php:230 +#: ../../godmode/netflow/nf_item_list.php:232 +msgid "Move to up" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:372 +#: ../../godmode/netflow/nf_item_list.php:228 +#: ../../godmode/netflow/nf_item_list.php:233 +msgid "Move to down" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:409 +#: ../../enterprise/include/class/VMware.app.php:230 +#: ../../enterprise/include/class/SAP.app.php:176 +#: ../../enterprise/include/class/Aws.cloud.php:792 +#: ../../enterprise/include/class/MySQL.app.php:195 +#: ../../enterprise/include/class/Oracle.app.php:187 +#: ../../godmode/wizards/HostDevices.class.php:406 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:178 +msgid "Command Mysqldump not found." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:282 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:295 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:375 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:392 +msgid "Failed to create task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:401 +msgid "I do not know what you want to do" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:418 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:587 +msgid "You have no access to manage console tasks." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:432 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:500 +msgid "Create new console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:455 +#: ../../enterprise/include/class/Azure.cloud.php:661 +#: ../../enterprise/include/class/VMware.app.php:410 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:930 +#: ../../enterprise/include/class/Omnishell.class.php:1296 +#: ../../enterprise/include/class/SAP.app.php:380 +#: ../../enterprise/include/class/Aws.cloud.php:1011 +#: ../../enterprise/include/class/MySQL.app.php:370 +#: ../../enterprise/include/class/Oracle.app.php:356 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:247 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:297 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:740 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:350 +#: ../../godmode/wizards/HostDevices.class.php:642 +#: ../../godmode/wizards/HostDevices.class.php:743 +#: ../../godmode/wizards/Wizard.main.php:413 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:166 +#: ../../include/class/CustomNetScan.class.php:313 +#: ../../include/class/CustomNetScan.class.php:421 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:475 +msgid "Updating console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:623 +msgid "Next Execution" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:178 +#: ../../enterprise/godmode/wizards/Applications.class.php:148 +#: ../../enterprise/include/class/Azure.cloud.php:179 +#: ../../enterprise/include/class/DeploymentCenter.class.php:550 +#: ../../enterprise/include/class/Aws.cloud.php:137 ../../godmode/menu.php:62 +#: ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:206 +#: ../../enterprise/godmode/wizards/Applications.class.php:177 +msgid "" +"All company names used here are for identification purposes only. Use of " +"these names, logos, and brands does not imply endorsement." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:232 +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#, php-format +msgid "%s credentials" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "Manage accounts" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:276 +msgid "Cloud tool full path" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:337 +msgid "Select a set of credentials from the list" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:350 +#, php-format +msgid "Path %s is not executable." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:395 +msgid "Account disconnected" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:397 +msgid "Failed disconnecting account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:471 +msgid "Credentials successfully updated" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:473 +msgid "Failed updating credentials process" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:48 +msgid "View nodes" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +msgid "Manage Pandora DB HA" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +msgid "" +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:123 +msgid "Node label" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:124 +#: ../../operation/tree.php:188 +msgid "Agent status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:125 +msgid "DB Repl." +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:126 +msgid "DB Status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:128 +#: ../../extensions/quick_shell.php:159 +#: ../../godmode/agentes/module_manager_editor_network.php:469 +msgid "SSH" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:129 +msgid "DB Role" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:130 +msgid "Cluster Role" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:132 +msgid "Seconds behind master" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:133 +msgid "Virtual IP" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:134 +msgid "SQL version" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:135 +msgid "DB version" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:137 +msgid "Pending action" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:262 +msgid "Show/ edit node" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:277 +msgid "Put node into standby status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:291 +msgid "Force node resync" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:317 +msgid "Put node into online status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:331 +msgid "Show cluster details" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:348 +msgid "Remove node from this list" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:371 +msgid "Register node" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:409 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do " +"you want to continue?" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be " +"automatically unattached" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "" +"Can't be created export target: User and password must be filled with FTP " +"mode" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:34 +msgid "Credential Boxes List" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:39 +msgid "Credential Boxes" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:290 +#: ../../enterprise/godmode/servers/list_satellite.php:68 +msgid "No Data" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:136 +msgid "Error: The conf file of server is not readble." +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:140 +msgid "Error: The conf file of server is not writable." +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 +msgid "Delete remote conf server files" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +msgid "" +"Delete this conf file implies that server will send back local config to " +"console" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export_form.php:79 +#: ../../include/functions_servers.php:630 +#: ../../include/functions_servers.php:1214 +msgid "Export server" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +msgid "Extra options" +msgstr "" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:174 +#: ../../enterprise/include/functions_cron.php:243 +#: ../../enterprise/include/functions_cron.php:280 +#: ../../enterprise/include/functions_cron.php:309 +#: ../../enterprise/include/functions_cron.php:353 +#: ../../enterprise/include/functions_cron.php:415 +msgid "Report to build" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:182 +#: ../../enterprise/include/functions_cron.php:227 +#: ../../enterprise/operation/reporting/custom_reporting.php:96 +msgid "Send to emails (separated by comma)" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:231 +#: ../../enterprise/operation/reporting/custom_reporting.php:104 +#: ../../godmode/setup/news.php:175 ../../godmode/setup/news.php:236 +#: ../../operation/messages/message_list.php:167 +#: ../../operation/messages/message_edit.php:321 +msgid "Subject" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:235 +#: ../../enterprise/operation/reporting/custom_reporting.php:112 +#: ../../operation/messages/message_edit.php:331 +msgid "Message" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:195 +msgid "Report Type" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:202 +#: ../../enterprise/include/functions_cron.php:331 +msgid "Template to build" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:219 +#: ../../enterprise/include/functions_tasklist.php:279 +#: ../../include/functions_cron.php:558 +msgid "Report per agent" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:251 +#: ../../enterprise/include/functions_cron.php:265 +#: ../../enterprise/include/functions_cron.php:288 +#: ../../enterprise/include/functions_cron.php:354 +#: ../../enterprise/include/functions_cron.php:416 +msgid "Save to disk into path" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:252 +#: ../../enterprise/include/functions_cron.php:289 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "" + +#: ../../enterprise/include/functions_cron.php:273 +#: ../../enterprise/include/functions_tasklist.php:308 +#: ../../include/functions_cron.php:586 +msgid "Custom script" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:310 +#: ../../enterprise/include/functions_cron.php:332 +msgid "Send to email" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:311 +msgid "Send custom report by email" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report (from template) by email" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:355 +#: ../../enterprise/include/functions_cron.php:417 +msgid "Save custom report to disk" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:375 +msgid "Backup Pandora database" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:395 +msgid "Execute custom script" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:418 +msgid "Save custom xml report to disk" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:464 +msgid "Not scheduled" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:465 +#: ../../include/functions_netflow.php:1592 +msgid "Hourly" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:466 +#: ../../godmode/agentes/module_manager_editor_prediction.php:163 +#: ../../include/functions_netflow.php:1593 +msgid "Daily" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:467 +#: ../../godmode/agentes/module_manager_editor_prediction.php:161 +#: ../../godmode/agentes/planned_downtime.editor.php:734 +msgid "Weekly" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:468 +#: ../../godmode/agentes/module_manager_editor_prediction.php:162 +#: ../../godmode/agentes/planned_downtime.editor.php:735 +msgid "Monthly" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:469 +msgid "Yearly" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:761 +#: ../../enterprise/include/functions_cron.php:785 +#: ../../enterprise/operation/reporting/custom_reporting.php:107 +#: ../../enterprise/operation/reporting/custom_reporting.php:115 +msgid "This is an optional field" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1178 +#: ../../enterprise/include/functions_tasklist.php:221 +#: ../../enterprise/include/functions_tasklist.php:343 +#: ../../enterprise/include/functions_tasklist.php:374 +#: ../../extensions/resource_exportation.php:423 +#: ../../include/functions_cron.php:505 ../../include/functions_cron.php:620 +#: ../../include/functions_cron.php:650 +#: ../../include/lib/Dashboard/Widgets/reports.php:232 +#: ../../include/lib/Dashboard/Widgets/reports.php:281 +msgid "Report" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1184 +#: ../../enterprise/include/functions_cron.php:1352 +msgid "Greetings" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1186 +#: ../../enterprise/include/functions_cron.php:1354 +msgid "Attached to this email there's a PDF file of the" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1187 +#: ../../enterprise/include/functions_cron.php:1355 +msgid "report" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1190 +#: ../../enterprise/include/functions_cron.php:1358 +#: ../../mobile/include/functions_web.php:82 +#: ../../mobile/include/ui.class.php:306 +msgid "Generated at" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1192 +#: ../../enterprise/include/functions_cron.php:1360 +msgid "Thanks for your time." +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1194 +#: ../../enterprise/include/functions_cron.php:1362 +msgid "Best regards, Pandora FMS" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1196 +#: ../../enterprise/include/functions_cron.php:1364 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not " +"reply." +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1892 +#: ../../enterprise/include/functions_cron.php:1902 +#: ../../enterprise/include/functions_cron.php:1911 +msgid "Error while executing task: " +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:53 +#: ../../include/class/ConsoleSupervisor.php:2247 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:55 +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2250 +msgid "Please, add the following line to your crontab file:" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:71 +#: ../../include/class/ConsoleSupervisor.php:2263 +msgid "Last execution" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:74 +msgid "Please check process is no locked." +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../enterprise/include/functions_tasklist.php:509 +msgid "There are no console task defined yet." +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:171 +#: ../../include/functions_cron.php:458 +msgid "Last run" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:200 +#: ../../enterprise/include/functions_tasklist.php:243 +#: ../../enterprise/include/functions_tasklist.php:295 +#: ../../enterprise/include/functions_tasklist.php:322 +#: ../../enterprise/include/functions_tasklist.php:359 +#: ../../enterprise/include/functions_tasklist.php:390 +#: ../../enterprise/include/functions_tasklist.php:414 +#: ../../include/functions_cron.php:481 ../../include/functions_cron.php:519 +#: ../../include/functions_cron.php:570 ../../include/functions_cron.php:596 +#: ../../include/functions_cron.php:632 ../../include/functions_cron.php:662 +msgid "Force run" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:223 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/include/functions_reporting_csv.php:985 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1071 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/operation/reporting/custom_reporting.php:81 +#: ../../include/functions_cron.php:507 +msgid "Report type" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:514 +msgid "Console Tasks" +msgstr "" + +#: ../../enterprise/include/functions_networkmap.php:934 +msgid "Map not found." +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:46 +msgid "SNMP enabled" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:88 +msgid "SNMP communities to try with" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:90 +msgid "" +"You can specify several values, separated by commas, for example: public," +"mysecret,1234" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:218 +msgid "WMI enabled" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:231 +msgid "Remote commands enabled" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:255 +#: ../../enterprise/include/functions_hostdevices.php:258 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1098 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1225 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1228 +#: ../../enterprise/include/class/SAP.app.php:580 +#: ../../enterprise/include/class/SAP.app.php:583 +msgid "No credentials available" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:256 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1096 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1226 +#: ../../enterprise/include/class/SAP.app.php:581 +msgid "Manage credentials" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:268 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +msgid "Credentials to try with" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:300 +msgid "OS detection" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:312 +msgid "Name resolution" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:323 +msgid "Parent detection" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:334 +msgid "Parent recursion" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:345 +msgid "VLAN enabled" +msgstr "" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:179 +msgid "The phase does not have a defined script" +msgstr "" + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:233 +msgid "Edit Data" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:73 +msgid "Error accesing to API, auth error." +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:78 +msgid "Error accesing to API." +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:83 +msgid "Error could not resolve the host." +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:88 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:114 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:135 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:157 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:174 +msgid "Unknown error" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:99 +msgid "Database credentials not found" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:104 +msgid "Error connecting to the specified host" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:109 +msgid "Connected to the host, but cannot found the specified database" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:125 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:152 +msgid "Server connection failed" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:130 +msgid "MR versions does not match" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:146 +msgid "Last event replication" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:164 +msgid "Agent cache activated" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:169 +msgid "Agent cache failed" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:88 +msgid "avg" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:89 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3267 +msgid "max" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:90 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 +msgid "min" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:91 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3269 +msgid "sum" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:74 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +msgid "Group name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:99 +msgid "OS name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:111 +msgid "Custom field name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:113 +msgid "Custom field value" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:120 +msgid "IP Network range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:126 +msgid "Script" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Arguments" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:134 +msgid "Unknown form" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:211 +#: ../../include/functions_treeview.php:760 +#: ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:480 +msgid "Custom field" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:212 +msgid "IP range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +msgid "Script output (> 0)" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:411 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:520 +#: ../../godmode/snmpconsole/snmp_alert.php:1047 +#: ../../godmode/snmpconsole/snmp_alert.php:1266 +msgid "Alert action" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:417 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../extensions/agents_alerts.php:239 +#: ../../godmode/alerts/configure_alert_template.php:661 +#: ../../godmode/alerts/alert_list.builder.php:109 +msgid "Default action" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:431 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:540 +msgid "Script path" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 +msgid "Script argument" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443 +#: ../../godmode/alerts/alert_list.list.php:657 +#: ../../godmode/alerts/alert_list.list.php:1015 +msgid "Update action" +msgstr "" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:33 +#: ../../enterprise/include/functions_reporting_csv.php:393 +#: ../../enterprise/include/functions_reporting_csv.php:415 +#: ../../enterprise/include/functions_reporting_csv.php:446 +#: ../../enterprise/include/functions_reporting_csv.php:648 +#: ../../enterprise/include/functions_reporting_csv.php:662 +#: ../../enterprise/include/functions_reporting_csv.php:676 +#: ../../enterprise/include/functions_reporting_csv.php:696 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:756 +#: ../../enterprise/include/functions_reporting_csv.php:788 +#: ../../enterprise/include/functions_reporting_csv.php:825 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:945 +#: ../../enterprise/include/functions_reporting_csv.php:972 +#: ../../enterprise/include/functions_reporting_csv.php:1003 +#: ../../enterprise/include/functions_reporting_csv.php:1058 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1162 +#: ../../enterprise/include/functions_reporting_csv.php:1217 +#: ../../enterprise/include/functions_reporting_csv.php:1246 +#: ../../enterprise/include/functions_reporting_csv.php:1283 +#: ../../enterprise/include/functions_reporting_csv.php:1409 +#: ../../enterprise/include/functions_reporting_csv.php:1525 +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1725 +#: ../../enterprise/include/functions_reporting_csv.php:1793 +#: ../../enterprise/include/functions_reporting_csv.php:1941 +#: ../../enterprise/include/functions_reporting_csv.php:1967 +#: ../../enterprise/include/functions_reporting_csv.php:2053 +#: ../../enterprise/include/functions_reporting_csv.php:2084 +#: ../../enterprise/include/functions_reporting_csv.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2152 +#: ../../enterprise/include/functions_reporting_csv.php:2174 +#: ../../enterprise/include/functions_reporting_csv.php:2215 +#: ../../enterprise/include/functions_reporting_csv.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:2302 +#: ../../godmode/setup/setup_integria.php:256 +#: ../../godmode/setup/setup_integria.php:379 +#: ../../include/lib/Dashboard/Widget.php:497 +#: ../../operation/agentes/estado_generalagente.php:584 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:194 +msgid "Title" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:43 +msgid "Capture regexp" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:63 +#: ../../enterprise/include/functions_reporting_pdf.php:483 +#: ../../enterprise/include/functions_reporting_pdf.php:539 +#: ../../include/functions_reporting_html.php:2778 +#: ../../include/functions_reporting_html.php:2832 +msgid "Average" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:153 +msgid "Empty ip or port" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:170 +msgid "Curl Error: " +msgstr "" + +#: ../../enterprise/include/process_reset_pass.php:47 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:130 +#: ../../general/login_page.php:133 ../../general/login_page.php:149 +msgid "Docs" +msgstr "" + +#: ../../enterprise/include/process_reset_pass.php:150 +#: ../../enterprise/include/process_reset_pass.php:153 +#: ../../enterprise/include/reset_pass.php:130 +#: ../../enterprise/include/reset_pass.php:133 +#: ../../include/functions_config.php:2123 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "" + +#: ../../enterprise/include/functions_log.php:268 +msgid "Lines" +msgstr "" + +#: ../../enterprise/include/functions_inventory.php:66 +#: ../../enterprise/include/functions_inventory.php:698 +msgid "No changes found" +msgstr "" + +#: ../../enterprise/include/functions_inventory.php:92 +msgid "Get CSV file" +msgstr "" + +#: ../../enterprise/include/functions_inventory.php:715 +#: ../../enterprise/include/functions_inventory.php:778 +#: ../../include/functions_reporting_html.php:1400 +msgid "Added" +msgstr "" + +#: ../../enterprise/include/functions_inventory.php:721 +#: ../../enterprise/include/functions_inventory.php:786 +#: ../../include/functions_reporting_html.php:1411 +#: ../../include/functions_filemanager.php:369 +msgid "Deleted" +msgstr "" + +#: ../../enterprise/include/functions_transactional.php:588 +msgid "Error in dependencies field" +msgstr "" + +#: ../../enterprise/include/functions_transactional.php:597 +msgid "Error in enables field" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:47 +#, php-format +msgid "Fail create the directory: %s" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:73 +msgid "No files in collection" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:81 +msgid "File of collection is bigger than the limit (" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:79 +msgid "Select inventory module" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:65 +#: ../../include/class/Diagnostics.class.php:2121 +#: ../../include/class/Diagnostics.class.php:2239 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:467 +#: ../../enterprise/include/functions_reporting_pdf.php:499 +#: ../../enterprise/include/functions_reporting_pdf.php:525 +#: ../../enterprise/include/functions_reporting_pdf.php:550 +#: ../../enterprise/include/functions_reporting_pdf.php:553 +#: ../../enterprise/include/functions_reporting_pdf.php:560 +#: ../../enterprise/include/functions_reporting_csv.php:1091 +#: ../../include/functions_reporting_html.php:2762 +#: ../../include/functions_reporting_html.php:2790 +#: ../../include/functions_reporting_html.php:2818 +#: ../../include/functions_reporting_html.php:2839 +#: ../../include/functions_reporting_html.php:2842 +#: ../../include/functions_reporting_html.php:2847 +#: ../../include/functions_reporting.php:4984 +#: ../../include/functions_reporting.php:5007 +#: ../../include/functions_reporting.php:5011 +#: ../../include/functions_reporting.php:5015 +#: ../../include/functions_reporting.php:5019 +msgid "Maximun" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:475 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +#: ../../include/functions_reporting_html.php:2770 +#: ../../include/functions_reporting_html.php:2825 +msgid "Minimun" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:524 +#: ../../enterprise/include/functions_reporting_pdf.php:531 +#: ../../enterprise/include/functions_reporting_pdf.php:538 +#: ../../enterprise/include/functions_reporting_pdf.php:552 +#: ../../enterprise/include/functions_reporting_pdf.php:557 +#: ../../enterprise/include/functions_reporting_csv.php:1036 +#: ../../enterprise/include/functions_reporting_csv.php:1091 +#: ../../enterprise/include/functions_reporting_csv.php:1195 +#: ../../include/functions_reporting_html.php:2817 +#: ../../include/functions_reporting_html.php:2824 +#: ../../include/functions_reporting_html.php:2831 +#: ../../include/functions_reporting_html.php:2841 +#: ../../include/functions_reporting_html.php:2846 +#: ../../include/functions_reporting.php:5002 +msgid "Lapse" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:841 +#: ../../include/functions_reporting_html.php:1617 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:858 +#: ../../include/functions_reporting_html.php:1634 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:875 +#: ../../include/functions_reporting_html.php:1651 +#, php-format +msgid "%s in %s : WARNING" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:892 +#: ../../include/functions_reporting_html.php:1668 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:909 +#: ../../include/functions_reporting_html.php:1704 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:926 +#: ../../include/functions_reporting_html.php:1687 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1507 +#: ../../enterprise/include/functions_reporting_csv.php:2006 +#: ../../enterprise/include/functions_reporting_csv.php:2010 +#: ../../include/functions_reporting_html.php:120 +msgid "Generated" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1511 +#: ../../include/functions_reporting_html.php:123 +msgid "Report date" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1530 +#: ../../include/functions_reporting_html.php:128 +#: ../../operation/reporting/reporting_viewer.php:215 +msgid "Items period before" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1560 +msgid "Contents" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1704 +#: ../../enterprise/include/functions_reporting_csv.php:807 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../godmode/agentes/planned_downtime.list.php:148 +#: ../../include/functions_reporting_html.php:2911 +#: ../../include/functions_snmp.php:423 ../../include/functions_snmp.php:431 +#: ../../include/rest-api/index.php:320 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:459 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:519 +#: ../../operation/agentes/gis_view.php:218 +msgid "To" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1708 +#: ../../include/functions_reporting_html.php:75 +#: ../../include/functions_reporting_html.php:4507 +#: ../../include/functions_treeview.php:323 +msgid "Last data" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1571 +#: ../../enterprise/include/class/AgentRepository.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:1033 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:813 +#: ../../include/ajax/snmp_browser.ajax.php:220 +#: ../../include/functions_ui.php:287 +#: ../../include/class/ConfigPEN.class.php:731 +#: ../../include/class/HelpFeedBack.class.php:358 +#: ../../include/class/Diagnostics.class.php:2078 +#: ../../include/class/CredentialStore.class.php:1058 +#: ../../include/class/ModuleTemplates.class.php:1312 +#: ../../include/class/AgentWizard.class.php:680 +#: ../../operation/visual_console/view.php:590 +msgid "Success" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:680 +msgid "There was an error retrieving the visual map information" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:683 +msgid "No services selected" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:197 +msgid "No description" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:323 +msgid "Restoring a backup" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:325 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "" + +#: ../../enterprise/include/functions_backup.php:326 +msgid "" +"It's a complex operation that needs human intervation to avoid system " +"failures and data loosing" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:327 +msgid "To restore the selected backup, please follow these steps" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:333 +msgid "Open a root shell in your system located at " +msgstr "" + +#: ../../enterprise/include/functions_backup.php:337 +msgid "Connect to MySQL database using the following command" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:344 +msgid "Create a new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:361 +msgid "Restore the backup" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:369 +msgid "Modify console configuration to use this new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:370 +msgid "Open configuration file" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:374 +#: ../../enterprise/include/functions_backup.php:386 +msgid "Find" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:376 +#: ../../enterprise/include/functions_backup.php:389 +msgid "and replace with" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:383 +msgid "Modify servers configuration to use this new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:384 +msgid "Find servers configuration file and replace the following lines" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:396 +msgid "Restart the servers and login again into the console" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:539 +#: ../../enterprise/include/functions_backup.php:540 +#: ../../godmode/agentes/planned_downtime.editor.php:56 +#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/category/category.php:57 ../../include/functions_html.php:1224 +#: ../../include/functions_html.php:1225 ../../include/functions_html.php:1329 +#: ../../include/functions_html.php:1330 ../../include/functions_html.php:1509 +#: ../../include/functions_html.php:1510 +#: ../../operation/snmpconsole/snmp_statistics.php:48 +#: ../../operation/snmpconsole/snmp_view.php:81 +#: ../../operation/events/events.php:792 +msgid "List" +msgstr "" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "" + +#: ../../enterprise/include/functions_alert_event.php:1133 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:841 +msgid "Module alert" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:53 +#: ../../enterprise/include/functions_setup.php:96 +msgid "Log collector" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:122 +msgid "Metaconsole link status" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:154 +msgid "DB connection" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:176 +msgid "This console is joining a metaconsole." +msgstr "" + +#: ../../enterprise/include/functions_setup.php:184 +msgid "This console is not joining any metaconsole." +msgstr "" + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:235 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:228 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:174 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:521 +#: ../../include/functions_filemanager.php:654 +msgid "Image" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:388 +msgid "Event report agent" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:390 +msgid "Event report group" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:414 +msgid "Event report module" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:445 +#: ../../enterprise/include/functions_reporting.php:1076 +#: ../../include/functions_reports.php:799 +#: ../../include/functions_reporting.php:6282 +#: ../../include/functions_reporting.php:6597 +msgid "Availability" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:489 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "% OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../include/functions_reporting_html.php:559 +msgid "Checks Failed" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:615 +msgid "Maximum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:619 +#: ../../include/functions_reporting_html.php:3333 +msgid "Agent min value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:620 +msgid "Minimum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:623 +msgid "Average value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:647 +#: ../../include/functions_reporting.php:2151 +msgid "Inventory Changes" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:675 +#: ../../include/functions_reports.php:710 +msgid "Prediction date" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:695 +#: ../../include/functions_reporting.php:4620 +msgid "Projection Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Serialized data " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:787 +#: ../../include/functions_reporting.php:1401 +#: ../../operation/snmpconsole/snmp_statistics.php:131 +#: ../../operation/snmpconsole/snmp_statistics.php:199 +#, php-format +msgid "Top %d" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:824 +#: ../../include/functions_reporting.php:2865 +msgid "Group Report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:231 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:853 +#: ../../mobile/operation/groups.php:137 +#: ../../include/functions_reporting_html.php:4583 +#: ../../include/class/Diagnostics.class.php:540 +#: ../../include/functions_reporting.php:9226 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:607 +#: ../../operation/tree.php:355 +msgid "Total agents" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Uknown agents" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:232 +#: ../../godmode/groups/group_list.php:854 +#: ../../godmode/module_library/module_library_view.php:141 +#: ../../include/class/Diagnostics.class.php:544 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:608 +#: ../../operation/tree.php:356 +msgid "Total modules" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../include/functions_reporting.php:9080 +msgid "Defined alerts" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/operation/services/services.treeview_services.php:236 +#: ../../enterprise/operation/services/services.treeview_services.php:237 +#: ../../enterprise/operation/services/services.treeview_services.php:238 +#: ../../godmode/groups/group_list.php:858 +#: ../../godmode/groups/group_list.php:859 +#: ../../godmode/groups/group_list.php:860 +#: ../../include/functions_graph.php:2468 +#: ../../include/functions_reporting.php:9094 +#: ../../include/functions_reporting.php:9110 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:612 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:614 +#: ../../operation/tree.php:360 ../../operation/tree.php:361 +#: ../../operation/tree.php:362 +msgid "Fired alerts" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Last 8 hours events" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:841 +#: ../../include/functions_reports.php:758 +#: ../../include/functions_reports.php:764 +msgid "Group report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:916 +msgid "Illegal query or any other error" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:938 +#: ../../include/functions_reports.php:653 +msgid "SQL vertical bar graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:940 +msgid "SQL horizontal bar graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../include/functions_reports.php:657 +msgid "SQL pie graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:971 +#: ../../enterprise/include/functions_reporting_csv.php:989 +#: ../../enterprise/include/functions_reporting_csv.php:991 +#: ../../include/functions_reports.php:739 +#: ../../include/functions_reporting.php:4858 +#: ../../include/functions_reporting.php:7592 +msgid "Summatory" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1021 +#: ../../enterprise/include/functions_reporting_csv.php:1023 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1031 +msgid "Minimum Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1036 +#: ../../include/functions_reporting.php:7596 +msgid "Minimum" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/functions_reporting_csv.php:1078 +#: ../../enterprise/include/functions_reporting_csv.php:1084 +#: ../../enterprise/include/functions_reporting_csv.php:1086 +msgid "Maximun Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1112 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1130 +#: ../../enterprise/include/functions_reporting_csv.php:1141 +#: ../../include/functions_reporting_html.php:2914 +#: ../../include/functions_reports.php:747 +#: ../../include/functions_reporting.php:7217 +msgid "Increment" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../include/functions_reporting_html.php:2912 +msgid "From data" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../include/functions_reporting_html.php:2913 +msgid "To data" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1132 +#: ../../enterprise/include/functions_reporting_csv.php:1143 +#: ../../include/functions_reporting_html.php:2941 +msgid "Negative increase: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1134 +#: ../../enterprise/include/functions_reporting_csv.php:1145 +#: ../../include/functions_reporting_html.php:2943 +msgid "Positive increase: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1136 +#: ../../enterprise/include/functions_reporting_csv.php:1147 +#: ../../include/functions_reporting_html.php:2945 +msgid "Neutral increase: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1161 +#: ../../enterprise/include/functions_reporting_csv.php:1180 +#: ../../enterprise/include/functions_reporting_csv.php:1182 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../enterprise/include/functions_reporting_csv.php:1190 +#: ../../include/functions_reporting.php:4854 +msgid "AVG. Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1195 +msgid "AVG" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1216 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1236 +#: ../../include/functions_reporting.php:4342 +msgid "Monitor Report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "% Wrong" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1245 +msgid "Simple Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1305 +#: ../../enterprise/include/functions_reporting_csv.php:1351 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1543 +#: ../../enterprise/include/functions_reporting_csv.php:1811 +msgid "SLA Max" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1306 +#: ../../enterprise/include/functions_reporting_csv.php:1352 +#: ../../enterprise/include/functions_reporting_csv.php:1425 +#: ../../enterprise/include/functions_reporting_csv.php:1544 +#: ../../enterprise/include/functions_reporting_csv.php:1812 +msgid "SLA Min" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1307 +#: ../../enterprise/include/functions_reporting_csv.php:1353 +#: ../../enterprise/include/functions_reporting_csv.php:1426 +#: ../../enterprise/include/functions_reporting_csv.php:1545 +#: ../../enterprise/include/functions_reporting_csv.php:1813 +#: ../../enterprise/include/functions_reporting.php:1678 +#: ../../enterprise/include/functions_reporting.php:2578 +#: ../../enterprise/include/functions_reporting.php:3570 +#: ../../enterprise/include/functions_reporting.php:5359 +#: ../../include/functions_reporting_html.php:495 +msgid "SLA Limit" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1308 +#: ../../enterprise/include/functions_reporting_csv.php:1354 +msgid "Time Total " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1309 +#: ../../enterprise/include/functions_reporting_csv.php:1355 +msgid "Time OK " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1310 +#: ../../enterprise/include/functions_reporting_csv.php:1356 +msgid "Time Error " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1357 +msgid "Time Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1312 +#: ../../enterprise/include/functions_reporting_csv.php:1358 +msgid "Time Not Init " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1313 +#: ../../enterprise/include/functions_reporting_csv.php:1359 +msgid "Time Downtime " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1314 +#: ../../enterprise/include/functions_reporting_csv.php:1360 +msgid "Checks Total " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1315 +#: ../../enterprise/include/functions_reporting_csv.php:1361 +msgid "Checks OK " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1362 +msgid "Checks Error " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1317 +#: ../../enterprise/include/functions_reporting_csv.php:1363 +msgid "Checks Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1318 +#: ../../enterprise/include/functions_reporting_csv.php:1364 +msgid "Checks Not Init " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1319 +#: ../../enterprise/include/functions_reporting_csv.php:1365 +msgid "SLA " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1366 +msgid "Status " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../enterprise/include/functions_reporting_csv.php:1388 +#: ../../enterprise/include/functions_reporting_csv.php:1706 +#: ../../enterprise/include/functions_reporting.php:1698 +#: ../../enterprise/include/functions_reporting.php:1739 +#: ../../enterprise/include/functions_reporting.php:2603 +#: ../../enterprise/include/functions_reporting.php:2662 +#: ../../enterprise/include/functions_reporting.php:3596 +#: ../../enterprise/include/functions_reporting.php:3655 +#: ../../enterprise/include/functions_reporting.php:5383 +#: ../../include/functions_reporting_html.php:602 +#: ../../include/functions_config.php:1172 +#: ../../include/functions_config.php:2843 +msgid "Fail" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1412 +#: ../../enterprise/include/functions_reporting_csv.php:1528 +#: ../../enterprise/include/functions_reporting_csv.php:1728 +#: ../../enterprise/include/functions_reporting_csv.php:1796 +msgid "Subtitle" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1427 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +#: ../../enterprise/include/functions_reporting_csv.php:1827 +msgid "Time Total Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1428 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +#: ../../enterprise/include/functions_reporting_csv.php:1828 +msgid "Time OK Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_reporting_csv.php:1829 +msgid "Time Error Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1430 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1830 +msgid "Time Unknown Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1431 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1831 +msgid "Time Downtime Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1432 +#: ../../enterprise/include/functions_reporting_csv.php:1564 +#: ../../enterprise/include/functions_reporting_csv.php:1832 +msgid "Time Not Init Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1565 +#: ../../enterprise/include/functions_reporting_csv.php:1833 +msgid "Checks Total Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1434 +#: ../../enterprise/include/functions_reporting_csv.php:1566 +#: ../../enterprise/include/functions_reporting_csv.php:1834 +msgid "Checks OK Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1435 +#: ../../enterprise/include/functions_reporting_csv.php:1567 +#: ../../enterprise/include/functions_reporting_csv.php:1835 +msgid "Checks Error Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1436 +#: ../../enterprise/include/functions_reporting_csv.php:1568 +#: ../../enterprise/include/functions_reporting_csv.php:1836 +msgid "Checks Unknown Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1437 +#: ../../enterprise/include/functions_reporting_csv.php:1569 +#: ../../enterprise/include/functions_reporting_csv.php:1837 +msgid "Checks Not Init Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1438 +#: ../../enterprise/include/functions_reporting_csv.php:1570 +#: ../../enterprise/include/functions_reporting_csv.php:1838 +msgid "SLA Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1439 +#: ../../enterprise/include/functions_reporting_csv.php:1571 +#: ../../enterprise/include/functions_reporting_csv.php:1839 +msgid "Status Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1461 +#: ../../enterprise/include/functions_reporting.php:1847 +msgid "Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1462 +#: ../../enterprise/include/functions_reporting_csv.php:1617 +msgid "Time Total Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1463 +#: ../../enterprise/include/functions_reporting_csv.php:1618 +msgid "Time OK Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1464 +#: ../../enterprise/include/functions_reporting_csv.php:1619 +msgid "Time Error Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1465 +#: ../../enterprise/include/functions_reporting_csv.php:1620 +msgid "Time Unknown Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1466 +#: ../../enterprise/include/functions_reporting_csv.php:1621 +msgid "Time Not Init Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1467 +#: ../../enterprise/include/functions_reporting_csv.php:1622 +msgid "Time Downtime Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1468 +#: ../../enterprise/include/functions_reporting_csv.php:1623 +msgid "Time Out Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1469 +#: ../../enterprise/include/functions_reporting_csv.php:1624 +msgid "Checks Total Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1470 +#: ../../enterprise/include/functions_reporting_csv.php:1625 +msgid "Checks OK Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1471 +#: ../../enterprise/include/functions_reporting_csv.php:1626 +msgid "Checks Error Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1472 +#: ../../enterprise/include/functions_reporting_csv.php:1627 +msgid "Checks Unknown Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1473 +#: ../../enterprise/include/functions_reporting_csv.php:1628 +msgid "Checks Not Init Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1474 +#: ../../enterprise/include/functions_reporting_csv.php:1629 +msgid "SLA Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1630 +msgid "SLA Fixed Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1476 +#: ../../enterprise/include/functions_reporting_csv.php:1631 +msgid "Date From Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1477 +#: ../../enterprise/include/functions_reporting_csv.php:1632 +msgid "Date To Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1478 +#: ../../enterprise/include/functions_reporting_csv.php:1633 +msgid "Status Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1538 +#: ../../enterprise/include/functions_reporting_csv.php:1806 +#: ../../include/functions_html.php:1597 +msgid "Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:1807 +msgid "Month Number" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1540 +#: ../../enterprise/include/functions_reporting_csv.php:1808 +msgid "Year" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1590 +msgid "Time Total week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1591 +msgid "Time OK week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1592 +msgid "Time Error week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1593 +msgid "Time Unknown week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1594 +msgid "Time Downtime week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1595 +msgid "Time Not Init week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1596 +msgid "Checks Total week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1597 +msgid "Checks OK week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1598 +msgid "Checks Error week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1599 +msgid "Checks Unknown week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1600 +msgid "Status week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1616 +msgid "Day Week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1668 +msgid "S.L.A. Services" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1686 +msgid "Lost sercice " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1687 +msgid "Service " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1688 +msgid "Limit " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1689 +msgid "SLA Compilance " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1690 +msgid "Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1691 +msgid "Ok " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1692 +msgid "Fail " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1693 +msgid "Result " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1738 +msgid "SLA max" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1739 +msgid "SLA min" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1740 +msgid "SLA limit" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1741 +#: ../../include/functions_reporting_html.php:527 +msgid "Time Total" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1742 +#: ../../include/functions_reporting_html.php:529 +#: ../../include/functions_reporting_html.php:3053 +msgid "Time OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1743 +msgid "Time Error" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1744 +#: ../../include/functions_reporting_html.php:530 +#: ../../include/functions_reporting_html.php:3059 +msgid "Time Unknown" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1745 +#: ../../include/functions_reporting_html.php:531 +msgid "Time Not Init" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1746 +#: ../../include/functions_reporting_html.php:3071 +msgid "Time Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1747 +#: ../../include/functions_reporting_html.php:558 +msgid "Checks Total" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1748 +#: ../../include/functions_reporting_html.php:560 +#: ../../include/functions_reporting_html.php:3138 +msgid "Checks OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1749 +msgid "Checks Error" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1750 +#: ../../include/functions_reporting_html.php:561 +msgid "Checks Unknown" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1751 +msgid "Checks Not Init" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1752 +#: ../../enterprise/operation/services/services.service.php:175 +#: ../../enterprise/operation/services/services.list.php:434 +#: ../../include/functions_reports.php:683 +#: ../../include/functions_reports.php:688 +#: ../../include/functions_reports.php:692 +#: ../../include/functions_reports.php:696 +#: ../../include/functions_reports.php:702 +msgid "SLA" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1753 +msgid "SLA Fixed" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1858 +msgid "Time Total day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1859 +msgid "Time OK day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1860 +msgid "Time Error day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1861 +msgid "Time Unknown day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1862 +msgid "Time Downtime day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1863 +msgid "Time Not Init day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1864 +msgid "Checks Total day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1865 +msgid "Checks OK day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1866 +msgid "Checks Error day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1867 +msgid "Checks Unknown day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1868 +msgid "Status day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1884 +#: ../../enterprise/include/functions_events.php:230 +msgid "Hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1885 +msgid "Time Total hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1886 +msgid "Time OK hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1887 +msgid "Time Error hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1888 +msgid "Time Unknown hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1889 +msgid "Time Not Init hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1890 +msgid "Time Downtime hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1891 +msgid "Time Out hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1892 +msgid "Checks Total hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1893 +msgid "Checks OK hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1894 +msgid "Checks Error hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1895 +msgid "Checks Unknown hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1896 +msgid "Checks Not Init hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1897 +msgid "SLA hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1898 +msgid "SLA Fixed hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1899 +msgid "Date From hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1900 +msgid "Date To hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1901 +msgid "Status hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1945 +#: ../../include/functions_netflow.php:1230 +msgid "Sent" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_config.php:895 +#: ../../include/functions_config.php:2767 +#: ../../operation/network/network_report.php:218 +#: ../../operation/network/network_report.php:250 +msgid "Bytes" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1946 +#: ../../enterprise/include/functions_reporting_csv.php:1954 +#: ../../include/functions_reporting_html.php:5115 +msgid "Packages" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../include/functions_netflow.php:1238 +msgid "Received" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2037 +#: ../../include/functions.php:231 +msgid "." +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2052 +msgid "Simple Baseline Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2083 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:554 +msgid "Custom Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2207 +#: ../../include/functions_reporting.php:4081 +msgid "Alert Report Module" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2209 +#: ../../include/functions_reporting.php:3923 +msgid "Alert Report Agent" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2211 +#: ../../include/functions_reporting.php:3734 +msgid "Alert Report Group" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2229 +msgid "Actions Triggered" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2229 +msgid "Template Triggered" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2266 +msgid "Event Report Log" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2295 +#: ../../include/functions_reporting.php:4472 +msgid "Netflow Area" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2297 +#: ../../include/functions_reporting.php:4480 +msgid "Netflow Data" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2299 +#: ../../include/functions_reporting.php:4476 +msgid "Netflow Summary" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1747 +#: ../../godmode/servers/plugin.php:1033 +msgid "Deploy" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1744 +msgid "Cleanup" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2982 +msgid "Update node" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:137 +#: ../../enterprise/include/class/Aws.cloud.php:92 +msgid "Cloud message" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:142 +#: ../../include/class/CredentialStore.class.php:871 +msgid "Azure" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:237 +msgid "Task details" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:238 +msgid "Instance explorer" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:239 +msgid "Metrics" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:296 +msgid "Microsoft Compute" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:344 +#: ../../enterprise/include/class/Aws.cloud.php:1375 +#, php-format +msgid "%s not found or not executable" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:572 +#: ../../enterprise/include/class/Azure.cloud.php:620 +msgid "Unauthorized access" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:734 +#: ../../enterprise/include/class/VMware.app.php:518 +#: ../../enterprise/include/class/SAP.app.php:459 +#: ../../enterprise/include/class/Aws.cloud.php:1086 +#: ../../enterprise/include/class/MySQL.app.php:441 +#: ../../enterprise/include/class/Oracle.app.php:439 +#: ../../godmode/wizards/HostDevices.class.php:834 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:423 +#: ../../include/class/CustomNetScan.class.php:445 +#: ../../operation/servers/recon_view.php:94 +msgid "Task name" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:796 +#: ../../enterprise/include/class/Aws.cloud.php:621 +#: ../../enterprise/include/class/Aws.cloud.php:1159 +msgid "No instances found." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:833 +msgid "Select target virtual machines" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:852 +#: ../../enterprise/include/class/Aws.cloud.php:550 +msgid "Scan and general monitoring." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:865 +#: ../../enterprise/include/class/Aws.cloud.php:567 +msgid "Cpu performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:873 +#: ../../enterprise/include/class/Aws.cloud.php:577 +msgid "IOPS performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:881 +#: ../../enterprise/include/class/Aws.cloud.php:587 +msgid "Disk performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:889 +#: ../../enterprise/include/class/Aws.cloud.php:597 +msgid "Network performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:914 +#: ../../enterprise/include/class/VMware.app.php:897 +#: ../../enterprise/include/class/SAP.app.php:844 +#: ../../enterprise/include/class/Aws.cloud.php:1473 +#: ../../enterprise/include/class/MySQL.app.php:942 +#: ../../enterprise/include/class/Oracle.app.php:971 +#: ../../godmode/wizards/HostDevices.class.php:1212 +#: ../../include/class/CustomNetScan.class.php:756 +msgid "Task configured." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:918 +#: ../../enterprise/include/class/VMware.app.php:901 +#: ../../enterprise/include/class/SAP.app.php:848 +#: ../../enterprise/include/class/MySQL.app.php:946 +#: ../../enterprise/include/class/Oracle.app.php:975 +#: ../../godmode/wizards/HostDevices.class.php:1216 +#: ../../include/class/CustomNetScan.class.php:760 +msgid "Wizard failed. Cannot configure task." +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:177 +msgid "Failed to connect" +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:229 +#, php-format +msgid "Unable to open public key file %s" +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:248 +msgid "Failed to login to target" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:206 +msgid "" +"This VMware configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:240 +#: ../../enterprise/include/class/SAP.app.php:186 +#: ../../enterprise/include/class/Aws.cloud.php:802 +#: ../../enterprise/include/class/MySQL.app.php:205 +#: ../../enterprise/include/class/Oracle.app.php:197 +#: ../../godmode/wizards/HostDevices.class.php:416 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:245 +#: ../../enterprise/include/class/SAP.app.php:191 +#: ../../enterprise/include/class/Aws.cloud.php:807 +#: ../../enterprise/include/class/MySQL.app.php:210 +#: ../../enterprise/include/class/Oracle.app.php:202 +#: ../../godmode/wizards/HostDevices.class.php:421 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:250 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:255 +#: ../../enterprise/include/class/SAP.app.php:201 +#: ../../enterprise/include/class/Aws.cloud.php:812 +#: ../../enterprise/include/class/MySQL.app.php:225 +#: ../../enterprise/include/class/Oracle.app.php:212 +#: ../../godmode/wizards/HostDevices.class.php:432 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:261 +msgid "Discovery.Application.VMware" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:326 +msgid "Failed to find discovery VMware task." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:341 +msgid "Threads must be equal or greater than 1." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:441 +#: ../../enterprise/include/class/SAP.app.php:315 +#: ../../enterprise/include/class/MySQL.app.php:402 +#: ../../enterprise/include/class/Oracle.app.php:388 +msgid "Application" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:491 +#: ../../enterprise/include/class/SAP.app.php:434 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:570 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1175 +#: ../../godmode/setup/setup_integria.php:558 +#: ../../godmode/wizards/HostDevices.class.php:768 +#: ../../include/class/CustomNetScan.class.php:551 +msgid "Update and continue" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:529 +#: ../../enterprise/include/class/SAP.app.php:472 +#: ../../enterprise/include/class/Aws.cloud.php:1098 +#: ../../enterprise/include/class/MySQL.app.php:453 +#: ../../enterprise/include/class/Oracle.app.php:451 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/class/CustomNetScan.class.php:479 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task " +"will never run" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:549 +msgid "Datacenter user" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:561 +#: ../../enterprise/include/class/SAP.app.php:494 +#: ../../enterprise/include/class/Aws.cloud.php:1204 +#: ../../enterprise/include/class/MySQL.app.php:557 +#: ../../enterprise/include/class/Oracle.app.php:538 +#: ../../godmode/wizards/HostDevices.class.php:795 +#: ../../include/class/CustomNetScan.class.php:519 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:568 +#: ../../enterprise/include/class/VMware.app.php:776 +#: ../../enterprise/include/class/SAP.app.php:501 +#: ../../enterprise/include/class/Aws.cloud.php:1211 +#: ../../enterprise/include/class/MySQL.app.php:564 +#: ../../enterprise/include/class/Oracle.app.php:545 +#: ../../godmode/wizards/HostDevices.class.php:802 +#: ../../include/functions_reporting_html.php:1914 +#: ../../include/class/CustomNetScan.class.php:526 +msgid "Defined" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:586 +#: ../../enterprise/include/class/SAPView.class.php:242 +#: ../../enterprise/include/class/SAPView.class.php:279 +#: ../../enterprise/include/class/SAP.app.php:519 +#: ../../enterprise/include/class/Aws.cloud.php:1228 +#: ../../enterprise/include/class/MySQL.app.php:581 +#: ../../enterprise/include/class/Oracle.app.php:562 +msgid "The minimum recomended interval is 5 minutes" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:600 +msgid "V-Center IP" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:611 +msgid "Datacenter name" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:612 +msgid "" +"This name must match with the name wich appears when you log in you VMware " +"manager" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:642 +msgid "Encrypt passwords" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:656 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/Aws.cloud.php:1119 +#: ../../enterprise/include/class/MySQL.app.php:474 +#: ../../enterprise/include/class/Oracle.app.php:472 +msgid "This group will be used also to classify discovered agents" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:759 +msgid "Max threads" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:768 +msgid "Re-scan interval" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:769 +msgid "Enables re-scan entities process every interval defined." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:802 +msgid "Retry send" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:812 +msgid "Event mode" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:812 +msgid "Only for VCenter." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:822 +msgid "Virtual network monitoring" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:847 +msgid "Extra settings" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:848 +msgid "This RAW block will be directly added to config file." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:413 +msgid "Target OS is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:415 +msgid "Target architecture is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:574 +msgid "Target successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1055 +msgid "Failed to schedule" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:554 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:351 +msgid "Host & Devices" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:581 +msgid "Deployment center" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:597 +msgid "There are no targets defined yet, please add some." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:604 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:617 +#: ../../enterprise/include/class/SAP.app.php:350 +msgid "here" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:616 +#, php-format +msgid "" +"There are no software agents in your repository yet, please add some %s." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:635 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1711 +msgid "Scan for targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +msgid "Add target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:653 +msgid "Load targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:717 +#: ../../enterprise/include/class/DeploymentCenter.class.php:785 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +#: ../../enterprise/include/class/AgentRepository.class.php:348 +#: ../../enterprise/include/class/AgentRepository.class.php:614 +#: ../../enterprise/include/class/AgentRepository.class.php:664 +msgid "Architecture" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:718 +msgid "Key identifier" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:719 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1182 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1319 +msgid "Target server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:720 +msgid "Agent version installed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:721 +msgid "Agent version desired" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:722 +msgid "Installation date" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:723 +msgid "Last error" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:771 +msgid "Server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:796 +msgid "State" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:828 +msgid "Deploy agent to targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:916 +#: ../../enterprise/include/class/AgentRepository.class.php:259 +msgid "Deploying" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1002 +msgid "You must define a network." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1004 +msgid "You must select at least one credential to test." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1006 +msgid "You must select a Discovery server." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1008 +msgid "Please select a desired software agent version." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1010 +msgid "Please specify a server IP." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1030 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1063 +msgid "Discovery task list" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1029 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1062 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1110 +msgid "Network/mask" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1119 +msgid "Scan from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1172 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1309 +msgid "Desired agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +msgid "Target agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1357 +msgid "Target server ip" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1376 +msgid "CSV file" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1436 +msgid "Select desired targets to be deployed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1439 +msgid "Deploy from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1454 +msgid "Available targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1630 +msgid "Add new target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1633 +msgid "Update target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1679 +msgid "Import targets from CSV" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1712 +msgid "Scan" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1746 +msgid "Select targets" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:136 +#: ../../enterprise/include/class/DatabaseHA.class.php:240 +#: ../../enterprise/include/class/DatabaseHA.class.php:422 +#: ../../enterprise/include/class/DatabaseHA.class.php:432 +#: ../../enterprise/include/class/DatabaseHA.class.php:526 +#: ../../enterprise/include/class/DatabaseHA.class.php:535 +#: ../../enterprise/include/class/DatabaseHA.class.php:652 +#: ../../enterprise/include/class/DatabaseHA.class.php:661 +msgid "Error, please refresh page" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:141 +msgid "Action already scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:147 +msgid "Unavailable action" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:159 +msgid "A node is already being synchronized, please wait until process finish." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:171 +msgid "Please verify resync configuration is set before use this feature." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:189 +msgid "Successfully scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:213 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1037 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:558 +#: ../../operation/servers/recon_view.php:142 +msgid "Pending" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:219 +msgid "Uninitialized" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:475 +#: ../../enterprise/include/class/DatabaseHA.class.php:576 +#: ../../enterprise/include/class/DatabaseHA.class.php:1228 +msgid "This is not a cluster node" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:479 +#: ../../enterprise/include/class/DatabaseHA.class.php:1232 +msgid "Failed to retrieve master position" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:493 +#: ../../enterprise/include/class/DatabaseHA.class.php:1245 +msgid "Failed to retrieve slave information" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:612 +msgid "Master" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:615 +msgid "Slave" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:797 +msgid "Failed to update" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:824 +#: ../../enterprise/include/class/DatabaseHA.class.php:983 +msgid "DB Replication user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:831 +#: ../../enterprise/include/class/DatabaseHA.class.php:992 +msgid "DB Replication user password" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:838 +msgid "Resync data dir" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "Resync tmp directory" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:852 +msgid "Resync MySQL user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:859 +msgid "Resync MySQL group" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:917 +msgid "IP or FQDN" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:918 +msgid "" +"This action only registers an already configured node. This action does not " +"configure any resource." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:928 +msgid "Cluster node label (pcs)" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:944 +msgid "SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:952 +msgid "SSH port" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:960 +msgid "SSH key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:968 +msgid "SSH public key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1020 +msgid "Missed parameters" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1067 +msgid "You must specify a host" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1069 +msgid "DB port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1071 +msgid "SSH port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1073 +msgid "You must specify a SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1075 +msgid "You must specify a replication DB user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1077 +msgid "You must specify a replication DB pass" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1079 +msgid "You must specify a public key path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1081 +msgid "You must specify a private path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1131 +msgid "Successfully " +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:368 +msgid "Installation file" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:407 +msgid "Agent version is required" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:422 +msgid "Cannot create target dir [" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:443 +#, php-format +msgid "Invalid installation file for %s" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +msgid "Installation files not modified" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:492 +msgid "Installation files updated" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:499 +msgid "You must provide installation files to create a new entry." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "This agent has been already defined." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:537 +msgid "Agent successfully registered and uploaded" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:616 +msgid "Uploaded by" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:617 +msgid "Upload date" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:696 +msgid "Add new software" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:883 +msgid "Add new Software agent" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:886 +msgid "Update Software agent" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:358 +msgid "Please follow the wizard." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:371 +msgid "You have no acess to edit this command." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:642 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:733 +#: ../../include/class/CredentialStore.class.php:836 +msgid "Identifier" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "" +"All commands defined line per line must success to execute main commands" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "" +"All commands defined line per line must success to consider command success" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../godmode/agentes/planned_downtime.editor.php:941 +msgid "Available agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:856 +msgid "Remove agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:866 +msgid "Selected agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1105 +msgid "Selected command definition will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1190 +msgid "Command viewer" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1198 +msgid "Detailed view" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1339 +msgid "Not an array of ids" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1397 +msgid "There are no targets for this remote command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1404 +msgid "Command does not exist" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1500 +msgid "success" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1503 +msgid "timed out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1506 +msgid "failed" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1522 +msgid "Waiting results..." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1541 +msgid "RCMD does not exist" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:177 +msgid "Alias as name" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:242 +msgid "No data or wrong separator" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:248 +#, php-format +msgid "Agent %s duplicated." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:255 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:263 +msgid "General failure." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:284 +msgid "No input file detected" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:373 +msgid "Agent processed successfully" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:379 +msgid "Some errors while processing CSV." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:382 +msgid "All agents processed correctly" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:389 +#, php-format +msgid "Line %s" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:144 +msgid "SAP data not found." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:177 +msgid "SAP View" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:241 +msgid "Refresh Every" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:278 +msgid "Graph Interval" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is " +"usually configured to retry. You have not configured a Discovery SAP R3 task " +"yet, please visit" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "to start monitoring your SAP infrastructure." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:624 +msgid "Discover SAP" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:155 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:196 +msgid "You must specify at last one SAP hostname." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:207 +msgid "Discovery.Application.SAP" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:263 +msgid "Failed to find discovery SAP task." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:270 +msgid "Select at least a module." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:333 +msgid "SAP R3" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:526 +msgid "SAP Hostname" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:550 +msgid "SAP Client" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:563 +msgid "SAP System Number" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "SAP Credentials" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "Optional" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:699 +#: ../../include/functions_agents.php:3622 +msgid "SAP Login OK" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:700 +#: ../../include/functions_agents.php:3623 +msgid "SAP Dumps" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:701 +#: ../../include/functions_agents.php:3624 +msgid "SAP lock entry list" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:702 +#: ../../include/functions_agents.php:3625 +msgid "SAP canceled Jobs" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:703 +#: ../../include/functions_agents.php:3626 +msgid "SAP Batch inputs erroneous" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:704 +#: ../../include/functions_agents.php:3627 +msgid "SAP IDOC erroneous" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:705 +#: ../../include/functions_agents.php:3628 +msgid "SAP IDOC OK" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:706 +#: ../../include/functions_agents.php:3629 +msgid "SAP WP without active restart" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:707 +#: ../../include/functions_agents.php:3630 +msgid "SAP WP stopped" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:708 +msgid "Average time of SAPGUI response" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:709 +#: ../../include/functions_agents.php:3632 +msgid "Dialog response time" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:710 +msgid "Dialog Logged users" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:711 +#: ../../include/functions_agents.php:3634 +msgid "TRFC in error" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:712 +#: ../../include/functions_agents.php:3635 +msgid "QRFC in error SMQ2" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:713 +#: ../../include/functions_agents.php:3636 +msgid "Number of Update WPs in error" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:735 +msgid "Available modules" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:771 +msgid "Add monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:783 +msgid "Remove monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:793 +msgid "Selected modules" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:97 +#: ../../include/class/CredentialStore.class.php:870 +msgid "Aws" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:280 +msgid "Recon" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:281 +msgid "Costs" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:283 +msgid "Instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:373 +msgid "Amazon EC2" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:378 +msgid "Amazon RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:398 +#: ../../godmode/wizards/HostDevices.class.php:690 +msgid "NetScan" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:421 +msgid "Recon task name" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:490 +msgid "Total cost" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:507 +msgid "Cost by region" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:521 +msgid "Cost interval" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:655 +msgid "Select EC2 instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:674 +msgid "Storage" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:684 +msgid "Elastic IP Adresses" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:771 +#: ../../include/class/CustomNetScan.class.php:134 +msgid "This task has been already defined. Please edit it or create a new one." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:867 +msgid "You must select at least one RDS instance." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:872 +msgid "" +"You cannot monitor RDS instances from different types. Please define several " +"tasks for several types." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:879 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1045 +msgid "RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1050 +msgid "DB monitoring" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1060 +msgid "AWS RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1134 +msgid "Global DB User" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1144 +msgid "Global DB password" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1234 +msgid "Select RDS instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1570 +msgid "Cannot update the recon database" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1592 +msgid "Engine not supported" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:172 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:215 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:220 +msgid "You must provide a valid port number." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:232 +msgid "Discovery.Application.MySQL" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:284 +msgid "Failed to find discovery MySQL task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:489 +msgid "MySQL server IP" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:490 +msgid "Comma separated, as many targets as you need." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:509 +msgid "MySQL server Port" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:654 +#: ../../enterprise/include/class/Oracle.app.php:635 +msgid "Target agent" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:655 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use server IP address/ FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:674 +#: ../../enterprise/include/class/Oracle.app.php:655 +msgid "Custom module prefix" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:675 +#: ../../enterprise/include/class/Oracle.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by " +"this task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:696 +msgid "Scan databases" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:712 +msgid "Create agent per database" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:733 +msgid "Custom database agent prefix" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:734 +msgid "" +"Defines a custom prefix to be concatenated before database agent names " +"generated by this task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:755 +#: ../../enterprise/include/class/Oracle.app.php:674 +msgid "Check engine uptime" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:771 +#: ../../enterprise/include/class/Oracle.app.php:690 +msgid "Retrieve query statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:787 +#: ../../enterprise/include/class/Oracle.app.php:706 +msgid "Analyze connections" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:803 +msgid "Retrieve InnoDB statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:819 +#: ../../enterprise/include/class/Oracle.app.php:754 +msgid "Retrieve cache statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:835 +#: ../../enterprise/include/class/Oracle.app.php:770 +msgid "Execute custom queries" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:887 +#: ../../enterprise/include/class/Oracle.app.php:924 +msgid "Custom queries" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:888 +#: ../../enterprise/include/class/Oracle.app.php:925 +msgid "Define here your custom queries." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:165 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:207 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:219 +msgid "Discovery.Application.Oracle" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:272 +msgid "Failed to find discovery Oracle task." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:487 +msgid "Oracle target strings" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "" +"SERVER:PORT/SID, comma separated or line by line, as many targets as you " +"need." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use target as name." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:722 +msgid "Calculate fragmentation ratio" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:738 +msgid "Monitor tablespaces" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:417 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:476 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:518 +msgid "Alert not found." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:505 +msgid "JSON decoding error. Please call support." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:833 +msgid "Pass" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:834 +msgid "Drop" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:861 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1825 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2136 +msgid "Load from template" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:879 +msgid "Days a week" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:912 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2140 +#: ../../godmode/alerts/configure_alert_template.php:601 +#: ../../godmode/alerts/alert_view.php:306 +msgid "Use special days list" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:931 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:961 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3380 +msgid "from" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:958 +msgid "Execute alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3398 +msgid "times in" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:991 +msgid "threshold" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1001 +msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1018 +msgid "Grouped by" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1124 +msgid "" +"\n" +" The templates shown are only for correlative alerts, event alert " +"(legacy) will be deprecated in the future" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1135 +msgid "Available items" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1136 +msgid "Block" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1184 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:972 +msgid "Log content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1189 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:975 +msgid "Log source" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1194 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:978 +msgid "Log agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1252 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:984 +msgid "Event content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1257 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:981 +msgid "Event user comment" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:987 +msgid "Event agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:990 +msgid "Event module" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +msgid "Event module alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1277 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:996 +msgid "Event group" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1282 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:999 +msgid "Event group Recursive" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1287 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +msgid "Event severity" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1292 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005 +msgid "Event tag" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1297 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1008 +msgid "Event user" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1326 +msgid "Operators" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1383 +msgid "Modifiers" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1388 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1017 +msgid "Time window" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 +msgid "Rule definition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1722 +msgid "Remove rule" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1733 +msgid "Remove item" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1754 +#: ../../operation/agentes/estado_monitores.php:595 +msgid "Reset" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1920 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +msgid "Triggering Condition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2149 +#: ../../godmode/alerts/alert_view.php:314 +msgid "Number of alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2235 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2489 +#: ../../godmode/alerts/configure_alert_action.php:200 +#: ../../godmode/alerts/alert_view.php:418 +msgid "Firing" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2237 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2440 +#: ../../include/ajax/custom_fields.php:403 +msgid "Treshold" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2238 +msgid "Opions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 +msgid "There are no defined actions for this alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2412 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3377 +msgid "Number of alerts match" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2490 +#: ../../godmode/alerts/alert_view.php:419 +msgid "Recovering" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2507 +msgid "" +"Select the desired action and mode to view the Triggering fields for this " +"action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 +#: ../../godmode/alerts/alert_view.php:415 +msgid "Select the action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2581 +#: ../../godmode/alerts/configure_alert_template.php:841 +#: ../../godmode/alerts/alert_view.php:436 +#: ../../godmode/alerts/alert_view.php:527 +msgid "Firing fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2583 +#: ../../godmode/alerts/alert_view.php:436 +msgid "" +"Fields passed to the command executed by this action when the alert is fired" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2587 +#: ../../godmode/agentes/fields_manager.php:119 +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:526 +#: ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2589 +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:526 +msgid "Fields configured on the command associated to the action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2592 +msgid "Alerts fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2594 +msgid "Triggering fields configured in Alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2597 +#: ../../godmode/alerts/alert_view.php:440 +msgid "Action fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2599 +#: ../../godmode/alerts/alert_view.php:440 +msgid "Triggering fields configured in action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../godmode/alerts/alert_view.php:442 +msgid "Executed on firing" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2604 +#: ../../godmode/alerts/alert_view.php:442 +#: ../../godmode/alerts/alert_view.php:527 +msgid "Fields used on execution when the alert is fired" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2672 +msgid "Correlated alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2695 +msgid "Alert succesfully deleted" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2704 +msgid "Alerts validated" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +msgid "Failed to process validation" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 +msgid "Matched" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2853 +#: ../../mobile/operation/alerts.php:48 +#: ../../include/functions_reporting_html.php:1915 +#: ../../include/functions_reporting_html.php:2403 +#: ../../include/functions_reporting_html.php:2404 +#: ../../operation/agentes/alerts_status.functions.php:79 +#: ../../operation/snmpconsole/snmp_view.php:208 +#: ../../operation/snmpconsole/snmp_view.php:1173 +msgid "Fired" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2875 +msgid "Sort elements" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2963 +msgid "Add Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3143 +msgid "Are you sure you want to disable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3149 +msgid "Are you sure you want to enable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3156 +msgid "Disabled Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3194 +#: ../../godmode/alerts/alert_list.list.php:134 +#: ../../mobile/operation/alerts.php:56 +#: ../../operation/agentes/alerts_status.functions.php:86 +msgid "Standby off" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3195 +msgid "Are you sure you want to standby the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3200 +#: ../../enterprise/operation/agentes/policy_view.php:234 +#: ../../godmode/alerts/alert_list.list.php:133 +#: ../../mobile/operation/alerts.php:55 ../../include/functions_ui.php:1131 +#: ../../operation/agentes/alerts_status.functions.php:85 +msgid "Standby on" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3202 +msgid "Are you sure you want to activate the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3210 +msgid "Standby Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3281 +msgid "Delete Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3457 +msgid "Successfully added action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3495 +msgid "Successfully delete action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3842 +msgid "Choosetime" +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:325 +msgid "Tree view by tags" +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:355 +msgid "" +"If the interval of days until events data purge is shorter than the events " +"data history storage interval, data will be lost. It is recommended that the " +"storage frequency is higher than the purge frequency." +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:357 +msgid "" +"Problems with event days purge and event days that pass data to history DB." +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:368 +msgid "" +"If days purge is less than history days pass to history db, you will have a " +"problems and you lost data. Recommended that days purge will more taller " +"than days to history DB" +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:370 +msgid "Problems with days purge and days that pass data to history DB" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:46 +msgid "Advance options" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:67 +msgid "Templates list" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:102 +msgid "Templates Wizard" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1077 +msgid "Availability item created from wizard." +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1614 +#: ../../enterprise/include/functions_reporting.php:2505 +#: ../../enterprise/include/functions_reporting.php:3512 +#: ../../godmode/alerts/alert_special_days.php:377 +msgid "January" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1618 +#: ../../enterprise/include/functions_reporting.php:2509 +#: ../../enterprise/include/functions_reporting.php:3516 +#: ../../godmode/alerts/alert_special_days.php:381 +msgid "February" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1622 +#: ../../enterprise/include/functions_reporting.php:2513 +#: ../../enterprise/include/functions_reporting.php:3520 +#: ../../godmode/alerts/alert_special_days.php:385 +msgid "March" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1626 +#: ../../enterprise/include/functions_reporting.php:2517 +#: ../../enterprise/include/functions_reporting.php:3524 +#: ../../godmode/alerts/alert_special_days.php:389 +msgid "April" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1630 +#: ../../enterprise/include/functions_reporting.php:2521 +#: ../../enterprise/include/functions_reporting.php:3528 +#: ../../godmode/alerts/alert_special_days.php:393 +msgid "May" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1634 +#: ../../enterprise/include/functions_reporting.php:2525 +#: ../../enterprise/include/functions_reporting.php:3532 +#: ../../godmode/alerts/alert_special_days.php:397 +msgid "June" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1638 +#: ../../enterprise/include/functions_reporting.php:2529 +#: ../../enterprise/include/functions_reporting.php:3536 +#: ../../godmode/alerts/alert_special_days.php:401 +msgid "July" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1642 +#: ../../enterprise/include/functions_reporting.php:2533 +#: ../../enterprise/include/functions_reporting.php:3540 +#: ../../godmode/alerts/alert_special_days.php:405 +msgid "August" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1646 +#: ../../enterprise/include/functions_reporting.php:2537 +#: ../../enterprise/include/functions_reporting.php:3544 +#: ../../godmode/alerts/alert_special_days.php:409 +msgid "September" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1650 +#: ../../enterprise/include/functions_reporting.php:2541 +#: ../../enterprise/include/functions_reporting.php:3548 +#: ../../godmode/alerts/alert_special_days.php:413 +msgid "October" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1654 +#: ../../enterprise/include/functions_reporting.php:2545 +#: ../../enterprise/include/functions_reporting.php:3552 +#: ../../godmode/alerts/alert_special_days.php:417 +msgid "November" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1659 +#: ../../enterprise/include/functions_reporting.php:2550 +#: ../../enterprise/include/functions_reporting.php:3557 +#: ../../godmode/alerts/alert_special_days.php:421 +msgid "December" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1677 +#: ../../enterprise/include/functions_reporting.php:2577 +#: ../../enterprise/include/functions_reporting.php:3569 +#: ../../include/functions_reporting_html.php:494 +msgid "Max/Min Values" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1679 +#: ../../enterprise/include/functions_reporting.php:1848 +#: ../../enterprise/include/functions_reporting.php:2579 +#: ../../enterprise/include/functions_reporting.php:3571 +#: ../../enterprise/include/functions_reporting.php:5360 +#: ../../include/functions_reporting_html.php:496 +msgid "SLA Compliance" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1719 +#: ../../enterprise/include/functions_reporting.php:2633 +#: ../../enterprise/include/functions_reporting.php:2892 +#: ../../enterprise/include/functions_reporting.php:3626 +#: ../../enterprise/include/functions_reporting.php:3890 +#: ../../enterprise/include/functions_reporting.php:4481 +#: ../../enterprise/include/functions_reporting.php:5430 +#: ../../include/functions_reporting_html.php:785 +#: ../../include/functions_reporting_html.php:3585 +msgid "Not Init" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1726 +#: ../../enterprise/include/functions_reporting.php:2643 +#: ../../enterprise/include/functions_reporting.php:3636 +msgid "Planned Downtimes" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2653 +#: ../../enterprise/include/functions_reporting.php:2902 +#: ../../enterprise/include/functions_reporting.php:3646 +#: ../../godmode/agentes/planned_downtime.editor.php:62 +#: ../../include/functions_reporting_html.php:795 +#: ../../include/functions_reporting_html.php:3595 +#: ../../general/first_task/planned_downtime.php:22 +msgid "Planned Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1753 +msgid "SLA Compliance per days" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1845 +msgid "Summary of SLA Failures" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1865 +#: ../../enterprise/include/functions_reporting.php:1866 +msgid "Out of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1871 +#: ../../enterprise/include/functions_reporting.php:1872 +msgid "IN of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1955 +#: ../../include/functions_reports.php:878 +msgid "Log report" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1968 +#: ../../include/functions_reports.php:877 +msgid "Log" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2175 +#: ../../enterprise/include/functions_reporting.php:3124 +#: ../../enterprise/include/functions_reporting.php:4097 +#: ../../include/functions_reporting.php:917 +#: ../../include/functions_reporting.php:6638 +msgid "There are no SLAs defined" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:3166 +#: ../../enterprise/include/functions_reporting.php:4139 +#: ../../include/functions_maps.php:50 +#: ../../include/functions_reporting.php:969 +#: ../../include/functions_reporting.php:6905 +#: ../../operation/agentes/pandora_networkmap.php:776 +msgid "Dynamic" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2228 +#: ../../enterprise/include/functions_reporting.php:3177 +#: ../../enterprise/include/functions_reporting.php:4150 +#: ../../include/functions_reporting.php:980 +#: ../../include/functions_reporting.php:6916 +msgid "Inverse" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2691 +msgid "T. Total" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2692 +#: ../../enterprise/include/functions_reporting.php:3673 +msgid "T. OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2693 +#: ../../enterprise/include/functions_reporting.php:3674 +msgid "T. Error" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2694 +#: ../../enterprise/include/functions_reporting.php:3675 +msgid "T. Unknown" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2695 +#: ../../enterprise/include/functions_reporting.php:3676 +msgid "T. Not_init" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2696 +#: ../../enterprise/include/functions_reporting.php:3677 +msgid "T. Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2697 +#: ../../enterprise/include/functions_reporting.php:3678 +msgid "SLA %" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2887 +#: ../../enterprise/include/functions_reporting.php:3885 +#: ../../enterprise/include/functions_reporting.php:5425 +#: ../../enterprise/include/functions_services.php:2329 +#: ../../include/functions_reporting_html.php:780 +#: ../../include/functions_reporting_html.php:3580 +msgid "Unknow" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3895 +#: ../../enterprise/include/functions_reporting.php:5435 +#: ../../include/functions_reporting_html.php:790 +#: ../../include/functions_reporting_html.php:3590 +msgid "Downtimes" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3900 +msgid "Ignore Planned Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3990 +#: ../../include/functions_reports.php:697 +msgid "Hourly S.L.A." +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4880 +msgid "There are no SLAs defined." +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5021 +#: ../../enterprise/include/functions_services.php:2256 +#: ../../enterprise/include/functions_services.php:2258 +#: ../../enterprise/include/functions_services.php:2288 +#: ../../enterprise/include/functions_services.php:2289 +#: ../../enterprise/include/functions_services.php:2291 +#: ../../enterprise/include/functions_services.php:2334 +#: ../../enterprise/include/functions_services.php:2336 +msgid "Nonexistent" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5440 +msgid "Scheduled shutdow" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5802 +#: ../../enterprise/include/functions_reporting.php:6432 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:6348 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:6806 +msgid "There is not data for the selected conditions" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:7004 +#: ../../enterprise/include/functions_reporting.php:7060 +msgid "Template editor" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:7079 +msgid "Get PDF file" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:7140 +#: ../../include/functions_reports.php:636 +msgid "Simple baseline graph" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:902 +#: ../../enterprise/include/functions_enterprise_api.php:960 +msgid "Not sent id agent to migrate" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:909 +msgid "Not sent id source node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:915 +msgid "Not sent id target node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:920 +msgid "Not sent id source node and not sent id target node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:933 +#: ../../enterprise/include/functions_enterprise_api.php:966 +#: ../../enterprise/include/functions_enterprise_api.php:2307 +msgid "Is not metaconsole" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:995 +#: ../../enterprise/include/functions_enterprise_api.php:1231 +#: ../../enterprise/include/functions_enterprise_api.php:1425 +#: ../../enterprise/include/functions_enterprise_api.php:1599 +#: ../../enterprise/include/functions_enterprise_api.php:1819 +#: ../../enterprise/include/functions_enterprise_api.php:1950 +#: ../../enterprise/include/functions_enterprise_api.php:2234 +#: ../../enterprise/include/functions_enterprise_api.php:2569 +#: ../../enterprise/include/functions_enterprise_api.php:2768 +#: ../../enterprise/include/functions_enterprise_api.php:2983 +msgid "There is no policy with such id" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:1868 +msgid "Module id is empty" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:1874 +msgid "There is no module with such id" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2241 +msgid "There is no alert with such id in this policy" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2369 +#: ../../include/functions_api.php:5619 +msgid "Error getting alert actions." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2632 +#: ../../enterprise/include/functions_enterprise_api.php:2666 +msgid "Error adding agent to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2637 +msgid "Error adding agent to policy. Id_agent cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2643 +msgid "Error adding agent to policy. Node ID cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2671 +#: ../../include/functions_api.php:8004 +msgid "Error adding agent to policy. Agent name cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3058 +msgid "Error applying policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3064 +msgid "Error applying policy. Id_nodo cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3071 +msgid "There is no policy with such id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3091 +msgid "There is no agent with such id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3117 +msgid "This policy does not have this agent id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3130 +msgid "There is no agent with such name." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3156 +msgid "This policy does not have this agent." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3172 +msgid "There are no agents with such alias." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3204 +msgid "This policy does not have these agents." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3219 +#: ../../enterprise/include/functions_enterprise_api.php:3234 +msgid "Error applying policy." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3226 +msgid "Error applying policy. This policy is already pending to apply." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3266 +#: ../../enterprise/include/functions_enterprise_api.php:3320 +#, php-format +msgid "%d agents added to apply queue." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3289 +#: ../../enterprise/include/functions_policies.php:4989 +#, php-format +msgid "Successfully applied to node %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3291 +#: ../../enterprise/include/functions_policies.php:4991 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3330 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3332 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3384 +msgid "Error applying all policies." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3438 +msgid "Cannot reach the node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3460 +#, php-format +msgid "Node error: %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3474 +#, php-format +msgid "Invalid value %d on first other parameter" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3707 +msgid "The module is already in the policy." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3744 +#: ../../enterprise/include/functions_enterprise_api.php:3780 +msgid "" +"Error adding web analysis module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web analysis modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3756 +msgid "" +"Error adding network module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for network modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3768 +msgid "" +"Error adding web module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3795 +msgid "" +"Error adding module to policy.\n" +"\t\t\t\t\tconfiguration_data is not correct base64." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:4266 +#: ../../enterprise/include/functions_enterprise_api.php:4316 +#: ../../enterprise/include/functions_enterprise_api.php:4367 +msgid "Error getting inventory modules" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5256 +#, php-format +msgid "Error updating user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5258 +#, php-format +msgid "Updated user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5268 +#, php-format +msgid "Error creating user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5270 +#, php-format +msgid "Created user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5471 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements groups/" +"profiles/user profiles were created/updated sucessfully (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5484 +#, php-format +msgid "" +"Error creating/updating the followings elements groups/profiles/user " +"profiles (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5500 +#, php-format +msgid "" +"The followings elements groups/profiles/user profiles were created/updated " +"sucessfully (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5679 +msgid "Error adding agent to policy. Agent does not exist." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5691 +msgid "Error adding agent to policy." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5698 +msgid "Error adding agent to policy. The agent is already in the policy." +msgstr "" + +#: ../../enterprise/include/functions_services.php:27 +msgid "There is no information about" +msgstr "" + +#: ../../enterprise/include/functions_services.php:32 +msgid "Service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:44 +msgid "module that stores the service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:56 +msgid "module that stores SLA service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:69 +msgid "agent that stores the service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:82 +msgid "agent that stores SLA service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:103 +msgid "alert critical SLA service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:124 +msgid "alert warning service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:145 +msgid "alert critical service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:166 +msgid "alert unknown service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:576 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2316 +msgid "Critical (Alert)" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2449 +msgid "There are no service elements defined" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2479 +msgid "Weight Critical" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2480 +msgid "Weight Warning" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2481 +msgid "Weight Unknown" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2482 +msgid "Weight Ok" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2512 +#: ../../enterprise/include/functions_services.php:2534 +#: ../../enterprise/include/functions_services.php:2573 +msgid "Nonexistent. This element should be deleted" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2597 +msgid "This element does not affect service weigth because is disabled." +msgstr "" + +#: ../../enterprise/include/functions_services.php:2699 +msgid "NOT INITIALIZED" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2711 +#: ../../enterprise/include/functions_services.php:2717 +#: ../../enterprise/include/functions_services.php:2722 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/transactional_map.php:184 +#: ../../enterprise/operation/agentes/tag_view.php:977 +#: ../../enterprise/operation/agentes/tag_view.php:983 +#: ../../enterprise/operation/agentes/tag_view.php:993 +#: ../../enterprise/operation/agentes/tag_view.php:999 +#: ../../enterprise/operation/agentes/tag_view.php:1009 +#: ../../enterprise/operation/agentes/tag_view.php:1015 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../include/functions_modules.php:2572 +#: ../../include/functions_modules.php:2576 +#: ../../include/functions_modules.php:2580 +#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1469 +#: ../../operation/agentes/status_monitor.php:1479 +#: ../../operation/agentes/status_monitor.php:1485 +#: ../../operation/agentes/status_monitor.php:1495 +#: ../../operation/agentes/status_monitor.php:1501 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +#: ../../operation/agentes/pandora_networkmap.view.php:323 +#: ../../operation/agentes/pandora_networkmap.view.php:328 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +msgid "Last status" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2754 +msgid "Delete service element" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2813 +msgid "FAIL" +msgstr "" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "" + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "" + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr "" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "" + +#: ../../enterprise/include/functions_login.php:145 +msgid "Successfully" +msgstr "" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "" + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "" + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr "" + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "" + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "" + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "" + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "" + +#: ../../enterprise/include/functions_login.php:357 +msgid "Password confirm does not match" +msgstr "" + +#: ../../enterprise/include/functions_login.php:364 +msgid "Password empty" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:181 +msgid "There was a problem creating Alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:257 +msgid "There was a problem deleting Alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:712 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:726 +msgid "There was a problem creating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:763 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:776 +msgid "There was a problem updating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:812 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:826 +msgid "There was a problem deleting Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:867 +msgid "There was a problem standby alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:882 +msgid "There was a problem standby off alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:926 +msgid "There was a problem disabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:942 +msgid "There was a problem enabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1402 +msgid "Failed to cleanup old rules." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1411 +msgid "Failed to apply rule." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1551 +msgid "any" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:565 +msgid "Not set" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:575 +msgid "Active-Active" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:577 +msgid "Active-Passive" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:773 +msgid "Cluster name" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:774 +msgid "" +"An agent with the same name of the cluster will be created, as well a " +"special service with the same name" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:788 +msgid "Cluster type" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:789 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master " +"member is working" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:797 +msgid "Active - Active" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:798 +msgid "Active - Pasive" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:818 +msgid "Target cluster agent will be stored under this group" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:834 +#: ../../include/functions_servers.php:610 +msgid "Prediction server" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:835 +msgid "" +"You must select a Prediction Server to perform all cluster status " +"calculations" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:989 +msgid "critical if" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:998 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1021 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1036 +msgid "Please, set threholds for all active-active modules" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1140 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1142 +msgid "" +"If a critical balanced module is going to critical status, then cluster will " +"be critical." +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:541 +msgid "There was a problem creating RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:686 +#: ../../enterprise/include/lib/RCMDFile.class.php:710 +msgid "There was a problem deleting RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:858 +msgid "No agent configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:866 +msgid "you don't have write permissions in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:907 +msgid "This agent is already a target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:938 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1004 +msgid "There was a problem creating RCMD files" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1051 +msgid "There was a problem creating target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1085 +msgid "There was a problem adding items in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1111 +#: ../../enterprise/include/lib/RCMDFile.class.php:1278 +msgid "No agent has been selected" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1144 +msgid "Target doesn't exist" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1216 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1252 +msgid "There was a problem deleting target from DB" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1410 +msgid "Yaml is empty" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1419 +msgid "Doesn't have a valid YAML format" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1437 +#, php-format +msgid "%s field is not allowed" +msgstr "" + +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "" + +#: ../../enterprise/include/functions_events.php:107 +#: ../../godmode/events/event_filter.php:124 +#: ../../godmode/events/event_edit_filter.php:316 +#: ../../include/lib/Dashboard/Widgets/events_list.php:329 +#: ../../operation/events/events_list.php:956 +#: ../../operation/events/events.php:915 ../../operation/events/events.php:1390 +msgid "Event status" +msgstr "" + +#: ../../enterprise/include/functions_events.php:168 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../operation/events/events_list.php:776 +#: ../../operation/events/events.php:1097 +msgid "User ack." +msgstr "" + +#: ../../enterprise/include/functions_events.php:178 +#: ../../godmode/events/event_edit_filter.php:415 +#: ../../operation/events/events_list.php:857 +#: ../../operation/events/events.php:1155 +msgid "Date from" +msgstr "" + +#: ../../enterprise/include/functions_events.php:188 +#: ../../godmode/events/event_edit_filter.php:418 +#: ../../operation/events/events_list.php:861 +#: ../../operation/events/events.php:1206 +msgid "Date to" +msgstr "" + +#: ../../enterprise/include/functions_events.php:208 +#: ../../godmode/events/event_edit_filter.php:564 +#: ../../operation/events/events_list.php:823 +#: ../../operation/events/events.php:1114 +msgid "Alert events" +msgstr "" + +#: ../../enterprise/include/functions_events.php:219 +msgid "Id source events" +msgstr "" + +#: ../../enterprise/include/functions_events.php:229 +#: ../../godmode/admin_access_logs.php:72 +#: ../../godmode/admin_access_logs.php:73 +#: ../../godmode/events/event_edit_filter.php:370 +#: ../../mobile/operation/events.php:705 +#: ../../include/lib/Dashboard/Widgets/events_list.php:289 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/events/events_list.php:959 +#: ../../operation/events/events.php:928 ../../operation/events/events.php:1420 +msgid "Max. hours old" +msgstr "" + +#: ../../enterprise/include/functions_events.php:245 +#: ../../enterprise/include/functions_events.php:267 +msgid "More than 5 tags" +msgstr "" + +#: ../../enterprise/include/functions_events.php:251 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../operation/events/events_list.php:878 +#: ../../operation/events/events_list.php:881 +#: ../../operation/events/events.php:1238 +#: ../../operation/events/events.php:1241 +msgid "Events with following tags" +msgstr "" + +#: ../../enterprise/include/functions_events.php:273 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../operation/events/events_list.php:879 +#: ../../operation/events/events_list.php:882 +#: ../../operation/events/events.php:1239 +#: ../../operation/events/events.php:1242 +msgid "Events without following tags" +msgstr "" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:451 +msgid "Active filter" +msgstr "" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:451 +msgid "Active filters" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:182 +#: ../../enterprise/include/functions_update_manager.php:376 +#: ../../include/functions_update_manager.php:1344 +#: ../../include/functions_update_manager.php:1346 +#: ../../include/functions_update_manager.php:1486 +#: ../../include/functions_update_manager.php:1489 +msgid "Could not connect to internet" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:184 +#: ../../include/functions_update_manager.php:1350 +#: ../../include/functions_update_manager.php:1352 +#: ../../include/functions_update_manager.php:1495 +#: ../../include/functions_update_manager.php:1498 +msgid "Server not found." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:186 +#: ../../enterprise/include/functions_update_manager.php:391 +#, php-format +msgid "There is a error: %s" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:197 +#, php-format +msgid "There are %s updates, and the first to update is:" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:206 +msgid "Version number:" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:207 +msgid "Show details" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:214 +#: ../../godmode/update_manager/update_manager.offline.php:71 +#: ../../include/functions_update_manager.php:1367 +msgid "Minor release available" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:215 +#: ../../godmode/update_manager/update_manager.offline.php:72 +#: ../../include/functions_update_manager.php:1368 +msgid "New package available" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:216 +#: ../../enterprise/include/functions_update_manager.php:218 +#: ../../godmode/update_manager/update_manager.offline.php:73 +#: ../../godmode/update_manager/update_manager.offline.php:75 +#: ../../include/functions_update_manager.php:1369 +#: ../../include/functions_update_manager.php:1371 +msgid "Minor release rejected. Changes will not apply." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:217 +#: ../../godmode/update_manager/update_manager.offline.php:74 +#: ../../include/functions_update_manager.php:1370 +msgid "" +"Minor release rejected. The database will not be updated and the package " +"will apply." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:219 +#: ../../godmode/update_manager/update_manager.offline.php:76 +#: ../../include/functions_update_manager.php:1372 +msgid "These package changes will not apply." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:220 +#: ../../godmode/update_manager/update_manager.offline.php:77 +#: ../../include/functions_update_manager.php:1373 +msgid "Package rejected. These package changes will not apply." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:221 +#: ../../godmode/update_manager/update_manager.offline.php:78 +#: ../../include/functions_update_manager.php:1374 +msgid "Database successfully updated" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:222 +#: ../../godmode/update_manager/update_manager.offline.php:79 +#: ../../include/functions_update_manager.php:1375 +msgid "Error in MR file" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:223 +#: ../../godmode/update_manager/update_manager.offline.php:80 +#: ../../include/functions_update_manager.php:1376 +msgid "Package updated successfully" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:224 +#: ../../godmode/update_manager/update_manager.offline.php:81 +#: ../../include/functions_update_manager.php:1377 +msgid "Error in package updated" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:225 +#: ../../godmode/update_manager/update_manager.offline.php:82 +#: ../../include/functions_update_manager.php:1378 +msgid "Database MR version is inconsistent, do you want to apply the package?" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:226 +#: ../../godmode/update_manager/update_manager.offline.php:83 +#: ../../include/functions_update_manager.php:1379 +msgid "There are db changes" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:227 +#: ../../godmode/update_manager/update_manager.offline.php:84 +#: ../../include/functions_update_manager.php:1380 +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:228 +#: ../../godmode/update_manager/update_manager.offline.php:85 +#: ../../include/functions_update_manager.php:1381 +msgid "We recommend launching " +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:229 +#: ../../godmode/update_manager/update_manager.offline.php:86 +#: ../../include/functions_update_manager.php:1382 +msgid "planned downtime" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:236 +#: ../../godmode/update_manager/update_manager.offline.php:92 +#: ../../include/functions_update_manager.php:1389 +msgid " to this process" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:238 +#: ../../godmode/update_manager/update_manager.offline.php:95 +#: ../../include/functions_update_manager.php:1392 ../../general/header.php:78 +msgid "About minor release update" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:241 +#: ../../godmode/update_manager/update_manager.offline.php:98 +#: ../../include/functions_update_manager.php:1395 +msgid "There is a new update available" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:242 +#: ../../godmode/update_manager/update_manager.offline.php:99 +#: ../../include/functions_update_manager.php:1396 +msgid "" +"There is a new update available to apply. Do you want to start the update " +"process?" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:243 +#: ../../godmode/update_manager/update_manager.offline.php:102 +#: ../../include/functions_update_manager.php:1397 +msgid "Applying DB MR" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:246 +#: ../../godmode/update_manager/update_manager.offline.php:105 +#: ../../include/functions_update_manager.php:1400 +msgid "Apply MR" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:266 +#: ../../include/functions_update_manager.php:1408 +msgid "There is no update available." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:383 +#: ../../include/ajax/update_manager.ajax.php:462 +msgid "Fail to update to the last package." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:409 +#: ../../include/ajax/update_manager.ajax.php:474 +msgid "Starting to update to the last package." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:453 +#: ../../include/ajax/update_manager.ajax.php:96 +msgid "There was an error extracting the file '" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:470 +#: ../../include/ajax/update_manager.ajax.php:113 +msgid "The package was not extracted." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:526 +#: ../../include/ajax/update_manager.ajax.php:571 +msgid "progress" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:575 +#: ../../include/ajax/update_manager.ajax.php:253 +#: ../../include/functions_update_manager.php:1061 +msgid "An error ocurred while reading a file." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:619 +#: ../../enterprise/include/functions_update_manager.php:662 +#: ../../include/ajax/update_manager.ajax.php:217 +#: ../../include/ajax/update_manager.ajax.php:232 +#: ../../include/functions_update_manager.php:1102 +#: ../../include/functions_update_manager.php:1141 +msgid "Some of your old files might not be recovered." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:628 +#: ../../enterprise/include/functions_update_manager.php:633 +#: ../../enterprise/include/functions_update_manager.php:653 +#: ../../include/ajax/update_manager.ajax.php:207 +#: ../../include/ajax/update_manager.ajax.php:212 +#: ../../include/ajax/update_manager.ajax.php:238 +#: ../../include/functions_update_manager.php:1107 +#: ../../include/functions_update_manager.php:1112 +#: ../../include/functions_update_manager.php:1132 +msgid "Some of your files might not be recovered." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:642 +#: ../../enterprise/include/functions_update_manager.php:672 +#, php-format +msgid "Line '%s' not copied to the progress file." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:684 +#: ../../include/ajax/update_manager.ajax.php:259 +#: ../../include/functions_update_manager.php:1163 +msgid "The package does not exist" +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:697 +#: ../../include/ajax/update_manager.ajax.php:617 +#: ../../include/functions_update_manager.php:1178 +msgid "The package is installed." +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2762 +msgid "Agent alerts action does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2769 +msgid "Agent alerts template does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2776 +msgid "Agent inventory does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2783 +msgid "Exists agent conf please remove configuration file from target node." +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2790 +msgid "Agent collections does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2797 +msgid "Agent plugins does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2804 +msgid "" +"Agent policies definitions does not match with defined ones in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2811 +msgid "Agent group does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2818 +msgid "Agent already exists in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2842 +msgid "The agent: has not been added due to problems in the insertion" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2847 +msgid "The agent: has already been added to the migration queue" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2925 +msgid "Cannot " +msgstr "" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Client" +msgstr "" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1147 +msgid "Support expires" +msgstr "" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:511 +#: ../../enterprise/include/functions_policies.php:526 +#: ../../include/functions_alerts.php:460 +msgid "copy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3519 +msgid "Policy linkation" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3524 +msgid "Module linked" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3526 +#: ../../enterprise/include/functions_policies.php:3538 +msgid "Unlink from policy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3530 +msgid "Module unlinked" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3532 +#: ../../enterprise/include/functions_policies.php:3544 +msgid "Relink to policy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3536 +msgid "Module pending to link" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3536 +#: ../../godmode/agentes/module_manager_editor.php:540 +msgid "Module will be linked in the next application" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3542 +msgid "Module pending to unlink" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3542 +#: ../../godmode/agentes/module_manager_editor.php:554 +msgid "Module will be unlinked in the next application" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3734 +#: ../../godmode/agentes/configurar_agente.php:472 +#: ../../godmode/agentes/configurar_agente.php:659 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3737 +#: ../../godmode/agentes/configurar_agente.php:475 +#: ../../godmode/agentes/configurar_agente.php:665 +msgid "SNMP Interfaces wizard" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3740 +#: ../../godmode/agentes/configurar_agente.php:478 +#: ../../godmode/agentes/configurar_agente.php:671 +msgid "WMI Wizard" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4036 +msgid "Create a new policy map" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4369 +#: ../../extensions/resource_registration.php:1027 +msgid "Error, please install the PHP libXML in the system." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4381 +#, php-format +msgid "" +"This extension makes registration of policies enterprise.
You can get " +"more policies in our Public Resource Library" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4388 +#: ../../extensions/resource_registration.php:1048 +msgid "Group filter: " +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4392 +#: ../../extensions/extension_uploader.php:89 +#: ../../extensions/resource_registration.php:1052 +#: ../../extensions/plugin_registration.php:45 +#: ../../godmode/alerts/alert_special_days.php:290 +#: ../../operation/incidents/incident_detail.php:527 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 +msgid "Upload" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4431 +#: ../../enterprise/include/functions_policies.php:4439 +#: ../../enterprise/include/functions_policies.php:5036 +msgid "This will not produce any action." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4496 +#: ../../enterprise/include/functions_policies.php:5065 +#, php-format +msgid "Error connecting with node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4505 +#: ../../enterprise/include/functions_policies.php:5074 +#, php-format +msgid "Policy does not exist in node %s. Error creating it." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4511 +#: ../../enterprise/include/functions_policies.php:5080 +#, php-format +msgid "" +"This policy exist in node %s with other name (%s). Change the name to '%s' " +"to apply the policy." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4523 +#: ../../enterprise/include/functions_policies.php:5092 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4539 +#, php-format +msgid "Error syncronizing the agents to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4552 +#, php-format +msgid "Error syncronizing the groups to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4565 +#, php-format +msgid "Error syncronizing the modules to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4581 +#, php-format +msgid "Error syncronizing the alerts to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4591 +#, php-format +msgid "Error syncronizing the alert actions to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4605 +#, php-format +msgid "Error syncronizing the inventory modules to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4618 +#, php-format +msgid "Error syncronizing the plugins to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4632 +#, php-format +msgid "Error syncronizing the collections to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4642 +#, php-format +msgid "Error adding the queue to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:5130 +msgid "Error syncronizing ." +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:175 +msgid "Empty configuration" +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:180 +msgid "Empty OS" +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:342 +#: ../../include/functions_alerts.php:1135 +#: ../../include/functions_network_components.php:617 +msgid "Copy of" +msgstr "" + +#: ../../enterprise/include/functions_ux_console.php:506 +#: ../../enterprise/operation/agentes/tag_view.php:861 +#: ../../enterprise/operation/agentes/tag_view.php:871 +#: ../../enterprise/operation/agentes/ux_console_view.php:102 +#: ../../enterprise/operation/agentes/ux_console_view.php:297 +#: ../../enterprise/operation/agentes/ux_console_view.php:377 +#: ../../enterprise/operation/agentes/wux_console_view.php:351 +#: ../../include/functions_ui.php:5723 +msgid "Snapshot view" +msgstr "" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:558 +#: ../../mobile/operation/agents.php:453 ../../mobile/operation/modules.php:769 +#: ../../mobile/operation/agent.php:385 +#: ../../mobile/operation/visualmap.php:143 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:864 +#: ../../mobile/operation/tactical.php:239 +msgid "Loading..." +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:38 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:97 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:289 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 +msgid "Transactions List" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:72 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:377 +msgid "Edit Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../include/functions_events.php:2419 +msgid "V." +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:69 +msgid "Policy outdate" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:145 +msgid "Toggle the collection table" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:141 +msgid "Descripttion" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:146 +msgid "Show Collection" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:205 +#: ../../enterprise/operation/agentes/policy_view.php:214 +msgid "Toggle the alert table" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:206 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../operation/agentes/alerts_status.php:513 +#: ../../operation/agentes/alerts_status.php:549 +#: ../../operation/agentes/alerts_status.php:584 +#: ../../operation/agentes/alerts_status.php:617 +#: ../../operation/agentes/alerts_status.functions.php:107 +msgid "Standby" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:210 +#: ../../extensions/agents_alerts.php:521 +#: ../../godmode/snmpconsole/snmp_alert.php:1284 +#: ../../godmode/alerts/alert_view.php:76 +#: ../../include/functions_reporting_html.php:4185 +#: ../../include/ajax/alert_list.ajax.php:281 +#: ../../include/ajax/alert_list.ajax.php:306 +#: ../../include/functions_treeview.php:459 +#: ../../operation/agentes/alerts_status.php:525 +#: ../../operation/agentes/alerts_status.php:560 +#: ../../operation/agentes/alerts_status.php:595 +#: ../../operation/agentes/alerts_status.php:627 +msgid "Last fired" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:215 +msgid "Show Alert" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:322 +#: ../../enterprise/operation/agentes/policy_view.php:331 +msgid "Toggle the module table" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:323 +msgid "Relationship" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:332 +msgid "Show Modules" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:351 +msgid "(Un-adopted)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:354 +msgid "(Adopted)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:359 +msgid "(Un-adopted) (Unlinked)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:362 +msgid "(Adopted) (Unlinked)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:371 +#: ../../godmode/agentes/module_manager.php:816 +msgid "Non initialized module" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:49 +msgid "Transactions list" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:123 +msgid "Name can't be empty" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:180 +msgid "Transaction name" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:183 +msgid "Running status" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:185 +msgid "Time spent" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:186 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:444 +#: ../../operation/incidents/incident_detail.php:289 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:418 +#: ../../operation/servers/recon_view.php:112 +msgid "Updated at" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:227 +msgid "Stopped" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:233 +msgid "Starting" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:235 +msgid "Stopping" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:361 +#: ../../godmode/menu.php:31 ../../godmode/setup/setup_ehorus.php:108 +#: ../../godmode/setup/setup_integria.php:493 +#: ../../operation/users/user_edit.php:695 +msgid "Start" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:372 +msgid "Edit phases" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:380 +msgid "Error in phases section" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:402 +msgid "Create Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:32 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:118 +#: ../../operation/agentes/status_monitor.php:388 +msgid "Monitor status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:202 +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../operation/agentes/alerts_status.functions.php:91 +msgid "Only it is show tags in use." +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:208 +#: ../../operation/agentes/status_monitor.php:452 +#: ../../operation/agentes/alerts_status.functions.php:96 +msgid "No tags" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:257 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:511 +msgid "Data server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:259 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:513 +msgid "Network server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:263 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:517 +msgid "Plugin server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:267 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:521 +msgid "WMI server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:271 +#: ../../godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../operation/agentes/status_monitor.php:525 +msgid "Prediction server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../enterprise/operation/agentes/tag_view.php:657 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1155 +msgid "Server type" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../godmode/agentes/modificar_agente.php:183 +#: ../../operation/agentes/status_monitor.php:542 +msgid "Only enabled" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:285 +#: ../../godmode/agentes/modificar_agente.php:182 +#: ../../operation/agentes/status_monitor.php:543 +msgid "Only disabled" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../operation/agentes/status_monitor.php:546 +msgid "Show monitors..." +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:298 +#: ../../enterprise/operation/agentes/tag_view.php:656 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:561 +msgid "Data type" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:426 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:729 +msgid "Agent custom fields" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:579 +#: ../../include/functions_treeview.php:645 +#: ../../operation/agentes/estado_agente.php:710 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:624 +#: ../../operation/agentes/estado_agente.php:846 +msgid "Remote config" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:659 +#: ../../enterprise/operation/services/services.service.php:177 +#: ../../enterprise/operation/services/services.list.php:435 +#: ../../extensions/realtime_graphs.php:110 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/ajax/module.php:848 +#: ../../include/class/NetworkMap.class.php:2933 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:249 +#: ../../include/functions_events.php:4174 +#: ../../operation/agentes/status_monitor.php:1178 +#: ../../operation/search_modules.php:36 +msgid "Graph" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:660 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:151 +#: ../../godmode/agentes/module_manager.php:651 +#: ../../operation/agentes/status_monitor.php:1183 +msgid "Warn" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:923 +#: ../../mobile/operation/modules.php:515 +#: ../../mobile/operation/modules.php:578 +#: ../../include/functions_modules.php:2557 +#: ../../include/functions_modules.php:3524 +#: ../../include/functions_events.php:60 +#: ../../operation/agentes/status_monitor.php:1381 +#: ../../operation/search_modules.php:96 ../../operation/events/events.php:1848 +msgid "NOT INIT" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1063 +#: ../../include/functions_reporting.php:10081 +#: ../../include/functions_reporting.php:10090 +#, php-format +msgid "%d Total modules" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1064 +#: ../../include/functions_reporting.php:10082 +#, php-format +msgid "%d Modules in normal status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1065 +#: ../../include/functions_reporting.php:10083 +#, php-format +msgid "%d Modules in critical status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1066 +#: ../../include/functions_reporting.php:10084 +#, php-format +msgid "%d Modules in warning status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1067 +#: ../../include/functions_reporting.php:10085 +#, php-format +msgid "%d Modules in unknown status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1068 +#: ../../include/functions_reporting.php:10086 +#, php-format +msgid "%d Modules in not init status" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:63 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:106 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:368 +msgid "Edit main data" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:82 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:125 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:387 +msgid "View Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:113 +msgid "Return to windowed mode" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:119 +msgid "Transactional Map - " +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:128 +msgid "Transaction not found" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:131 +msgid "Master lock file not found (No data to show)" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:134 +msgid "Transaction is stopped" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:137 +msgid "Error, please check the transaction phases" +msgstr "" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:95 +#: ../../operation/agentes/pandora_networkmap.editor.php:294 +msgid "Position X" +msgstr "" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:97 +#: ../../operation/agentes/pandora_networkmap.editor.php:296 +msgid "Position Y" +msgstr "" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/agentes/pandora_networkmap.editor.php:299 +msgid "Zoom scale" +msgstr "" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:102 +#: ../../operation/agentes/pandora_networkmap.editor.php:304 +msgid "" +"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgstr "" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 msgid "Recon task" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:198 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 msgid "CIDR IP mask" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:200 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:132 +#: ../../operation/agentes/pandora_networkmap.editor.php:309 msgid "Source from recon task" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:202 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 msgid "" "It is setted any recon task, the nodes get from the recontask IP mask " "instead from the group." msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:206 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:150 +#: ../../operation/agentes/pandora_networkmap.editor.php:328 msgid "Show only the task with the recon script \"SNMP L2 Recon\"." msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:208 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:332 msgid "Source from CIDR IP mask" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:212 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:166 +#: ../../operation/agentes/pandora_networkmap.editor.php:357 msgid "Don't show subgroups:" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:225 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:200 +#: ../../operation/agentes/pandora_networkmap.editor.php:375 msgid "Method generation networkmap" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:237 -msgid "Save networkmap" +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:215 +#: ../../operation/agentes/pandora_networkmap.editor.php:395 +msgid "Node separation" msgstr "" -#: ../../operation/agentes/pandora_networkmap.editor.php:243 -msgid "Update networkmap" +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:216 +#: ../../operation/agentes/pandora_networkmap.editor.php:396 +msgid "Separation between nodes. By default 0.25" msgstr "" -#: ../../operation/agentes/group_view.php:117 -msgid "Summary of the status groups" +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:218 +#: ../../operation/agentes/pandora_networkmap.editor.php:398 +msgid "Rank separation" msgstr "" -#: ../../operation/agentes/group_view.php:170 -#: ../../include/functions_reporting_html.php:690 -#: ../../include/functions_reporting_html.php:2538 -msgid "Not Init" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/agentes/stat_win.php:115 -msgid "There was a problem locating the source of the graph" -msgstr "" - -#: ../../operation/agentes/stat_win.php:305 -msgid "Avg. Only" -msgstr "" - -#: ../../operation/agentes/stat_win.php:320 -msgid "Begin time" -msgstr "" - -#: ../../operation/agentes/stat_win.php:345 -#: ../../operation/agentes/graphs.php:140 -msgid "Show events" -msgstr "" - -#: ../../operation/agentes/stat_win.php:356 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:219 +#: ../../operation/agentes/pandora_networkmap.editor.php:399 msgid "" -"Show events is disabled because this Pandora node is set the event " -"replication." +"Only flat and radial. Separation between arrows. By default 0.5 in flat and " +"1.0 in radial" msgstr "" -#: ../../operation/agentes/stat_win.php:362 -#: ../../operation/agentes/graphs.php:142 -msgid "Show alerts" +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:221 +#: ../../operation/agentes/pandora_networkmap.editor.php:401 +msgid "Min nodes dist" msgstr "" -#: ../../operation/agentes/stat_win.php:368 -msgid "Show event graph" +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:222 +#: ../../operation/agentes/pandora_networkmap.editor.php:402 +msgid "Only circular. Minimum separation between all nodes. By default 1.0" msgstr "" -#: ../../operation/agentes/stat_win.php:383 -#: ../../mobile/operation/module_graph.php:418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1295 -msgid "Time compare (Overlapped)" +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:224 +#: ../../operation/agentes/pandora_networkmap.editor.php:404 +msgid "Default ideal node separation" msgstr "" -#: ../../operation/agentes/stat_win.php:389 -#: ../../mobile/operation/module_graph.php:410 -msgid "Time compare (Separated)" +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:225 +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" msgstr "" -#: ../../operation/agentes/stat_win.php:395 -#: ../../mobile/operation/module_graph.php:426 -msgid "Show unknown graph" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:42 -msgid "The agent has not assigned server. Maybe agent does not run fine." -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/estado_generalagente.php:119 -msgid "" -"Agent statuses are re-calculated by the server, they are not shown in real " -"time." -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:147 -#: ../../extensions/net_tools.php:131 -msgid "IP address" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:196 -msgid "Agent contact" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:218 -msgid "Next contact" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:241 -msgid "Agent info" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:256 -#: ../../include/functions_treeview.php:714 -msgid "Agent access rate (24h)" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:268 -#: ../../include/functions_treeview.php:571 -msgid "Other IP addresses" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/agentes/estado_generalagente.php:310 -#: ../../include/functions_treeview.php:659 -msgid "Position (Long, Lat)" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:313 -msgid "There is no GIS data." -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:338 -#: ../../include/functions_treeview.php:676 -msgid "Timezone Offset" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:388 -msgid "Active incident on this agent" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:392 -#: ../../operation/incidents/incident_detail.php:419 -#: ../../godmode/setup/news.php:222 -msgid "Author" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:397 -msgid "Title" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/estado_generalagente.php:448 -#: ../../include/functions_treeview.php:796 -msgid "Interface information" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:477 -#: ../../include/functions_treeview.php:774 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1204 +#: ../../include/functions_treeview.php:851 +#: ../../operation/agentes/estado_generalagente.php:654 msgid "Interface traffic" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:538 -msgid "Events info (24hr.)" +#: ../../enterprise/operation/agentes/ver_agente.php:69 +#: ../../operation/agentes/ver_agente.php:847 +msgid "Main IP" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:601 -#: ../../mobile/operation/agent.php:214 -#: ../../include/functions_treeview.php:722 -msgid "Events (24h)" +#: ../../enterprise/operation/agentes/ver_agente.php:75 +#: ../../include/functions_events.php:4094 +#: ../../operation/agentes/ver_agente.php:859 +msgid "Last remote contact" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:620 -msgid "Refresh data" +#: ../../enterprise/operation/agentes/ver_agente.php:119 +#: ../../operation/agentes/ver_agente.php:904 +msgid "Monitors down" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:622 -msgid "Force remote checks" +#: ../../enterprise/operation/agentes/ver_agente.php:161 +#: ../../mobile/operation/groups.php:164 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:504 +#: ../../operation/agentes/ver_agente.php:945 +msgid "Alerts fired" msgstr "" -#: ../../operation/agentes/estado_agente.php:156 -msgid "Sucessfully deleted agent" +#: ../../enterprise/operation/agentes/ver_agente.php:234 +msgid "URL Route Analyzer" msgstr "" -#: ../../operation/agentes/estado_agente.php:158 -msgid "There was an error message deleting the agent" +#: ../../enterprise/operation/agentes/ver_agente.php:250 +msgid "UX Console" msgstr "" -#: ../../operation/agentes/estado_agente.php:175 -#: ../../godmode/agentes/planned_downtime.editor.php:706 -#: ../../godmode/agentes/modificar_agente.php:165 -msgid "Recursion" +#: ../../enterprise/operation/agentes/ver_agente.php:266 +msgid "WUX Console" msgstr "" -#: ../../operation/agentes/estado_agente.php:593 -msgid "Remote config" +#: ../../enterprise/operation/agentes/collection_view.php:53 +msgid "No collection assigned to this agent" msgstr "" -#: ../../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." +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:46 +msgid "Please, reset the transaction" msgstr "" -#: ../../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." +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:85 +msgid "Successfully data updated" msgstr "" -#: ../../operation/agentes/gis_view.php:91 -msgid "Last position in " +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:86 +msgid "Could not be data updated" msgstr "" -#: ../../operation/agentes/gis_view.php:98 -msgid "Period to show data as path" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:130 +msgid "Transactional Map - Create Phase - " msgstr "" -#: ../../operation/agentes/gis_view.php:102 -msgid "Refresh path" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:145 +msgid "Index" msgstr "" -#: ../../operation/agentes/gis_view.php:105 -msgid "Positional data from the last" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:148 +msgid "Dependencies" msgstr "" -#: ../../operation/agentes/gis_view.php:144 -msgid "This agent doesn't have any GIS data." +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:149 +msgid "Enables" msgstr "" -#: ../../operation/agentes/gis_view.php:172 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:214 +msgid "Not valid dependencies field" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:220 +msgid "Not valid enables field" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:294 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:393 +msgid "Transactional Map - Create Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:311 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:414 +msgid "Loop interval" +msgstr "" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +msgid "Route not found" +msgstr "" + +#: ../../enterprise/operation/agentes/agent_inventory.php:61 +msgid "This agent has not modules inventory" +msgstr "" + +#: ../../enterprise/operation/agentes/agent_inventory.php:162 +#: ../../enterprise/operation/agentes/agent_inventory.php:163 +msgid "Diff view" +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:43 +msgid "No ux transaction selected." +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +msgid "No ux transactions found." +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:133 +#: ../../enterprise/operation/agentes/wux_console_view.php:253 +msgid "Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:278 +msgid "Show transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +msgid "Execution results for transaction " +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:266 +#: ../../enterprise/operation/agentes/wux_console_view.php:331 +msgid "Global results" +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 +msgid "Transaction history" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:92 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:167 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:229 +msgid "Selected transaction has no stats" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:242 +msgid "No WUX transactions found." +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:356 +msgid "Failed: " +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:356 +#: ../../enterprise/operation/agentes/wux_console_view.php:376 +#: ../../godmode/setup/performance.php:179 +#: ../../godmode/setup/performance.php:234 ../../general/logon_ok.php:189 +msgid "ago" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:368 +#: ../../enterprise/operation/agentes/wux_console_view.php:371 +#: ../../include/functions_alerts.php:664 +msgid "Unknown status" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:376 +msgid "Success: " +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:382 +msgid "Total transaction time: " +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:396 #, php-format -msgid "%s Km" +msgid "Execution results for transaction %s" msgstr "" -#: ../../operation/agentes/gis_view.php:178 -#: ../../godmode/setup/gis_step_2.php:300 -msgid "Longitude" +#: ../../enterprise/operation/agentes/wux_console_view.php:525 +msgid "View all stats" msgstr "" -#: ../../operation/agentes/gis_view.php:179 -#: ../../godmode/setup/gis_step_2.php:296 -msgid "Latitude" +#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../include/functions_events.php:6624 +#: ../../operation/snmpconsole/snmp_view.php:988 ../../operation/menu.php:251 +#: ../../operation/events/events.php:1706 +#: ../../operation/events/events.php:1872 +#: ../../operation/events/events.build_table.php:831 +msgid "Show more" msgstr "" -#: ../../operation/agentes/gis_view.php:180 -#: ../../godmode/setup/gis_step_2.php:304 -msgid "Altitude" +#: ../../enterprise/operation/agentes/wux_console_view.php:609 +msgid "Invalid transaction." msgstr "" -#: ../../operation/agentes/gis_view.php:182 -#: ../../godmode/agentes/planned_downtime.list.php:145 -msgid "To" +#: ../../enterprise/operation/log/elasticsearch_interface.php:32 +#: ../../enterprise/operation/log/log_viewer.php:324 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" msgstr "" -#: ../../operation/agentes/gis_view.php:184 -msgid "Distance" +#: ../../enterprise/operation/log/elasticsearch_interface.php:37 +#: ../../enterprise/operation/log/log_viewer.php:318 +#: ../../enterprise/operation/menu.php:202 +msgid "Elasticsearch Interface" msgstr "" -#: ../../operation/agentes/gis_view.php:185 -msgid "# of Packages" -msgstr "" - -#: ../../operation/agentes/gis_view.php:189 -msgid "positional data" -msgstr "" - -#: ../../operation/agentes/status_events.php:31 -#: ../../operation/agentes/status_events.php:32 -msgid "Latest events for this agent" -msgstr "" - -#: ../../operation/agentes/graphs.php:86 -msgid "Other modules" -msgstr "" - -#: ../../operation/agentes/graphs.php:91 -msgid "Modules network no proc" -msgstr "" - -#: ../../operation/agentes/graphs.php:143 -msgid "the combined graph does not show the alerts into this graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:145 -msgid "Show as one combined graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:147 -msgid "one combined graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:150 -msgid "several graphs for each module" -msgstr "" - -#: ../../operation/agentes/graphs.php:157 -msgid "Save as custom graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:163 -msgid "Filter graphs" -msgstr "" - -#: ../../operation/agentes/graphs.php:210 -msgid "There was an error loading the graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:218 -#: ../../operation/agentes/graphs.php:221 -msgid "Name custom graph" -msgstr "" - -#: ../../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 "" - -#: ../../operation/agentes/graphs.php:243 -msgid "Save custom graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:264 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "" - -#: ../../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 "" - -#: ../../operation/incidents/incident_statistics.php:33 -msgid "Incidents by status" -msgstr "" - -#: ../../operation/incidents/incident_statistics.php:36 -msgid "Incidents by priority" -msgstr "" - -#: ../../operation/incidents/incident_statistics.php:39 -msgid "Incidents by group" -msgstr "" - -#: ../../operation/incidents/incident_statistics.php:42 -msgid "Incidents by user" -msgstr "" - -#: ../../operation/incidents/incident_statistics.php:45 -msgid "Incidents by source" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../operation/incidents/incident_detail.php:120 -msgid "No description available" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:160 -msgid "File could not be saved due to database error" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:173 -msgid "File uploaded" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:174 -msgid "File could not be uploaded" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:233 -msgid "Incident details" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:238 -#: ../../operation/incidents/incident.php:411 -msgid "Create incident" -msgstr "" - -#: ../../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 "" - -#: ../../operation/incidents/incident_detail.php:259 -msgid "Opened at" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:327 -msgid "Creator" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:376 -msgid "Update incident" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:382 -msgid "Submit" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:396 -#: ../../operation/incidents/incident_detail.php:400 -msgid "Add note" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:432 -msgid "Notes attached to incident" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:453 -#: ../../operation/incidents/incident_detail.php:505 -msgid "Filename" -msgstr "" - -#: ../../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 "" - -#: ../../operation/incidents/incident_detail.php:481 -msgid "Attached files" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:499 -#: ../../operation/incidents/incident_detail.php:503 -msgid "Add attachment" -msgstr "" - -#: ../../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 "" - -#: ../../operation/incidents/incident.php:33 -msgid "Incident management" -msgstr "" - -#: ../../operation/incidents/incident.php:72 -msgid "Successfully reclaimed ownership" -msgstr "" - -#: ../../operation/incidents/incident.php:73 -msgid "Could not reclame ownership" -msgstr "" - -#: ../../operation/incidents/incident.php:143 -msgid "Error creating incident" -msgstr "" - -#: ../../operation/incidents/incident.php:146 -msgid "Incident created" -msgstr "" - -#: ../../operation/incidents/incident.php:233 -msgid "Incidents:" -msgstr "" - -#: ../../operation/incidents/incident.php:234 -msgid "All incidents" -msgstr "" - -#: ../../operation/incidents/incident.php:256 -msgid "Priorities:" -msgstr "" - -#: ../../operation/incidents/incident.php:257 -msgid "All priorities" -msgstr "" - -#: ../../operation/incidents/incident.php:261 -msgid "Users:" -msgstr "" - -#: ../../operation/incidents/incident.php:262 -msgid "All users" -msgstr "" - -#: ../../operation/incidents/incident.php:277 -msgid "Agents:" -msgstr "" - -#: ../../operation/incidents/incident.php:279 -#: ../../godmode/db/db_purge.php:167 -msgid "All agents" -msgstr "" - -#: ../../operation/incidents/incident.php:284 -msgid "Groups:" -msgstr "" - -#: ../../operation/incidents/incident.php:290 -msgid "Free text:" -msgstr "" - -#: ../../operation/incidents/incident.php:291 -msgid "Search by incident name or description, list matches." -msgstr "" - -#: ../../operation/incidents/incident.php:340 -#: ../../godmode/servers/servers.build_table.php:72 -#: ../../godmode/agentes/agent_incidents.php:90 -msgid "Updated" -msgstr "" - -#: ../../operation/incidents/incident.php:399 -msgid "Delete incidents" -msgstr "" - -#: ../../operation/incidents/incident.php:403 -msgid "Become owner" -msgstr "" - -#: ../../extensions/resource_exportation.php:53 -#: ../../extensions/resource_exportation.php:338 -msgid "Resource exportation" -msgstr "" - -#: ../../extensions/resource_exportation.php:341 +#: ../../enterprise/operation/log/elasticsearch_interface.php:41 msgid "" -"This extension makes exportation of resource template more easy. Here you " -"can export as a resource template in Pandora FMS 3.x format (.ptr). " +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly " +"what are you are doing. \n" +"This view is intended to be used only by users with a knowledge of " +"Elasticsearch" msgstr "" -#: ../../extensions/resource_exportation.php:352 -msgid "Report" +#: ../../enterprise/operation/log/elasticsearch_interface.php:53 +msgid "Query" msgstr "" -#: ../../extensions/module_groups.php:39 -msgid "Number fired of alerts" +#: ../../enterprise/operation/log/elasticsearch_interface.php:59 +msgid "Execute query" msgstr "" -#: ../../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" +#: ../../enterprise/operation/log/elasticsearch_interface.php:64 +msgid "Results" msgstr "" -#: ../../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" +#: ../../enterprise/operation/log/log_viewer.php:347 +msgid "All words" msgstr "" -#: ../../extensions/module_groups.php:168 -msgid "Combined table of agent group and module group" +#: ../../enterprise/operation/log/log_viewer.php:348 +msgid "Any word" msgstr "" -#: ../../extensions/module_groups.php:171 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" +#: ../../enterprise/operation/log/log_viewer.php:351 +msgid "Search mode" msgstr "" -#: ../../extensions/module_groups.php:297 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." +#: ../../enterprise/operation/log/log_viewer.php:398 +msgid "Full context" msgstr "" -#: ../../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" +#: ../../enterprise/operation/log/log_viewer.php:520 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:263 +msgid "Start date" msgstr "" -#: ../../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" +#: ../../enterprise/operation/log/log_viewer.php:544 +#: ../../operation/agentes/exportdata.php:338 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:287 +msgid "End date" msgstr "" -#: ../../extensions/module_groups.php:300 -msgid "" -"Green cell when the module group and agent have all modules in OK status" +#: ../../enterprise/operation/log/log_viewer.php:576 +msgid "Show log entries" msgstr "" -#: ../../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" +#: ../../enterprise/operation/log/log_viewer.php:577 +msgid "Graph log results" msgstr "" -#: ../../extensions/module_groups.php:302 -msgid "" -"Blue cell when the module group and agent have all modules in not init " -"status." +#: ../../enterprise/operation/log/log_viewer.php:579 +msgid "Display mode" msgstr "" -#: ../../extensions/module_groups.php:307 -msgid "There are no defined groups or module groups" +#: ../../enterprise/operation/log/log_viewer.php:592 +msgid "Use capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:615 +msgid "Create new model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:619 +#: ../../godmode/reporting/graph_builder.main.php:157 +msgid "Horizontal bars" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:620 +#: ../../godmode/reporting/graph_builder.main.php:158 +msgid "Vertical bars" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:622 +msgid "Graph type" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:637 +msgid "Advanced options " +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:795 +msgid "The start date cannot be greater than the end date" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:928 +msgid "Add new capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:931 +msgid "Edit capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1015 +msgid "Error create new model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1042 +msgid "Error delete model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1088 +msgid "Error update model" +msgstr "" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "" + +#: ../../enterprise/operation/menu.php:61 +#: ../../operation/agentes/ver_agente.php:1334 +#: ../../operation/agentes/ver_agente.php:1524 ../../general/sap_view.php:43 +msgid "SAP view" +msgstr "" + +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +msgstr "" + +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "" + +#: ../../enterprise/operation/inventory/inventory.php:245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1697 +msgid "Last" +msgstr "" + +#: ../../enterprise/operation/inventory/inventory.php:248 +msgid "Order by agent" +msgstr "" + +#: ../../enterprise/operation/inventory/inventory.php:289 +msgid "Export this list to CSV" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:116 +#: ../../enterprise/operation/services/services.service_map.php:140 +#: ../../include/lib/Dashboard/Widgets/service_map.php:162 +msgid "Service Map" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:134 +msgid "No Services" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:249 +#: ../../enterprise/operation/services/services.list.php:524 +msgid "SLA graph" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:260 +msgid "List of elements" +msgstr "" + +#: ../../enterprise/operation/services/services.service_map.php:160 +#: ../../extensions/agents_modules.php:872 +#: ../../extensions/module_groups.php:375 +#: ../../godmode/snmpconsole/snmp_alert.php:1460 +#: ../../include/functions_reporting_html.php:1728 +#: ../../include/lib/Dashboard/Widgets/service_map.php:322 +#: ../../operation/snmpconsole/snmp_view.php:1191 +msgid "Legend" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:41 +#: ../../enterprise/operation/services/services.list.php:41 +#: ../../enterprise/operation/services/services.table_services.php:38 +msgid "Service table view" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:52 +#: ../../enterprise/operation/services/services.list.php:52 +#: ../../enterprise/operation/services/services.table_services.php:49 +msgid "Service tree view" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:101 +#: ../../enterprise/operation/services/services.list.php:244 +#: ../../enterprise/operation/services/services.table_services.php:223 +msgid "Show only favourites" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:140 +#: ../../enterprise/operation/services/services.list.php:376 +#: ../../enterprise/operation/services/services.list.php:382 +#: ../../enterprise/operation/services/services.table_services.php:352 +#: ../../enterprise/operation/services/services.table_services.php:358 +msgid "No services defined." +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:224 +#: ../../godmode/groups/group_list.php:846 +msgid "Found groups" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:77 +msgid "Service deleted successfully" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:78 +msgid "Error deleting service" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:86 +msgid "Service forced successfully" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:87 +msgid "Error service forced" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:528 +msgid "Status graph" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:547 +#: ../../operation/agentes/pandora_networkmap.php:795 +msgid "Config" +msgstr "" + +#: ../../enterprise/operation/reporting/custom_reporting.php:65 +#: ../../enterprise/operation/reporting/custom_reporting.php:119 +msgid "Send by email" +msgstr "" + +#: ../../enterprise/operation/reporting/custom_reporting.php:73 +msgid "ID Report" +msgstr "" + +#: ../../enterprise/operation/reporting/custom_reporting.php:147 +msgid "Send by email " +msgstr "" + +#: ../../extensions/disabled/matrix_events.php:27 +msgid "Matrix events" +msgstr "" + +#: ../../extensions/quick_shell.php:104 ../../extensions/quick_shell.php:207 +msgid "WebService engine has not been started, please check documentation." +msgstr "" + +#: ../../extensions/quick_shell.php:116 +msgid "Retry" +msgstr "" + +#: ../../extensions/quick_shell.php:160 +msgid "Telnet" +msgstr "" + +#: ../../extensions/quick_shell.php:168 +msgid "Connect" +msgstr "" + +#: ../../extensions/quick_shell.php:196 +msgid "Please use SSH or Telnet." +msgstr "" + +#: ../../extensions/quick_shell.php:229 +msgid "WebService engine is not working properly, please check documentation." +msgstr "" + +#: ../../extensions/quick_shell.php:382 +#, php-format +msgid "%d Updated" +msgstr "" + +#: ../../extensions/quick_shell.php:385 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "" + +#: ../../extensions/quick_shell.php:395 +msgid "Quickshell" +msgstr "" + +#: ../../extensions/quick_shell.php:405 +msgid "Gotty path" +msgstr "" + +#: ../../extensions/quick_shell.php:415 +msgid "Gotty host" +msgstr "" + +#: ../../extensions/quick_shell.php:425 +msgid "Gotty ssh port" +msgstr "" + +#: ../../extensions/quick_shell.php:435 +msgid "Gotty telnet port" +msgstr "" + +#: ../../extensions/quick_shell.php:452 +msgid "Gotty user" +msgstr "" + +#: ../../extensions/quick_shell.php:462 +msgid "Gotty password" +msgstr "" + +#: ../../extensions/quick_shell.php:501 +msgid "QuickShell" +msgstr "" + +#: ../../extensions/extension_uploader.php:29 +msgid "Uploader extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:69 +msgid "Success to upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:70 +msgid "Fail to upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:79 +msgid "Upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:80 +msgid "Upload the extension as a zip file." +msgstr "" + +#: ../../extensions/extension_uploader.php:82 +msgid "Upload enterprise extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:95 +msgid "Extension uploader" msgstr "" #: ../../extensions/resource_registration.php:40 @@ -6535,833 +27332,526 @@ msgstr "" msgid "Error create '%s' item in report '%s'." msgstr "" -#: ../../extensions/resource_registration.php:68 +#: ../../extensions/resource_registration.php:71 #, php-format msgid "Error create '%s' report, the name exist and there aren't free name." msgstr "" -#: ../../extensions/resource_registration.php:75 +#: ../../extensions/resource_registration.php:79 #, php-format msgid "Warning create '%s' report, the name exist, the report have a name %s." msgstr "" -#: ../../extensions/resource_registration.php:82 +#: ../../extensions/resource_registration.php:88 msgid "Error the report haven't name." msgstr "" -#: ../../extensions/resource_registration.php:88 +#: ../../extensions/resource_registration.php:94 msgid "Error the report haven't group." msgstr "" -#: ../../extensions/resource_registration.php:98 +#: ../../extensions/resource_registration.php:106 #, php-format msgid "Success create '%s' report." msgstr "" -#: ../../extensions/resource_registration.php:99 +#: ../../extensions/resource_registration.php:107 #, php-format msgid "Error create '%s' report." msgstr "" -#: ../../extensions/resource_registration.php:327 -#: ../../extensions/resource_registration.php:348 -#: ../../extensions/resource_registration.php:358 +#: ../../extensions/resource_registration.php:384 +#: ../../extensions/resource_registration.php:406 +#: ../../extensions/resource_registration.php:417 #, php-format msgid "Success add '%s' content." msgstr "" -#: ../../extensions/resource_registration.php:328 -#: ../../extensions/resource_registration.php:349 -#: ../../extensions/resource_registration.php:359 -#, php-format -msgid "Error add '%s' action." -msgstr "" - -#: ../../extensions/resource_registration.php:335 +#: ../../extensions/resource_registration.php:394 #, php-format msgid "Success add '%s' SLA." msgstr "" -#: ../../extensions/resource_registration.php:336 +#: ../../extensions/resource_registration.php:395 #, php-format msgid "Error add '%s' SLA." msgstr "" -#: ../../extensions/resource_registration.php:377 +#: ../../extensions/resource_registration.php:438 #, php-format msgid "Error create '%s' visual map, lost tag name." msgstr "" -#: ../../extensions/resource_registration.php:413 +#: ../../extensions/resource_registration.php:481 #, php-format msgid "" "Error create '%s' visual map, the name exist and there aren't free name." msgstr "" -#: ../../extensions/resource_registration.php:420 +#: ../../extensions/resource_registration.php:489 #, php-format msgid "" "Warning create '%s' visual map, the name exist, the report have a name %s." msgstr "" -#: ../../extensions/resource_registration.php:428 +#: ../../extensions/resource_registration.php:501 #, php-format msgid "Success create '%s' visual map." msgstr "" -#: ../../extensions/resource_registration.php:429 +#: ../../extensions/resource_registration.php:502 #, php-format msgid "Error create '%s' visual map." msgstr "" -#: ../../extensions/resource_registration.php:535 +#: ../../extensions/resource_registration.php:663 #, php-format msgid "Success create item type '%d' visual map." msgstr "" -#: ../../extensions/resource_registration.php:536 +#: ../../extensions/resource_registration.php:664 #, php-format msgid "Error create item type '%d' visual map." msgstr "" -#: ../../extensions/resource_registration.php:554 -#: ../../extensions/resource_registration.php:569 +#: ../../extensions/resource_registration.php:683 +#: ../../extensions/resource_registration.php:699 #, php-format msgid "Success create item for agent '%s' visual map." msgstr "" -#: ../../extensions/resource_registration.php:555 -#: ../../extensions/resource_registration.php:570 +#: ../../extensions/resource_registration.php:684 +#: ../../extensions/resource_registration.php:700 #, php-format msgid "Error create item for agent '%s' visual map." msgstr "" -#: ../../extensions/resource_registration.php:792 +#: ../../extensions/resource_registration.php:960 #, php-format msgid "Success create '%s' component." msgstr "" -#: ../../extensions/resource_registration.php:793 +#: ../../extensions/resource_registration.php:961 #, php-format msgid "Error create '%s' component." msgstr "" -#: ../../extensions/resource_registration.php:849 -#: ../../extensions/resource_registration.php:889 +#: ../../extensions/resource_registration.php:1024 +#: ../../extensions/resource_registration.php:1067 msgid "Resource registration" msgstr "" -#: ../../extensions/resource_registration.php:852 -msgid "Error, please install the PHP libXML in the system." +#: ../../extensions/resource_registration.php:1034 +msgid "" +"This node is configured with centralized mode. Go to metaconsole to create a " +"policy." msgstr "" -#: ../../extensions/resource_registration.php:858 +#: ../../extensions/resource_registration.php:1038 +msgid "This extension makes registering resource templates easier." +msgstr "" + +#: ../../extensions/resource_registration.php:1038 +msgid "Here you can upload a resource template in .ptr format." +msgstr "" + +#: ../../extensions/resource_registration.php:1038 #, 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" +"Please refer to our documentation for more information on how to obtain and " +"use %s resources." msgstr "" -#: ../../extensions/resource_registration.php:872 -msgid "Group filter: " -msgstr "" - -#: ../../extensions/disabled/ssh_gateway.php:52 -msgid "You need to specify a user and a host address" -msgstr "" - -#: ../../extensions/disabled/ssh_gateway.php:57 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:66 -msgid "Host address" -msgstr "" - -#: ../../extensions/disabled/ssh_gateway.php:59 -#, php-format -msgid "For security reasons the following characters are not allowed: %s" -msgstr "" - -#: ../../extensions/disabled/ssh_gateway.php:60 -msgid "Connect" -msgstr "" - -#: ../../extensions/disabled/ssh_gateway.php:63 -msgid "Port (use 0 for default)" -msgstr "" - -#: ../../extensions/disabled/ssh_gateway.php:65 -msgid "Connect mode" -msgstr "" - -#: ../../extensions/disabled/matrix_events.php:29 -msgid "Matrix events" -msgstr "" - -#: ../../extensions/disabled/vnc_view.php:25 -msgid "VNC Display (:0 by default)" -msgstr "" - -#: ../../extensions/disabled/vnc_view.php:28 -msgid "Send" -msgstr "" - -#: ../../extensions/disabled/vnc_view.php:42 -msgid "VNC view" -msgstr "" - -#: ../../extensions/net_tools.php:96 -msgid "The agent hasn't got IP" -msgstr "" - -#: ../../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 "" - -#: ../../extensions/net_tools.php:120 +#: ../../extensions/resource_registration.php:1038 msgid "" -"You can set the command path in the menu Administration -> Extensions -" -"> Config Network Tools" +"You can get more resurces in our Public Resource Library" msgstr "" -#: ../../extensions/net_tools.php:123 -msgid "Traceroute" -msgstr "" - -#: ../../extensions/net_tools.php:124 -msgid "Ping host & Latency" -msgstr "" - -#: ../../extensions/net_tools.php:125 -msgid "SNMP Interface status" -msgstr "" - -#: ../../extensions/net_tools.php:126 -msgid "Basic TCP Port Scan" -msgstr "" - -#: ../../extensions/net_tools.php:127 -msgid "DiG/Whois Lookup" -msgstr "" - -#: ../../extensions/net_tools.php:145 -msgid "SNMP Community" -msgstr "" - -#: ../../extensions/net_tools.php:148 ../../include/functions_events.php:1796 -msgid "Execute" -msgstr "" - -#: ../../extensions/net_tools.php:162 -msgid "Traceroute executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:165 -msgid "Traceroute to " -msgstr "" - -#: ../../extensions/net_tools.php:174 -msgid "Ping executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:177 -#, php-format -msgid "Ping to %s" -msgstr "" - -#: ../../extensions/net_tools.php:186 -msgid "Nmap executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:189 -msgid "Basic TCP Scan on " -msgstr "" - -#: ../../extensions/net_tools.php:196 -msgid "Domain and IP information for " -msgstr "" - -#: ../../extensions/net_tools.php:200 -msgid "Dig executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:210 -msgid "Whois executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:219 -msgid "SNMP information for " -msgstr "" - -#: ../../extensions/net_tools.php:223 -msgid "SNMPget executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:226 -msgid "Uptime" -msgstr "" - -#: ../../extensions/net_tools.php:230 -msgid "Device info" -msgstr "" - -#: ../../extensions/net_tools.php:238 -msgid "Interface" -msgstr "" - -#: ../../extensions/net_tools.php:268 ../../extensions/net_tools.php:343 -msgid "Config Network Tools" -msgstr "" - -#: ../../extensions/net_tools.php:289 ../../extensions/net_tools.php:290 -msgid "Set the paths." -msgstr "" - -#: ../../extensions/net_tools.php:310 -msgid "Traceroute path" -msgstr "" - -#: ../../extensions/net_tools.php:311 -msgid "If it is empty, Pandora searchs the traceroute system." -msgstr "" - -#: ../../extensions/net_tools.php:314 -msgid "Ping path" -msgstr "" - -#: ../../extensions/net_tools.php:315 -msgid "If it is empty, Pandora searchs the ping system." -msgstr "" - -#: ../../extensions/net_tools.php:318 -msgid "Nmap path" -msgstr "" - -#: ../../extensions/net_tools.php:319 -msgid "If it is empty, Pandora searchs the nmap system." -msgstr "" - -#: ../../extensions/net_tools.php:322 -msgid "Dig path" -msgstr "" - -#: ../../extensions/net_tools.php:323 -msgid "If it is empty, Pandora searchs the dig system." -msgstr "" - -#: ../../extensions/net_tools.php:326 -msgid "Snmpget path" -msgstr "" - -#: ../../extensions/net_tools.php:327 -msgid "If it is empty, Pandora searchs the snmpget system." -msgstr "" - -#: ../../extensions/net_tools.php:332 -#: ../../godmode/reporting/reporting_builder.list_items.php:305 -#: ../../godmode/update_manager/update_manager.php:35 -msgid "Options" -msgstr "" - -#: ../../extensions/insert_data.php:56 -msgid "Insert data" -msgstr "" - -#: ../../extensions/insert_data.php:93 -msgid "You haven't privileges for insert data in the agent." -msgstr "" - -#: ../../extensions/insert_data.php:130 -#, php-format -msgid "Can't save agent (%s), module (%s) data xml." -msgstr "" - -#: ../../extensions/insert_data.php:137 -#, php-format -msgid "Save agent (%s), module (%s) data xml." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../extensions/insert_data.php:258 -msgid "Insert Data" -msgstr "" - -#: ../../extensions/api_checker.php:92 ../../extensions/api_checker.php:228 +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:252 msgid "API checker" msgstr "" -#: ../../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 -msgid "IP" +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" msgstr "" -#: ../../extensions/api_checker.php:104 -msgid "Pandora Console URL" -msgstr "" - -#: ../../extensions/api_checker.php:109 +#: ../../extensions/api_checker.php:133 msgid "API Pass" msgstr "" -#: ../../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/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 "" - -#: ../../extensions/api_checker.php:127 +#: ../../extensions/api_checker.php:151 msgid "Action (get or set)" msgstr "" -#: ../../extensions/api_checker.php:142 +#: ../../extensions/api_checker.php:166 msgid "ID 2" msgstr "" -#: ../../extensions/api_checker.php:147 +#: ../../extensions/api_checker.php:171 msgid "Return Type" msgstr "" -#: ../../extensions/api_checker.php:157 +#: ../../extensions/api_checker.php:181 msgid "Other Mode" msgstr "" -#: ../../extensions/api_checker.php:165 +#: ../../extensions/api_checker.php:189 msgid "Raw URL" msgstr "" -#: ../../extensions/api_checker.php:171 -msgid "Credentials" -msgstr "" - -#: ../../extensions/api_checker.php:176 +#: ../../extensions/api_checker.php:200 msgid "Call parameters" msgstr "" -#: ../../extensions/api_checker.php:181 ../../extensions/api_checker.php:194 +#: ../../extensions/api_checker.php:200 +msgid "Action: get Operation: module_last_value id: 63" +msgstr "" + +#: ../../extensions/api_checker.php:205 ../../extensions/api_checker.php:217 msgid "Call" msgstr "" -#: ../../extensions/api_checker.php:188 +#: ../../extensions/api_checker.php:211 msgid "Custom URL" msgstr "" -#: ../../extensions/api_checker.php:200 ../../extensions/api_checker.php:207 -#: ../../include/functions_db.php:1516 +#: ../../extensions/api_checker.php:223 ../../extensions/api_checker.php:230 +#: ../../include/functions_reporting_html.php:3538 +#: ../../include/functions_db.php:1766 msgid "Result" msgstr "" -#: ../../extensions/api_checker.php:203 ../../extensions/api_checker.php:220 +#: ../../extensions/api_checker.php:226 ../../extensions/api_checker.php:243 msgid "Show URL" msgstr "" -#: ../../extensions/api_checker.php:216 +#: ../../extensions/api_checker.php:239 msgid "Hide URL" msgstr "" -#: ../../extensions/users_connected.php:38 -#: ../../extensions/users_connected.php:122 -#: ../../extensions/users_connected.php:123 -msgid "Users connected" +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:411 +msgid "DB Schema check" msgstr "" -#: ../../extensions/users_connected.php:66 -msgid "No other users connected" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../extensions/agents_modules.php:165 -#: ../../include/functions_visual_map_editor.php:627 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1512 -msgid "Update item" -msgstr "" - -#: ../../extensions/agents_modules.php:176 -#: ../../include/functions_reports.php:588 -#: ../../include/graphs/functions_pchart.php:1196 -msgid "Agents/Modules" -msgstr "" - -#: ../../extensions/agents_modules.php:305 -#: ../../include/functions_reporting.php:1679 -msgid "There are no agents with modules" -msgstr "" - -#: ../../extensions/agents_modules.php:331 -msgid "Previous modules" -msgstr "" - -#: ../../extensions/agents_modules.php:370 -msgid "More modules" -msgstr "" - -#: ../../extensions/agents_modules.php:491 -#: ../../include/functions_reporting_html.php:1439 -msgid "Orange cell when the module has fired alerts" -msgstr "" - -#: ../../extensions/agents_modules.php:492 -#: ../../include/functions_reporting_html.php:1440 -msgid "Red cell when the module has a critical status" -msgstr "" - -#: ../../extensions/agents_modules.php:493 -#: ../../include/functions_reporting_html.php:1441 -msgid "Yellow cell when the module has a warning status" -msgstr "" - -#: ../../extensions/agents_modules.php:494 -#: ../../include/functions_reporting_html.php:1442 -msgid "Green cell when the module has a normal status" -msgstr "" - -#: ../../extensions/agents_modules.php:495 -#: ../../include/functions_reporting_html.php:1443 -msgid "Grey cell when the module has an unknown status" -msgstr "" - -#: ../../extensions/agents_modules.php:496 -#: ../../include/functions_reporting_html.php:1444 -msgid "Cell turns grey when the module is in 'not initialize' status" -msgstr "" - -#: ../../extensions/agents_modules.php:538 -msgid "Agents/Modules view" -msgstr "" - -#: ../../extensions/db_status.php:43 ../../extensions/db_status.php:361 -msgid "DB Status" -msgstr "" - -#: ../../extensions/db_status.php:56 +#: ../../extensions/db_status.php:43 msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." msgstr "" -#: ../../extensions/db_status.php:58 +#: ../../extensions/db_status.php:46 msgid "At the moment the checks is for MySQL/MariaDB." msgstr "" -#: ../../extensions/db_status.php:63 +#: ../../extensions/db_status.php:52 msgid "DB settings" msgstr "" -#: ../../extensions/db_status.php:67 +#: ../../extensions/db_status.php:56 msgid "DB User with privileges" msgstr "" -#: ../../extensions/db_status.php:69 +#: ../../extensions/db_status.php:58 msgid "DB Password for this user" msgstr "" -#: ../../extensions/db_status.php:73 +#: ../../extensions/db_status.php:62 msgid "DB Hostname" msgstr "" -#: ../../extensions/db_status.php:75 +#: ../../extensions/db_status.php:64 msgid "DB Name (temporal for testing)" msgstr "" -#: ../../extensions/db_status.php:83 +#: ../../extensions/db_status.php:72 msgid "Execute Test" msgstr "" -#: ../../extensions/db_status.php:110 +#: ../../extensions/db_status.php:108 msgid "Unsuccessful connected to the DB" msgstr "" -#: ../../extensions/db_status.php:117 +#: ../../extensions/db_status.php:119 msgid "Unsuccessful created the testing DB" msgstr "" -#: ../../extensions/db_status.php:128 +#: ../../extensions/db_status.php:135 msgid "Unsuccessful installed tables into the testing DB" msgstr "" -#: ../../extensions/db_status.php:139 -msgid "Unsuccessful installed enterprise tables into the testing DB" -msgstr "" - -#: ../../extensions/db_status.php:186 -msgid "Successful the DB Pandora has all tables" -msgstr "" - -#: ../../extensions/db_status.php:187 +#: ../../extensions/db_status.php:219 #, php-format -msgid "" -"Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" +msgid "Success! %s DB contains all tables" msgstr "" -#: ../../extensions/db_status.php:197 ../../extensions/db_status.php:254 -#: ../../extensions/db_status.php:274 ../../extensions/db_status.php:286 -#: ../../extensions/db_status.php:294 +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "" + +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 msgid "You can execute this SQL query for to fix." msgstr "" -#: ../../extensions/db_status.php:251 +#: ../../extensions/db_status.php:343 #, php-format msgid "Unsuccessful the table %s has not the field %s" msgstr "" -#: ../../extensions/db_status.php:271 -#, php-format -msgid "" -"Unsuccessful the field %s in the table %s must be setted the type with %s." -msgstr "" - -#: ../../extensions/db_status.php:282 -#, php-format -msgid "" -"Unsuccessful the field %s in the table %s must be setted the null values " -"with %s." -msgstr "" - -#: ../../extensions/db_status.php:304 -#, php-format -msgid "" -"Unsuccessful the field %s in the table %s must be setted the key as defined " -"in the SQL file." -msgstr "" - -#: ../../extensions/db_status.php:307 -msgid "Please check the SQL file for to know the kind of key needed." -msgstr "" - -#: ../../extensions/db_status.php:311 -#, php-format -msgid "" -"Unsuccessful the field %s in the table %s must be setted the default value " -"as %s." -msgstr "" - -#: ../../extensions/db_status.php:314 -msgid "Please check the SQL file for to know the kind of default value needed." -msgstr "" - -#: ../../extensions/db_status.php:318 -#, php-format -msgid "" -"Unsuccessful the field %s in the table %s must be setted as defined in the " -"SQL file." -msgstr "" - -#: ../../extensions/db_status.php:321 -msgid "Please check the SQL file for to know the kind of extra config needed." -msgstr "" - -#: ../../extensions/db_status.php:332 +#: ../../extensions/db_status.php:408 msgid "Successful all the tables have the correct fields" msgstr "" -#: ../../extensions/dbmanager.php:134 +#: ../../extensions/agents_alerts.php:97 +msgid "Show modules without alerts" +msgstr "" + +#: ../../extensions/agents_alerts.php:105 ../../include/functions.php:3196 +#: ../../operation/gis_maps/render_view.php:139 +msgid "1 minute" +msgstr "" + +#: ../../extensions/agents_alerts.php:106 ../../include/functions.php:3197 +#: ../../operation/gis_maps/render_view.php:140 +msgid "2 minutes" +msgstr "" + +#: ../../extensions/agents_alerts.php:107 ../../include/functions.php:3198 +#: ../../include/ajax/module.php:163 +#: ../../operation/gis_maps/render_view.php:141 +msgid "5 minutes" +msgstr "" + +#: ../../extensions/agents_alerts.php:108 +#: ../../operation/gis_maps/render_view.php:142 +msgid "10 minutes" +msgstr "" + +#: ../../extensions/agents_alerts.php:143 +msgid "Agents/Alerts" +msgstr "" + +#: ../../extensions/agents_alerts.php:295 +#: ../../godmode/alerts/configure_alert_template.php:564 +#: ../../godmode/alerts/alert_list.builder.php:161 +msgid "Create Template" +msgstr "" + +#: ../../extensions/agents_alerts.php:307 +#: ../../godmode/alerts/alert_list.builder.php:196 +msgid "Add alert" +msgstr "" + +#: ../../extensions/agents_alerts.php:312 +msgid "module" +msgstr "" + +#: ../../extensions/agents_alerts.php:353 +msgid "There are no agents with alerts" +msgstr "" + +#: ../../extensions/agents_alerts.php:390 +#: ../../godmode/massive/massive_delete_action_alerts.php:193 +#: ../../godmode/massive/massive_add_action_alerts.php:177 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +msgid "Alert templates" +msgstr "" + +#: ../../extensions/agents_alerts.php:395 +msgid "Previous templates" +msgstr "" + +#: ../../extensions/agents_alerts.php:439 +msgid "More templates" +msgstr "" + +#: ../../extensions/agents_alerts.php:590 +msgid "Agents/Alerts view" +msgstr "" + +#: ../../extensions/resource_exportation.php:47 +#: ../../extensions/resource_exportation.php:410 +msgid "Resource exportation" +msgstr "" + +#: ../../extensions/resource_exportation.php:413 +msgid "This extension makes exportation of resource template more easy." +msgstr "" + +#: ../../extensions/resource_exportation.php:413 +msgid "You can export resource templates in .ptr format." +msgstr "" + +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "" + +#: ../../extensions/files_repo.php:127 ../../extensions/files_repo.php:237 +msgid "Files repository manager" +msgstr "" + +#: ../../extensions/files_repo.php:145 ../../include/functions.php:2734 +#: ../../include/functions.php:2738 +msgid "The file exceeds the maximum size" +msgstr "" + +#: ../../extensions/files_repo.php:218 ../../extensions/files_repo.php:235 +msgid "Files repository" +msgstr "" + +#: ../../extensions/dbmanager.php:99 msgid "Database interface" msgstr "" -#: ../../extensions/dbmanager.php:149 +#: ../../extensions/dbmanager.php:103 +#, php-format +msgid "" +"This is an advanced extension to interface with %s database directly from " +"WEB console\n" +"\t\tusing native SQL sentences. Please note that you can damage your " +"%s installation\n" +"\t\tif you don't know exactly what are you are doing,\n" +"\t\tthis means that you can severily damage your setup using this " +"extension.\n" +"\t\tThis extension is intended to be used only by experienced users\n" +"\t\twith a depth knowledge of %s internals." +msgstr "" + +#: ../../extensions/dbmanager.php:124 msgid "Execute SQL" msgstr "" -#: ../../extensions/dbmanager.php:196 +#: ../../extensions/dbmanager.php:173 ../../godmode/menu.php:411 msgid "DB interface" msgstr "" -#: ../../extensions/pandora_logs.php:33 ../../extensions/system_info.php:174 +#: ../../extensions/agents_modules.php:450 +#: ../../include/functions_reports.php:776 +msgid "Agents/Modules" +msgstr "" + +#: ../../extensions/agents_modules.php:513 +msgid "Agent/module view" +msgstr "" + +#: ../../extensions/agents_modules.php:550 +msgid "Filters " +msgstr "" + +#: ../../extensions/agents_modules.php:550 +msgid "Secondary groups and agent subgroups will be taken into account." +msgstr "" + +#: ../../extensions/agents_modules.php:685 +#: ../../include/functions_reporting.php:2333 +msgid "There are no agents with modules" +msgstr "" + +#: ../../extensions/agents_modules.php:700 +msgid "Previous modules" +msgstr "" + +#: ../../extensions/agents_modules.php:726 +msgid "More modules" +msgstr "" + +#: ../../extensions/agents_modules.php:859 +#: ../../include/functions_reporting_html.php:1729 +msgid "Orange cell when the module has fired alerts" +msgstr "" + +#: ../../extensions/agents_modules.php:861 +#: ../../include/functions_reporting_html.php:1730 +msgid "Red cell when the module has a critical status" +msgstr "" + +#: ../../extensions/agents_modules.php:864 +#: ../../include/functions_reporting_html.php:1731 +msgid "Yellow cell when the module has a warning status" +msgstr "" + +#: ../../extensions/agents_modules.php:866 +#: ../../include/functions_reporting_html.php:1732 +msgid "Green cell when the module has a normal status" +msgstr "" + +#: ../../extensions/agents_modules.php:868 +#: ../../include/functions_reporting_html.php:1733 +msgid "Grey cell when the module has an unknown status" +msgstr "" + +#: ../../extensions/agents_modules.php:870 +msgid "Cell turns blue when the module is in 'not initialize' status" +msgstr "" + +#: ../../extensions/agents_modules.php:883 +msgid "Agents/Modules view" +msgstr "" + +#: ../../extensions/pandora_logs.php:29 msgid "Cannot find file" msgstr "" -#: ../../extensions/pandora_logs.php:39 +#: ../../extensions/pandora_logs.php:34 msgid "File is too large than PHP memory allocated in the system." msgstr "" -#: ../../extensions/pandora_logs.php:40 +#: ../../extensions/pandora_logs.php:35 msgid "The preview file is imposible." msgstr "" -#: ../../extensions/pandora_logs.php:44 -msgid "File is too large (> 500KB)" +#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45 +msgid "" +"The folder /var/log/pandora must have pandora:apache and its content too." msgstr "" -#: ../../extensions/pandora_logs.php:72 +#: ../../extensions/pandora_logs.php:64 msgid "System logfile viewer" msgstr "" -#: ../../extensions/pandora_logs.php:74 -msgid "" -"This tool is used just to view your Pandora FMS system logfiles directly " -"from console" +#: ../../extensions/pandora_logs.php:66 +#, php-format +msgid "Use this tool to view your %s logfiles directly on the console" msgstr "" -#: ../../extensions/pandora_logs.php:83 +#: ../../extensions/pandora_logs.php:68 +msgid "" +"You can choose the amount of information shown in general setup (Log size " +"limit in system logs viewer extension), " +msgstr "" + +#: ../../extensions/pandora_logs.php:78 msgid "System logfiles" msgstr "" -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Unreliable petition" -msgstr "" - -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Please contact the administrator" -msgstr "" - -#: ../../extensions/files_repo/files_repo_form.php:73 -msgid "Only 200 characters are permitted" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../extensions/files_repo/files_repo_list.php:61 -#: ../../include/functions_filemanager.php:581 -msgid "Last modification" -msgstr "" - -#: ../../extensions/files_repo/files_repo_list.php:86 -msgid "Copy to clipboard" -msgstr "" - -#: ../../extensions/files_repo/files_repo_list.php:94 -#: ../../extensions/system_info.php:467 -msgid "Download" -msgstr "" - -#: ../../extensions/files_repo/files_repo_list.php:115 -msgid "No items" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../extensions/files_repo/functions_files_repo.php:229 -msgid "The file could not be copied" -msgstr "" - -#: ../../extensions/files_repo/functions_files_repo.php:233 -msgid "There was an error creating the file" -msgstr "" - -#: ../../extensions/files_repo/functions_files_repo.php:274 -msgid "There was an error updating the file" -msgstr "" - -#: ../../extensions/plugin_registration.php:26 -#: ../../extensions/plugin_registration.php:33 +#: ../../extensions/plugin_registration.php:27 +#: ../../extensions/plugin_registration.php:34 +#: ../../godmode/servers/plugin.php:283 msgid "Plugin registration" msgstr "" -#: ../../extensions/plugin_registration.php:30 +#: ../../extensions/plugin_registration.php:31 msgid "Plugin Registration" msgstr "" -#: ../../extensions/plugin_registration.php:35 +#: ../../extensions/plugin_registration.php:36 msgid "" -"This extension makes registration of server plugins more easy. \n" -"\t\t\t\t\t\tHere you can upload a server plugin in Pandora FMS 3.x zipped " -"format (.pspz). \n" -"\t\t\t\t\t\tPlease refer to documentation on how to obtain and use Pandora " -"FMS Server Plugins.\n" +"This extension makes registering server plugins an easier task.\n" +"\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" +"\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " +"use Server Plugins.\n" "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " msgstr "" -#: ../../extensions/plugin_registration.php:84 +#: ../../extensions/plugin_registration.php:86 msgid "Cannot load INI file" msgstr "" @@ -7369,983 +27859,938 @@ msgstr "" msgid "Plugin exec not found. Aborting!" msgstr "" -#: ../../extensions/plugin_registration.php:120 +#: ../../extensions/plugin_registration.php:117 msgid "Plugin already registered. Aborting!" msgstr "" -#: ../../extensions/plugin_registration.php:291 +#: ../../extensions/plugin_registration.php:281 msgid "Plug-in Remote Registered unsuccessfull" msgstr "" -#: ../../extensions/plugin_registration.php:293 +#: ../../extensions/plugin_registration.php:284 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "" -#: ../../extensions/plugin_registration.php:417 +#: ../../extensions/plugin_registration.php:403 msgid "Module plugin registered" msgstr "" -#: ../../extensions/plugin_registration.php:422 -#: ../../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 "" - -#: ../../extensions/plugin_registration.php:422 +#: ../../extensions/plugin_registration.php:406 msgid "Registered successfully" msgstr "" -#: ../../extensions/plugin_registration.php:432 +#: ../../extensions/plugin_registration.php:417 msgid "Register plugin" msgstr "" -#: ../../extensions/realtime_graphs.php:29 -#: ../../extensions/realtime_graphs.php:136 +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 +msgid "Attachment directory is not writable by HTTP Server" +msgstr "" + +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 +#, php-format +msgid "Please check that the web server has write rights on the %s directory" +msgstr "" + +#: ../../extensions/files_repo/functions_files_repo.php:248 +msgid "The file could not be copied" +msgstr "" + +#: ../../extensions/files_repo/functions_files_repo.php:251 +msgid "There was an error creating the file" +msgstr "" + +#: ../../extensions/files_repo/functions_files_repo.php:295 +msgid "There was an error updating the file" +msgstr "" + +#: ../../extensions/files_repo/files_repo_get_file.php:66 +msgid "Unreliable petition" +msgstr "" + +#: ../../extensions/files_repo/files_repo_get_file.php:66 +msgid "Please contact the administrator" +msgstr "" + +#: ../../extensions/files_repo/files_repo_form.php:63 +msgid "Only 200 characters are permitted" +msgstr "" + +#: ../../extensions/files_repo/files_repo_form.php:74 +#: ../../godmode/extensions.php:136 +msgid "File" +msgstr "" + +#: ../../extensions/files_repo/files_repo_form.php:77 +#: ../../extensions/files_repo/files_repo_form.php:83 +#: ../../extensions/files_repo/files_repo_list.php:90 +msgid "Public link" +msgstr "" + +#: ../../extensions/files_repo/files_repo_list.php:56 +#: ../../include/functions_filemanager.php:620 +msgid "Last modification" +msgstr "" + +#: ../../extensions/files_repo/files_repo_list.php:87 +msgid "Copy to clipboard" +msgstr "" + +#: ../../extensions/files_repo/files_repo_list.php:119 +msgid "No items" +msgstr "" + +#: ../../extensions/module_groups.php:48 +msgid "Counters Module" +msgstr "" + +#: ../../extensions/module_groups.php:49 +msgid "Alerts_Fired" +msgstr "" + +#: ../../extensions/module_groups.php:51 +msgid "warning" +msgstr "" + +#: ../../extensions/module_groups.php:54 +msgid "Not_init" +msgstr "" + +#: ../../extensions/module_groups.php:248 +msgid "Combined table of agent group and module group" +msgstr "" + +#: ../../extensions/module_groups.php:262 +msgid "Search by agent group" +msgstr "" + +#: ../../extensions/module_groups.php:266 +msgid "Search by module group" +msgstr "" + +#: ../../extensions/module_groups.php:376 +msgid "" +"Orange cell when the module group and agent have at least one alarm fired." +msgstr "" + +#: ../../extensions/module_groups.php:377 +msgid "" +"Red cell when the module group and agent have at least one module in " +"critical status and the others in any status" +msgstr "" + +#: ../../extensions/module_groups.php:378 +msgid "" +"Yellow cell when the module group and agent have at least one in warning " +"status and the others in grey or green status" +msgstr "" + +#: ../../extensions/module_groups.php:379 +msgid "" +"Grey cell when the module group and agent have at least one in unknown " +"status and the others in green status" +msgstr "" + +#: ../../extensions/module_groups.php:380 +msgid "" +"Green cell when the module group and agent have all modules in OK status" +msgstr "" + +#: ../../extensions/module_groups.php:381 +msgid "" +"Blue cell when the module group and agent have all modules in not init " +"status." +msgstr "" + +#: ../../extensions/module_groups.php:385 +msgid "" +"This table shows in columns the modules group and in rows agents group. The " +"cell shows all modules" +msgstr "" + +#: ../../extensions/module_groups.php:386 +msgid "There are no defined groups or module groups" +msgstr "" + +#: ../../extensions/module_groups.php:406 ../../godmode/menu.php:90 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../operation/tree.php:74 +msgid "Module groups" +msgstr "" + +#: ../../extensions/net_tools.php:140 +#: ../../godmode/agentes/configurar_agente.php:785 +#: ../../godmode/agentes/configurar_agente.php:934 +msgid "The ip or dns name entered cannot be resolved" +msgstr "" + +#: ../../extensions/net_tools.php:146 +msgid "Traceroute executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:148 +msgid "Traceroute to " +msgstr "" + +#: ../../extensions/net_tools.php:158 +msgid "Ping executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:160 +#, php-format +msgid "Ping to %s" +msgstr "" + +#: ../../extensions/net_tools.php:170 +msgid "Nmap executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:172 +msgid "Basic TCP Scan on " +msgstr "" + +#: ../../extensions/net_tools.php:180 +msgid "Domain and IP information for " +msgstr "" + +#: ../../extensions/net_tools.php:184 +msgid "Dig executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:193 +msgid "Whois executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:211 +msgid "SNMP information for " +msgstr "" + +#: ../../extensions/net_tools.php:212 +msgid "Uptime" +msgstr "" + +#: ../../extensions/net_tools.php:215 ../../extensions/net_tools.php:227 +msgid "Target unreachable." +msgstr "" + +#: ../../extensions/net_tools.php:222 +msgid "Device info" +msgstr "" + +#: ../../extensions/net_tools.php:240 +msgid "Interface" +msgstr "" + +#: ../../extensions/net_tools.php:320 +msgid "The agent hasn't got IP" +msgstr "" + +#: ../../extensions/net_tools.php:350 +msgid "Traceroute" +msgstr "" + +#: ../../extensions/net_tools.php:351 +msgid "Ping host & Latency" +msgstr "" + +#: ../../extensions/net_tools.php:352 +msgid "SNMP Interface status" +msgstr "" + +#: ../../extensions/net_tools.php:353 +msgid "Basic TCP Port Scan" +msgstr "" + +#: ../../extensions/net_tools.php:354 +msgid "DiG/Whois Lookup" +msgstr "" + +#: ../../extensions/net_tools.php:359 +msgid "Please select" +msgstr "" + +#: ../../extensions/net_tools.php:382 +msgid "SNMP Version" +msgstr "" + +#: ../../extensions/net_tools.php:395 ../../include/ajax/events.php:1716 +#: ../../include/functions_events.php:3580 +msgid "Execute" +msgstr "" + +#: ../../extensions/net_tools.php:430 ../../extensions/net_tools.php:505 +msgid "Config Network Tools" +msgstr "" + +#: ../../extensions/net_tools.php:456 ../../extensions/net_tools.php:457 +msgid "Set the paths." +msgstr "" + +#: ../../extensions/net_tools.php:476 +msgid "Traceroute path" +msgstr "" + +#: ../../extensions/net_tools.php:479 +msgid "Ping path" +msgstr "" + +#: ../../extensions/net_tools.php:482 +msgid "Nmap path" +msgstr "" + +#: ../../extensions/net_tools.php:485 +msgid "Dig path" +msgstr "" + +#: ../../extensions/net_tools.php:488 +msgid "Snmpget path" +msgstr "" + +#: ../../extensions/insert_data.php:58 +msgid "Insert data" +msgstr "" + +#: ../../extensions/insert_data.php:86 +msgid "You haven't privileges for insert data in the agent." +msgstr "" + +#: ../../extensions/insert_data.php:122 +#, php-format +msgid "Can't save agent (%s), module (%s) data xml." +msgstr "" + +#: ../../extensions/insert_data.php:131 +#, php-format +msgid "Save agent (%s), module (%s) data xml." +msgstr "" + +#: ../../extensions/insert_data.php:142 +#, php-format +msgid "" +"Please check that the directory \"%s\" is writeable by the apache user.

The CSV file format is date;value<newline>date;value<" +"newline>... The date in CSV is in format Y/m/d H:i:s." +msgstr "" + +#: ../../extensions/insert_data.php:270 +msgid "Insert Data" +msgstr "" + +#: ../../extensions/realtime_graphs.php:33 +#: ../../extensions/realtime_graphs.php:211 msgid "Realtime graphs" msgstr "" -#: ../../extensions/realtime_graphs.php:61 -msgid "Pandora Server CPU" +#: ../../extensions/realtime_graphs.php:98 +#, php-format +msgid "%s Server CPU" msgstr "" -#: ../../extensions/realtime_graphs.php:62 -msgid "Pandora Server Pending packets" +#: ../../extensions/realtime_graphs.php:99 +#, php-format +msgid "Pending packages from %s Server" msgstr "" -#: ../../extensions/realtime_graphs.php:63 -msgid "Pandora Server Disk IO Wait" +#: ../../extensions/realtime_graphs.php:100 +#, php-format +msgid "%s Server Disk IO Wait" msgstr "" -#: ../../extensions/realtime_graphs.php:64 -msgid "Pandora Server Apache load" +#: ../../extensions/realtime_graphs.php:101 +#, php-format +msgid "%s Server Apache load" msgstr "" -#: ../../extensions/realtime_graphs.php:65 -msgid "Pandora Server MySQL load" +#: ../../extensions/realtime_graphs.php:102 +#, php-format +msgid "%s Server MySQL load" msgstr "" -#: ../../extensions/realtime_graphs.php:66 -msgid "Pandora Server load" +#: ../../extensions/realtime_graphs.php:103 +#, php-format +msgid "%s Server load" msgstr "" -#: ../../extensions/realtime_graphs.php:67 +#: ../../extensions/realtime_graphs.php:104 msgid "SNMP Interface throughput" msgstr "" -#: ../../extensions/realtime_graphs.php:79 +#: ../../extensions/realtime_graphs.php:142 msgid "Refresh interval" msgstr "" -#: ../../extensions/realtime_graphs.php:80 +#: ../../extensions/realtime_graphs.php:144 msgid "Incremental" msgstr "" -#: ../../extensions/realtime_graphs.php:81 +#: ../../extensions/realtime_graphs.php:147 msgid "Clear graph" msgstr "" -#: ../../extensions/realtime_graphs.php:94 -#: ../../include/functions_snmp_browser.php:506 -#: ../../godmode/massive/massive_edit_modules.php:488 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:339 -#: ../../godmode/agentes/module_manager_editor_network.php:67 -#: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:254 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:700 -msgid "Target IP" -msgstr "" - -#: ../../extensions/realtime_graphs.php:97 -#: ../../include/functions_snmp_browser.php:508 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:82 +#: ../../include/functions_snmp_browser.php:660 msgid "Community" msgstr "" -#: ../../extensions/realtime_graphs.php:108 -#: ../../include/functions_snmp_browser.php:401 -#: ../../godmode/setup/snmp_wizard.php:41 -msgid "OID" -msgstr "" - -#: ../../extensions/realtime_graphs.php:111 -#: ../../include/functions_snmp_browser.php:513 -#: ../../godmode/extensions.php:144 -#: ../../godmode/servers/servers.build_table.php:67 -msgid "Version" -msgstr "" - -#: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/module_manager_editor_network.php:161 +#: ../../extensions/realtime_graphs.php:176 +#: ../../godmode/agentes/module_manager_editor_network.php:266 msgid "SNMP walk" msgstr "" -#: ../../extensions/realtime_graphs.php:125 -#: ../../godmode/agentes/module_manager_editor_network.php:30 +#: ../../extensions/realtime_graphs.php:199 +#: ../../godmode/agentes/module_manager_editor_network.php:43 msgid "Use this OID" msgstr "" -#: ../../extensions/files_repo.php:91 -msgid "Extension not installed" +#: ../../extensions/users_connected.php:37 +#: ../../extensions/users_connected.php:137 +#: ../../extensions/users_connected.php:138 +msgid "Users connected" msgstr "" -#: ../../extensions/files_repo.php:104 ../../extensions/files_repo.php:187 -msgid "Administration view" +#: ../../extensions/users_connected.php:67 +msgid "No other users connected" msgstr "" -#: ../../extensions/files_repo.php:110 ../../extensions/files_repo.php:192 -msgid "Operation view" +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" msgstr "" -#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 -msgid "Files repository manager" +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" msgstr "" -#: ../../extensions/files_repo.php:133 ../../include/functions.php:2190 -#: ../../include/functions.php:2193 -msgid "The file exceeds the maximum size" +#: ../../godmode/modules/manage_nc_groups_form.php:71 +#: ../../godmode/groups/configure_group.php:138 +#: ../../godmode/groups/group_list.php:687 +#: ../../godmode/agentes/agent_manager.php:579 +#: ../../godmode/massive/massive_edit_agents.php:522 +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +#: ../../include/functions_visual_map_editor.php:866 +#: ../../include/rest-api/models/VisualConsole/Item.php:2049 +#: ../../operation/agentes/ver_agente.php:1027 +#: ../../operation/agentes/estado_generalagente.php:361 +msgid "Parent" msgstr "" -#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 -msgid "Files repository" +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" msgstr "" -#: ../../extensions/agents_alerts.php:109 -msgid "Agents/Alerts" +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" msgstr "" -#: ../../extensions/agents_alerts.php:156 -msgid "There are no agents with alerts" +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" msgstr "" -#: ../../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" +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" msgstr "" -#: ../../extensions/agents_alerts.php:184 -msgid "Previous templates" +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" msgstr "" -#: ../../extensions/agents_alerts.php:222 -msgid "More templates" +#: ../../godmode/modules/manage_network_templates_form.php:107 +msgid "Successfully updated network profile" msgstr "" -#: ../../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" +#: ../../godmode/modules/manage_network_templates_form.php:108 +msgid "Error updating network profile" msgstr "" -#: ../../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" +#: ../../godmode/modules/manage_network_templates_form.php:126 +msgid "Successfully added network profile" msgstr "" -#: ../../extensions/agents_alerts.php:348 -msgid "Agents/Alerts view" +#: ../../godmode/modules/manage_network_templates_form.php:127 +msgid "Error adding network profile" msgstr "" -#: ../../extensions/extension_uploader.php:28 -msgid "Uploader extension" +#: ../../godmode/modules/manage_network_templates_form.php:133 +msgid "Cannot create a template without name" msgstr "" -#: ../../extensions/extension_uploader.php:64 -msgid "Success to upload extension" +#: ../../godmode/modules/manage_network_templates_form.php:207 +msgid "No modules for this profile" msgstr "" -#: ../../extensions/extension_uploader.php:65 -msgid "Fail to upload extension" +#: ../../godmode/modules/manage_network_templates_form.php:248 +#: ../../operation/snmpconsole/snmp_browser.php:138 +#: ../../operation/snmpconsole/snmp_browser.php:158 +msgid "Add modules" msgstr "" -#: ../../extensions/extension_uploader.php:73 -msgid "Upload extension" +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" msgstr "" -#: ../../extensions/extension_uploader.php:75 -msgid "Upload the extension as a zip file." +#: ../../godmode/modules/manage_nc_groups.php:63 +msgid "Could not be created. Blank name" msgstr "" -#: ../../extensions/extension_uploader.php:77 -msgid "Upload enterprise extension" +#: ../../godmode/modules/manage_nc_groups.php:112 +#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:100 +#: ../../godmode/events/event_edit_filter.php:192 +msgid "Not updated. Error updating data" msgstr "" -#: ../../extensions/extension_uploader.php:90 -msgid "Extension uploader" +#: ../../godmode/modules/manage_nc_groups.php:276 +msgid "There are no defined component groups" msgstr "" -#: ../../extensions/system_info.php:179 -msgid "Cannot read file" +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" msgstr "" -#: ../../extensions/system_info.php:388 -msgid "No options selected" +#: ../../godmode/modules/manage_network_components_form.php:285 +msgid "Update Network Component" msgstr "" -#: ../../extensions/system_info.php:391 -msgid "There was an error with the zip file" +#: ../../godmode/modules/manage_network_components_form.php:287 +msgid "Create Network Component" msgstr "" -#: ../../extensions/system_info.php:415 ../../extensions/system_info.php:808 -msgid "System Info" +#: ../../godmode/modules/manage_network_components.php:201 +msgid "Remote component management" msgstr "" -#: ../../extensions/system_info.php:418 +#: ../../godmode/modules/manage_network_components.php:581 +msgid "Search by name, description, tcp send or tcp rcv, list matches." +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:671 +msgid "Max/Min" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:707 +#: ../../include/class/ModuleTemplates.class.php:1138 +msgid "Network module" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:715 +#: ../../include/class/ModuleTemplates.class.php:1146 +msgid "WMI module" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:723 +#: ../../include/class/ModuleTemplates.class.php:1154 +msgid "Plug-in module" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:770 +msgid "There are no defined network components" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:780 +msgid "Create a new network component" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:781 +msgid "Create a new plugin component" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:782 +msgid "Create a new WMI component" +msgstr "" + +#: ../../godmode/modules/module_list.php:26 +msgid "Defined modules" +msgstr "" + +#: ../../godmode/modules/module_list.php:48 +msgid "Problem modifying module" +msgstr "" + +#: ../../godmode/modules/module_list.php:50 +msgid "Module updated successfully" +msgstr "" + +#: ../../godmode/modules/manage_network_templates.php:77 +msgid "Template successfully deleted" +msgstr "" + +#: ../../godmode/modules/manage_network_templates.php:78 +msgid "Error deleting template" +msgstr "" + +#: ../../godmode/modules/manage_network_templates.php:112 +msgid "This template does not exist" +msgstr "" + +#: ../../godmode/modules/manage_network_templates.php:286 +msgid "There are no defined network profiles" +msgstr "" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "" + +#: ../../godmode/db/db_main.php:98 +#: ../../include/class/Diagnostics.class.php:225 +msgid "Database size stats" +msgstr "" + +#: ../../godmode/db/db_main.php:108 +#: ../../include/class/Diagnostics.class.php:560 +#: ../../include/functions_reporting.php:11635 +msgid "Total events" +msgstr "" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "" + +#: ../../godmode/db/db_main.php:166 +msgid "Database sanity" +msgstr "" + +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "" + +#: ../../godmode/db/db_main.php:208 +#, php-format msgid "" -"This extension can run as PHP script in a shell for extract more " -"information, but it must be run as root or across sudo. For example: sudo " -"php /var/www/pandora_console/extensions/system_info.php -d -s -c" +"Please make sure your %s Server settings are correct and that the database " +"maintenance daemon is running. It's very important to keep your database up " +"to date in order to get the best performance and results from %s." msgstr "" -#: ../../extensions/system_info.php:428 ../../extensions/system_info.php:431 -#: ../../extensions/system_info.php:504 -msgid "Pandora Diagnostic info" +#: ../../godmode/groups/configure_group.php:66 +#: ../../godmode/groups/configure_modu_group.php:46 +msgid "There was a problem loading group" msgstr "" -#: ../../extensions/system_info.php:435 ../../extensions/system_info.php:438 -#: ../../extensions/system_info.php:510 -msgid "System info" +#: ../../godmode/groups/configure_group.php:85 +msgid "Update group" msgstr "" -#: ../../extensions/system_info.php:443 ../../extensions/system_info.php:446 -#: ../../extensions/system_info.php:514 -msgid "Log Info" +#: ../../godmode/groups/configure_group.php:87 +#: ../../godmode/groups/group_list.php:791 +msgid "Create group" msgstr "" -#: ../../extensions/system_info.php:449 ../../extensions/system_info.php:450 -msgid "Number lines of log" +#: ../../godmode/groups/configure_group.php:106 +msgid "Update Group" msgstr "" -#: ../../extensions/system_info.php:476 -msgid "Created" +#: ../../godmode/groups/configure_group.php:108 +msgid "Create Group" msgstr "" -#: ../../extensions/system_info.php:481 ../../extensions/system_info.php:527 -#: ../../godmode/events/event_responses.editor.php:93 -msgid "Location" +#: ../../godmode/groups/configure_group.php:146 +msgid "You have not access to the parent." msgstr "" -#: ../../extensions/system_info.php:495 -msgid "Generate file" +#: ../../godmode/groups/configure_group.php:180 +msgid "Group Password" msgstr "" -#: ../../extensions/system_info.php:548 -msgid "At least one option must be selected" +#: ../../godmode/groups/configure_group.php:184 +msgid "Enable alert use in this group." msgstr "" -#: ../../index.php:241 ../../mobile/include/user.class.php:171 -#: ../../include/ajax/double_auth.ajax.php:489 -msgid "Invalid code" +#: ../../godmode/groups/configure_group.php:188 +msgid "Propagate ACL" msgstr "" -#: ../../index.php:252 -msgid "The code shouldn't be empty" +#: ../../godmode/groups/configure_group.php:188 +msgid "Propagate the same ACL security into the child subgroups." msgstr "" -#: ../../index.php:264 -msgid "Expired login" +#: ../../godmode/groups/configure_group.php:200 +#: ../../include/functions_events.php:4623 +msgid "Contact" msgstr "" -#: ../../index.php:272 ../../index.php:278 -msgid "Login error" +#: ../../godmode/groups/configure_group.php:200 +msgid "Contact information accessible through the _groupcontact_ macro" msgstr "" -#: ../../index.php:548 -msgid "User doesn\\'t exist." +#: ../../godmode/groups/configure_group.php:204 +msgid "Information accessible through the _group_other_ macro" msgstr "" -#: ../../index.php:564 -msgid "User only can use the API." +#: ../../godmode/groups/configure_group.php:210 +#: ../../godmode/users/configure_user.php:855 +#: ../../operation/users/user_edit.php:381 +msgid "Skin" msgstr "" -#: ../../index.php:794 -msgid "Sorry! I can't find the page!" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../mobile/operation/home.php:128 ../../mobile/include/ui.class.php:185 -msgid "Home" -msgstr "" - -#: ../../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 "" - -#: ../../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 +#: ../../godmode/groups/configure_group.php:251 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" +"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 "" -#: ../../mobile/operation/networkmaps.php:112 -msgid "Networkmaps" +#: ../../godmode/groups/group_list.php:259 +msgid "Tree Group view" msgstr "" -#: ../../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" +#: ../../godmode/groups/group_list.php:281 +msgid "Credential Store" msgstr "" -#: ../../mobile/operation/networkmaps.php:120 +#: ../../godmode/groups/group_list.php:288 #, php-format -msgid "Filter Networkmaps by %s" +msgid "Groups defined in %s" msgstr "" -#: ../../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" +#: ../../godmode/groups/group_list.php:297 +msgid "Credential store" msgstr "" -#: ../../mobile/operation/networkmaps.php:202 -#: ../../mobile/operation/networkmap.php:164 -msgid "No networkmaps" +#: ../../godmode/groups/group_list.php:310 +msgid "Edit or delete groups can cause problems with synchronization" msgstr "" -#: ../../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)" +#: ../../godmode/groups/group_list.php:369 +#: ../../godmode/groups/modu_group_list.php:101 +msgid "Group successfully created" msgstr "" -#: ../../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 +#: ../../godmode/groups/group_list.php:371 +#: ../../godmode/groups/modu_group_list.php:104 +msgid "There was a problem creating group" +msgstr "" + +#: ../../godmode/groups/group_list.php:374 +msgid "Each group must have a different name" +msgstr "" + +#: ../../godmode/groups/group_list.php:377 +msgid "Group must have a name" +msgstr "" + +#: ../../godmode/groups/group_list.php:433 +#: ../../godmode/groups/modu_group_list.php:137 +msgid "Group successfully updated" +msgstr "" + +#: ../../godmode/groups/group_list.php:435 +#: ../../godmode/groups/modu_group_list.php:140 +msgid "There was a problem modifying group" +msgstr "" + +#: ../../godmode/groups/group_list.php:477 #, php-format -msgid "Group: %s" +msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" -#: ../../mobile/operation/networkmaps.php:229 -#: ../../mobile/operation/events.php:1108 -#, php-format -msgid "Type: %s" -msgstr "" - -#: ../../mobile/operation/networkmap.php:222 -#: ../../mobile/operation/networkmap.php:234 -msgid "Map could not be generated" -msgstr "" - -#: ../../mobile/operation/visualmaps.php:96 -msgid "Visual consoles" -msgstr "" - -#: ../../mobile/operation/visualmaps.php:146 -msgid "No maps defined" -msgstr "" - -#: ../../mobile/operation/tactical.php:193 -msgid "Last activity" -msgstr "" - -#: ../../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 "" - -#: ../../mobile/operation/groups.php:129 -#: ../../include/functions_reporting_html.php:3422 -msgid "Agents not init" -msgstr "" - -#: ../../mobile/operation/groups.php:133 -#: ../../include/functions_reporting_html.php:3404 -msgid "Agents critical" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../mobile/operation/alerts.php:162 -#, php-format -msgid "Filter Alerts by %s" -msgstr "" - -#: ../../mobile/operation/alerts.php:272 -msgid "Last Fired" -msgstr "" - -#: ../../mobile/operation/alerts.php:282 -msgid "No alerts" -msgstr "" - -#: ../../mobile/operation/alerts.php:312 -#, php-format -msgid "Standby: %s" -msgstr "" - -#: ../../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 "" - -#: ../../mobile/operation/alerts.php:324 ../../mobile/operation/agents.php:474 -#: ../../mobile/operation/modules.php:809 -#, php-format -msgid "Free Search: %s" -msgstr "" - -#: ../../mobile/operation/agents.php:166 -#, php-format -msgid "Filter Agents by %s" -msgstr "" - -#: ../../mobile/operation/agents.php:324 -#: ../../godmode/reporting/visual_console_builder.elements.php:86 -msgid "A." -msgstr "" - -#: ../../mobile/operation/agents.php:370 -msgid "No agents" -msgstr "" - -#: ../../mobile/operation/events.php:382 ../../mobile/operation/events.php:383 -#: ../../mobile/operation/events.php:590 ../../mobile/operation/events.php:591 -msgid "Preset Filters" -msgstr "" - -#: ../../mobile/operation/events.php:443 -msgid "ERROR: Event detail" -msgstr "" - -#: ../../mobile/operation/events.php:445 -msgid "Error connecting to DB pandora." -msgstr "" - -#: ../../mobile/operation/events.php:458 -msgid "Event detail" -msgstr "" - -#: ../../mobile/operation/events.php:497 -#: ../../include/functions_events.php:2421 -msgid "Acknowledged by" -msgstr "" - -#: ../../mobile/operation/events.php:506 -#: ../../include/functions_visual_map_editor.php:606 -#: ../../godmode/reporting/visual_console_builder.elements.php:153 -msgid "Module Graph" -msgstr "" - -#: ../../mobile/operation/events.php:541 -msgid "Sucessful validate" -msgstr "" - -#: ../../mobile/operation/events.php:543 -msgid "Fail validate" -msgstr "" - -#: ../../mobile/operation/events.php:575 -#, php-format -msgid "Filter Events by %s" -msgstr "" - -#: ../../mobile/operation/events.php:1076 -#, php-format -msgid "Filter: %s" -msgstr "" - -#: ../../mobile/operation/events.php:1089 -#, php-format -msgid "Severity: %s" -msgstr "" - -#: ../../mobile/operation/events.php:1116 -#, php-format -msgid "Free search: %s" -msgstr "" - -#: ../../mobile/operation/events.php:1120 -#, php-format -msgid "Hours: %s" -msgstr "" - -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:373 -#, php-format -msgid "PandoraFMS: %s" -msgstr "" - -#: ../../mobile/operation/module_graph.php:387 -#, php-format -msgid "Options for %s : %s" -msgstr "" - -#: ../../mobile/operation/module_graph.php:394 -msgid "Show Alerts" -msgstr "" - -#: ../../mobile/operation/module_graph.php:402 -msgid "Show Events" -msgstr "" - -#: ../../mobile/operation/module_graph.php:434 -msgid "Avg Only" -msgstr "" - -#: ../../mobile/operation/module_graph.php:439 -msgid "Time range (hours)" -msgstr "" - -#: ../../mobile/operation/module_graph.php:459 -msgid "Update graph" -msgstr "" - -#: ../../mobile/operation/module_graph.php:468 -msgid "Error get the graph" -msgstr "" - -#: ../../mobile/operation/agent.php:112 -msgid "PandoraFMS: Agents" -msgstr "" - -#: ../../mobile/operation/agent.php:118 -msgid "No agent found" -msgstr "" - -#: ../../mobile/operation/agent.php:200 -msgid "Modules by status" -msgstr "" - -#: ../../mobile/operation/agent.php:269 -#, php-format -msgid "Last %s Events" -msgstr "" - -#: ../../mobile/operation/modules.php:194 -#, php-format -msgid "Filter Modules by %s" -msgstr "" - -#: ../../mobile/operation/modules.php:543 -msgid "Interval." -msgstr "" - -#: ../../mobile/operation/modules.php:549 -msgid "Last update." -msgstr "" - -#: ../../mobile/operation/modules.php:668 -#: ../../godmode/agentes/agent_template.php:263 -msgid "No modules" -msgstr "" - -#: ../../mobile/operation/modules.php:801 -#, php-format -msgid "Module group: %s" -msgstr "" - -#: ../../mobile/operation/modules.php:814 -#, php-format -msgid "Tag: %s" -msgstr "" - -#: ../../mobile/include/user.class.php:152 -#: ../../mobile/include/user.class.php:170 -#: ../../mobile/include/user.class.php:177 -msgid "Double authentication failed" -msgstr "" - -#: ../../mobile/include/user.class.php:153 -msgid "Secret code not found" -msgstr "" - -#: ../../mobile/include/user.class.php:154 -msgid "Please contact the administrator to reset your double authentication" -msgstr "" - -#: ../../mobile/include/user.class.php:178 -msgid "There was an error checking the code" -msgstr "" - -#: ../../mobile/include/user.class.php:211 -msgid "Login Failed" -msgstr "" - -#: ../../mobile/include/user.class.php:212 -msgid "User not found in database or incorrect password." -msgstr "" - -#: ../../mobile/include/user.class.php:220 -msgid "Login out" -msgstr "" - -#: ../../mobile/include/user.class.php:221 ../../general/login_page.php:176 +#: ../../godmode/groups/group_list.php:535 msgid "" -"Your session is over. Please close your browser window to close this Pandora " -"session." +"The group has not been deleted in the metaconsole due to an error in the " +"node database" msgstr "" -#: ../../mobile/include/user.class.php:244 -msgid "user" -msgstr "" - -#: ../../mobile/include/user.class.php:251 -msgid "password" -msgstr "" - -#: ../../mobile/include/user.class.php:256 ../../general/login_page.php:168 -msgid "Login" -msgstr "" - -#: ../../mobile/include/user.class.php:301 -#: ../../mobile/include/user.class.php:302 ../../general/login_page.php:186 -msgid "Authenticator code" -msgstr "" - -#: ../../mobile/include/user.class.php:306 ../../general/login_page.php:192 -msgid "Check code" -msgstr "" - -#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 -msgid "Pandora FMS mobile" -msgstr "" - -#: ../../mobile/include/ui.class.php:257 -#: ../../mobile/include/functions_web.php:81 +#: ../../godmode/groups/group_list.php:541 #, php-format -msgid "Pandora FMS %s - Build %s" +msgid "The group %s has been deleted in the nodes" msgstr "" -#: ../../mobile/include/ui.class.php:258 -#: ../../mobile/include/functions_web.php:82 -msgid "Generated at" +#: ../../godmode/groups/group_list.php:570 +#: ../../godmode/groups/modu_group_list.php:211 +msgid "Group successfully deleted" msgstr "" -#: ../../mobile/include/ui.class.php:630 -msgid "Not found header." +#: ../../godmode/groups/group_list.php:572 +#: ../../godmode/groups/modu_group_list.php:209 +msgid "There was a problem deleting group" msgstr "" -#: ../../mobile/include/ui.class.php:633 -msgid "Not found content." -msgstr "" - -#: ../../mobile/include/ui.class.php:636 -msgid "Not found footer." -msgstr "" - -#: ../../mobile/include/ui.class.php:639 -msgid "Incorrect form." -msgstr "" - -#: ../../mobile/include/ui.class.php:642 -msgid "Incorrect grid." -msgstr "" - -#: ../../mobile/include/ui.class.php:645 -msgid "Incorrect collapsible." -msgstr "" - -#: ../../mobile/include/functions_web.php:23 -#: ../../include/functions_reporting_html.php:3025 -#: ../../include/functions_reporting_html.php:3165 -msgid "Monitor" -msgstr "" - -#: ../../mobile/include/functions_web.php:27 ../../godmode/menu.php:201 -#: ../../godmode/reporting/visual_console_builder.wizard.php:246 -msgid "Servers" -msgstr "" - -#: ../../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 "" - -#: ../../general/footer.php:35 +#: ../../godmode/groups/group_list.php:577 #, php-format -msgid "Pandora FMS %s - Build %s - MR %s" +msgid "The group is not empty. It is use in %s." msgstr "" -#: ../../general/footer.php:38 -msgid "Page generated at" +#: ../../godmode/groups/group_list.php:621 +#: ../../godmode/groups/group_list.php:784 +msgid "There are no defined groups" msgstr "" -#: ../../general/footer.php:39 -msgid "® Ártica ST" +#: ../../godmode/groups/group_list.php:743 +msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "" -#: ../../general/ui/agents_list.php:127 -msgid "No agents found" -msgstr "" - -#: ../../general/pandora_help.php:24 ../../general/pandora_help.php:68 -#: ../../general/pandora_help.php:95 -msgid "Pandora FMS help system" -msgstr "" - -#: ../../general/pandora_help.php:73 -msgid "Help system error" -msgstr "" - -#: ../../general/pandora_help.php:78 +#: ../../godmode/groups/group_list.php:749 msgid "" -"Pandora FMS help system has been called with a help reference that currently " -"don't exist. There is no help content to show." +"The child groups will be updated to use the parent id of the deleted group" msgstr "" -#: ../../general/header.php:75 -msgid "Blank characters are used as AND conditions" +#: ../../godmode/groups/configure_modu_group.php:28 +msgid "Module group management" msgstr "" -#: ../../general/header.php:90 ../../general/header.php:92 -msgid "Enter keywords to search" -msgstr "" - -#: ../../general/header.php:114 ../../general/header.php:122 -msgid "All systems" -msgstr "" - -#: ../../general/header.php:114 -msgid "Down" -msgstr "" - -#: ../../general/header.php:118 -msgid "servers down" -msgstr "" - -#: ../../general/header.php:122 -msgid "Ready" -msgstr "" - -#: ../../general/header.php:142 ../../general/header.php:143 -msgid "QR Code of the page" -msgstr "" - -#: ../../general/header.php:169 ../../general/header.php:170 -#: ../../include/functions_clippy.php:128 -msgid "Pandora FMS assistant" -msgstr "" - -#: ../../general/header.php:195 -msgid "Configure autorefresh" -msgstr "" - -#: ../../general/header.php:222 -msgid "Disabled autorefresh" -msgstr "" - -#: ../../general/header.php:248 -msgid "System alerts detected - Please fix as soon as possible" -msgstr "" - -#: ../../general/header.php:263 +#: ../../godmode/groups/modu_group_list.php:71 #, php-format -msgid "You have %d warning(s)" +msgid "Module groups defined in %s" msgstr "" -#: ../../general/header.php:274 -msgid "There are not warnings" +#: ../../godmode/groups/modu_group_list.php:109 +#: ../../godmode/groups/modu_group_list.php:145 +#: ../../include/functions_api.php:9521 +msgid "Each module group must have a different name" msgstr "" -#: ../../general/header.php:283 -msgid "Main help" +#: ../../godmode/groups/modu_group_list.php:113 +#: ../../godmode/groups/modu_group_list.php:149 +#: ../../include/functions_api.php:9514 +msgid "Module group must have a name" msgstr "" -#: ../../general/header.php:305 -msgid "New chat message" +#: ../../godmode/groups/modu_group_list.php:265 +msgid "There are no defined module groups" msgstr "" -#: ../../general/header.php:314 -msgid "Message overview" +#: ../../godmode/groups/modu_group_list.php:273 +msgid "Create module group" msgstr "" -#: ../../general/header.php:315 +#: ../../godmode/extensions.php:26 +msgid "Defined extensions" +msgstr "" + +#: ../../godmode/extensions.php:31 +msgid "There are no extensions defined" +msgstr "" + +#: ../../godmode/extensions.php:139 +msgid "Godmode Function" +msgstr "" + +#: ../../godmode/extensions.php:140 +msgid "Godmode Menu" +msgstr "" + +#: ../../godmode/extensions.php:141 +msgid "Operation Menu" +msgstr "" + +#: ../../godmode/extensions.php:142 +msgid "Operation Function" +msgstr "" + +#: ../../godmode/extensions.php:143 +msgid "Login Function" +msgstr "" + +#: ../../godmode/extensions.php:144 +msgid "Agent operation tab" +msgstr "" + +#: ../../godmode/extensions.php:145 +msgid "Agent godmode tab" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Registration ID:" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:248 +msgid "Cancel registration:" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:253 +msgid "Unregister" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +msgid "Pandora FMS community reminder" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register " +"this Pandora instance" +msgstr "" + +#: ../../godmode/update_manager/update_manager.online.php:62 #, php-format -msgid "You have %d unread message(s)" -msgstr "" - -#: ../../general/alert_enterprise.php:96 msgid "" -"This is the online help for Pandora FMS console. This help is -in best " -"cases- just a brief contextual help, not intented to teach you how to use " -"Pandora FMS. Official documentation of Pandora FMS is about 900 pages, and " -"you probably don't need to read it entirely, but sure, you should download " -"it and take a look.

\n" -"\tDownload the official documentation" +"Your PHP has set memory limit in %s. To use Update Manager Online, please " +"set it to %s" msgstr "" -#: ../../general/alert_enterprise.php:103 +#: ../../godmode/update_manager/update_manager.online.php:75 +#, php-format msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance.

\n" -"\tPlease know that all attempts to access this page are recorded in security " -"logs of Pandora System Database" +"Your PHP has post_max_size limited to %s. To use Update Manager Online, " +"please set it to %s" msgstr "" -#: ../../general/alert_enterprise.php:114 +#: ../../godmode/update_manager/update_manager.online.php:88 +#, php-format msgid "" -"The Update Manager client is included on Pandora FMS. It helps system " -"administrators update their Pandora FMS automatically, since the Update " -"Manager retrieves new modules, new plugins and new features (even full " -"migrations tools for future versions) automatically." +"Your PHP has set maximum allowed size for uploaded files limit in %s. To use " +"Update Manager Online, please set it to %s" msgstr "" -#: ../../general/alert_enterprise.php:117 -msgid "" -"OpenSource version updates are automated packages generated each week. " -"These updates come WITHOUT ANY warranty or support. If your system is " -"corrupted or a feature stops working properly, you will need to recover a " -"backup by yourself." +#: ../../godmode/update_manager/update_manager.online.php:102 +msgid "Update Manager Online requires registration" msgstr "" -#: ../../general/alert_enterprise.php:120 -msgid "" -"The Enterprise version comes with a different update system, with fully " -"tested, professionally-supported packages, and our support team is there to " -"help you in case of problems or queries. Update Manager is another feature " -"present in the Enterprise version and not included in the OpenSource " -"version. There are lots of advanced business-oriented features contained in " -"Pandora FMS Enterprise Edition. For more information visit pandorafms.com" +#: ../../godmode/update_manager/update_manager.online.php:133 +msgid "The latest version of package installed is:" msgstr "" -#: ../../general/alert_enterprise.php:128 -msgid "" -"The new Update Manager " -"client is shipped with Pandora FMS It helps system administrators to update " -"their Pandora FMS automatically, since the Update Manager does the task of " -"getting new modules, new plugins and new features (even full migrations " -"tools for future versions) automatically." +#: ../../godmode/update_manager/update_manager.online.php:141 +msgid "Checking for the newest package." msgstr "" -#: ../../general/alert_enterprise.php:131 -msgid "" -"Update Manager is one of the most advanced features of Pandora FMS " -"Enterprise version, for more information visit http://pandorafms.com." +#: ../../godmode/update_manager/update_manager.online.php:145 +msgid "Downloading for the newest package." msgstr "" -#: ../../general/alert_enterprise.php:134 -msgid "" -"Update Manager sends anonymous information about Pandora FMS usage (number " -"of agents and modules running). To disable it, please remove the remote " -"server address from the Update Manager plugin setup." -msgstr "" - -#: ../../general/alert_enterprise.php:141 -msgid "" -"The community version doesn't have the ability to define your own library of " -"local modules, or distribute it to remote agents. You need to make those " -"changes individually on each agent which is possible by using external tools " -"and time and effort. Nor can it distribute local plugins, or have access to " -"the library of enterprise plugins to monitor applications such as VMWare, " -"RHEV or Informix between others. The Enterprise version will have all this, " -"plus the ability to distribute and manage your own local modules on your " -"systems, individually or through policies.\n" -"

pandorafms.com" -msgstr "" - -#: ../../general/alert_enterprise.php:148 -msgid "" -"Pandora FMS Enterprise also features event correlation. Through correlation " -"you can generate realtime alerts and / or new events based on logical rules. " -"This allows you to automate troubleshooting. If you know the value of " -"working with events, event correlation will take you to a new level." -msgstr "" - -#: ../../general/alert_enterprise.php:151 -msgid "" -"Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, Pandora FMS Enterprise version is for you." -msgstr "" - -#: ../../general/alert_enterprise.php:154 -msgid "These options are only effective on the Enterprise version." -msgstr "" - -#: ../../general/alert_enterprise.php:157 +#: ../../godmode/update_manager/update_manager.online.php:186 +#: ../../general/alert_enterprise.php:160 msgid "" "WARNING: You are just one click away from an automated update. This may " "result in a damaged system, including loss of data and operativity. Check " @@ -8354,303 +28799,16549 @@ msgid "" "support and warranty, please upgrade to Enterprise Version." msgstr "" -#: ../../general/alert_enterprise.php:160 +#: ../../godmode/update_manager/update_manager.offline.php:63 +msgid "Drop the package here or" +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:64 +msgid "browse it" +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:65 +msgid "The package has been uploaded successfully." +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:66 +#, php-format msgid "" -"This system is heavily loaded. OpenSource version could get a lot more " -"agents but fine tuning requires knowledge and time. Checkout the Enterprise " -"Version for a professional supported system." +"Please keep in mind that this package is going to override your actual %s " +"files and that it's recommended to conduct a backup before continuing the " +"updating process." msgstr "" -#: ../../general/alert_enterprise.php:163 +#: ../../godmode/update_manager/update_manager.offline.php:67 +msgid "Click on the file below to begin." +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:68 +msgid "Updating" +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:69 +msgid "Package updated successfully." +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:70 +msgid "If there are any database change, it will be applied." +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:101 +msgid "This update does not correspond to the next version of Pandora" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:41 +msgid "Offline update manager" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:47 +msgid "Online update manager" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:53 +msgid "Update manager » Setup" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:57 +msgid "Update manager » Offline" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:61 +msgid "Update manager » Online" +msgstr "" + +#: ../../godmode/users/profile_list.php:55 +#: ../../godmode/users/configure_profile.php:51 +#, php-format +msgid "Profiles defined on %s" +msgstr "" + +#: ../../godmode/users/profile_list.php:80 +#: ../../godmode/users/user_list.php:219 +msgid "There was a problem deleting the profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:207 +msgid "There was a problem updating this profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:210 +msgid "Profile name cannot be empty" +msgstr "" + +#: ../../godmode/users/profile_list.php:256 +#: ../../godmode/users/profile_list.php:259 +msgid "There was a problem creating this profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:375 +msgid "There are no defined profiles" +msgstr "" + +#: ../../godmode/users/configure_profile.php:117 +msgid "Create profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:122 +msgid "There was a problem loading profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:191 +msgid "Update profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:201 +msgid "Update Profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:203 +msgid "Create Profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:224 +msgid "View agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:228 +msgid "Disable agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:232 +msgid "Edit agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:239 +msgid "Edit alerts" +msgstr "" + +#: ../../godmode/users/configure_profile.php:254 +msgid "Edit events" +msgstr "" + +#: ../../godmode/users/configure_profile.php:258 +#: ../../godmode/events/events.php:88 ../../godmode/events/events.php:96 +#: ../../operation/events/events.php:748 +msgid "Manage events" +msgstr "" + +#: ../../godmode/users/configure_profile.php:265 +msgid "View reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:269 +msgid "Edit reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:273 +msgid "Manage reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:280 +msgid "View network maps" +msgstr "" + +#: ../../godmode/users/configure_profile.php:284 +msgid "Edit network maps" +msgstr "" + +#: ../../godmode/users/configure_profile.php:288 +msgid "Manage network maps" +msgstr "" + +#: ../../godmode/users/configure_profile.php:295 +#: ../../include/functions_menu.php:509 +msgid "View visual console" +msgstr "" + +#: ../../godmode/users/configure_profile.php:299 +msgid "Edit visual console" +msgstr "" + +#: ../../godmode/users/configure_profile.php:303 +msgid "Manage visual console" +msgstr "" + +#: ../../godmode/users/configure_profile.php:310 +msgid "View incidents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:314 +msgid "Edit incidents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:318 +msgid "Manage incidents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:330 +msgid "Manage users" +msgstr "" + +#: ../../godmode/users/configure_profile.php:337 +msgid "Manage database" +msgstr "" + +#: ../../godmode/users/configure_profile.php:344 +#, php-format +msgid "%s management" +msgstr "" + +#: ../../godmode/users/user_list.php:145 +#, php-format +msgid "Users defined on %s" +msgstr "" + +#: ../../godmode/users/user_list.php:165 +#, php-format +msgid "Deleted user %s" +msgstr "" + +#: ../../godmode/users/user_list.php:172 ../../godmode/users/user_list.php:210 +msgid "There was a problem deleting the user" +msgstr "" + +#: ../../godmode/users/user_list.php:187 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "" + +#: ../../godmode/users/user_list.php:198 +#, php-format +msgid "Deleted user %s from %s" +msgstr "" + +#: ../../godmode/users/user_list.php:204 +#, php-format +msgid "Successfully deleted from %s" +msgstr "" + +#: ../../godmode/users/user_list.php:205 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "" + +#: ../../godmode/users/user_list.php:235 +msgid "There was a problem disabling user" +msgstr "" + +#: ../../godmode/users/user_list.php:241 +msgid "There was a problem enabling user" +msgstr "" + +#: ../../godmode/users/user_list.php:270 ../../godmode/users/user_list.php:274 +msgid "Search by username, fullname or email" +msgstr "" + +#: ../../godmode/users/user_list.php:300 +msgid "Users control filter" +msgstr "" + +#: ../../godmode/users/user_list.php:328 +#: ../../godmode/users/configure_user.php:668 +#: ../../godmode/users/configure_user.php:684 +#: ../../include/functions_reporting_html.php:3996 +#: ../../operation/search_users.php:34 ../../operation/users/user_edit.php:242 +#: ../../operation/snmpconsole/snmp_view.php:821 +msgid "User ID" +msgstr "" + +#: ../../godmode/users/user_list.php:333 +msgid "Profile / Group" +msgstr "" + +#: ../../godmode/users/user_list.php:484 +#: ../../godmode/users/configure_user.php:769 +#: ../../operation/search_users.php:52 +msgid "Administrator" +msgstr "" + +#: ../../godmode/users/user_list.php:528 ../../operation/search_users.php:75 +msgid "The user doesn't have any assigned profile/group" +msgstr "" + +#: ../../godmode/users/user_list.php:542 +msgid "Deleting User" +msgstr "" + +#: ../../godmode/users/user_list.php:544 +msgid "Delete from all consoles" +msgstr "" + +#: ../../godmode/users/user_list.php:544 +#, php-format +msgid "Deleting User %s from all consoles" +msgstr "" + +#: ../../godmode/users/user_list.php:562 +#: ../../godmode/users/configure_user.php:129 +msgid "Create user" +msgstr "" + +#: ../../godmode/users/user_list.php:565 +#: ../../godmode/users/configure_user.php:223 +#, php-format +msgid "The current authentication scheme doesn't support creating users on %s" +msgstr "" + +#: ../../godmode/users/configure_user.php:127 +msgid "Update user" +msgstr "" + +#: ../../godmode/users/configure_user.php:151 +#: ../../operation/users/user_edit_header.php:111 +msgid "User detail editor" +msgstr "" + +#: ../../godmode/users/configure_user.php:298 +msgid "User ID cannot be empty" +msgstr "" + +#: ../../godmode/users/configure_user.php:304 +msgid "Invalid user ID: leading or trailing blank spaces not allowed" +msgstr "" + +#: ../../godmode/users/configure_user.php:310 +msgid "Passwords cannot be empty" +msgstr "" + +#: ../../godmode/users/configure_user.php:316 +msgid "Passwords didn't match" +msgstr "" + +#: ../../godmode/users/configure_user.php:369 msgid "" -"This system has too many modules per agent. OpenSource version could manage " -"thousands of modules, but is not recommended to have more than 40 modules " -"per agent. This configuration has B/A modules per agent. Checkout the " -"Enterprise Version for a professional supported system." +"Strict ACL is not recommended for admin users because performance could be " +"affected." msgstr "" -#: ../../general/alert_enterprise.php:166 +#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:495 +#: ../../godmode/users/configure_user.php:558 +#: ../../godmode/users/configure_user.php:565 +#: ../../godmode/users/configure_user.php:596 +#: ../../operation/users/user_edit.php:189 +#: ../../operation/users/user_edit.php:232 +msgid "User info successfully updated" +msgstr "" + +#: ../../godmode/users/configure_user.php:472 +#: ../../godmode/users/configure_user.php:496 +#: ../../godmode/users/configure_user.php:559 +#: ../../godmode/users/configure_user.php:566 +#: ../../godmode/users/configure_user.php:597 +msgid "Error updating user info (no change?)" +msgstr "" + +#: ../../godmode/users/configure_user.php:512 +msgid "Passwords does not match" +msgstr "" + +#: ../../godmode/users/configure_user.php:586 msgid "" -"Too much remote modules has been detected on this system. OpenSource version " -"could manage thousands of modules, but performance is limited on high amount " -"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " -"supported system with improved capacity on network monitoring, including " -"distributed servers." +"Strict ACL is not recommended for this user. Performance could be affected." msgstr "" -#: ../../general/alert_enterprise.php:169 +#: ../../godmode/users/configure_user.php:626 +msgid "Profile added successfully" +msgstr "" + +#: ../../godmode/users/configure_user.php:627 +msgid "Profile cannot be added" +msgstr "" + +#: ../../godmode/users/configure_user.php:661 +msgid "Update User" +msgstr "" + +#: ../../godmode/users/configure_user.php:663 +msgid "Create User" +msgstr "" + +#: ../../godmode/users/configure_user.php:707 +#: ../../operation/users/user_edit.php:256 +msgid "Full (display) name" +msgstr "" + +#: ../../godmode/users/configure_user.php:724 +#: ../../operation/users/user_edit.php:390 +msgid "Timezone" +msgstr "" + +#: ../../godmode/users/configure_user.php:724 +#: ../../operation/users/user_edit.php:390 +msgid "The timezone must be that of the associated server." +msgstr "" + +#: ../../godmode/users/configure_user.php:755 +#: ../../operation/users/user_edit.php:282 +msgid "Password confirmation" +msgstr "" + +#: ../../godmode/users/configure_user.php:763 +msgid "Global Profile" +msgstr "" + +#: ../../godmode/users/configure_user.php:770 msgid "" -"This system has too much events in the database. Checkout database purge " -"options. Checkout the Enterprise Version for a professional supported system." +"This user has permissions to manage all. An admin user should not requiere " +"additional group permissions, except for using Enterprise ACL." msgstr "" -#: ../../general/alert_enterprise.php:172 +#: ../../godmode/users/configure_user.php:782 +#: ../../operation/search_users.php:61 +msgid "Standard User" +msgstr "" + +#: ../../godmode/users/configure_user.php:783 msgid "" -"You have defined a high number of alerts, this may cause you performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." +"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 "" -#: ../../general/logon_ok.php:114 ../../general/logon_ok.php:318 -msgid "Pandora FMS Overview" +#: ../../godmode/users/configure_user.php:804 +#: ../../operation/users/user_edit.php:275 +msgid "E-mail" msgstr "" -#: ../../general/logon_ok.php:181 ../../general/logon_ok.php:380 -msgid "News board" +#: ../../godmode/users/configure_user.php:820 +#: ../../operation/users/user_edit.php:277 +msgid "Phone number" msgstr "" -#: ../../general/logon_ok.php:186 ../../general/logon_ok.php:385 -msgid "ago" +#: ../../godmode/users/configure_user.php:864 +msgid "Search custom field view" msgstr "" -#: ../../general/logon_ok.php:193 ../../general/logon_ok.php:392 -msgid "by" +#: ../../godmode/users/configure_user.php:864 +msgid "Load by default the selected view in custom field view" msgstr "" -#: ../../general/logon_ok.php:229 ../../general/logon_ok.php:426 -msgid "This is your last activity in Pandora FMS console" +#: ../../godmode/users/configure_user.php:881 +msgid "Use global conf" msgstr "" -#: ../../general/login_page.php:35 -msgid "Go to Pandora FMS Website" +#: ../../godmode/users/configure_user.php:886 +#: ../../operation/users/user_edit.php:335 +msgid "Home screen" msgstr "" -#: ../../general/login_page.php:40 -msgid "Go to Login" -msgstr "" - -#: ../../general/login_page.php:82 -msgid "Docs" -msgstr "" - -#: ../../general/login_page.php:84 ../../general/login_help_dialog.php:67 -#: ../../general/login_help_dialog.php:69 -msgid "Support" -msgstr "" - -#: ../../general/login_page.php:145 -msgid "Login as admin" -msgstr "" - -#: ../../general/login_page.php:152 -msgid "Login with SAML" -msgstr "" - -#: ../../general/login_page.php:174 -msgid "Logged out" -msgstr "" - -#: ../../general/login_page.php:200 -msgid "View details" -msgstr "" - -#: ../../general/login_page.php:224 -msgid "Build" -msgstr "" - -#: ../../general/login_page.php:237 -msgid "Login failed" -msgstr "" - -#: ../../general/login_page.php:261 +#: ../../godmode/users/configure_user.php:886 +#: ../../operation/users/user_edit.php:335 msgid "" -"Pandora FMS frontend is built on advanced, modern technologies and does not " -"support old browsers." +"User can customize the home page. By default, will display 'Agent Detail'. " +"Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/" +"ver_agente&id_agente=1 to show agent detail view" msgstr "" -#: ../../general/login_page.php:262 +#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/events/events.php:37 ../../operation/users/user_edit.php:339 +#: ../../operation/events/events.php:722 +msgid "Event list" +msgstr "" + +#: ../../godmode/users/configure_user.php:894 +#: ../../operation/users/user_edit.php:342 +#: ../../operation/agentes/alerts_status.php:178 ../../operation/menu.php:65 +msgid "Alert detail" +msgstr "" + +#: ../../godmode/users/configure_user.php:895 +msgid "External link" +msgstr "" + +#: ../../godmode/users/configure_user.php:945 +msgid "Metaconsole access" +msgstr "" + +#: ../../godmode/users/configure_user.php:963 +msgid "Not Login" +msgstr "" + +#: ../../godmode/users/configure_user.php:964 +msgid "The user with not login set only can access to API." +msgstr "" + +#: ../../godmode/users/configure_user.php:967 +msgid "Session Time" +msgstr "" + +#: ../../godmode/users/configure_user.php:968 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." +"This is defined in minutes, If you wish a permanent session should putting " +"-1 in this field." msgstr "" -#: ../../general/login_page.php:325 -msgid "Why is it recommended to upgrade the web browser?" +#: ../../godmode/users/configure_user.php:982 +msgid "Default event filter" msgstr "" -#: ../../general/login_page.php:330 +#: ../../godmode/users/configure_user.php:985 +#: ../../include/functions_config.php:448 +msgid "Disabled newsletter" +msgstr "" + +#: ../../godmode/users/configure_user.php:1000 +msgid "eHorus user access enabled" +msgstr "" + +#: ../../godmode/users/configure_user.php:1003 +#: ../../include/functions_config.php:1480 +msgid "eHorus user" +msgstr "" + +#: ../../godmode/users/configure_user.php:1005 +#: ../../include/functions_config.php:1484 +msgid "eHorus password" +msgstr "" + +#: ../../godmode/users/configure_user.php:1014 +msgid "Enable agents managment" +msgstr "" + +#: ../../godmode/users/configure_user.php:1017 +msgid "Assigned node" +msgstr "" + +#: ../../godmode/users/configure_user.php:1017 +msgid "Server where the agents created of this user will be placed" +msgstr "" + +#: ../../godmode/users/configure_user.php:1026 +msgid "Enable node access" +msgstr "" + +#: ../../godmode/users/configure_user.php:1026 +msgid "With this option enabled, the user will can access to nodes console" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:67 +#: ../../include/functions_api.php:14063 +msgid "Created by template " +msgstr "" + +#: ../../godmode/agentes/agent_template.php:154 +#: ../../include/functions_api.php:14150 +msgid "Error adding modules" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:156 +#: ../../include/functions_api.php:14152 +msgid "Error adding modules. The following errors already exists: " +msgstr "" + +#: ../../godmode/agentes/agent_template.php:161 +#: ../../include/functions_api.php:14157 +msgid "Modules successfully added" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:186 +msgid "Assign" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:267 +#: ../../mobile/operation/modules.php:736 +msgid "No modules" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 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." +"Optional. Substring to look for in the WQL query result. The module returns " +"1 if found, 0 if not." msgstr "" -#: ../../general/login_page.php:339 -msgid "Continue despite this warning" +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +msgid "" +"Column number to retrieve from the WQL query result (starting from zero)." msgstr "" -#: ../../general/noaccess2.php:26 -msgid "Access to this page is restricted" +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:330 +#: ../../operation/agentes/status_monitor.php:1172 +#: ../../operation/agentes/estado_generalagente.php:372 +msgid "Last status change" msgstr "" -#: ../../general/noaccess2.php:31 -msgid "No access" +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" msgstr "" -#: ../../general/noaccess2.php:36 +#: ../../godmode/agentes/configurar_agente.php:230 +#: ../../godmode/agentes/configurar_agente.php:939 +msgid "No agent alias specified" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:353 +#: ../../include/functions_api.php:1644 +msgid "Could not be created, because name already exists" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:355 +#: ../../include/functions_api.php:1646 +msgid "Could not be created, because IP already exists" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:406 ../../godmode/menu.php:146 +#: ../../godmode/wizards/HostDevices.class.php:1074 +msgid "Module templates" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:457 +#: ../../operation/agentes/ver_agente.php:1221 +msgid "GIS data" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:494 +#: ../../godmode/agentes/configurar_agente.php:649 +#: ../../operation/agentes/ver_agente.php:1234 ../../operation/menu.php:494 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../general/first_task/incidents.php:28 +msgid "Incidents" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:644 +msgid "Gis" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:686 +msgid "SNMP explorer" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:717 +#: ../../godmode/agentes/configurar_agente.php:739 ../../godmode/menu.php:103 +msgid "Resources" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:727 +msgid "Agent manager" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:767 +#: ../../godmode/servers/modificar_server.php:180 +msgid "Conf file deleted successfully" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:768 +#: ../../godmode/servers/modificar_server.php:181 +msgid "Could not delete conf file" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:812 +#: ../../godmode/agentes/configurar_agente.php:816 +msgid "No data to normalize" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:821 +#, php-format +msgid "Deleted data above %f" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:822 +#, php-format +msgid "Error normalizing module %s" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:949 +#, php-format +msgid "The group id %d is incorrect." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:951 +msgid "Duplicate main IP address" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1007 +msgid "There was a problem updating the agent" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1141 +msgid "There was a problem loading the agent" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1626 +msgid "" +"There was a problem updating module. Another module already exists with the " +"same name." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1630 +msgid "" +"There was a problem updating module. Some required fields are missed: (name)" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1634 +msgid "There was a problem updating module. \"No change\"" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1640 +msgid "There was a problem updating module. Processing error" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1669 +msgid "Module successfully updated" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1814 +msgid "" +"There was a problem adding module. Another module already exists with the " +"same name." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1818 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1824 +msgid "There was a problem adding module. Processing error" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1853 +#: ../../godmode/reporting/graph_builder.php:311 +msgid "Module added successfully" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2101 +msgid "There was a problem deleting the module" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2105 +msgid "Module deleted succesfully" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2232 +#: ../../include/functions_api.php:10128 +#, php-format +msgid "Save by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2250 +#: ../../include/functions_api.php:10129 +#, php-format +msgid "Update by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2266 +#: ../../include/functions_api.php:10130 +#, php-format +msgid "Insert by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2335 +#: ../../godmode/agentes/configurar_agente.php:2347 +msgid "Invalid tab specified" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:96 +msgid "Source module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:133 +#: ../../godmode/agentes/module_manager_editor_prediction.php:151 +msgid "Select Module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:691 +msgid "Invalid module type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:711 +msgid "Base options" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:735 +msgid "Module relations" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:825 +msgid "No module to predict" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:835 +msgid "No plug-in provided" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:845 +msgid "No server provided" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:876 +msgid "" +"Error, The field name and name in module_name in data configuration are " +"different." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:914 +msgid "The File APIs are not fully supported in this browser." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:915 +msgid "Couldn`t find the fileinput element." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:916 +msgid "This browser doesn`t seem to support the files property of file inputs." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:917 +msgid "Please select a file before clicking Load" +msgstr "" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:229 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:334 +msgid "No agent selected or the agent does not exist" +msgstr "" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:475 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 +msgid "Use agent ip" +msgstr "" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:501 +msgid "" +"In order to use remote executions you need to enable remote execution in " +"satellite server" +msgstr "" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:617 +msgid "When selecting interfaces" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:63 +#, php-format +msgid "Agents defined in %s" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:66 +#: ../../godmode/massive/massive_operations.php:334 +msgid "" +"This node is configured with centralized mode. To delete an agent go to " +"metaconsole." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:103 +msgid "Success deleted agent." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:103 +msgid "Could not be deleted." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:110 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:179 +msgid "Show Agents" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:181 +msgid "Everyone" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:190 +msgid "Operative System" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:211 +msgid "" +"Search filter by alias, name, description, IP address or custom fields " +"content" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:492 +msgid "Remote agent configuration" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:492 +msgid "R" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:666 +msgid "Edit remote config" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:713 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:716 +msgid "Enable agent" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:723 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:726 +msgid "Disable agent" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:736 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../operation/agentes/gis_view.php:56 +msgid "" +"There is no default map. Please go to the setup for to set a default map." +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:50 +msgid "" +"There is no GIS data for this agent, so it's positioned in default position " +"of map." +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "" +"When you change the Agent position, the agent automatically activates the " +"'Ignore new GIS data' option" +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:67 +msgid "Agent position" +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:73 +msgid "Latitude: " +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:90 +msgid "Longitude: " +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:107 +msgid "Altitude: " +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:685 +msgid "Ignore new GIS data:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "An error occurred while migrating the malformed planned downtimes" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "Please run the migration again or contact with the administrator" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:55 +msgid "Scheduled Downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:83 +msgid "An error occurred stopping the planned downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:106 +msgid "This planned downtime is running" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:157 +#: ../../godmode/agentes/planned_downtime.editor.php:697 +msgid "Once" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:158 +#: ../../godmode/agentes/planned_downtime.list.php:446 +#: ../../godmode/agentes/planned_downtime.editor.php:698 +msgid "Periodically" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:160 +msgid "Execution type" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:162 +msgid "Show past downtimes" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:365 +#: ../../godmode/agentes/planned_downtime.export_csv.php:199 +msgid "No planned downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:398 +msgid "Name #Ag." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:402 +#: ../../godmode/agentes/planned_downtime.editor.php:694 +#: ../../include/functions_reporting_html.php:5174 +msgid "Execution" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:407 +#: ../../godmode/agentes/planned_downtime.list.php:479 +msgid "Stop downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:438 +#: ../../godmode/agentes/planned_downtime.editor.php:680 +msgid "Disabled Agents" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:681 +msgid "Disabled only Alerts" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:445 +msgid "once" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:460 +msgid "Not running" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:555 +msgid "" +"WARNING: If you delete this planned downtime, it will not be taken into " +"account in future SLA reports" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:561 +msgid "WARNING: There are malformed planned downtimes" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:561 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:313 +#: ../../godmode/agentes/planned_downtime.editor.php:1235 +msgid "This elements cannot be modified while the downtime is being executed" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:346 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:744 +msgid "" +"Not created. Error inserting data. Start time must be higher than the " +"current time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../godmode/agentes/planned_downtime.editor.php:354 +#: ../../godmode/agentes/planned_downtime.editor.php:361 +#: ../../godmode/agentes/planned_downtime.editor.php:365 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:749 +#: ../../include/functions_planned_downtimes.php:756 +#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:772 +#: ../../include/functions_planned_downtimes.php:777 +#: ../../include/functions_planned_downtimes.php:782 +#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:802 +msgid "Not created. Error inserting data" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:756 +msgid "The end date must be higher than the start date" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:354 +#: ../../include/functions_planned_downtimes.php:749 +msgid "The end date must be higher than the current time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:361 +#: ../../godmode/agentes/planned_downtime.editor.php:807 +#: ../../godmode/agentes/planned_downtime.editor.php:820 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:764 +msgid "The end time must be higher than the start time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:365 +#: ../../godmode/agentes/planned_downtime.editor.php:792 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:772 +msgid "The end day must be higher than the start day" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:417 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:816 +msgid "Each planned downtime must have a different name" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:422 +#: ../../godmode/agentes/planned_downtime.editor.php:454 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:822 +msgid "Planned downtime must have a name" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:467 +msgid "Cannot be modified while the downtime is being executed" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:674 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:674 +msgid "Disable Agents: Disables the selected agents." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:674 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:713 +msgid "Configure the time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:719 +#: ../../include/functions_reporting_html.php:71 +#: ../../include/functions_reporting_html.php:4514 +msgid "From:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:723 +#: ../../include/functions_reporting_html.php:71 +#: ../../include/functions_reporting_html.php:4514 +msgid "To:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:732 +msgid "Type Periodicity:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:764 +msgid "From day:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:778 +msgid "To day:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:797 +msgid "From hour:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:810 +msgid "To hour:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:971 +msgid "Available modules:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:972 +msgid "Only for type Quiet for downtimes." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1009 +msgid "Agents planned for this downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1027 +msgid "There are no agents" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1069 +msgid "All alerts" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1071 +msgid "Entire agent" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1074 +#: ../../godmode/agentes/planned_downtime.editor.php:1183 +msgid "All modules" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1076 +#: ../../godmode/agentes/planned_downtime.editor.php:1175 +#: ../../godmode/agentes/planned_downtime.editor.php:1179 +msgid "Some modules" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1144 +msgid "Add Module:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +msgid "Please select a module." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1498 +msgid "" +"WARNING: If you edit this planned downtime, the data of future SLA reports " +"may be altered" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:30 +msgid "Agents custom fields manager" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:46 +#: ../../include/ajax/custom_fields.php:727 +msgid "The name must not be empty" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:48 +msgid "The name must be unique" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:59 +msgid "Field successfully created" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:80 +msgid "Field successfully updated" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem modifying field" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:94 +msgid "There was a problem deleting field" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Field successfully deleted" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:92 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:93 +#: ../../operation/agentes/custom_fields.php:67 +msgid "" +"The fields with display on front enabled will be displayed into the agent " +"details" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:164 +msgid "Create field" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:470 +msgid "Windows remote" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:473 +msgid "Connection method" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:221 +#: ../../operation/agentes/estado_agente.php:189 ../../operation/menu.php:56 +msgid "Agent detail" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:231 +msgid "Delete agent" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:258 +msgid "QR Code Agent view" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:279 +msgid "Use alias as name" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:287 +#: ../../godmode/setup/setup_general.php:338 +msgid "Unique IP" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:321 +msgid "Primary group" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:532 +#: ../../godmode/massive/massive_edit_agents.php:707 +msgid "Safe operation mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:554 +#: ../../godmode/massive/massive_edit_agents.php:653 +msgid "Not available" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:572 +msgid "Cascade protection services" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:599 +#: ../../godmode/massive/massive_edit_agents.php:535 +msgid "Cascade protection" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:615 +#: ../../godmode/massive/massive_edit_agents.php:633 +msgid "Module definition" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:620 +#: ../../godmode/massive/massive_edit_agents.php:635 +msgid "Learning mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:630 +#: ../../godmode/massive/massive_edit_agents.php:636 +msgid "Normal mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:640 +#: ../../godmode/massive/massive_edit_agents.php:637 +msgid "Autodisable mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:657 +msgid "Disabled mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:662 +#: ../../godmode/agentes/agent_manager.php:679 +#: ../../include/functions_treeview.php:736 +#: ../../operation/agentes/ver_agente.php:1246 +#: ../../operation/agentes/estado_generalagente.php:431 +msgid "Url address" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:704 +#: ../../godmode/massive/massive_edit_agents.php:681 +msgid "Agent icon" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:754 +msgid "Update new GIS data:" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:816 +msgid "Click to display" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:1069 +msgid "Primary group cannot be secondary too." +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:1199 +msgid "Secondary group cannot be primary too." +msgstr "" + +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "" + +#: ../../godmode/agentes/agent_incidents.php:90 +#: ../../operation/incidents/incident_detail.php:272 +#: ../../operation/incidents/incident.php:421 +msgid "Incident" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:38 +msgid "Update agent custom field" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:40 +msgid "Create agent custom field" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:52 +#: ../../godmode/agentes/configure_field.php:56 +#: ../../godmode/agentes/configure_field.php:60 +#: ../../godmode/agentes/configure_field.php:64 +msgid "Agent Custom Fields Information" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:53 +msgid "" +"You cannot set the Password type until you clear the combo values and click " +"on update button." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:57 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click " +"on update." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:61 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:65 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:81 +msgid "Pass type" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:82 +msgid "" +"The fields with pass type enabled will be displayed like html input type " +"pass in html" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:103 +msgid "Enabled combo" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:115 +msgid "Combo values" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:116 +msgid "Set values separated by comma" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:90 +msgid "Using module component" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:387 +#: ../../godmode/agentes/module_manager_editor_common.php:440 +msgid "Min. " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:614 +msgid "Dynamic Threshold Interval" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:634 +msgid "Dynamic Threshold Min. " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:647 +msgid "Dynamic Threshold Max. " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:660 +msgid "Dynamic Threshold Two Tailed: " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:671 +msgid "Not needed" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:951 +msgid "Tags from policy" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:991 +msgid "Cascade Protection Services" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1025 +#: ../../godmode/agentes/module_manager_editor_common.php:1033 +#: ../../godmode/agentes/module_manager_editor_common.php:1042 +msgid "Cron from" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1029 +#: ../../godmode/agentes/module_manager_editor_common.php:1037 +#: ../../godmode/agentes/module_manager_editor_common.php:1046 +msgid "Cron to" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1082 +msgid "Module parent" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1180 +#: ../../godmode/agentes/module_manager_editor_common.php:1275 +msgid "Direct" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1181 +#: ../../godmode/agentes/module_manager_editor_common.php:1275 +#: ../../include/functions_reporting_html.php:3028 +#: ../../include/functions_reporting_html.php:3113 +#: ../../include/functions_reporting_html.php:3176 +#: ../../include/functions_reporting_html.php:3531 +msgid "Failover" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1182 +msgid "Rel. type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1197 +msgid "Add relationship" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1222 +msgid "Changes" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:89 +msgid "Create a new data server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:91 +msgid "Create a new network server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:95 +msgid "Create a new plugin server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:99 +msgid "Create a new WMI server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:103 +msgid "Create a new prediction server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:147 +#: ../../operation/agentes/estado_monitores.php:575 +msgid "Show in hierachy mode" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:159 +msgid "

Type

" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:176 +msgid "Get more modules on Monitoring Library" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:210 +msgid "Nice try buddy" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:337 +#, php-format +msgid "There was a problem deleting %s modules, none deleted." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:343 +msgid "All Modules deleted succesfully" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:347 +#, php-format +msgid "There was a problem only deleted %s modules of %s total." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:618 +#: ../../godmode/reporting/map_builder.php:403 +#: ../../godmode/reporting/map_builder.php:420 +#: ../../include/ajax/module.php:442 +#: ../../operation/agentes/datos_agente.php:296 +msgid "No available data to show" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:655 +msgid "Del." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:782 +#: ../../godmode/agentes/module_manager.php:790 +#: ../../include/ajax/module.php:949 ../../include/ajax/module.php:957 +msgid "Adopted" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:894 +msgid "Normalize" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:902 +msgid "Normalize (Disabled)" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:916 +#: ../../include/functions_snmp_browser.php:602 +msgid "Create network component" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:923 +msgid "Create network component (Disabled)" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:36 +#: ../../operation/reporting/reporting_viewer.php:79 +msgid "Report list" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:39 +#: ../../godmode/netflow/nf_item_list.php:46 +msgid "Report items" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:42 +msgid "Edit report" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:55 +msgid "Netflow reports" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:59 +msgid "Item list" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:178 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2000 +#: ../../operation/netflow/nf_live_view.php:322 +msgid "Max. values" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:179 +#: ../../operation/agentes/graphs.php:226 +msgid "Chart type" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:279 +msgid "There are no defined items" +msgstr "" + +#: ../../godmode/netflow/nf_edit.php:38 +msgid "Manage Netflow Filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 +#: ../../godmode/netflow/nf_edit_form.php:73 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:97 +msgid "Netflow filters" +msgstr "" + +#: ../../godmode/netflow/nf_edit.php:187 +#: ../../godmode/events/event_filter.php:179 +msgid "There are no defined filters" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:43 +msgid "Filter list" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:55 +#: ../../godmode/netflow/nf_edit_form.php:77 +msgid "Add filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:58 +msgid "Netflow Filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:187 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../include/ajax/custom_fields.php:697 ../../include/ajax/events.php:549 +#: ../../include/ajax/events.php:609 ../../operation/events/events_list.php:414 +#: ../../operation/events/events_list.php:467 +msgid "Update filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:224 +msgid "Filter:" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:228 +#: ../../operation/netflow/nf_live_view.php:406 +msgid "Dst Ip" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:228 +#: ../../operation/netflow/nf_live_view.php:406 +msgid "" +"Destination IP. A comma separated list of destination ip. If we leave the " +"field blank, will show all ip. Example filter by ip:" +"
25.46.157.214,160.253.135.249" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:231 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "Src Ip" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:231 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "" +"Source IP. A comma separated list of source ip. If we leave the field blank, " +"will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:234 +#: ../../godmode/netflow/nf_edit_form.php:247 +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "Dst Port" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:234 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"Destination port. A comma separated list of destination ports. If we leave " +"the field blank, will show all ports. Example filter by ports 80 and 22:" +"
80,22" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/netflow/nf_edit_form.php:246 +#: ../../operation/netflow/nf_live_view.php:341 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "Src Port" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "" +"Source port. A comma separated list of source ports. If we leave the field " +"blank, will show all ports. Example filter by ports 80 and 22:
80,22" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:336 +msgid "Aggregate by" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:244 +#: ../../operation/netflow/nf_live_view.php:339 +msgid "Src Ip Address" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../operation/netflow/nf_live_view.php:340 +msgid "Dst Ip Address" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 +msgid "SNMP Trap generator" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:55 +msgid "Empty parameters" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:61 +msgid "Successfully generated" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:62 +#, php-format +msgid "Could not be generated: %s" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 +msgid "Host address" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:92 +#: ../../godmode/snmpconsole/snmp_alert.php:760 +#: ../../godmode/snmpconsole/snmp_alert.php:1272 +#: ../../operation/snmpconsole/snmp_view.php:804 +msgid "Enterprise String" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:122 +msgid "SNMP Type" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:155 +msgid "Generate trap" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:76 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +#: ../../godmode/snmpconsole/snmp_alert.php:92 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/snmpconsole/snmp_filters.php:41 +#: ../../operation/snmpconsole/snmp_statistics.php:57 +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:750 +msgid "SNMP Console" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:76 +msgid "Update alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:92 +msgid "Alert overview" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:257 +msgid "There was a problem creating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:380 +msgid "There was a problem updating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:662 +msgid "There was a problem duplicating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:665 +msgid "Successfully Duplicate" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:683 +msgid "There was a problem deleting the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:760 +msgid "Matches substrings. End the string with $ for exact matches." +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:812 +#: ../../godmode/snmpconsole/snmp_alert.php:819 +#: ../../godmode/snmpconsole/snmp_alert.php:828 +#: ../../godmode/snmpconsole/snmp_alert.php:837 +#: ../../godmode/snmpconsole/snmp_alert.php:846 +#: ../../godmode/snmpconsole/snmp_alert.php:855 +#: ../../godmode/snmpconsole/snmp_alert.php:864 +#: ../../godmode/snmpconsole/snmp_alert.php:872 +#: ../../godmode/snmpconsole/snmp_alert.php:880 +#: ../../godmode/snmpconsole/snmp_alert.php:888 +#: ../../godmode/snmpconsole/snmp_alert.php:896 +#: ../../godmode/snmpconsole/snmp_alert.php:904 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:920 +#: ../../godmode/snmpconsole/snmp_alert.php:928 +#: ../../godmode/snmpconsole/snmp_alert.php:936 +#: ../../godmode/snmpconsole/snmp_alert.php:944 +#: ../../godmode/snmpconsole/snmp_alert.php:952 +#: ../../godmode/snmpconsole/snmp_alert.php:960 +#: ../../godmode/snmpconsole/snmp_alert.php:968 +msgid "Variable bindings/Data" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1120 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Variable bindings/Datas." +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1139 +msgid "Alert SNMP control filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1224 +msgid "There are no SNMP alerts" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1275 +msgid "Custom Value/Enterprise String" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1280 +#: ../../include/functions_reporting_html.php:4064 +#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_treeview.php:458 +msgid "Times fired" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1280 +msgid "TF." +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1356 +msgid "ID Alert SNMP" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1602 +msgid "Add action " +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:87 +msgid "There was a problem updating the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:105 +#: ../../godmode/snmpconsole/snmp_filters.php:131 +msgid "Description is empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "Filter is empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:128 +msgid "Filters are empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:138 +msgid "There was a problem creating the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:157 +msgid "There was a problem deleting the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:200 +#: ../../godmode/snmpconsole/snmp_filters.php:210 +msgid "" +"This field contains a substring, could be part of a IP address, a numeric " +"OID, or a plain substring" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:202 +msgid "Click to remove the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:228 +msgid "Click to add new filter" +msgstr "" + +#: ../../godmode/menu.php:33 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "" + +#: ../../godmode/menu.php:41 +msgid "Network scan" +msgstr "" + +#: ../../godmode/menu.php:43 +msgid "Custom network scan" +msgstr "" + +#: ../../godmode/menu.php:47 +msgid "Manage scan scripts" +msgstr "" + +#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "" + +#: ../../godmode/menu.php:83 +msgid "Module categories" +msgstr "" + +#: ../../godmode/menu.php:87 +msgid "Module types" +msgstr "" + +#: ../../godmode/menu.php:111 +msgid "Manage agents groups" +msgstr "" + +#: ../../godmode/menu.php:148 ../../include/class/ConfigPEN.class.php:331 +#: ../../include/class/ConfigPEN.class.php:339 +msgid "Private Enterprise Numbers" +msgstr "" + +#: ../../godmode/menu.php:152 +msgid "Remote components" +msgstr "" + +#: ../../godmode/menu.php:176 ../../godmode/massive/massive_operations.php:268 +msgid "Bulk operations" +msgstr "" + +#: ../../godmode/menu.php:181 ../../godmode/massive/massive_operations.php:206 +msgid "Agents operations" +msgstr "" + +#: ../../godmode/menu.php:182 ../../godmode/massive/massive_operations.php:214 +msgid "Modules operations" +msgstr "" + +#: ../../godmode/menu.php:183 ../../godmode/massive/massive_operations.php:222 +msgid "Plugins operations" +msgstr "" + +#: ../../godmode/menu.php:185 ../../godmode/massive/massive_operations.php:198 +msgid "Users operations" +msgstr "" + +#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:190 +msgid "Alerts operations" +msgstr "" + +#: ../../godmode/menu.php:212 +msgid "List of Alerts" +msgstr "" + +#: ../../godmode/menu.php:227 ../../godmode/menu.php:228 +#: ../../godmode/alerts/alert_special_days.php:45 +msgid "Special days list" +msgstr "" + +#: ../../godmode/menu.php:232 ../../include/functions_menu.php:543 +msgid "SNMP alerts" +msgstr "" + +#: ../../godmode/menu.php:243 +msgid "Event filters" +msgstr "" + +#: ../../godmode/menu.php:248 +msgid "Custom events" +msgstr "" + +#: ../../godmode/menu.php:271 +msgid "Manage servers" +msgstr "" + +#: ../../godmode/menu.php:305 +#: ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" +msgstr "" + +#: ../../godmode/menu.php:330 ../../godmode/setup/setup.php:127 +#: ../../godmode/setup/setup.php:191 +#: ../../operation/agentes/ver_agente.php:1301 +msgid "eHorus" +msgstr "" + +#: ../../godmode/menu.php:333 ../../godmode/setup/setup.php:122 +#: ../../godmode/setup/setup.php:197 ../../godmode/setup/setup_integria.php:507 +msgid "Integria IMS" +msgstr "" + +#: ../../godmode/menu.php:338 ../../godmode/setup/setup.php:140 +#: ../../godmode/setup/setup.php:214 +msgid "Notifications" +msgstr "" + +#: ../../godmode/menu.php:341 +msgid "Websocket Engine" +msgstr "" + +#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:209 +msgid "Map conections GIS" +msgstr "" + +#: ../../godmode/menu.php:349 ../../godmode/setup/os.php:147 +msgid "Edit OS" +msgstr "" + +#: ../../godmode/menu.php:360 +msgid "Admin tools" +msgstr "" + +#: ../../godmode/menu.php:368 +msgid "System audit log" +msgstr "" + +#: ../../godmode/menu.php:372 +msgid "Diagnostic info" +msgstr "" + +#: ../../godmode/menu.php:376 +msgid "Site news" +msgstr "" + +#: ../../godmode/menu.php:382 +msgid "DB Schema Check" +msgstr "" + +#: ../../godmode/menu.php:385 +msgid "DB Interface" +msgstr "" + +#: ../../godmode/menu.php:471 +msgid "Extension manager view" +msgstr "" + +#: ../../godmode/menu.php:475 +msgid "Extension manager" +msgstr "" + +#: ../../godmode/menu.php:506 +msgid "Update manager" +msgstr "" + +#: ../../godmode/menu.php:512 +msgid "Update Manager offline" +msgstr "" + +#: ../../godmode/menu.php:516 +msgid "Update Manager online" +msgstr "" + +#: ../../godmode/menu.php:518 +msgid "Update Manager options" +msgstr "" + +#: ../../godmode/menu.php:526 +msgid "Module library" +msgstr "" + +#: ../../godmode/menu.php:534 +#: ../../godmode/module_library/module_library_view.php:51 +#: ../../godmode/module_library/module_library_view.php:86 +msgid "Categories" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:143 +msgid "Map successfully created" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:144 +msgid "Map could not be created" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:246 +msgid "Map successfully update" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:247 +msgid "Map could not be updated" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:262 +#: ../../operation/gis_maps/gis_map.php:30 +msgid "GIS Maps list" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:271 +msgid "View GIS" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:277 +msgid "GIS Maps builder" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:326 +msgid "Do you want to use the default data from the connection?" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:360 +msgid "The connection" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:360 +msgid "just added previously." +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:423 +msgid "Map Name" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:442 +msgid "Add Map connection" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:465 +msgid "Default zoom" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:468 +msgid "Center Latitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:471 +msgid "Center Longitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:474 +msgid "Center Altitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:477 +msgid "Default Latitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:480 +msgid "Default Longitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:483 +msgid "Default Altitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:488 +#: ../../godmode/setup/gis_step_2.php:287 +msgid "Layers" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:497 +msgid "List of layers" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:498 +msgid "New layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:504 +msgid "Layer name" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:506 +msgid "Visible" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:510 +msgid "Show agents from group" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:522 +msgid "Add agent" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:541 +msgid "List of Agents to be shown in the layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:570 +msgid "Use the data of this agent" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:578 +msgid "List of groups to be shown in the layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:585 +msgid "Save Layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:601 +#: ../../godmode/gis_maps/configure_gis_map.php:608 +msgid "Save map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:603 +msgid "Update map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:975 +msgid "Using data from" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:1133 +msgid "Empty layer names are not supported" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:177 +msgid "Copy alerts" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:180 +#: ../../godmode/massive/massive_delete_modules.php:434 +#: ../../godmode/massive/massive_edit_modules.php:393 +msgid "Filter Modules" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:214 +msgid "No alerts for this agent" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:506 +msgid "Filter Agents" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:293 +msgid "To agent(s)" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:543 +msgid "No operation selected" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:553 +#: ../../include/functions_agents.php:768 +msgid "No destiny agent(s) to copy" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:37 +msgid "Bulk alert add" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:38 +msgid "Bulk alert delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:39 +msgid "Bulk alert actions add" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:40 +msgid "Bulk alert actions delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:41 +msgid "Bulk alert enable/disable" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:42 +msgid "Bulk alert setting standby" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:46 +msgid "Bulk agent edit" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:47 +msgid "Bulk agent delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:52 +msgid "Bulk profile add" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:53 +msgid "Bulk profile delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:60 +msgid "Bulk module edit" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:61 +msgid "Bulk module copy" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk module delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:66 +msgid "Bulk plugin edit" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:304 +msgid "Please wait..." +msgstr "" + +#: ../../godmode/massive/massive_operations.php:354 +msgid "The blank fields will not be updated" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:184 +msgid "Not standby alerts" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:213 +#: ../../godmode/massive/massive_standby_alerts.php:217 +msgid "Set standby selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:219 +msgid "Standby alerts" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:60 +msgid "Could not be deleted. No agents selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:88 +msgid "Could not be deleted. No alerts selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:135 +msgid "Could not be deleted. No action selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:184 +#: ../../godmode/massive/massive_add_action_alerts.php:171 +msgid "Agents with templates" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:201 +#: ../../godmode/massive/massive_delete_modules.php:532 +#: ../../godmode/massive/massive_add_action_alerts.php:188 +#: ../../godmode/massive/massive_edit_modules.php:502 +msgid "Show unknown and not init modules" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:67 +msgid "No module selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:137 +msgid "" +"There was an error deleting the modules, the operation has been cancelled" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:294 +#: ../../godmode/massive/massive_edit_modules.php:274 +msgid "Selection mode" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:295 +#: ../../godmode/massive/massive_edit_modules.php:275 +msgid "Select modules first " +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:296 +#: ../../godmode/massive/massive_edit_modules.php:276 +msgid "Select agents first " +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:298 +msgid "Select all modules of this type" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:363 +#: ../../godmode/massive/massive_edit_modules.php:344 +msgid "Select all modules of this group" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:412 +#: ../../godmode/massive/massive_edit_modules.php:355 +#: ../../godmode/events/custom_events.php:115 +#: ../../include/functions_events.php:292 +#: ../../operation/events/events.build_table.php:340 +msgid "Module Status" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:455 +#: ../../godmode/massive/massive_edit_modules.php:410 +msgid "When select modules" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:459 +#: ../../godmode/massive/massive_edit_modules.php:414 +msgid "Show common agents" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:460 +#: ../../godmode/massive/massive_edit_modules.php:415 +msgid "Show all agents" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:572 +#: ../../godmode/massive/massive_edit_modules.php:1182 +msgid "Please, select an agent first" +msgstr "" + +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:93 +msgid "No alert selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:60 +#, php-format +msgid "" +"There was an error deleting the agent, the operation has been cancelled " +"Could not delete agent %s" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:70 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:153 +#: ../../godmode/massive/massive_edit_agents.php:439 +msgid "Show agents" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:162 +msgid "Error retrieving the plugin macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:170 +msgid "Error retrieving the modified macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:193 +msgid "Error retrieving the module plugin macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:211 +msgid "Error retrieving the module plugin macros data" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:249 +msgid "Error building the new macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:278 +#, php-format +msgid "%d modules updated" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:299 +msgid "There are not registered plugins" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:476 +msgid "Invalid plugin data" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:583 +msgid "Clear" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:611 +msgid "Invalid macros array" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:636 +msgid "Multiple values" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:668 +#: ../../godmode/massive/massive_edit_plugins.php:804 +#: ../../godmode/massive/massive_edit_plugins.php:820 +msgid "Invalid agents array" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:684 +msgid "Invalid agent element" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:695 +msgid "Invalid modules array" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:723 +msgid "Invalid module element" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:930 +msgid "There are no modules using this plugin" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:1013 +msgid "There was a problem loading the module plugin macros data" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +msgid "Enabled alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:201 +msgid "Disable selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:205 +msgid "Enable selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +msgid "Disabled alerts" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:140 +msgid "No values changed" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:185 +msgid "Configuration files deleted successfully" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:186 +msgid "Configuration files cannot be deleted" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:376 +msgid "Agents updated successfully" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:377 +msgid "Agents cannot be updated (maybe there was no field to update)" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:642 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode " +"when disabling it." +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:643 +#: ../../include/class/AgentWizard.class.php:444 +msgid "Active" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:649 +msgid "Delete available remote configurations" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:682 +msgid "Without status" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:321 +msgid "Bad" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:692 +msgid "The agent still runs but the alerts and events will be stop" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:709 +#, php-format +msgid "" +"This mode allow %s to disable all modules \n" +"of this agent while the selected module is on CRITICAL status" +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:60 +msgid "Not deleted. You must select an existing user" +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:90 +msgid "Profiles deleted successfully" +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:91 +msgid "Profiles cannot be deleted" +msgstr "" + +#: ../../godmode/massive/massive_delete_alerts.php:271 +msgid "Show alerts on disabled modules" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:99 +msgid "No alerts selected" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:125 +msgid "No actions selected" +msgstr "" + +#: ../../godmode/massive/massive_add_profiles.php:82 +msgid "Profiles added successfully" +msgstr "" + +#: ../../godmode/massive/massive_add_profiles.php:83 +msgid "Profiles cannot be added" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:119 +msgid "Error updating the modules from a module type" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:142 +msgid "Error updating the modules from an agent group" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules (maybe there was no field to update)" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:478 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:392 +msgid "Filter agents" +msgstr "" + +#: ../../godmode/admin_access_logs.php:47 +#, php-format +msgid "%s audit" +msgstr "" + +#: ../../godmode/admin_access_logs.php:47 +msgid "Review Logs" +msgstr "" + +#: ../../godmode/admin_access_logs.php:199 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:4691 +#: ../../include/functions.php:2889 +#: ../../operation/snmpconsole/snmp_statistics.php:144 +#: ../../general/logon_ok.php:248 +msgid "Source IP" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:43 +msgid "Configure alert command" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:155 +msgid "Update Command" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:155 +#: ../../godmode/alerts/configure_alert_action.php:170 +msgid "Create Command" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:199 +#, php-format +msgid "Field %s description" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:209 +#, php-format +msgid "Field %s values" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:209 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:225 +msgid "Hide" +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:52 +msgid "Alert actions" +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:290 +msgid "" +"The action and the command associated with it do not have the same group. " +"Please contact an administrator to fix it." +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:318 +msgid "No alert actions configured" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:117 +msgid "Field content" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:126 +msgid "Enabled / Disabled" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:167 +#: ../../operation/agentes/alerts_status.php:474 +msgid "Alert control filter" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:630 +#: ../../godmode/alerts/alert_view.php:358 +msgid "" +"The default actions will be executed every time that the alert is fired and " +"no other action is executed" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:642 +msgid "Delete action" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:855 +msgid "View alert advanced details" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:871 +#: ../../include/functions_reporting_html.php:2393 +msgid "No alerts defined" +msgstr "" + +#: ../../godmode/alerts/alert_commands.php:127 +msgid "" +"For sending emails, text must be HTML format, if you want to use plain text, " +"type it between the following labels:
"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:147
+#: ../../godmode/alerts/alert_commands.php:156
+msgid "Text/plain"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:147
+#: ../../godmode/alerts/alert_commands.php:156
+msgid "For sending emails only text plain"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:150
+#: ../../godmode/alerts/alert_commands.php:159
+msgid "Text/html"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:284
+msgid "Alert commands"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:342
+#: ../../include/functions_alerts.php:2758
+msgid "No name specified"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:346
+#: ../../include/functions_alerts.php:2753
+msgid "No command specified"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:395
+msgid " (copy)"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:475
+msgid "No alert commands configured"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_special_days.php:55
+msgid "Configure special day"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_special_days.php:81
+#: ../../godmode/alerts/alert_special_days.php:263
+msgid "Same day of the week"
+msgstr ""
+
+#: ../../godmode/alerts/alert_templates.php:422
+msgid "No alert templates defined"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:60
+#: ../../godmode/alerts/configure_alert_action.php:73
+msgid "Configure alert action"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:114
+msgid "Update Action"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:132
+msgid "This action may stop working, if you change its name."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:201
+msgid "Recovery"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:205
+#: ../../godmode/alerts/alert_view.php:504
+#: ../../godmode/alerts/alert_view.php:591 ../../godmode/servers/plugin.php:415
+msgid "Command preview"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:69
+#: ../../godmode/alerts/configure_alert_template.php:93
+#: ../../godmode/alerts/configure_alert_template.php:126
+#: ../../include/functions_menu.php:506
+msgid "Configure alert template"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:483
+msgid "No template name specified"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:645
+msgid "Reset counter for non-sustained alerts"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:645
+msgid ""
+"Enable this option if you want the counter to be reset when the alert is not "
+"being fired consecutively, even if it's within the time threshold"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:704
+msgid ""
+"Unless they're left blank, the fields from the action will override those "
+"set on the template."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:708
+msgid "Condition type"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:723
+msgid "Trigger when matches the value"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:746
+msgid "The regular expression is valid"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:756
+msgid "The regular expression is not valid"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:822
+msgid "Alert recovery"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:842
+msgid "Recovery fields"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:961
+msgid "No wizard"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1039
+#: ../../godmode/alerts/alert_view.php:134 ../../include/functions_ui.php:1310
+msgid "The alert would fire when the value matches "
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1040
+#, php-format
+msgid "The alert would fire when the value doesn\\'t match %s"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1041
+#: ../../godmode/alerts/alert_view.php:143 ../../include/functions_ui.php:1299
+msgid "The alert would fire when the value is "
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1042
+#: ../../godmode/alerts/alert_view.php:148 ../../include/functions_ui.php:1304
+msgid "The alert would fire when the value is not "
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1043
+#: ../../godmode/alerts/alert_view.php:154 ../../include/functions_ui.php:1322
+msgid ""
+"The alert would fire when the value is between  and "
+""
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1044
+msgid ""
+"The alert would fire when the value is not between  and "
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1045
+#: ../../godmode/alerts/alert_view.php:164
+msgid "The alert would fire when the value is below "
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1046
+#: ../../godmode/alerts/alert_view.php:169
+msgid "The alert would fire when the value is above "
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1047
+#: ../../godmode/alerts/alert_view.php:182 ../../include/functions_ui.php:1341
+msgid "The alert would fire when the module is in warning status"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1048
+#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1346
+msgid "The alert would fire when the module is in critical status"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1049
+#: ../../godmode/alerts/alert_view.php:175
+msgid "The alert would fire when the module value changes"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1050
+#: ../../godmode/alerts/alert_view.php:177
+msgid "The alert would fire when the module value does not change"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1051
+#: ../../godmode/alerts/alert_view.php:194
+msgid "The alert would fire when the module is in unknown status"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1052
+msgid ""
+"The alert template cannot have the same value for min and max thresholds."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1053
+#: ../../godmode/alerts/alert_view.php:190
+msgid "The alert would fire when the module is in not normal status"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:91
+msgid "Skipped dates: "
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:111
+msgid "Success to upload iCalendar"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:111
+msgid "Fail to upload iCalendar"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:143
+msgid "Could not be created, it already exists"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:207
+msgid "Could not be updated, it already exists"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:260
+msgid "iCalendar(.ics) file"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:284
+msgid "Overwrite"
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:285
+msgid "Check this box, if you want to overwrite existing same days."
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:304
+msgid "Display range: "
+msgstr ""
+
+#: ../../godmode/alerts/alert_special_days.php:470
+msgid "Same as "
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:49
+#: ../../godmode/alerts/alert_view.php:327
+#: ../../include/functions_events.php:4217
+msgid "Alert details"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:60
+#: ../../godmode/alerts/alert_view.php:61
+#: ../../godmode/alerts/alert_list.php:433
+msgid "List alerts"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:101
+#: ../../mobile/operation/alerts.php:107 ../../mobile/operation/alerts.php:108
+#: ../../mobile/operation/alerts.php:237 ../../mobile/operation/alerts.php:238
+msgid "Stand by"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:136 ../../include/functions_ui.php:1313
+msgid ""
+"The alert would fire when the value doesn't match "
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:156 ../../include/functions_ui.php:1325
+msgid ""
+"The alert would fire when the value is not between  "
+"and "
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:328
+msgid "Firing conditions"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:351
+#: ../../godmode/alerts/alert_view.php:371
+msgid "Every time that the alert is fired"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:412
+msgid ""
+"Select the desired action and mode to see the Firing/Recovery fields for "
+"this action"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:439
+msgid "Template fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:439
+msgid "Triggering fields configured in template"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:512
+msgid "The alert recovering is disabled on this template."
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:524
+msgid "Recovering fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:524
+msgid ""
+"Fields passed to the command executed by this action when the alert is "
+"recovered"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:528
+msgid "Template recovery fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:528
+msgid "Recovery fields configured in alert template"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:529
+msgid "Action recovery fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:529
+msgid "Recovery fields configured in alert action"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:530
+msgid "Executed on recovery"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:530
+msgid "Fields used on execution when the alert is recovered"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.builder.php:90
+msgid "Latest value"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.builder.php:193
+msgid "Finish and view cluster"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:114
+msgid "Already added"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:168
+msgid "No template specified"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:437
+msgid "Builder alert"
+msgstr ""
+
+#: ../../godmode/setup/license.php:48
+msgid "License management"
+msgstr ""
+
+#: ../../godmode/setup/license.php:70
+msgid "License updated"
+msgstr ""
+
+#: ../../godmode/setup/license.php:99
+msgid "Licence"
+msgstr ""
+
+#: ../../godmode/setup/license.php:107
+#: ../../include/class/Diagnostics.class.php:1143
+msgid "Customer key"
+msgstr ""
+
+#: ../../godmode/setup/license.php:113
+#: ../../include/class/Diagnostics.class.php:1151
+msgid "Platform Limit"
+msgstr ""
+
+#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117
+#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123
+msgid "agents"
+msgstr ""
+
+#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117
+#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123
+#: ../../operation/tree.php:122
+msgid "modules"
+msgstr ""
+
+#: ../../godmode/setup/license.php:116
+#: ../../include/class/Diagnostics.class.php:1155
+msgid "Current Platform Count"
+msgstr ""
+
+#: ../../godmode/setup/license.php:119
+#: ../../include/class/Diagnostics.class.php:1159
+msgid "Current Platform Count (enabled: items)"
+msgstr ""
+
+#: ../../godmode/setup/license.php:122
+#: ../../include/class/Diagnostics.class.php:1163
+msgid "Current Platform Count (disabled: items)"
+msgstr ""
+
+#: ../../godmode/setup/license.php:125
+#: ../../include/class/Diagnostics.class.php:1167
+msgid "License Mode"
+msgstr ""
+
+#: ../../godmode/setup/license.php:128
+msgid "NMS"
+msgstr ""
+
+#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132
+msgid "enabled"
+msgstr ""
+
+#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132
+msgid "disabled"
+msgstr ""
+
+#: ../../godmode/setup/license.php:131
+#: ../../godmode/servers/modificar_server.php:42
+#: ../../include/functions_servers.php:1232 ../../include/functions_ui.php:849
+#: ../../include/class/Diagnostics.class.php:1175
+msgid "Satellite"
+msgstr ""
+
+#: ../../godmode/setup/license.php:134
+#: ../../include/class/Diagnostics.class.php:1179
+msgid "Licensed to"
+msgstr ""
+
+#: ../../godmode/setup/license.php:145 ../../godmode/setup/license.php:160
+msgid "Request new license"
+msgstr ""
+
+#: ../../godmode/setup/license.php:164
+#, php-format
+msgid "To get your %s Enterprise License:"
+msgstr ""
+
+#: ../../godmode/setup/license.php:167
+#, php-format
+msgid "Go to %s"
+msgstr ""
+
+#: ../../godmode/setup/license.php:170
+msgid "Enter the auth key and the following request key:"
+msgstr ""
+
+#: ../../godmode/setup/license.php:176
+msgid "Enter your name (or a company name) and a contact email address."
+msgstr ""
+
+#: ../../godmode/setup/license.php:179
+msgid "Click on Generate."
+msgstr ""
+
+#: ../../godmode/setup/license.php:182
+msgid ""
+"Click here, enter "
+"the generated license key and click on Validate."
+msgstr ""
+
+#: ../../godmode/setup/news.php:29
+msgid "Site news management"
+msgstr ""
+
+#: ../../godmode/setup/news.php:144 ../../godmode/setup/links.php:89
+msgid "Name error"
+msgstr ""
+
+#: ../../godmode/setup/news.php:181
+msgid "Modal screen"
+msgstr ""
+
+#: ../../godmode/setup/news.php:184
+msgid "Expire"
+msgstr ""
+
+#: ../../godmode/setup/news.php:187 ../../godmode/setup/news.php:240
+msgid "Expiration"
+msgstr ""
+
+#: ../../godmode/setup/news.php:231
+msgid "There are no defined news"
+msgstr ""
+
+#: ../../godmode/setup/news.php:238
+#: ../../operation/agentes/estado_generalagente.php:577
+#: ../../operation/incidents/incident_detail.php:440
+msgid "Author"
+msgstr ""
+
+#: ../../godmode/setup/news.php:258
+msgid "Modal"
+msgstr ""
+
+#: ../../godmode/setup/news.php:260
+msgid "Board"
+msgstr ""
+
+#: ../../godmode/setup/news.php:271
+msgid "Expired"
+msgstr ""
+
+#: ../../godmode/setup/gis.php:65
+msgid "Map connection name"
+msgstr ""
+
+#: ../../godmode/setup/gis.php:83
+msgid "Do you wan delete this connection?"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:145
+msgid "Websocket engine"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:151
+msgid "GIS Map connection"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:219
+msgid "Pandora Websocket Engine"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:248
+msgid "Correct update the setup options"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:55
+#: ../../include/functions_config.php:1472
+msgid "Enable eHorus"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:89
+#: ../../godmode/setup/setup_integria.php:228
+msgid "API Hostname"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:95
+msgid "API Port"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:101
+#: ../../godmode/setup/setup_integria.php:240
+msgid "Request timeout"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:107
+#: ../../godmode/setup/setup_integria.php:492
+#: ../../operation/users/user_edit.php:694
+msgid "Test"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:122
+msgid "Remote Management System"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:130
+msgid "Custom field eHorusID created"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:130
+msgid "Error creating custom field"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:134
+msgid "eHorus has his own agent identifiers"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:135
+msgid "To store them, it will be necessary to use an agent custom field"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:136
+msgid ""
+"Possibly the eHorus id will have to be filled in by hand for every agent"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:141
+msgid "The custom field does not exists already"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:155
+msgid "eHorus API"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:237
+#: ../../godmode/setup/setup_integria.php:618
+msgid "Connection timeout"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:238
+#: ../../godmode/setup/setup_integria.php:619
+#: ../../operation/users/user_edit.php:1154
+msgid "Empty user or password"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:239
+#: ../../godmode/setup/setup_integria.php:620
+#: ../../operation/users/user_edit.php:1155
+msgid "User not found"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:240
+#: ../../godmode/setup/setup_integria.php:621
+#: ../../operation/users/user_edit.php:1156
+msgid "Invalid password"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:38
+msgid "WebSocket settings"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:47
+msgid "Bind address"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:57
+msgid "Bind port"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:67
+#: ../../include/functions_config.php:367
+msgid "WebSocket proxy url"
+msgstr ""
+
+#: ../../godmode/setup/os.list.php:90
+msgid "There are no defined operating systems"
+msgstr ""
+
+#: ../../godmode/setup/os.list.php:96
+msgid "Create OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:74
+msgid "Fail creating OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:80 ../../include/functions_api.php:1689
+msgid "Success creating OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:103
+msgid "Success updatng OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:103 ../../include/functions_api.php:1722
+msgid "Error updating OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:123
+msgid "There are agents with this OS."
+msgstr ""
+
+#: ../../godmode/setup/os.php:127
+msgid "Success deleting"
+msgstr ""
+
+#: ../../godmode/setup/os.php:127
+msgid "Error deleting"
+msgstr ""
+
+#: ../../godmode/setup/os.php:135
+msgid "List OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:139
+msgid "Builder OS"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:30
+msgid "GIS Maps connections"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:44
+msgid "Create new map connection"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:71
+msgid "Edit map connection"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:203
+msgid "Connection Name"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:209
+msgid "Number of zoom levels"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:213
+msgid "Default zoom level"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:216
+msgid "Basic configuration"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:221
+msgid "Open Street Maps"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:222
+msgid "Google Maps"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:223
+#: ../../godmode/reporting/visual_console_builder.elements.php:174
+#: ../../include/functions_visual_map_editor.php:1297
+#: ../../include/functions_visual_map.php:4200
+#: ../../operation/visual_console/view.php:215
+msgid "Static Image"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:224
+msgid "WMS Server"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:226
+msgid "Please select the connection type"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:228
+msgid "Map connection type"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:275
+msgid "Tile Server URL"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:278
+msgid "Google Physical"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:279
+msgid "Google Hybrid"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:280
+msgid "Google Satelite"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:282
+msgid "Google Map Type"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:282
+msgid "Google Maps Key"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Image URL"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Corners of the area of the image"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1842
+msgid "Left"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1839
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:296
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:296
+msgid "Bottom"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1841
+msgid "Right"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:284
+#: ../../include/rest-api/models/VisualConsole/Item.php:1840
+msgid "Top"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:284
+msgid "Image Size"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:287
+msgid "WMS Server URL"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:315
+msgid ""
+"Preview to select the center of the map and the default position of an agent "
+"without gis data"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:316
+msgid "Load preview map"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:325
+msgid "Map Center"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:326
+msgid "Default position for agents without GIS data"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:328
+msgid "Change in the map"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:332
+#: ../../operation/agentes/gis_view.php:215
+msgid "Latitude"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:336
+#: ../../operation/agentes/gis_view.php:214
+msgid "Longitude"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:340
+#: ../../operation/agentes/gis_view.php:216
+msgid "Altitude"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:389
+#: ../../godmode/setup/gis_step_2.php:484
+msgid "Center"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:449
+msgid "Refresh preview map"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:228
+msgid "Session timeout (mins)"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:271
+#, php-format
+msgid "Local %s"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:272
+msgid "ldap"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:53
+#: ../../operation/incidents/configure_integriaims_incident.php:48
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:38
+#: ../../operation/incidents/list_integriaims_incidents.php:49
+msgid "Integria IMS API is not reachable"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:200
+#: ../../include/functions_config.php:1506
+msgid "Enable Integria IMS"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:234
+msgid "API Password"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:525
+msgid "Integria API settings"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:536
+msgid "Alert default values"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:546
+msgid "Event custom response default values"
+msgstr ""
+
+#: ../../godmode/setup/links.php:25
+msgid "Link management"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:155
+msgid "Unsucessful update the snmp translation"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:162
+msgid "Unsucessful update the snmp translation."
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:210
+msgid "Unsucessful delete the snmp translation"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:217
+msgid "Unsucessful delete the snmp translation."
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:278
+msgid "Unsucessful save the snmp translation"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:287
+msgid "Unsucessful save the snmp translation."
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:46
+#: ../../include/functions_config.php:1354
+msgid "Data storage path"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:49
+#: ../../include/functions_config.php:1358
+msgid "Daemon interval"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:52
+#: ../../include/functions_config.php:1362
+msgid "Daemon binary path"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:55
+#: ../../include/functions_config.php:1366
+msgid "Nfdump binary path"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:58
+#: ../../include/functions_config.php:1370
+msgid "Nfexpire binary path"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:61
+#: ../../include/functions_config.php:1374
+msgid "Maximum chart resolution"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:66
+#: ../../include/functions_config.php:1382
+msgid "Netflow max lifetime"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:69
+#: ../../include/functions_config.php:1386
+msgid "Name resolution for IP address"
+msgstr ""
+
+#: ../../godmode/setup/setup_netflow.php:70
+#: ../../operation/netflow/nf_live_view.php:451
+msgid "IP address resolution can take a lot of time"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:73
+msgid "Paginated module view"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:100
+msgid "Click to display lateral menus"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:110
+#: ../../include/functions_config.php:1184
+msgid "Service label font size"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:114
+msgid "Space between items in Service maps"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:120
+msgid "Behaviour configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:134
+#: ../../include/functions_config.php:909
+msgid "Style template"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:146
+#: ../../include/functions_config.php:925
+msgid "Status icon set"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:147
+msgid "Colors"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:148
+msgid "Faces"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:149
+msgid "Colors and text"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:208
+msgid "Custom background logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:275
+msgid "Custom logo (menu)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:280
+msgid "Custom logo collapsed (menu)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:389
+#: ../../include/functions_config.php:961
+msgid "Custom documentation logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:409
+#: ../../include/functions_config.php:965
+msgid "Custom support logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:428
+#: ../../include/functions_config.php:969
+#: ../../include/functions_config.php:973
+msgid "Custom networkmap center logo"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:447
+msgid "Custom mobile console icon"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:468
+msgid "Title (header)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:475
+msgid "Subtitle (header)"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:519
+msgid "Disable logo in graphs"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:535
+msgid "Disable helps"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:544
+#: ../../include/functions_config.php:1129
+msgid "Fixed header"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:555
+msgid "Automatically hide submenu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:573
+msgid "Style configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:587
+#: ../../include/functions_config.php:1101
+msgid "GIS Labels"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:602
+#: ../../include/functions_config.php:1109
+msgid "Default icon in GIS"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:608
+msgid "Agent icon group"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:616
+msgid "GIS configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:660
+msgid "Graphs font size"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:691
+#: ../../include/functions_config.php:1077
+#: ../../include/functions_config.php:1081
+msgid "Agent size text"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:692
+#: ../../godmode/setup/setup_visuals.php:697
+msgid "Small:"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:693
+#: ../../godmode/setup/setup_visuals.php:698
+msgid "Normal:"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:696
+#: ../../include/functions_config.php:1085
+msgid "Module size text"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:701
+#: ../../include/functions_config.php:1089
+#: ../../include/functions_config.php:1093
+msgid "Description size text"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:705
+#: ../../include/functions_config.php:1097
+msgid "Item title size text"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:716
+msgid "Show unit along with value in reports"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:726
+msgid "Font and Text configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:752
+#: ../../include/functions_config.php:868
+msgid "Graph color #4"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:756
+#: ../../include/functions_config.php:872
+msgid "Graph color #5"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:760
+#: ../../include/functions_config.php:876
+msgid "Graph color #6"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:764
+#: ../../include/functions_config.php:880
+msgid "Graph color #7"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:768
+#: ../../include/functions_config.php:884
+msgid "Graph color #8"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:772
+#: ../../include/functions_config.php:888
+msgid "Graph color #9"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:776
+#: ../../include/functions_config.php:892
+msgid "Graph color #10"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:789
+msgid "Data precision"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:797
+msgid "Data precision in graphs"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:801
+#: ../../include/functions_config.php:1153
+msgid "Default line thickness for the Custom Graph."
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:838
+msgid "Type of interface charts"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:859
+msgid "Graph TIP view:"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:870
+msgid "Show only average"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:901
+msgid "Charts configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:955
+msgid "Classic view"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:956
+msgid "View of favorites"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:957
+msgid "Type of view of visual consoles"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:961
+msgid "Number of favorite visual consoles to show in the menu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:965
+#: ../../include/functions_config.php:1069
+msgid "Default line thickness for the Visual Console"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:970
+msgid "Visual consoles configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:984
+msgid "Number of favorite services to show in the menu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:988
+msgid "Services configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1126
+msgid "Reports configuration "
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1143
+#: ../../include/functions_config.php:1137
+msgid "Custom graphviz directory"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1155
+#: ../../include/functions_config.php:1141
+msgid "Networkmap max width"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1206
+msgid "Custom values post process"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1227
+#: ../../godmode/setup/setup_visuals.php:1295
+msgid "Delete custom values"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1259
+msgid "Interval values"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1287
+msgid "Module units"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1340
+msgid "Other configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1643
+msgid "Mobile console logo preview"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1678
+msgid "Gis icons preview"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1744
+msgid "Status set preview"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:70
+msgid ""
+"This is an email test sent from Pandora FMS. If you can read this, your "
+"configuration works."
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:71
+msgid "Testing Pandora FMS email"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:109
+#: ../../include/functions_update_manager.php:147
+msgid "Language code"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:120
+#: ../../include/functions_config.php:165
+msgid "Remote config directory"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:134
+#: ../../include/functions_config.php:181
+msgid "Automatic check for updates"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:137
+msgid "Enforce https Information"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:138
+msgid "If SSL is not properly configured you will lose access to "
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:138
+#: ../../godmode/setup/setup_general.php:263
+msgid " Console"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:144
+msgid "Use cert of SSL"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:149
+msgid "Path of SSL Cert."
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:167
+#: ../../include/functions_config.php:209
+msgid "Enable GIS features"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:170
+#: ../../include/functions_config.php:225
+msgid "Enable Netflow"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:178
+#: ../../include/functions_config.php:229
+msgid "Enable Network Traffic Analyzer"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:236
+#: ../../include/functions_config.php:240
+msgid "Sound for Alert fired"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:238
+#: ../../godmode/setup/setup_general.php:243
+#: ../../godmode/setup/setup_general.php:248
+msgid "Play sound"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:241
+#: ../../include/functions_config.php:244
+msgid "Sound for Monitor critical"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:246
+#: ../../include/functions_config.php:248
+msgid "Sound for Monitor warning"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:262
+msgid "Enforce public URL usage information"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:263
+msgid "If public URL is not properly configured you will lose access to "
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:269
+#: ../../include/functions_config.php:279
+msgid "Referer security"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:272
+#: ../../include/functions_config.php:283
+msgid "Event storm protection"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:279
+#: ../../include/functions_config.php:291
+msgid "Server logs directory"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:289
+#: ../../include/functions_config.php:295
+msgid "Log size limit in system logs viewer extension"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:300
+msgid "Full mode"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:301
+msgid "On demand"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:302
+msgid "Expert"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:304
+#: ../../include/functions_config.php:299
+msgid "Tutorial mode"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:316
+#: ../../include/functions_config.php:303
+msgid "Allow create planned downtimes in the past"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:319
+msgid "Limit for bulk operations"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:329
+msgid "Include agents manually disabled"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:335
+msgid "Set alias as name by default in agent creation"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:344
+msgid "General options"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:361
+msgid "From address"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:367
+msgid "SMTP Server"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:370
+msgid "SMTP Port"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:373
+#: ../../include/functions_config.php:347
+msgid "Encryption"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:374
+#: ../../godmode/reporting/create_container.php:262
+#: ../../godmode/reporting/create_container.php:278
+#: ../../include/ajax/events.php:799 ../../include/ajax/graph.ajax.php:139
+#: ../../include/functions_html.php:1161
+#: ../../operation/events/events_list.php:1592
+#: ../../operation/events/events_list.php:1683
+msgid "none"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:384
+msgid "Email test"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:415 ../../general/header.php:784
+msgid "Send"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:417
+msgid "Check mail configuration"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:172
+msgid "Pandora_db running in active database."
+msgstr ""
+
+#: ../../godmode/setup/performance.php:173
+#: ../../godmode/setup/performance.php:229
+msgid "Executed:"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:228
+msgid "Pandora_db running in historical database."
+msgstr ""
+
+#: ../../godmode/setup/performance.php:236
+msgid "not executed"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:262
+#: ../../include/functions_config.php:743
+msgid "Max. days before delete traps"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:282
+#: ../../godmode/setup/performance.php:480
+#: ../../include/functions_config.php:747
+msgid "Max. days before delete string data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:292
+#: ../../include/functions_config.php:755
+msgid "Max. days before delete GIS data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:302
+#: ../../godmode/setup/performance.php:440
+#: ../../include/functions_config.php:759
+msgid "Max. days before purge"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:312
+#: ../../godmode/setup/performance.php:450
+#: ../../include/functions_config.php:767
+msgid "Max. days before compact data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:322
+#: ../../include/functions_config.php:763
+msgid "Max. days before delete unknown modules"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:332
+msgid "Max. days before delete autodisabled agents"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:342
+#: ../../include/functions_config.php:815
+msgid "Retention period of past special days"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:352
+#: ../../include/functions_config.php:819
+msgid "Max. macro data fields"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:366
+#: ../../include/functions_config.php:824
+msgid "Max. days before delete inventory data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:415
+msgid "The tconfig table does not exist in the historical database"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:460
+#: ../../godmode/setup/performance.php:541
+#: ../../include/functions_config.php:779
+msgid "Compact interpolation in hours (1 Fine-20 bad)"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:498
+#: ../../include/functions_config.php:829
+msgid "Max. days before delete old messages"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:511
+#: ../../include/functions_config.php:833
+msgid "Max. days before delete old network matrix data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:531
+msgid "Item limit for realtime reports"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:554
+msgid "Last day"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:556
+msgid "10 days"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:558
+msgid "2 weeks"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:571
+#: ../../include/functions_config.php:787
+msgid "Use realtime statistics"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:579
+#: ../../include/functions_config.php:791
+msgid "Batch statistics period (secs)"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:592
+#: ../../include/functions_config.php:799
+msgid "Max. recommended number of files in attachment directory"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:602
+#: ../../include/functions_config.php:803
+msgid "Delete not init modules"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:605
+msgid "Big Operation Step to purge old data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:615
+#: ../../include/functions_config.php:811
+msgid "Small Operation Step to purge old data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:625
+#: ../../include/functions_config.php:837
+msgid "Graph container - Max. Items"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:648
+msgid "Database maintenance status"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:653
+msgid "Database maintenance options"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:659
+msgid "Historical database maintenance options"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:665
+#: ../../include/functions_network.php:242
+#: ../../include/functions_visual_map.php:2873
+#: ../../include/functions_netflow.php:1819
+#: ../../operation/network/network_report.php:344
+msgid "Others"
+msgstr ""
+
+#: ../../godmode/setup/file_manager.php:67 ../../godmode/servers/plugin.php:238
+#: ../../include/functions_filemanager.php:598
+#: ../../include/functions_filemanager.php:603
+#, php-format
+msgid "Index of %s"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:94
+msgid "Create visual console"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid ""
+"Use [ or ( as first character, for example '[*] Map name', to render this "
+"map name in main menu"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:160
+#: ../../godmode/reporting/visual_console_builder.elements.php:144
+#: ../../include/functions_visual_map_editor.php:55
+#: ../../include/functions_visual_map_editor.php:564
+#: ../../include/lib/Dashboard/Widget.php:508
+msgid "Background"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:170
+msgid "Background image"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:172
+#: ../../include/functions_visual_map_editor.php:325
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:450
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:511
+msgid "Background color"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:202
+msgid "Layout size"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:205
+msgid "Set custom size"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:211
+msgid "Get default image size"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:213
+msgid "Favourite visual console"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:185
+msgid "This file isn't image"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:188
+msgid "This file isn't image."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:194
+#: ../../godmode/reporting/visual_console_builder.php:197
+msgid "File already are exists."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:205
+#: ../../godmode/reporting/visual_console_builder.php:208
+msgid "The file have not image extension."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:220
+#: ../../godmode/reporting/visual_console_builder.php:223
+#: ../../godmode/reporting/visual_console_builder.php:233
+#: ../../godmode/reporting/visual_console_builder.php:239
+msgid "Problems with move file to target."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:270
+msgid "Successfully update."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:286
+msgid "Could not be update."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:303
+msgid "Successfully created."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:319
+msgid "Could not be created."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:366
+msgid "Successfully multiple delete."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:367
+msgid "Unsuccessful multiple delete."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:469
+msgid "Successfully delete."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:778
+#: ../../operation/visual_console/pure_ajax.php:148
+#: ../../operation/visual_console/view.php:161
+#: ../../operation/visual_console/legacy_view.php:151
+msgid "Services wizard"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:389
+msgid "Name or Description"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:409
+#: ../../include/functions_graph.php:1377
+msgid "No items."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:605
+#: ../../godmode/reporting/reporting_builder.list_items.php:609
+#: ../../godmode/reporting/graph_builder.graph_editor.php:270
+#: ../../godmode/reporting/graph_builder.graph_editor.php:274
+msgid "Sort items"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:612
+msgid "Sort selected items from position: "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:615
+msgid "Move before to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:616
+msgid "Move after to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:656
+#: ../../godmode/reporting/reporting_builder.list_items.php:660
+msgid "Delete items"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:663
+msgid "Delete selected items from position: "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:666
+msgid "Delete above to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:667
+msgid "Delete below to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:723
+msgid ""
+"Are you sure to sort the items into the report?\\n. This action change the "
+"sorting of items into data base."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:743
+#: ../../godmode/reporting/graph_builder.graph_editor.php:450
+msgid "Please select any item to order"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:773
+msgid "Are you sure to delete the items into the report?\\n"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:800
+msgid "Please select any item to delete"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:181
+#: ../../godmode/reporting/graph_container.php:84
+msgid "Create container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:190
+msgid "Container stored successfully"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:190
+msgid "There was a problem storing container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:194
+msgid "Update the container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:194
+msgid "Bad update the container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:255
+msgid "Parent container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:313
+#: ../../include/functions.php:2529
+msgid "custom"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:315
+#: ../../godmode/reporting/create_container.php:316
+#: ../../godmode/reporting/create_container.php:317
+#: ../../include/functions.php:2541 ../../include/functions.php:2542
+#: ../../include/ajax/graph.ajax.php:141 ../../include/ajax/graph.ajax.php:142
+#: ../../include/ajax/graph.ajax.php:143
+#, php-format
+msgid "%s hours"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:319
+#: ../../godmode/reporting/create_container.php:320
+#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/graph.ajax.php:146
+#, php-format
+msgid "%s days"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:321
+#: ../../include/functions.php:2544 ../../include/ajax/module.php:169
+#: ../../include/ajax/graph.ajax.php:147
+msgid "1 week"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:323
+#: ../../include/functions.php:2546 ../../include/ajax/module.php:171
+#: ../../include/ajax/graph.ajax.php:149
+msgid "1 month"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:333
+#: ../../godmode/reporting/create_container.php:442
+#: ../../godmode/reporting/create_container.php:496
+msgid ""
+"This is the interval or period of time with which the graph data will be "
+"obtained. For example, a week means data from a week ago from now. "
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:396
+#: ../../godmode/reporting/create_container.php:551
+#: ../../godmode/reporting/graph_builder.main.php:145
+#: ../../include/functions_visual_map_editor.php:498
+msgid "Type of graph"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:405
+#: ../../godmode/reporting/create_container.php:462
+#: ../../godmode/reporting/create_container.php:557
+#: ../../godmode/reporting/graph_builder.main.php:177
+#: ../../operation/agentes/stat_win.php:367
+#: ../../operation/agentes/interface_traffic_graph_win.php:222
+msgid "Show full scale graph (TIP)"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:416
+#: ../../godmode/reporting/create_container.php:469
+#: ../../godmode/reporting/create_container.php:564
+msgid "Add item"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:580
+msgid "There are no defined item container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:589
+msgid "Agent/Module"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:592
+msgid "M.Group"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:270
+#: ../../godmode/reporting/map_builder.php:278
+msgid "Not copied. Error copying data"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:319
+#: ../../godmode/reporting/visual_console_favorite.php:135
+msgid "Group Recursion"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:335
+msgid "Map name"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:337
+msgid "Items"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:413
+#: ../../general/first_task/map_builder.php:23
+msgid "There are no visual console defined yet."
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:257
+#: ../../operation/reporting/graph_viewer.php:160
+msgid "Graph editor"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:261
+#: ../../operation/reporting/graph_viewer.php:168
+msgid "View graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:273
+msgid "Graph builder"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:307
+msgid "Graph stored successfully"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:307
+msgid "There was a problem storing Graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:311
+msgid "There was a problem adding Module"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:315
+msgid "Update the graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:315
+msgid "Bad update the graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:319
+msgid "Graph deleted successfully"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:319
+msgid "There was a problem deleting Graph"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:77
+msgid "Graphs containers"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:172
+#: ../../godmode/reporting/reporting_builder.php:665
+msgid "Free text for search: "
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:173
+#: ../../godmode/reporting/reporting_builder.php:667
+msgid "Search by report name or description, list matches."
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:185
+#: ../../godmode/reporting/reporting_builder.php:693
+msgid "Show Option"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:263
+#: ../../include/functions_container.php:147
+#: ../../operation/search_graphs.php:29
+#: ../../operation/reporting/graph_viewer.php:376
+msgid "Graph name"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:265
+#: ../../include/functions_container.php:149
+msgid "Number of Graphs"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:334
+msgid "Create graph"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_favorite.php:167
+msgid "No favourite consoles defined"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:277
+msgid "Sort selected items"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:280
+msgid "before to"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:281
+msgid "after to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:808
+msgid "Not valid"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:816
+msgid ""
+"This type of report brings a lot of data loading, it is recommended to use "
+"it for scheduled reports and not for real-time view."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:918
+msgid "Local metaconsole"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:966
+msgid "Log number"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:968
+msgid ""
+"Warning: this parameter limits the contents of the logs and affects the "
+"performance."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:984
+msgid ""
+"This is the range, or period of time over which the report renders the "
+"information for this report type. For example, a week means data from a week "
+"ago from now. "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1028
+#: ../../operation/netflow/nf_live_view.php:295
+#: ../../operation/incidents/integriaims_export_csv.php:92
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:374
+#: ../../operation/incidents/list_integriaims_incidents.php:155
+msgid "Resolution"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1524
+msgid "Show modules"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1776
+msgid "Target server"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2064
+msgid "This option may cause performance issues."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2098
+msgid "Greater or equal (>=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2099
+msgid "Less or equal (<=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2100
+msgid "Less (<)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2101
+msgid "Greater (>)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2102
+msgid "Equal (=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2103
+msgid "Not equal (!=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2220
+msgid ""
+"Show a summary chart with max, min and average number of total modules at "
+"the end of the report and Checks."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2414
+msgid "Include extended events"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2478
+msgid ""
+"With the token enabled the query will affect the Historical Database, which "
+"may mean a small drop in performance."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2667
+msgid ""
+"Lapses of time in which the period is divided to make more precise "
+"calculations\n"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2864
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3290
+msgid "Agent Failover"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2869
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3293
+msgid "Module Failover"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2909
+msgid "Please save the SLA for start to add items in this list."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3266
+msgid "rate"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3314
+msgid ""
+"Please be careful, when the module have diferent intervals in their life, "
+"the summatory maybe get bad result."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3334
+msgid "Please save the report to start adding items into the list."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3597
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3601
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3605
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3609
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3613
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3617
+msgid "Item Editor Information"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3598
+msgid "Please select a name."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3602
+msgid "Please select an agent."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3610
+msgid "Please insert a SQL query."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3614
+msgid "Please insert a URL."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3618
+msgid "Please checked a custom interval option."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:106
+msgid "Width x Height
Max value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:182 +msgid "Percentile Bar" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:190 +msgid "Percentile Bubble" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:198 +#: ../../mobile/operation/events.php:549 +#: ../../include/functions_visual_map_editor.php:1299 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:542 +#: ../../operation/visual_console/view.php:225 +msgid "Module Graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:206 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:1302 +#: ../../include/functions_visual_map.php:4180 +#: ../../operation/visual_console/view.php:240 +msgid "Event history graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:214 +#: ../../include/functions_visual_map_editor.php:1303 +#: ../../include/functions_visual_map.php:4205 +#: ../../include/rest-api/models/VisualConsole/Item.php:2013 +#: ../../operation/visual_console/view.php:245 +msgid "Simple Value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:222 +msgid "Simple Value (Process Max)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:230 +msgid "Simple Value (Process Min)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:238 +msgid "Simple Value (Process Avg)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:262 +#: ../../include/functions_visual_map_editor.php:71 +#: ../../include/functions_visual_map_editor.php:1308 +#: ../../include/functions_visual_map.php:4160 +#: ../../operation/visual_console/view.php:270 +msgid "Box" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:286 +#: ../../include/functions_visual_map_editor.php:73 +#: ../../include/functions_visual_map_editor.php:1310 +#: ../../include/functions_visual_map.php:4220 +#: ../../include/rest-api/models/VisualConsole/Item.php:2025 +#: ../../operation/visual_console/view.php:280 +msgid "Color cloud" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:312 +#: ../../godmode/reporting/visual_console_builder.elements.php:758 +msgid "Edit label" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:130 +msgid "Only the group can view the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:131 +msgid "The next group can edit the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:132 +msgid "Only the user and admin user can edit the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:134 +msgid "Write Access" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:134 +msgid "" +"For example, you want a report that the people of \"All\" groups can see but " +"you want to edit only for you or your group." +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:171 +msgid "Non interactive report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:185 +msgid "" +"Your report has been planned, and the system will email you a PDF with the " +"report as soon as its finished" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:186 +msgid "An error has ocurred" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:495 +#: ../../godmode/reporting/reporting_builder.php:3001 +#: ../../godmode/reporting/reporting_builder.php:3072 +#: ../../godmode/reporting/reporting_builder.php:3110 +msgid "Reports list" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:508 +#: ../../godmode/reporting/reporting_builder.php:540 +#: ../../godmode/reporting/reporting_builder.php:3012 +#: ../../operation/menu.php:334 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:925 +msgid "This report exceeds the item limit for realtime operations" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:1136 +msgid "Create report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:3097 +#: ../../operation/reporting/reporting_viewer.php:109 +msgid "View report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:3113 +msgid "Create Custom Report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:3165 +msgid "Unsuccessful action

" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 +msgid "Static Graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1298 +#: ../../operation/visual_console/view.php:220 +msgid "Percentile Item" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:129 +#: ../../mobile/operation/home.php:98 +#: ../../include/functions_visual_map_editor.php:363 +#: ../../include/functions_visual_map.php:4165 +#: ../../include/rest-api/models/VisualConsole/Item.php:1981 +msgid "Module graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 +msgid "Simple value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:248 +#: ../../include/functions_config.php:933 +msgid "Font size" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:279 +#: ../../include/functions_visual_map_editor.php:547 +msgid "Min value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:280 +#: ../../godmode/reporting/visual_console_builder.wizard.php:298 +#: ../../include/functions_visual_map_editor.php:548 +#: ../../include/functions_visual_map_editor.php:614 +msgid "Max value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:281 +#: ../../include/functions_visual_map_editor.php:549 +msgid "Avg value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:293 +msgid "Width (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:315 +#: ../../include/functions_visual_map_editor.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:453 +msgid "Bubble" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:327 +#: ../../include/functions_visual_map_editor.php:643 +#: ../../include/functions_visual_map_editor.php:661 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:503 +msgid "Value to show" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:329 +#: ../../include/functions_visual_map_editor.php:624 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:498 +msgid "Percent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:398 +msgid "One item per agent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/reporting/visual_console_builder.wizard.php:785 +msgid "Agent - Module" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +msgid "Enable link agent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:496 +msgid "Set Parent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:499 +msgid "Item created in the visualmap" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:500 +msgid "Use the agents relationship (from selected agents)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:509 +msgid "Item in the map" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:530 +#: ../../godmode/reporting/visual_console_builder.wizard.php:534 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:706 +msgid "Please select any module or modules." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:162 +msgid "Min allowed size is 1024x768" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +#: ../../godmode/reporting/visual_console_builder.editor.php:168 +#: ../../godmode/reporting/visual_console_builder.editor.php:170 +#: ../../operation/snmpconsole/snmp_browser.php:208 +msgid "Action in progress" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +msgid "Loading in progress" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:168 +msgid "Saving in progress" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:170 +msgid "Deletion in progress" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:155 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:265 +#: ../../operation/reporting/graph_viewer.php:269 +msgid "Bullet chart" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:156 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:266 +#: ../../operation/reporting/graph_viewer.php:270 +msgid "Gauge" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:159 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:269 +#: ../../operation/reporting/graph_viewer.php:273 +msgid "Pie" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:167 +#: ../../operation/reporting/graph_viewer.php:278 +msgid "Equalize maximum thresholds" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:170 +msgid "Add summatory series" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:172 +msgid "Add average series" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:174 +msgid "Modules and series" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:63 +msgid "Edit event responses" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:105 +msgid "For Command type Modal Window mode is enforced" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:107 +msgid "Modal window" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:108 +msgid "New window" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:180 +msgid "Command timeout (s)" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:221 +msgid "Update Filter" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:223 +msgid "Create Filter" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:233 +#: ../../include/ajax/custom_fields.php:561 +#: ../../include/ajax/custom_fields.php:608 +#: ../../include/ajax/custom_fields.php:652 ../../include/ajax/events.php:556 +#: ../../operation/events/events_list.php:421 +msgid "Filter name" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:236 +msgid "Save in group" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:236 +msgid "" +"This group will be use to restrict the visibility of this filter with ACLs" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:380 +msgid "Choose between the users who have validated an event. " +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:403 +#: ../../operation/events/events_list.php:970 +#: ../../operation/events/events.php:936 ../../operation/events/events.php:1440 +msgid "Group events" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:568 +#: ../../operation/events/events_list.php:826 +#: ../../operation/events/events.php:1104 +msgid "Filter alert events" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:569 +#: ../../operation/events/events_list.php:827 +#: ../../operation/events/events.php:1105 +msgid "Only alert events" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:596 +#: ../../include/functions_events.php:6100 +#: ../../operation/events/events_list.php:987 +#: ../../operation/events/events.php:1012 +#: ../../operation/events/events.build_table.php:303 +msgid "Extra ID" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:603 +msgid "Id souce event" +msgstr "" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "" + +#: ../../godmode/events/event_responses.list.php:73 +msgid "Create response" +msgstr "" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "" + +#: ../../godmode/events/custom_events.php:94 +#: ../../include/functions_events.php:226 +msgid "Event Id" +msgstr "" + +#: ../../godmode/events/custom_events.php:95 +#: ../../mobile/operation/events.php:124 ../../include/functions_events.php:229 +#: ../../include/functions_events.php:6019 +#: ../../operation/events/events.build_table.php:172 +msgid "Event Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:96 +#: ../../include/functions_events.php:232 +#: ../../operation/events/events.php:1614 +msgid "Agent ID" +msgstr "" + +#: ../../godmode/events/custom_events.php:97 +msgid "Agent Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:102 +#: ../../include/functions_events.php:253 +#: ../../operation/events/events.build_table.php:232 +msgid "Event Type" +msgstr "" + +#: ../../godmode/events/custom_events.php:103 +#: ../../include/class/ModuleTemplates.class.php:1112 +#: ../../include/class/AgentWizard.class.php:439 +#: ../../include/functions_events.php:256 +#: ../../operation/events/events.build_table.php:243 +msgid "Module Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:109 +#: ../../include/functions_events.php:274 +msgid "Extra Id" +msgstr "" + +#: ../../godmode/events/custom_events.php:113 +#: ../../include/functions_events.php:286 +msgid "Server Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:116 +#: ../../include/functions_events.php:301 +msgid "Severity mini" +msgstr "" + +#: ../../godmode/events/event_responses.php:50 +msgid "Response added succesfully" +msgstr "" + +#: ../../godmode/events/event_responses.php:52 +msgid "Response cannot be added" +msgstr "" + +#: ../../godmode/events/event_responses.php:75 +msgid "Response updated succesfully" +msgstr "" + +#: ../../godmode/events/event_responses.php:77 +msgid "Response cannot be updated" +msgstr "" + +#: ../../godmode/events/event_responses.php:87 +msgid "Response deleted succesfully" +msgstr "" + +#: ../../godmode/events/event_responses.php:89 +msgid "Response cannot be deleted" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:342 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:385 +msgid "" +"This network scan task has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:427 +msgid "You must provide a valid network." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:477 +#: ../../godmode/wizards/HostDevices.class.php:589 +#: ../../include/class/CustomNetScan.class.php:221 +msgid "Failed to find network scan task." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:694 +#, php-format +msgid "\"%s\" features" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:724 +#: ../../include/class/CustomNetScan.class.php:402 +msgid "Internal error, please re-run this wizard." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:809 +#: ../../include/class/CustomNetScan.class.php:543 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:864 +msgid "Use CSV file definition" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:865 +msgid "Define targets using csv o network definition." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:883 +msgid "Networks (csv)" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:884 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK " +"format. For instance: 192.168.1.1/32" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:896 +msgid "Networks (current)" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:897 +msgid "Plese upload a new file to overwrite this content." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:913 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1044 +msgid "Filter by opened ports" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1046 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) " +"is open." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1059 +msgid "Auto discover known hardware" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1061 +msgid "" +"Targets will be monitorized based on its Private Enterprise Number. " +"Requires SNMP." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1076 +msgid "Module Host Alive will be added to discovered agents by default." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1124 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, " +"'review results' is mandatory." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1132 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:708 +msgid "Review results" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1134 +msgid "Targets must be validated by user before create agents." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1160 +msgid "Apply autoconfiguration rules" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1162 +msgid "" +"System is able to auto configure detected host & devices by applying your " +"defined configuration rules." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:238 +msgid "Task successfully deleted" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:342 +msgid "Console Task successfully deleted" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:374 +#: ../../operation/servers/recon_view.php:33 +msgid "Discovery Server is disabled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:438 +msgid "Task type" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:506 +msgid "This task has not been completely defined, please edit it" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:544 +msgid "Cancelled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:545 +msgid "Server has been restarted while executing this task, please retry." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:552 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../operation/servers/recon_view.php:140 +msgid "Done" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:556 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:571 +msgid "Not started" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:566 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1034 +msgid "Review" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:576 +msgid "Searching" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:587 +msgid "Discovery Cloud Azure Compute" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:589 +msgid "Cloud.Azure.Compute" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 +msgid "Discovery Cloud AWS EC2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:599 +msgid "Cloud.AWS.EC2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:607 +msgid "Discovery Cloud RDS" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:609 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:617 +msgid "Discovery Applications MySQL" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:619 +msgid "Discovery.App.MySQL" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:627 +msgid "Discovery Applications Oracle" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:629 +msgid "Discovery.App.Oracle" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:640 +msgid "Discovery.Agent.Deployment" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:650 +msgid "Discovery NetScan" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:652 +msgid "Discovery.NetScan" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:697 +msgid "Not executed yet" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:717 +msgid "View summary" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 +msgid "View map" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:753 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:773 +msgid "Edit task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:760 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:780 +msgid "Delete task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +msgid "has no discovery tasks assigned" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:806 +msgid "Server Tasks" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:942 +msgid "Overall Progress" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:961 +msgid "Scanning network" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 +msgid "Checking" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:969 +msgid "Finding AFT connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:973 +msgid "Finding traceroute connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:977 +msgid "Finding gateway connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:981 +msgid "Searching for devices..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:985 +msgid "Analyzing application..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:989 +msgid "Executing custom queries..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:993 +msgid "Testing modules..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 +msgid "Processing results..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 +msgid "Processing..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1111 +msgid "Host&devices total" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1116 +msgid "Agents monitored" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1121 +msgid "Agents pending" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1127 +msgid "Hosts discovered" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1143 +msgid "Responding SNMP" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1148 +msgid "Responding WMI" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1155 +#: ../../include/functions_reporting_html.php:3827 +#: ../../include/functions_reporting_html.php:3964 +#: ../../include/functions_netflow.php:1028 +#: ../../include/lib/Dashboard/Widgets/tactical.php:286 +msgid "Summary" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1190 +msgid "This task has never executed" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1198 +msgid "Task queued, please wait." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1249 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1388 +msgid "Invalid task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1345 +msgid "Please select devices to be monitored" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1348 +msgid "select all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1351 +msgid "deselect all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1354 +msgid "expand all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1357 +msgid "collapse all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1371 +msgid "No devices found in temporary resources, please re-launch." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1438 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1462 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1481 +msgid "Removed" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1518 +msgid "No changes. Re-Scheduled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1520 +msgid "Scheduled for creation" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:105 +msgid "Exec server enabled" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:164 +msgid "Manage Discovery tasks" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:176 +msgid "Reset module status and fired alert counts" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:184 +msgid "Claim back SNMP modules" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:335 ../../godmode/servers/plugin.php:999 +msgid "Standard" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:75 +msgid "Exec Server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:83 +msgid "Leave blank to use SSH default port (22)" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:88 +msgid "Check Exec Server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:104 +msgid "Remote Configuration" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:108 +#, php-format +msgid "%s servers" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:159 +msgid "Server updated successfully" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:161 +msgid "There was a problem updating the server" +msgstr "" + +#: ../../godmode/servers/plugin.php:56 +msgid "Network Components" +msgstr "" + +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:582 +msgid "To manage plugin you must activate centralized management" +msgstr "" + +#: ../../godmode/servers/plugin.php:291 +msgid "Plugin update" +msgstr "" + +#: ../../godmode/servers/plugin.php:303 ../../godmode/servers/plugin.php:630 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" + +#: ../../godmode/servers/plugin.php:334 +msgid "Plugin type" +msgstr "" + +#: ../../godmode/servers/plugin.php:336 ../../godmode/servers/plugin.php:1001 +msgid "Nagios" +msgstr "" + +#: ../../godmode/servers/plugin.php:341 +msgid "Max. timeout" +msgstr "" + +#: ../../godmode/servers/plugin.php:341 +msgid "" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" + +#: ../../godmode/servers/plugin.php:341 +msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" + +#: ../../godmode/servers/plugin.php:394 +msgid "Plugin command" +msgstr "" + +#: ../../godmode/servers/plugin.php:394 +msgid "" +"Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" + +#: ../../godmode/servers/plugin.php:406 +msgid "Plug-in parameters" +msgstr "" + +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:671 +msgid "Hide value" +msgstr "" + +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:673 +msgid "This field will show up as dots like a password" +msgstr "" + +#: ../../godmode/servers/plugin.php:547 ../../godmode/servers/plugin.php:552 +msgid "Parameters macros" +msgstr "" + +#: ../../godmode/servers/plugin.php:589 +msgid "" +"The previous configuration of plugins has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" + +#: ../../godmode/servers/plugin.php:590 +msgid "" +"These definitions will not be operational until you manually \n" +" \t\t\tcopy the files from the nodes to the atachment/plugin/ directory " +"of the meta console." +msgstr "" + +#: ../../godmode/servers/plugin.php:617 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "" + +#: ../../godmode/servers/plugin.php:639 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "" + +#: ../../godmode/servers/plugin.php:705 +msgid "Problem updating plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:707 +msgid "Plugin updated successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:765 +msgid "Problem creating plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:767 +msgid "Plugin created successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:779 ../../godmode/servers/plugin.php:813 +msgid "Problem deleting plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:781 ../../godmode/servers/plugin.php:815 +msgid "Plugin deleted successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:826 +msgid "Problem deploying plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:828 +msgid "Plugin deployed successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:1031 +msgid "All the modules that are using this plugin will be deleted" +msgstr "" + +#: ../../godmode/servers/plugin.php:1044 +msgid "There are no plugins in the system" +msgstr "" + +#: ../../godmode/servers/plugin.php:1058 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "" + +#: ../../godmode/servers/plugin.php:1164 ../../godmode/servers/plugin.php:1180 +msgid "Some modules or components are using the plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:1165 +msgid "" +"The modules or components should be updated manually or using the bulk " +"operations for plugins after this change" +msgstr "" + +#: ../../godmode/servers/plugin.php:1167 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ../../godmode/servers/plugin.php:1181 +msgid "Are you sure you want to unlock this item?" +msgstr "" + +#: ../../godmode/servers/plugin.php:1201 +msgid "" +"The plugin command cannot be updated because some modules or components are " +"using the plugin." +msgstr "" + +#: ../../godmode/servers/plugin.php:1207 +msgid "" +"The plugin macros cannot be updated because some modules or components are " +"using the plugin" +msgstr "" + +#: ../../godmode/servers/discovery.php:182 +msgid "You must create a task first" +msgstr "" + +#: ../../godmode/tag/tag.php:93 +msgid "Number of modules" +msgstr "" + +#: ../../godmode/tag/tag.php:95 +msgid "Number of policy modules" +msgstr "" + +#: ../../godmode/tag/tag.php:113 ../../godmode/tag/edit_tag.php:51 +#: ../../godmode/tag/edit_tag.php:62 +msgid "List tags" +msgstr "" + +#: ../../godmode/tag/tag.php:125 ../../godmode/tag/edit_tag.php:68 +msgid "Tags configuration" +msgstr "" + +#: ../../godmode/tag/tag.php:141 +msgid "Error deleting tag" +msgstr "" + +#: ../../godmode/tag/tag.php:144 +msgid "Successfully deleted tag" +msgstr "" + +#: ../../godmode/tag/tag.php:224 +msgid "Tag name" +msgstr "" + +#: ../../godmode/tag/tag.php:226 +msgid "Detail information" +msgstr "" + +#: ../../godmode/tag/tag.php:227 +msgid "Number of modules affected" +msgstr "" + +#: ../../godmode/tag/tag.php:229 ../../godmode/tag/edit_tag.php:208 +msgid "Phone" +msgstr "" + +#: ../../godmode/tag/tag.php:249 +msgid "Tag details" +msgstr "" + +#: ../../godmode/tag/tag.php:277 +#, php-format +msgid "Emails for the tag: %s" +msgstr "" + +#: ../../godmode/tag/tag.php:287 +#, php-format +msgid "Phones for the tag: %s" +msgstr "" + +#: ../../godmode/tag/tag.php:303 +msgid "No tags defined" +msgstr "" + +#: ../../godmode/tag/tag.php:317 +msgid "Create tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:91 +msgid "Error updating tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:94 +msgid "Successfully updated tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:120 +msgid "Error creating tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:125 +msgid "Successfully created tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:158 +msgid "Update Tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:162 +msgid "Create Tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:186 +msgid "Hyperlink to help information that has to exist previously." +msgstr "" + +#: ../../godmode/tag/edit_tag.php:198 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "" + +#: ../../godmode/tag/edit_tag.php:210 +msgid "Associated phone number to use later in alerts associated to Tags." +msgstr "" + +#: ../../godmode/category/category.php:41 +#: ../../godmode/category/category.php:48 +#: ../../godmode/category/edit_category.php:40 +#: ../../godmode/category/edit_category.php:47 +msgid "List categories" +msgstr "" + +#: ../../godmode/category/category.php:57 +#: ../../godmode/category/category.php:59 +#: ../../godmode/category/edit_category.php:56 +#: ../../godmode/category/edit_category.php:58 +msgid "Categories configuration" +msgstr "" + +#: ../../godmode/category/category.php:69 +msgid "Error deleting category" +msgstr "" + +#: ../../godmode/category/category.php:72 +msgid "Successfully deleted category" +msgstr "" + +#: ../../godmode/category/category.php:111 +msgid "Category name" +msgstr "" + +#: ../../godmode/category/category.php:144 +msgid "No categories found" +msgstr "" + +#: ../../godmode/category/category.php:156 +#: ../../godmode/category/edit_category.php:142 +msgid "Create category" +msgstr "" + +#: ../../godmode/category/edit_category.php:56 +msgid "Editor" +msgstr "" + +#: ../../godmode/category/edit_category.php:75 +msgid "Error updating category" +msgstr "" + +#: ../../godmode/category/edit_category.php:78 +msgid "Successfully updated category" +msgstr "" + +#: ../../godmode/category/edit_category.php:97 +msgid "Error creating category" +msgstr "" + +#: ../../godmode/category/edit_category.php:102 +msgid "Successfully created category" +msgstr "" + +#: ../../godmode/category/edit_category.php:134 +msgid "Update category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:129 +msgid "View all categories" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:140 +msgid "More details" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:142 +msgid "View in Module Library" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:143 +msgid "No module found" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:146 +msgid "Error loading Module Library" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "Error loading category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:148 +msgid "Error loading categories" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:149 +msgid "There is no such category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:150 +msgid "Error loading results" +msgstr "" + +#: ../../mobile/include/functions_web.php:81 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "" + +#: ../../mobile/include/system.class.php:156 msgid "" "Access to this page is restricted to authorized users only, please contact " -"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" +"your system administrator if you should need help." msgstr "" -#: ../../general/login_required.php:69 -#: ../../general/login_identification_wizard.php:180 -msgid "Pandora FMS instance identification wizard" -msgstr "" - -#: ../../general/login_required.php:72 +#: ../../mobile/include/system.class.php:156 +#, php-format msgid "" -"Please fill the following information in order to configure your Pandora FMS " -"instance successfully" +"Please remember that any attempts to access this page will be recorded on " +"the %s System Database." msgstr "" -#: ../../general/login_required.php:86 ../../include/functions_config.php:129 -#: ../../godmode/setup/setup_general.php:52 -msgid "Language code for Pandora" +#: ../../mobile/include/ui.class.php:105 +#, php-format +msgid "%s mobile" msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Africa" +#: ../../mobile/include/ui.class.php:202 +#, php-format +msgid "%s : Mobile" msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "America" +#: ../../mobile/include/ui.class.php:223 ../../mobile/operation/home.php:162 +msgid "Home" msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Antarctica" +#: ../../mobile/include/ui.class.php:306 +#, php-format +msgid "%s %s - Build %s" msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Arctic" +#: ../../mobile/include/ui.class.php:752 +msgid "Not found header." msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Asia" +#: ../../mobile/include/ui.class.php:754 +msgid "Not found content." msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Atlantic" +#: ../../mobile/include/ui.class.php:756 +msgid "Not found footer." msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Australia" +#: ../../mobile/include/ui.class.php:758 +msgid "Incorrect form." msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Europe" +#: ../../mobile/include/ui.class.php:760 +msgid "Incorrect grid." msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Indian" +#: ../../mobile/include/ui.class.php:762 +msgid "Incorrect collapsible." msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "Pacific" +#: ../../mobile/include/user.class.php:173 +#: ../../mobile/include/user.class.php:188 +#: ../../mobile/include/user.class.php:195 +msgid "Double authentication failed" msgstr "" -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -msgid "UTC" +#: ../../mobile/include/user.class.php:174 +msgid "Secret code not found" msgstr "" -#: ../../general/login_required.php:111 ../../include/functions_config.php:166 -#: ../../godmode/setup/setup_general.php:135 -msgid "Timezone setup" +#: ../../mobile/include/user.class.php:174 +msgid "Please contact the administrator to reset your double authentication" msgstr "" -#: ../../general/login_required.php:112 -#: ../../godmode/setup/setup_general.php:136 +#: ../../mobile/include/user.class.php:196 +msgid "There was an error checking the code" +msgstr "" + +#: ../../mobile/include/user.class.php:232 +msgid "Login Failed" +msgstr "" + +#: ../../mobile/include/user.class.php:233 +msgid "User not found in database or incorrect password." +msgstr "" + +#: ../../mobile/include/user.class.php:240 +msgid "Login out" +msgstr "" + +#: ../../mobile/include/user.class.php:271 +msgid "user" +msgstr "" + +#: ../../mobile/include/user.class.php:278 +msgid "password" +msgstr "" + +#: ../../mobile/include/user.class.php:344 +#: ../../mobile/include/user.class.php:345 +msgid "Authenticator code" +msgstr "" + +#: ../../mobile/include/user.class.php:349 ../../general/login_page.php:286 +msgid "Check code" +msgstr "" + +#: ../../mobile/operation/agents.php:203 +#, php-format +msgid "Filter Agents by %s" +msgstr "" + +#: ../../mobile/operation/agents.php:245 ../../mobile/operation/modules.php:300 +#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/events.php:717 +msgid "Apply Filter" +msgstr "" + +#: ../../mobile/operation/agents.php:444 +msgid "No agents" +msgstr "" + +#: ../../mobile/operation/agents.php:539 ../../mobile/operation/modules.php:855 +#: ../../mobile/operation/alerts.php:360 ../../mobile/operation/events.php:1148 +msgid "(Default)" +msgstr "" + +#: ../../mobile/operation/agents.php:545 ../../mobile/operation/modules.php:861 +#: ../../mobile/operation/alerts.php:373 ../../mobile/operation/events.php:1181 +#, php-format +msgid "Group: %s" +msgstr "" + +#: ../../mobile/operation/agents.php:552 ../../mobile/operation/modules.php:883 +#: ../../mobile/operation/alerts.php:380 ../../mobile/operation/events.php:1201 +#, php-format +msgid "Status: %s" +msgstr "" + +#: ../../mobile/operation/agents.php:559 ../../mobile/operation/modules.php:890 +#: ../../mobile/operation/alerts.php:387 +#, php-format +msgid "Free Search: %s" +msgstr "" + +#: ../../mobile/operation/modules.php:225 +#, php-format +msgid "Filter Modules by %s" +msgstr "" + +#: ../../mobile/operation/modules.php:632 +msgid "Interval." +msgstr "" + +#: ../../mobile/operation/modules.php:634 +msgid "Last update." +msgstr "" + +#: ../../mobile/operation/modules.php:876 +#, php-format +msgid "Module group: %s" +msgstr "" + +#: ../../mobile/operation/modules.php:898 +#, php-format +msgid "Tag: %s" +msgstr "" + +#: ../../mobile/operation/home.php:84 ../../mobile/operation/visualmaps.php:109 +msgid "Visual consoles" +msgstr "" + +#: ../../mobile/operation/home.php:104 +msgid "Visualmap" +msgstr "" + +#: ../../mobile/operation/home.php:169 ../../operation/search_results.php:66 +msgid "Global search" +msgstr "" + +#: ../../mobile/operation/agent.php:167 +msgid "No agent found" +msgstr "" + +#: ../../mobile/operation/agent.php:260 +msgid "Modules by status" +msgstr "" + +#: ../../mobile/operation/agent.php:275 +#: ../../include/functions_treeview.php:808 +msgid "Events (24h)" +msgstr "" + +#: ../../mobile/operation/agent.php:348 +#, php-format +msgid "Last %s Events" +msgstr "" + +#: ../../mobile/operation/alerts.php:46 +#: ../../operation/agentes/alerts_status.functions.php:77 +msgid "All (Enabled)" +msgstr "" + +#: ../../mobile/operation/alerts.php:49 +#: ../../operation/agentes/alerts_status.functions.php:80 +#: ../../operation/snmpconsole/snmp_view.php:207 +#: ../../operation/snmpconsole/snmp_view.php:1182 +msgid "Not fired" +msgstr "" + +#: ../../mobile/operation/alerts.php:189 +#, php-format +msgid "Filter Alerts by %s" +msgstr "" + +#: ../../mobile/operation/alerts.php:327 +msgid "Last Fired" +msgstr "" + +#: ../../mobile/operation/alerts.php:338 +msgid "No alerts" +msgstr "" + +#: ../../mobile/operation/alerts.php:366 +#, php-format +msgid "Standby: %s" +msgstr "" + +#: ../../mobile/operation/visualmaps.php:169 +msgid "No maps defined" +msgstr "" + +#: ../../mobile/operation/module_graph.php:362 +#: ../../mobile/operation/module_graph.php:374 +#, php-format +msgid "%s: %s" +msgstr "" + +#: ../../mobile/operation/module_graph.php:406 +#, php-format +msgid "Options for %s : %s" +msgstr "" + +#: ../../mobile/operation/module_graph.php:413 +msgid "Show Alerts" +msgstr "" + +#: ../../mobile/operation/module_graph.php:421 +msgid "Show Events" +msgstr "" + +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:353 +msgid "Time compare (Separated)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:359 +msgid "Show unknown graph" +msgstr "" + +#: ../../mobile/operation/module_graph.php:450 +msgid "Time range (hours)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:462 +#: ../../operation/agentes/stat_win.php:257 +#: ../../operation/agentes/interface_traffic_graph_win.php:197 +#: ../../operation/agentes/graphs.php:207 +#: ../../operation/agentes/exportdata.php:317 +msgid "Begin date" +msgstr "" + +#: ../../mobile/operation/module_graph.php:469 +msgid "Update graph" +msgstr "" + +#: ../../mobile/operation/module_graph.php:479 +msgid "Error get the graph" +msgstr "" + +#: ../../mobile/operation/events.php:267 +#: ../../include/functions_reporting_html.php:993 +#: ../../include/functions_reporting_html.php:1216 +#: ../../include/functions_reporting_html.php:1977 +#: ../../include/ajax/events.php:1475 +#: ../../include/functions_reporting.php:8437 +#: ../../include/functions_events.php:2442 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:6173 +#: ../../operation/events/events.php:1932 +#: ../../operation/events/events.build_table.php:413 +msgid "New event" +msgstr "" + +#: ../../mobile/operation/events.php:272 +#: ../../include/functions_reporting_html.php:998 +#: ../../include/functions_reporting_html.php:1221 +#: ../../include/functions_reporting_html.php:1982 +#: ../../include/ajax/events.php:1480 +#: ../../include/functions_reporting.php:8442 +#: ../../include/functions_events.php:2447 +#: ../../include/functions_events.php:4384 +#: ../../include/functions_events.php:6178 +#: ../../operation/events/events.php:1936 +#: ../../operation/events/events.build_table.php:418 +msgid "Event validated" +msgstr "" + +#: ../../mobile/operation/events.php:277 +#: ../../include/functions_reporting_html.php:1003 +#: ../../include/functions_reporting_html.php:1226 +#: ../../include/functions_reporting_html.php:1987 +#: ../../include/ajax/events.php:1485 +#: ../../include/functions_reporting.php:8447 +#: ../../include/functions_events.php:2452 +#: ../../include/functions_events.php:4390 +#: ../../include/functions_events.php:6183 +#: ../../operation/events/events.php:1940 +#: ../../operation/events/events.build_table.php:423 +msgid "Event in process" +msgstr "" + +#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 +#: ../../mobile/operation/events.php:642 ../../mobile/operation/events.php:643 +msgid "Preset Filters" +msgstr "" + +#: ../../mobile/operation/events.php:485 +msgid "ERROR: Event detail" +msgstr "" + +#: ../../mobile/operation/events.php:486 +msgid "Error connecting to DB." +msgstr "" + +#: ../../mobile/operation/events.php:501 +msgid "Event detail" +msgstr "" + +#: ../../mobile/operation/events.php:512 +#: ../../include/functions_events.php:4498 +#: ../../include/functions_events.php:6013 +#: ../../operation/events/events.build_table.php:162 +msgid "Event ID" +msgstr "" + +#: ../../mobile/operation/events.php:540 +#: ../../include/functions_events.php:4587 +msgid "Acknowledged by" +msgstr "" + +#: ../../mobile/operation/events.php:584 +msgid "Sucessful validate" +msgstr "" + +#: ../../mobile/operation/events.php:586 +msgid "Fail validate" +msgstr "" + +#: ../../mobile/operation/events.php:624 +#, php-format +msgid "Filter Events by %s" +msgstr "" + +#: ../../mobile/operation/events.php:858 +#: ../../include/functions_reporting_html.php:4893 +#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting.php:1834 +#: ../../include/functions_reporting.php:2124 +#: ../../include/functions_events.php:2366 +#: ../../include/functions_events.php:2369 +#: ../../operation/events/events.build_table.php:134 +#: ../../operation/events/events.build_table.php:1142 +msgid "No events" +msgstr "" + +#: ../../mobile/operation/events.php:1153 +#, php-format +msgid "Filter: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1165 +#, php-format +msgid "Severity: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1194 +#, php-format +msgid "Type: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1208 +#, php-format +msgid "Free search: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1215 +#, php-format +msgid "Hours: %s" +msgstr "" + +#: ../../mobile/operation/tactical.php:216 +msgid "Last activity" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:62 +msgid "" +"To use 'label'field, you should write\n" +"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " +"printed at the end." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:69 +#: ../../include/functions_visual_map_editor.php:1306 +#: ../../include/functions_visual_map.php:4170 +#: ../../include/rest-api/models/VisualConsole/Item.php:1985 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:260 +msgid "Clock" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:108 +#: ../../include/functions_visual_map_editor.php:134 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 +msgid "Border color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:152 +msgid "Border width" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:161 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 +msgid "Fill color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:217 +msgid "" +"Scroll the mouse wheel over the label editor to change the background color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:233 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 +msgid "Clock animation" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:236 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 +msgid "Simple analogic" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:237 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 +msgid "Simple digital" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:251 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 +msgid "Time format" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:254 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 +msgid "Only time" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 +msgid "Time and date" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 +msgid "Time zone" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:307 +msgid "Enable link" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:328 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:444 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:505 +msgid "White" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:445 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:506 +msgid "Black" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:330 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:446 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:507 +msgid "Transparent" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:344 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:480 +msgid "Grid color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:464 +msgid "Data image" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:469 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 +msgid "Resume data color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:483 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:228 +msgid "24h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:484 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:230 +msgid "8h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:485 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:231 +msgid "2h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:486 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:232 +msgid "1h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:490 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:236 +msgid "Max. Time" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:572 +msgid "Original Size" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:580 +msgid "Aspect ratio" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:581 +msgid "Proportional Width" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:589 +msgid "Height proportional" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:620 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:454 +msgid "Circular porgress bar" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:621 +#: ../../include/functions_visual_map.php:4195 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:456 +#: ../../include/rest-api/models/VisualConsole/Item.php:2009 +msgid "Circular progress bar (interior)" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:671 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:516 +msgid "Element color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:528 +msgid "Value color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:733 +msgid "Diameter" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:740 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:425 +msgid "Default color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:744 +msgid "" +"The color of the element will be the one selected in the first range created " +"in which the value of the module is found (with the initial and final values " +"of the range included)" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "Ranges" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "From value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "To value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +#: ../../include/rest-api/index.php:322 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:470 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:529 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:481 +msgid "Color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:752 +msgid "Always show on top" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:753 +msgid "" +"It allows the element to be superimposed to the rest of items of the visual " +"console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:756 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:341 +msgid "Hide last value on boolean modules" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:762 +msgid "Show last value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:844 +msgid "For use the original image file size, set 0 width and 0 height." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/rest-api/models/VisualConsole/Item.php:2303 +msgid "Linked visual console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1007 +#: ../../include/rest-api/models/VisualConsole/Item.php:2362 +msgid "Type of the status calculation of the linked visual console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1032 +#: ../../include/rest-api/models/VisualConsole/Item.php:2378 +msgid "Linked visual console weight" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1099 +msgid "Lines haven't advanced options" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1116 +#: ../../include/rest-api/models/VisualConsole/Item.php:2062 +msgid "Restrict access to group" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1127 +msgid "" +"If selected, restrict visualization of this item in the visual console to " +"users who have access to selected group. This is also used on calculating " +"child visual consoles." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1158 +#: ../../include/rest-api/models/VisualConsole/Item.php:2075 +msgid "Cache expiration" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1197 +msgid "Click start point
of the line" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1200 +msgid "Click end point
of the line" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1300 +#: ../../operation/visual_console/view.php:230 +msgid "Serialized pie graph" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1301 +#: ../../operation/visual_console/view.php:235 +msgid "Bars Graph" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1323 +msgid "Show grid" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1325 +msgid "Delete item" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1326 +msgid "Copy item" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1366 +#: ../../include/functions_visual_map_editor.php:1370 +#: ../../include/functions_visual_map_editor.php:1374 +#: ../../include/functions_visual_map_editor.php:1378 +#: ../../include/functions_visual_map_editor.php:1382 +#: ../../include/functions_visual_map_editor.php:1386 +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../include/functions_visual_map_editor.php:1394 +#: ../../include/functions_visual_map_editor.php:1398 +#: ../../include/functions_visual_map_editor.php:1402 +#: ../../include/functions_visual_map_editor.php:1406 +#: ../../include/functions_visual_map_editor.php:1410 +#: ../../include/functions_visual_map_editor.php:1414 +#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1422 +#: ../../include/functions_visual_map_editor.php:1426 +#: ../../include/functions_visual_map_editor.php:1430 +#: ../../include/functions_visual_map_editor.php:1434 +#: ../../include/functions_visual_map_editor.php:1438 +msgid "Visual Console Builder Information" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1367 +msgid "Min allowed size is 1024x768." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1371 +#: ../../include/functions_visual_map_editor.php:1439 +msgid "No custom graph defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1375 +msgid "No image or name defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1379 +msgid "No label defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1383 +msgid "No service defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1387 +msgid "No image defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1391 +msgid "No process defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1395 +msgid "No Max value defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1399 +msgid "No width defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1403 +msgid "No height defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1407 +msgid "The width must not exceed the size of the visual console container." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1411 +msgid "The height must not exceed the size of the visual console container." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1415 +msgid "No period defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1419 +msgid "No agent defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1423 +msgid "No module defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1427 +msgid "No module defined. This module must be string type." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1431 +msgid "Successfully save the changes." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1435 +msgid "Could not be save." +msgstr "" + +#: ../../include/graphs/export_data.php:68 +#: ../../include/graphs/export_data.php:128 +msgid "An error occured exporting the data" +msgstr "" + +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2717 +#: ../../include/functions_graph.php:2765 +msgid "Out of limits" +msgstr "" + +#: ../../include/graphs/functions_flot.php:347 +msgid "Cancel zoom" +msgstr "" + +#: ../../include/graphs/functions_flot.php:349 +msgid "Warning and Critical thresholds" +msgstr "" + +#: ../../include/graphs/functions_flot.php:354 +msgid "Overview graph" +msgstr "" + +#: ../../include/graphs/functions_flot.php:468 +#: ../../include/functions_reporting_html.php:595 +#: ../../include/functions_reporting_html.php:3448 +#: ../../include/functions_treeview.php:319 +#: ../../include/functions_visual_map.php:2854 +#: ../../include/functions_visual_map.php:2869 +msgid "No data" +msgstr "" + +#: ../../include/functions_servers.php:560 +#: ../../include/functions_servers.php:1187 +msgid "Data server" +msgstr "" + +#: ../../include/functions_servers.php:570 +#: ../../include/functions_servers.php:1190 +msgid "Network server" +msgstr "" + +#: ../../include/functions_servers.php:580 +msgid "SNMP Trap server" +msgstr "" + +#: ../../include/functions_servers.php:600 +#: ../../include/functions_servers.php:1202 +msgid "Plugin server" +msgstr "" + +#: ../../include/functions_servers.php:620 +#: ../../include/functions_servers.php:1208 +msgid "WMI server" +msgstr "" + +#: ../../include/functions_servers.php:640 +#: ../../include/functions_servers.php:1217 +msgid "Inventory server" +msgstr "" + +#: ../../include/functions_servers.php:650 +#: ../../include/functions_servers.php:1211 +msgid "Web server" +msgstr "" + +#: ../../include/functions_servers.php:660 +#: ../../include/functions_servers.php:1220 +msgid "Event server" +msgstr "" + +#: ../../include/functions_servers.php:670 +#: ../../include/functions_servers.php:1196 +msgid "Enterprise ICMP server" +msgstr "" + +#: ../../include/functions_servers.php:680 +#: ../../include/functions_servers.php:1199 +msgid "Enterprise SNMP server" +msgstr "" + +#: ../../include/functions_servers.php:690 +msgid "Enterprise Satellite server" +msgstr "" + +#: ../../include/functions_servers.php:700 +msgid "Enterprise Transactional server" +msgstr "" + +#: ../../include/functions_servers.php:710 +msgid "Mainframe server" +msgstr "" + +#: ../../include/functions_servers.php:720 +msgid "Sync server" +msgstr "" + +#: ../../include/functions_servers.php:730 +msgid "Wux server" +msgstr "" + +#: ../../include/functions_servers.php:740 +#: ../../include/functions_servers.php:1226 +msgid "Log server" +msgstr "" + +#: ../../include/functions_servers.php:750 +msgid "Autoprovision server" +msgstr "" + +#: ../../include/functions_servers.php:760 +msgid "Migration server" +msgstr "" + +#: ../../include/functions_servers.php:1193 +msgid "SNMP server" +msgstr "" + +#: ../../include/functions_servers.php:1205 +msgid "Prediction Server" +msgstr "" + +#: ../../include/functions_servers.php:1229 +msgid "WUX server" +msgstr "" + +#: ../../include/functions_reporting_html.php:94 +msgid "Label: " +msgstr "" + +#: ../../include/functions_reporting_html.php:526 +msgid "Global Time" +msgstr "" + +#: ../../include/functions_reporting_html.php:528 +msgid "Time Failed" +msgstr "" + +#: ../../include/functions_reporting_html.php:532 +msgid "Downtime" +msgstr "" + +#: ../../include/functions_reporting_html.php:557 +msgid "Checks Time" +msgstr "" + +#: ../../include/functions_reporting_html.php:725 +#: ../../include/functions_reporting_html.php:3297 +#: ../../include/functions_reporting_html.php:3785 +#: ../../include/functions_reporting_html.php:3788 +#: ../../include/functions_reporting.php:1449 +#: ../../include/functions_reporting.php:2490 +msgid "There are no Agent/Modules defined" +msgstr "" + +#: ../../include/functions_reporting_html.php:911 +#: ../../include/functions_reporting_html.php:1838 +#: ../../include/functions_reporting_html.php:3334 +#: ../../include/functions_reporting_html.php:3812 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Min Value" +msgstr "" + +#: ../../include/functions_reporting_html.php:912 +#: ../../include/functions_reporting_html.php:1839 +#: ../../include/functions_reporting_html.php:3335 +#: ../../include/functions_reporting_html.php:3813 +msgid "Average Value" +msgstr "" + +#: ../../include/functions_reporting_html.php:913 +#: ../../include/functions_reporting_html.php:1840 +#: ../../include/functions_reporting_html.php:3332 +#: ../../include/functions_reporting_html.php:3815 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Max Value" +msgstr "" + +#: ../../include/functions_reporting_html.php:967 +#: ../../include/functions_reporting_html.php:975 +#: ../../include/functions_reporting_html.php:1961 +msgid "Val. by" +msgstr "" + +#: ../../include/functions_reporting_html.php:1034 +#, php-format +msgid "%s System" +msgstr "" + +#: ../../include/functions_reporting_html.php:1082 +#: ../../include/functions_reporting_html.php:1282 +msgid "Events by agent" +msgstr "" + +#: ../../include/functions_reporting_html.php:1099 +#: ../../include/functions_reporting_html.php:1299 +msgid "Events by user validator" +msgstr "" + +#: ../../include/functions_reporting_html.php:1116 +#: ../../include/functions_reporting_html.php:1316 +msgid "Events by Severity" +msgstr "" + +#: ../../include/functions_reporting_html.php:1133 +#: ../../include/functions_reporting_html.php:1333 +msgid "Events validated vs unvalidated" +msgstr "" + +#: ../../include/functions_reporting_html.php:1734 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "" + +#: ../../include/functions_reporting_html.php:1904 +#: ../../include/functions_reporting_html.php:4382 +msgid "Monitors" +msgstr "" + +#: ../../include/functions_reporting_html.php:1923 +msgid "Events (not validated)" +msgstr "" + +#: ../../include/functions_reporting_html.php:2060 +msgid "Events validated by user" +msgstr "" + +#: ../../include/functions_reporting_html.php:2077 +#: ../../include/functions_reporting_html.php:4657 +msgid "Events by severity" +msgstr "" + +#: ../../include/functions_reporting_html.php:2094 +#: ../../operation/events/event_statistics.php:75 +msgid "Amount events validated" +msgstr "" + +#: ../../include/functions_reporting_html.php:2321 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "" + +#: ../../include/functions_reporting_html.php:2325 +msgid "Mac" +msgstr "" + +#: ../../include/functions_reporting_html.php:2326 +msgid "Actual status" +msgstr "" + +#: ../../include/functions_reporting_html.php:2648 +#: ../../include/functions_reporting_html.php:2650 +msgid "Empty modules" +msgstr "" + +#: ../../include/functions_reporting_html.php:2657 +msgid "Warning
Critical" +msgstr "" + +#: ../../include/functions_reporting_html.php:3065 +msgid "Time Not Init Module" +msgstr "" + +#: ../../include/functions_reporting_html.php:3076 +msgid "% Ok" +msgstr "" + +#: ../../include/functions_reporting_html.php:3144 +msgid "Checks Uknown" +msgstr "" + +#: ../../include/functions_reporting_html.php:3525 +msgid "Primary" +msgstr "" + +#: ../../include/functions_reporting_html.php:3927 +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:9040 +msgid "Alert level" +msgstr "" + +#: ../../include/functions_reporting_html.php:4156 +#, php-format +msgid "Agents in group: %s" +msgstr "" + +#: ../../include/functions_reporting_html.php:4258 +msgid "Last failure" +msgstr "" + +#: ../../include/functions_reporting_html.php:4348 +msgid "N/A(*)" +msgstr "" + +#: ../../include/functions_reporting_html.php:4585 +#: ../../include/functions_reporting.php:9240 +msgid "Monitor checks" +msgstr "" + +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting.php:9259 +msgid "Total agents and monitors" +msgstr "" + +#: ../../include/functions_reporting_html.php:4608 +#: ../../include/functions_reporting_html.php:4613 +msgid "Node overview" +msgstr "" + +#: ../../include/functions_reporting_html.php:4633 +#: ../../include/functions_reporting_html.php:4645 +msgid "Critical events" +msgstr "" + +#: ../../include/functions_reporting_html.php:4636 +#: ../../include/functions_reporting_html.php:4647 +msgid "Warning events" +msgstr "" + +#: ../../include/functions_reporting_html.php:4639 +#: ../../include/functions_reporting_html.php:4649 +msgid "OK events" +msgstr "" + +#: ../../include/functions_reporting_html.php:4642 +#: ../../include/functions_reporting_html.php:4651 +msgid "Unknown events" +msgstr "" + +#: ../../include/functions_reporting_html.php:4667 +msgid "Important Events by Criticity" +msgstr "" + +#: ../../include/functions_reporting_html.php:4693 +#, php-format +msgid "Last activity in %s console" +msgstr "" + +#: ../../include/functions_reporting_html.php:4784 +#: ../../include/functions_reporting_html.php:4925 +msgid "Events info (1hr.)" +msgstr "" + +#: ../../include/functions_reporting_html.php:5114 +msgid "Kilobytes" +msgstr "" + +#: ../../include/functions_reporting_html.php:5119 +msgid "No network traffic sent data" +msgstr "" + +#: ../../include/functions_reporting_html.php:5129 +msgid "Network traffic sent" +msgstr "" + +#: ../../include/functions_reporting_html.php:5136 +msgid "No network traffic received data" +msgstr "" + +#: ../../include/functions_reporting_html.php:5146 +msgid "Network traffic received" +msgstr "" + +#: ../../include/functions_reporting_html.php:5167 +msgid "This SLA has been affected by the following planned downtimes" +msgstr "" + +#: ../../include/functions_reporting_html.php:5168 +msgid "" +"If the duration of the planned downtime is less than 5 minutes it will not " +"be represented in the graph" +msgstr "" + +#: ../../include/functions_reporting_html.php:5175 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:431 +msgid "Dates" +msgstr "" + +#: ../../include/functions_reporting_html.php:5206 +msgid "This item is affected by a malformed planned downtime" +msgstr "" + +#: ../../include/functions_reporting_html.php:5206 +msgid "Go to the planned downtimes section to solve this" +msgstr "" + +#: ../../include/functions.php:233 +msgid "," +msgstr "" + +#: ../../include/functions.php:503 ../../include/functions.php:643 +msgid "s" +msgstr "" + +#: ../../include/functions.php:504 ../../include/functions.php:644 +msgid "d" +msgstr "" + +#: ../../include/functions.php:505 ../../include/functions.php:645 +msgid "M" +msgstr "" + +#: ../../include/functions.php:506 ../../include/functions.php:646 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 +#: ../../include/rest-api/models/VisualConsole/Item.php:1918 +msgid "Y" +msgstr "" + +#: ../../include/functions.php:507 ../../include/functions.php:647 +msgid "m" +msgstr "" + +#: ../../include/functions.php:508 ../../include/functions.php:648 +msgid "h" +msgstr "" + +#: ../../include/functions.php:509 ../../include/functions.php:649 +msgid "N" +msgstr "" + +#: ../../include/functions.php:1026 ../../include/functions.php:1271 +#: ../../include/functions.php:1305 ../../include/functions_graph.php:2883 +#: ../../include/functions_graph.php:3465 +#: ../../include/functions_graph.php:3466 +#: ../../include/functions_graph.php:4947 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:3096 +msgid "Maintenance" +msgstr "" + +#: ../../include/functions.php:1030 ../../include/functions.php:1272 +#: ../../include/functions.php:1309 ../../include/functions_graph.php:3470 +#: ../../include/functions_graph.php:3471 +#: ../../include/functions_graph.php:4951 +#: ../../include/functions_events.php:3100 +msgid "Informational" +msgstr "" + +#: ../../include/functions.php:1046 ../../include/functions.php:1274 +#: ../../include/functions.php:1325 ../../include/functions_graph.php:3480 +#: ../../include/functions_graph.php:3481 +#: ../../include/functions_graph.php:4967 +msgid "Minor" +msgstr "" + +#: ../../include/functions.php:1050 ../../include/functions.php:1276 +#: ../../include/functions.php:1329 ../../include/functions_graph.php:3490 +#: ../../include/functions_graph.php:3491 +#: ../../include/functions_graph.php:4971 +msgid "Major" +msgstr "" + +#: ../../include/functions.php:1225 ../../include/functions_events.php:3020 +msgid "Monitor Critical" +msgstr "" + +#: ../../include/functions.php:1226 ../../include/functions_events.php:3024 +msgid "Monitor Warning" +msgstr "" + +#: ../../include/functions.php:1227 ../../include/functions_events.php:3028 +msgid "Monitor Normal" +msgstr "" + +#: ../../include/functions.php:1229 +msgid "Monitor Unknown" +msgstr "" + +#: ../../include/functions.php:1232 ../../include/functions_events.php:2654 +#: ../../include/functions_events.php:3036 +msgid "Alert recovered" +msgstr "" + +#: ../../include/functions.php:1233 ../../include/functions_events.php:2702 +#: ../../include/functions_events.php:3040 +msgid "Alert ceased" +msgstr "" + +#: ../../include/functions.php:1234 ../../include/functions_events.php:3044 +msgid "Alert manual validation" +msgstr "" + +#: ../../include/functions.php:1236 +msgid "Agent created" +msgstr "" + +#: ../../include/functions.php:1237 ../../include/functions_events.php:3048 +msgid "Recon host detected" +msgstr "" + +#: ../../include/functions.php:1240 ../../include/functions_events.php:2698 +#: ../../include/functions_events.php:3060 +msgid "Configuration change" +msgstr "" + +#: ../../include/functions.php:2535 +#, php-format +msgid "%s seconds" +msgstr "" + +#: ../../include/functions.php:2538 ../../include/functions.php:2539 +#, php-format +msgid "%s minutes" +msgstr "" + +#: ../../include/functions.php:2547 ../../include/functions.php:2548 +#, php-format +msgid "%s months" +msgstr "" + +#: ../../include/functions.php:2550 ../../include/functions.php:2551 +#, php-format +msgid "%s years" +msgstr "" + +#: ../../include/functions.php:2553 +msgid "Default values will be used" +msgstr "" + +#: ../../include/functions.php:2742 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ../../include/functions.php:2746 +msgid "No file was uploaded" +msgstr "" + +#: ../../include/functions.php:2750 +msgid "Missing a temporary folder" +msgstr "" + +#: ../../include/functions.php:2754 +msgid "Failed to write file to disk" +msgstr "" + +#: ../../include/functions.php:2758 +msgid "File upload stopped by extension" +msgstr "" + +#: ../../include/functions.php:2762 +msgid "Unknown upload error" +msgstr "" + +#: ../../include/functions.php:2873 +msgid "No data found to export" +msgstr "" + +#: ../../include/functions.php:3192 +#: ../../operation/gis_maps/render_view.php:136 +msgid "5 seconds" +msgstr "" + +#: ../../include/functions.php:3193 +#: ../../operation/gis_maps/render_view.php:137 +msgid "10 seconds" +msgstr "" + +#: ../../include/functions.php:3194 +msgid "15 seconds" +msgstr "" + +#: ../../include/functions.php:3195 +#: ../../operation/gis_maps/render_view.php:138 +msgid "30 seconds" +msgstr "" + +#: ../../include/functions.php:3199 +msgid "15 minutes" +msgstr "" + +#: ../../include/functions.php:3200 ../../include/ajax/module.php:164 +msgid "30 minutes" +msgstr "" + +#: ../../include/functions.php:3671 +msgid "Summatory series" +msgstr "" + +#: ../../include/functions.php:3675 +msgid "Average series" +msgstr "" + +#: ../../include/functions.php:3699 ../../include/functions.php:3700 +#: ../../include/functions.php:3708 ../../include/functions.php:3714 +#: ../../include/functions.php:3750 ../../include/functions.php:3811 +msgid "Unit " +msgstr "" + +#: ../../include/functions.php:3721 ../../include/functions.php:3757 +msgid "Min:" +msgstr "" + +#: ../../include/functions.php:3726 ../../include/functions.php:3762 +msgid "Max:" +msgstr "" + +#: ../../include/functions.php:3731 ../../include/functions.php:3767 +msgid "Avg:" +msgstr "" + +#: ../../include/functions.php:3808 ../../include/functions.php:3816 +msgid "of module" +msgstr "" + +#: ../../include/functions.php:3833 +msgid "Projection" +msgstr "" + +#: ../../include/functions_cron.php:446 +msgid "Scheduled jobs" +msgstr "" + +#: ../../include/functions_api.php:93 +msgid "No set or get or help operation." +msgstr "" + +#: ../../include/functions_api.php:103 +msgid "This operation does not exist." +msgstr "" + +#: ../../include/functions_api.php:113 +msgid "Id does not exist in BD." +msgstr "" + +#: ../../include/functions_api.php:123 +msgid "This operation can not be used in cluster elements." +msgstr "" + +#: ../../include/functions_api.php:133 +msgid "The user has not enough permission to make this action." +msgstr "" + +#: ../../include/functions_api.php:1083 +msgid "Does not exist agent with this name." +msgstr "" + +#: ../../include/functions_api.php:1093 +msgid "Does not exist module with this name." +msgstr "" + +#: ../../include/functions_api.php:1158 +msgid "Does not exist the pair alias/module required." +msgstr "" + +#: ../../include/functions_api.php:1357 +msgid "The agent parent don`t exist." +msgstr "" + +#: ../../include/functions_api.php:1362 +msgid "The user cannot access to parent agent." +msgstr "" + +#: ../../include/functions_api.php:1648 +msgid "Could not be created for unknown reason" +msgstr "" + +#: ../../include/functions_api.php:1691 +msgid "Error creating OS" +msgstr "" + +#: ../../include/functions_api.php:1720 +msgid "Success updating OS" +msgstr "" + +#: ../../include/functions_api.php:1909 ../../include/functions_api.php:8250 +#: ../../include/functions_api.php:14010 +msgid "Correct Delete" +msgstr "" + +#: ../../include/functions_api.php:3126 +msgid "" +"Error in creation network module. Id_module_type is not correct for network " +"modules." +msgstr "" + +#: ../../include/functions_api.php:3205 +msgid "Error in creation network module." +msgstr "" + +#: ../../include/functions_api.php:3238 +msgid "Error updating network module. Module name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3257 +msgid "Error updating network module. Id_module doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:3283 +msgid "Error updating network module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:3341 +msgid "Network module updated." +msgstr "" + +#: ../../include/functions_api.php:3371 +msgid "Error in creation plugin module. Id_plugin cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3472 +msgid "Error in creation plugin module." +msgstr "" + +#: ../../include/functions_api.php:3504 +msgid "Error updating plugin module. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3529 +msgid "Error updating plugin module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:3537 +msgid "Error updating plugin module. Id_agent doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:3601 +msgid "Plugin module updated." +msgstr "" + +#: ../../include/functions_api.php:3631 +msgid "Error in creation data module. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3723 ../../include/functions_api.php:3814 +#: ../../include/functions_api.php:3967 +msgid "Error in creation data module." +msgstr "" + +#: ../../include/functions_api.php:3755 +msgid "Error in creation synthetic module. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3778 ../../include/functions_api.php:3784 +msgid "Error in creation synthetic module. Agent name doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:3957 ../../include/functions_api.php:4110 +msgid "Synthetic module created ID: " +msgstr "" + +#: ../../include/functions_api.php:4143 +msgid "Error updating data module. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4168 +msgid "Error updating data module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:4176 +msgid "Error updating data module. Id_agent doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:4227 +msgid "Data module updated." +msgstr "" + +#: ../../include/functions_api.php:4263 +msgid "Error in creation SNMP module. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4268 +msgid "" +"Error in creation SNMP module. Invalid id_module_type for a SNMP module." +msgstr "" + +#: ../../include/functions_api.php:4299 ../../include/functions_api.php:4490 +#: ../../include/functions_api.php:7686 +msgid "" +"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "" + +#: ../../include/functions_api.php:4304 ../../include/functions_api.php:4501 +#: ../../include/functions_api.php:7691 +msgid "" +"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" + +#: ../../include/functions_api.php:4309 ../../include/functions_api.php:4509 +#: ../../include/functions_api.php:7696 +msgid "" +"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "" + +#: ../../include/functions_api.php:4413 +msgid "Error in creation SNMP module." +msgstr "" + +#: ../../include/functions_api.php:4447 +msgid "Error updating SNMP module. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4472 +msgid "Error updating SNMP module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:4480 +msgid "Error updating snmp module. Id_agent doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:4601 +msgid "SNMP module updated." +msgstr "" + +#: ../../include/functions_api.php:4637 +msgid "" +"Error creating network component. Network component name cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:4642 +msgid "" +"Error creating network component. Incorrect value for Network component type " +"field." +msgstr "" + +#: ../../include/functions_api.php:4647 +msgid "" +"Error creating network component. Network component group cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:4685 +msgid "" +"Error creating network component. This network component already exists." +msgstr "" + +#: ../../include/functions_api.php:4733 +msgid "" +"Error creating plugin component. Plugin component name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4739 +msgid "Error creating plugin component. Incorrect value for Id plugin." +msgstr "" + +#: ../../include/functions_api.php:4744 +msgid "" +"Error creating plugin component. Plugin component group cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4786 +msgid "Error creating plugin component. This plugin component already exists." +msgstr "" + +#: ../../include/functions_api.php:4828 +msgid "" +"Error creating SNMP component. SNMP component name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4838 +msgid "" +"Error creating SNMP component. Incorrect value for Snmp component type field." +msgstr "" + +#: ../../include/functions_api.php:4843 +msgid "" +"Error creating SNMP component. Snmp component group cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4854 +msgid "" +"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "" + +#: ../../include/functions_api.php:4864 +msgid "" +"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" + +#: ../../include/functions_api.php:4872 +msgid "" +"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "" + +#: ../../include/functions_api.php:4955 +msgid "Error creating SNMP component. This SNMP component already exists." +msgstr "" + +#: ../../include/functions_api.php:4997 +msgid "" +"Error creating local component. Local component name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5010 +msgid "" +"Error creating local component. Local component group cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5043 +msgid "Error creating local component." +msgstr "" + +#: ../../include/functions_api.php:5051 +msgid "Error creating local component. This local component already exists." +msgstr "" + +#: ../../include/functions_api.php:5096 +msgid "" +"Error getting module value from all agents. Module name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5106 +msgid "Error getting module value from all agents. Module name doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:5169 +msgid "Error creating alert template. Template name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5241 +msgid "Error creating alert template." +msgstr "" + +#: ../../include/functions_api.php:5281 +msgid "Error updating alert template. Id_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5291 +msgid "Error updating alert template. Id_template doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:5342 +msgid "Error updating alert template." +msgstr "" + +#: ../../include/functions_api.php:5349 +msgid "Correct updating of alert template" +msgstr "" + +#: ../../include/functions_api.php:5378 +msgid "Error deleting alert template. Id_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5389 +msgid "Error deleting alert template." +msgstr "" + +#: ../../include/functions_api.php:5396 +msgid "Correct deleting of alert template." +msgstr "" + +#: ../../include/functions_api.php:5447 +msgid "Error getting all alert templates." +msgstr "" + +#: ../../include/functions_api.php:5492 +msgid "Error getting all alert commands." +msgstr "" + +#: ../../include/functions_api.php:5527 +msgid "Error getting alert template. Id_template doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:5555 +msgid "Error getting alert template." +msgstr "" + +#: ../../include/functions_api.php:5669 +msgid "Error getting module groups." +msgstr "" + +#: ../../include/functions_api.php:5733 +msgid "Error getting plugins." +msgstr "" + +#: ../../include/functions_api.php:5781 ../../include/functions_api.php:5787 +msgid "Error creating module from network component. Agent doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:5795 +msgid "" +"Error creating module from network component. Network component doesn't " +"exist." +msgstr "" + +#: ../../include/functions_api.php:5821 ../../include/functions_api.php:11296 +#: ../../include/functions_api.php:11362 ../../include/functions_api.php:11643 +#: ../../include/functions_api.php:11724 +#, php-format +msgid "%d agents affected" +msgstr "" + +#: ../../include/functions_api.php:5827 +msgid "Error creating module from network component. Error creating module." +msgstr "" + +#: ../../include/functions_api.php:5858 +msgid "Error assigning module to template. Id_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5866 +msgid "Error assigning module to template. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5874 +msgid "Error assigning module to template. Id_agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5891 +msgid "Error assigning module to template. Id_template doensn't exists." +msgstr "" + +#: ../../include/functions_api.php:5899 +msgid "Error assigning module to template. Id_agent doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:5906 +msgid "Error assigning module to template. Id_module doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:5914 +msgid "Error assigning module to template." +msgstr "" + +#: ../../include/functions_api.php:5948 +msgid "" +"Error deleting module template. Id_module_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:5955 +msgid "Error deleting module template. Id_module_template doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:5963 ../../include/functions_api.php:6071 +msgid "Error deleting module template." +msgstr "" + +#: ../../include/functions_api.php:5965 ../../include/functions_api.php:6073 +msgid "Correct deleting of module template." +msgstr "" + +#: ../../include/functions_api.php:6053 +#, php-format +msgid "Module template has been deleted in %d agents." +msgstr "" + +#: ../../include/functions_api.php:6146 +msgid "Error validate all alerts. Failed " +msgstr "" + +#: ../../include/functions_api.php:6148 +#, php-format +msgid "Correct validating of all alerts (total %d)." +msgstr "" + +#: ../../include/functions_api.php:6183 +msgid "Error validating all alert policies." +msgstr "" + +#: ../../include/functions_api.php:6240 +msgid "Error validate all policy alerts. Failed " +msgstr "" + +#: ../../include/functions_api.php:6242 +msgid "Correct validating of all policy alerts." +msgstr "" + +#: ../../include/functions_api.php:6274 +msgid "Error stopping downtime. Id_downtime cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:6285 +msgid "No action has been taken." +msgstr "" + +#: ../../include/functions_api.php:6287 +msgid "Error stopping downtime." +msgstr "" + +#: ../../include/functions_api.php:6289 +msgid "Downtime stopped." +msgstr "" + +#: ../../include/functions_api.php:6416 +msgid "Error set tag." +msgstr "" + +#: ../../include/functions_api.php:6478 +msgid "No planned downtime retrieved" +msgstr "" + +#: ../../include/functions_api.php:6765 +msgid "and this modules are doesn't exists or not applicable a this agents: " +msgstr "" + +#: ../../include/functions_api.php:6769 +msgid "and this agents are generate problems: " +msgstr "" + +#: ../../include/functions_api.php:6773 +msgid "and this agents with ids are doesn't exists: " +msgstr "" + +#: ../../include/functions_api.php:6813 +msgid "Error adding data module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:6823 +msgid "Error adding data module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:6831 +msgid "Error adding data module to policy." +msgstr "" + +#: ../../include/functions_api.php:6869 +msgid "" +"Error adding data module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:6921 +msgid "Error updating data module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:6930 +msgid "" +"Error updating data module in policy. Id_policy_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:6938 +msgid "Error updating data module in policy. Module doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:6945 +msgid "Error updating data module in policy. Module type is not network type." +msgstr "" + +#: ../../include/functions_api.php:6995 +msgid "Data policy module updated." +msgstr "" + +#: ../../include/functions_api.php:7030 +msgid "Error adding network module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7043 +msgid "" +"Error adding network module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7051 +msgid "" +"Error adding network module to policy. Id_module_type is not correct for " +"network modules." +msgstr "" + +#: ../../include/functions_api.php:7069 +msgid "Error adding network module to policy." +msgstr "" + +#: ../../include/functions_api.php:7109 +msgid "" +"Error adding network module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:7151 +msgid "" +"Error updating network module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7159 +msgid "" +"Error updating network module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:7170 +msgid "Error updating network module in policy. Module doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:7178 +msgid "" +"Error updating network module in policy. Module type is not network type." +msgstr "" + +#: ../../include/functions_api.php:7222 +msgid "Network policy module updated." +msgstr "" + +#: ../../include/functions_api.php:7252 +msgid "Error adding plugin module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7262 +msgid "Error adding plugin module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7267 +msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7275 +msgid "Error adding plugin module to policy." +msgstr "" + +#: ../../include/functions_api.php:7319 +msgid "" +"Error adding plugin module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:7362 +msgid "Error updating plugin module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7370 +msgid "" +"Error updating plugin module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:7381 +msgid "Error updating plugin module in policy. Module doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:7389 +msgid "" +"Error updating plugin module in policy. Module type is not network type." +msgstr "" + +#: ../../include/functions_api.php:7449 +msgid "Plugin policy module updated." +msgstr "" + +#: ../../include/functions_api.php:7535 +#, php-format +msgid "Remote config of module %s not available" +msgstr "" + +#: ../../include/functions_api.php:7652 +msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7662 +msgid "Error adding SNMP module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7670 +msgid "Error adding SNMP module to policy." +msgstr "" + +#: ../../include/functions_api.php:7675 +msgid "" +"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " +"modules." +msgstr "" + +#: ../../include/functions_api.php:7769 +msgid "" +"Error adding SNMP module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:7811 +msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7816 +msgid "" +"Error updating SNMP module in policy. Id_policy_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7824 +msgid "Error updating SNMP module in policy. Module doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:7829 +msgid "Error updating SNMP module in policy. Module type is not SNMP type." +msgstr "" + +#: ../../include/functions_api.php:7838 +msgid "" +"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " +"or 'DES'. " +msgstr "" + +#: ../../include/functions_api.php:7850 +msgid "" +"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" + +#: ../../include/functions_api.php:7859 +msgid "" +"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " +"or 'SHA'. " +msgstr "" + +#: ../../include/functions_api.php:7945 +msgid "SNMP policy module updated." +msgstr "" + +#: ../../include/functions_api.php:7966 ../../include/functions_api.php:7999 +msgid "Error deleting agent from policy. Policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7971 +msgid "Error deleting agent from policy. Agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:7977 +msgid "Error deleting agent from policy. Node ID cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8049 +msgid "Error in group creation. Group_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8057 +msgid "Error in group creation. Icon_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8070 +msgid "Error in group creation. Id_parent_group doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:8099 +msgid "Error in group creation." +msgstr "" + +#: ../../include/functions_api.php:8156 ../../include/functions_api.php:10856 +#: ../../include/functions_api.php:10909 +msgid "There is not any group with the id provided" +msgstr "" + +#: ../../include/functions_api.php:8286 +msgid "Error in netflow filter creation. Filter name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8291 +msgid "Error in netflow filter creation. Group id cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8297 +msgid "Error in netflow filter creation. Id_group doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:8308 +msgid "Error in netflow filter creation. Filter cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8313 +msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8318 +msgid "Error in netflow filter creation. Output_format cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8336 +msgid "Error in netflow filter creation." +msgstr "" + +#: ../../include/functions_api.php:8553 +msgid "Create user." +msgstr "" + +#: ../../include/functions_api.php:8607 +msgid "Error updating user. Id_user cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8617 +msgid "Error updating user. Id_user doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:8634 +msgid "Error updating user. Password info incorrect." +msgstr "" + +#: ../../include/functions_api.php:8642 +msgid "Updated user." +msgstr "" + +#: ../../include/functions_api.php:8684 +msgid "Error enable/disable user. Id_user cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8692 +msgid "Error enable/disable user. Enable/disable value cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:8700 +msgid "Error enable/disable user. The user doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:8711 +msgid "Error in user enabling/disabling." +msgstr "" + +#: ../../include/functions_api.php:8719 +msgid "Enabled user." +msgstr "" + +#: ../../include/functions_api.php:8727 +msgid "Disabled user." +msgstr "" + +#: ../../include/functions_api.php:9005 +#, php-format +msgid "Template have been inserted in %d agents." +msgstr "" + +#: ../../include/functions_api.php:9177 +msgid "XML file was generated successfully in path: " +msgstr "" + +#: ../../include/functions_api.php:9317 +#, php-format +msgid "Module has been created in %d agents." +msgstr "" + +#: ../../include/functions_api.php:9439 +#, php-format +msgid "Action has been set for %d agents." +msgstr "" + +#: ../../include/functions_api.php:9569 +#, php-format +msgid "Created/Updated %s/%s module groups" +msgstr "" + +#: ../../include/functions_api.php:9573 +#, php-format +msgid "Error creating/updating %s/%s module groups
" +msgstr "" + +#: ../../include/functions_api.php:9580 ../../include/functions_api.php:13615 +msgid "This function is only for metaconsole" +msgstr "" + +#: ../../include/functions_api.php:9627 +msgid "Name cannot be empty." +msgstr "" + +#: ../../include/functions_api.php:9632 +msgid "Command cannot be empty." +msgstr "" + +#: ../../include/functions_api.php:9637 +msgid "Name already exist" +msgstr "" + +#: ../../include/functions_api.php:9642 +msgid "Group does not exist" +msgstr "" + +#: ../../include/functions_api.php:10073 +msgid "There is not gis data for the agent" +msgstr "" + +#: ../../include/functions_api.php:10114 ../../include/functions_api.php:10232 +msgid "Gis not activated" +msgstr "" + +#: ../../include/functions_api.php:10133 ../../include/functions_api.php:10251 +msgid "Missing parameters" +msgstr "" + +#: ../../include/functions_api.php:10820 +msgid "Delete user." +msgstr "" + +#: ../../include/functions_api.php:10861 ../../include/functions_api.php:10914 +msgid "There is not any profile with the id provided" +msgstr "" + +#: ../../include/functions_api.php:10873 +msgid "Add user profile." +msgstr "" + +#: ../../include/functions_api.php:10932 +msgid "Delete user profile." +msgstr "" + +#: ../../include/functions_api.php:10989 +msgid "Error retrieving profiles" +msgstr "" + +#: ../../include/functions_api.php:11045 +msgid "Error creating user profile" +msgstr "" + +#: ../../include/functions_api.php:11107 +msgid "Error updating user profile" +msgstr "" + +#: ../../include/functions_api.php:11142 +msgid "Error deleting user profile" +msgstr "" + +#: ../../include/functions_api.php:11303 +msgid "Correct module disable" +msgstr "" + +#: ../../include/functions_api.php:11305 +msgid "Error disabling module" +msgstr "" + +#: ../../include/functions_api.php:11369 +msgid "Correct module enable" +msgstr "" + +#: ../../include/functions_api.php:11371 +msgid "Error enabling module" +msgstr "" + +#: ../../include/functions_api.php:11419 ../../include/functions_api.php:11472 +msgid "Error alert disable" +msgstr "" + +#: ../../include/functions_api.php:11519 ../../include/functions_api.php:11572 +msgid "Error alert enable" +msgstr "" + +#: ../../include/functions_api.php:12037 +msgid "No alert found" +msgstr "" + +#: ../../include/functions_api.php:12211 +msgid "Cannot connect with the agent node." +msgstr "" + +#: ../../include/functions_api.php:12457 +msgid "Error adding event comment." +msgstr "" + +#: ../../include/functions_api.php:12740 +msgid "Error enable/disable agent. Id_agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:12752 +msgid "Error enable/disable agent. Enable/disable value cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:12760 +msgid "Error enable/disable agent. The agent doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:12784 +msgid "Error in agent enabling/disabling." +msgstr "" + +#: ../../include/functions_api.php:12791 +msgid "Enabled agent." +msgstr "" + +#: ../../include/functions_api.php:12799 +msgid "Disabled agent." +msgstr "" + +#: ../../include/functions_api.php:12914 +msgid "Error getting special_days." +msgstr "" + +#: ../../include/functions_api.php:12954 +msgid "Error creating special day. Specified day already exists." +msgstr "" + +#: ../../include/functions_api.php:12959 +msgid "Error creating special day. Invalid date format." +msgstr "" + +#: ../../include/functions_api.php:12964 +msgid "Error creating special day. Group id cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:12970 +msgid "Error creating special day. Id_group doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:12988 +msgid "Error in creation special day." +msgstr "" + +#: ../../include/functions_api.php:13038 +msgid "Error in creation service. No name" +msgstr "" + +#: ../../include/functions_api.php:13061 +msgid "Error in creation service. No agent id" +msgstr "" + +#: ../../include/functions_api.php:13125 +msgid "Error in creation service" +msgstr "" + +#: ../../include/functions_api.php:13157 +msgid "Error in update service. No service id" +msgstr "" + +#: ../../include/functions_api.php:13279 +msgid "Error in update service" +msgstr "" + +#: ../../include/functions_api.php:13312 +msgid "Error adding elements to service. No service id" +msgstr "" + +#: ../../include/functions_api.php:13389 +msgid "Error adding elements to service" +msgstr "" + +#: ../../include/functions_api.php:13426 +msgid "Error updating special day. Id cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:13433 +msgid "Error updating special day. Id doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:13438 +msgid "Error updating special day. Invalid date format." +msgstr "" + +#: ../../include/functions_api.php:13488 +msgid "Error deleting special day. Id cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:13495 +msgid "Error deleting special day. Id doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:13502 +msgid "Error in deletion special day." +msgstr "" + +#: ../../include/functions_api.php:13641 +msgid "A cluster with this name already exists." +msgstr "" + +#: ../../include/functions_api.php:13723 +msgid "Failed to create cluster." +msgstr "" + +#: ../../include/functions_api.php:13726 +msgid "Agent name cannot be empty." +msgstr "" + +#: ../../include/functions_api.php:13759 ../../include/functions_api.php:13892 +msgid "Error adding elements to cluster" +msgstr "" + +#: ../../include/functions_api.php:13908 ../../include/functions_api.php:13953 +#: ../../include/functions_api.php:13999 ../../include/functions_api.php:14174 +#: ../../include/functions_api.php:14212 ../../include/functions_api.php:14235 +#: ../../include/functions_api.php:14269 ../../include/functions_api.php:14338 +#: ../../include/functions_api.php:14373 ../../include/functions_api.php:14566 +msgid "The user cannot access to the cluster" +msgstr "" + +#: ../../include/functions_api.php:14605 +msgid "Error creating event filter. Event filter name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:14745 +msgid "Error creating event filter." +msgstr "" + +#: ../../include/functions_api.php:14751 +msgid "Event filter successfully created." +msgstr "" + +#: ../../include/functions_api.php:14788 +msgid "Error updating event filter. Event filter ID cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:14799 +msgid "Error updating event filter. Event filter ID doesn't exist." +msgstr "" + +#: ../../include/functions_api.php:14980 +msgid "Error updating event filter." +msgstr "" + +#: ../../include/functions_api.php:14986 +msgid "Event filter successfully updated." +msgstr "" + +#: ../../include/functions_api.php:15012 +msgid "Error deleting event_filter. Event filter ID cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:15022 +msgid "Error deleting event filter." +msgstr "" + +#: ../../include/functions_api.php:15029 +msgid "Event filter successfully deleted." +msgstr "" + +#: ../../include/functions_api.php:15077 +msgid "Error getting all event filters." +msgstr "" + +#: ../../include/functions_api.php:15307 +msgid "Error in trap update." +msgstr "" + +#: ../../include/functions_api.php:15313 +msgid "Validated traps." +msgstr "" + +#: ../../include/functions_api.php:15334 +msgid "Error in trap delete." +msgstr "" + +#: ../../include/functions_api.php:15340 +msgid "Deleted traps." +msgstr "" + +#: ../../include/functions_api.php:15498 +msgid "Error. Agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:15505 ../../include/functions_api.php:15955 +msgid "This agent does not exist." +msgstr "" + +#: ../../include/functions_api.php:15527 +#, php-format +msgid "Successfully updated module/alert count in id agent %d." +msgstr "" + +#: ../../include/functions_api.php:15529 +msgid "Successfully updated module/alert count in all agents" +msgstr "" + +#: ../../include/functions_api.php:15603 +msgid "Users could not be found." +msgstr "" + +#: ../../include/functions_api.php:15807 ../../include/functions_api.php:15814 +msgid "User profile could not be deleted." +msgstr "" + +#: ../../include/functions_api.php:15862 ../../include/functions_api.php:15889 +msgid "User profile could not be available." +msgstr "" + +#: ../../include/functions_api.php:15950 +msgid "This policy does not exist." +msgstr "" + +#: ../../include/functions_api.php:15960 +msgid "This agent does not exist in this policy." +msgstr "" + +#: ../../include/functions_api.php:15965 +#, php-format +msgid "Successfully added to delete pending id agent %d to id policy %d." +msgstr "" + +#: ../../include/functions_networkmap.php:1291 +msgid "Radial dynamic" +msgstr "" + +#: ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:38 +msgid "Topology" +msgstr "" + +#: ../../include/functions_networkmap.php:1313 +msgid "Create a new topology map" +msgstr "" + +#: ../../include/functions_networkmap.php:1314 +msgid "Create a new group map" +msgstr "" + +#: ../../include/functions_networkmap.php:1315 +msgid "Create a new dynamic map" +msgstr "" + +#: ../../include/functions_networkmap.php:1317 +msgid "Create a new radial dynamic map" +msgstr "" + +#: ../../include/functions_networkmap.php:2032 +#: ../../include/functions_maps.php:73 +msgid "Copy of " +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:140 +msgid "" +"This is the private code that you should use with your authenticator app" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:141 +#: ../../include/ajax/double_auth.ajax.php:279 +msgid "" +"You could enter the code manually or use the QR code to add it automatically" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:147 +#: ../../include/ajax/double_auth.ajax.php:285 +msgid "QR" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:183 +msgid "You are about to activate the double authentication" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:185 +msgid "" +"With this option enabled, your account access will be more secure, \n" +"\t\tcause a code generated by other application will be required after the " +"login" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:190 +msgid "" +"You will need to install the app from the following link before continue" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:195 +msgid "Download the app" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:199 +#: ../../include/ajax/double_auth.ajax.php:290 +#: ../../include/functions_update_manager.php:213 +msgid "Continue" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:215 +msgid "Are you installed the app yet?" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:243 +#: ../../include/ajax/double_auth.ajax.php:340 +#: ../../include/ajax/double_auth.ajax.php:385 +#: ../../include/ajax/double_auth.ajax.php:499 +#: ../../operation/users/user_edit.php:972 +#: ../../operation/users/user_edit.php:1038 +#: ../../operation/users/user_edit.php:1109 ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "" + +#: ../../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 +#: ../../operation/users/user_edit.php:979 +#: ../../operation/users/user_edit.php:1045 +msgid "There was an error loading the data" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:273 +msgid "A private code has been generated" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:278 +msgid "" +"Before continue, you should create a new entry into the authenticator app" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:288 +msgid "Refresh code" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:356 +msgid "Are you introduced the code in the authenticator app yet?" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:418 +msgid "Introduce a code generated by the app" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:419 +msgid "If the code is valid, the double authentication will be activated" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:428 +msgid "Validate code" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:479 +msgid "The code is valid, you can exit now" +msgstr "" + +#: ../../include/ajax/double_auth.ajax.php:495 +msgid "The code is valid, but it was an error saving the data" +msgstr "" + +#: ../../include/ajax/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:835 +#: ../../operation/agentes/alerts_status.php:517 +#: ../../operation/agentes/alerts_status.php:553 +#: ../../operation/agentes/alerts_status.php:587 +#: ../../operation/agentes/alerts_status.php:620 +msgid "Force execution" +msgstr "" + +#: ../../include/ajax/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:835 +#: ../../operation/agentes/alerts_status.php:517 +#: ../../operation/agentes/alerts_status.php:553 +#: ../../operation/agentes/alerts_status.php:587 +#: ../../operation/agentes/alerts_status.php:620 +msgid "F." +msgstr "" + +#: ../../include/ajax/alert_list.ajax.php:327 +#: ../../operation/agentes/alerts_status.php:706 +msgid "No alerts found" +msgstr "" + +#: ../../include/ajax/snmp_browser.ajax.php:95 +#: ../../include/ajax/snmp_browser.ajax.php:106 +msgid "SNMP modules" +msgstr "" + +#: ../../include/ajax/snmp_browser.ajax.php:99 +msgid "Error creating the following modules:" +msgstr "" + +#: ../../include/ajax/snmp_browser.ajax.php:110 +msgid "Modules successfully created" +msgstr "" + +#: ../../include/ajax/snmp_browser.ajax.php:223 +msgid "Failed to create policy" +msgstr "" + +#: ../../include/ajax/snmp_browser.ajax.php:224 +msgid "Policy created succesfully" +msgstr "" + +#: ../../include/ajax/module.php:172 +msgid "3 months" +msgstr "" + +#: ../../include/ajax/module.php:175 +msgid "2 years" +msgstr "" + +#: ../../include/ajax/module.php:176 +msgid "3 years" +msgstr "" + +#: ../../include/ajax/module.php:188 +#: ../../operation/agentes/datos_agente.php:194 +msgid "Choose a time from now" +msgstr "" + +#: ../../include/ajax/module.php:204 +#: ../../operation/agentes/datos_agente.php:197 +msgid "Specify time range" +msgstr "" + +#: ../../include/ajax/module.php:250 +msgid "Exact phrase" +msgstr "" + +#: ../../include/ajax/module.php:1128 +msgid "Any monitors aren't with this filter." +msgstr "" + +#: ../../include/ajax/module.php:1130 +msgid "This agent doesn't have any active monitors." +msgstr "" + +#: ../../include/ajax/custom_fields.php:404 +msgid "Current interval" +msgstr "" + +#: ../../include/ajax/custom_fields.php:450 +#: ../../include/ajax/custom_fields.php:503 +msgid "Modules normal" +msgstr "" + +#: ../../include/ajax/custom_fields.php:461 +msgid "Modules critical" +msgstr "" + +#: ../../include/ajax/custom_fields.php:472 +msgid "Modules warning" +msgstr "" + +#: ../../include/ajax/custom_fields.php:482 +msgid "Modules unknown" +msgstr "" + +#: ../../include/ajax/custom_fields.php:493 +msgid "Modules no init" +msgstr "" + +#: ../../include/ajax/custom_fields.php:535 +msgid "New Filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:542 +msgid "Existing Filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:690 +msgid "Delete filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:740 +msgid "Filter name already exists in the bbdd" +msgstr "" + +#: ../../include/ajax/custom_fields.php:752 +msgid "Please, select a custom field" +msgstr "" + +#: ../../include/ajax/custom_fields.php:780 +msgid "Success create filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:787 +msgid "Error create filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:812 +#: ../../include/ajax/custom_fields.php:885 +msgid "please, select a filter" +msgstr "" + +#: ../../include/ajax/custom_fields.php:828 +msgid "please, select a custom field" +msgstr "" + +#: ../../include/ajax/custom_fields.php:854 +msgid "Success update filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:861 +msgid "Error update filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:904 +msgid "Success delete filter." +msgstr "" + +#: ../../include/ajax/custom_fields.php:911 +msgid "Error delete filter." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:119 +msgid "Invalid extension. The package must have the extension .oum." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:126 +msgid "The file was not uploaded succesfully." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:280 +msgid "Package rejected." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:596 +msgid "The package is extracted." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:599 +msgid "Error in package extraction." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:620 +msgid "An error ocurred in the installation process." +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:749 +msgid "Delete files" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:750 +msgid "The oum has no files to remove" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:752 +msgid "Not deleted" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:753 +msgid "The file delete_file.txt can not be read" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:754 +msgid "'deleted' folder could not be created" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:755 +msgid "'deleted' folder was created" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:757 +msgid "The \"delete files\" could not be the \"delete\" folder" +msgstr "" + +#: ../../include/ajax/update_manager.ajax.php:760 +msgid "The \"delete files\" is moved to the \"delete\" folder" +msgstr "" + +#: ../../include/ajax/events.php:93 +msgid "Failed to retrieve comments" +msgstr "" + +#: ../../include/ajax/events.php:541 ../../operation/events/events_list.php:406 +msgid "New filter" +msgstr "" + +#: ../../include/ajax/events.php:559 ../../operation/events/events_list.php:424 +msgid "Save in Group" +msgstr "" + +#: ../../include/ajax/events.php:595 ../../operation/events/events_list.php:453 +msgid "Overwrite filter" +msgstr "" + +#: ../../include/ajax/events.php:666 +#: ../../operation/events/events_list.php:1518 +msgid "Filter name cannot be left blank" +msgstr "" + +#: ../../include/ajax/events.php:1004 +msgid "Error executing response" +msgstr "" + +#: ../../include/ajax/events.php:1231 +msgid "Related" +msgstr "" + +#: ../../include/ajax/events.php:1235 +msgid "Agent fields" +msgstr "" + +#: ../../include/ajax/events.php:1257 +msgid "Custom data" +msgstr "" + +#: ../../include/ajax/events.php:1343 +msgid "Error adding comment" +msgstr "" + +#: ../../include/ajax/events.php:1344 +msgid "Comment added successfully" +msgstr "" + +#: ../../include/ajax/events.php:1345 +msgid "Error changing event status" +msgstr "" + +#: ../../include/ajax/events.php:1346 +msgid "Event status changed successfully" +msgstr "" + +#: ../../include/ajax/events.php:1347 +msgid "Error changing event owner" +msgstr "" + +#: ../../include/ajax/events.php:1348 +msgid "Event owner changed successfully" +msgstr "" + +#: ../../include/ajax/events.php:1554 +msgid "Show all Events 24h" +msgstr "" + +#: ../../include/ajax/events.php:1687 +msgid "These commands will apply to all selected events" +msgstr "" + +#: ../../include/ajax/events.php:1788 +msgid "Alert fired in module " +msgstr "" + +#: ../../include/ajax/events.php:1803 +msgid " is going to critical" +msgstr "" + +#: ../../include/ajax/events.php:1817 +msgid " is going to warning" +msgstr "" + +#: ../../include/ajax/events.php:1831 +msgid " is going to unknown" +msgstr "" + +#: ../../include/ajax/rolling_release.ajax.php:55 +msgid "The sql file contains a dangerous query" +msgstr "" + +#: ../../include/ajax/rolling_release.ajax.php:98 +msgid "" +"An error occurred while updating the database schema to the minor release " +msgstr "" + +#: ../../include/ajax/rolling_release.ajax.php:111 +#: ../../include/ajax/rolling_release.ajax.php:123 +msgid "The directory " +msgstr "" + +#: ../../include/ajax/rolling_release.ajax.php:111 +msgid " should have read permissions in order to update the database schema" +msgstr "" + +#: ../../include/ajax/rolling_release.ajax.php:123 +msgid " does not exist" +msgstr "" + +#: ../../include/ajax/graph.ajax.php:155 +msgid "Time container lapse" +msgstr "" + +#: ../../include/functions_agents.php:928 +msgid "" +"There was an error copying the agent configuration, the copy has been " +"cancelled" +msgstr "" + +#: ../../include/functions_agents.php:2633 +#: ../../include/functions_agents.php:2672 +#: ../../include/functions_agents.php:2743 +msgid "No Monitors" +msgstr "" + +#: ../../include/functions_agents.php:2641 +#: ../../include/functions_agents.php:2696 +#: ../../include/functions_agents.php:2751 +#: ../../include/functions_reporting.php:10004 +msgid "At least one module in CRITICAL status" +msgstr "" + +#: ../../include/functions_agents.php:2647 +#: ../../include/functions_agents.php:2706 +#: ../../include/functions_agents.php:2759 +#: ../../include/functions_reporting.php:10011 +msgid "At least one module in WARNING status" +msgstr "" + +#: ../../include/functions_agents.php:2653 +#: ../../include/functions_agents.php:2716 +#: ../../include/functions_agents.php:2767 +#: ../../include/functions_reporting.php:10018 +msgid "At least one module is in UKNOWN status" +msgstr "" + +#: ../../include/functions_agents.php:2659 +#: ../../include/functions_agents.php:2726 +#: ../../include/functions_agents.php:2775 +#: ../../include/functions_reporting.php:10025 +msgid "All Monitors OK" +msgstr "" + +#: ../../include/functions_agents.php:2684 +msgid "Alert fired on agent" +msgstr "" + +#: ../../include/functions_agents.php:3631 +msgid "Average time of SAPGUI response " +msgstr "" + +#: ../../include/functions_agents.php:3633 +msgid "Dialog Logged users " +msgstr "" + +#: ../../include/functions_integriaims.php:41 +msgid "Configure Integria IMS" +msgstr "" + +#: ../../include/functions_integriaims.php:42 +msgid "Ticket list" +msgstr "" + +#: ../../include/functions_integriaims.php:43 +msgid "New ticket" +msgstr "" + +#: ../../include/functions_integriaims.php:72 +msgid "Edit ticket" +msgstr "" + +#: ../../include/functions_integriaims.php:73 +msgid "View ticket" +msgstr "" + +#: ../../include/functions_integriaims.php:209 +msgid "" +"API request failed. Please check Integria IMS' access credentials in Pandora " +"setup." +msgstr "" + +#: ../../include/functions_modules.php:3465 +msgid "Realtime SNMP graph" +msgstr "" + +#: ../../include/functions_modules.php:3528 +msgid "ALL" +msgstr "" + +#: ../../include/functions_modules.php:3536 +#: ../../include/class/Tree.class.php:601 +#: ../../operation/agentes/status_monitor.php:1444 +#: ../../operation/agentes/status_monitor.php:1450 +msgid "NO DATA" +msgstr "" + +#: ../../include/functions_modules.php:3544 +msgid "NOT NORMAL" +msgstr "" + +#: ../../include/auth/mysql.php:276 ../../include/auth/mysql.php:313 +msgid "" +"Problems with configuration permissions. Please contact with Administrator" +msgstr "" + +#: ../../include/auth/mysql.php:280 ../../include/auth/mysql.php:291 +#: ../../include/auth/mysql.php:317 +msgid "Your permissions have changed. Please, login again." +msgstr "" + +#: ../../include/auth/mysql.php:300 ../../include/auth/mysql.php:403 +#: ../../include/auth/mysql.php:423 +msgid "User not found in database or incorrect password" +msgstr "" + +#: ../../include/auth/mysql.php:331 +msgid "" +"Ooops User not found in \n" +"\t\t\t\tdatabase or incorrect password" +msgstr "" + +#: ../../include/auth/mysql.php:349 ../../include/auth/mysql.php:390 +#: ../../include/auth/mysql.php:442 +msgid "Fail the group synchronizing" +msgstr "" + +#: ../../include/auth/mysql.php:355 ../../include/auth/mysql.php:396 +#: ../../include/auth/mysql.php:448 +msgid "Fail the tag synchronizing" +msgstr "" + +#: ../../include/auth/mysql.php:376 +msgid "" +"User not found in database \n" +"\t\t\t\t\tor incorrect password" +msgstr "" + +#: ../../include/auth/mysql.php:753 +msgid "Could not changes password on remote pandora" +msgstr "" + +#: ../../include/auth/mysql.php:801 +msgid "Your installation of PHP does not support LDAP" +msgstr "" + +#: ../../include/api.php:206 +msgid "User or group not specified" +msgstr "" + +#: ../../include/api.php:207 +msgid "User, group not specified" +msgstr "" + +#: ../../include/api.php:238 +msgid "User, group or profile not specified" +msgstr "" + +#: ../../include/api.php:239 +msgid "User, group or profile status not specified" +msgstr "" + +#: ../../include/functions_graph.php:1020 +msgid "No data to display within the selected interval" +msgstr "" + +#: ../../include/functions_graph.php:2467 +msgid "Not fired alerts" +msgstr "" + +#: ../../include/functions_graph.php:2486 +#: ../../include/functions_graph.php:2604 +#: ../../include/functions_graph.php:2702 +#: ../../include/functions_graph.php:3276 +#: ../../include/functions_graph.php:3806 +#: ../../include/functions_reporting.php:1669 +#: ../../include/functions_reporting.php:1883 +#: ../../include/functions_reporting.php:1908 +#: ../../include/functions_reporting.php:1935 +#: ../../include/functions_reporting.php:1962 +#: ../../include/functions_reporting.php:2809 +#: ../../include/functions_reporting.php:3060 +#: ../../include/functions_reporting.php:3087 +#: ../../include/functions_reporting.php:3114 +#: ../../include/functions_reporting.php:8248 +#: ../../include/functions_reporting.php:8275 +#: ../../include/functions_reporting.php:8302 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:493 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:449 +msgid "other" +msgstr "" + +#: ../../include/functions_graph.php:2878 +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:55 +msgid "Informative" +msgstr "" + +#: ../../include/functions_graph.php:2879 +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:59 +#: ../../include/functions_netflow.php:1588 +msgid "Low" +msgstr "" + +#: ../../include/functions_graph.php:2880 +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:63 +#: ../../include/functions_netflow.php:1589 +msgid "Medium" +msgstr "" + +#: ../../include/functions_graph.php:2881 +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:67 +msgid "Serious" +msgstr "" + +#: ../../include/functions_graph.php:2882 +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:71 +msgid "Very serious" +msgstr "" + +#: ../../include/functions_graph.php:2921 +#: ../../include/functions_graph.php:2944 +msgid "Open incident" +msgstr "" + +#: ../../include/functions_graph.php:2922 +#: ../../include/functions_graph.php:2948 +msgid "Closed incident" +msgstr "" + +#: ../../include/functions_graph.php:2923 +#: ../../include/functions_graph.php:2952 +msgid "Outdated" +msgstr "" + +#: ../../include/functions_graph.php:3258 +#: ../../include/functions_events.php:2419 +#: ../../include/functions_events.php:3155 +#: ../../include/functions_events.php:3435 +#: ../../include/functions_events.php:3444 +#: ../../include/functions_events.php:3451 +#: ../../include/functions_events.php:3458 +#: ../../include/functions_events.php:5548 +#: ../../include/functions_events.php:5556 +#: ../../operation/snmpconsole/snmp_view.php:564 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1153 +msgid "Validated" +msgstr "" + +#: ../../include/functions_graph.php:3387 ../../include/functions_ui.php:3597 +#: ../../include/functions_events.php:98 +#: ../../include/functions_events.php:2686 +#: ../../operation/events/events.php:1799 +msgid "SYSTEM" +msgstr "" + +#: ../../include/functions_graph.php:5350 +msgid "Main node" +msgstr "" + +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 +#: ../../include/functions_gis.php:36 +msgid "Hierarchy of agents" +msgstr "" + +#: ../../include/functions_treeview.php:52 +msgid "There was a problem loading module" +msgstr "" + +#: ../../include/functions_treeview.php:346 +msgid "Go to module edition" +msgstr "" + +#: ../../include/functions_treeview.php:397 +msgid "There was a problem loading alerts" +msgstr "" + +#: ../../include/functions_treeview.php:482 +msgid "Go to alerts edition" +msgstr "" + +#: ../../include/functions_treeview.php:554 +#: ../../operation/agentes/agent_fields.php:24 +#: ../../operation/agentes/custom_fields.php:24 +#: ../../operation/agentes/estado_generalagente.php:63 +msgid "There was a problem loading agent" +msgstr "" + +#: ../../include/functions_treeview.php:615 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Other IP addresses" +msgstr "" + +#: ../../include/functions_treeview.php:653 +msgid "Next agent contact" +msgstr "" + +#: ../../include/functions_treeview.php:680 +msgid "Edit cluster" +msgstr "" + +#: ../../include/functions_treeview.php:684 +msgid "Go to agent edition" +msgstr "" + +#: ../../include/functions_treeview.php:696 +msgid "Agent data" +msgstr "" + +#: ../../include/functions_treeview.php:727 +#: ../../operation/agentes/estado_generalagente.php:407 +msgid "Position (Long, Lat)" +msgstr "" + +#: ../../include/functions_treeview.php:744 +#: ../../operation/agentes/estado_generalagente.php:449 +msgid "Timezone Offset" +msgstr "" + +#: ../../include/functions_treeview.php:776 +msgid "Advanced information" +msgstr "" + +#: ../../include/functions_treeview.php:789 +msgid "Agent access rate (24h)" +msgstr "" + +#: ../../include/functions_treeview.php:872 +msgid "Interface information" +msgstr "" + +#: ../../include/functions_menu.php:493 +msgid "Configure user" +msgstr "" + +#: ../../include/functions_menu.php:494 +msgid "Configure profile" +msgstr "" + +#: ../../include/functions_menu.php:496 +msgid "Manage recontask" +msgstr "" + +#: ../../include/functions_menu.php:498 +msgid "Module templates management" +msgstr "" + +#: ../../include/functions_menu.php:499 +msgid "Inventory modules management" +msgstr "" + +#: ../../include/functions_menu.php:504 +msgid "View agent" +msgstr "" + +#: ../../include/functions_menu.php:508 +msgid "Manage network map" +msgstr "" + +#: ../../include/functions_menu.php:510 +msgid "Builder visual console" +msgstr "" + +#: ../../include/functions_menu.php:512 +msgid "Administration events" +msgstr "" + +#: ../../include/functions_menu.php:514 +msgid "View reporting" +msgstr "" + +#: ../../include/functions_menu.php:515 +msgid "Graph viewer" +msgstr "" + +#: ../../include/functions_menu.php:517 +msgid "Manage custom graphs" +msgstr "" + +#: ../../include/functions_menu.php:518 +msgid "View graph containers" +msgstr "" + +#: ../../include/functions_menu.php:519 +msgid "Manage graph containers" +msgstr "" + +#: ../../include/functions_menu.php:520 +msgid "View graph templates" +msgstr "" + +#: ../../include/functions_menu.php:521 +msgid "Manage graph templates" +msgstr "" + +#: ../../include/functions_menu.php:522 +msgid "Graph template items" +msgstr "" + +#: ../../include/functions_menu.php:523 +msgid "Graph template wizard" +msgstr "" + +#: ../../include/functions_menu.php:526 +msgid "Manage GIS Maps" +msgstr "" + +#: ../../include/functions_menu.php:529 +msgid "Incidents statistics" +msgstr "" + +#: ../../include/functions_menu.php:530 +msgid "Manage messages" +msgstr "" + +#: ../../include/functions_menu.php:532 +msgid "Manage groups" +msgstr "" + +#: ../../include/functions_menu.php:533 +msgid "Manage module groups" +msgstr "" + +#: ../../include/functions_menu.php:534 +msgid "Manage custom field" +msgstr "" + +#: ../../include/functions_menu.php:536 +msgid "Manage alert actions" +msgstr "" + +#: ../../include/functions_menu.php:537 +msgid "Manage commands" +msgstr "" + +#: ../../include/functions_menu.php:538 +msgid "Manage event alerts" +msgstr "" + +#: ../../include/functions_menu.php:540 +msgid "Manage export targets" +msgstr "" + +#: ../../include/functions_menu.php:542 +msgid "Manage services" +msgstr "" + +#: ../../include/functions_menu.php:544 ../../operation/menu.php:147 +msgid "SNMP filters" +msgstr "" + +#: ../../include/functions_menu.php:546 ../../operation/menu.php:148 +msgid "SNMP trap generator" +msgstr "" + +#: ../../include/functions_menu.php:547 ../../operation/menu.php:137 +msgid "SNMP console" +msgstr "" + +#: ../../include/functions_menu.php:549 +msgid "Manage incident" +msgstr "" + +#: ../../include/functions_menu.php:602 +msgid "Administration" +msgstr "" + +#: ../../include/functions_incidents.php:95 +#: ../../include/functions_incidents.php:116 +msgid "Active incidents" +msgstr "" + +#: ../../include/functions_incidents.php:96 +#: ../../include/functions_incidents.php:120 +msgid "Active incidents, with comments" +msgstr "" + +#: ../../include/functions_incidents.php:97 +#: ../../include/functions_incidents.php:124 +msgid "Rejected incidents" +msgstr "" + +#: ../../include/functions_incidents.php:98 +#: ../../include/functions_incidents.php:128 +msgid "Expired incidents" +msgstr "" + +#: ../../include/functions_incidents.php:99 +#: ../../include/functions_incidents.php:132 +msgid "Closed incidents" +msgstr "" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "Topology Group" +msgstr "" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "" +"Please note that group topology maps do not show the parent relationship " +"between nodes, it only shows the group parentship and the agent distribution " +"inside them. " +msgstr "" + +#: ../../include/help/clippy/homepage.php:75 +msgid "Hi, can I help you?" +msgstr "" + +#: ../../include/help/clippy/homepage.php:75 +#, php-format +msgid "" +"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You " +"can follow my steps to do basic tasks in %s or you can close me and never " +"see me again." +msgstr "" + +#: ../../include/help/clippy/homepage.php:75 +msgid "Close this wizard and don't open it again." +msgstr "" + +#: ../../include/help/clippy/homepage.php:79 +msgid "Which task would you like to do first?" +msgstr "" + +#: ../../include/help/clippy/homepage.php:79 +#, php-format +msgid "Ping a Linux or Windows server using a %s agent." +msgstr "" + +#: ../../include/help/clippy/homepage.php:79 +msgid "Create a alert by email in a critical module." +msgstr "" + +#: ../../include/help/clippy/homepage.php:190 +#, php-format +msgid "" +"The first thing you have to do is to setup the e-mail config on the %s " +"Server." +msgstr "" + +#: ../../include/help/clippy/homepage.php:190 +msgid "If you have it already configured you can go to the next step." +msgstr "" + +#: ../../include/help/clippy/homepage.php:195 +msgid "Now, pull down the Manage alerts menu and click on Actions. " +msgstr "" + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "You have unknown modules in this agent." +msgstr "" + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "" +"Unknown modules are modules which receive data normally at least in one " +"occassion, but at this time are not receving data. Please check our " +"troubleshoot help page to help you determine why you have unknown modules." +msgstr "" + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"Please note that you have your agent setup to do not add new modules coming " +"from the data XML." +msgstr "" + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"That means if you have a local plugin or add manually new modules to the " +"configuration file, you won't have it in your agent, unless you first create " +"manually in the interface (with the exact name and type as coming in the XML " +"file)." +msgstr "" + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"You should use the \"normal\" mode (non learn) only when you don't intend to " +"add more modules to the agent." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 +msgid "" +"The last step is to check the alert created. Click on the round icon to " +"force the action execution and after a few minutes you will receive the " +"alert in your email." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 +msgid "" +"And restart your pandora server to read again general configuration tokens." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 +msgid "" +"Let me show you how to create an email action: Click on Create button and " +"fill the form showed in the following screen." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 +msgid "" +"Now, you have to go to the monitors list and look for a critical module to " +"apply the alert." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 +msgid "" +"Click on the arrow to drop down the Monitoring submenu and select Monitor " +"Detail." +msgstr "" + +#: ../../include/help/clippy/agent_out_of_limits.php:35 +msgid "Agent contact date passed it's ETA!." +msgstr "" + +#: ../../include/help/clippy/agent_out_of_limits.php:35 +msgid "" +"This happen when your agent stopped reporting or the server have any problem " +"(too load or just down). Check also connectivity between the agent and the " +"server." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 +msgid "I'm going to show you how to monitor a server." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 +msgid "Please, type an agent to save the modules for monitoring a server." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 +msgid "If you have typed the name correctly you will see the agent." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 +msgid "Now, please choose the agent you searched." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 +msgid "Choose the agent and click on the name." +msgstr "" + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "You have non initialized modules" +msgstr "" + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "" +"This happen when you have just created a module and it's not executed at " +"first time. Usually in a few seconds should be initialized and you will be " +"able to see in main view. If you keep non-init modules for more than 24hr " +"(due a problem in it's execution or configuration) they will be " +"automatically deleted by the system. Non-init are not visible in the “main " +"view”, you can see/edit them in the module administration section, in the " +"agent administrator." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 +msgid "Fill the name of your action." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 +msgid "" +"Select the group in the drop-down list and filter for ACL (the user in this " +"group can use your action to create an alert)." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42 +msgid "In the command field select \"email\"." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 +msgid "" +"In the threshold field enter the seconds. The help icon show more " +"information." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 +msgid "" +"In the first field enter the email address/addresses where you want to " +"receive the email alerts separated with comas ( , ) or white spaces." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 +msgid "" +"In the \"Subject\" field you can use the macros _agent_ or _module_ for " +"each name." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 +msgid "" +"In the text field, you can also use macros. Get more information about the " +"macros by clicking on the help icon." +msgstr "" + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 +msgid "Click on Create button to create the action." +msgstr "" + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "Data Configuration Module." +msgstr "" + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Please note that information provided here affects how the agent collect " +"information and generate the data XML. Any data/configuration reported by " +"the agent, different from data or description is discarded, and the " +"configuration shown in the console prevails over any configuration coming " +"from the agent, this applies for example for crit/warn thresholds, interval, " +"module group, min/max value, tags, etc." +msgstr "" + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Information imported FIRST time from the XML will fill the information you " +"can see in the console, but after the first import, system will ignore any " +"update coming from the XML/Agent." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 +msgid "Now you must go to Modules. Don't worry I'll lead you." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 +msgid "Click in this tab.." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 +msgid "Now you must create the module. Don't worry, i'll teach you." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 +msgid "Choose the network server module." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 +msgid "And click the button." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 +msgid "Now you must create the module. Don't worry, i'll teach you ." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 +msgid "Now we are going to fill the form." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 +msgid "Please choose Network Management." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 +msgid "Choose the component named \"Host alive\"." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 +msgid "You can change the name if you want." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 +msgid "Check if the IP showed is the IP of your machine." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 +msgid "And only to finish it is clicking this button." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 +msgid "" +"Congrats! Your module has been created.
and the status color is " +"blue.
That color means that the module hasn't been executed for " +"the first time. In the next seconds, if there is no problem, the status " +"color will turn into red or green." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 +msgid "Select the critical module." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "Click on Add Alert button to create the alert." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 +msgid "" +"To test the alert you've just created go to the main view by clicking on the " +"eye tab." +msgstr "" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your " +"server is too loaded and/or not properly configured. This could be something " +"temporal, or a bottleneck. One possible solution is increase number of " +"server threads, but you should consider getting support about this." +msgstr "" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next " +"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " +"introduce root pass." +msgstr "" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds " +"is not recommended. This will impact seriously in the performance of the " +"server. For example, having 200 agents with one minute interval, is the same " +"than having 1000 agents with a 5 minute interval. The probability of getting " +"unknown modules is higher, and the impact on the server is higher because it " +"requires a shorter response time." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module " +"to apply the alert." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical " +"status, type it in this field to make the module list shorter. You can write " +"the entire name or just a part of it." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "" +"The configuration of email for the task email is in the enterprise setup:" +msgstr "" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "Please check if the email configuration is correct." +msgstr "" + +#: ../../include/functions_profile.php:188 +#: ../../operation/users/user_edit.php:722 +#: ../../operation/users/user_edit.php:731 +msgid "Profiles/Groups assigned to this user" +msgstr "" + +#: ../../include/functions_network.php:98 +msgid "Top listeners" +msgstr "" + +#: ../../include/functions_network.php:99 +msgid "Top talkers" +msgstr "" + +#: ../../include/functions_network.php:109 +msgid "Top TCP protocols" +msgstr "" + +#: ../../include/functions_network.php:110 +msgid "Top UDP protocols" +msgstr "" + +#: ../../include/functions_ui.php:280 +msgid "Information" +msgstr "" + +#: ../../include/functions_ui.php:454 +msgid "Request successfully processed" +msgstr "" + +#: ../../include/functions_ui.php:458 +msgid "Error processing request" +msgstr "" + +#: ../../include/functions_ui.php:615 +msgid "" +"Is possible that this view uses part of information which your user has not " +"access" +msgstr "" + +#: ../../include/functions_ui.php:857 +msgid "Software" +msgstr "" + +#: ../../include/functions_ui.php:1331 +msgid "The alert would fire when the value is over " +msgstr "" + +#: ../../include/functions_ui.php:1336 +msgid "The alert would fire when the value is under " +msgstr "" + +#: ../../include/functions_ui.php:1351 +msgid "Unknown option." +msgstr "" + +#: ../../include/functions_ui.php:1699 ../../include/functions_config.php:2115 +msgid "the Flexible Monitoring System" +msgstr "" + +#: ../../include/functions_ui.php:2074 ../../include/functions_ui.php:2100 +#, php-format +msgid "Total items: %s" +msgstr "" + +#: ../../include/functions_ui.php:2499 +msgid "Unknown type" +msgstr "" + +#: ../../include/functions_ui.php:3431 ../../include/functions_ui.php:3432 +msgid "Export current page to CSV" +msgstr "" + +#: ../../include/functions_ui.php:3588 ../../include/functions_events.php:65 +#: ../../include/functions_events.php:91 ../../operation/events/events.php:1790 +#: ../../operation/events/events.php:1855 +msgid "ALERT" +msgstr "" + +#: ../../include/functions_ui.php:3666 ../../include/functions_events.php:157 +#: ../../operation/events/events.php:1724 +msgid "MAINTENANCE" +msgstr "" + +#: ../../include/functions_ui.php:3671 ../../include/functions_events.php:160 +#: ../../operation/events/events.php:1729 +msgid "INFORMATIONAL" +msgstr "" + +#: ../../include/functions_ui.php:3691 ../../include/functions_events.php:166 +#: ../../operation/events/events.php:1739 +msgid "MINOR" +msgstr "" + +#: ../../include/functions_ui.php:3696 ../../include/functions_events.php:163 +#: ../../operation/events/events.php:1734 +msgid "MAJOR" +msgstr "" + +#: ../../include/functions_ui.php:4560 +msgid "Type at least two characters to search." +msgstr "" + +#: ../../include/functions_ui.php:5480 +msgid "Unhandled error" +msgstr "" + +#: ../../include/functions_ui.php:5481 +msgid "An unhandled error occurs" +msgstr "" + +#: ../../include/functions_ui.php:5747 +#, php-format +msgid "" +"These controls are using the timezone of the system (%s) instead of yours " +"(%s). The difference with your time zone in hours is %s." +msgstr "" + +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:226 +msgid "Last value: " +msgstr "" + +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:2816 +msgid "Modules successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:3147 +msgid "Agents successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:3552 +msgid "Cannot load the visualmap" +msgstr "" + +#: ../../include/functions_visual_map.php:4175 +#: ../../include/rest-api/models/VisualConsole/Item.php:1989 +msgid "Bars graph" +msgstr "" + +#: ../../include/functions_visual_map.php:4185 +#: ../../include/rest-api/models/VisualConsole/Item.php:1997 +msgid "Percentile bar" +msgstr "" + +#: ../../include/functions_visual_map.php:4190 +#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +msgid "Circular progress bar" +msgstr "" + +#: ../../include/functions_clippy.php:152 +#, php-format +msgid "%s assistant" +msgstr "" + +#: ../../include/functions_clippy.php:189 +#: ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "" + +#: ../../include/functions_alerts.php:657 +msgid "Max and min" +msgstr "" + +#: ../../include/functions_alerts.php:660 +msgid "Equal to" +msgstr "" + +#: ../../include/functions_alerts.php:661 +msgid "Not equal to" +msgstr "" + +#: ../../include/functions_alerts.php:665 +msgid "On Change" +msgstr "" + +#: ../../include/functions_alerts.php:667 +msgid "Not normal status" +msgstr "" + +#: ../../include/functions_alerts.php:1691 +msgid "No actions defined" +msgstr "" + +#: ../../include/functions_alerts.php:2764 +msgid "Alert and command group does not match" +msgstr "" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "" + +#: ../../include/functions_db.php:115 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "" + +#: ../../include/functions_db.php:1749 +msgid "Database debug" +msgstr "" + +#: ../../include/functions_db.php:1765 +msgid "SQL sentence" +msgstr "" + +#: ../../include/functions_db.php:1767 +msgid "Rows" +msgstr "" + +#: ../../include/functions_db.php:1768 +msgid "Saved" +msgstr "" + +#: ../../include/functions_db.php:1769 +msgid "Time (ms)" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:437 +msgid "Add new range" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:494 +msgid "Current ranges" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1876 +msgid "width" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:1886 +msgid "height" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:1908 +msgid "X" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:493 +#: ../../include/rest-api/models/VisualConsole/Item.php:1945 +msgid "Show on top" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:347 +msgid "Show Last Value" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 +msgid "Avg Value" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:468 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 +msgid "Graph Type" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:229 +msgid "12h" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:656 +#: ../../include/lib/Dashboard/Widgets/service_map.php:254 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:285 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:295 +msgid "Show legend" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:64 +msgid "Label settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:69 +#: ../../include/rest-api/models/VisualConsole/View.php:98 +msgid "General settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:74 +#: ../../include/rest-api/models/VisualConsole/View.php:88 +#: ../../include/rest-api/models/VisualConsole/View.php:103 +msgid "Specific settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:206 +msgid "Item type not valid [" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:211 +msgid "Item type has no getFormInputs method [" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1846 +msgid "Label position" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1933 +msgid "Link enabled" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1975 +msgid "Static graph" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1993 +msgid "Event History Graph" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2001 +msgid "Percentile bubble" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2454 +#: ../../include/rest-api/models/VisualConsole/Item.php:2455 +msgid "Image Vc" +msgstr "" + +#: ../../include/functions_notifications.php:722 +msgid "Notified users" +msgstr "" + +#: ../../include/functions_notifications.php:722 +msgid "Notified groups" +msgstr "" + +#: ../../include/functions_notifications.php:723 +msgid "Add users" +msgstr "" + +#: ../../include/functions_notifications.php:723 +msgid "Add groups" +msgstr "" + +#: ../../include/functions_notifications.php:724 +msgid "Delete users" +msgstr "" + +#: ../../include/functions_notifications.php:724 +msgid "Delete groups" +msgstr "" + +#: ../../include/functions_notifications.php:820 +msgid "Add elements" +msgstr "" + +#: ../../include/functions_notifications.php:832 +msgid "Remove elements" +msgstr "" + +#: ../../include/functions_notifications.php:949 +msgid "Click here to get more information" +msgstr "" + +#: ../../include/functions_reports.php:631 +#: ../../include/functions_reports.php:635 +#: ../../include/functions_reports.php:640 +#: ../../include/functions_reports.php:646 +#: ../../include/functions_reports.php:652 +#: ../../include/functions_reports.php:656 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:667 +#: ../../include/functions_reports.php:673 +#: ../../include/functions_reports.php:678 +#: ../../include/functions_groups.php:123 +#: ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:118 +#: ../../operation/agentes/ver_agente.php:1266 +msgid "Graphs" +msgstr "" + +#: ../../include/functions_reports.php:632 +#: ../../include/functions_reporting.php:7717 +#: ../../include/functions_reporting.php:7864 +msgid "Simple graph" +msgstr "" + +#: ../../include/functions_reports.php:661 +msgid "SQL horizonal bar graph" +msgstr "" + +#: ../../include/functions_reports.php:668 +msgid "Automatic combined Graph" +msgstr "" + +#: ../../include/functions_reports.php:674 +msgid "Availability graph" +msgstr "" + +#: ../../include/functions_reports.php:679 +msgid "Module Histogram graph" +msgstr "" + +#: ../../include/functions_reports.php:709 +#: ../../include/functions_reports.php:713 +msgid "Forecasting" +msgstr "" + +#: ../../include/functions_reports.php:714 +msgid "Projection graph" +msgstr "" + +#: ../../include/functions_reports.php:719 +msgid "Avg. Value" +msgstr "" + +#: ../../include/functions_reports.php:731 +msgid "Monitor report" +msgstr "" + +#: ../../include/functions_reports.php:735 +msgid "Serialize data" +msgstr "" + +#: ../../include/functions_reports.php:743 +msgid "Historical Data" +msgstr "" + +#: ../../include/functions_reports.php:751 +#: ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:763 +#: ../../include/functions_reports.php:769 +#: ../../include/functions_reports.php:775 +#: ../../include/functions_reports.php:784 +#: ../../include/functions_reports.php:790 +#: ../../include/functions_reports.php:794 +#: ../../include/functions_reports.php:798 +msgid "Grouped" +msgstr "" + +#: ../../include/functions_reports.php:795 +msgid "Network interfaces" +msgstr "" + +#: ../../include/functions_reports.php:803 +#: ../../include/functions_reports.php:807 +msgid "Text/HTML " +msgstr "" + +#: ../../include/functions_reports.php:808 +msgid "Import text from URL" +msgstr "" + +#: ../../include/functions_reports.php:813 +msgid "Module alert report" +msgstr "" + +#: ../../include/functions_reports.php:817 +msgid "Agent alert report " +msgstr "" + +#: ../../include/functions_reports.php:822 +msgid "Group alert report" +msgstr "" + +#: ../../include/functions_reports.php:828 +msgid "Module event report" +msgstr "" + +#: ../../include/functions_reports.php:832 +msgid "Agent event report" +msgstr "" + +#: ../../include/functions_reports.php:836 +msgid "Group event report" +msgstr "" + +#: ../../include/functions_reports.php:847 +msgid "Inventory changes" +msgstr "" + +#: ../../include/functions_reports.php:855 +#: ../../include/functions_reporting.php:4703 +msgid "Agent configuration" +msgstr "" + +#: ../../include/functions_reports.php:859 +#: ../../include/functions_reporting.php:3440 +msgid "Group configuration" +msgstr "" + +#: ../../include/functions_reports.php:863 +msgid "Netflow area chart" +msgstr "" + +#: ../../include/functions_reports.php:867 +msgid "Netflow data table" +msgstr "" + +#: ../../include/functions_reports.php:871 +msgid "Netflow summary table" +msgstr "" + +#: ../../include/functions_reports.php:885 +msgid "Network Traffic Top N" +msgstr "" + +#: ../../include/functions_html.php:1435 +msgid "weeks" +msgstr "" + +#: ../../include/functions_html.php:1596 +msgid "Month day" +msgstr "" + +#: ../../include/functions_html.php:1598 +msgid "Week day" +msgstr "" + +#: ../../include/functions_html.php:3537 +msgid "Type at least two characters to search the module." +msgstr "" + +#: ../../include/functions_html.php:3694 +#, php-format +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "" + +#: ../../include/functions_html.php:4371 +msgid "Type at least two characters to search the user." +msgstr "" + +#: ../../include/functions_config.php:127 +msgid "Failed updated: User did not login." +msgstr "" + +#: ../../include/functions_config.php:135 +msgid "Failed updated: User is not admin." +msgstr "" + +#: ../../include/functions_config.php:169 +msgid "phantomjs config directory" +msgstr "" + +#: ../../include/functions_config.php:185 +msgid "SSL cert path" +msgstr "" + +#: ../../include/functions_config.php:193 +msgid "Use cert." +msgstr "" + +#: ../../include/functions_config.php:213 +msgid "Integria inventory" +msgstr "" + +#: ../../include/functions_config.php:217 +#: ../../include/functions_config.php:1522 +msgid "Integria API password" +msgstr "" + +#: ../../include/functions_config.php:221 +msgid "Integria URL" +msgstr "" + +#: ../../include/functions_config.php:261 +msgid "License information" +msgstr "" + +#: ../../include/functions_config.php:307 +msgid "Limit parameters bulk" +msgstr "" + +#: ../../include/functions_config.php:311 +msgid "Identification_reminder" +msgstr "" + +#: ../../include/functions_config.php:315 +msgid "Include_agents" +msgstr "" + +#: ../../include/functions_config.php:319 +msgid "alias_as_name" +msgstr "" + +#: ../../include/functions_config.php:327 +msgid "unique_ip" +msgstr "" + +#: ../../include/functions_config.php:359 +msgid "WebSocket bind address" +msgstr "" + +#: ../../include/functions_config.php:363 +msgid "WebSocket port" +msgstr "" + +#: ../../include/functions_config.php:412 +msgid "Replication DB engine" +msgstr "" + +#: ../../include/functions_config.php:416 +msgid "Replication DB host" +msgstr "" + +#: ../../include/functions_config.php:420 +msgid "Replication DB database" +msgstr "" + +#: ../../include/functions_config.php:424 +msgid "Replication DB user" +msgstr "" + +#: ../../include/functions_config.php:428 +msgid "Replication DB password" +msgstr "" + +#: ../../include/functions_config.php:432 +msgid "Replication DB port" +msgstr "" + +#: ../../include/functions_config.php:436 +msgid "Metaconsole agent cache" +msgstr "" + +#: ../../include/functions_config.php:444 +msgid "Enable Update Manager" +msgstr "" + +#: ../../include/functions_config.php:452 +msgid "Ipam Ocuppied Manager Critical" +msgstr "" + +#: ../../include/functions_config.php:456 +msgid "Ipam Ocuppied Manager Warning" +msgstr "" + +#: ../../include/functions_config.php:709 +msgid "Saml profile parameters" +msgstr "" + +#: ../../include/functions_config.php:771 +msgid "Max. days before autodisable deletion" +msgstr "" + +#: ../../include/functions_config.php:775 +msgid "Item limit for realtime reports)" +msgstr "" + +#: ../../include/functions_config.php:807 +msgid "Big Operatiopn Step to purge old data" +msgstr "" + +#: ../../include/functions_config.php:841 +msgid "Max execution event response" +msgstr "" + +#: ../../include/functions_config.php:921 +msgid "Show QR code header" +msgstr "" + +#: ../../include/functions_config.php:945 +msgid "Custom logo collapsed" +msgstr "" + +#: ../../include/functions_config.php:949 +msgid "Custom logo white background" +msgstr "" + +#: ../../include/functions_config.php:977 +msgid "Custom title header" +msgstr "" + +#: ../../include/functions_config.php:981 +msgid "Custom subtitle header" +msgstr "" + +#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1041 +msgid "Custom Docs url" +msgstr "" + +#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1045 +msgid "Custom support url" +msgstr "" + +#: ../../include/functions_config.php:1013 +msgid "Custom logo metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1017 +msgid "Custom logo metaconsole (white background)" +msgstr "" + +#: ../../include/functions_config.php:1021 +msgid "Custom logo login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1025 +msgid "Custom splash login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1029 +msgid "Custom title1 login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1033 +msgid "Custom title2 login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1037 +msgid "Login background metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1061 +msgid "Default line favourite_view for the Visual Console" +msgstr "" + +#: ../../include/functions_config.php:1065 +msgid "Default line menu items for the Visual Console" +msgstr "" + +#: ../../include/functions_config.php:1073 +msgid "Default line menu items for the Services" +msgstr "" + +#: ../../include/functions_config.php:1105 +msgid "Show units in values report" +msgstr "" + +#: ../../include/functions_config.php:1113 +msgid "Autohidden menu" +msgstr "" + +#: ../../include/functions_config.php:1117 +msgid "visual_animation" +msgstr "" + +#: ../../include/functions_config.php:1125 +msgid "Fixed graph" +msgstr "" + +#: ../../include/functions_config.php:1133 +msgid "Paginate module" +msgstr "" + +#: ../../include/functions_config.php:1145 +msgid "Shortened module graph data" +msgstr "" + +#: ../../include/functions_config.php:1157 +msgid "Default type of module charts." +msgstr "" + +#: ../../include/functions_config.php:1161 +msgid "Default type of interface charts." +msgstr "" + +#: ../../include/functions_config.php:1178 +msgid "Display lateral menus with left click" +msgstr "" + +#: ../../include/functions_config.php:1188 +msgid "Service item padding size" +msgstr "" + +#: ../../include/functions_config.php:1193 +msgid "Default percentil" +msgstr "" + +#: ../../include/functions_config.php:1197 +msgid "Default full scale (TIP)" +msgstr "" + +#: ../../include/functions_config.php:1201 +msgid "Default soft graphs" +msgstr "" + +#: ../../include/functions_config.php:1205 +msgid "Default zoom graphs" +msgstr "" + +#: ../../include/functions_config.php:1209 +msgid "Default height of the chart image" +msgstr "" + +#: ../../include/functions_config.php:1230 +msgid "Add the custom post process" +msgstr "" + +#: ../../include/functions_config.php:1238 +msgid "Delete the custom post process" +msgstr "" + +#: ../../include/functions_config.php:1295 +msgid "Add custom module unit" +msgstr "" + +#: ../../include/functions_config.php:1301 +msgid "Delete custom module unit" +msgstr "" + +#: ../../include/functions_config.php:1392 +msgid "IP ElasticSearch server" +msgstr "" + +#: ../../include/functions_config.php:1396 +msgid "Port ElasticSearch server" +msgstr "" + +#: ../../include/functions_config.php:1414 +msgid "Enable history event" +msgstr "" + +#: ../../include/functions_config.php:1450 +msgid "Event Days" +msgstr "" + +#: ../../include/functions_config.php:1476 +msgid "eHorus user login" +msgstr "" + +#: ../../include/functions_config.php:1488 +msgid "eHorus API hostname" +msgstr "" + +#: ../../include/functions_config.php:1492 +msgid "eHorus API port" +msgstr "" + +#: ../../include/functions_config.php:1496 +msgid "eHorus request timeout" +msgstr "" + +#: ../../include/functions_config.php:1500 +msgid "eHorus id custom field" +msgstr "" + +#: ../../include/functions_config.php:1510 +msgid "Integria user" +msgstr "" + +#: ../../include/functions_config.php:1514 +msgid "Integria password" +msgstr "" + +#: ../../include/functions_config.php:1518 +msgid "integria API hostname" +msgstr "" + +#: ../../include/functions_config.php:1526 +msgid "Integria request timeout" +msgstr "" + +#: ../../include/functions_config.php:1530 +msgid "Integria default group" +msgstr "" + +#: ../../include/functions_config.php:1534 +msgid "Integria custom response default group" +msgstr "" + +#: ../../include/functions_config.php:1538 +msgid "Integria default priority" +msgstr "" + +#: ../../include/functions_config.php:1542 +msgid "Integria custom response default priority" +msgstr "" + +#: ../../include/functions_config.php:1546 +msgid "Integria default creator" +msgstr "" + +#: ../../include/functions_config.php:1550 +msgid "Integria default owner" +msgstr "" + +#: ../../include/functions_config.php:1554 +msgid "Integria custom response default owner" +msgstr "" + +#: ../../include/functions_config.php:1558 +msgid "Integria default ticket type" +msgstr "" + +#: ../../include/functions_config.php:1562 +msgid "Integria custom response default ticket type" +msgstr "" + +#: ../../include/functions_config.php:1566 +msgid "Integria default ticket status" +msgstr "" + +#: ../../include/functions_config.php:1570 +msgid "Integria custom response default ticket status" +msgstr "" + +#: ../../include/functions_config.php:1574 +msgid "Integria default ticket title" +msgstr "" + +#: ../../include/functions_config.php:1578 +msgid "Integria custom response default ticket title" +msgstr "" + +#: ../../include/functions_config.php:1582 +msgid "Integria default ticket content" +msgstr "" + +#: ../../include/functions_config.php:1586 +msgid "Integria custom response default ticket content" +msgstr "" + +#: ../../include/functions_config.php:1616 +#, php-format +msgid "Failed updated: the next values cannot update: %s" +msgstr "" + +#: ../../include/functions_config.php:2111 +#: ../../operation/agentes/networkmap.dinamic.php:217 +msgid "Pandora FMS" +msgstr "" + +#: ../../include/functions_config.php:2119 +msgid "PANDORA FMS" +msgstr "" + +#: ../../include/get_file.php:39 +msgid "Security error. Please contact the administrator." +msgstr "" + +#: ../../include/get_file.php:69 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" + +#: ../../include/functions_netflow.php:346 +msgid "Total flows" +msgstr "" + +#: ../../include/functions_netflow.php:351 +msgid "Total bytes" +msgstr "" + +#: ../../include/functions_netflow.php:356 +msgid "Total packets" +msgstr "" + +#: ../../include/functions_netflow.php:361 +msgid "Average bits per second" +msgstr "" + +#: ../../include/functions_netflow.php:366 +msgid "Average packets per second" +msgstr "" + +#: ../../include/functions_netflow.php:371 +msgid "Average bytes per packet" +msgstr "" + +#: ../../include/functions_netflow.php:1027 +msgid "Area graph" +msgstr "" + +#: ../../include/functions_netflow.php:1029 +#: ../../operation/agentes/exportdata.php:361 +msgid "Data table" +msgstr "" + +#: ../../include/functions_netflow.php:1030 +msgid "Circular mesh" +msgstr "" + +#: ../../include/functions_netflow.php:1031 +#: ../../include/functions_netflow.php:1243 +msgid "Host detailed traffic" +msgstr "" + +#: ../../include/functions_netflow.php:1371 +msgid "Dst port" +msgstr "" + +#: ../../include/functions_netflow.php:1374 +msgid "Dst IP" +msgstr "" + +#: ../../include/functions_netflow.php:1377 +msgid "Src IP" +msgstr "" + +#: ../../include/functions_netflow.php:1380 +msgid "Src port" +msgstr "" + +#: ../../include/functions_netflow.php:1566 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "" + +#: ../../include/functions_netflow.php:1573 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "" + +#: ../../include/functions_netflow.php:1590 +msgid "High" +msgstr "" + +#: ../../include/functions_netflow.php:1591 +msgid "Ultra High" +msgstr "" + +#: ../../include/functions_netflow.php:1624 +#, php-format +msgid "Agregate by %s" +msgstr "" + +#: ../../include/functions_netflow.php:1632 +#, php-format +msgid "Resolution %s" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:422 +#: ../../include/class/ConfigPEN.class.php:591 +#: ../../include/class/ModuleTemplates.class.php:989 +msgid "PEN" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:429 +#: ../../include/class/ConfigPEN.class.php:592 +msgid "Manufacturer" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:477 +msgid "PEN is required" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:503 +msgid "PEN is required." +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:507 +msgid "Manufacturer is required" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:524 +msgid "This PEN definition does not exist" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:538 +msgid "created" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:544 +msgid "This PEN definition already exists" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:558 +msgid "updated" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:565 +#, php-format +msgid "Succesfully %s" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:645 +msgid "Register manufacturer" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:661 +msgid "Are you sure you want to delete this PEN?" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:688 +msgid "Register new manufacturer" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:104 +msgid "Browser not compatible." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:147 +msgid "Suggestion" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:158 +msgid "Something is wrong" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:171 +msgid "What happened?" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:181 +msgid "Your Email" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:198 +#: ../../operation/incidents/incident_detail.php:404 +msgid "Submit" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1958 ../../general/header.php:344 +#: ../../general/header.php:346 +msgid "Feedback" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:252 +msgid "[pandorafms wiki] New suggestion" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:254 +msgid "[pandorafms wiki] New report" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:260 +msgid "Please provide your email address, we promise not to bother you" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:308 +msgid "Something went wrong while sending the report." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Your report had been successfully sent to Artica." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Thank you!" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:152 +#, php-format +msgid "%s Diagnostic tool" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:217 +#, php-format +msgid "Info status %s" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:221 +msgid "PHP setup" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:229 +msgid "Database health status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:233 +msgid "Database status info" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:237 +msgid "System Info" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:241 +msgid "MySQL Performance metrics" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:246 +#, php-format +msgid "Tables fragmentation in the %s database" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:252 +#, php-format +msgid "%s logs dates" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:256 +#, php-format +msgid "%s Licence Information" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:260 +#: ../../include/class/Diagnostics.class.php:1242 +msgid "Status of the attachment folder" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:264 +msgid "Information from the tagente_datos table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:268 +#, php-format +msgid "%s server threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:272 +msgid "SQL show engine innodb status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:316 +msgid "Graph of the Agents Unknown module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:323 +msgid "Graph of the Database Maintenance module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:330 +msgid "Graph of the Free Disk Spool Dir module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:336 +msgid "Graph of the Free RAM module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:342 +msgid "Graph of the Queued Modules module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:348 +msgid "Graph of the Status module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:354 +msgid "Graph of the System Load AVG module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:361 +msgid "Graph of the Execution Time module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:370 +msgid "Graphs modules that represent the self-monitoring system" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:427 +#, php-format +msgid "%s Build" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:431 +#, php-format +msgid "%s Version" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:435 +msgid "Minor Release" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:439 +msgid "Homedir" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:443 +msgid "HomeUrl" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:447 +msgid "Enterprise installed" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "true" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "false" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:451 +msgid "Update Key" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:455 +msgid "Updating code path" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:459 +msgid "Current Update #" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:483 +msgid "PHP Version" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:487 +msgid "PHP Max execution time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:491 +msgid "PHP Max input time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:495 +msgid "PHP Memory limit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:499 +msgid "Session cookie lifetime" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:548 +msgid "Total groups" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:552 +msgid "Total module data records" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:556 +msgid "Total agent access record" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:564 +msgid "Total traps" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:568 +msgid "Total users" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:572 +msgid "Total sessions" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:611 +msgid "Pandora DB has never been executed" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:618 +msgid "Ago" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:625 +msgid "Total unknown agents" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:629 +msgid "Total not-init modules" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:633 +msgid "Pandora DB Last run" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:665 +msgid "DB Schema Version (first installed)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:669 +msgid "DB Schema Version (actual)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:673 +msgid "DB Schema Build" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:677 +msgid "DB Size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:717 +msgid "RAM" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:721 +msgid "Os" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:729 +#: ../../include/class/Diagnostics.class.php:747 +#: ../../include/class/NetworkMap.class.php:2934 +msgid "Ip" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:775 +msgid "InnoDB buffer pool size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:779 +#, php-format +msgid "" +"It has to be 40% of the server memory not recommended to be greater or less" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:784 +msgid "InnoDB file per table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:787 +#: ../../include/class/Diagnostics.class.php:859 +msgid "Recommended ON" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:791 +msgid "InnoDB flush log at trx-commit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:794 +msgid "Recommended Value" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:798 +msgid "InnoDB lock wait timeout" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:801 +#: ../../include/class/Diagnostics.class.php:808 +#: ../../include/class/Diagnostics.class.php:815 +#: ../../include/class/Diagnostics.class.php:822 +#: ../../include/class/Diagnostics.class.php:829 +#: ../../include/class/Diagnostics.class.php:838 +#: ../../include/class/Diagnostics.class.php:845 +#: ../../include/class/Diagnostics.class.php:852 +#: ../../include/class/Diagnostics.class.php:866 +#: ../../include/class/Diagnostics.class.php:873 +#: ../../include/class/Diagnostics.class.php:880 +#: ../../include/class/Diagnostics.class.php:894 +#: ../../include/class/Diagnostics.class.php:901 +msgid "Min. Recommended Value" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:805 +msgid "InnoDB log buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:812 +msgid "InnoDB log file size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:819 +msgid "Maximun allowed packet" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:826 +msgid "Maximun connections" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:831 +msgid "conections" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:835 +msgid "Query cache limit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:842 +msgid "Query cache min-res-unit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:849 +msgid "Query cache size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:856 +msgid "Query cache type" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:863 +msgid "Read buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:870 +msgid "Read rnd-buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:877 +msgid "Sort buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:884 +msgid "Sql mode" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:887 +msgid "Must be empty" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:891 +msgid "Thread cache size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:898 +msgid "Thread stack" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:961 +msgid "" +"Table fragmentation is higher than recommended. They should be defragmented." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:965 +msgid "Table fragmentation is correct." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:974 +msgid "Tables fragmentation (maximum recommended value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:979 +msgid "Tables fragmentation (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:983 +msgid "Table fragmentation status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1018 +msgid "Size server logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1022 +msgid "Status server logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1027 +msgid "Size error logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1031 +msgid "Status error logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1036 +msgid "Size console logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1040 +msgid "Status console logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1075 +msgid "License capacity is less than 90 percent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1078 +msgid "License capacity exceeds 90 percent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1086 +msgid "" +"The average of modules per agent is more than 40. You can have performance " +"problems" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1091 +msgid "The average of modules per agent is less than 40" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1127 +msgid "The system has no load" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1171 +msgid "Network Management System" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1172 +#: ../../include/class/Diagnostics.class.php:1176 +msgid "Off" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1183 +msgid "Status of agents capacity" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1188 +msgid "Status of average modules per agent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1194 +msgid "Interval average of the network modules" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1224 +msgid "The attached folder contains more than 700 files." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1229 +msgid "The attached folder contains less than 700 files." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1238 +msgid "Total files in the attached folder" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1268 +msgid "" +"The tagente_datos table contains too much data. A historical database is " +"recommended." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1273 +msgid "The tagente_datos table contains an acceptable amount of data." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1282 +msgid "Total data in tagente_datos table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1286 +msgid "Tagente_datos table status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1322 +msgid "Threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1332 +msgid "Total threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1339 +msgid "Current pandora_server running threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1343 +msgid "" +"There's more pandora_server threads than configured, are you running " +"multiple servers simultaneusly?." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1477 +msgid "" +"Please check your Pandora Server setup and make sure that the database " +"maintenance daemon is running." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1481 +msgid "" +"It' is very important to keep the database up-to-date to get the best " +"performance and results in Pandora" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1743 +msgid "You have more than 10 MB of logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1746 +msgid "You have less than 10 MB of logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1809 +msgid "Succesfuly" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1885 +msgid "What happened" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1901 +msgid "Your email" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1913 +msgid "Include installation data" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1950 +msgid "Hello Feedback-Men" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1960 +msgid "Hello" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1964 +#, php-format +msgid "User %s is reporting an issue in its %s experience" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1973 +msgid "Find some files attached to this mail" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1976 +msgid "PDF is the diagnostic information retrieved at report time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1979 +msgid "CSV contains the statuses of every product file" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1984 +#, php-format +msgid "" +"If you think this report must be escalated, feel free to forward this mail " +"to \"%s\"" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1988 +msgid "LEGAL WARNING" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1990 +msgid "" +"The information contained in this transmission is privileged and " +"confidential information intended only for the use of the individual or " +"entity named above" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1994 +msgid "" +"If the reader of this message is not the intended recipient, you are hereby " +"notified that any dissemination, distribution or copying of this " +"communication is strictly prohibited" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1998 +msgid "If you have received this transmission in error, do not read it" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2002 +msgid "" +"Please immediately reply to the sender that you have received this " +"communication in error and then delete it" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2081 +msgid "Invalid cron task" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2082 +msgid "Cron task generated" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2117 +#: ../../include/class/Diagnostics.class.php:2127 +msgid "Diagnostics Info" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2235 +#: ../../include/class/Diagnostics.class.php:2245 +msgid "PHP Info" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2328 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2456 +msgid "Failed to retrieve graph data." +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2676 +msgid "Holding Area" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2805 +#, php-format +msgid "Edit node %s" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2807 +msgid "Show details and options" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2808 +msgid "Add a interface link" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2809 +msgid "Set parent interface" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Set as children" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2811 +msgid "Set parent" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2812 +#: ../../include/class/NetworkMap.class.php:2825 +msgid "Abort the action of set relationship" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2814 +#: ../../include/class/NetworkMap.class.php:3151 +msgid "Add node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2815 +msgid "Set center" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2817 +msgid "Refresh Holding area" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2818 +#: ../../include/class/NetworkMap.class.php:2821 +msgid "Proceed" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2819 +msgid "" +"Resetting the map will delete all customizations you have done, including " +"manual relationships between elements, new items, etc." +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2823 +msgid "Restart map" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2824 +msgid "Abort the interface relationship" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2842 +#: ../../include/class/NetworkMap.class.php:2895 +#, php-format +msgid "In the Open version of %s can not be edited nodes or map" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2848 +#: ../../include/class/NetworkMap.class.php:2901 +msgid "Edit node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2858 +#: ../../include/class/NetworkMap.class.php:2911 +msgid "Adresses" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2860 +#: ../../include/class/NetworkMap.class.php:2913 +msgid "OS type" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2867 +#: ../../include/class/NetworkMap.class.php:2868 +#: ../../include/class/NetworkMap.class.php:2920 +#: ../../include/class/NetworkMap.class.php:2921 +msgid "Node Details" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2946 +#: ../../include/class/NetworkMap.class.php:2947 +msgid "Interface Information (SNMP)" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2958 +msgid "Shape" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2961 +msgid "Circle" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2962 +msgid "Square" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2963 +msgid "Rhombus" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2976 +msgid "name node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2994 +#: ../../include/class/NetworkMap.class.php:3258 +msgid "name fictional node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2999 +#: ../../include/class/NetworkMap.class.php:3263 +msgid "Networkmap to link" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3011 +msgid "Update fictional node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3021 +#: ../../include/class/NetworkMap.class.php:3022 +msgid "Node options" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3033 +#: ../../include/class/NetworkMap.class.php:3097 +msgid "Node source" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3034 +#: ../../include/class/NetworkMap.class.php:3098 +msgid "Interface source" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3035 +#: ../../include/class/NetworkMap.class.php:3099 +msgid "Interface Target" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3100 +msgid "Node target" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3038 +msgid "E." +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3071 +msgid "There are not relations" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3139 +msgid "Add interface link" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3170 +#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3233 +#: ../../include/class/NetworkMap.class.php:3245 +#: ../../include/class/NetworkMap.class.php:3286 +msgid "Add agent node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3244 +msgid "Add agent node (filter by group)" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3275 +msgid "Add fictional node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3285 +msgid "Add fictional point" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3469 +msgid "Open Minimap" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3475 +msgid "Hide Labels" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:356 +#: ../../include/class/ManageNetScanScripts.class.php:367 +msgid "Problem deleting Net scan Scripts" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:372 +msgid "Deleted successfully" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:444 +msgid "Are you sure delete script?" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:464 +msgid "Delete Script" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:482 +msgid "There are no net scan scripts in the system" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:556 +msgid "Script fullpath" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:565 +msgid "Key identifier is required" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:567 +msgid "You must select a group where store this key!" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:569 +msgid "You must specify a product type" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:571 +msgid "You must specify a username and/or password" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:672 +msgid "identifier cannot be empty" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:677 +msgid "Not allowed" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:716 +msgid "How to configure encryption." +msgstr "" + +#: ../../include/class/CredentialStore.class.php:715 +#, php-format +msgid "" +"Database encryption is not enabled. Credentials will be stored in plaintext. " +"%s" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:734 +#: ../../include/class/CredentialStore.class.php:861 +msgid "Product" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:800 +msgid "Add key" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:884 +msgid "Extra (2)" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:891 +#: ../../include/class/CredentialStore.class.php:1035 +msgid "Access key ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:892 +#: ../../include/class/CredentialStore.class.php:1036 +msgid "Secret access key" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:898 +#: ../../include/class/CredentialStore.class.php:908 +msgid "Account ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:899 +#: ../../include/class/CredentialStore.class.php:1041 +msgid "Application secret" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:900 +#: ../../include/class/CredentialStore.class.php:1042 +msgid "Tenant or domain name" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:901 +#: ../../include/class/CredentialStore.class.php:1043 +msgid "Subscription id" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1040 +msgid "Client ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1047 +msgid "Account ID." +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1116 +msgid "Register new key into keystore" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1120 +msgid "Update key" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:123 +msgid "Agent Management" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:157 +msgid "Manage Policies" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:171 +msgid "List Alerts" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:261 +msgid "Edit User" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:271 +msgid "Tree View" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:281 +msgid "Network Component" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:295 +msgid "Task List" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:339 +msgid "Update Manager" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:353 +msgid "Manage Agent Groups" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:394 +msgid "GO TO " +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:423 +msgid "results found" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:427 +msgid "No results found" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:368 +#: ../../include/class/CustomNetScan.class.php:393 +msgid "NetScan Custom" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:609 +msgid "Recon script" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:650 +msgid "Explanation" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:666 +msgid "macro_desc" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:348 +#, php-format +msgid "Template %s successfully updated" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:390 +#, php-format +msgid "Template %s successfully created" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:392 +msgid "Error creating template" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:400 +#, php-format +msgid "Template %s successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:402 +#, php-format +msgid "Error deleting %s template" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:535 +msgid "Module successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:537 +msgid "Error deleting module" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:548 +msgid "Block successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:550 +msgid "Error deleting block" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:562 +msgid "All templates deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:564 +msgid "Error deleting all templates" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:573 +msgid "Selected templates deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:575 +msgid "Error deleting selected templates" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:587 +msgid "Something gone wrong. Please, try again" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:609 +msgid "Components added sucessfully" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1017 +#: ../../include/class/ModuleTemplates.class.php:1278 +msgid "Add components" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1069 +#: ../../include/class/ModuleTemplates.class.php:1193 +msgid "No module blocks for this profile" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1092 +msgid "Delete this block" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1093 +msgid "Do you want delete this block?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1179 +msgid "Delete this module" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1180 +msgid "Do you want delete this module?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1371 +msgid "Do you want delete all templates?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1374 +msgid "Do you want delete the selected templates?" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:758 +msgid "Limited mode." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:770 +msgid "License is about to expire" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:773 +msgid "Support is about to expire" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:791 +msgid "Expired license" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:792 +msgid "Your license has expired. Please, contact our sales department." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:794 +msgid "Support expired" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:795 +msgid "" +"This license is outside of support. Please, contact our sales department." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:876 +msgid "Attachment directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:878 +#, php-format +msgid "" +"Directory %s is not writable. Please, configure corresponding permissions." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:898 +msgid "There are too many files in attachment directory" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:900 +#, php-format +msgid "" +"There are more than %d files in attachment, consider cleaning up attachment " +"directory manually." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:932 +msgid "Remote configuration directory is not readable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:934 +#, php-format +msgid "" +"Remote configuration directory %s is not readable. Please, adjust " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:951 +msgid "Remote configuration directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:953 +#, php-format +msgid "" +"Remote configuration directory %s is not writable. Please, adjust " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:969 +msgid "Remote collections directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:971 +#, php-format +msgid "Collections directory %s is not writable. Please, adjust configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:987 +msgid "Remote md5 directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:989 +#, php-format +msgid "MD5 directory %s is not writable. Please, adjust configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1017 +msgid "There are too much files in spool" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1019 +#, php-format +msgid "" +"There are more than %d files in %s. Consider checking DataServer performance" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1040 +msgid "There are too many BADXML files in spool" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1042 +#, php-format +msgid "There are more than %d files in %s. Consider checking software agents." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1123 +#, php-format +msgid "%s (%s) is lacking performance." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1190 +msgid "No servers available." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1191 +msgid "" +"There are no servers registered in this console. Please, check installation " +"guide." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1213 +#, php-format +msgid "%s (%s) has crashed." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1219 +#, php-format +msgid "%s (%s) has crashed, please check log files." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1226 +#, php-format +msgid "%s (%s) is not running." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1231 +#, php-format +msgid "" +"%s (%s) is not running. Please, check configuration file or remove this " +"server from server list." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1281 +msgid "No master servers found." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1282 +msgid "" +"At least one server must be defined to run as master. Please, check " +"documentation." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1333 +msgid "PHP safe mode is enabled. Some features may not work properly" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1334 +msgid "" +"To disable it, go to your PHP configuration file (php.ini) and put safe_mode " +"= Off (Do not forget to restart apache process after changes)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1352 +#, php-format +msgid "'%s' value in PHP configuration is not recommended" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1356 +#, php-format +msgid "Recommended value is %s" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1357 +#: ../../include/class/ConsoleSupervisor.php:1381 +msgid "Unlimited" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1358 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Do not forget to restart Apache process after)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1376 +#: ../../include/class/ConsoleSupervisor.php:1400 +#: ../../include/class/ConsoleSupervisor.php:1424 +#: ../../include/class/ConsoleSupervisor.php:1502 +#, php-format +msgid "Not recommended '%s' value in PHP configuration" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1380 +#: ../../include/class/ConsoleSupervisor.php:1404 +#: ../../include/class/ConsoleSupervisor.php:1428 +#: ../../include/class/ConsoleSupervisor.php:1506 +#, php-format +msgid "Recommended value is: %s" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1382 +#: ../../include/class/ConsoleSupervisor.php:1406 +#: ../../include/class/ConsoleSupervisor.php:1448 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Dont forget restart apache process after changes)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1405 +#: ../../include/class/ConsoleSupervisor.php:1429 +#, php-format +msgid "%s or greater" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1430 +#: ../../include/class/ConsoleSupervisor.php:1508 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1447 +msgid "Problems with disable_functions in php.ini" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1448 +msgid "" +"The variable disable_functions contains functions system() or exec() in PHP " +"configuration file (php.ini)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1465 +msgid "PhantomJS is not installed" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1466 +msgid "" +"To be able to create images of the graphs for PDFs, please install the " +"PhantomJS extension. For that, it is necessary to follow these steps:" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1483 +msgid "PHP UPDATE REQUIRED" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " +"higher." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1484 +#: ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1550 +msgid "Historical database not available" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1551 +msgid "" +"Historical database is enabled, though not accessible with the current " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1594 +msgid "Database maintenance problem" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1596 +#, php-format +msgid "" +"Your database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it " +"as soon as possible." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1656 +msgid "Historical database maintenance problem." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1658 +#, php-format +msgid "" +"Your historical database hasn't been through maintenance for 48hrs. Please, " +"check documentation on how to perform this maintenance process on %s and " +"enable it as soon as possible." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1696 +msgid "Historical database MR mismatch" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1697 +msgid "" +"Your historical database is not using the same schema as the main DB. This " +"could produce anomalies while storing historical data." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1738 +msgid "Log collector cannot connect to ElasticSearch" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1739 +msgid "ElasticSearch is not available using current configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1808 +msgid "Metaconsole DB is not available." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1809 +msgid "Cannot connect with Metaconsole DB using current configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1837 +msgid "Scheduled downtime running." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1838 +msgid "" +"A scheduled downtime is running. Some monitoring data won't be available " +"while downtime is taking place." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1994 +msgid "Downtime scheduled soon." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1996 +#, php-format +msgid "" +"A scheduled downtime is going to be executed from %s to %s. Some monitoring " +"data won't be available while downtime is taking place." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2026 +msgid "This instance is not registered in the Update manager section" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2027 +msgid "" +"Click here to start the registration " +"process" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2059 +msgid "Default password for \"Admin\" user has not been changed" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2060 +msgid "" +"Please, change the default password since it is a commonly reported " +"vulnerability." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2087 +msgid "Default font doesn't exist" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2088 +msgid "" +"Your defined font doesn't exist or is not defined. Please, check font " +"parameters in your config" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2111 +msgid "Developer mode is enabled" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2113 +#, php-format +msgid "" +"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode " +"and should be disabled in a production environment. This value is located in " +"the main index.php file" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2137 +msgid "Event storm protection is enabled." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2138 +msgid "" +"Some events may get lost while this mode is enabled. The server must be " +"restarted after altering this setting." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2164 +msgid "Failed to retrieve updates, please configure utility" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2182 +#, php-format +msgid "New %s Console update" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2185 +msgid "" +"There is a new update available. Please.About minor release update." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2249 +msgid "Discovery relies on an appropriate cron setup." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2265 +msgid "Please, make sure process is not locked." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2271 +msgid "DiscoveryConsoleTasks is not configured." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2378 +#, php-format +msgid "%s version misaligned with Console" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2382 +#, php-format +msgid "" +"Server %s and this console have different versions. This might cause several " +"malfunctions. Please, update this server." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2434 +msgid "AllowOverride is disabled" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2476 +msgid "Desynchronized operation on the node " +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:427 +msgid "Please ensure mail configuration matches your needs" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:461 +msgid "Create an agent" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:486 +msgid "Create a module to check if an agent is online" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:511 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:536 +msgid "Discover hosts and devices in your network" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:564 +msgid "If something is not working as expected, look for this icon and report!" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:186 +msgid "WMI Explorer" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:191 +msgid "Nothing" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:244 +msgid "Use agent IP" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:441 +msgid "Module info" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:644 +#, php-format +msgid "Perform %s" +msgstr "" + +#: ../../include/functions_reporting.php:361 +msgid " agents" +msgstr "" + +#: ../../include/functions_reporting.php:371 +msgid " modules" +msgstr "" + +#: ../../include/functions_reporting.php:1377 +msgid "Top N" +msgstr "" + +#: ../../include/functions_reporting.php:1505 +msgid "Insuficient data" +msgstr "" + +#: ../../include/functions_reporting.php:1756 +msgid "Event Report Group" +msgstr "" + +#: ../../include/functions_reporting.php:2017 +msgid "Event Report Module" +msgstr "" + +#: ../../include/functions_reporting.php:2298 +msgid "Agent/Modules" +msgstr "" + +#: ../../include/functions_reporting.php:2397 +msgid "Exception - Everything" +msgstr "" + +#: ../../include/functions_reporting.php:2403 +#, php-format +msgid "Exception - Modules over or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2406 +#, php-format +msgid "Modules over or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2411 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2414 +#, php-format +msgid "Modules under or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2419 +#, php-format +msgid "Exception - Modules under %s" +msgstr "" + +#: ../../include/functions_reporting.php:2422 +#, php-format +msgid "Modules under %s" +msgstr "" + +#: ../../include/functions_reporting.php:2427 +#, php-format +msgid "Exception - Modules over %s" +msgstr "" + +#: ../../include/functions_reporting.php:2430 +#, php-format +msgid "Modules over %s" +msgstr "" + +#: ../../include/functions_reporting.php:2435 +#, php-format +msgid "Exception - Equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2438 +#, php-format +msgid "Equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2443 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2446 +#, php-format +msgid "Not equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2450 +msgid "Exception - Modules at normal status" +msgstr "" + +#: ../../include/functions_reporting.php:2451 +msgid "Modules at normal status" +msgstr "" + +#: ../../include/functions_reporting.php:2455 +msgid "Exception - Modules at critical or warning status" +msgstr "" + +#: ../../include/functions_reporting.php:2456 +msgid "Modules at critical or warning status" +msgstr "" + +#: ../../include/functions_reporting.php:2674 +msgid "There are no Modules under those conditions." +msgstr "" + +#: ../../include/functions_reporting.php:2678 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "" + +#: ../../include/functions_reporting.php:2682 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "" + +#: ../../include/functions_reporting.php:2686 +#, php-format +msgid "There are no Modules less %s." +msgstr "" + +#: ../../include/functions_reporting.php:2690 +#, php-format +msgid "There are no Modules over %s." +msgstr "" + +#: ../../include/functions_reporting.php:2694 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2698 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:2702 +msgid "There are no Modules normal status" +msgstr "" + +#: ../../include/functions_reporting.php:2706 +msgid "There are no Modules at critial or warning status" +msgstr "" + +#: ../../include/functions_reporting.php:2936 +msgid "Event Report Agent" +msgstr "" + +#: ../../include/functions_reporting.php:3276 +msgid "Database Serialized" +msgstr "" + +#: ../../include/functions_reporting.php:3518 +msgid "Network interfaces report" +msgstr "" + +#: ../../include/functions_reporting.php:3598 +msgid "The group has no agents or none of the agents has any network interface" +msgstr "" + +#: ../../include/functions_reporting.php:3618 +msgid "bytes/s" +msgstr "" + +#: ../../include/functions_reporting.php:3830 +#: ../../include/functions_reporting.php:3847 +#: ../../include/functions_reporting.php:3864 +msgid "Not triggered" +msgstr "" + +#: ../../include/functions_reporting.php:4258 +msgid "SQL Graph Vertical Bars" +msgstr "" + +#: ../../include/functions_reporting.php:4262 +msgid "SQL Graph Horizontal Bars" +msgstr "" + +#: ../../include/functions_reporting.php:4266 +msgid "SQL Graph Pie" +msgstr "" + +#: ../../include/functions_reporting.php:4484 +msgid "Unknown report" +msgstr "" + +#: ../../include/functions_reporting.php:4561 +msgid "Prediction Date" +msgstr "" + +#: ../../include/functions_reporting.php:5212 +msgid "" +"Illegal query: Due security restrictions, there are some tokens or words you " +"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." +msgstr "" + +#: ../../include/functions_reporting.php:6445 +#: ../../include/functions_reporting.php:7039 +msgid "No Address" +msgstr "" + +#: ../../include/functions_reporting.php:7278 +msgid "" +"The monitor have no data in this range of dates or monitor type is not " +"numeric" +msgstr "" + +#: ../../include/functions_reporting.php:7296 +msgid "The monitor type is not numeric" +msgstr "" + +#: ../../include/functions_reporting.php:7600 +msgid "Maximum" +msgstr "" + +#: ../../include/functions_reporting.php:7682 +msgid "Automatic combined graph" +msgstr "" + +#: ../../include/functions_reporting.php:8424 +msgid "Maximum of events shown" +msgstr "" + +#: ../../include/functions_reporting.php:9004 +#: ../../include/functions_reporting.php:9028 +msgid "Server health" +msgstr "" + +#: ../../include/functions_reporting.php:9004 +#, php-format +msgid "%d Downed servers" +msgstr "" + +#: ../../include/functions_reporting.php:9009 +#: ../../include/functions_reporting.php:9032 +msgid "Monitor health" +msgstr "" + +#: ../../include/functions_reporting.php:9009 +#, php-format +msgid "%d Not Normal monitors" +msgstr "" + +#: ../../include/functions_reporting.php:9009 +#: ../../include/functions_reporting.php:9033 +msgid "of monitors up" +msgstr "" + +#: ../../include/functions_reporting.php:9014 +#: ../../include/functions_reporting.php:9036 +msgid "Module sanity" +msgstr "" + +#: ../../include/functions_reporting.php:9014 +#, php-format +msgid "%d Not inited monitors" +msgstr "" + +#: ../../include/functions_reporting.php:9014 +#: ../../include/functions_reporting.php:9037 +msgid "of total modules inited" +msgstr "" + +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:10095 +#: ../../include/functions_reporting.php:10105 +#, php-format +msgid "%d Fired alerts" +msgstr "" + +#: ../../include/functions_reporting.php:9019 +#: ../../include/functions_reporting.php:9041 +msgid "of defined alerts not fired" +msgstr "" + +#: ../../include/functions_reporting.php:9102 +msgid "Defined and fired alerts" +msgstr "" + +#: ../../include/functions_reporting.php:9281 +msgid "Defined users" +msgstr "" + +#: ../../include/functions_reporting.php:9952 +msgid "Agent without data" +msgstr "" + +#: ../../include/functions_reporting.php:10091 +#, php-format +msgid "%d Normal modules" +msgstr "" + +#: ../../include/functions_reporting.php:10092 +#, php-format +msgid "%d Critical modules" +msgstr "" + +#: ../../include/functions_reporting.php:10093 +#, php-format +msgid "%d Warning modules" +msgstr "" + +#: ../../include/functions_reporting.php:10094 +#, php-format +msgid "%d Unknown modules" +msgstr "" + +#: ../../include/functions_reporting.php:10099 +#, php-format +msgid "%d Total agents" +msgstr "" + +#: ../../include/functions_reporting.php:10100 +#, php-format +msgid "%d Normal agents" +msgstr "" + +#: ../../include/functions_reporting.php:10101 +#, php-format +msgid "%d Critical agents" +msgstr "" + +#: ../../include/functions_reporting.php:10102 +#, php-format +msgid "%d Warning agents" +msgstr "" + +#: ../../include/functions_reporting.php:10103 +#, php-format +msgid "%d Unknown agents" +msgstr "" + +#: ../../include/functions_reporting.php:10104 +#, php-format +msgid "%d not init agents" +msgstr "" + +#: ../../include/functions_reporting.php:11534 +msgid "Total running modules" +msgstr "" + +#: ../../include/functions_reporting.php:11537 +#: ../../include/functions_reporting.php:11552 +#: ../../include/functions_reporting.php:11564 +#: ../../include/functions_reporting.php:11582 +#: ../../include/functions_reporting.php:11594 +#: ../../include/functions_reporting.php:11606 +#: ../../include/functions_reporting.php:11618 +msgid "Ratio" +msgstr "" + +#: ../../include/functions_reporting.php:11537 +#: ../../include/functions_reporting.php:11552 +#: ../../include/functions_reporting.php:11564 +#: ../../include/functions_reporting.php:11582 +#: ../../include/functions_reporting.php:11594 +#: ../../include/functions_reporting.php:11606 +#: ../../include/functions_reporting.php:11618 +msgid "Modules by second" +msgstr "" + +#: ../../include/functions_reporting.php:11549 +msgid "Local modules" +msgstr "" + +#: ../../include/functions_reporting.php:11559 +msgid "Network modules" +msgstr "" + +#: ../../include/functions_reporting.php:11578 +msgid "Plugin modules" +msgstr "" + +#: ../../include/functions_reporting.php:11590 +msgid "Prediction modules" +msgstr "" + +#: ../../include/functions_reporting.php:11602 +msgid "WMI modules" +msgstr "" + +#: ../../include/functions_reporting.php:11614 +msgid "Web modules" +msgstr "" + +#: ../../include/functions_reporting.php:11657 +#: ../../include/lib/Dashboard/Widgets/tactical.php:274 +msgid "Server performance" +msgstr "" + +#: ../../include/functions_reporting.php:11776 +msgid "Weekly:" +msgstr "" + +#: ../../include/functions_reporting.php:11818 +msgid "Monthly:" +msgstr "" + +#: ../../include/functions_reporting.php:11819 +msgid "From day" +msgstr "" + +#: ../../include/functions_reporting.php:11820 +msgid "To day" +msgstr "" + +#: ../../include/functions_reporting.php:12386 +msgid "Module Histogram Graph" +msgstr "" + +#: ../../include/functions_filemanager.php:170 +#: ../../include/functions_filemanager.php:235 +#: ../../include/functions_filemanager.php:288 +#: ../../include/functions_filemanager.php:367 +msgid "Security error" +msgstr "" + +#: ../../include/functions_filemanager.php:180 +msgid "Upload error" +msgstr "" + +#: ../../include/functions_filemanager.php:187 +#: ../../include/functions_filemanager.php:250 +#: ../../include/functions_filemanager.php:312 +msgid "Upload correct" +msgstr "" + +#: ../../include/functions_filemanager.php:200 +msgid "" +"File size seems to be too large. Please check your php.ini configuration or " +"contact with the administrator" +msgstr "" + +#: ../../include/functions_filemanager.php:244 +msgid "Error creating file" +msgstr "" + +#: ../../include/functions_filemanager.php:255 +#: ../../include/functions_filemanager.php:347 +msgid "Error creating file with empty name" +msgstr "" + +#: ../../include/functions_filemanager.php:298 +msgid "Attach error" +msgstr "" + +#: ../../include/functions_filemanager.php:343 +msgid "Directory created" +msgstr "" + +#: ../../include/functions_filemanager.php:548 +#: ../../include/functions_filemanager.php:776 +msgid "Create a Directory" +msgstr "" + +#: ../../include/functions_filemanager.php:552 +#: ../../include/functions_filemanager.php:783 +#: ../../include/functions_filemanager.php:784 +msgid "Create a Text" +msgstr "" + +#: ../../include/functions_filemanager.php:556 +#: ../../include/functions_filemanager.php:791 +#: ../../include/functions_filemanager.php:792 +msgid "Upload Files" +msgstr "" + +#: ../../include/functions_filemanager.php:587 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "" + +#: ../../include/functions_filemanager.php:636 +msgid "Parent directory" +msgstr "" + +#: ../../include/functions_filemanager.php:650 +msgid "Directory" +msgstr "" + +#: ../../include/functions_filemanager.php:658 +msgid "Compressed file" +msgstr "" + +#: ../../include/functions_filemanager.php:662 +#: ../../include/functions_filemanager.php:669 +msgid "Text file" +msgstr "" + +#: ../../include/functions_filemanager.php:702 +msgid "This file could be executed by any user" +msgstr "" + +#: ../../include/functions_filemanager.php:703 +msgid "Make sure it can't perform dangerous tasks" +msgstr "" + +#: ../../include/functions_filemanager.php:775 +#: ../../include/functions_filemanager.php:811 +msgid "Create directory" +msgstr "" + +#: ../../include/functions_filemanager.php:800 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "" + +#: ../../include/functions_filemanager.php:800 +msgid "Decompress" +msgstr "" + +#: ../../include/functions_filemanager.php:819 +msgid "Create text" +msgstr "" + +#: ../../include/functions_filemanager.php:827 +msgid "Upload file/s" +msgstr "" + +#: ../../include/functions_filemanager.php:834 +msgid "The directory is read-only" +msgstr "" + +#: ../../include/functions_tags.php:707 +msgid "Click here to open a popup window with URL tag" +msgstr "" + +#: ../../include/lib/Dashboard/Manager.php:468 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: ../../include/lib/Dashboard/Manager.php:852 +msgid "Error create or update dashboard" +msgstr "" + +#: ../../include/lib/Dashboard/Manager.php:1304 +msgid "Icon image dashboard" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:430 +msgid "Please configure this widget before usage" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:438 +msgid "Widget cannot be loaded" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:442 +msgid "Please, configure the widget again to recover it" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:498 +msgid "General group status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:268 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:280 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:412 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:423 +#: ../../include/lib/Dashboard/Widgets/events_list.php:444 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:486 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:501 +#: ../../include/lib/Dashboard/Widgets/module_value.php:388 +#: ../../include/lib/Dashboard/Widgets/module_value.php:401 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:372 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:383 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:390 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:401 +#: ../../include/lib/Dashboard/Widgets/module_status.php:463 +#: ../../include/lib/Dashboard/Widgets/module_status.php:476 +msgid "You don't have access" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:452 +msgid "Not agents in this group" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:550 +msgid "Groups status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:287 +msgid "Alert Fired" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:455 +msgid "Modules in normal status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:471 +msgid "Modules in warning status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:488 +msgid "Modules in critical status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:529 +msgid "Not modules in this groups" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:481 +msgid "SLA percentage" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:343 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:407 +#: ../../include/lib/Dashboard/Widgets/module_value.php:324 +msgid "Text size of value in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:419 +#: ../../include/lib/Dashboard/Widgets/module_value.php:336 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:299 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:332 +#: ../../include/lib/Dashboard/Widgets/module_status.php:397 +msgid "Text size of label in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:349 +msgid "General visual maps report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:236 +#: ../../operation/search_results.php:144 +msgid "Maps" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 +#, php-format +msgid "Welcome message to %s" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:37 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "This is an example of a dashboard widget. A widget may contain elements" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:250 +msgid "" +"To add more elements, click on \"Add widgets\" on the top of this " +"page." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 +msgid "" +"To delete this message, click on the delete button on top right corner of " +"this element." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "" +"To do so, just click on the title and drag and drop it to the desired place." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:170 +#: ../../include/lib/Dashboard/Widgets/network_map.php:414 +#: ../../operation/menu.php:177 +msgid "Network map" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:279 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:283 +msgid "X offset" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:294 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:298 +msgid "Y offset" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:322 +msgid "Zoom level" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:354 +msgid "Triggered alerts report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:327 +msgid "Not alert fired" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:336 +#: ../../include/lib/Dashboard/Widgets/events_list.php:429 +#: ../../include/lib/Dashboard/Widgets/events_list.php:436 +msgid "You must select some group" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:163 +#: ../../include/lib/Dashboard/Widgets/events_list.php:617 +msgid "List of latest events" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:311 +msgid "Limit" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:323 +#: ../../include/functions_events.php:3147 +#: ../../include/functions_events.php:3153 +#: ../../include/functions_events.php:3175 +msgid "All event" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:324 +#: ../../include/functions_events.php:3149 +#: ../../include/functions_events.php:3183 +msgid "Only validated" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:325 +msgid "Only pending" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:599 +msgid "There are no events matching selected search filters" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:170 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:372 +msgid "WUX transaction stats" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:268 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:286 +msgid "View all statistics" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:557 +msgid "Icon and module value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:431 +#: ../../include/lib/Dashboard/Widgets/module_status.php:409 +msgid "Size of icon" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_value.php:173 +#: ../../include/lib/Dashboard/Widgets/module_value.php:443 +msgid "Module value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +msgid "Global status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:516 +msgid "Top N events by module" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:297 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:297 +msgid "No legend" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +msgid "Legend Position" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:350 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:352 +msgid "Please select one or more groups." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:402 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:398 +msgid "There is not data to show." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 +msgid "Show module value in a table" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:310 +msgid "Carriage Return" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:311 +msgid "Vertical Bar" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 +msgid "Semicolon" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 +msgid "Colon" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 +msgid "Commas" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 +msgid "Blank" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:319 +msgid "Data separator" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:443 +msgid "Module in a table" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:448 +msgid "Module histogram" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:298 +msgid "The user doesn't have permission to read agents" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:309 +msgid "Missing Service id" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:163 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:244 +msgid "Agent/Module View" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:193 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:228 +msgid "This widget has been removed" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:420 +msgid "Defined custom graph" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:267 +#: ../../operation/reporting/graph_viewer.php:271 +msgid "Horizontal Bars" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:268 +#: ../../operation/reporting/graph_viewer.php:272 +msgid "Vertical Bars" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:392 +msgid "Agent module graph" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/reports.php:164 +#: ../../include/lib/Dashboard/Widgets/reports.php:370 +msgid "Custom report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:335 +msgid "Type tree" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:360 +msgid "Open all groups" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:380 +msgid "Agents status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:413 +msgid "Modules status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:425 +msgid "Filter modules" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:478 +#, php-format +msgid "" +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n.php:475 +msgid "Top N of agent modules" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:222 +msgid "" +"Case insensitive regular expression or string for module name. For example: ." +"*usage.* will match: cpu_usage, vram usage." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:279 +msgid "Avg." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:425 +msgid "There are no agents/modules found matching filter set" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tactical.php:262 +msgid "Status and Monitor checks" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +msgid "Digital" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:472 +msgid "Top N events by agent" +msgstr "" + +#: ../../include/lib/View.php:68 +#, php-format +msgid "View %s not found" +msgstr "" + +#: ../../include/functions_snmp_browser.php:524 +msgid "Numeric OID" +msgstr "" + +#: ../../include/functions_snmp_browser.php:542 +msgid "Syntax" +msgstr "" + +#: ../../include/functions_snmp_browser.php:548 +msgid "Display hint" +msgstr "" + +#: ../../include/functions_snmp_browser.php:554 +msgid "Max access" +msgstr "" + +#: ../../include/functions_snmp_browser.php:576 +msgid "OID Information" +msgstr "" + +#: ../../include/functions_snmp_browser.php:611 +msgid "Create agent module" +msgstr "" + +#: ../../include/functions_snmp_browser.php:669 +msgid "Starting OID" +msgstr "" + +#: ../../include/functions_snmp_browser.php:718 +msgid "Server to execute" +msgstr "" + +#: ../../include/functions_snmp_browser.php:721 +msgid "Browse" +msgstr "" + +#: ../../include/functions_snmp_browser.php:767 +msgid "First match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:768 +msgid "Previous match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:769 +msgid "Next match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:770 +msgid "Last match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:777 +msgid "Expand the tree (can be slow)" +msgstr "" + +#: ../../include/functions_snmp_browser.php:782 +msgid "Collapse the tree" +msgstr "" + +#: ../../include/functions_snmp_browser.php:802 +msgid "SNMP v3 options" +msgstr "" + +#: ../../include/functions_snmp_browser.php:805 +msgid "Search options" +msgstr "" + +#: ../../include/functions_snmp_browser.php:815 +msgid "Search matches" +msgstr "" + +#: ../../include/functions_snmp_browser.php:830 +msgid "Create agent modules" +msgstr "" + +#: ../../include/functions_snmp_browser.php:839 +msgid "Create policy modules" +msgstr "" + +#: ../../include/functions_snmp_browser.php:848 +msgid "Create network components" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1187 +msgid " available" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1189 +msgid " to apply" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1210 +#: ../../operation/snmpconsole/snmp_browser.php:476 +msgid "Create new policy" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1241 +msgid "Undo" +msgstr "" + +#: ../../include/chart_generator.php:114 +#: ../../operation/agentes/stat_win.php:37 +#: ../../operation/agentes/realtime_win.php:37 +#: ../../operation/agentes/interface_traffic_graph_win.php:42 +msgid "There was a problem connecting with the node" +msgstr "" + +#: ../../include/functions_groups.php:75 +msgid "Alert Actions" +msgstr "" + +#: ../../include/functions_groups.php:91 +msgid "Alert Templates" +msgstr "" + +#: ../../include/functions_groups.php:155 +msgid "Layout visual console" +msgstr "" + +#: ../../include/functions_groups.php:171 +msgid "Plannet down time" +msgstr "" + +#: ../../include/functions_groups.php:203 +msgid "GIS maps" +msgstr "" + +#: ../../include/functions_groups.php:219 +msgid "GIS connections" +msgstr "" + +#: ../../include/functions_groups.php:235 +msgid "GIS map layers" +msgstr "" + +#: ../../include/functions_groups.php:251 +msgid "Network maps" +msgstr "" + +#: ../../include/functions_events.php:132 +msgid "NEW" +msgstr "" + +#: ../../include/functions_events.php:135 +msgid "IN PROCESS" +msgstr "" + +#: ../../include/functions_events.php:138 +msgid "VALIDATED" +msgstr "" + +#: ../../include/functions_events.php:197 +msgid "Agent module" +msgstr "" + +#: ../../include/functions_events.php:2379 +#: ../../operation/agentes/tactical.php:197 +msgid "Latest events" +msgstr "" + +#: ../../include/functions_events.php:2516 +msgid "Events -by module-" +msgstr "" + +#: ../../include/functions_events.php:2522 +#: ../../operation/agentes/tactical.php:214 +#: ../../operation/events/event_statistics.php:51 +msgid "Event graph" +msgstr "" + +#: ../../include/functions_events.php:2524 +#: ../../operation/agentes/tactical.php:217 +#: ../../operation/events/event_statistics.php:71 +msgid "Event graph by agent" +msgstr "" + +#: ../../include/functions_events.php:2650 +msgid "Going to unknown" +msgstr "" + +#: ../../include/functions_events.php:2658 +msgid "Alert manually validated" +msgstr "" + +#: ../../include/functions_events.php:2662 +msgid "Going from critical to warning" +msgstr "" + +#: ../../include/functions_events.php:2668 +msgid "Going up to critical state" +msgstr "" + +#: ../../include/functions_events.php:2674 +msgid "Going up to normal state" +msgstr "" + +#: ../../include/functions_events.php:2678 +msgid "Going down from normal to warning" +msgstr "" + +#: ../../include/functions_events.php:2690 +msgid "Discovery server detected a new host" +msgstr "" + +#: ../../include/functions_events.php:2694 +msgid "New agent created" +msgstr "" + +#: ../../include/functions_events.php:2711 +msgid "Unknown type:" +msgstr "" + +#: ../../include/functions_events.php:3148 +#: ../../include/functions_events.php:3179 +msgid "Only new" +msgstr "" + +#: ../../include/functions_events.php:3150 +#: ../../include/functions_events.php:3187 +msgid "Only in process" +msgstr "" + +#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3191 +msgid "Only not validated" +msgstr "" + +#: ../../include/functions_events.php:3156 +#: ../../include/functions_events.php:3434 +#: ../../include/functions_events.php:3443 +msgid "In process" +msgstr "" + +#: ../../include/functions_events.php:3157 +msgid "Not Validated" +msgstr "" + +#: ../../include/functions_events.php:3342 +msgid "Change owner" +msgstr "" + +#: ../../include/functions_events.php:3418 +msgid "Change status" +msgstr "" + +#: ../../include/functions_events.php:3501 +#: ../../include/functions_events.php:4810 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:365 +msgid "Add comment" +msgstr "" + +#: ../../include/functions_events.php:3521 +#: ../../include/functions_events.php:3525 +#: ../../include/functions_events.php:6604 +#: ../../operation/events/events.php:1911 +#: ../../operation/events/events.build_table.php:867 +msgid "Delete event" +msgstr "" + +#: ../../include/functions_events.php:3545 +msgid "Custom responses" +msgstr "" + +#: ../../include/functions_events.php:3979 +msgid "Extended information" +msgstr "" + +#: ../../include/functions_events.php:4007 +msgid "There was an error connecting to the node" +msgstr "" + +#: ../../include/functions_events.php:4044 +msgid "Agent details" +msgstr "" + +#: ../../include/functions_events.php:4101 +msgid "View custom fields" +msgstr "" + +#: ../../include/functions_events.php:4124 +msgid "Module details" +msgstr "" + +#: ../../include/functions_events.php:4140 +msgid "No assigned" +msgstr "" + +#: ../../include/functions_events.php:4230 +#: ../../include/functions_events.php:4236 +msgid "Go to data overview" +msgstr "" + +#: ../../include/functions_events.php:4336 +#, php-format +msgid "Invalid custom data: %s" +msgstr "" + +#: ../../include/functions_events.php:4511 +msgid "First event" +msgstr "" + +#: ../../include/functions_events.php:4511 +msgid "Last event" +msgstr "" + +#: ../../include/functions_events.php:4648 +msgid "ID extra" +msgstr "" + +#: ../../include/functions_events.php:4701 +msgid "There are no comments" +msgstr "" + +#: ../../include/functions_events.php:4820 +msgid "" +"If event replication is ongoing, it won't be possible to enter comments " +"here. This option is only to allow local pandora users to see comments, but " +"not to operate with them. The operation, when event replication is enabled, " +"must be done only in the Metaconsole." +msgstr "" + +#: ../../include/functions_events.php:5005 +msgid "Pandora System" +msgstr "" + +#: ../../include/functions_events.php:5550 +#: ../../include/functions_events.php:5557 +#: ../../operation/snmpconsole/snmp_view.php:563 +#: ../../operation/snmpconsole/snmp_view.php:876 +#: ../../operation/snmpconsole/snmp_view.php:1162 +msgid "Not validated" +msgstr "" + +#: ../../include/functions_events.php:6064 +msgid "Agent Module" +msgstr "" + +#: ../../include/functions_events.php:6590 +#: ../../operation/events/events.php:1887 +#: ../../operation/events/events.build_table.php:843 +msgid "Validate event" +msgstr "" + +#: ../../include/functions_events.php:6613 +#: ../../operation/events/events.build_table.php:877 +msgid "Is not allowed delete events in process" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:577 +msgid "Succesful stopped the Downtime" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:578 +msgid "Unsuccesful stopped the Downtime" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:718 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:777 +msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:782 +msgid "The execution must be once or periodically" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:787 +msgid "The periodicity must be weekly or monthly" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:792 +msgid "There is no user with such id" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:797 +msgid "There is no group with such id" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:802 +msgid "Date is wrong formatted" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:909 +msgid "This planned downtime are executed now. Can't delete in this moment." +msgstr "" + +#: ../../include/functions_planned_downtimes.php:916 +msgid "Deleted this planned downtime successfully." +msgstr "" + +#: ../../include/functions_planned_downtimes.php:918 +msgid "Problems for deleted this planned downtime." +msgstr "" + +#: ../../include/functions_update_manager.php:130 +#, php-format +msgid "%s configuration wizard" +msgstr "" + +#: ../../include/functions_update_manager.php:133 +#, php-format +msgid "" +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "" + +#: ../../include/functions_update_manager.php:190 msgid "" "Must have the same time zone as the system or database to avoid mismatches " "of time." msgstr "" -#: ../../general/login_required.php:116 +#: ../../include/functions_update_manager.php:196 msgid "E-mail for receiving alerts" msgstr "" -#: ../../general/login_required.php:124 -msgid "Register" -msgstr "" - -#: ../../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 "" - -#: ../../general/login_required.php:130 +#: ../../include/functions_update_manager.php:221 msgid "All fields required" msgstr "" -#: ../../general/login_help_dialog.php:39 -msgid "Welcome to Pandora FMS" +#: ../../include/functions_update_manager.php:230 +msgid "Are you sure you don't want to configure a base email?" msgstr "" -#: ../../general/login_help_dialog.php:42 +#: ../../include/functions_update_manager.php:232 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!" +"You could change this options later in \"alert actions\" and setting your " +"account." msgstr "" -#: ../../general/login_help_dialog.php:51 -#: ../../general/login_help_dialog.php:53 -msgid "Online help" +#: ../../include/functions_update_manager.php:446 +msgid "Register to Update Manager" msgstr "" -#: ../../general/login_help_dialog.php:59 -#: ../../general/login_help_dialog.php:61 -msgid "Enterprise version" +#: ../../include/functions_update_manager.php:454 +#, php-format +msgid "Keep this %s console up to date with latest updates." msgstr "" -#: ../../general/login_help_dialog.php:69 -msgid "Forums" -msgstr "" - -#: ../../general/login_help_dialog.php:75 -#: ../../general/login_help_dialog.php:77 -msgid "Documentation" -msgstr "" - -#: ../../general/login_help_dialog.php:86 -msgid "Click here to don't show again this message" -msgstr "" - -#: ../../general/firts_task/recon_view.php:21 -msgid "There are no recon task defined yet." -msgstr "" - -#: ../../general/firts_task/recon_view.php:25 -#: ../../include/functions_servers.php:378 -#: ../../godmode/servers/manage_recontask_form.php:222 -msgid "Recon server" -msgstr "" - -#: ../../general/firts_task/recon_view.php:28 -#: ../../general/firts_task/recon_view.php:35 -msgid "Create Recon Task" -msgstr "" - -#: ../../general/firts_task/recon_view.php:29 +#: ../../include/functions_update_manager.php:461 +#, php-format msgid "" -"The Recon Task definition of Pandora FMS is used to find new elements in the " -"network. \n" +"When you subscribe to the %s Update Manager service, you accept that we " +"register your %s instance as an identifier on a database owned by %s. This " +"data will solely be used to provide you with information about %s and will " +"not be conceded to third parties. You can unregister from said database at " +"any time from the Update Manager options." +msgstr "" + +#: ../../include/functions_update_manager.php:477 +#: ../../include/functions_update_manager.php:771 +msgid "OK!" +msgstr "" + +#: ../../include/functions_update_manager.php:493 +msgid "Are you sure you don't want to use update manager?" +msgstr "" + +#: ../../include/functions_update_manager.php:495 +msgid "" +"You will need to update your system manually, through source code or RPM " +"packages to be up to date with latest updates." +msgstr "" + +#: ../../include/functions_update_manager.php:714 +msgid "Do you want to be up to date?" +msgstr "" + +#: ../../include/functions_update_manager.php:722 +#: ../../operation/users/user_edit.php:429 +msgid "Subscribe to our newsletter" +msgstr "" + +#: ../../include/functions_update_manager.php:731 +#, php-format +msgid "" +"By subscribing to the newsletter, you accept that your email will be " +"transferred to a database owned by %s. These data will be used only to " +"provide you with information about %s and will not be given to third " +"parties. You can unsubscribe from this database at any time from the " +"newsletter subscription options." +msgstr "" + +#: ../../include/functions_update_manager.php:788 +msgid "Are you sure you don't want to subscribe?" +msgstr "" + +#: ../../include/functions_update_manager.php:790 +msgid "You will miss all news about amazing features and fixes!" +msgstr "" + +#: ../../include/functions_update_manager.php:869 +msgid "You must specify an email" +msgstr "" + +#: ../../include/functions_update_manager.php:1121 +#: ../../include/functions_update_manager.php:1151 +#, php-format +msgid "Line \"%s\" not copied to the progress file." +msgstr "" + +#: ../../include/functions_update_manager.php:1195 +msgid "There is a unknown error." +msgstr "" + +#: ../../include/functions_update_manager.php:1548 +msgid "Remote server error on newsletter request" +msgstr "" + +#: ../../include/functions_update_manager.php:1558 +msgid "E-mail successfully subscribed to newsletter." +msgstr "" + +#: ../../include/functions_update_manager.php:1563 +msgid "E-mail has already subscribed to newsletter." +msgstr "" + +#: ../../include/functions_update_manager.php:1570 +#: ../../include/functions_update_manager.php:1651 +msgid "Update manager returns error code: " +msgstr "" + +#: ../../include/functions_update_manager.php:1607 +msgid "Error while registering console." +msgstr "" + +#: ../../include/functions_update_manager.php:1639 +msgid "Pandora successfully subscribed with UID: " +msgstr "" + +#: ../../include/functions_update_manager.php:1644 +msgid "Unsuccessful subscription." +msgstr "" + +#: ../../include/functions_update_manager.php:1722 +msgid "Failed extracting the package to temp directory." +msgstr "" + +#: ../../include/functions_update_manager.php:1772 +msgid "Failed the copying of the files." +msgstr "" + +#: ../../include/functions_update_manager.php:1792 +msgid "Package extracted successfully." +msgstr "" + +#: ../../index.php:908 +msgid "User doesn\\'t exist." +msgstr "" + +#: ../../index.php:927 +msgid "User only can use the API." +msgstr "" + +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:26 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "" + +#: ../../operation/search_users.php:38 +msgid "Profile" +msgstr "" + +#: ../../operation/tree.php:103 +#, php-format +msgid "Sort the agents by %s" +msgstr "" + +#: ../../operation/tree.php:106 +msgid "tags" +msgstr "" + +#: ../../operation/tree.php:114 +msgid "groups" +msgstr "" + +#: ../../operation/tree.php:118 +msgid "module groups" +msgstr "" + +#: ../../operation/tree.php:127 +msgid "policies" +msgstr "" + +#: ../../operation/tree.php:166 +msgid "Search group" +msgstr "" + +#: ../../operation/tree.php:170 ../../operation/tree.php:213 +msgid "Show not init modules" +msgstr "" + +#: ../../operation/tree.php:179 +msgid "Search agent" +msgstr "" + +#: ../../operation/tree.php:182 +msgid "Show not init agents" +msgstr "" + +#: ../../operation/tree.php:185 +msgid "Show full hirearchy" +msgstr "" + +#: ../../operation/tree.php:210 +msgid "Search module" +msgstr "" + +#: ../../operation/tree.php:242 +msgid "Tree search" +msgstr "" + +#: ../../operation/tree.php:348 +msgid "Groups found" +msgstr "" + +#: ../../operation/tree.php:441 ../../operation/agentes/status_monitor.php:1836 +#: ../../operation/agentes/estado_monitores.php:414 +msgid "Module: " +msgstr "" + +#: ../../operation/users/user_edit.php:164 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" +msgstr "" + +#: ../../operation/users/user_edit.php:177 +#: ../../operation/users/user_edit.php:192 +msgid "Password successfully updated" +msgstr "" + +#: ../../operation/users/user_edit.php:187 +#: ../../operation/users/user_edit.php:233 +msgid "Error updating user info" +msgstr "" + +#: ../../operation/users/user_edit.php:195 +msgid "No changes have been made" +msgstr "" + +#: ../../operation/users/user_edit.php:206 +msgid "Please enter a valid email" +msgstr "" + +#: ../../operation/users/user_edit.php:208 +msgid "Please enter a valid phone number" +msgstr "" + +#: ../../operation/users/user_edit.php:214 +msgid "Error updating passwords: " +msgstr "" + +#: ../../operation/users/user_edit.php:238 +msgid "Edit my User" +msgstr "" + +#: ../../operation/users/user_edit.php:284 +msgid "You cannot change your password under the current authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:298 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "" + +#: ../../operation/users/user_edit.php:404 +msgid "Show information" +msgstr "" + +#: ../../operation/users/user_edit.php:412 +msgid "Event filter" +msgstr "" + +#: ../../operation/users/user_edit.php:425 +msgid "Newsletter Subscribed" +msgstr "" + +#: ../../operation/users/user_edit.php:427 +#, php-format +msgid "Already subscribed to %s newsletter" +msgstr "" + +#: ../../operation/users/user_edit.php:430 +msgid "Newsletter Reminder" +msgstr "" + +#: ../../operation/users/user_edit.php:503 +msgid "Autorefresh" +msgstr "" + +#: ../../operation/users/user_edit.php:504 +msgid "This will activate autorefresh in selected pages" +msgstr "" + +#: ../../operation/users/user_edit.php:539 +msgid "Full list of pages" +msgstr "" + +#: ../../operation/users/user_edit.php:548 +#: ../../operation/users/user_edit.php:549 +msgid "Push selected pages into autorefresh list" +msgstr "" + +#: ../../operation/users/user_edit.php:557 +#: ../../operation/users/user_edit.php:558 +msgid "Pop selected pages out of autorefresh list" +msgstr "" + +#: ../../operation/users/user_edit.php:563 +msgid "List of pages with autorefresh" +msgstr "" + +#: ../../operation/users/user_edit.php:572 +msgid "Time autorefresh" +msgstr "" + +#: ../../operation/users/user_edit.php:574 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, " +"needing to enable the autorefresh first" +msgstr "" + +#: ../../operation/users/user_edit.php:668 +msgid "eHorus user configuration" +msgstr "" + +#: ../../operation/users/user_edit.php:673 +msgid "eHorus user acces enabled" +msgstr "" + +#: ../../operation/users/user_edit.php:711 +msgid "" +"You can not change your user info under the current authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:786 +msgid "This user doesn't have any assigned profile/group." +msgstr "" + +#: ../../operation/users/user_edit.php:990 +msgid "Double autentication information" +msgstr "" + +#: ../../operation/users/user_edit.php:1053 +#: ../../operation/users/user_edit.php:1129 +msgid "Double autentication activation" +msgstr "" + +#: ../../operation/users/user_edit.php:1079 +msgid "The double authentication will be deactivated" +msgstr "" + +#: ../../operation/users/user_edit.php:1080 +msgid "Deactivate" +msgstr "" + +#: ../../operation/users/user_edit.php:1112 +msgid "The double autentication was deactivated successfully" +msgstr "" + +#: ../../operation/users/user_edit.php:1115 +#: ../../operation/users/user_edit.php:1119 +msgid "There was an error deactivating the double autentication" +msgstr "" + +#: ../../operation/users/user_edit_header.php:98 +msgid "User notifications" +msgstr "" + +#: ../../operation/users/user_edit_header.php:121 ../../operation/menu.php:469 +msgid "Workspace" +msgstr "" + +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Also receive an email" +msgstr "" + +#: ../../operation/search_helps.php:19 +msgid "Zero results found." +msgstr "" + +#: ../../operation/search_helps.php:20 +#, php-format +msgid "" +"You can find more help in the wiki" +msgstr "" + +#: ../../operation/search_helps.php:33 +msgid "Matches" +msgstr "" + +#: ../../operation/visual_console/view.php:291 +msgid "Delete Item" +msgstr "" + +#: ../../operation/visual_console/view.php:297 +msgid "Copy Item" +msgstr "" + +#: ../../operation/visual_console/view.php:562 +msgid "Are you sure" +msgstr "" + +#: ../../operation/visual_console/legacy_public_view.php:147 +#: ../../operation/visual_console/public_view.php:131 +msgid "QR code of the page" +msgstr "" + +#: ../../operation/visual_console/legacy_public_view.php:176 +#: ../../operation/visual_console/legacy_view.php:304 +msgid "Until refresh" +msgstr "" + +#: ../../operation/agentes/stat_win.php:71 +#, php-format +msgid "%s Graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:96 +msgid "CSV Export Information" +msgstr "" + +#: ../../operation/agentes/stat_win.php:97 +msgid "The CSV export has been successful." +msgstr "" + +#: ../../operation/agentes/stat_win.php:105 +msgid "There was a problem locating the source of the graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:243 +#: ../../operation/agentes/interface_traffic_graph_win.php:191 +msgid "Refresh time" +msgstr "" + +#: ../../operation/agentes/stat_win.php:263 +#: ../../operation/agentes/interface_traffic_graph_win.php:204 +msgid "Begin time" +msgstr "" + +#: ../../operation/agentes/stat_win.php:270 +msgid "Zoom" +msgstr "" + +#: ../../operation/agentes/stat_win.php:284 +#: ../../operation/agentes/interface_traffic_graph_win.php:210 +#: ../../operation/agentes/graphs.php:211 +#: ../../operation/reporting/graph_viewer.php:255 +msgid "Time range" +msgstr "" + +#: ../../operation/agentes/stat_win.php:298 +#: ../../operation/agentes/graphs.php:215 +msgid "Show events" +msgstr "" + +#: ../../operation/agentes/stat_win.php:315 +#, php-format +msgid "" +"'Show events' is disabled because this %s node is set to event replication." +msgstr "" + +#: ../../operation/agentes/stat_win.php:324 +#: ../../operation/agentes/graphs.php:217 +msgid "Show alerts" +msgstr "" + +#: ../../operation/agentes/stat_win.php:341 +#: ../../operation/agentes/interface_traffic_graph_win.php:216 +msgid "Show percentil" +msgstr "" + +#: ../../operation/agentes/stat_win.php:404 +#: ../../operation/agentes/interface_traffic_graph_win.php:266 +msgid "Graph configuration menu" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:192 +msgid "Insufficient permissions to validate alerts" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:716 +msgid "Full list of alerts" +msgstr "" + +#: ../../operation/agentes/gis_view.php:93 +msgid "Period to show data as path" +msgstr "" + +#: ../../operation/agentes/gis_view.php:97 +msgid "Refresh path" +msgstr "" + +#: ../../operation/agentes/gis_view.php:155 +msgid "This agent doesn't have any GIS data." +msgstr "" + +#: ../../operation/agentes/gis_view.php:167 +msgid "Positional data from the last" +msgstr "" + +#: ../../operation/agentes/gis_view.php:206 +#, php-format +msgid "%s Km" +msgstr "" + +#: ../../operation/agentes/gis_view.php:220 +msgid "Distance" +msgstr "" + +#: ../../operation/agentes/gis_view.php:221 +msgid "# of Packages" +msgstr "" + +#: ../../operation/agentes/gis_view.php:222 +#: ../../operation/gis_maps/ajax.php:242 +msgid "Manual placement" +msgstr "" + +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.excel.php:66 +msgid "Invalid time specified" +msgstr "" + +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.excel.php:161 +msgid "No modules specified" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:206 +msgid "Sucessfully deleted agent" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:208 +msgid "There was an error message deleting the agent" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:249 +msgid "Search in custom fields" +msgstr "" + +#: ../../operation/agentes/ehorus.php:30 +msgid "Missing agent id" +msgstr "" + +#: ../../operation/agentes/ehorus.php:48 +msgid "Missing ehorus agent id" +msgstr "" + +#: ../../operation/agentes/ehorus.php:97 ../../operation/agentes/ehorus.php:134 +msgid "There was an error retrieving an authorization token" +msgstr "" + +#: ../../operation/agentes/ehorus.php:109 +#: ../../operation/agentes/ehorus.php:146 +#: ../../operation/agentes/ehorus.php:182 +msgid "There was an error processing the response" +msgstr "" + +#: ../../operation/agentes/ehorus.php:170 +msgid "There was an error retrieving the agent data" +msgstr "" + +#: ../../operation/agentes/ehorus.php:187 +msgid "Remote management of this agent with eHorus" +msgstr "" + +#: ../../operation/agentes/ehorus.php:189 +msgid "Launch" +msgstr "" + +#: ../../operation/agentes/ehorus.php:195 +msgid "The connection was lost and the authorization token was expired" +msgstr "" + +#: ../../operation/agentes/ehorus.php:195 +msgid "Reload the page to request a new authorization token" +msgstr "" + +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 +msgid "Latest events for this agent" +msgstr "" + +#: ../../operation/agentes/networkmap.dinamic.php:101 +#: ../../operation/agentes/pandora_networkmap.view.php:803 +#: ../../operation/snmpconsole/snmp_statistics.php:41 +#: ../../operation/snmpconsole/snmp_browser.php:52 +#: ../../operation/snmpconsole/snmp_view.php:85 +msgid "Normal screen" +msgstr "" + +#: ../../operation/agentes/networkmap.dinamic.php:119 +#: ../../operation/agentes/pandora_networkmap.view.php:821 +msgid "List of networkmap" +msgstr "" + +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 +msgid "empty" +msgstr "" + +#: ../../operation/agentes/realtime_win.php:64 +#, php-format +msgid "%s Realtime Module Graph" +msgstr "" + +#: ../../operation/agentes/realtime_win.php:87 +msgid "Realtime extension is not enabled." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:352 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:571 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:125 +#: ../../operation/agentes/pandora_networkmap.php:366 +msgid "Succesfully created" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:201 +#: ../../operation/agentes/pandora_networkmap.php:499 +msgid "Succesfully updated" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:524 +msgid "Succesfully duplicate" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:538 +msgid "Succesfully deleted" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:774 +msgid "Empty map" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Pending to generate" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:806 +msgid "There are no maps defined." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:813 +msgid "Create network map" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:821 +msgid "Create empty network map" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:60 +msgid "In" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:61 +msgid "Out" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:77 +#, php-format +msgid "%s Interface Graph" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:233 +msgid "Zoom factor" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:240 +msgid "Full" +msgstr "" + +#: ../../operation/agentes/graphs.php:143 +msgid "Other modules" +msgstr "" + +#: ../../operation/agentes/graphs.php:150 +msgid "Modules network no proc" +msgstr "" + +#: ../../operation/agentes/graphs.php:157 +msgid "Modules boolean" +msgstr "" + +#: ../../operation/agentes/graphs.php:217 +msgid "the combined graph does not show the alerts into this graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:219 +msgid "Show as one combined graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:221 +msgid "several graphs for each module" +msgstr "" + +#: ../../operation/agentes/graphs.php:222 +msgid "One combined graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:230 +#: ../../operation/agentes/graphs.php:406 +msgid "Area stack" +msgstr "" + +#: ../../operation/agentes/graphs.php:232 +#: ../../operation/agentes/graphs.php:414 +msgid "Line stack" +msgstr "" + +#: ../../operation/agentes/graphs.php:249 +msgid "Save as custom graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:262 +msgid "Filter graphs" +msgstr "" + +#: ../../operation/agentes/graphs.php:289 +msgid "There was an error loading the graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:297 +#: ../../operation/agentes/graphs.php:301 +msgid "Name custom graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:347 +msgid "Save custom graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:368 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "" + +#: ../../operation/agentes/datos_agente.php:173 +msgid "Received data from" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:180 +msgid "Main database" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:181 +msgid "" +"Switch between the main database and the history database to retrieve module " +"data" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/alerts_status.functions.php:101 +msgid "Free text for search" +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:42 +msgid "Cannot connect with node to display the module data." +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:85 +#, php-format +msgid "%s Snapshot data view for module (%s)" +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:91 +#, php-format +msgid "Current data at %s" +msgstr "" + +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:537 +msgid "Export data" +msgstr "" + +#: ../../operation/agentes/exportdata.php:282 +msgid "No modules of type string. You can not calculate their average" +msgstr "" + +#: ../../operation/agentes/exportdata.php:358 +msgid "Export type" +msgstr "" + +#: ../../operation/agentes/exportdata.php:363 +msgid "MS Excel" +msgstr "" + +#: ../../operation/agentes/exportdata.php:364 +msgid "Average per hour/day" +msgstr "" + +#: ../../operation/agentes/custom_fields.php:59 +msgid "No fields defined" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:66 ../../operation/menu.php:60 +msgid "Monitor detail" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:79 +msgid "Monitor view" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:531 +msgid "Wux server module" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:552 +msgid "Min. hours in current status" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:711 +msgid "Advanced Options" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1144 +msgid "Data Type" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1263 +#: ../../operation/agentes/pandora_networkmap.view.php:281 +msgid "(Adopt) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1271 +#: ../../operation/agentes/pandora_networkmap.view.php:289 +msgid "(Unlinked) (Adopt) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1274 +#: ../../operation/agentes/pandora_networkmap.view.php:292 +msgid "(Unlinked) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1745 +msgid "This group doesn't have any monitor" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1747 +msgid "Sorry no search parameters" +msgstr "" + +#: ../../operation/agentes/group_view.php:151 +msgid "Summary of the status groups" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:51 +msgid "Tag's information" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:102 +msgid "Relationship information" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:153 +msgid "No initialized modules found." +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:174 +msgid "List of modules" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:175 +msgid "" +"To see the list of modules paginated, enable this option in the Styles " +"Configuration." +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:511 +msgid "Status:" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:517 +msgid "Not Normal" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:532 +#: ../../operation/agentes/alerts_status.functions.php:161 +msgid "Free text for search (*):" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:533 +msgid "Search by module name, list matches." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:149 +msgid "Success be updated." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:246 +msgid "Name: " +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:296 +msgid "Policy: " +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:393 +msgid "Data: " +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:395 +#: ../../operation/agentes/estado_generalagente.php:743 +msgid "Last contact: " +msgstr "" + +#: ../../operation/agentes/ver_agente.php:1036 +msgid "Sons" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:1281 +msgid "Log Viewer" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:1306 +msgid "Terminal" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:58 +msgid "The agent has not assigned server. Maybe agent does not run fine." +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:238 +msgid "Remote configuration enabled" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:280 +msgid "Agent contact" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:283 +msgid "Refresh data" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:285 +msgid "Force remote checks" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:312 +msgid "Next contact" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:400 +msgid "Agent info" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:413 +msgid "There is no GIS data." +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:534 +msgid "Agent access rate (Last 24h)" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:573 +msgid "Active incident on this agent" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:729 +msgid "Events info (24hr.)" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:868 +msgid "Interface information (SNMP)" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:35 +msgid "Error processing alert(s)" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:102 +msgid "Filter by agent name, module name, template name or action name" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:113 +msgid "No actions" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:162 +msgid "Filter by module name, template name or action name" +msgstr "" + +#: ../../operation/agentes/tactical.php:170 +msgid "Report of State" +msgstr "" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_edit.php:51 +msgid "Received messages" +msgstr "" + +#: ../../operation/messages/message_list.php:51 +#: ../../operation/messages/message_edit.php:60 +msgid "Sent messages" +msgstr "" + +#: ../../operation/messages/message_list.php:59 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_edit.php:69 +msgid "Create message" +msgstr "" + +#: ../../operation/messages/message_list.php:65 +#: ../../operation/messages/message_edit.php:75 ../../operation/menu.php:515 +msgid "Messages" +msgstr "" + +#: ../../operation/messages/message_list.php:104 +msgid "Not deleted. Error deleting messages" +msgstr "" + +#: ../../operation/messages/message_list.php:112 +#: ../../operation/messages/message_list.php:121 +msgid "You have" +msgstr "" + +#: ../../operation/messages/message_list.php:112 +msgid "sent message(s)" +msgstr "" + +#: ../../operation/messages/message_list.php:121 +msgid "unread message(s)" +msgstr "" + +#: ../../operation/messages/message_list.php:132 +msgid "There are no messages." +msgstr "" + +#: ../../operation/messages/message_list.php:162 +#: ../../operation/messages/message_edit.php:247 +msgid "Destination" +msgstr "" + +#: ../../operation/messages/message_list.php:164 +#: ../../operation/messages/message_edit.php:239 +msgid "Sender" +msgstr "" + +#: ../../operation/messages/message_list.php:182 +msgid "Click to read" +msgstr "" + +#: ../../operation/messages/message_list.php:186 +msgid "Mark as unread" +msgstr "" + +#: ../../operation/messages/message_list.php:192 +#: ../../operation/messages/message_list.php:196 +msgid "Message unread - click to read" +msgstr "" + +#: ../../operation/messages/message_list.php:224 +msgid "No Subject" +msgstr "" + +#: ../../operation/messages/message_edit.php:94 +msgid "This message does not exist in the system" +msgstr "" + +#: ../../operation/messages/message_edit.php:158 +msgid "wrote" +msgstr "" + +#: ../../operation/messages/message_edit.php:173 +msgid "Delete conversation" +msgstr "" + +#: ../../operation/messages/message_edit.php:180 +msgid "Reply" +msgstr "" + +#: ../../operation/messages/message_edit.php:207 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:208 +#, php-format +msgid "Error sending message to user %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:224 +msgid "Message successfully sent" +msgstr "" + +#: ../../operation/messages/message_edit.php:225 +#, php-format +msgid "Error sending message to group %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:301 +msgid "Select user" +msgstr "" + +#: ../../operation/messages/message_edit.php:308 +msgid "OR" +msgstr "" + +#: ../../operation/messages/message_edit.php:316 +msgid "Select group" +msgstr "" + +#: ../../operation/messages/message_edit.php:346 +msgid "Send message" +msgstr "" + +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:125 +msgid "Data to show" +msgstr "" + +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "" + +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "" + +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +#: ../../operation/netflow/nf_live_view.php:284 +msgid "Select this checkbox to write interval instead a date." +msgstr "" + +#: ../../operation/network/network_report.php:198 +#: ../../operation/network/network_report.php:246 +msgid "Flows" +msgstr "" + +#: ../../operation/network/network_report.php:209 +#: ../../operation/network/network_report.php:249 +msgid "Packets" +msgstr "" + +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "" + +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by IP %s. Click here to remove the filter." +msgstr "" + +#: ../../operation/network/network_usage_map.php:29 +#: ../../operation/menu.php:117 +msgid "Network usage map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:140 +msgid "Show netflow map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:151 +msgid "Show NTA map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:199 +msgid "No data retrieved" +msgstr "" + +#: ../../operation/network/network_explorer.php:38 ../../operation/menu.php:105 +msgid "Network explorer" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:123 +#: ../../operation/netflow/nf_live_view.php:145 +#: ../../operation/netflow/nf_live_view.php:151 +msgid "Netflow live view" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:162 +msgid "Error creating filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:164 +msgid "Filter created successfully" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:183 +msgid "Filter updated successfully" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:184 +msgid "Error updating filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:208 +msgid "Draw live filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:242 +msgid "Connection" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:295 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:396 +msgid "Select a filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:469 +msgid "IP address resolution" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:469 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:472 +msgid "Source ip" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:495 +msgid "Draw" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:499 +msgid "Save as new filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:500 +msgid "Update current filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:514 +msgid "No filter selected" +msgstr "" + +#: ../../operation/netflow/netflow_explorer.php:38 ../../operation/menu.php:89 +msgid "Netflow explorer" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:118 +#: ../../operation/snmpconsole/snmp_view.php:688 +msgid "There are no SNMP traps in database" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:131 +msgid "Traps received by source" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:145 +#: ../../operation/snmpconsole/snmp_statistics.php:213 +msgid "Number" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:159 +#: ../../operation/snmpconsole/snmp_view.php:907 +msgid "View agent details" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:199 +msgid "Traps received by Enterprise String" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:212 +msgid "Trap Enterprise String" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:70 +msgid "SNMP Browser" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:201 +msgid "Adding modules in progress" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:487 +msgid "Create policy" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:579 +msgid "Are you sure you want add module?" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:578 +msgid "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:592 +msgid "From (Date)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:594 +msgid "To (Date)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:597 +msgid "From (Time)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:599 +msgid "To (Time)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:603 +msgid "Search by trap type" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:627 +msgid "Group by Enterprise String/IP" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:686 +msgid "There are no SNMP traps in database that contains this filter" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:719 +msgid "Refresh every" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:731 +msgid "SNMP Traps" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:816 +msgid "Trap subtype" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:999 +msgid "Variable bindings:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1005 +msgid "See more details" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1017 +msgid "Enterprise String:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1069 +msgid "Trap type:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1095 +msgid "Count:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1099 +msgid "First trap:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1103 +msgid "Last trap:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1124 +msgid "No matching traps found" +msgstr "" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:28 +#: ../../operation/menu.php:143 +msgid "MIB uploader" +msgstr "" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:70 +msgid "" +"MIB files will be installed on the system. Please note that a MIB may depend " +"on other MIB. To customize trap definitions use the SNMP trap editor." +msgstr "" + +#: ../../operation/menu.php:39 +msgid "Views" +msgstr "" + +#: ../../operation/menu.php:93 +msgid "Netflow Live View" +msgstr "" + +#: ../../operation/menu.php:138 +msgid "SNMP browser" +msgstr "" + +#: ../../operation/menu.php:153 +msgid "SNMP" +msgstr "" + +#: ../../operation/menu.php:272 ../../operation/gis_maps/gis_map.php:35 +msgid "GIS Maps" +msgstr "" + +#: ../../operation/menu.php:277 +msgid "List of Gis maps" +msgstr "" + +#: ../../operation/menu.php:316 +msgid "Topology maps" +msgstr "" + +#: ../../operation/menu.php:434 +msgid "RSS" +msgstr "" + +#: ../../operation/menu.php:439 +msgid "Marquee" +msgstr "" + +#: ../../operation/menu.php:448 ../../operation/events/sound_events.php:43 +msgid "Sound Events" +msgstr "" + +#: ../../operation/menu.php:459 ../../operation/events/events.php:823 +msgid "Sound Alerts" +msgstr "" + +#: ../../operation/menu.php:481 +msgid "Configure user notifications" +msgstr "" + +#: ../../operation/menu.php:505 +msgid "List of Incidents" +msgstr "" + +#: ../../operation/menu.php:507 +#: ../../operation/incidents/list_integriaims_incidents.php:31 +msgid "Integria IMS Tickets" +msgstr "" + +#: ../../operation/menu.php:521 +msgid "Messages List" +msgstr "" + +#: ../../operation/menu.php:522 +msgid "New message" +msgstr "" + +#: ../../operation/menu.php:543 +msgid "Scheduled downtime" +msgstr "" + +#: ../../operation/menu.php:617 +msgid "Tools" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:195 +msgid "No maps found" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:214 +msgid "Caution: Do you want delete the map?" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:221 +msgid "Do you want to set default the map?" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:229 +msgid "There was error on setup the default map." +msgstr "" + +#: ../../operation/gis_maps/render_view.php:157 +msgid "Filter by status" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 +#: ../../operation/gis_maps/ajax.php:444 +msgid "Position (Lat, Long, Alt)" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:238 +msgid "Start contact" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:240 +msgid "Num reports" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 +msgid "Default position of map." +msgstr "" + +#: ../../operation/gis_maps/ajax.php:339 +msgid "Satellite Version" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 +msgid "Number of non-validated critical events" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 +msgid "Alert(s) fired" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:187 +msgid "File could not be saved due to database error" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:200 +msgid "File uploaded" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:201 +msgid "File could not be uploaded" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:262 +msgid "Incident details" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:266 +#: ../../operation/incidents/incident.php:494 +msgid "Create incident" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:287 +msgid "Opened at" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:355 +#: ../../operation/incidents/integriaims_export_csv.php:96 +#: ../../operation/incidents/configure_integriaims_incident.php:258 +#: ../../operation/incidents/list_integriaims_incidents.php:141 +#: ../../operation/incidents/list_integriaims_incidents.php:267 +msgid "Creator" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:400 +msgid "Update incident" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:418 +#: ../../operation/incidents/incident_detail.php:421 +msgid "Add note" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:454 +msgid "Notes attached to incident" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:475 +#: ../../operation/incidents/incident_detail.php:525 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:122 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:296 +msgid "Filename" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:503 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:274 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:448 +msgid "Attached files" +msgstr "" + +#: ../../operation/incidents/incident_detail.php:519 +#: ../../operation/incidents/incident_detail.php:523 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +msgid "Add attachment" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:88 +msgid "ID Ticket" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:90 +#: ../../operation/incidents/list_integriaims_incidents.php:263 +msgid "Group/Company" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:95 +msgid "Started" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:30 +msgid "Incidents by status" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:33 +msgid "Incidents by priority" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:36 +msgid "Incidents by group" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:39 +msgid "Incidents by user" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:42 +msgid "Incidents by source" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:33 +msgid "Update Integria IMS Ticket" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:35 +msgid "Create Integria IMS Ticket" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:40 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:30 +#: ../../operation/incidents/list_integriaims_incidents.php:41 +msgid "Integria integration must be enabled in Pandora setup" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:115 +msgid "Successfully created in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:116 +msgid "Could not be created in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:127 +msgid "Successfully updated in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:128 +msgid "Could not be updated in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:270 +msgid "" +"This field corresponds to the Integria IMS user specified in Integria IMS " +"setup" +msgstr "" + +#: ../../operation/incidents/incident.php:60 +msgid "Incident management" +msgstr "" + +#: ../../operation/incidents/incident.php:107 +msgid "Successfully reclaimed ownership" +msgstr "" + +#: ../../operation/incidents/incident.php:108 +msgid "Could not reclame ownership" +msgstr "" + +#: ../../operation/incidents/incident.php:199 +msgid "Error creating incident" +msgstr "" + +#: ../../operation/incidents/incident.php:201 +msgid "Incident created" +msgstr "" + +#: ../../operation/incidents/incident.php:296 +msgid "Incidents:" +msgstr "" + +#: ../../operation/incidents/incident.php:297 +msgid "All incidents" +msgstr "" + +#: ../../operation/incidents/incident.php:319 +msgid "Priorities:" +msgstr "" + +#: ../../operation/incidents/incident.php:320 +msgid "All priorities" +msgstr "" + +#: ../../operation/incidents/incident.php:324 +msgid "Users:" +msgstr "" + +#: ../../operation/incidents/incident.php:340 +msgid "Agents:" +msgstr "" + +#: ../../operation/incidents/incident.php:346 +msgid "All agents" +msgstr "" + +#: ../../operation/incidents/incident.php:356 +msgid "Groups:" +msgstr "" + +#: ../../operation/incidents/incident.php:362 +msgid "Free text:" +msgstr "" + +#: ../../operation/incidents/incident.php:363 +msgid "Search by incident name or description, list matches." +msgstr "" + +#: ../../operation/incidents/incident.php:481 +msgid "Delete incidents" +msgstr "" + +#: ../../operation/incidents/incident.php:485 +msgid "Become owner" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:84 +msgid "Not yet" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:88 +msgid "Not closed yet" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:169 +msgid "File successfully added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:170 +msgid "File could not be added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:173 +msgid "File has an invalid extension" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:189 +msgid "File successfully deleted" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:190 +msgid "File could not be deleted" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:254 +msgid "File name" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:332 +msgid "Comment successfully added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 +msgid "Comment could not be added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:359 +msgid "No comments found" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:400 +msgid "Created by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:401 +msgid "Owned by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:402 +msgid "Closed by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:419 +msgid "Closed at" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:430 +msgid "People" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:113 +msgid "Text filter" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:177 +msgid "Created from" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:189 +msgid "Created to" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:262 +msgid "Ticket" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:264 +msgid "Status/Resolution" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:265 +msgid "Prior" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:266 +msgid "Updated/Started" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:316 +msgid "No tickets to show" +msgstr "" + +#: ../../operation/search_main.php:55 ../../operation/search_main.php:57 +#: ../../operation/search_main.php:65 ../../operation/search_main.php:67 +#: ../../operation/search_main.php:69 ../../operation/search_main.php:71 +#: ../../operation/search_main.php:74 +#, php-format +msgid "%s Found" +msgstr "" + +#: ../../operation/search_main.php:56 +msgid "Modules found" +msgstr "" + +#: ../../operation/search_main.php:64 +msgid "Users found" +msgstr "" + +#: ../../operation/search_main.php:66 +msgid "Graphs found" +msgstr "" + +#: ../../operation/search_main.php:68 +msgid "Reports found" +msgstr "" + +#: ../../operation/search_main.php:70 +msgid "Maps found" +msgstr "" + +#: ../../operation/search_main.php:83 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:159 +msgid "View Report" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:201 +msgid "Set initial date" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:229 +msgid "Invalid date selected. Initial date must be before end date." +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:334 +#: ../../operation/reporting/graph_viewer.php:357 +msgid "Invalid date selected" +msgstr "" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:391 +msgid "There are no defined reportings" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:230 +msgid "No data." +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:264 +#: ../../operation/reporting/graph_viewer.php:286 +msgid "Graph defined" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:278 +msgid "" +"If an option is selected, all graphs will have the highest value from all " +"modules included in the graph as a maximum threshold" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:287 +msgid "Zoom x1" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:288 +msgid "Zoom x2" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:289 +msgid "Zoom x3" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:365 +msgid "Custom graph viewer" +msgstr "" + +#: ../../operation/events/event_statistics.php:55 +msgid "Event graph by user" +msgstr "" + +#: ../../operation/events/events_marquee.php:113 +#, php-format +msgid "%s - Latest events" +msgstr "" + +#: ../../operation/events/events_list.php:348 +#: ../../operation/events/events_list.php:1085 +msgid "No filter loaded" +msgstr "" + +#: ../../operation/events/events_list.php:356 +#: ../../operation/events/events_list.php:1085 +msgid "Filter loaded" +msgstr "" + +#: ../../operation/events/events_list.php:971 +#: ../../operation/events/events.php:937 +msgid "Group agents" +msgstr "" + +#: ../../operation/events/events_list.php:999 +#: ../../operation/events/events.php:1127 +msgid "Id source event" +msgstr "" + +#: ../../operation/events/events_list.php:1091 +#: ../../operation/events/events_list.php:1093 +msgid "Event control filter" +msgstr "" + +#: ../../operation/events/events_list.php:1101 +msgid "Error creating filter." +msgstr "" + +#: ../../operation/events/events_list.php:1105 +msgid "Error creating filter is duplicated." +msgstr "" + +#: ../../operation/events/events_list.php:1109 +msgid "Filter created." +msgstr "" + +#: ../../operation/events/events_list.php:1114 +msgid "Filter updated." +msgstr "" + +#: ../../operation/events/events_list.php:1118 +msgid "Error updating filter." +msgstr "" + +#: ../../operation/events/sound_events.php:60 +msgid "Sound console" +msgstr "" + +#: ../../operation/events/events_rss.php:195 +msgid "Your IP is not into the IP list with API access." +msgstr "" + +#: ../../operation/events/events_rss.php:214 +msgid "The URL of your feed has bad hash." +msgstr "" + +#: ../../operation/events/events.php:697 +msgid "Event viewer" +msgstr "" + +#: ../../operation/events/events.php:726 +msgid "History event list" +msgstr "" + +#: ../../operation/events/events.php:730 +msgid "RSS Events" +msgstr "" + +#: ../../operation/events/events.php:734 +msgid "Marquee display" +msgstr "" + +#: ../../operation/events/events.php:738 +msgid "Export to CSV file" +msgstr "" + +#: ../../operation/events/events.php:742 ../../operation/events/events.php:782 +msgid "Sound events" +msgstr "" + +#: ../../operation/events/events.php:787 +msgid "History" +msgstr "" + +#: ../../operation/events/events.php:849 +msgid "" +"Event viewer is disabled due event replication. For more information, please " +"contact with the administrator" +msgstr "" + +#: ../../operation/events/events.php:1377 +msgid "Current filter" +msgstr "" + +#: ../../operation/events/events.php:1382 +msgid "Not set." +msgstr "" + +#: ../../operation/events/events.php:1395 +msgid "Any status." +msgstr "" + +#: ../../operation/events/events.php:1399 +msgid "New events." +msgstr "" + +#: ../../operation/events/events.php:1403 +msgid "Validated." +msgstr "" + +#: ../../operation/events/events.php:1407 +msgid "In proccess." +msgstr "" + +#: ../../operation/events/events.php:1411 +msgid "Not validated." +msgstr "" + +#: ../../operation/events/events.php:1423 +msgid "Any time." +msgstr "" + +#: ../../operation/events/events.php:1425 +#: ../../operation/events/events.php:2301 +msgid "Last hour." +msgstr "" + +#: ../../operation/events/events.php:1427 +#, php-format +msgid "Last %d hours." +msgstr "" + +#: ../../operation/events/events.php:1435 +msgid "Duplicated" +msgstr "" + +#: ../../operation/events/events.php:1438 +msgid "All events." +msgstr "" + +#: ../../operation/events/events.php:1442 +msgid "Group agents." +msgstr "" + +#: ../../operation/events/events.php:1520 +msgid "In progress selected" +msgstr "" + +#: ../../operation/events/events.php:1521 +msgid "Validate selected" +msgstr "" + +#: ../../operation/events/events.php:1539 +#: ../../operation/events/events.build_table.php:990 +msgid "Execute event response" +msgstr "" + +#: ../../operation/events/events.php:1544 +#: ../../operation/events/events.build_table.php:995 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "" + +#: ../../operation/events/events.php:1549 +#: ../../operation/events/events.build_table.php:1000 +msgid "Please, select an event" +msgstr "" + +#: ../../operation/events/events.php:1638 +msgid "has at least" +msgstr "" + +#: ../../operation/events/events.php:1640 +msgid "events" +msgstr "" + +#: ../../operation/events/events.php:1884 +msgid "Validate events" +msgstr "" + +#: ../../operation/events/events.php:1899 +#: ../../operation/events/events.build_table.php:852 +msgid "Change to in progress status" +msgstr "" + +#: ../../operation/events/events.php:1908 +msgid "Delete events" +msgstr "" + +#: ../../operation/events/events.php:2303 +msgid "hours." +msgstr "" + +#: ../../operation/events/events.build_table.php:81 +msgid "More detail" +msgstr "" + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid "The Agent: " +msgstr "" + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " has " +msgstr "" + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " events." +msgstr "" + +#: ../../operation/search_policies.php:36 +msgid "Id_group" +msgstr "" + +#: ../../operation/servers/recon_view.php:32 +#: ../../operation/servers/recon_view.php:38 +#: ../../operation/servers/recon_view.php:52 +msgid "Recon View" +msgstr "" + +#: ../../operation/servers/recon_view.php:147 +msgid "Network recon task" +msgstr "" + +#: ../../operation/servers/recon_view.php:174 +msgid "has no recon tasks assigned" +msgstr "" + +#: ../../general/footer.php:54 +#, php-format +msgid "Page generated on %s" +msgstr "" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "" + +#: ../../general/first_task/incidents.php:21 +msgid "There are no incidents defined yet." +msgstr "" + +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 +msgid "Create Incidents" +msgstr "" + +#: ../../general/first_task/incidents.php:34 +#, php-format +msgid "" +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take " +"place on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any " +"user is able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with " +"comments and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles " +"and work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and " +"files.\n" +"\t\t" +msgstr "" + +#: ../../general/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." +msgstr "" + +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" +msgstr "" + +#: ../../general/first_task/recon_view.php:28 +msgid "" +"Discovery Task are used to find new elements in the network. \n" "\t\tIf it detects any item, it will add that item to the monitoring, and if " "that item it is already being monitored, then it will \n" "\t\tignore it or will update its information.There are three types of " @@ -8661,20 +45352,319 @@ msgid "" "\t\ttype. You can define your own customized recon script." msgstr "" -#: ../../general/firts_task/transactional_list.php:23 +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:48 +msgid "" +"With Pandora FMS Enterprise you can add high availability to your Pandora " +"FMS installation by adding redundant MySQL servers" +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:50 +msgid "" +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " +"into a Pandora FMS DB Cluster." +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:59 +msgid "Add new node" +msgstr "" + +#: ../../general/first_task/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 +msgid "Create Visual Console" +msgstr "" + +#: ../../general/first_task/map_builder.php:37 +#, php-format +msgid "" +"%s allows users to create visual maps on which each user is able to create " +"his or her own monitoring map. The new visual console editor is much more " +"practical, although the prior visual console editor had its advantages. On " +"the new visual console, we've been successful in imitating the sensation and " +"touch of a drawing application like GIMP. We've also simplified the editor " +"by dividing it into several subject-divided tabs named 'Data', 'Preview', " +"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " +"designed to handle are 'static images', 'percentage bars', 'module graphs' " +"and 'simple values'." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:30 +msgid "There are no clusters defined yet." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:38 +#: ../../general/first_task/cluster_builder.php:56 +msgid "Create Cluster" +msgstr "" + +#: ../../general/first_task/cluster_builder.php:41 +msgid "" +"A cluster is a group of devices that provide the same service in high " +"availability." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:43 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "" + +#: ../../general/first_task/cluster_builder.php:45 +msgid "" +"Clusters to balance the service load: these are active - active (A/" +"A) mode clusters. It means that all the nodes (or machines that compose it) " +"are working. They must be working because if one stops working, it will " +"overload the others." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:47 +msgid "" +"Clusters to guarantee service: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the " +"cluster) will be running (primary) and another won't (secondary). When the " +"primary goes down, the secondary must take over and give the service " +"instead. Although many of the elements of this cluster are active-passive, " +"it will also have active elements in both of them that indicate that the " +"passive node is \"online\", so that in the case of a service failure in the " +"master, the active node collects this information." +msgstr "" + +#: ../../general/first_task/network_map.php:19 +msgid "There are no network map defined yet." +msgstr "" + +#: ../../general/first_task/network_map.php:26 +msgid "Network Map" +msgstr "" + +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 +msgid "Create Network Map" +msgstr "" + +#: ../../general/first_task/network_map.php:32 +msgid "" +"There is also an open-source version of the network map. \n" +"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " +"and relationships, agents, modules and groups available to the user. \n" +"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" +"\t\t\t" +msgstr "" + +#: ../../general/first_task/network_map.php:37 +msgid "Topology Map" +msgstr "" + +#: ../../general/first_task/network_map.php:38 +msgid "Group Map" +msgstr "" + +#: ../../general/first_task/network_map.php:39 +msgid "Radial Map (User without strict user)" +msgstr "" + +#: ../../general/first_task/network_map.php:40 +msgid "Dinamic Map" +msgstr "" + +#: ../../general/first_task/network_map.php:41 +msgid "Policy Map (Only Enterprise version)" +msgstr "" + +#: ../../general/first_task/tags.php:18 +msgid "There are no tags defined yet." +msgstr "" + +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 +msgid "Create Tags" +msgstr "" + +#: ../../general/first_task/tags.php:28 +msgid "" +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +"chosen modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." +msgstr "" + +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "" + +#: ../../general/first_task/omnishell.php:37 +#, php-format +msgid "" +"Omnishell is an enterprise feature which allows you to execute a structured " +"command along any agent in your %s. The only requirement is to have remote " +"configuration enabled in your agent." +msgstr "" + +#: ../../general/first_task/omnishell.php:42 +msgid "" +"You can execute any command on as many agents you need, and check the " +"execution on all of them using the Omnishell Command View" +msgstr "" + +#: ../../general/first_task/omnishell.php:50 +msgid "Define a command" +msgstr "" + +#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 +msgid "There are no custom fields defined yet." +msgstr "" + +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 +msgid "Create Custom Fields" +msgstr "" + +#: ../../general/first_task/custom_fields.php:30 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t You're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" + +#: ../../general/first_task/fields_manager.php:22 +msgid "Fields Manager" +msgstr "" + +#: ../../general/first_task/fields_manager.php:25 +msgid "Create Fields Manager" +msgstr "" + +#: ../../general/first_task/fields_manager.php:28 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -" +"> 'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" + +#: ../../general/first_task/fields_manager.php:34 +msgid "Create Fields " +msgstr "" + +#: ../../general/first_task/planned_downtime.php:18 +msgid "There are no planned downtime defined yet." +msgstr "" + +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 +msgid "Create Planned Downtime" +msgstr "" + +#: ../../general/first_task/planned_downtime.php:28 +#, php-format +msgid "" +"%s contains a scheduled downtime management system.\n" +"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " +"intervals whenever there is down time by deactivating the agent.\n" +"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. " +"During down time, down-time intervals aren't taken into\n" +"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " +"contain any data within those intervals." +msgstr "" + +#: ../../general/first_task/snmp_filters.php:18 +msgid "There are no SNMP filter defined yet." +msgstr "" + +#: ../../general/first_task/snmp_filters.php:22 +msgid "SNMP Filter" +msgstr "" + +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 +msgid "Create SNMP Filter" +msgstr "" + +#: ../../general/first_task/snmp_filters.php:28 +msgid "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " +"Pandora FMS versions 3.2 and above, \n" +"\t\t\t\tit's possible to filter the traps that the server obtains in order " +"to avoid straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -" +"> 'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap which is going to run in conjunction with any of them - " +"just the ones for the server are going to get ruled out automatically. " +msgstr "" + +#: ../../general/first_task/service_list.php:20 +msgid "There are no services defined yet." +msgstr "" + +#: ../../general/first_task/service_list.php:28 +#: ../../general/first_task/service_list.php:42 +msgid "Create Services" +msgstr "" + +#: ../../general/first_task/service_list.php:31 +msgid "" +"A service is a way to group your IT resources based on their " +"functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " +"your support application, or even your printers.\n" +"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " +"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" +"\t\t\t\t\t\t By the following example, you're able to see more clearly what " +"a service is:\n" +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " +"the world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, " +"an on-line shop and support." +msgstr "" + +#: ../../general/first_task/custom_graphs.php:19 +msgid "There are no custom graphs defined yet." +msgstr "" + +#: ../../general/first_task/custom_graphs.php:24 +msgid "Custom Graphs" +msgstr "" + +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 +msgid "Create Custom Graph" +msgstr "" + +#: ../../general/first_task/custom_graphs.php:30 +#, php-format +msgid "" +"Graphs are designed to show the data collected by %s in a temporary scale " +"defined by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time " +"the operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." +msgstr "" + +#: ../../general/first_task/transactional_list.php:21 msgid "There are no transactions defined yet." msgstr "" -#: ../../general/firts_task/transactional_list.php:30 +#: ../../general/first_task/transactional_list.php:28 msgid "Transactions" msgstr "" -#: ../../general/firts_task/transactional_list.php:33 -#: ../../general/firts_task/transactional_list.php:38 +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 msgid "Create Transactions" msgstr "" -#: ../../general/firts_task/transactional_list.php:34 +#: ../../general/first_task/transactional_list.php:34 msgid "" "The new transactional server allows you to execute tasks dependent on the " "others following a user-defined design. This means that it is possible to " @@ -8684,41 +45674,12 @@ msgid "" "infrastructure that we use to deliver our service." msgstr "" -#: ../../general/firts_task/custom_fields.php:23 -#: ../../general/firts_task/fields_manager.php:21 -msgid "There are no custom fields defined yet." -msgstr "" - -#: ../../general/firts_task/custom_fields.php:28 -msgid "Custom Fields" -msgstr "" - -#: ../../general/firts_task/custom_fields.php:31 -#: ../../general/firts_task/custom_fields.php:35 -msgid "Create Custom Fields" -msgstr "" - -#: ../../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 "" - -#: ../../general/firts_task/collections.php:21 -msgid "There are no collections defined yet." -msgstr "" - -#: ../../general/firts_task/collections.php:25 -msgid "Collections" -msgstr "" - -#: ../../general/firts_task/collections.php:28 -#: ../../general/firts_task/collections.php:37 +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 msgid "Create Collections" msgstr "" -#: ../../general/firts_task/collections.php:29 +#: ../../general/first_task/collections.php:28 msgid "" "A file collection is a group of files (e.g. scripts or executables) which " "are \n" @@ -8737,2154 +45698,339 @@ msgid "" "\t\t the picture below. " msgstr "" -#: ../../general/firts_task/service_list.php:23 -msgid "There are no services defined yet." +#: ../../general/header.php:76 +msgid "Sobre actualización de revisión menor" msgstr "" -#: ../../general/firts_task/service_list.php:31 -#: ../../general/firts_task/service_list.php:40 -msgid "Create Services" +#: ../../general/header.php:111 ../../general/header.php:113 +msgid "Enter keywords to search" msgstr "" -#: ../../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." +#: ../../general/header.php:363 +msgid "Go to support" msgstr "" -#: ../../general/firts_task/network_map.php:23 -msgid "There are no network map defined yet." +#: ../../general/header.php:369 +msgid "Go to documentation" msgstr "" -#: ../../general/firts_task/network_map.php:30 -msgid "Network Map" +#: ../../general/header.php:786 +msgid "Report an issue" msgstr "" -#: ../../general/firts_task/network_map.php:33 -#: ../../general/firts_task/network_map.php:49 -msgid "Create Network Map" -msgstr "" - -#: ../../general/firts_task/network_map.php:34 -msgid "" -"There is also an open-source version of the network map. \n" -"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " -"and relationships, agents, modules and groups available to the user. \n" -"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" -"\t\t\t" -msgstr "" - -#: ../../general/firts_task/network_map.php:38 -msgid "Topology Map" -msgstr "" - -#: ../../general/firts_task/network_map.php:39 -msgid "Group Map" -msgstr "" - -#: ../../general/firts_task/network_map.php:40 -msgid "Radial Map (User without strict user)" -msgstr "" - -#: ../../general/firts_task/network_map.php:41 -msgid "Dinamic Map" -msgstr "" - -#: ../../general/firts_task/network_map.php:42 -msgid "Policy Map (Only Enterprise version)" -msgstr "" - -#: ../../general/firts_task/map_builder.php:26 -#: ../../godmode/reporting/map_builder.php:255 -msgid "There are no visual console defined yet." -msgstr "" - -#: ../../general/firts_task/map_builder.php:32 -#: ../../godmode/reporting/map_builder.php:39 -msgid "Visual Console" -msgstr "" - -#: ../../general/firts_task/map_builder.php:35 -#: ../../general/firts_task/map_builder.php:43 -msgid "Create Visual Console" -msgstr "" - -#: ../../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 "" - -#: ../../general/firts_task/incidents.php:25 -msgid "There are no incidents defined yet." -msgstr "" - -#: ../../general/firts_task/incidents.php:35 -#: ../../general/firts_task/incidents.php:44 -msgid "Create Incidents" -msgstr "" - -#: ../../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 "" - -#: ../../general/firts_task/planned_downtime.php:21 -msgid "There are no planned downtime defined yet." -msgstr "" - -#: ../../general/firts_task/planned_downtime.php:25 -#: ../../godmode/agentes/planned_downtime.editor.php:43 -#: ../../godmode/agentes/planned_downtime.list.php:54 -msgid "Planned Downtime" -msgstr "" - -#: ../../general/firts_task/planned_downtime.php:28 -#: ../../general/firts_task/planned_downtime.php:34 -msgid "Create Planned Downtime" -msgstr "" - -#: ../../general/firts_task/planned_downtime.php:29 -msgid "" -"Pandora FMS contains a scheduled downtime management system. \n" -"\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " -"intervals whenever there is down time by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a " -"down time, the down-time intervals aren't taken into \n" -"\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " -"agents don't contain any data within those intervals. " -msgstr "" - -#: ../../general/firts_task/snmp_filters.php:21 -msgid "There are no SNMP filter defined yet." -msgstr "" - -#: ../../general/firts_task/snmp_filters.php:25 -msgid "SNMP Filter" -msgstr "" - -#: ../../general/firts_task/snmp_filters.php:28 -#: ../../general/firts_task/snmp_filters.php:35 -msgid "Create SNMP Filter" -msgstr "" - -#: ../../general/firts_task/snmp_filters.php:29 -msgid "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " -"Pandora FMS versions 3.2 and above, \n" -"\t\t\t\tit's possible to filter the traps that the server obtains in order " -"to avoid straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -" -"> 'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap which is going to run in conjunction with any of them - " -"just the ones for the server are going to get ruled out automatically. " -msgstr "" - -#: ../../general/firts_task/fields_manager.php:25 -msgid "Fields Manager" -msgstr "" - -#: ../../general/firts_task/fields_manager.php:28 -msgid "Create Fields Manager" -msgstr "" - -#: ../../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 "" - -#: ../../general/firts_task/fields_manager.php:32 -msgid "Create Fields " -msgstr "" - -#: ../../general/firts_task/tags.php:21 -msgid "There are no tags defined yet." -msgstr "" - -#: ../../general/firts_task/tags.php:28 ../../general/firts_task/tags.php:33 -msgid "Create Tags" -msgstr "" - -#: ../../general/firts_task/tags.php:29 -msgid "" -"From Pandora FMS versions 5 and above, the access to modules can be " -"configured by a tags system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " -"chosen modules. \n" -"\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " -"tags in this way. " -msgstr "" - -#: ../../general/firts_task/custom_graphs.php:23 -msgid "There are no custom graphs defined yet." -msgstr "" - -#: ../../general/firts_task/custom_graphs.php:28 -msgid "Custom Graphs" -msgstr "" - -#: ../../general/firts_task/custom_graphs.php:31 -#: ../../general/firts_task/custom_graphs.php:36 -msgid "Create Custom Graph" -msgstr "" - -#: ../../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 "" - -#: ../../general/login_identification_wizard.php:142 -msgid "The Pandora FMS community wizard" -msgstr "" - -#: ../../general/login_identification_wizard.php:147 -msgid "Stay up to date with the Pandora FMS community" -msgstr "" - -#: ../../general/login_identification_wizard.php:151 -msgid "" -"When you subscribe to the Pandora FMS Update Manager service, you accept " -"that we register your Pandora instance as an identifier on the database " -"owned by Artica TS. This data will solely be used to provide you with " -"information about Pandora FMS and will not be conceded to third parties. " -"You'll be able to unregister from said database at any time from the Update " -"Manager options" -msgstr "" - -#: ../../general/login_identification_wizard.php:152 -msgid "" -"In the same fashion, when subscribed to the newsletter you accept that your " -"email will pass on to a database property of Artica TS. This data will " -"solely be used to provide you with information about Pandora FMS and will " -"not be conceded to third parties. You'll be able to unregister from said " -"database at any time from the newsletter subscription options" -msgstr "" - -#: ../../general/login_identification_wizard.php:157 -#: ../../godmode/alerts/configure_alert_template.php:814 -msgid "Finish" -msgstr "" - -#: ../../general/login_identification_wizard.php:161 -msgid "Return" -msgstr "" - -#: ../../general/login_identification_wizard.php:165 -msgid "Join the Pandora FMS community" -msgstr "" - -#: ../../general/login_identification_wizard.php:172 -msgid "Required" -msgstr "" - -#: ../../general/login_identification_wizard.php:182 -msgid "Do you want to continue without any registration" -msgstr "" - -#: ../../general/links_menu.php:20 ../../godmode/menu.php:298 -#: ../../godmode/menu.php:414 -msgid "Links" -msgstr "" - -#: ../../extras/pandora_diag.php:90 -msgid "Pandora FMS Diagnostic tool" -msgstr "" - -#: ../../extras/pandora_diag.php:93 -msgid "Item" -msgstr "" - -#: ../../extras/pandora_diag.php:94 -msgid "Data value" -msgstr "" - -#: ../../include/functions_snmp_browser.php:145 -msgid "Target IP cannot be blank." -msgstr "" - -#: ../../include/functions_snmp_browser.php:403 -msgid "Numeric OID" -msgstr "" - -#: ../../include/functions_snmp_browser.php:406 -#: ../../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 "" - -#: ../../include/functions_snmp_browser.php:420 -msgid "Syntax" -msgstr "" - -#: ../../include/functions_snmp_browser.php:425 -msgid "Display hint" -msgstr "" - -#: ../../include/functions_snmp_browser.php:430 -msgid "Max access" -msgstr "" - -#: ../../include/functions_snmp_browser.php:445 -msgid "OID Information" -msgstr "" - -#: ../../include/functions_snmp_browser.php:475 -#: ../../godmode/agentes/module_manager.php:784 -msgid "Create network component" -msgstr "" - -#: ../../include/functions_snmp_browser.php:510 -msgid "Starting OID" -msgstr "" - -#: ../../include/functions_snmp_browser.php:521 -msgid "Browse" -msgstr "" - -#: ../../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 "" - -#: ../../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/agent_wizard.snmp_explorer.php:733 -msgid "Auth password" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_snmp_browser.php:538 -#: ../../godmode/massive/massive_edit_modules.php:505 -#: ../../godmode/modules/manage_network_components_form_network.php:67 -#: ../../godmode/agentes/module_manager_editor_network.php:229 -msgid "Privacy pass" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_snmp_browser.php:558 -msgid "First match" -msgstr "" - -#: ../../include/functions_snmp_browser.php:560 -msgid "Previous match" -msgstr "" - -#: ../../include/functions_snmp_browser.php:562 -msgid "Next match" -msgstr "" - -#: ../../include/functions_snmp_browser.php:564 -msgid "Last match" -msgstr "" - -#: ../../include/functions_snmp_browser.php:569 -msgid "Expand the tree (can be slow)" -msgstr "" - -#: ../../include/functions_snmp_browser.php:571 -msgid "Collapse the tree" -msgstr "" - -#: ../../include/functions_snmp_browser.php:590 -msgid "SNMP v3 options" -msgstr "" - -#: ../../include/functions_snmp_browser.php:593 -msgid "Search options" -msgstr "" - -#: ../../include/functions_snmp_browser.php:603 -#: ../../godmode/agentes/module_manager_editor_network.php:27 -msgid "Search matches" -msgstr "" - -#: ../../include/help/clippy/homepage.php:59 -msgid "Hi, can I help you?" -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/homepage.php:67 -msgid "Close this wizard and don't open it again." -msgstr "" - -#: ../../include/help/clippy/homepage.php:81 -msgid "Which task would you like to do first?" -msgstr "" - -#: ../../include/help/clippy/homepage.php:85 -msgid "Ping to a Linux or Windows server with a Pandora FMS agent" -msgstr "" - -#: ../../include/help/clippy/homepage.php:90 -msgid "Create a alert by email in a critical module." -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/homepage.php:213 -msgid "If you have it already configured you can go to the next step." -msgstr "" - -#: ../../include/help/clippy/homepage.php:218 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/help/clippy/interval_agent_min.php:39 -msgid "Interval Agent." -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/agent_out_of_limits.php:39 -msgid "Agent contact date passed it's ETA!." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:44 -msgid "Click on Show button to get the modules list filtered." -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/extension_cron_send_email.php:39 -msgid "The configuration of email for the task email is in the file:" -msgstr "" - -#: ../../include/help/clippy/extension_cron_send_email.php:41 -msgid "Please check if the email configuration is correct." -msgstr "" - -#: ../../include/help/clippy/data_configuration_module.php:39 -msgid "Data Configuration Module." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:35 -msgid "I'm going to show you how to monitor a server." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:39 -msgid "Please, type an agent to save the modules for monitoring a server." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:44 -msgid "If you have typed the name correctly you will see the agent." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:60 -msgid "Now, please choose the agent you searched." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:65 -msgid "Choose the agent and click on the name." -msgstr "" - -#: ../../include/help/clippy/topology_group.php:39 -msgid "Topology Group" -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/modules_not_init.php:39 -msgid "You have non initialized modules" -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:35 -msgid "Fill the name of your action." -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:43 -msgid "In the command field select \"email\"." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:69 -msgid "Click on Create button to create the action." -msgstr "" - -#: ../../include/help/clippy/servers_down.php:39 -msgid "All servers down" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:37 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:40 -msgid "Click in this tab.." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:56 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:60 -msgid "Choose the network server module." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:64 -msgid "And click the button." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:80 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 -msgid "Now we are going to fill the form." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 -msgid "Please choose Network Management." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:92 -msgid "Choose the component named \"Host alive\"." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:96 -msgid "You can change the name if you want." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:100 -msgid "Check if the IP showed is the IP of your machine." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 -msgid "And only to finish it is clicking this button." -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:137 -msgid "Click on alerts tab and then fill the form to add an alert." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:152 -msgid "Select the critical module." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "In template select \"Critical Condition\"." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:160 -msgid "Now, select the action created before." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:165 -msgid "Click on Add Alert button to create the alert." -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/server_queued_modules.php:39 -msgid "Excesive Queued." -msgstr "" - -#: ../../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 "" - -#: ../../include/help/clippy/module_unknow.php:39 -msgid "You have unknown modules in this agent." -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_pandora_networkmap.php:740 +#: ../../general/alert_enterprise.php:107 #, php-format -msgid "Edit node %s" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:741 -msgid "Holding Area" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:742 -msgid "Show details and options" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:743 -msgid "Add a interface link" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:744 -msgid "Set parent interface" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:745 -msgid "Set as children" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:746 -msgid "Set parent" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:747 -#: ../../include/functions_pandora_networkmap.php:754 -msgid "Abort the action of set relationship" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:749 -#: ../../include/functions_pandora_networkmap.php:1525 -msgid "Add node" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:750 -msgid "Set center" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:752 -msgid "Refresh Holding area" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:753 -msgid "Abort the action of set interface relationship" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:939 -#: ../../include/functions_maps.php:62 -msgid "Copy of " -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1262 -msgid "Open Minimap" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1269 -msgid "Hide Labels" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1360 -msgid "Edit node" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1371 -msgid "Adresses" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1373 -msgid "OS type" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1378 -#: ../../include/functions_pandora_networkmap.php:1379 -msgid "Node Details" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1388 -msgid "Ip" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1389 -msgid "MAC" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1398 -#: ../../include/functions_pandora_networkmap.php:1399 -msgid "Interface Information (SNMP)" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1406 -msgid "Shape" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1408 -msgid "Circle" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1409 -msgid "Square" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1410 -msgid "Rhombus" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1420 -#: ../../include/functions_pandora_networkmap.php:1581 -msgid "name fictional node" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1421 -#: ../../include/functions_pandora_networkmap.php:1582 -msgid "Networkmap to link" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1427 -msgid "Update fictional node" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1430 -#: ../../include/functions_pandora_networkmap.php:1431 -msgid "Node options" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1438 -#: ../../include/functions_pandora_networkmap.php:1493 -msgid "Node source" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1439 -#: ../../include/functions_pandora_networkmap.php:1494 -msgid "Interface source" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1440 -#: ../../include/functions_pandora_networkmap.php:1495 -msgid "Interface Target" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1442 -#: ../../include/functions_pandora_networkmap.php:1496 -msgid "Node target" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1443 -msgid "E." -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1474 -msgid "There are not relations" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1481 -#: ../../include/functions_pandora_networkmap.php:1482 -msgid "Relations" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1517 -msgid "Add interface link" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_pandora_networkmap.php:1573 -msgid "Add agent node (filter by group)" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1588 -msgid "Add fictional node" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1591 -msgid "Add fictional point" -msgstr "" - -#: ../../include/class/Tree.class.php:1492 -msgid "NO DATA" -msgstr "" - -#: ../../include/class/Tree.class.php:1578 -msgid "Module alerts" -msgstr "" - -#: ../../include/functions_servers.php:363 -msgid "Data server" -msgstr "" - -#: ../../include/functions_servers.php:368 -msgid "Network server" -msgstr "" - -#: ../../include/functions_servers.php:373 -msgid "SNMP Trap server" -msgstr "" - -#: ../../include/functions_servers.php:383 -msgid "Plugin server" -msgstr "" - -#: ../../include/functions_servers.php:388 -msgid "Prediction server" -msgstr "" - -#: ../../include/functions_servers.php:393 -msgid "WMI server" -msgstr "" - -#: ../../include/functions_servers.php:398 -msgid "Export server" -msgstr "" - -#: ../../include/functions_servers.php:403 -msgid "Inventory server" -msgstr "" - -#: ../../include/functions_servers.php:408 -msgid "Web server" -msgstr "" - -#: ../../include/functions_servers.php:413 -msgid "Event server" -msgstr "" - -#: ../../include/functions_servers.php:418 -msgid "Enterprise ICMP server" -msgstr "" - -#: ../../include/functions_servers.php:423 -msgid "Enterprise SNMP server" -msgstr "" - -#: ../../include/functions_servers.php:428 -msgid "Enterprise Satellite server" -msgstr "" - -#: ../../include/functions_servers.php:433 -msgid "Enterprise Transactional server" -msgstr "" - -#: ../../include/functions_servers.php:438 -msgid "Mainframe server" -msgstr "" - -#: ../../include/functions_servers.php:443 -msgid "Sync server" -msgstr "" - -#: ../../include/functions_agents.php:535 -#: ../../godmode/massive/massive_copy_modules.php:434 -msgid "No source agent to copy" -msgstr "" - -#: ../../include/functions_agents.php:540 -#: ../../godmode/massive/massive_copy_modules.php:452 -msgid "No destiny agent(s) to copy" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_agents.php:672 msgid "" -"There was an error copying the agent configuration, the copy has been " -"cancelled" +"This is the online help for %s console. This help is -in best cases- just a " +"brief contextual help, not intented to teach you how to use %s. Official " +"documentation of %s is about 900 pages, and you probably don't need to read " +"it entirely, but sure, you should download it and take a look.

\n" +" Download the official documentation" msgstr "" -#: ../../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 "" - -#: ../../include/functions_agents.php:2185 -#: ../../include/functions_agents.php:2210 -#: ../../include/functions_agents.php:2235 -msgid "No Monitors" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/ajax/update_manager.ajax.php:74 -msgid "There was an error extracting the file '" -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:90 -msgid "The package was not extracted." -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:96 -msgid "Invalid extension. The package must have the extension .oum." -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:103 -msgid "The file was not uploaded succesfully." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/ajax/update_manager.ajax.php:218 -#: ../../include/functions_update_manager.php:173 -msgid "An error ocurred while reading a file." -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:225 -#: ../../include/functions_update_manager.php:180 -msgid "The package does not exist" -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:239 -msgid "Package not accepted" -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:411 -msgid "Fail to update to the last package." -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:419 -msgid "Starting to update to the last package." -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:463 -msgid "Package not accepted." -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:497 -msgid "progress" -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:525 -#: ../../include/functions_update_manager.php:189 -msgid "The package is installed." -msgstr "" - -#: ../../include/ajax/visual_console_builder.ajax.php:180 -#: ../../include/functions_graph.php:5207 -msgid "No data to show" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/ajax/module.php:133 ../../include/functions.php:2591 -msgid "30 minutes" -msgstr "" - -#: ../../include/ajax/module.php:135 -msgid "6 hours" -msgstr "" - -#: ../../include/ajax/module.php:136 ../../include/functions_netflow.php:1055 -#: ../../include/functions_netflow.php:1088 -#: ../../godmode/setup/performance.php:106 -msgid "12 hours" -msgstr "" - -#: ../../include/ajax/module.php:137 ../../include/functions_netflow.php:1056 -#: ../../include/functions_netflow.php:1089 ../../include/functions.php:2025 -msgid "1 day" -msgstr "" - -#: ../../include/ajax/module.php:138 ../../include/functions_netflow.php:1093 -#: ../../include/functions.php:2026 -msgid "1 week" -msgstr "" - -#: ../../include/ajax/module.php:139 ../../include/functions_netflow.php:1059 -#: ../../include/functions_netflow.php:1092 ../../include/functions.php:2027 -msgid "15 days" -msgstr "" - -#: ../../include/ajax/module.php:140 ../../include/functions_netflow.php:1094 -#: ../../include/functions.php:2028 -msgid "1 month" -msgstr "" - -#: ../../include/ajax/module.php:141 ../../include/functions_netflow.php:1063 -msgid "3 months" -msgstr "" - -#: ../../include/ajax/module.php:142 ../../include/functions_netflow.php:1064 -msgid "6 months" -msgstr "" - -#: ../../include/ajax/module.php:143 ../../include/functions.php:2031 -msgid "1 year" -msgstr "" - -#: ../../include/ajax/module.php:144 ../../include/functions_netflow.php:1066 -msgid "2 years" -msgstr "" - -#: ../../include/ajax/module.php:145 -msgid "3 years" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/ajax/module.php:1093 -msgid "Any monitors aren't with this filter." -msgstr "" - -#: ../../include/ajax/module.php:1096 -msgid "This agent doesn't have any active monitors." -msgstr "" - -#: ../../include/ajax/events.php:158 +#: ../../general/alert_enterprise.php:120 #, php-format -msgid "Executing command: %s" -msgstr "" - -#: ../../include/ajax/events.php:165 -msgid "Execute again" -msgstr "" - -#: ../../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 "" - -#: ../../include/ajax/events.php:300 -msgid "Details" -msgstr "" - -#: ../../include/ajax/events.php:301 -msgid "Agent fields" -msgstr "" - -#: ../../include/ajax/events.php:306 ../../godmode/events/events.php:73 -msgid "Responses" -msgstr "" - -#: ../../include/ajax/events.php:309 -msgid "Custom data" -msgstr "" - -#: ../../include/ajax/events.php:377 -msgid "Error adding comment" -msgstr "" - -#: ../../include/ajax/events.php:378 -msgid "Comment added successfully" -msgstr "" - -#: ../../include/ajax/events.php:379 -msgid "Error changing event status" -msgstr "" - -#: ../../include/ajax/events.php:380 -msgid "Event status changed successfully" -msgstr "" - -#: ../../include/ajax/events.php:381 -msgid "Error changing event owner" -msgstr "" - -#: ../../include/ajax/events.php:382 -msgid "Event owner changed successfully" -msgstr "" - -#: ../../include/ajax/events.php:481 -#: ../../godmode/massive/massive_edit_modules.php:484 -#: ../../godmode/agentes/module_manager_editor_network.php:85 -msgid "Auto" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:146 msgid "" -"This is the private code that you should use with your authenticator app" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance.

\n" +" Please know that all attempts to access this page are recorded in " +"security logs of %s System Database." msgstr "" -#: ../../include/ajax/double_auth.ajax.php:147 -#: ../../include/ajax/double_auth.ajax.php:283 -msgid "" -"You could enter the code manually or use the QR code to add it automatically" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:151 -#: ../../include/ajax/double_auth.ajax.php:287 -msgid "Code" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:153 -#: ../../include/ajax/double_auth.ajax.php:289 -msgid "QR" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:189 -msgid "You are about to activate the double authentication" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:190 -msgid "" -"With this option enabled, your account access will be more secure, \n" -"\t\tcause a code generated by other application will be required after the " -"login" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:194 -msgid "" -"You will need to install the app from the following link before continue" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:199 -msgid "Download the app" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:203 -#: ../../include/ajax/double_auth.ajax.php:294 -msgid "Continue" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:219 -msgid "Are you installed the app yet?" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:277 -msgid "A private code has been generated" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:282 -msgid "" -"Before continue, you should create a new entry into the authenticator app" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:292 -msgid "Refresh code" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:358 -msgid "Are you introduced the code in the authenticator app yet?" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:420 -msgid "Introduce a code generated by the app" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:421 -msgid "If the code is valid, the double authentication will be activated" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:430 -msgid "Validate code" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:481 -msgid "The code is valid, you can exit now" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:497 -msgid "The code is valid, but it was an error saving the data" -msgstr "" - -#: ../../include/functions_update_manager.php:202 -msgid "There is a unknown error." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_update_manager.php:346 -msgid "Update to the next version" -msgstr "" - -#: ../../include/functions_update_manager.php:349 -msgid "There is no update available." -msgstr "" - -#: ../../include/functions_update_manager.php:458 -#: ../../include/functions_update_manager.php:488 -msgid "Remote server error on newsletter request" -msgstr "" - -#: ../../include/functions_update_manager.php:466 -msgid "E-mail successfully subscribed to newsletter." -msgstr "" - -#: ../../include/functions_update_manager.php:468 -msgid "E-mail has already subscribed to newsletter." -msgstr "" - -#: ../../include/functions_update_manager.php:470 -#: ../../include/functions_update_manager.php:510 -msgid "Update manager returns error code: " -msgstr "" - -#: ../../include/functions_update_manager.php:505 -msgid "Pandora successfully subscribed with UID: " -msgstr "" - -#: ../../include/functions_update_manager.php:507 -msgid "Unsuccessful subscription." -msgstr "" - -#: ../../include/functions_update_manager.php:635 -msgid "Failed extracting the package to temp directory." -msgstr "" - -#: ../../include/functions_update_manager.php:664 -msgid "Failed the copying of the files." -msgstr "" - -#: ../../include/functions_update_manager.php:680 -msgid "Package extracted successfully." -msgstr "" - -#: ../../include/functions_visual_map.php:1150 -msgid "Last value: " -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_visual_map.php:1723 -msgid "Agent successfully added to layout" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_visual_map.php:1870 -msgid "Modules successfully added to layout" -msgstr "" - -#: ../../include/functions_visual_map.php:2067 -msgid "Agents successfully added to layout" -msgstr "" - -#: ../../include/functions_visual_map.php:2408 -msgid "Cannot load the visualmap" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_visual_map.php:2748 -msgid "Percentile bar" -msgstr "" - -#: ../../include/functions_visual_map.php:2752 -msgid "Static graph" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_snmp.php:67 -msgid "Load Average (Last minute)" -msgstr "" - -#: ../../include/functions_snmp.php:71 -msgid "Load Average (Last 5 minutes)" -msgstr "" - -#: ../../include/functions_snmp.php:75 -msgid "Load Average (Last 15 minutes)" -msgstr "" - -#: ../../include/functions_snmp.php:79 -msgid "Total Swap Size configured for the host" -msgstr "" - -#: ../../include/functions_snmp.php:83 -msgid "Available Swap Space on the host" -msgstr "" - -#: ../../include/functions_snmp.php:87 -msgid "Total Real/Physical Memory Size on the host" -msgstr "" - -#: ../../include/functions_snmp.php:91 -msgid "Available Real/Physical Memory Space on the host" -msgstr "" - -#: ../../include/functions_snmp.php:95 -msgid "Total Available Memory on the host" -msgstr "" - -#: ../../include/functions_snmp.php:99 -msgid "Total Cached Memory" -msgstr "" - -#: ../../include/functions_snmp.php:103 -msgid "Total Buffered Memory" -msgstr "" - -#: ../../include/functions_snmp.php:107 -msgid "Amount of memory swapped in from disk (kB/s)" -msgstr "" - -#: ../../include/functions_snmp.php:111 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "" - -#: ../../include/functions_snmp.php:115 -msgid "Number of blocks sent to a block device" -msgstr "" - -#: ../../include/functions_snmp.php:119 -msgid "Number of blocks received from a block device" -msgstr "" - -#: ../../include/functions_snmp.php:123 -msgid "Number of interrupts processed" -msgstr "" - -#: ../../include/functions_snmp.php:127 -msgid "Number of context switches" -msgstr "" - -#: ../../include/functions_snmp.php:131 -msgid "user CPU time" -msgstr "" - -#: ../../include/functions_snmp.php:135 -msgid "system CPU time" -msgstr "" - -#: ../../include/functions_snmp.php:139 -msgid "idle CPU time" -msgstr "" - -#: ../../include/functions_snmp.php:143 -msgid "system Up time" -msgstr "" - -#: ../../include/functions_filemanager.php:172 -#: ../../include/functions_filemanager.php:242 -#: ../../include/functions_filemanager.php:300 -#: ../../include/functions_filemanager.php:382 -msgid "Security error" -msgstr "" - -#: ../../include/functions_filemanager.php:185 -msgid "Upload error" -msgstr "" - -#: ../../include/functions_filemanager.php:193 -#: ../../include/functions_filemanager.php:261 -#: ../../include/functions_filemanager.php:326 -msgid "Upload correct" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_filemanager.php:254 -msgid "Error creating file" -msgstr "" - -#: ../../include/functions_filemanager.php:267 -#: ../../include/functions_filemanager.php:362 -msgid "Error creating file with empty name" -msgstr "" - -#: ../../include/functions_filemanager.php:312 -msgid "Attach error" -msgstr "" - -#: ../../include/functions_filemanager.php:348 -msgid "Security error." -msgstr "" - -#: ../../include/functions_filemanager.php:357 -msgid "Directory created" -msgstr "" - -#: ../../include/functions_filemanager.php:385 -#: ../../include/functions_reporting_html.php:1238 -msgid "Deleted" -msgstr "" - -#: ../../include/functions_filemanager.php:550 +#: ../../general/alert_enterprise.php:130 #, php-format -msgid "Directory %s doesn't exist!" +msgid "" +"The Update Manager client is included on %s. It helps system administrators " +"update their %s automatically, since the Update Manager retrieves new " +"modules, new plugins and new features (even full migrations tools for future " +"versions) automatically." msgstr "" -#: ../../include/functions_filemanager.php:561 -#: ../../godmode/setup/file_manager.php:63 -#: ../../godmode/servers/plugin.php:224 +#: ../../general/alert_enterprise.php:130 +msgid "" +"OpenSource version updates are automated packages generated each week. " +"These updates come WITHOUT ANY warranty or support. If your system is " +"corrupted or a feature stops working properly, you will need to recover a " +"backup by yourself." +msgstr "" + +#: ../../general/alert_enterprise.php:130 #, php-format -msgid "Index of %s" +msgid "" +"The Enterprise version comes with a different update system, with fully " +"tested, professionally-supported packages, and our support team is there to " +"help you in case of problems or queries. Update Manager is another feature " +"present in the Enterprise version and not included in the OpenSource " +"version. There are lots of advanced business-oriented features contained in " +"%s Enterprise Edition. For more information visit pandorafms.com" msgstr "" -#: ../../include/functions_filemanager.php:565 -msgid "Index of images" -msgstr "" - -#: ../../include/functions_filemanager.php:603 -msgid "Parent directory" -msgstr "" - -#: ../../include/functions_filemanager.php:632 -msgid "The zip upload in this dir, easy to upload multiple files." -msgstr "" - -#: ../../include/functions_filemanager.php:636 -msgid "Decompress" -msgstr "" - -#: ../../include/functions_filemanager.php:638 -msgid "Go" -msgstr "" - -#: ../../include/functions_filemanager.php:679 -msgid "Directory" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_filemanager.php:685 -msgid "Compressed file" -msgstr "" - -#: ../../include/functions_filemanager.php:688 -#: ../../include/functions_filemanager.php:695 -msgid "Text file" -msgstr "" - -#: ../../include/functions_filemanager.php:759 -#: ../../godmode/servers/plugin.php:151 -msgid "Edit file" -msgstr "" - -#: ../../include/functions_filemanager.php:785 -msgid "Create directory" -msgstr "" - -#: ../../include/functions_filemanager.php:790 -msgid "Create text" -msgstr "" - -#: ../../include/functions_filemanager.php:795 -msgid "Upload file/s" -msgstr "" - -#: ../../include/functions_filemanager.php:802 -msgid "The directory is read-only" -msgstr "" - -#: ../../include/functions_db.php:75 +#: ../../general/alert_enterprise.php:132 #, php-format -msgid "Error connecting to database %s at %s." -msgstr "" - -#: ../../include/functions_db.php:1499 ../../godmode/menu.php:317 -#: ../../godmode/db/db_refine.php:33 -msgid "Database debug" -msgstr "" - -#: ../../include/functions_db.php:1515 -msgid "SQL sentence" -msgstr "" - -#: ../../include/functions_db.php:1517 -msgid "Rows" -msgstr "" - -#: ../../include/functions_db.php:1518 -msgid "Saved" -msgstr "" - -#: ../../include/functions_db.php:1519 -msgid "Time (ms)" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_custom_graphs.php:226 -#: ../../godmode/reporting/reporting_builder.list_items.php:313 -msgid "No items." -msgstr "" - -#: ../../include/functions_groups.php:63 -msgid "Alert Actions" -msgstr "" - -#: ../../include/functions_groups.php:78 -msgid "Alert Templates" -msgstr "" - -#: ../../include/functions_groups.php:135 -msgid "Layout visual console" -msgstr "" - -#: ../../include/functions_groups.php:149 -msgid "Plannet down time" -msgstr "" - -#: ../../include/functions_groups.php:176 -msgid "GIS maps" -msgstr "" - -#: ../../include/functions_groups.php:190 -msgid "GIS connections" -msgstr "" - -#: ../../include/functions_groups.php:204 -msgid "GIS map layers" -msgstr "" - -#: ../../include/functions_groups.php:217 -msgid "Network maps" -msgstr "" - -#: ../../include/functions_groups.php:2149 -msgid "Show branch children" -msgstr "" - -#: ../../include/functions_groups.php:2178 msgid "" -"You can not delete the last group in Pandora. A common installation must has " -"almost one group." +"The new Update Manager " +"client is included on %s. It helps system administrators update their %s " +"automatically, since the Update Manager retrieves new modules, new plugins " +"and new features (even full migrations tools for future versions) " +"automatically." msgstr "" -#: ../../include/functions_ui.php:225 -msgid "Information" -msgstr "" - -#: ../../include/functions_ui.php:231 -msgid "Success" -msgstr "" - -#: ../../include/functions_ui.php:367 -msgid "Request successfully processed" -msgstr "" - -#: ../../include/functions_ui.php:370 -msgid "Error processing request" -msgstr "" - -#: ../../include/functions_ui.php:508 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_ui.php:1015 ../../godmode/alerts/alert_view.php:147 -msgid "" -"The alert would fire when the value doesn't match " -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_ui.php:1024 ../../godmode/alerts/alert_view.php:164 -msgid "" -"The alert would fire when the value is not between " -"and " -msgstr "" - -#: ../../include/functions_ui.php:1028 -msgid "The alert would fire when the value is over " -msgstr "" - -#: ../../include/functions_ui.php:1033 -msgid "The alert would fire when the value is under " -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_ui.php:1080 -#: ../../godmode/servers/recon_script.php:183 -#: ../../godmode/servers/plugin.php:473 -msgid "Help" -msgstr "" - -#: ../../include/functions_ui.php:1307 -msgid "the Flexible Monitoring System" -msgstr "" - -#: ../../include/functions_ui.php:1627 ../../include/functions_ui.php:1661 +#: ../../general/alert_enterprise.php:132 #, php-format -msgid "Total items: %s" +msgid "" +"The Update Manager is one of the most advanced features on the %s Enterprise " +"Edition. For more information visit http://" +"pandorafms.com." msgstr "" -#: ../../include/functions_ui.php:1968 -msgid "Unknown type" +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"Update Manager sends anonymous information about %s usage (number of agents " +"and modules running). To disable it, please remove the remote server address " +"from the Update Manager plugin setup." msgstr "" -#: ../../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" +#: ../../general/alert_enterprise.php:138 +msgid "" +"The community version doesn't have the ability to define your own library of " +"local modules, or distribute it to remote agents. You need to make those " +"changes individually on each agent which is possible by using external tools " +"and time and effort. Nor can it distribute local plugins, or have access to " +"the library of enterprise plugins to monitor applications such as VMWare, " +"RHEV or Informix between others. The Enterprise version will have all this, " +"plus the ability to distribute and manage your own local modules on your " +"systems, individually or through policies.\n" +"

pandorafms." +"com" msgstr "" -#: ../../include/functions_ui.php:2781 -msgid "Type at least two characters to search." +#: ../../general/alert_enterprise.php:148 +#, php-format +msgid "" +"%s Enterprise also features event correlation. Through correlation you can " +"generate realtime alerts and / or new events based on logical rules. This " +"allows you to automate troubleshooting. If you know the value of working " +"with events, event correlation will take you to a new level." msgstr "" -#: ../../include/functions_ui.php:3574 -msgid "Problem with Pandora FMS database" +#: ../../general/alert_enterprise.php:152 +#, php-format +msgid "" +"Report generating on the Enterprise version is also more powerful: it has " +"wizards, you can schedule emails in PDF to be sent according to the schedule " +"you decide, and it has a template system to create personalized reports " +"quickly for each of your customers. It will even allow your customers to " +"generate their own reports from templates created by you. If reports are key " +"to your business, %s Enterprise version is for you." msgstr "" -#: ../../include/functions_ui.php:3575 +#: ../../general/alert_enterprise.php:156 +msgid "These options are only effective on the Enterprise version." +msgstr "" + +#: ../../general/alert_enterprise.php:164 +msgid "" +"This system is heavily loaded. OpenSource version could get a lot more " +"agents but fine tuning requires knowledge and time. Checkout the Enterprise " +"Version for a professional supported system." +msgstr "" + +#: ../../general/alert_enterprise.php:168 +msgid "" +"This system has too many modules per agent. OpenSource version could manage " +"thousands of modules, but is not recommended to have more than 40 modules " +"per agent. This configuration has B/A modules per agent. Checkout the " +"Enterprise Version for a professional supported system." +msgstr "" + +#: ../../general/alert_enterprise.php:172 +msgid "" +"Too much remote modules has been detected on this system. OpenSource version " +"could manage thousands of modules, but performance is limited on high amount " +"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"supported system with improved capacity on network monitoring, including " +"distributed servers." +msgstr "" + +#: ../../general/alert_enterprise.php:176 +msgid "" +"This system has too much events in the database. Checkout database purge " +"options. Checkout the Enterprise Version for a professional supported system." +msgstr "" + +#: ../../general/alert_enterprise.php:180 +msgid "" +"You have defined a high number of alerts, this may cause you performance " +"problems in the future. In the Enterprise version, you can use event " +"correlation alerts to simplify the alerting system and have easier " +"administration and increased performance." +msgstr "" + +#: ../../general/login_help_dialog.php:41 +#, php-format +msgid "" +"If this is your first time using %s, we suggest a few links that'll help you " +"learn more about the software. Monitoring can be overwhelming, but take your " +"time to learn how to harness the power of %s!" +msgstr "" + +#: ../../general/login_help_dialog.php:55 +#: ../../general/login_help_dialog.php:60 +msgid "Online help" +msgstr "" + +#: ../../general/login_help_dialog.php:68 +#: ../../general/login_help_dialog.php:73 +msgid "Enterprise version" +msgstr "" + +#: ../../general/login_help_dialog.php:86 +msgid "Forums" +msgstr "" + +#: ../../general/login_help_dialog.php:94 +#: ../../general/login_help_dialog.php:99 ../../general/mysqlerr.php:144 +msgid "Documentation" +msgstr "" + +#: ../../general/login_help_dialog.php:108 +msgid "Click here to don't show again this message" +msgstr "" + +#: ../../general/logon_ok.php:165 +#, php-format +msgid "%s Overview" +msgstr "" + +#: ../../general/logon_ok.php:204 +msgid "by" +msgstr "" + +#: ../../general/logon_ok.php:218 +msgid "News board" +msgstr "" + +#: ../../general/logon_ok.php:294 +msgid "Latest activity" +msgstr "" + +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "" + +#: ../../general/logon_failed.php:30 +msgid "" +"Either, your password or your login are incorrect. Please check your CAPS " +"LOCK key, username and password are case SeNSiTiVe.

All actions, " +"included failed login attempts are logged in Pandora FMS System logs, and " +"these can be reviewed by each user, please report to admin any incident or " +"malfunction." +msgstr "" + +#: ../../general/noaccess2.php:22 +msgid "Access to this page is restricted" +msgstr "" + +#: ../../general/noaccess2.php:34 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance.

\n" +"\t\t\tPlease know that all attempts to access this page are recorded in " +"security logs of Pandora System Database" +msgstr "" + +#: ../../general/mysqlerr.php:107 +msgid "Database error" +msgstr "" + +#: ../../general/mysqlerr.php:117 +msgid "" +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." +msgstr "" + +#: ../../general/mysqlerr.php:119 +msgid "" +"Failure to connect to Database server, please check the configuration file " +"config.php or contact system administrator if you need assistance." +msgstr "" + +#: ../../general/login_page.php:50 +#, php-format +msgid "Go to %s Website" +msgstr "" + +#: ../../general/login_page.php:63 +msgid "Go to Login" +msgstr "" + +#: ../../general/login_page.php:227 +msgid "Login as admin" +msgstr "" + +#: ../../general/login_page.php:283 +msgid "Authentication code" +msgstr "" + +#: ../../general/login_page.php:295 +msgid "View details" +msgstr "" + +#: ../../general/login_page.php:323 ../../general/login_page.php:326 +#, php-format +msgid "WELCOME TO %s" +msgstr "" + +#: ../../general/login_page.php:335 ../../general/login_page.php:338 +msgid "NEXT GENERATION" +msgstr "" + +#: ../../general/login_page.php:467 ../../general/login_page.php:469 +#, php-format +msgid "Problem with %s database" +msgstr "" + +#: ../../general/login_page.php:473 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." +"\t\tProbably your database, hostname, user or password values are incorrect " +"or\n" +"\t\tthe database server is not running." msgstr "" -#: ../../include/functions_ui.php:3579 +#: ../../general/login_page.php:478 msgid "DB ERROR" msgstr "" -#: ../../include/functions_ui.php:3585 +#: ../../general/login_page.php:484 +#, php-format msgid "" -"If you have modified auth system, this problem could be because Pandora " -"cannot override authorization variables from the config database. Remove " -"them from your database by executing:
DELETE FROM tconfig WHERE "
-"token = \"auth\";
" +"If you have modified the auth system, the origin of this problem could be " +"that %s cannot override the authorization variables from the config " +"database. Please remove them from your database by executing:
DELETE "
+"FROM tconfig WHERE token = \"auth\";
" msgstr "" -#: ../../include/functions_ui.php:3589 +#: ../../general/login_page.php:489 msgid "Empty configuration table" msgstr "" -#: ../../include/functions_ui.php:3590 +#: ../../general/login_page.php:491 +#, php-format msgid "" "Cannot load configuration variables from database. Please check your " "database setup in the\n" @@ -10892,11868 +46038,88 @@ msgid "" "\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\t

%s Console cannot find include/config.php or this file " +"has invalid\n" "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " "to fix this problem.
" msgstr "" -#: ../../include/functions_ui.php:3597 +#: ../../general/login_page.php:501 msgid "No configuration file found" msgstr "" -#: ../../include/functions_ui.php:3598 +#: ../../general/login_page.php:503 +#, php-format 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." +"%s Console cannot find include/config.php or this file has invalid\n" +"\t\tpermissions and HTTP server cannot read it. Please read documentation to " +"fix this problem." msgstr "" -#: ../../include/functions_ui.php:3609 +#: ../../general/login_page.php:515 #, php-format msgid "You may try to run the %sinstallation wizard%s to create one." msgstr "" -#: ../../include/functions_ui.php:3612 +#: ../../general/login_page.php:519 msgid "Installer active" msgstr "" -#: ../../include/functions_ui.php:3613 +#: ../../general/login_page.php:521 +#, php-format msgid "" "For security reasons, normal operation is not possible until you delete " "installer file.\n" -"\t\t\tPlease delete the ./install.php file before running Pandora FMS " -"Console." +"\t\tPlease delete the ./install.php file before running %s Console." msgstr "" -#: ../../include/functions_ui.php:3617 +#: ../../general/login_page.php:528 msgid "Bad permission for include/config.php" msgstr "" -#: ../../include/functions_ui.php:3618 +#: ../../general/login_page.php:530 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." +"\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 "" -#: ../../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" +#: ../../general/login_page.php:538 +msgid "Bad defined homedir" msgstr "" -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_visual_map_editor.php:57 -#: ../../godmode/reporting/visual_console_builder.wizard.php:107 -msgid "Simple value" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_visual_map_editor.php:95 -#: ../../include/functions_visual_map_editor.php:119 -msgid "Border color" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:131 -msgid "Border width" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:140 -msgid "Fill color" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:218 -msgid "Enable link" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:237 -#: ../../godmode/reporting/visual_console_builder.data.php:144 -msgid "Background color" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:239 -msgid "White" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:240 -msgid "Black" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:241 -msgid "Transparent" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_visual_map_editor.php:322 -#: ../../godmode/reporting/graph_builder.main.php:151 -msgid "Type of graph" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_visual_map_editor.php:350 -#: ../../godmode/reporting/visual_console_builder.wizard.php:196 -msgid "Min value" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_visual_map_editor.php:352 -#: ../../godmode/reporting/visual_console_builder.wizard.php:198 -msgid "Avg value" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:366 -msgid "Original Size" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:367 -msgid "Apply" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:373 -msgid "Aspect ratio" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:374 -msgid "Width proportional" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:380 -msgid "Height proportional" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_visual_map_editor.php:510 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:537 -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -msgid "Map linked" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:546 -msgid "Lines haven't advanced options" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:573 -msgid "Click start point
of the line" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:578 -msgid "Click end point
of the line" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:626 -msgid "Show grid" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:628 -msgid "Delete item" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:629 -msgid "Copy item" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:657 -msgid "No image or name defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:659 -msgid "No label defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:661 -msgid "No image defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:663 -msgid "No process defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:665 -msgid "No Max value defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:667 -msgid "No width defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:669 -msgid "No period defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:671 -msgid "No agent defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:673 -msgid "No module defined." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:676 -msgid "Successfully save the changes." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:678 -msgid "Could not be save" -msgstr "" - -#: ../../include/functions_reports.php:499 -#: ../../include/functions_reporting.php:5751 -#: ../../include/functions_reporting.php:5873 -msgid "Simple graph" -msgstr "" - -#: ../../include/functions_reports.php:501 -#: ../../include/functions_reporting.php:3325 -msgid "Simple baseline graph" -msgstr "" - -#: ../../include/functions_reports.php:511 -msgid "SQL vertical bar graph" -msgstr "" - -#: ../../include/functions_reports.php:513 -msgid "SQL pie graph" -msgstr "" - -#: ../../include/functions_reports.php:515 -msgid "SQL horizonal bar graph" -msgstr "" - -#: ../../include/functions_reports.php:519 -msgid "Automatic combined Graph" -msgstr "" - -#: ../../include/functions_reports.php:523 -msgid "Availability graph" -msgstr "" - -#: ../../include/functions_reports.php:526 -msgid "Module Histogram graph" -msgstr "" - -#: ../../include/functions_reports.php:528 -#: ../../include/functions_reports.php:530 -#: ../../include/functions_reports.php:532 -#: ../../include/functions_reports.php:534 -msgid "ITIL" -msgstr "" - -#: ../../include/functions_reports.php:529 -#: ../../include/functions_reporting.php:3691 -msgid "TTRT" -msgstr "" - -#: ../../include/functions_reports.php:531 -#: ../../include/functions_reporting.php:3688 -msgid "TTO" -msgstr "" - -#: ../../include/functions_reports.php:533 -#: ../../include/functions_reporting.php:3685 -msgid "MTBF" -msgstr "" - -#: ../../include/functions_reports.php:535 -#: ../../include/functions_reporting.php:3682 -msgid "MTTR" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reports.php:540 -#: ../../include/functions_reporting.php:530 -msgid "S.L.A." -msgstr "" - -#: ../../include/functions_reports.php:543 -msgid "Monthly S.L.A." -msgstr "" - -#: ../../include/functions_reports.php:545 -msgid "Weekly S.L.A." -msgstr "" - -#: ../../include/functions_reports.php:547 -msgid "Hourly S.L.A." -msgstr "" - -#: ../../include/functions_reports.php:551 -msgid "Services S.L.A." -msgstr "" - -#: ../../include/functions_reports.php:556 -#: ../../include/functions_reports.php:558 -msgid "Forecasting" -msgstr "" - -#: ../../include/functions_reports.php:557 -msgid "Prediction date" -msgstr "" - -#: ../../include/functions_reports.php:559 -msgid "Projection graph" -msgstr "" - -#: ../../include/functions_reports.php:564 -#: ../../include/functions_graph.php:704 -#: ../../include/functions_graph.php:3931 -msgid "Avg. Value" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_reports.php:570 -msgid "Monitor report" -msgstr "" - -#: ../../include/functions_reports.php:572 -msgid "Serialize data" -msgstr "" - -#: ../../include/functions_reports.php:574 -#: ../../include/functions_reporting.php:3679 -#: ../../include/functions_reporting.php:5669 -msgid "Summatory" -msgstr "" - -#: ../../include/functions_reports.php:576 -msgid "Historical Data" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reports.php:583 -msgid "Group report" -msgstr "" - -#: ../../include/functions_reports.php:585 -#: ../../include/functions_reporting.php:1722 -msgid "Exception" -msgstr "" - -#: ../../include/functions_reports.php:592 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1208 -msgid "SQL query" -msgstr "" - -#: ../../include/functions_reports.php:595 -msgid "Top n" -msgstr "" - -#: ../../include/functions_reports.php:597 -msgid "Network interfaces" -msgstr "" - -#: ../../include/functions_reports.php:599 -#: ../../include/functions_reporting.php:4817 -#: ../../include/functions_reporting.php:5060 -msgid "Availability" -msgstr "" - -#: ../../include/functions_reports.php:602 -#: ../../include/functions_reports.php:604 -msgid "Text/HTML " -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reports.php:605 -msgid "Import text from URL" -msgstr "" - -#: ../../include/functions_reports.php:610 -msgid "Alert report module" -msgstr "" - -#: ../../include/functions_reports.php:612 -msgid "Alert report agent" -msgstr "" - -#: ../../include/functions_reports.php:615 -msgid "Alert report group" -msgstr "" - -#: ../../include/functions_reports.php:621 -msgid "Event report agent" -msgstr "" - -#: ../../include/functions_reports.php:623 -msgid "Event report module" -msgstr "" - -#: ../../include/functions_reports.php:625 -msgid "Event report group" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reports.php:632 -msgid "Inventory changes" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reports.php:638 -#: ../../include/functions_reporting.php:3522 -msgid "Agent configuration" -msgstr "" - -#: ../../include/functions_reports.php:640 -#: ../../include/functions_reporting.php:2511 -msgid "Group configuration" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reports.php:642 -msgid "Netflow area chart" -msgstr "" - -#: ../../include/functions_reports.php:644 -msgid "Netflow pie chart" -msgstr "" - -#: ../../include/functions_reports.php:646 -msgid "Netflow data table" -msgstr "" - -#: ../../include/functions_reports.php:648 -msgid "Netflow statistics table" -msgstr "" - -#: ../../include/functions_reports.php:650 -msgid "Netflow summary table" -msgstr "" - -#: ../../include/functions_reports.php:654 -msgid "Log" -msgstr "" - -#: ../../include/functions_reports.php:655 -msgid "Log report" -msgstr "" - -#: ../../include/functions_graph.php:706 -msgid "Units. Value" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_graph.php:781 -#: ../../include/functions_graph.php:1753 -#, php-format -msgid "Percentile %dº" -msgstr "" - -#: ../../include/functions_graph.php:815 -#: ../../include/functions_graph.php:4017 -msgid "Previous" -msgstr "" - -#: ../../include/functions_graph.php:1246 -#, php-format -msgid "%s" -msgstr "" - -#: ../../include/functions_graph.php:1753 -msgid " of module " -msgstr "" - -#: ../../include/functions_graph.php:2109 -msgid "Not fired alerts" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_graph.php:2558 -msgid "Today" -msgstr "" - -#: ../../include/functions_graph.php:2559 -msgid "Week" -msgstr "" - -#: ../../include/functions_graph.php:2560 ../../include/functions_html.php:863 -msgid "Month" -msgstr "" - -#: ../../include/functions_graph.php:2561 -#: ../../include/functions_graph.php:2562 -msgid "Months" -msgstr "" - -#: ../../include/functions_graph.php:2584 -msgid "History db" -msgstr "" - -#: ../../include/functions_graph.php:2771 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:54 -msgid "Informative" -msgstr "" - -#: ../../include/functions_graph.php:2772 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:57 -msgid "Low" -msgstr "" - -#: ../../include/functions_graph.php:2773 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:60 -msgid "Medium" -msgstr "" - -#: ../../include/functions_graph.php:2774 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:63 -msgid "Serious" -msgstr "" - -#: ../../include/functions_graph.php:2775 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:66 -msgid "Very serious" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_graph.php:2798 -#: ../../include/functions_graph.php:2810 -msgid "Open incident" -msgstr "" - -#: ../../include/functions_graph.php:2799 -#: ../../include/functions_graph.php:2812 -msgid "Closed incident" -msgstr "" - -#: ../../include/functions_graph.php:2800 -#: ../../include/functions_graph.php:2814 -msgid "Outdated" -msgstr "" - -#: ../../include/functions_graph.php:2801 -#: ../../include/functions_graph.php:2816 -msgid "Invalid" -msgstr "" - -#: ../../include/functions_graph.php:3147 -#: ../../include/functions_graph.php:3198 -#: ../../include/functions_events.php:1161 -msgid "SYSTEM" -msgstr "" - -#: ../../include/functions_graph.php:3234 -#: ../../godmode/setup/performance.php:149 -msgid "Others" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_graph.php:3932 -msgid "Units" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_graph.php:4320 -msgid "Avg." -msgstr "" - -#: ../../include/functions_graph.php:5577 -msgid "Main node" -msgstr "" - -#: ../../include/functions_clippy.php:163 -#: ../../include/functions_clippy.php:168 -msgid "End wizard" -msgstr "" - -#: ../../include/functions_clippy.php:195 -msgid "Next →" -msgstr "" - -#: ../../include/functions_clippy.php:196 -msgid "← Back" -msgstr "" - -#: ../../include/functions_clippy.php:208 -msgid "Do you want to exit the help tour?" -msgstr "" - -#: ../../include/functions_treeview.php:54 -msgid "There was a problem loading module" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_treeview.php:294 -#: ../../include/graphs/functions_flot.php:593 -msgid "No data" -msgstr "" - -#: ../../include/functions_treeview.php:298 -#: ../../include/functions_reporting_html.php:70 -#: ../../include/functions_reporting_html.php:3373 -msgid "Last data" -msgstr "" - -#: ../../include/functions_treeview.php:313 -msgid "Go to module edition" -msgstr "" - -#: ../../include/functions_treeview.php:362 -msgid "There was a problem loading alerts" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_treeview.php:446 -msgid "Go to alerts edition" -msgstr "" - -#: ../../include/functions_treeview.php:610 -msgid "Next agent contact" -msgstr "" - -#: ../../include/functions_treeview.php:620 -msgid "Go to agent edition" -msgstr "" - -#: ../../include/functions_treeview.php:629 -msgid "Agent data" -msgstr "" - -#: ../../include/functions_treeview.php:702 -msgid "Advanced information" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_planned_downtimes.php:560 -msgid "Succesful stopped the Downtime" -msgstr "" - -#: ../../include/functions_planned_downtimes.php:561 -msgid "Unsuccesful stopped the Downtime" -msgstr "" - -#: ../../include/functions_planned_downtimes.php:660 -#, php-format -msgid "Enabled %s elements from the downtime" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_planned_downtimes.php:785 -msgid "This planned downtime are executed now. Can't delete in this moment." -msgstr "" - -#: ../../include/functions_planned_downtimes.php:790 -msgid "Deleted this planned downtime successfully." -msgstr "" - -#: ../../include/functions_planned_downtimes.php:792 -msgid "Problems for deleted this planned downtime." -msgstr "" - -#: ../../include/functions_incidents.php:88 -#: ../../include/functions_incidents.php:107 -msgid "Active incidents" -msgstr "" - -#: ../../include/functions_incidents.php:89 -#: ../../include/functions_incidents.php:110 -msgid "Active incidents, with comments" -msgstr "" - -#: ../../include/functions_incidents.php:90 -#: ../../include/functions_incidents.php:113 -msgid "Rejected incidents" -msgstr "" - -#: ../../include/functions_incidents.php:91 -#: ../../include/functions_incidents.php:116 -msgid "Expired incidents" -msgstr "" - -#: ../../include/functions_incidents.php:92 -#: ../../include/functions_incidents.php:119 -msgid "Closed incidents" -msgstr "" - -#: ../../include/functions_maps.php:34 -#: ../../include/functions_networkmap.php:1641 -#: ../../include/functions_networkmap.php:1720 -msgid "Topology" -msgstr "" - -#: ../../include/functions_maps.php:43 -#: ../../include/functions_reporting.php:619 -#: ../../include/functions_reporting.php:5126 -#: ../../include/functions_networkmap.php:1722 -msgid "Dynamic" -msgstr "" - -#: ../../include/functions_menu.php:470 -msgid "Configure user" -msgstr "" - -#: ../../include/functions_menu.php:471 -msgid "Configure profile" -msgstr "" - -#: ../../include/functions_menu.php:473 -#: ../../godmode/servers/manage_recontask_form.php:182 -#: ../../godmode/servers/manage_recontask.php:43 -msgid "Manage recontask" -msgstr "" - -#: ../../include/functions_menu.php:475 -msgid "Module templates management" -msgstr "" - -#: ../../include/functions_menu.php:476 -msgid "Inventory modules management" -msgstr "" - -#: ../../include/functions_menu.php:477 -msgid "Tags management" -msgstr "" - -#: ../../include/functions_menu.php:479 -#: ../../godmode/users/profile_list.php:308 -msgid "Agents management" -msgstr "" - -#: ../../include/functions_menu.php:481 -msgid "View agent" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_menu.php:485 -msgid "Manage network map" -msgstr "" - -#: ../../include/functions_menu.php:486 -#: ../../godmode/users/configure_profile.php:320 -msgid "View visual console" -msgstr "" - -#: ../../include/functions_menu.php:487 -msgid "Builder visual console" -msgstr "" - -#: ../../include/functions_menu.php:489 -msgid "Administration events" -msgstr "" - -#: ../../include/functions_menu.php:491 -msgid "View reporting" -msgstr "" - -#: ../../include/functions_menu.php:492 -msgid "Manage custom graphs" -msgstr "" - -#: ../../include/functions_menu.php:493 -msgid "Copy dashboard" -msgstr "" - -#: ../../include/functions_menu.php:496 -msgid "Manage GIS Maps" -msgstr "" - -#: ../../include/functions_menu.php:498 -msgid "Incidents statistics" -msgstr "" - -#: ../../include/functions_menu.php:499 -msgid "Manage messages" -msgstr "" - -#: ../../include/functions_menu.php:501 -msgid "Manage groups" -msgstr "" - -#: ../../include/functions_menu.php:502 -msgid "Manage module groups" -msgstr "" - -#: ../../include/functions_menu.php:503 -msgid "Manage custom field" -msgstr "" - -#: ../../include/functions_menu.php:505 -msgid "Manage alert actions" -msgstr "" - -#: ../../include/functions_menu.php:506 -msgid "Manage commands" -msgstr "" - -#: ../../include/functions_menu.php:507 -msgid "Manage event alerts" -msgstr "" - -#: ../../include/functions_menu.php:509 -msgid "Manage export targets" -msgstr "" - -#: ../../include/functions_menu.php:511 -msgid "Manage services" -msgstr "" - -#: ../../include/functions_menu.php:512 ../../godmode/menu.php:170 -msgid "SNMP alerts" -msgstr "" - -#: ../../include/functions_menu.php:514 -msgid "SNMP trap editor" -msgstr "" - -#: ../../include/functions_menu.php:519 -msgid "Manage incident" -msgstr "" - -#: ../../include/functions_menu.php:521 -#: ../../godmode/users/configure_profile.php:328 -msgid "Manage visual console" -msgstr "" - -#: ../../include/functions_menu.php:571 -msgid "Administration" -msgstr "" - -#: ../../include/functions_network_components.php:507 -#: ../../include/functions_alerts.php:961 -msgid "Copy of" -msgstr "" - -#: ../../include/get_file.php:46 -msgid "Security error. Please contact the administrator." -msgstr "" - -#: ../../include/get_file.php:56 -msgid "File is missing in disk storage. Please contact the administrator." -msgstr "" - -#: ../../include/functions_tags.php:602 -msgid "Click here to open a popup window with URL tag" -msgstr "" - -#: ../../include/graphs/functions_pchart.php:205 -#: ../../include/graphs/functions_pchart.php:1189 -msgid "Actual" -msgstr "" - -#: ../../include/graphs/export_data.php:71 -#: ../../include/graphs/export_data.php:126 -msgid "An error occured exporting the data" -msgstr "" - -#: ../../include/graphs/export_data.php:76 -msgid "Selected" -msgstr "" - -#: ../../include/graphs/functions_flot.php:251 -msgid "Cancel zoom" -msgstr "" - -#: ../../include/graphs/functions_flot.php:253 -msgid "Warning and Critical thresholds" -msgstr "" - -#: ../../include/graphs/functions_flot.php:256 -msgid "Overview graph" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_users.php:377 -#, php-format -msgid "User %s login at %s" -msgstr "" - -#: ../../include/functions_users.php:438 -#, php-format -msgid "User %s was deleted in the DB at %s" -msgstr "" - -#: ../../include/functions_users.php:443 -#, php-format -msgid "User %s logout at %s" -msgstr "" - -#: ../../include/functions_reporting_html.php:63 -#: ../../include/functions_reporting_html.php:3384 -#: ../../godmode/agentes/planned_downtime.editor.php:506 -msgid "From:" -msgstr "" - -#: ../../include/functions_reporting_html.php:64 -#: ../../include/functions_reporting_html.php:3385 -#: ../../godmode/agentes/planned_downtime.editor.php:517 -msgid "To:" -msgstr "" - -#: ../../include/functions_reporting_html.php:93 -msgid "Label: " -msgstr "" - -#: ../../include/functions_reporting_html.php:111 -msgid "Generated" -msgstr "" - -#: ../../include/functions_reporting_html.php:114 -msgid "Report date" -msgstr "" - -#: ../../include/functions_reporting_html.php:398 -msgid "Max/Min Values" -msgstr "" - -#: ../../include/functions_reporting_html.php:399 -msgid "SLA Limit" -msgstr "" - -#: ../../include/functions_reporting_html.php:400 -msgid "SLA Compliance" -msgstr "" - -#: ../../include/functions_reporting_html.php:425 -msgid "Global Time" -msgstr "" - -#: ../../include/functions_reporting_html.php:426 -msgid "Time Total" -msgstr "" - -#: ../../include/functions_reporting_html.php:427 -msgid "Time Failed" -msgstr "" - -#: ../../include/functions_reporting_html.php:428 -#: ../../include/functions_reporting_html.php:2256 -msgid "Time OK" -msgstr "" - -#: ../../include/functions_reporting_html.php:429 -msgid "Time Unknown" -msgstr "" - -#: ../../include/functions_reporting_html.php:430 -msgid "Time Not Init" -msgstr "" - -#: ../../include/functions_reporting_html.php:431 -msgid "Downtime" -msgstr "" - -#: ../../include/functions_reporting_html.php:456 -msgid "Checks Time" -msgstr "" - -#: ../../include/functions_reporting_html.php:457 -msgid "Checks Total" -msgstr "" - -#: ../../include/functions_reporting_html.php:458 -msgid "Checks Failed" -msgstr "" - -#: ../../include/functions_reporting_html.php:459 -#: ../../include/functions_reporting_html.php:2299 -msgid "Checks OK" -msgstr "" - -#: ../../include/functions_reporting_html.php:460 -msgid "Checks Unknown" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reporting_html.php:685 -#: ../../include/functions_reporting_html.php:2533 -msgid "Unknow" -msgstr "" - -#: ../../include/functions_reporting_html.php:695 -#: ../../include/functions_reporting_html.php:2543 -msgid "Downtimes" -msgstr "" - -#: ../../include/functions_reporting_html.php:700 -#: ../../include/functions_reporting_html.php:2548 -msgid "Ignore time" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_reporting_html.php:812 -#: ../../include/functions_reporting_html.php:821 -#: ../../include/functions_reporting_html.php:1643 -msgid "Val. by" -msgstr "" - -#: ../../include/functions_reporting_html.php:875 -#: ../../include/functions_events.php:2709 -msgid "Pandora System" -msgstr "" - -#: ../../include/functions_reporting_html.php:915 -#: ../../include/functions_reporting_html.php:1111 -msgid "Events by agent" -msgstr "" - -#: ../../include/functions_reporting_html.php:934 -#: ../../include/functions_reporting_html.php:1130 -msgid "Events by user validator" -msgstr "" - -#: ../../include/functions_reporting_html.php:953 -#: ../../include/functions_reporting_html.php:1149 -msgid "Events by Severity" -msgstr "" - -#: ../../include/functions_reporting_html.php:972 -#: ../../include/functions_reporting_html.php:1168 -msgid "Events validated vs unvalidated" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reporting_html.php:1228 -msgid "Added" -msgstr "" - -#: ../../include/functions_reporting_html.php:1379 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "" - -#: ../../include/functions_reporting_html.php:1387 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "" - -#: ../../include/functions_reporting_html.php:1395 -#, php-format -msgid "%s in %s : WARNING" -msgstr "" - -#: ../../include/functions_reporting_html.php:1403 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "" - -#: ../../include/functions_reporting_html.php:1413 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "" - -#: ../../include/functions_reporting_html.php:1421 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "" - -#: ../../include/functions_reporting_html.php:1579 -#: ../../include/functions_reporting_html.php:3262 -msgid "Monitors" -msgstr "" - -#: ../../include/functions_reporting_html.php:1596 -#: ../../godmode/servers/manage_recontask_form.php:255 -msgid "Defined" -msgstr "" - -#: ../../include/functions_reporting_html.php:1611 -#, php-format -msgid "Last %s" -msgstr "" - -#: ../../include/functions_reporting_html.php:1731 -msgid "Events validated by user" -msgstr "" - -#: ../../include/functions_reporting_html.php:1750 -#: ../../include/functions_reporting_html.php:3551 -msgid "Events by severity" -msgstr "" - -#: ../../include/functions_reporting_html.php:1899 -#, php-format -msgid "Interface '%s' throughput graph" -msgstr "" - -#: ../../include/functions_reporting_html.php:1902 -msgid "Mac" -msgstr "" - -#: ../../include/functions_reporting_html.php:1903 -msgid "Actual status" -msgstr "" - -#: ../../include/functions_reporting_html.php:2049 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 -msgid "Not OK" -msgstr "" - -#: ../../include/functions_reporting_html.php:2099 -msgid "Empty modules" -msgstr "" - -#: ../../include/functions_reporting_html.php:2106 -msgid "Warning
Critical" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reporting_html.php:2254 -msgid "Total time" -msgstr "" - -#: ../../include/functions_reporting_html.php:2255 -msgid "Time failed" -msgstr "" - -#: ../../include/functions_reporting_html.php:2257 -msgid "Time Uknown" -msgstr "" - -#: ../../include/functions_reporting_html.php:2258 -msgid "Time Not Init Module" -msgstr "" - -#: ../../include/functions_reporting_html.php:2259 -msgid "Time Downtime" -msgstr "" - -#: ../../include/functions_reporting_html.php:2260 -msgid "% Ok" -msgstr "" - -#: ../../include/functions_reporting_html.php:2297 -msgid "Total checks" -msgstr "" - -#: ../../include/functions_reporting_html.php:2298 -msgid "Checks failed" -msgstr "" - -#: ../../include/functions_reporting_html.php:2300 -msgid "Checks Uknown" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reporting_html.php:2446 -msgid "Agent max value" -msgstr "" - -#: ../../include/functions_reporting_html.php:2448 -msgid "Agent min value" -msgstr "" - -#: ../../include/functions_reporting_html.php:2685 -#: ../../include/functions_reporting_html.php:2779 -msgid "Summary" -msgstr "" - -#: ../../include/functions_reporting_html.php:2752 -#: ../../include/functions_reporting.php:6988 -#: ../../include/functions_reporting.php:7010 -msgid "Alert level" -msgstr "" - -#: ../../include/functions_reporting_html.php:2871 -msgid "Alert description" -msgstr "" - -#: ../../include/functions_reporting_html.php:2921 -msgid "Alerts not fired" -msgstr "" - -#: ../../include/functions_reporting_html.php:2930 -msgid "Total alerts monitored" -msgstr "" - -#: ../../include/functions_reporting_html.php:2981 -msgid "Total monitors" -msgstr "" - -#: ../../include/functions_reporting_html.php:2982 -msgid "Monitors down on period" -msgstr "" - -#: ../../include/functions_reporting_html.php:2998 -msgid "Monitors OK" -msgstr "" - -#: ../../include/functions_reporting_html.php:2999 -msgid "Monitors BAD" -msgstr "" - -#: ../../include/functions_reporting_html.php:3073 -#, php-format -msgid "Agents in group: %s" -msgstr "" - -#: ../../include/functions_reporting_html.php:3166 -msgid "Last failure" -msgstr "" - -#: ../../include/functions_reporting_html.php:3230 -msgid "N/A(*)" -msgstr "" - -#: ../../include/functions_reporting_html.php:3407 -msgid "Agents warning" -msgstr "" - -#: ../../include/functions_reporting_html.php:3413 -msgid "Agents ok" -msgstr "" - -#: ../../include/functions_reporting_html.php:3433 -#: ../../include/functions_reporting_html.php:3442 -msgid "Agents by status" -msgstr "" - -#: ../../include/functions_reporting_html.php:3461 -#: ../../include/functions_reporting.php:7229 -msgid "Monitor checks" -msgstr "" - -#: ../../include/functions_reporting_html.php:3466 -#: ../../include/functions_reporting.php:7247 -msgid "Total agents and monitors" -msgstr "" - -#: ../../include/functions_reporting_html.php:3486 -#: ../../include/functions_reporting_html.php:3495 -msgid "Node overview" -msgstr "" - -#: ../../include/functions_reporting_html.php:3513 -#: ../../include/functions_reporting_html.php:3530 -msgid "Critical events" -msgstr "" - -#: ../../include/functions_reporting_html.php:3517 -#: ../../include/functions_reporting_html.php:3534 -msgid "Warning events" -msgstr "" - -#: ../../include/functions_reporting_html.php:3521 -#: ../../include/functions_reporting_html.php:3538 -msgid "OK events" -msgstr "" - -#: ../../include/functions_reporting_html.php:3525 -#: ../../include/functions_reporting_html.php:3542 -msgid "Unknown events" -msgstr "" - -#: ../../include/functions_reporting_html.php:3565 -msgid "Important Events by Criticity" -msgstr "" - -#: ../../include/functions_reporting_html.php:3591 -msgid "Last activity in Pandora FMS console" -msgstr "" - -#: ../../include/functions_reporting_html.php:3667 -msgid "Events info (1hr.)" -msgstr "" - -#: ../../include/functions_reporting_html.php:3807 -msgid "This SLA has been affected by the following planned downtimes" -msgstr "" - -#: ../../include/functions_reporting_html.php:3811 -#: ../../godmode/agentes/planned_downtime.editor.php:493 -#: ../../godmode/agentes/planned_downtime.list.php:395 -msgid "Execution" -msgstr "" - -#: ../../include/functions_reporting_html.php:3812 -msgid "Dates" -msgstr "" - -#: ../../include/functions_reporting_html.php:3853 -msgid "This item is affected by a malformed planned downtime" -msgstr "" - -#: ../../include/functions_reporting_html.php:3854 -msgid "Go to the planned downtimes section to solve this" -msgstr "" - -#: ../../include/auth/mysql.php:246 -msgid "" -"Problems with configuration permissions. Please contact with Administrator" -msgstr "" - -#: ../../include/auth/mysql.php:252 -msgid "Your permissions have changed. Please, login again." -msgstr "" - -#: ../../include/auth/mysql.php:265 -msgid "" -"Ooops User not found in \n" -"\t\t\t\tdatabase or incorrect password" -msgstr "" - -#: ../../include/auth/mysql.php:283 ../../include/auth/mysql.php:331 -msgid "Fail the group synchronizing" -msgstr "" - -#: ../../include/auth/mysql.php:289 ../../include/auth/mysql.php:337 -msgid "Fail the tag synchronizing" -msgstr "" - -#: ../../include/auth/mysql.php:302 -msgid "" -"User not found in database \n" -"\t\t\t\t\tor incorrect password" -msgstr "" - -#: ../../include/auth/mysql.php:317 -msgid "User not found in database or incorrect password" -msgstr "" - -#: ../../include/auth/mysql.php:593 -msgid "Could not changes password on remote pandora" -msgstr "" - -#: ../../include/auth/mysql.php:630 -msgid "Your installation of PHP does not support LDAP" -msgstr "" - -#: ../../include/functions_api.php:77 -msgid "No set or get or help operation." -msgstr "" - -#: ../../include/functions_api.php:81 -msgid "This operation does not exist." -msgstr "" - -#: ../../include/functions_api.php:85 -msgid "Id does not exist in BD." -msgstr "" - -#: ../../include/functions_api.php:976 ../../include/functions_api.php:1036 -msgid "Does not exist agent with this name." -msgstr "" - -#: ../../include/functions_api.php:978 ../../include/functions_api.php:1038 -msgid "Does not exist module with this name." -msgstr "" - -#: ../../include/functions_api.php:1454 ../../include/functions_api.php:6415 -msgid "Correct Delete" -msgstr "" - -#: ../../include/functions_api.php:2446 -msgid "Error in creation network module. Agent name doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2452 -msgid "" -"Error in creation network module. Id_module_type is not correct for network " -"modules." -msgstr "" - -#: ../../include/functions_api.php:2507 -msgid "Error in creation network module." -msgstr "" - -#: ../../include/functions_api.php:2540 -msgid "Error updating network module. Module name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:2548 -msgid "Error updating network module. Id_module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2563 -msgid "Error updating network module. Id_module exists in the new agent." -msgstr "" - -#: ../../include/functions_api.php:2570 -msgid "Error updating network module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2623 -msgid "Network module updated." -msgstr "" - -#: ../../include/functions_api.php:2652 -msgid "Error in creation plugin module. Id_plugin cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:2659 -msgid "Error in creation plugin module. Agent name doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2719 -msgid "Error in creation plugin module." -msgstr "" - -#: ../../include/functions_api.php:2750 -msgid "Error updating plugin module. Id_module cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:2757 -msgid "Error updating plugin module. Id_module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2769 -msgid "Error updating plugin module. Id_module exists in the new agent." -msgstr "" - -#: ../../include/functions_api.php:2776 -msgid "Error updating plugin module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2837 -msgid "Plugin module updated." -msgstr "" - -#: ../../include/functions_api.php:2866 -msgid "Error in creation data module. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:2873 -msgid "Error in creation data module. Agent name doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2924 ../../include/functions_api.php:2990 -msgid "Error in creation data module." -msgstr "" - -#: ../../include/functions_api.php:2958 -msgid "Error in creation synthetic module. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:2965 -msgid "Error in creation synthetic module. Agent name doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:3102 -msgid "Synthetic module created ID: " -msgstr "" - -#: ../../include/functions_api.php:3133 -msgid "Error updating data module. Id_module cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3140 -msgid "Error updating data module. Id_module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:3152 -msgid "Error updating data module. Id_module exists in the new agent." -msgstr "" - -#: ../../include/functions_api.php:3159 -msgid "Error updating data module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:3207 -msgid "Data module updated." -msgstr "" - -#: ../../include/functions_api.php:3244 -msgid "Error in creation SNMP module. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3249 -msgid "" -"Error in creation SNMP module. Invalid id_module_type for a SNMP module." -msgstr "" - -#: ../../include/functions_api.php:3256 -msgid "Error in creation SNMP module. Agent name doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:3271 ../../include/functions_api.php:3434 -#: ../../include/functions_api.php:5894 -msgid "" -"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" - -#: ../../include/functions_api.php:3276 ../../include/functions_api.php:3443 -#: ../../include/functions_api.php:5899 -msgid "" -"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" - -#: ../../include/functions_api.php:3281 ../../include/functions_api.php:3449 -#: ../../include/functions_api.php:5904 -msgid "" -"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" - -#: ../../include/functions_api.php:3365 -msgid "Error in creation SNMP module." -msgstr "" - -#: ../../include/functions_api.php:3398 -msgid "Error updating SNMP module. Id_module cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3405 -msgid "Error updating SNMP module. Id_module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:3417 -msgid "Error updating SNMP module. Id_module exists in the new agent." -msgstr "" - -#: ../../include/functions_api.php:3424 -msgid "Error updating snmp module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:3537 -msgid "SNMP module updated." -msgstr "" - -#: ../../include/functions_api.php:3565 -msgid "" -"Error creating network component. Network component name cannot be left " -"blank." -msgstr "" - -#: ../../include/functions_api.php:3570 -msgid "" -"Error creating network component. Incorrect value for Network component type " -"field." -msgstr "" - -#: ../../include/functions_api.php:3575 -msgid "" -"Error creating network component. Network component group cannot be left " -"blank." -msgstr "" - -#: ../../include/functions_api.php:3611 -msgid "" -"Error creating network component. This network component already exists." -msgstr "" - -#: ../../include/functions_api.php:3650 -msgid "" -"Error creating plugin component. Plugin component name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3655 -msgid "Error creating plugin component. Incorrect value for Id plugin." -msgstr "" - -#: ../../include/functions_api.php:3660 -msgid "" -"Error creating plugin component. Plugin component group cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3700 -msgid "Error creating plugin component. This plugin component already exists." -msgstr "" - -#: ../../include/functions_api.php:3738 -msgid "" -"Error creating SNMP component. SNMP component name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3743 -msgid "" -"Error creating SNMP component. Incorrect value for Snmp component type field." -msgstr "" - -#: ../../include/functions_api.php:3748 -msgid "" -"Error creating SNMP component. Snmp component group cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3760 -msgid "" -"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" - -#: ../../include/functions_api.php:3769 -msgid "" -"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" - -#: ../../include/functions_api.php:3775 -msgid "" -"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" - -#: ../../include/functions_api.php:3850 -msgid "Error creating SNMP component. This SNMP component already exists." -msgstr "" - -#: ../../include/functions_api.php:3887 -msgid "" -"Error creating local component. Local component name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3893 -msgid "" -"Error creating local component. Local component group cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3917 -msgid "Error creating local component." -msgstr "" - -#: ../../include/functions_api.php:3923 -msgid "Error creating local component. This local component already exists." -msgstr "" - -#: ../../include/functions_api.php:3956 -msgid "" -"Error getting module value from all agents. Module name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:3964 -msgid "Error getting module value from all agents. Module name doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:4009 -msgid "Error creating alert template. Template name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4081 -msgid "Error creating alert template." -msgstr "" - -#: ../../include/functions_api.php:4112 -msgid "Error updating alert template. Id_template cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4120 -msgid "Error updating alert template. Id_template doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:4146 -msgid "Error updating alert template." -msgstr "" - -#: ../../include/functions_api.php:4151 -msgid "Correct updating of alert template" -msgstr "" - -#: ../../include/functions_api.php:4175 -msgid "Error deleting alert template. Id_template cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4184 -msgid "Error deleting alert template." -msgstr "" - -#: ../../include/functions_api.php:4188 -msgid "Correct deleting of alert template." -msgstr "" - -#: ../../include/functions_api.php:4225 -msgid "Error getting all alert templates." -msgstr "" - -#: ../../include/functions_api.php:4257 -msgid "Error getting alert template. Id_template doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:4274 -msgid "Error getting alert template." -msgstr "" - -#: ../../include/functions_api.php:4313 -msgid "Error getting module groups." -msgstr "" - -#: ../../include/functions_api.php:4358 -msgid "Error getting plugins." -msgstr "" - -#: ../../include/functions_api.php:4381 -msgid "Error creating module from network component. Agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:4388 -msgid "" -"Error creating module from network component. Network component doesn't " -"exist." -msgstr "" - -#: ../../include/functions_api.php:4406 -msgid "Error creating module from network component. Error creating module." -msgstr "" - -#: ../../include/functions_api.php:4433 -msgid "Error assigning module to template. Id_template cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4439 -msgid "Error assigning module to template. Id_module cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4445 -msgid "Error assigning module to template. Id_agent cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4453 -msgid "Error assigning module to template. Id_template doensn't exists." -msgstr "" - -#: ../../include/functions_api.php:4463 -msgid "Error assigning module to template. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:4470 -msgid "Error assigning module to template. Id_module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:4478 -msgid "Error assigning module to template." -msgstr "" - -#: ../../include/functions_api.php:4504 -msgid "" -"Error deleting module template. Id_module_template cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4511 -msgid "Error deleting module template. Id_module_template doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:4519 ../../include/functions_api.php:4578 -msgid "Error deleting module template." -msgstr "" - -#: ../../include/functions_api.php:4522 ../../include/functions_api.php:4581 -msgid "Correct deleting of module template." -msgstr "" - -#: ../../include/functions_api.php:4658 -msgid "Error validate all alerts. Failed " -msgstr "" - -#: ../../include/functions_api.php:4661 -msgid "Correct validating of all alerts." -msgstr "" - -#: ../../include/functions_api.php:4688 -msgid "Error validating all alert policies." -msgstr "" - -#: ../../include/functions_api.php:4746 -msgid "Error validate all policy alerts. Failed " -msgstr "" - -#: ../../include/functions_api.php:4749 -msgid "Correct validating of all policy alerts." -msgstr "" - -#: ../../include/functions_api.php:4772 -msgid "Error stopping downtime. Id_downtime cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:4788 -msgid "Downtime stopped." -msgstr "" - -#: ../../include/functions_api.php:5103 -msgid "and this modules are doesn't exists or not applicable a this agents: " -msgstr "" - -#: ../../include/functions_api.php:5105 -msgid "and this agents are generate problems: " -msgstr "" - -#: ../../include/functions_api.php:5107 -msgid "and this agents with ids are doesn't exists: " -msgstr "" - -#: ../../include/functions_api.php:5134 -msgid "Error adding agent to policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5139 -msgid "Error adding agent to policy. Id_agent cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5147 -msgid "Error adding agent to policy. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:5155 -msgid "Error adding agent to policy." -msgstr "" - -#: ../../include/functions_api.php:5163 -msgid "Error adding agent to policy. The agent is already in the policy." -msgstr "" - -#: ../../include/functions_api.php:5198 -msgid "Error adding data module to policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5203 -msgid "Error adding data module to policy. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5211 -msgid "Error adding data module to policy." -msgstr "" - -#: ../../include/functions_api.php:5247 -msgid "" -"Error adding data module to policy. The module is already in the policy." -msgstr "" - -#: ../../include/functions_api.php:5287 -msgid "Error updating data module in policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5292 -msgid "" -"Error updating data module in policy. Id_policy_module cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5300 -msgid "Error updating data module in policy. Module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:5306 -msgid "Error updating data module in policy. Module type is not network type." -msgstr "" - -#: ../../include/functions_api.php:5335 -msgid "Data policy module updated." -msgstr "" - -#: ../../include/functions_api.php:5364 -msgid "Error adding network module to policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5370 -msgid "" -"Error adding network module to policy. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5376 -msgid "" -"Error adding network module to policy. Id_module_type is not correct for " -"network modules." -msgstr "" - -#: ../../include/functions_api.php:5386 -msgid "Error adding network module to policy." -msgstr "" - -#: ../../include/functions_api.php:5424 -msgid "" -"Error adding network module to policy. The module is already in the policy." -msgstr "" - -#: ../../include/functions_api.php:5462 -msgid "" -"Error updating network module in policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5468 -msgid "" -"Error updating network module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" - -#: ../../include/functions_api.php:5477 -msgid "Error updating network module in policy. Module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:5483 -msgid "" -"Error updating network module in policy. Module type is not network type." -msgstr "" - -#: ../../include/functions_api.php:5509 -msgid "Network policy module updated." -msgstr "" - -#: ../../include/functions_api.php:5536 -msgid "Error adding plugin module to policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5541 -msgid "Error adding plugin module to policy. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5546 -msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5554 -msgid "Error adding plugin module to policy." -msgstr "" - -#: ../../include/functions_api.php:5597 -msgid "" -"Error adding plugin module to policy. The module is already in the policy." -msgstr "" - -#: ../../include/functions_api.php:5636 -msgid "Error updating plugin module in policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5642 -msgid "" -"Error updating plugin module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" - -#: ../../include/functions_api.php:5651 -msgid "Error updating plugin module in policy. Module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:5657 -msgid "" -"Error updating plugin module in policy. Module type is not network type." -msgstr "" - -#: ../../include/functions_api.php:5689 -msgid "Plugin policy module updated." -msgstr "" - -#: ../../include/functions_api.php:5864 -msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5869 -msgid "Error adding SNMP module to policy. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5877 -msgid "Error adding SNMP module to policy." -msgstr "" - -#: ../../include/functions_api.php:5882 -msgid "" -"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " -"modules." -msgstr "" - -#: ../../include/functions_api.php:5976 -msgid "" -"Error adding SNMP module to policy. The module is already in the policy." -msgstr "" - -#: ../../include/functions_api.php:6015 -msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6020 -msgid "" -"Error updating SNMP module in policy. Id_policy_module cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6028 -msgid "Error updating SNMP module in policy. Module doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:6033 -msgid "Error updating SNMP module in policy. Module type is not SNMP type." -msgstr "" - -#: ../../include/functions_api.php:6043 -msgid "" -"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " -"or 'DES'. " -msgstr "" - -#: ../../include/functions_api.php:6053 -msgid "" -"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" - -#: ../../include/functions_api.php:6060 -msgid "" -"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " -"or 'SHA'. " -msgstr "" - -#: ../../include/functions_api.php:6100 -msgid "SNMP policy module updated." -msgstr "" - -#: ../../include/functions_api.php:6123 -msgid "Error applying policy. Id_policy cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6136 ../../include/functions_api.php:6161 -msgid "Error applying policy." -msgstr "" - -#: ../../include/functions_api.php:6148 -msgid "Error applying policy. This policy is already pending to apply." -msgstr "" - -#: ../../include/functions_api.php:6206 -msgid "Error applying all policies." -msgstr "" - -#: ../../include/functions_api.php:6258 -msgid "Error in group creation. Group_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6264 -msgid "Error in group creation. Icon_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6277 ../../include/functions_api.php:6453 -msgid "Error in group creation. Id_parent_group doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:6305 -msgid "Error in group creation." -msgstr "" - -#: ../../include/functions_api.php:6441 -msgid "Error in netflow filter creation. Filter name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6446 -msgid "Error in netflow filter creation. Group id cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6459 -msgid "Error in netflow filter creation. Filter cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6464 -msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6469 -msgid "Error in netflow filter creation. Output_format cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6487 -msgid "Error in netflow filter creation." -msgstr "" - -#: ../../include/functions_api.php:6671 -msgid "Create user." -msgstr "" - -#: ../../include/functions_api.php:6710 -msgid "Error updating user. Id_user cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6718 -msgid "Error updating user. Id_user doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:6734 -msgid "Error updating user. Password info incorrect." -msgstr "" - -#: ../../include/functions_api.php:6742 -msgid "Updated user." -msgstr "" - -#: ../../include/functions_api.php:6773 -msgid "Error enable/disable user. Id_user cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6780 -msgid "Error enable/disable user. Enable/disable value cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:6786 -msgid "Error enable/disable user. The user doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:6795 -msgid "Error in user enabling/disabling." -msgstr "" - -#: ../../include/functions_api.php:6800 -msgid "Enabled user." -msgstr "" - -#: ../../include/functions_api.php:6804 -msgid "Disabled user." -msgstr "" - -#: ../../include/functions_api.php:7659 -#: ../../godmode/agentes/configurar_agente.php:1614 -msgid "Save by Pandora Console" -msgstr "" - -#: ../../include/functions_api.php:7660 -#: ../../godmode/agentes/configurar_agente.php:1629 -msgid "Update by Pandora Console" -msgstr "" - -#: ../../include/functions_api.php:7661 -#: ../../godmode/agentes/configurar_agente.php:1642 -msgid "Insert by Pandora Console" -msgstr "" - -#: ../../include/functions_api.php:8268 -msgid "Delete user." -msgstr "" - -#: ../../include/functions_api.php:8297 -msgid "Add user profile." -msgstr "" - -#: ../../include/functions_api.php:8330 -msgid "Delete user profile." -msgstr "" - -#: ../../include/functions_api.php:8428 -msgid "Correct module disable" -msgstr "" - -#: ../../include/functions_api.php:8431 -msgid "Error disabling module" -msgstr "" - -#: ../../include/functions_api.php:8457 -msgid "Correct module enable" -msgstr "" - -#: ../../include/functions_api.php:8460 -msgid "Error enabling module" -msgstr "" - -#: ../../include/functions_api.php:9024 -msgid "Error adding event comment." -msgstr "" - -#: ../../include/functions_api.php:9263 -msgid "Error enable/disable agent. Id_agent cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:9270 -msgid "Error enable/disable agent. Enable/disable value cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:9276 -msgid "Error enable/disable agent. The agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:9287 -msgid "Error in agent enabling/disabling." -msgstr "" - -#: ../../include/functions_api.php:9293 -msgid "Enabled agent." -msgstr "" - -#: ../../include/functions_api.php:9298 -msgid "Disabled agent." -msgstr "" - -#: ../../include/functions_api.php:9394 -msgid "Error getting special_days." -msgstr "" - -#: ../../include/functions_api.php:9429 -msgid "Error creating special day. Specified day already exists." -msgstr "" - -#: ../../include/functions_api.php:9434 -msgid "Error creating special day. Invalid date format." -msgstr "" - -#: ../../include/functions_api.php:9446 -msgid "Error in creation special day." -msgstr "" - -#: ../../include/functions_api.php:9479 -msgid "Error updating special day. Id cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:9486 -msgid "Error updating special day. Id doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:9491 -msgid "Error updating special day. Invalid date format." -msgstr "" - -#: ../../include/functions_api.php:9525 -msgid "Error deleting special day. Id cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:9532 -msgid "Error deleting special day. Id doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:9539 -msgid "Error in deletion special day." -msgstr "" - -#: ../../include/functions_alerts.php:392 -msgid "copy" -msgstr "" - -#: ../../include/functions_alerts.php:558 -msgid "Regular expression" -msgstr "" - -#: ../../include/functions_alerts.php:559 -msgid "Max and min" -msgstr "" - -#: ../../include/functions_alerts.php:562 -msgid "Equal to" -msgstr "" - -#: ../../include/functions_alerts.php:563 -msgid "Not equal to" -msgstr "" - -#: ../../include/functions_alerts.php:566 -msgid "Unknown status" -msgstr "" - -#: ../../include/functions_alerts.php:567 -msgid "On Change" -msgstr "" - -#: ../../include/functions_alerts.php:568 -#: ../../godmode/alerts/alert_view.php:195 -#: ../../godmode/alerts/alert_list.list.php:524 -msgid "Always" -msgstr "" - -#: ../../include/functions_alerts.php:1385 -msgid "No actions defined" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_events.php:42 -#: ../../godmode/events/custom_events.php:92 -#: ../../godmode/events/custom_events.php:160 -msgid "Agent module" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_events.php:52 -#: ../../godmode/events/custom_events.php:122 -#: ../../godmode/events/custom_events.php:170 -msgid "Server name" -msgstr "" - -#: ../../include/functions_events.php:895 -msgid "V." -msgstr "" - -#: ../../include/functions_events.php:1015 -msgid "Events -by module-" -msgstr "" - -#: ../../include/functions_events.php:1135 -msgid "Going to unknown" -msgstr "" - -#: ../../include/functions_events.php:1138 -#: ../../include/functions_events.php:1407 ../../include/functions.php:1036 -msgid "Alert recovered" -msgstr "" - -#: ../../include/functions_events.php:1141 -msgid "Alert manually validated" -msgstr "" - -#: ../../include/functions_events.php:1144 -msgid "Going from critical to warning" -msgstr "" - -#: ../../include/functions_events.php:1148 -msgid "Going down to critical state" -msgstr "" - -#: ../../include/functions_events.php:1152 -msgid "Going up to normal state" -msgstr "" - -#: ../../include/functions_events.php:1155 -msgid "Going down from normal to warning" -msgstr "" - -#: ../../include/functions_events.php:1164 -msgid "Recon server detected a new host" -msgstr "" - -#: ../../include/functions_events.php:1167 -msgid "New agent created" -msgstr "" - -#: ../../include/functions_events.php:1170 -#: ../../include/functions_events.php:1425 ../../include/functions.php:1044 -msgid "Configuration change" -msgstr "" - -#: ../../include/functions_events.php:1173 -#: ../../include/functions_events.php:1410 ../../include/functions.php:1037 -msgid "Alert ceased" -msgstr "" - -#: ../../include/functions_events.php:1180 -msgid "Unknown type:" -msgstr "" - -#: ../../include/functions_events.php:1395 ../../include/functions.php:1029 -msgid "Monitor Critical" -msgstr "" - -#: ../../include/functions_events.php:1398 ../../include/functions.php:1030 -msgid "Monitor Warning" -msgstr "" - -#: ../../include/functions_events.php:1401 ../../include/functions.php:1031 -msgid "Monitor Normal" -msgstr "" - -#: ../../include/functions_events.php:1413 ../../include/functions.php:1038 -msgid "Alert manual validation" -msgstr "" - -#: ../../include/functions_events.php:1416 ../../include/functions.php:1041 -msgid "Recon host detected" -msgstr "" - -#: ../../include/functions_events.php:1496 -#: ../../include/functions_events.php:1503 -#: ../../include/functions_events.php:1523 -msgid "All event" -msgstr "" - -#: ../../include/functions_events.php:1497 -#: ../../include/functions_events.php:1526 -msgid "Only new" -msgstr "" - -#: ../../include/functions_events.php:1498 -#: ../../include/functions_events.php:1529 -msgid "Only validated" -msgstr "" - -#: ../../include/functions_events.php:1499 -#: ../../include/functions_events.php:1532 -msgid "Only in process" -msgstr "" - -#: ../../include/functions_events.php:1500 -#: ../../include/functions_events.php:1535 -msgid "Only not validated" -msgstr "" - -#: ../../include/functions_events.php:1504 -#: ../../include/functions_events.php:1719 -msgid "New" -msgstr "" - -#: ../../include/functions_events.php:1506 -#: ../../include/functions_events.php:1719 -#: ../../include/functions_events.php:1725 -msgid "In process" -msgstr "" - -#: ../../include/functions_events.php:1507 -msgid "Not Validated" -msgstr "" - -#: ../../include/functions_events.php:1579 -msgid "Agent address" -msgstr "" - -#: ../../include/functions_events.php:1580 -msgid "Agent id" -msgstr "" - -#: ../../include/functions_events.php:1582 -msgid "Module Agent address" -msgstr "" - -#: ../../include/functions_events.php:1674 -msgid "Change owner" -msgstr "" - -#: ../../include/functions_events.php:1713 -msgid "Change status" -msgstr "" - -#: ../../include/functions_events.php:1752 -#: ../../include/functions_events.php:2564 -msgid "Add comment" -msgstr "" - -#: ../../include/functions_events.php:1771 -msgid "Custom responses" -msgstr "" - -#: ../../include/functions_events.php:1817 -#: ../../godmode/events/event_responses.editor.php:111 -msgid "Parameters" -msgstr "" - -#: ../../include/functions_events.php:1973 -msgid "There was an error connecting to the node" -msgstr "" - -#: ../../include/functions_events.php:2012 -msgid "Agent details" -msgstr "" - -#: ../../include/functions_events.php:2049 -msgid "View custom fields" -msgstr "" - -#: ../../include/functions_events.php:2061 -msgid "Module details" -msgstr "" - -#: ../../include/functions_events.php:2078 -msgid "No assigned" -msgstr "" - -#: ../../include/functions_events.php:2140 -#: ../../godmode/alerts/alert_view.php:49 -#: ../../godmode/alerts/alert_view.php:324 -msgid "Alert details" -msgstr "" - -#: ../../include/functions_events.php:2151 -#: ../../include/functions_events.php:2155 -msgid "Go to data overview" -msgstr "" - -#: ../../include/functions_events.php:2298 -#, php-format -msgid "Invalid custom data: %s" -msgstr "" - -#: ../../include/functions_events.php:2345 -msgid "First event" -msgstr "" - -#: ../../include/functions_events.php:2345 -msgid "Last event" -msgstr "" - -#: ../../include/functions_events.php:2459 -msgid "ID extra" -msgstr "" - -#: ../../include/functions_events.php:2510 -#: ../../include/functions_events.php:2556 -msgid "There are no comments" -msgstr "" - -#: ../../include/functions_netflow.php:362 -msgid "Total flows" -msgstr "" - -#: ../../include/functions_netflow.php:367 -msgid "Total bytes" -msgstr "" - -#: ../../include/functions_netflow.php:372 -msgid "Total packets" -msgstr "" - -#: ../../include/functions_netflow.php:377 -msgid "Average bits per second" -msgstr "" - -#: ../../include/functions_netflow.php:382 -msgid "Average packets per second" -msgstr "" - -#: ../../include/functions_netflow.php:387 -msgid "Average bytes per packet" -msgstr "" - -#: ../../include/functions_netflow.php:1031 -msgid "Area graph" -msgstr "" - -#: ../../include/functions_netflow.php:1032 -msgid "Pie graph and Summary table" -msgstr "" - -#: ../../include/functions_netflow.php:1033 -msgid "Statistics table" -msgstr "" - -#: ../../include/functions_netflow.php:1035 -msgid "Circular mesh" -msgstr "" - -#: ../../include/functions_netflow.php:1036 -#: ../../include/functions_netflow.php:1390 -msgid "Host detailed traffic" -msgstr "" - -#: ../../include/functions_netflow.php:1049 -#: ../../include/functions_netflow.php:1082 -msgid "10 mins" -msgstr "" - -#: ../../include/functions_netflow.php:1050 -#: ../../include/functions_netflow.php:1083 -msgid "15 mins" -msgstr "" - -#: ../../include/functions_netflow.php:1051 -#: ../../include/functions_netflow.php:1084 -msgid "30 mins" -msgstr "" - -#: ../../include/functions_netflow.php:1054 -#: ../../include/functions_netflow.php:1087 -msgid "5 hours" -msgstr "" - -#: ../../include/functions_netflow.php:1057 -#: ../../include/functions_netflow.php:1090 -#: ../../godmode/setup/performance.php:108 -msgid "2 days" -msgstr "" - -#: ../../include/functions_netflow.php:1058 -#: ../../include/functions_netflow.php:1091 -msgid "5 days" -msgstr "" - -#: ../../include/functions_netflow.php:1060 -#: ../../godmode/setup/performance.php:110 -msgid "Last week" -msgstr "" - -#: ../../include/functions_netflow.php:1061 -#: ../../godmode/setup/performance.php:112 -msgid "Last month" -msgstr "" - -#: ../../include/functions_netflow.php:1062 -msgid "2 months" -msgstr "" - -#: ../../include/functions_netflow.php:1065 -msgid "Last year" -msgstr "" - -#: ../../include/functions_netflow.php:1079 -msgid "1 min" -msgstr "" - -#: ../../include/functions_netflow.php:1080 -msgid "2 mins" -msgstr "" - -#: ../../include/functions_netflow.php:1081 -msgid "5 mins" -msgstr "" - -#: ../../include/functions_netflow.php:1132 -#: ../../include/functions_netflow.php:1142 -#: ../../include/functions_netflow.php:1191 -#: ../../include/functions_netflow.php:1249 -#: ../../include/functions_netflow.php:1255 -#: ../../include/functions_netflow.php:1288 -msgid "Aggregate" -msgstr "" - -#: ../../include/functions_netflow.php:1361 -msgid "Sent" -msgstr "" - -#: ../../include/functions_netflow.php:1368 -msgid "Received" -msgstr "" - -#: ../../include/functions_netflow.php:1435 -msgid "Error generating report" -msgstr "" - -#: ../../include/functions_netflow.php:1632 -msgid "MB" -msgstr "" - -#: ../../include/functions_netflow.php:1634 -msgid "MB/s" -msgstr "" - -#: ../../include/functions_netflow.php:1636 -msgid "kB" -msgstr "" - -#: ../../include/functions_netflow.php:1638 -msgid "kB/s" -msgstr "" - -#: ../../include/functions_netflow.php:1642 -msgid "B/s" -msgstr "" - -#: ../../include/functions_netflow.php:1656 -msgid "Dst port" -msgstr "" - -#: ../../include/functions_netflow.php:1658 -msgid "Dst IP" -msgstr "" - -#: ../../include/functions_netflow.php:1662 -msgid "Src IP" -msgstr "" - -#: ../../include/functions_netflow.php:1664 -msgid "Src port" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_html.php:728 ../../include/functions.php:434 -#: ../../include/functions.php:568 ../../godmode/setup/setup_visuals.php:712 -msgid "minutes" -msgstr "" - -#: ../../include/functions_html.php:729 ../../include/functions.php:435 -#: ../../include/functions.php:569 ../../godmode/setup/setup_visuals.php:713 -msgid "hours" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_html.php:731 -msgid "weeks" -msgstr "" - -#: ../../include/functions_html.php:732 ../../include/functions.php:432 -#: ../../include/functions.php:566 ../../godmode/setup/setup_visuals.php:715 -msgid "months" -msgstr "" - -#: ../../include/functions_html.php:733 ../../include/functions.php:433 -#: ../../include/functions.php:567 ../../godmode/setup/setup_visuals.php:716 -msgid "years" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_html.php:862 -msgid "Month day" -msgstr "" - -#: ../../include/functions_html.php:864 -msgid "Week day" -msgstr "" - -#: ../../include/functions_html.php:2167 -msgid "Type at least two characters to search the module." -msgstr "" - -#: ../../include/functions_reporting.php:563 -#: ../../include/functions_reporting.php:5086 -msgid "There are no SLAs defined" -msgstr "" - -#: ../../include/functions_reporting.php:630 -#: ../../include/functions_reporting.php:5137 -msgid "Inverse" -msgstr "" - -#: ../../include/functions_reporting.php:940 -msgid "Top N" -msgstr "" - -#: ../../include/functions_reporting.php:1050 -msgid "Insuficient data" -msgstr "" - -#: ../../include/functions_reporting.php:1283 -msgid "Event Report Group" -msgstr "" - -#: ../../include/functions_reporting.php:1460 -msgid "Event Report Module" -msgstr "" - -#: ../../include/functions_reporting.php:1522 -msgid "Inventory Changes" -msgstr "" - -#: ../../include/functions_reporting.php:1564 -msgid "No changes found." -msgstr "" - -#: ../../include/functions_reporting.php:1626 -#: ../../godmode/reporting/reporting_builder.php:727 -msgid "No data found." -msgstr "" - -#: ../../include/functions_reporting.php:1651 -msgid "Agent/Modules" -msgstr "" - -#: ../../include/functions_reporting.php:1740 -msgid "Exception - Everything" -msgstr "" - -#: ../../include/functions_reporting.php:1741 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 -msgid "Everything" -msgstr "" - -#: ../../include/functions_reporting.php:1745 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1747 -#, php-format -msgid "Modules over or equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1751 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1753 -#, php-format -msgid "Modules under or equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1757 -#, php-format -msgid "Exception - Modules under %s" -msgstr "" - -#: ../../include/functions_reporting.php:1759 -#, php-format -msgid "Modules under %s" -msgstr "" - -#: ../../include/functions_reporting.php:1763 -#, php-format -msgid "Exception - Modules over %s" -msgstr "" - -#: ../../include/functions_reporting.php:1765 -#, php-format -msgid "Modules over %s" -msgstr "" - -#: ../../include/functions_reporting.php:1769 -#, php-format -msgid "Exception - Equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1771 -#, php-format -msgid "Equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1775 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1777 -#, php-format -msgid "Not equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1781 -msgid "Exception - Modules at normal status" -msgstr "" - -#: ../../include/functions_reporting.php:1782 -msgid "Modules at normal status" -msgstr "" - -#: ../../include/functions_reporting.php:1786 -msgid "Exception - Modules at critical or warning status" -msgstr "" - -#: ../../include/functions_reporting.php:1787 -msgid "Modules at critical or warning status" -msgstr "" - -#: ../../include/functions_reporting.php:1976 -msgid "There are no Modules under those conditions." -msgstr "" - -#: ../../include/functions_reporting.php:1979 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "" - -#: ../../include/functions_reporting.php:1982 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "" - -#: ../../include/functions_reporting.php:1985 -#, php-format -msgid "There are no Modules less %s." -msgstr "" - -#: ../../include/functions_reporting.php:1988 -#, php-format -msgid "There are no Modules over %s." -msgstr "" - -#: ../../include/functions_reporting.php:1991 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1994 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1997 -msgid "There are no Modules normal status" -msgstr "" - -#: ../../include/functions_reporting.php:2000 -msgid "There are no Modules at critial or warning status" -msgstr "" - -#: ../../include/functions_reporting.php:2148 -msgid "Group Report" -msgstr "" - -#: ../../include/functions_reporting.php:2202 -msgid "Event Report Agent" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reporting.php:2398 -msgid "Database Serialized" -msgstr "" - -#: ../../include/functions_reporting.php:2587 -msgid "Network interfaces report" -msgstr "" - -#: ../../include/functions_reporting.php:2606 -msgid "The group has no agents or none of the agents has any network interface" -msgstr "" - -#: ../../include/functions_reporting.php:2655 -#: ../../include/functions_reporting.php:2678 -msgid "bytes/s" -msgstr "" - -#: ../../include/functions_reporting.php:2730 -msgid "Alert Report Group" -msgstr "" - -#: ../../include/functions_reporting.php:2876 -msgid "Alert Report Agent" -msgstr "" - -#: ../../include/functions_reporting.php:2993 -msgid "Alert Report Module" -msgstr "" - -#: ../../include/functions_reporting.php:3126 -msgid "SQL Graph Vertical Bars" -msgstr "" - -#: ../../include/functions_reporting.php:3129 -msgid "SQL Graph Horizontal Bars" -msgstr "" - -#: ../../include/functions_reporting.php:3132 -msgid "SQL Graph Pie" -msgstr "" - -#: ../../include/functions_reporting.php:3179 -msgid "Monitor Report" -msgstr "" - -#: ../../include/functions_reporting.php:3250 -msgid "Netflow Area" -msgstr "" - -#: ../../include/functions_reporting.php:3253 -msgid "Netflow Pie" -msgstr "" - -#: ../../include/functions_reporting.php:3256 -msgid "Netflow Data" -msgstr "" - -#: ../../include/functions_reporting.php:3259 -msgid "Netflow Statistics" -msgstr "" - -#: ../../include/functions_reporting.php:3262 -msgid "Netflow Summary" -msgstr "" - -#: ../../include/functions_reporting.php:3386 -msgid "Prediction Date" -msgstr "" - -#: ../../include/functions_reporting.php:3436 -msgid "Projection Graph" -msgstr "" - -#: ../../include/functions_reporting.php:3676 -msgid "AVG. Value" -msgstr "" - -#: ../../include/functions_reporting.php:3811 -#: ../../godmode/tag/edit_tag.php:185 -msgid "Url" -msgstr "" - -#: ../../include/functions_reporting.php:3866 -msgid "SQL" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reporting.php:4928 -msgid "No Address" -msgstr "" - -#: ../../include/functions_reporting.php:5672 -#: ../../godmode/db/db_refine.php:107 ../../godmode/db/db_refine.php:109 -msgid "Minimum" -msgstr "" - -#: ../../include/functions_reporting.php:5675 -#: ../../godmode/db/db_refine.php:112 ../../godmode/db/db_refine.php:114 -msgid "Maximum" -msgstr "" - -#: ../../include/functions_reporting.php:5679 -msgid "Rate" -msgstr "" - -#: ../../include/functions_reporting.php:6324 -msgid "Maximum of events shown" -msgstr "" - -#: ../../include/functions_reporting.php:6964 -#: ../../include/functions_reporting.php:7001 -msgid "Server health" -msgstr "" - -#: ../../include/functions_reporting.php:6964 -#, php-format -msgid "%d Downed servers" -msgstr "" - -#: ../../include/functions_reporting.php:6972 -#: ../../include/functions_reporting.php:7004 -msgid "Monitor health" -msgstr "" - -#: ../../include/functions_reporting.php:6972 -#, php-format -msgid "%d Not Normal monitors" -msgstr "" - -#: ../../include/functions_reporting.php:6974 -#: ../../include/functions_reporting.php:7005 -msgid "of monitors up" -msgstr "" - -#: ../../include/functions_reporting.php:6980 -#: ../../include/functions_reporting.php:7007 -msgid "Module sanity" -msgstr "" - -#: ../../include/functions_reporting.php:6980 -#, php-format -msgid "%d Not inited monitors" -msgstr "" - -#: ../../include/functions_reporting.php:6982 -#: ../../include/functions_reporting.php:7008 -msgid "of total modules inited" -msgstr "" - -#: ../../include/functions_reporting.php:6988 -#: ../../include/functions_reporting.php:8008 -#: ../../include/functions_reporting.php:8017 -#, php-format -msgid "%d Fired alerts" -msgstr "" - -#: ../../include/functions_reporting.php:6990 -#: ../../include/functions_reporting.php:7011 -msgid "of defined alerts not fired" -msgstr "" - -#: ../../include/functions_reporting.php:7048 -msgid "Defined alerts" -msgstr "" - -#: ../../include/functions_reporting.php:7070 -msgid "Defined and fired alerts" -msgstr "" - -#: ../../include/functions_reporting.php:7136 -msgid "Monitor normal" -msgstr "" - -#: ../../include/functions_reporting.php:7147 -msgid "Monitor not init" -msgstr "" - -#: ../../include/functions_reporting.php:7171 -#: ../../include/functions_reporting.php:7182 -msgid "Monitors by status" -msgstr "" - -#: ../../include/functions_reporting.php:7270 -msgid "Defined users" -msgstr "" - -#: ../../include/functions_reporting.php:7908 -msgid "Agent without data" -msgstr "" - -#: ../../include/functions_reporting.php:7995 -#: ../../include/functions_reporting.php:8003 -#, php-format -msgid "%d Total modules" -msgstr "" - -#: ../../include/functions_reporting.php:7996 -#, php-format -msgid "%d Modules in normal status" -msgstr "" - -#: ../../include/functions_reporting.php:7997 -#, php-format -msgid "%d Modules in critical status" -msgstr "" - -#: ../../include/functions_reporting.php:7998 -#, php-format -msgid "%d Modules in warning status" -msgstr "" - -#: ../../include/functions_reporting.php:7999 -#, php-format -msgid "%d Modules in unknown status" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_reporting.php:8005 -#, php-format -msgid "%d Critical modules" -msgstr "" - -#: ../../include/functions_reporting.php:8006 -#, php-format -msgid "%d Warning modules" -msgstr "" - -#: ../../include/functions_reporting.php:8007 -#, php-format -msgid "%d Unknown modules" -msgstr "" - -#: ../../include/functions_reporting.php:8011 -#, php-format -msgid "%d Total agents" -msgstr "" - -#: ../../include/functions_reporting.php:8012 -#, php-format -msgid "%d Normal agents" -msgstr "" - -#: ../../include/functions_reporting.php:8013 -#, php-format -msgid "%d Critical agents" -msgstr "" - -#: ../../include/functions_reporting.php:8014 -#, php-format -msgid "%d Warning agents" -msgstr "" - -#: ../../include/functions_reporting.php:8015 -#, php-format -msgid "%d Unknown agents" -msgstr "" - -#: ../../include/functions_reporting.php:8016 -#, php-format -msgid "%d not init agents" -msgstr "" - -#: ../../include/functions_reporting.php:9718 -msgid "Total running modules" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_reporting.php:9733 -msgid "Local modules" -msgstr "" - -#: ../../include/functions_reporting.php:9744 -msgid "Remote modules" -msgstr "" - -#: ../../include/functions_reporting.php:9768 -msgid "Network modules" -msgstr "" - -#: ../../include/functions_reporting.php:9791 -msgid "Plugin modules" -msgstr "" - -#: ../../include/functions_reporting.php:9803 -msgid "Prediction modules" -msgstr "" - -#: ../../include/functions_reporting.php:9815 -msgid "WMI modules" -msgstr "" - -#: ../../include/functions_reporting.php:9827 -msgid "Web modules" -msgstr "" - -#: ../../include/functions_reporting.php:9866 ../../godmode/db/db_main.php:105 -msgid "Total events" -msgstr "" - -#: ../../include/functions_reporting.php:9889 -msgid "Server performance" -msgstr "" - -#: ../../include/functions_reporting.php:9971 -msgid "Weekly:" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_reporting.php:10005 -msgid "Monthly:" -msgstr "" - -#: ../../include/functions_reporting.php:10006 -msgid "From day" -msgstr "" - -#: ../../include/functions_reporting.php:10007 -msgid "To day" -msgstr "" - -#: ../../include/functions_config.php:94 -msgid "Failed updated: User did not login." -msgstr "" - -#: ../../include/functions_config.php:102 -msgid "Failed updated: User is not admin." -msgstr "" - -#: ../../include/functions_config.php:131 -#: ../../godmode/setup/setup_general.php:57 -msgid "Remote config directory" -msgstr "" - -#: ../../include/functions_config.php:133 -#: ../../godmode/setup/setup_general.php:62 -msgid "Auto login (hash) password" -msgstr "" - -#: ../../include/functions_config.php:136 -#: ../../godmode/setup/setup_general.php:65 -msgid "Time source" -msgstr "" - -#: ../../include/functions_config.php:138 -#: ../../godmode/setup/setup_general.php:70 -msgid "Automatic check for updates" -msgstr "" - -#: ../../include/functions_config.php:140 -msgid "SSL cert path" -msgstr "" - -#: ../../include/functions_config.php:142 -#: ../../godmode/setup/setup_general.php:74 -msgid "Enforce https" -msgstr "" - -#: ../../include/functions_config.php:144 -msgid "Use cert." -msgstr "" - -#: ../../include/functions_config.php:146 -#: ../../godmode/setup/setup_general.php:86 -msgid "Attachment store" -msgstr "" - -#: ../../include/functions_config.php:148 -#: ../../godmode/setup/setup_general.php:89 -msgid "IP list with API access" -msgstr "" - -#: ../../include/functions_config.php:150 -#: ../../godmode/setup/setup_general.php:98 -msgid "API password" -msgstr "" - -#: ../../include/functions_config.php:152 -#: ../../godmode/setup/setup_general.php:102 -msgid "Enable GIS features in Pandora Console" -msgstr "" - -#: ../../include/functions_config.php:154 -msgid "Enable Integria incidents in Pandora Console" -msgstr "" - -#: ../../include/functions_config.php:156 -msgid "Integria inventory" -msgstr "" - -#: ../../include/functions_config.php:158 -msgid "Integria API password" -msgstr "" - -#: ../../include/functions_config.php:160 -msgid "Integria URL" -msgstr "" - -#: ../../include/functions_config.php:162 -#: ../../godmode/setup/setup_general.php:106 -msgid "Enable Netflow" -msgstr "" - -#: ../../include/functions_config.php:169 -#: ../../godmode/setup/setup_general.php:146 -msgid "Sound for Alert fired" -msgstr "" - -#: ../../include/functions_config.php:171 -#: ../../godmode/setup/setup_general.php:151 -msgid "Sound for Monitor critical" -msgstr "" - -#: ../../include/functions_config.php:173 -#: ../../godmode/setup/setup_general.php:156 -msgid "Sound for Monitor warning" -msgstr "" - -#: ../../include/functions_config.php:184 -msgid "License information" -msgstr "" - -#: ../../include/functions_config.php:188 -#: ../../godmode/setup/setup_general.php:161 -msgid "Public URL" -msgstr "" - -#: ../../include/functions_config.php:190 -#: ../../godmode/setup/setup_general.php:165 -msgid "Referer security" -msgstr "" - -#: ../../include/functions_config.php:192 -#: ../../godmode/setup/setup_general.php:173 -msgid "Event storm protection" -msgstr "" - -#: ../../include/functions_config.php:194 -#: ../../godmode/setup/setup_general.php:182 -msgid "Command Snapshot" -msgstr "" - -#: ../../include/functions_config.php:196 -#: ../../godmode/setup/setup_general.php:187 -msgid "Server logs directory" -msgstr "" - -#: ../../include/functions_config.php:198 -#: ../../godmode/setup/setup_general.php:196 -msgid "Tutorial mode" -msgstr "" - -#: ../../include/functions_config.php:200 -#: ../../godmode/setup/setup_general.php:203 -msgid "Allow create planned downtimes in the past" -msgstr "" - -#: ../../include/functions_config.php:202 -#: ../../godmode/setup/setup_general.php:208 -msgid "Limit parameters massive" -msgstr "" - -#: ../../include/functions_config.php:204 -msgid "Identification_reminder" -msgstr "" - -#: ../../include/functions_config.php:206 -msgid "Include_agents" -msgstr "" - -#: ../../include/functions_config.php:208 -msgid "Audit log directory" -msgstr "" - -#: ../../include/functions_config.php:213 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "" - -#: ../../include/functions_config.php:215 -msgid "Use Enterprise ACL System" -msgstr "" - -#: ../../include/functions_config.php:217 -msgid "Activate Metaconsole" -msgstr "" - -#: ../../include/functions_config.php:219 -msgid "Size of collection" -msgstr "" - -#: ../../include/functions_config.php:221 -msgid "Events replication" -msgstr "" - -#: ../../include/functions_config.php:224 -msgid "Replication interval" -msgstr "" - -#: ../../include/functions_config.php:226 -msgid "Replication limit" -msgstr "" - -#: ../../include/functions_config.php:228 -msgid "Replication mode" -msgstr "" - -#: ../../include/functions_config.php:230 -msgid "Show events list in local console (read only)" -msgstr "" - -#: ../../include/functions_config.php:233 -msgid "Replication DB engine" -msgstr "" - -#: ../../include/functions_config.php:235 -msgid "Replication DB host" -msgstr "" - -#: ../../include/functions_config.php:237 -msgid "Replication DB database" -msgstr "" - -#: ../../include/functions_config.php:239 -msgid "Replication DB user" -msgstr "" - -#: ../../include/functions_config.php:241 -msgid "Replication DB password" -msgstr "" - -#: ../../include/functions_config.php:243 -msgid "Replication DB port" -msgstr "" - -#: ../../include/functions_config.php:245 -msgid "Metaconsole agent cache" -msgstr "" - -#: ../../include/functions_config.php:247 -msgid "Activate Log Collector" -msgstr "" - -#: ../../include/functions_config.php:251 -msgid "Inventory changes blacklist" -msgstr "" - -#: ../../include/functions_config.php:258 -msgid "Enable password policy" -msgstr "" - -#: ../../include/functions_config.php:261 -msgid "Min. size password" -msgstr "" - -#: ../../include/functions_config.php:263 -msgid "Password expiration" -msgstr "" - -#: ../../include/functions_config.php:265 -msgid "Force change password on first login" -msgstr "" - -#: ../../include/functions_config.php:267 -msgid "User blocked if login fails" -msgstr "" - -#: ../../include/functions_config.php:269 -msgid "Number of failed login attempts" -msgstr "" - -#: ../../include/functions_config.php:271 -msgid "Password must have numbers" -msgstr "" - -#: ../../include/functions_config.php:273 -msgid "Password must have symbols" -msgstr "" - -#: ../../include/functions_config.php:275 -msgid "Apply password policy to admin users" -msgstr "" - -#: ../../include/functions_config.php:277 -msgid "Enable password history" -msgstr "" - -#: ../../include/functions_config.php:279 -msgid "Compare previous password" -msgstr "" - -#: ../../include/functions_config.php:285 -#: ../../godmode/setup/setup_auth.php:183 -msgid "Authentication method" -msgstr "" - -#: ../../include/functions_config.php:287 -#: ../../godmode/setup/setup_auth.php:57 -msgid "Autocreate remote users" -msgstr "" - -#: ../../include/functions_config.php:289 -msgid "Autocreate profile" -msgstr "" - -#: ../../include/functions_config.php:291 -msgid "Autocreate profile group" -msgstr "" - -#: ../../include/functions_config.php:293 -msgid "Autocreate profile tags" -msgstr "" - -#: ../../include/functions_config.php:295 -msgid "Autocreate blacklist" -msgstr "" - -#: ../../include/functions_config.php:298 -msgid "Active directory server" -msgstr "" - -#: ../../include/functions_config.php:300 -msgid "Active directory port" -msgstr "" - -#: ../../include/functions_config.php:302 -#: ../../include/functions_config.php:317 -#: ../../godmode/setup/setup_auth.php:93 -msgid "Start TLS" -msgstr "" - -#: ../../include/functions_config.php:304 -msgid "Advanced Config AD" -msgstr "" - -#: ../../include/functions_config.php:306 -msgid "Domain" -msgstr "" - -#: ../../include/functions_config.php:308 -msgid "Advanced Permisions AD" -msgstr "" - -#: ../../include/functions_config.php:311 -#: ../../godmode/setup/setup_auth.php:74 -msgid "LDAP server" -msgstr "" - -#: ../../include/functions_config.php:313 -#: ../../godmode/setup/setup_auth.php:80 -msgid "LDAP port" -msgstr "" - -#: ../../include/functions_config.php:315 -#: ../../godmode/setup/setup_auth.php:87 -msgid "LDAP version" -msgstr "" - -#: ../../include/functions_config.php:319 -#: ../../godmode/setup/setup_auth.php:100 -msgid "Base DN" -msgstr "" - -#: ../../include/functions_config.php:321 -#: ../../godmode/setup/setup_auth.php:106 -msgid "Login attribute" -msgstr "" - -#: ../../include/functions_config.php:323 -#: ../../godmode/setup/setup_auth.php:49 -msgid "Fallback to local authentication" -msgstr "" - -#: ../../include/functions_config.php:326 -msgid "MySQL host" -msgstr "" - -#: ../../include/functions_config.php:328 -#: ../../include/functions_config.php:339 -#: ../../include/functions_config.php:349 -msgid "MySQL port" -msgstr "" - -#: ../../include/functions_config.php:330 -#: ../../include/functions_config.php:341 -#: ../../include/functions_config.php:351 -#: ../../include/functions_config.php:681 -msgid "Database name" -msgstr "" - -#: ../../include/functions_config.php:337 -msgid "Babel Enterprise host" -msgstr "" - -#: ../../include/functions_config.php:347 -msgid "Integria host" -msgstr "" - -#: ../../include/functions_config.php:357 -msgid "Saml path" -msgstr "" - -#: ../../include/functions_config.php:361 -msgid "Session timeout" -msgstr "" - -#: ../../include/functions_config.php:371 -#: ../../godmode/setup/performance.php:49 -msgid "Max. days before delete events" -msgstr "" - -#: ../../include/functions_config.php:373 -#: ../../godmode/setup/performance.php:52 -msgid "Max. days before delete traps" -msgstr "" - -#: ../../include/functions_config.php:375 -#: ../../godmode/setup/performance.php:58 -msgid "Max. days before delete string data" -msgstr "" - -#: ../../include/functions_config.php:377 -#: ../../godmode/setup/performance.php:55 -msgid "Max. days before delete audit events" -msgstr "" - -#: ../../include/functions_config.php:379 -#: ../../godmode/setup/performance.php:61 -msgid "Max. days before delete GIS data" -msgstr "" - -#: ../../include/functions_config.php:381 -#: ../../godmode/setup/performance.php:64 -msgid "Max. days before purge" -msgstr "" - -#: ../../include/functions_config.php:383 -#: ../../godmode/setup/performance.php:70 -msgid "Max. days before delete unknown modules" -msgstr "" - -#: ../../include/functions_config.php:385 -#: ../../godmode/setup/performance.php:67 -msgid "Max. days before compact data" -msgstr "" - -#: ../../include/functions_config.php:387 -msgid "Max. days before autodisable deletion" -msgstr "" - -#: ../../include/functions_config.php:389 -msgid "Item limit for realtime reports)" -msgstr "" - -#: ../../include/functions_config.php:391 -#: ../../godmode/setup/performance.php:100 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "" - -#: ../../include/functions_config.php:393 -#: ../../godmode/setup/performance.php:114 -msgid "Default hours for event view" -msgstr "" - -#: ../../include/functions_config.php:395 -#: ../../godmode/setup/performance.php:117 -msgid "Use realtime statistics" -msgstr "" - -#: ../../include/functions_config.php:397 -#: ../../godmode/setup/performance.php:121 -msgid "Batch statistics period (secs)" -msgstr "" - -#: ../../include/functions_config.php:399 -#: ../../godmode/setup/performance.php:124 -msgid "Use agent access graph" -msgstr "" - -#: ../../include/functions_config.php:401 -#: ../../godmode/setup/performance.php:128 -msgid "Max. recommended number of files in attachment directory" -msgstr "" - -#: ../../include/functions_config.php:403 -#: ../../godmode/setup/performance.php:131 -msgid "Delete not init modules" -msgstr "" - -#: ../../include/functions_config.php:405 -msgid "Big Operatiopn Step to purge old data" -msgstr "" - -#: ../../include/functions_config.php:407 -#: ../../godmode/setup/performance.php:138 -msgid "Small Operation Step to purge old data" -msgstr "" - -#: ../../include/functions_config.php:409 -#: ../../godmode/setup/performance.php:76 -msgid "Retention period of past special days" -msgstr "" - -#: ../../include/functions_config.php:411 -#: ../../godmode/setup/performance.php:79 -msgid "Max. macro data fields" -msgstr "" - -#: ../../include/functions_config.php:414 -#: ../../godmode/setup/performance.php:83 -msgid "Max. days before delete inventory data" -msgstr "" - -#: ../../include/functions_config.php:422 -#: ../../godmode/setup/setup_visuals.php:651 -msgid "Date format string" -msgstr "" - -#: ../../include/functions_config.php:424 -#: ../../godmode/setup/setup_visuals.php:664 -msgid "Timestamp or time comparation" -msgstr "" - -#: ../../include/functions_config.php:426 -#: ../../godmode/setup/setup_visuals.php:391 -msgid "Graph color (min)" -msgstr "" - -#: ../../include/functions_config.php:428 -#: ../../godmode/setup/setup_visuals.php:395 -msgid "Graph color (avg)" -msgstr "" - -#: ../../include/functions_config.php:430 -#: ../../godmode/setup/setup_visuals.php:399 -msgid "Graph color (max)" -msgstr "" - -#: ../../include/functions_config.php:432 -#: ../../godmode/setup/setup_visuals.php:403 -msgid "Graph color #4" -msgstr "" - -#: ../../include/functions_config.php:434 -#: ../../godmode/setup/setup_visuals.php:407 -msgid "Graph color #5" -msgstr "" - -#: ../../include/functions_config.php:436 -#: ../../godmode/setup/setup_visuals.php:411 -msgid "Graph color #6" -msgstr "" - -#: ../../include/functions_config.php:438 -#: ../../godmode/setup/setup_visuals.php:415 -msgid "Graph color #7" -msgstr "" - -#: ../../include/functions_config.php:440 -#: ../../godmode/setup/setup_visuals.php:419 -msgid "Graph color #8" -msgstr "" - -#: ../../include/functions_config.php:442 -#: ../../godmode/setup/setup_visuals.php:423 -msgid "Graph color #9" -msgstr "" - -#: ../../include/functions_config.php:444 -#: ../../godmode/setup/setup_visuals.php:427 -msgid "Graph color #10" -msgstr "" - -#: ../../include/functions_config.php:446 -msgid "Graphic resolution (1-low, 5-high)" -msgstr "" - -#: ../../include/functions_config.php:448 -#: ../../godmode/setup/setup_visuals.php:435 -msgid "Value to interface graphics" -msgstr "" - -#: ../../include/functions_config.php:450 -#: ../../godmode/setup/setup_visuals.php:444 -msgid "Data precision for reports" -msgstr "" - -#: ../../include/functions_config.php:455 -#: ../../godmode/setup/setup_visuals.php:153 -msgid "Style template" -msgstr "" - -#: ../../include/functions_config.php:459 -#: ../../godmode/setup/setup_visuals.php:454 -msgid "Use round corners" -msgstr "" - -#: ../../include/functions_config.php:461 -msgid "Show QR code header" -msgstr "" - -#: ../../include/functions_config.php:463 -#: ../../godmode/setup/setup_visuals.php:158 -msgid "Status icon set" -msgstr "" - -#: ../../include/functions_config.php:465 -#: ../../godmode/setup/setup_visuals.php:311 -msgid "Font path" -msgstr "" - -#: ../../include/functions_config.php:467 -#: ../../godmode/setup/setup_visuals.php:318 -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -msgid "Font size" -msgstr "" - -#: ../../include/functions_config.php:473 -#: ../../include/functions_config.php:633 -#: ../../godmode/setup/setup_visuals.php:574 -msgid "Custom logo" -msgstr "" - -#: ../../include/functions_config.php:475 -msgid "Custom logo login" -msgstr "" - -#: ../../include/functions_config.php:480 -#: ../../godmode/setup/setup_visuals.php:168 -msgid "Login background" -msgstr "" - -#: ../../include/functions_config.php:482 -#: ../../godmode/setup/setup_visuals.php:75 -msgid "Default interval for refresh on Visual Console" -msgstr "" - -#: ../../include/functions_config.php:484 -#: ../../godmode/setup/setup_visuals.php:528 -msgid "Default line thickness for the Visual Console" -msgstr "" - -#: ../../include/functions_config.php:486 -#: ../../include/functions_config.php:488 -#: ../../godmode/setup/setup_visuals.php:341 -msgid "Agent size text" -msgstr "" - -#: ../../include/functions_config.php:490 -#: ../../godmode/setup/setup_visuals.php:349 -msgid "Module size text" -msgstr "" - -#: ../../include/functions_config.php:492 -#: ../../include/functions_config.php:494 -#: ../../godmode/setup/setup_visuals.php:357 -msgid "Description size text" -msgstr "" - -#: ../../include/functions_config.php:496 -#: ../../godmode/setup/setup_visuals.php:361 -msgid "Item title size text" -msgstr "" - -#: ../../include/functions_config.php:498 -#: ../../godmode/setup/setup_visuals.php:274 -msgid "GIS Labels" -msgstr "" - -#: ../../include/functions_config.php:500 -msgid "Show units in values report" -msgstr "" - -#: ../../include/functions_config.php:502 -#: ../../godmode/setup/setup_visuals.php:286 -msgid "Default icon in GIS" -msgstr "" - -#: ../../include/functions_config.php:504 -#: ../../godmode/setup/setup_visuals.php:254 -msgid "Autohidden menu" -msgstr "" - -#: ../../include/functions_config.php:506 -msgid "Fixed graph" -msgstr "" - -#: ../../include/functions_config.php:508 -#: ../../godmode/setup/setup_visuals.php:238 -msgid "Fixed header" -msgstr "" - -#: ../../include/functions_config.php:510 -#: ../../godmode/setup/setup_visuals.php:246 -msgid "Fixed menu" -msgstr "" - -#: ../../include/functions_config.php:512 -msgid "Paginate module" -msgstr "" - -#: ../../include/functions_config.php:514 -#: ../../godmode/setup/setup_visuals.php:625 -msgid "Custom graphviz directory" -msgstr "" - -#: ../../include/functions_config.php:516 -#: ../../godmode/setup/setup_visuals.php:632 -msgid "Networkmap max width" -msgstr "" - -#: ../../include/functions_config.php:518 -#: ../../godmode/setup/setup_visuals.php:469 -msgid "Shortened module graph data" -msgstr "" - -#: ../../include/functions_config.php:520 -#: ../../godmode/setup/setup_visuals.php:641 -msgid "Show the group name instead the group icon." -msgstr "" - -#: ../../include/functions_config.php:522 -#: ../../godmode/setup/setup_visuals.php:449 -msgid "Default line thickness for the Custom Graph." -msgstr "" - -#: ../../include/functions_config.php:524 -msgid "Default type of module charts." -msgstr "" - -#: ../../include/functions_config.php:526 -msgid "Default type of interface charts." -msgstr "" - -#: ../../include/functions_config.php:528 -msgid "Default show only average or min and max" -msgstr "" - -#: ../../include/functions_config.php:530 -#: ../../godmode/setup/setup_visuals.php:85 -msgid "Display data of proc modules in other format" -msgstr "" - -#: ../../include/functions_config.php:532 -#: ../../godmode/setup/setup_visuals.php:95 -msgid "Display text proc modules have state is ok" -msgstr "" - -#: ../../include/functions_config.php:534 -#: ../../godmode/setup/setup_visuals.php:99 -msgid "Display text when proc modules have state critical" -msgstr "" - -#: ../../include/functions_config.php:537 -msgid "Display lateral menus with left click" -msgstr "" - -#: ../../include/functions_config.php:541 -#: ../../godmode/setup/setup_visuals.php:117 -msgid "Service label font size" -msgstr "" - -#: ../../include/functions_config.php:543 -msgid "Service item padding size" -msgstr "" - -#: ../../include/functions_config.php:546 -msgid "Default percentil" -msgstr "" - -#: ../../include/functions_config.php:548 -#: ../../godmode/setup/setup_visuals.php:126 -msgid "Classic menu mode" -msgstr "" - -#: ../../include/functions_config.php:566 -msgid "Add the custom post process" -msgstr "" - -#: ../../include/functions_config.php:573 -msgid "Delete the custom post process" -msgstr "" - -#: ../../include/functions_config.php:618 -#: ../../godmode/setup/setup_visuals.php:723 -msgid "Delete interval" -msgstr "" - -#: ../../include/functions_config.php:622 -msgid "Custom report info" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_config.php:630 -#: ../../godmode/setup/setup_visuals.php:567 -msgid "Font family" -msgstr "" - -#: ../../include/functions_config.php:636 -#: ../../godmode/setup/setup_visuals.php:594 -msgid "Header" -msgstr "" - -#: ../../include/functions_config.php:639 -#: ../../godmode/setup/setup_visuals.php:599 -msgid "First page" -msgstr "" - -#: ../../include/functions_config.php:642 -#: ../../godmode/setup/setup_visuals.php:607 -msgid "Footer" -msgstr "" - -#: ../../include/functions_config.php:647 -#: ../../godmode/setup/setup_netflow.php:41 -msgid "Data storage path" -msgstr "" - -#: ../../include/functions_config.php:649 -#: ../../godmode/setup/setup_netflow.php:45 -msgid "Daemon interval" -msgstr "" - -#: ../../include/functions_config.php:651 -#: ../../godmode/setup/setup_netflow.php:49 -msgid "Daemon binary path" -msgstr "" - -#: ../../include/functions_config.php:653 -#: ../../godmode/setup/setup_netflow.php:52 -msgid "Nfdump binary path" -msgstr "" - -#: ../../include/functions_config.php:655 -#: ../../godmode/setup/setup_netflow.php:55 -msgid "Nfexpire binary path" -msgstr "" - -#: ../../include/functions_config.php:657 -#: ../../godmode/setup/setup_netflow.php:58 -msgid "Maximum chart resolution" -msgstr "" - -#: ../../include/functions_config.php:659 -#: ../../godmode/setup/setup_netflow.php:61 -msgid "Disable custom live view filters" -msgstr "" - -#: ../../include/functions_config.php:661 -#: ../../include/functions_config.php:667 -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Netflow max lifetime" -msgstr "" - -#: ../../include/functions_config.php:663 -#: ../../godmode/setup/setup_netflow.php:68 -msgid "Name resolution for IP address" -msgstr "" - -#: ../../include/functions_config.php:669 -msgid "Log max lifetime" -msgstr "" - -#: ../../include/functions_config.php:673 -msgid "Enable history database" -msgstr "" - -#: ../../include/functions_config.php:675 -msgid "Enable history event" -msgstr "" - -#: ../../include/functions_config.php:677 -msgid "Host" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_config.php:683 -msgid "Database user" -msgstr "" - -#: ../../include/functions_config.php:685 -msgid "Database password" -msgstr "" - -#: ../../include/functions_config.php:687 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Days" -msgstr "" - -#: ../../include/functions_config.php:689 -msgid "Event Days" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_config.php:693 -msgid "Delay" -msgstr "" - -#: ../../include/functions_config.php:697 -#: ../../godmode/setup/setup_ehorus.php:54 -msgid "Enable eHorus" -msgstr "" - -#: ../../include/functions_config.php:699 -msgid "eHorus user" -msgstr "" - -#: ../../include/functions_config.php:701 -msgid "eHorus password" -msgstr "" - -#: ../../include/functions_config.php:703 -msgid "eHorus API hostname" -msgstr "" - -#: ../../include/functions_config.php:705 -msgid "eHorus API port" -msgstr "" - -#: ../../include/functions_config.php:707 -msgid "eHorus request timeout" -msgstr "" - -#: ../../include/functions_config.php:709 -msgid "eHorus id custom field" -msgstr "" - -#: ../../include/functions_config.php:721 -#, php-format -msgid "Failed updated: the next values cannot update: %s" -msgstr "" - -#: ../../include/functions_config.php:1696 -msgid "" -"Click here to start the registration " -"process" -msgstr "" - -#: ../../include/functions_config.php:1697 -msgid "This instance is not registered in the Update manager" -msgstr "" - -#: ../../include/functions_config.php:1704 -msgid "" -"Click here to start the newsletter " -"subscription process" -msgstr "" - -#: ../../include/functions_config.php:1705 -msgid "Not subscribed to the newsletter" -msgstr "" - -#: ../../include/functions_config.php:1716 -msgid "Default password for \"Admin\" user has not been changed." -msgstr "" - -#: ../../include/functions_config.php:1717 -msgid "" -"Please change the default password because is a common vulnerability " -"reported." -msgstr "" - -#: ../../include/functions_config.php:1723 -msgid "You can not get updates until you renew the license." -msgstr "" - -#: ../../include/functions_config.php:1724 -msgid "This license has expired." -msgstr "" - -#: ../../include/functions_config.php:1729 -msgid "" -"Please check that the web server has write rights on the {HOMEDIR}/" -"attachment directory" -msgstr "" - -#: ../../include/functions_config.php:1742 -msgid "Remote configuration directory is not readble for the console" -msgstr "" - -#: ../../include/functions_config.php:1748 -#: ../../include/functions_config.php:1755 -msgid "Remote configuration directory is not writtable for the console" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_config.php:1766 -msgid "files" -msgstr "" - -#: ../../include/functions_config.php:1767 -msgid "Too much files in your tempora/attachment directory" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_config.php:1785 -msgid "Database maintance problem" -msgstr "" - -#: ../../include/functions_config.php:1791 -msgid "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" -msgstr "" - -#: ../../include/functions_config.php:1792 -msgid "Default font doesnt exist" -msgstr "" - -#: ../../include/functions_config.php:1797 -msgid "You need to restart server after altering this configuration setting." -msgstr "" - -#: ../../include/functions_config.php:1798 -msgid "" -"Event storm protection is activated. No events will be generated during this " -"mode." -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_config.php:1806 -msgid "Developer mode is enabled" -msgstr "" - -#: ../../include/functions_config.php:1815 -msgid "Error first setup Open update" -msgstr "" - -#: ../../include/functions_config.php:1821 -msgid "" -"There is a new update available. Please go to Administration:Setup:Update Manager for more details." -msgstr "" - -#: ../../include/functions_config.php:1822 -msgid "New update of Pandora Console" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions_config.php:1837 -msgid "PHP safe mode is enabled. Some features may not properly work." -msgstr "" - -#: ../../include/functions_config.php:1842 -#, php-format -msgid "Recommended value is %s" -msgstr "" - -#: ../../include/functions_config.php:1842 -#: ../../include/functions_config.php:1848 -msgid "Unlimited" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/functions_config.php:1848 -#: ../../include/functions_config.php:1856 -#: ../../include/functions_config.php:1864 -#, php-format -msgid "Recommended value is: %s" -msgstr "" - -#: ../../include/functions_config.php:1856 -#: ../../include/functions_config.php:1864 -#, php-format -msgid "%s or greater" -msgstr "" - -#: ../../include/functions_config.php:1864 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator" -msgstr "" - -#: ../../include/functions_config.php:1870 -msgid "" -"Variable disable_functions containts functions system() or exec(), in PHP " -"configuration file (php.ini)" -msgstr "" - -#: ../../include/functions_config.php:1871 -msgid "Problems with disable functions in PHP.INI" -msgstr "" - -#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 -#: ../../include/functions_gis.php:36 -msgid "Hierarchy of agents" -msgstr "" - -#: ../../include/functions.php:215 -msgid "." -msgstr "" - -#: ../../include/functions.php:217 -msgid "," -msgstr "" - -#: ../../include/functions.php:439 ../../include/functions.php:573 -msgid "s" -msgstr "" - -#: ../../include/functions.php:440 ../../include/functions.php:574 -msgid "d" -msgstr "" - -#: ../../include/functions.php:441 ../../include/functions.php:575 -msgid "M" -msgstr "" - -#: ../../include/functions.php:442 ../../include/functions.php:576 -msgid "Y" -msgstr "" - -#: ../../include/functions.php:443 ../../include/functions.php:577 -msgid "m" -msgstr "" - -#: ../../include/functions.php:444 ../../include/functions.php:578 -msgid "h" -msgstr "" - -#: ../../include/functions.php:445 ../../include/functions.php:579 -msgid "N" -msgstr "" - -#: ../../include/functions.php:1033 -msgid "Monitor Unknown" -msgstr "" - -#: ../../include/functions.php:1040 -msgid "Agent created" -msgstr "" - -#: ../../include/functions.php:2015 -msgid "custom" -msgstr "" - -#: ../../include/functions.php:2020 ../../include/functions.php:2021 -#, php-format -msgid "%s minutes" -msgstr "" - -#: ../../include/functions.php:2023 ../../include/functions.php:2024 -#, php-format -msgid "%s hours" -msgstr "" - -#: ../../include/functions.php:2029 ../../include/functions.php:2030 -#, php-format -msgid "%s months" -msgstr "" - -#: ../../include/functions.php:2032 ../../include/functions.php:2033 -#, php-format -msgid "%s years" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions.php:2036 -msgid "Default values will be used" -msgstr "" - -#: ../../include/functions.php:2196 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ../../include/functions.php:2199 -msgid "No file was uploaded" -msgstr "" - -#: ../../include/functions.php:2202 -msgid "Missing a temporary folder" -msgstr "" - -#: ../../include/functions.php:2205 -msgid "Failed to write file to disk" -msgstr "" - -#: ../../include/functions.php:2208 -msgid "File upload stopped by extension" -msgstr "" - -#: ../../include/functions.php:2212 -msgid "Unknown upload error" -msgstr "" - -#: ../../include/functions.php:2297 -msgid "No data found to export" -msgstr "" - -#: ../../include/functions.php:2315 -msgid "Source ID" -msgstr "" - -#: ../../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 "" - -#: ../../include/functions.php:2585 -msgid "15 seconds" -msgstr "" - -#: ../../include/functions.php:2590 -msgid "15 minutes" -msgstr "" - -#: ../../include/functions_networkmap.php:1638 -#: ../../include/functions_networkmap.php:1724 -msgid "Radial dynamic" -msgstr "" - -#: ../../include/functions_networkmap.php:1694 -msgid "Create a new topology map" -msgstr "" - -#: ../../include/functions_networkmap.php:1695 -msgid "Create a new group map" -msgstr "" - -#: ../../include/functions_networkmap.php:1696 -msgid "Create a new dynamic map" -msgstr "" - -#: ../../include/functions_networkmap.php:1698 -msgid "Create a new radial dynamic map" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 -msgid "SNMP Trap generator" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -msgid "Empty parameters" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:56 -msgid "Successfully generated" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:57 -#, php-format -msgid "Could not be generated: %s" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 -msgid "SNMP Type" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:89 -msgid "Generate trap" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:78 -msgid "Update alert" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:82 -msgid "Create alert" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:86 -msgid "Alert overview" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:243 -msgid "There was a problem creating the alert" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:314 -msgid "There was a problem updating the alert" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:536 -msgid "There was a problem duplicating the alert" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:540 -msgid "Successfully Duplicate" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:556 -msgid "There was a problem deleting the alert" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:585 -#, php-format -msgid "Successfully deleted alerts (%s / %s)" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:589 -#, php-format -msgid "Unsuccessfully deleted alerts (%s / %s)" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:643 -msgid "Custom Value/OID" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:669 -msgid "Single value" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/snmpconsole/snmp_alert.php:911 -#: ../../godmode/alerts/configure_alert_template.php:553 -msgid "Min. number of alerts" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:914 -#: ../../godmode/alerts/configure_alert_template.php:560 -msgid "Max. number of alerts" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/snmpconsole/snmp_alert.php:933 -msgid "Other value" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:946 -#: ../../godmode/snmpconsole/snmp_alert.php:1151 -msgid "Alert action" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1019 -msgid "Alert SNMP control filter" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1112 -msgid "There are no SNMP alerts" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1160 -msgid "Custom Value/Enterprise String" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1165 -msgid "TF." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1256 -msgid "ID Alert SNMP" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1487 -msgid "Add action " -msgstr "" - -#: ../../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 "" - -#: ../../godmode/snmpconsole/snmp_filters.php:42 -msgid "Filter overview" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_filters.php:51 -msgid "There was a problem updating the filter" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_filters.php:63 -msgid "There was a problem creating the filter" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_filters.php:73 -msgid "There was a problem deleting the filter" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/configure_alert_special_days.php:55 -msgid "Configure special day" -msgstr "" - -#: ../../godmode/alerts/configure_alert_special_days.php:79 -#: ../../godmode/alerts/alert_special_days.php:235 -msgid "Same day of the week" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:44 ../../godmode/menu.php:164 -#: ../../godmode/menu.php:165 -msgid "Special days list" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:86 -msgid "Skipped dates: " -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:106 -msgid "Success to upload iCalendar" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:106 -msgid "Fail to upload iCalendar" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:232 -msgid "iCalendar(.ics) file" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:254 -msgid "Overwrite" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:255 -msgid "Check this box, if you want to overwrite existing same days." -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:273 -msgid "Display range: " -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:347 -msgid "January" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:350 -msgid "February" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:353 -msgid "March" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:356 -msgid "April" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:359 -msgid "May" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:362 -msgid "June" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:365 -msgid "July" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:368 -msgid "August" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:371 -msgid "September" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:374 -msgid "October" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:377 -msgid "November" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:380 -msgid "December" -msgstr "" - -#: ../../godmode/alerts/alert_special_days.php:422 -msgid "Same as " -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_view.php:170 -#: ../../godmode/alerts/configure_alert_template.php:850 -msgid "The alert would fire when the value is below " -msgstr "" - -#: ../../godmode/alerts/alert_view.php:174 -#: ../../godmode/alerts/configure_alert_template.php:851 -msgid "The alert would fire when the value is above " -msgstr "" - -#: ../../godmode/alerts/alert_view.php:179 -#: ../../godmode/alerts/configure_alert_template.php:854 -msgid "The alert would fire when the module value changes" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_view.php:298 -#: ../../godmode/alerts/configure_alert_template.php:536 -msgid "Use special days list" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:310 -msgid "Number of alerts" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:325 -msgid "Firing conditions" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:348 -#: ../../godmode/alerts/alert_view.php:370 -msgid "Every time that the alert is fired" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_view.php:414 -msgid "" -"Select the desired action and mode to see the Firing/Recovery fields for " -"this action" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:417 -msgid "Select the action" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:420 -#: ../../godmode/alerts/configure_alert_action.php:148 -msgid "Firing" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:421 -msgid "Recovering" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_view.php:438 -#: ../../godmode/alerts/alert_view.php:532 -#: ../../godmode/alerts/configure_alert_template.php:670 -msgid "Firing fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:439 -msgid "" -"Fields passed to the command executed by this action when the alert is fired" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:442 -#: ../../godmode/alerts/alert_view.php:531 -msgid "Fields configured on the command associated to the action" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:443 -msgid "Template fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:444 -msgid "Triggering fields configured in template" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:445 -msgid "Action fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:446 -msgid "Triggering fields configured in action" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:448 -msgid "Executed on firing" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:449 -#: ../../godmode/alerts/alert_view.php:532 -msgid "Fields used on execution when the alert is fired" -msgstr "" - -#: ../../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 "Field %s" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_view.php:516 -msgid "The alert recovering is disabled on this template." -msgstr "" - -#: ../../godmode/alerts/alert_view.php:529 -msgid "Recovering fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:529 -msgid "" -"Fields passed to the command executed by this action when the alert is " -"recovered" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:533 -msgid "Template recovery fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:533 -msgid "Recovery fields configured in alert template" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:534 -msgid "Action recovery fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:534 -msgid "Recovery fields configured in alert action" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:535 -msgid "Executed on recovery" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:535 -msgid "Fields used on execution when the alert is recovered" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_actions.php:141 -msgid "Could not be copied" -msgstr "" - -#: ../../godmode/alerts/alert_actions.php:398 -msgid "No alert actions configured" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_commands.php:249 -msgid "Alert commands" -msgstr "" - -#: ../../godmode/alerts/alert_commands.php:372 -msgid "No alert commands configured" -msgstr "" - -#: ../../godmode/alerts/configure_alert_command.php:42 -msgid "Configure alert command" -msgstr "" - -#: ../../godmode/alerts/configure_alert_command.php:127 -msgid "Update Command" -msgstr "" - -#: ../../godmode/alerts/configure_alert_command.php:130 -#: ../../godmode/alerts/configure_alert_action.php:136 -msgid "Create Command" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/configure_alert_command.php:160 -#, php-format -msgid "Field %s description" -msgstr "" - -#: ../../godmode/alerts/configure_alert_command.php:175 -#, php-format -msgid "Field %s values" -msgstr "" - -#: ../../godmode/alerts/configure_alert_action.php:57 -#: ../../godmode/alerts/configure_alert_action.php:66 -msgid "Configure alert action" -msgstr "" - -#: ../../godmode/alerts/configure_alert_action.php:98 -msgid "Update Action" -msgstr "" - -#: ../../godmode/alerts/configure_alert_action.php:101 -#: ../../godmode/alerts/alert_list.builder.php:109 -msgid "Create Action" -msgstr "" - -#: ../../godmode/alerts/configure_alert_action.php:149 -msgid "Recovery" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:58 -msgid "Template name" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:124 -msgid "Field content" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:133 -msgid "Enabled / Disabled" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/alert_list.list.php:412 -#: ../../godmode/massive/massive_copy_modules.php:133 -msgid "Operations" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:526 -msgid "On" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:530 -msgid "Until" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:552 -msgid "Delete action" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_list.list.php:871 -msgid "Update action" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:718 -msgid "View alert advanced details" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:729 -msgid "No alerts defined" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:802 -msgid "Set off standby" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:811 -msgid "Set standby" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:118 -#: ../../godmode/modules/manage_network_components.php:160 -#, php-format -msgid "Successfully created from %s" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:168 -#: ../../godmode/alerts/configure_alert_template.php:173 -msgid "Conditions" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:188 -#: ../../godmode/alerts/configure_alert_template.php:193 -msgid "Advanced fields" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:499 -#: ../../godmode/alerts/alert_list.builder.php:131 -msgid "Create Template" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:520 -msgid "Days of week" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:539 -#: ../../godmode/reporting/reporting_builder.item_editor.php:847 -msgid "Time from" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:543 -#: ../../godmode/reporting/reporting_builder.item_editor.php:856 -msgid "Time to" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:557 -msgid "Reset counter for non-sustained alerts" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/configure_alert_template.php:564 -#: ../../godmode/alerts/alert_list.builder.php:94 -msgid "Default action" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/alerts/configure_alert_template.php:590 -msgid "Condition type" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:597 -msgid "Trigger when matches the value" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:609 -msgid "The regular expression is valid" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:614 -msgid "The regular expression is not valid" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:662 -msgid "Alert recovery" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:671 -msgid "Recovery fields" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:772 -#: ../../godmode/modules/manage_network_components_form_common.php:58 -msgid "Wizard level" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:774 -msgid "No wizard" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:821 -#: ../../godmode/alerts/configure_alert_template.php:825 -msgid "Next" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:845 -#, php-format -msgid "The alert would fire when the value doesn\\'t match %s" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:849 -msgid "" -"The alert would fire when the value is not between and " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:857 -msgid "" -"The alert template cannot have the same value for min and max thresholds." -msgstr "" - -#: ../../godmode/alerts/alert_list.php:80 -msgid "Already added" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:264 -#: ../../godmode/massive/massive_standby_alerts.php:96 -msgid "Successfully set standby" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:264 -#: ../../godmode/massive/massive_standby_alerts.php:96 -msgid "Could not be set standby" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:281 -#: ../../godmode/massive/massive_standby_alerts.php:78 -msgid "Successfully set off standby" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:281 -#: ../../godmode/massive/massive_standby_alerts.php:78 -msgid "Could not be set off standby" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:317 -msgid "Builder alert" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/users/configure_profile.php:268 -msgid "Manage alerts" -msgstr "" - -#: ../../godmode/alerts/alert_list.builder.php:78 -msgid "Latest value" -msgstr "" - -#: ../../godmode/alerts/alert_list.builder.php:144 -msgid "Add alert" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:62 -msgid "Everyday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Every" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:83 -msgid "and" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:359 -msgid "No alert templates defined" -msgstr "" - -#: ../../godmode/menu.php:29 -msgid "Manage agents" -msgstr "" - -#: ../../godmode/menu.php:39 -msgid "Component groups" -msgstr "" - -#: ../../godmode/menu.php:42 -msgid "Module categories" -msgstr "" - -#: ../../godmode/menu.php:46 -msgid "Module types" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/menu.php:62 -msgid "Resources" -msgstr "" - -#: ../../godmode/menu.php:70 -msgid "Manage agents groups" -msgstr "" - -#: ../../godmode/menu.php:76 -msgid "Module tags" -msgstr "" - -#: ../../godmode/menu.php:83 ../../godmode/users/profile_list.php:312 -msgid "Users management" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/menu.php:91 ../../godmode/users/profile_list.php:302 -msgid "Profiles" -msgstr "" - -#: ../../godmode/menu.php:98 -msgid "Network components" -msgstr "" - -#: ../../godmode/menu.php:101 ../../godmode/agentes/configurar_agente.php:322 -msgid "Module templates" -msgstr "" - -#: ../../godmode/menu.php:111 -msgid "Bulk operations" -msgstr "" - -#: ../../godmode/menu.php:116 ../../godmode/massive/massive_operations.php:165 -msgid "Agents operations" -msgstr "" - -#: ../../godmode/menu.php:117 ../../godmode/massive/massive_operations.php:170 -msgid "Modules operations" -msgstr "" - -#: ../../godmode/menu.php:118 ../../godmode/massive/massive_operations.php:175 -msgid "Plugins operations" -msgstr "" - -#: ../../godmode/menu.php:120 ../../godmode/massive/massive_operations.php:160 -msgid "Users operations" -msgstr "" - -#: ../../godmode/menu.php:122 ../../godmode/massive/massive_operations.php:155 -msgid "Alerts operations" -msgstr "" - -#: ../../godmode/menu.php:145 -msgid "List of Alerts" -msgstr "" - -#: ../../godmode/menu.php:151 ../../godmode/agentes/configurar_agente.php:542 -msgid "Templates" -msgstr "" - -#: ../../godmode/menu.php:160 -msgid "Commands" -msgstr "" - -#: ../../godmode/menu.php:180 -msgid "Event filters" -msgstr "" - -#: ../../godmode/menu.php:185 -msgid "Custom events" -msgstr "" - -#: ../../godmode/menu.php:187 ../../godmode/events/events.php:48 -msgid "Event responses" -msgstr "" - -#: ../../godmode/menu.php:207 -msgid "Manage servers" -msgstr "" - -#: ../../godmode/menu.php:215 -msgid "Plugins" -msgstr "" - -#: ../../godmode/menu.php:218 -#: ../../godmode/servers/manage_recontask_form.php:274 -msgid "Recon script" -msgstr "" - -#: ../../godmode/menu.php:244 -msgid "General Setup" -msgstr "" - -#: ../../godmode/menu.php:253 ../../godmode/setup/setup.php:82 -#: ../../godmode/setup/setup.php:116 -msgid "Authentication" -msgstr "" - -#: ../../godmode/menu.php:256 ../../godmode/setup/setup.php:86 -#: ../../godmode/setup/setup.php:120 -msgid "Performance" -msgstr "" - -#: ../../godmode/menu.php:259 ../../godmode/setup/setup.php:90 -#: ../../godmode/setup/setup.php:125 -msgid "Visual styles" -msgstr "" - -#: ../../godmode/menu.php:273 ../../godmode/setup/gis.php:32 -msgid "Map conections GIS" -msgstr "" - -#: ../../godmode/menu.php:277 ../../godmode/setup/os.php:143 -msgid "Edit OS" -msgstr "" - -#: ../../godmode/menu.php:279 -msgid "License" -msgstr "" - -#: ../../godmode/menu.php:288 -msgid "Admin tools" -msgstr "" - -#: ../../godmode/menu.php:296 -msgid "System audit log" -msgstr "" - -#: ../../godmode/menu.php:300 -msgid "Diagnostic info" -msgstr "" - -#: ../../godmode/menu.php:302 -msgid "Site news" -msgstr "" - -#: ../../godmode/menu.php:304 ../../godmode/setup/file_manager.php:30 -msgid "File manager" -msgstr "" - -#: ../../godmode/menu.php:309 -msgid "DB maintenance" -msgstr "" - -#: ../../godmode/menu.php:315 -msgid "DB information" -msgstr "" - -#: ../../godmode/menu.php:316 ../../godmode/db/db_purge.php:38 -msgid "Database purge" -msgstr "" - -#: ../../godmode/menu.php:318 -msgid "Database audit" -msgstr "" - -#: ../../godmode/menu.php:319 -msgid "Database event" -msgstr "" - -#: ../../godmode/menu.php:401 -msgid "Extension manager view" -msgstr "" - -#: ../../godmode/menu.php:405 -msgid "Extension manager" -msgstr "" - -#: ../../godmode/menu.php:433 -msgid "Update manager" -msgstr "" - -#: ../../godmode/menu.php:439 -msgid "Update Manager offline" -msgstr "" - -#: ../../godmode/menu.php:442 -msgid "Update Manager online" -msgstr "" - -#: ../../godmode/menu.php:444 -msgid "Update Manager options" -msgstr "" - -#: ../../godmode/extensions.php:27 -msgid "Extensions" -msgstr "" - -#: ../../godmode/extensions.php:27 -msgid "Defined extensions" -msgstr "" - -#: ../../godmode/extensions.php:32 -msgid "There are no extensions defined" -msgstr "" - -#: ../../godmode/extensions.php:145 -msgid "Enterprise" -msgstr "" - -#: ../../godmode/extensions.php:146 -msgid "Godmode Function" -msgstr "" - -#: ../../godmode/extensions.php:147 -msgid "Godmode Menu" -msgstr "" - -#: ../../godmode/extensions.php:148 -msgid "Operation Menu" -msgstr "" - -#: ../../godmode/extensions.php:149 -msgid "Operation Function" -msgstr "" - -#: ../../godmode/extensions.php:150 -msgid "Login Function" -msgstr "" - -#: ../../godmode/extensions.php:151 -msgid "Agent operation tab" -msgstr "" - -#: ../../godmode/extensions.php:152 -msgid "Agent godmode tab" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/performance.php:64 -msgid "" -"Configure a purge period more frequent than a compact data period has no " -"sense" -msgstr "" - -#: ../../godmode/setup/performance.php:73 -msgid "Max. days before delete autodisabled agents" -msgstr "" - -#: ../../godmode/setup/performance.php:76 -msgid "This number is days to keep past special days. 0 means never remove." -msgstr "" - -#: ../../godmode/setup/performance.php:79 -msgid "Number of macro fields in alerts and templates between 1 and 15" -msgstr "" - -#: ../../godmode/setup/performance.php:96 -msgid "Item limit for realtime reports" -msgstr "" - -#: ../../godmode/setup/performance.php:96 -msgid "" -"Set a value too high cause a slowdown on console and a performance penalty " -"in the system." -msgstr "" - -#: ../../godmode/setup/performance.php:100 -msgid "Data will be compacted in intervals of the specified length." -msgstr "" - -#: ../../godmode/setup/performance.php:107 -msgid "Last day" -msgstr "" - -#: ../../godmode/setup/performance.php:109 -msgid "10 days" -msgstr "" - -#: ../../godmode/setup/performance.php:111 -msgid "2 weeks" -msgstr "" - -#: ../../godmode/setup/performance.php:121 -msgid "" -"If realtime statistics are disabled, statistics interval resfresh will be " -"set here." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/performance.php:135 -msgid "Big Operation Step to purge old data" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/setup/performance.php:143 -msgid "Database maintenance options" -msgstr "" - -#: ../../godmode/setup/news.php:28 -msgid "Site news management" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/news.php:130 ../../godmode/setup/links.php:86 -msgid "Name error" -msgstr "" - -#: ../../godmode/setup/news.php:167 -msgid "Modal screen" -msgstr "" - -#: ../../godmode/setup/news.php:170 -msgid "Expire" -msgstr "" - -#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 -msgid "Expiration" -msgstr "" - -#: ../../godmode/setup/news.php:215 -msgid "There are no defined news" -msgstr "" - -#: ../../godmode/setup/news.php:242 -msgid "Modal" -msgstr "" - -#: ../../godmode/setup/news.php:245 -msgid "Board" -msgstr "" - -#: ../../godmode/setup/news.php:256 -msgid "Expired" -msgstr "" - -#: ../../godmode/setup/snmp_wizard.php:30 -#: ../../godmode/agentes/configurar_agente.php:392 -#: ../../godmode/agentes/configurar_agente.php:558 -msgid "SNMP Wizard" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/snmp_wizard.php:43 -msgid "OP" -msgstr "" - -#: ../../godmode/setup/snmp_wizard.php:166 -msgid "Unsucessful update the snmp translation" -msgstr "" - -#: ../../godmode/setup/snmp_wizard.php:173 -msgid "Unsucessful update the snmp translation." -msgstr "" - -#: ../../godmode/setup/snmp_wizard.php:221 -msgid "Unsucessful delete the snmp translation" -msgstr "" - -#: ../../godmode/setup/snmp_wizard.php:228 -msgid "Unsucessful delete the snmp translation." -msgstr "" - -#: ../../godmode/setup/snmp_wizard.php:289 -msgid "Unsucessful save the snmp translation" -msgstr "" - -#: ../../godmode/setup/snmp_wizard.php:298 -msgid "Unsucessful save the snmp translation." -msgstr "" - -#: ../../godmode/setup/gis.php:62 -msgid "Map connection name" -msgstr "" - -#: ../../godmode/setup/gis.php:83 -msgid "Do you wan delete this connection?" -msgstr "" - -#: ../../godmode/setup/os.php:73 -msgid "Fail creating OS" -msgstr "" - -#: ../../godmode/setup/os.php:80 -msgid "Success creating OS" -msgstr "" - -#: ../../godmode/setup/os.php:100 -msgid "Success updatng OS" -msgstr "" - -#: ../../godmode/setup/os.php:100 -msgid "Error updating OS" -msgstr "" - -#: ../../godmode/setup/os.php:119 -msgid "There are agents with this OS." -msgstr "" - -#: ../../godmode/setup/os.php:124 -msgid "Success deleting" -msgstr "" - -#: ../../godmode/setup/os.php:124 -msgid "Error deleting" -msgstr "" - -#: ../../godmode/setup/os.php:133 -msgid "List OS" -msgstr "" - -#: ../../godmode/setup/os.php:137 -msgid "Builder OS" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:85 -msgid "API Hostname" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "Hostname of the eHorus API" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "Without protocol and port" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "e.g., portal.ehorus.com" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:92 -msgid "API Port" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:94 -msgid "e.g., 18080" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:99 -msgid "Request timeout" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:101 -msgid "" -"Time in seconds to set the maximum time of the requests to the eHorus API" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:101 -msgid "0 to disable" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:106 -msgid "Test" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:107 -msgid "Start" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:122 -msgid "Remote Management System" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:130 -msgid "Custom field eHorusID created" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:130 -msgid "Error creating custom field" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:133 -msgid "eHorus has his own agent identifiers" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:134 -msgid "To store them, it will be necessary to use an agent custom field" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:135 -msgid "" -"Possibly the eHorus id will have to be filled in by hand for every agent" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:140 -msgid "The custom field does not exists already" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:154 -msgid "eHorus API" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:186 -msgid "Connection timeout" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:187 -msgid "Empty user or password" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:188 -msgid "User not found" -msgstr "" - -#: ../../godmode/setup/setup_ehorus.php:189 -msgid "Invalid password" -msgstr "" - -#: ../../godmode/setup/license.php:27 -msgid "License management" -msgstr "" - -#: ../../godmode/setup/license.php:37 -msgid "License updated" -msgstr "" - -#: ../../godmode/setup/license.php:64 -msgid "Customer key" -msgstr "" - -#: ../../godmode/setup/license.php:67 -msgid "Expires" -msgstr "" - -#: ../../godmode/setup/license.php:70 -msgid "Platform Limit" -msgstr "" - -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 -msgid "agents" -msgstr "" - -#: ../../godmode/setup/license.php:73 -msgid "Current Platform Count" -msgstr "" - -#: ../../godmode/setup/license.php:76 -msgid "Current Platform Count (enabled: items)" -msgstr "" - -#: ../../godmode/setup/license.php:79 -msgid "Current Platform Count (disabled: items)" -msgstr "" - -#: ../../godmode/setup/license.php:82 -msgid "License Mode" -msgstr "" - -#: ../../godmode/setup/license.php:85 -msgid "NMS" -msgstr "" - -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -msgid "enabled" -msgstr "" - -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -msgid "disabled" -msgstr "" - -#: ../../godmode/setup/license.php:88 -msgid "Satellite" -msgstr "" - -#: ../../godmode/setup/license.php:91 -msgid "Licensed to" -msgstr "" - -#: ../../godmode/setup/license.php:100 ../../godmode/setup/license.php:104 -msgid "Request new license" -msgstr "" - -#: ../../godmode/setup/license.php:108 -msgid "To get your Pandora FMS Enterprise License:" -msgstr "" - -#: ../../godmode/setup/license.php:111 -#, php-format -msgid "Go to %s" -msgstr "" - -#: ../../godmode/setup/license.php:114 -msgid "Enter the auth key and the following request key:" -msgstr "" - -#: ../../godmode/setup/license.php:120 -msgid "Enter your name (or a company name) and a contact email address." -msgstr "" - -#: ../../godmode/setup/license.php:123 -msgid "Click on Generate." -msgstr "" - -#: ../../godmode/setup/license.php:126 -msgid "" -"Click here, enter " -"the generated license key and click on Validate." -msgstr "" - -#: ../../godmode/setup/links.php:27 -msgid "Link management" -msgstr "" - -#: ../../godmode/setup/links.php:39 -msgid "There was a problem creating link" -msgstr "" - -#: ../../godmode/setup/links.php:56 -msgid "There was a problem modifying link" -msgstr "" - -#: ../../godmode/setup/links.php:67 -msgid "There was a problem deleting link" -msgstr "" - -#: ../../godmode/setup/links.php:106 ../../godmode/setup/links.php:136 -msgid "Link name" -msgstr "" - -#: ../../godmode/setup/links.php:109 -msgid "Link" -msgstr "" - -#: ../../godmode/setup/links.php:132 -msgid "There isn't links" -msgstr "" - -#: ../../godmode/setup/setup_general.php:58 -msgid "Directory where agent remote configuration is stored." -msgstr "" - -#: ../../godmode/setup/setup_general.php:67 -msgid "Database" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_general.php:78 -msgid "Use cert of SSL" -msgstr "" - -#: ../../godmode/setup/setup_general.php:83 -msgid "Path of SSL Cert." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_general.php:86 -msgid "Directory where temporary data is stored." -msgstr "" - -#: ../../godmode/setup/setup_general.php:99 -msgid "Please be careful if you put a password put https access." -msgstr "" - -#: ../../godmode/setup/setup_general.php:140 -msgid "Change timezone" -msgstr "" - -#: ../../godmode/setup/setup_general.php:148 -#: ../../godmode/setup/setup_general.php:153 -#: ../../godmode/setup/setup_general.php:158 -msgid "Play sound" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_general.php:183 -msgid "The string modules with several lines show as command output" -msgstr "" - -#: ../../godmode/setup/setup_general.php:187 -msgid "Directory where the server logs are stored." -msgstr "" - -#: ../../godmode/setup/setup_general.php:192 -msgid "Full mode" -msgstr "" - -#: ../../godmode/setup/setup_general.php:193 -msgid "On demand" -msgstr "" - -#: ../../godmode/setup/setup_general.php:194 -msgid "Expert" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_general.php:204 -msgid "The planned downtimes created in the past will affect the SLA reports" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_general.php:213 -msgid "Include agents manually disabled" -msgstr "" - -#: ../../godmode/setup/setup_general.php:217 -msgid "audit log directory" -msgstr "" - -#: ../../godmode/setup/setup_general.php:218 -msgid "Directory where audit log is stored." -msgstr "" - -#: ../../godmode/setup/setup_general.php:224 -msgid "General options" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_netflow.php:42 -msgid "Directory where netflow data will be stored." -msgstr "" - -#: ../../godmode/setup/setup_netflow.php:46 -msgid "Specifies the time interval in seconds to rotate netflow data files." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_netflow.php:62 -msgid "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." -msgstr "" - -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Sets the maximum lifetime for netflow data in days." -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:39 -msgid "Create new map connection" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:58 -msgid "Edit map connection" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Connection Name" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Descriptive name for the connection" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:153 -msgid "Group that owns the connection" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:156 -msgid "Number of zoom levels" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Default zoom level" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Zoom level used when the map is opened" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:163 -msgid "Basic configuration" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:168 -msgid "Open Street Maps" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:169 -msgid "Google Maps" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:170 -msgid "Static Image" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:172 -msgid "Please select the connection type" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:174 -msgid "Map connection type" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:210 -msgid "Tile Server URL" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:216 -msgid "Google Physical" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:217 -msgid "Google Hybrid" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:218 -msgid "Google Satelite" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:222 -msgid "Google Map Type" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:226 -msgid "Google Maps Key" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:235 -msgid "Image URL" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:239 -msgid "Corners of the area of the image" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:242 -msgid "Left" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:244 -msgid "Bottom" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:248 -msgid "Right" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:250 -msgid "Top" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:254 -msgid "Image Size" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/setup/gis_step_2.php:280 -msgid "Load preview map" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Map Center" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Position to center the map when the map is opened" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:290 -msgid "Default position for agents without GIS data" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:292 -msgid "Change in the map" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:292 -msgid "This selects what to change by clicking on the map" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:353 -#: ../../godmode/setup/gis_step_2.php:446 -msgid "Center" -msgstr "" - -#: ../../godmode/setup/gis_step_2.php:413 -msgid "Refresh preview map" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:76 -msgid "This interval will affect to Visual Console pages" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:80 -msgid "Paginated module view" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:104 -msgid "Click to display lateral menus" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:105 -msgid "" -"When enabled, the lateral menus are shown when left clicking them, instead " -"of hovering over them" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:121 -msgid "Space between items in Service maps" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:127 -msgid "Text menu options always visible, don't hide" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:138 -msgid "Behaviour configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:159 -msgid "Colors" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:160 -msgid "Faces" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:161 -msgid "Colors and text" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:169 -msgid "You can place your custom images into the folder images/backgrounds/" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:188 -msgid "Custom logo (header)" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:207 -msgid "Custom logo (login)" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:224 -msgid "Disable logo in graphs" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:259 -msgid "Style configuration" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_visuals.php:287 -msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:296 -msgid "GIS configuration" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_visuals.php:343 -#: ../../godmode/setup/setup_visuals.php:351 -msgid "Small:" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:345 -#: ../../godmode/setup/setup_visuals.php:353 -msgid "Normal:" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_visuals.php:367 -msgid "Show unit along with value in reports" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:368 -msgid "This enabling this, max, min and avg values will be shown with units." -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:376 -msgid "Font and Text configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:431 -msgid "Graph resolution (1-low, 5-high)" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:445 -msgid "" -"Number of decimals shown in reports. It must be a number between 0 and 5" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:470 -msgid "The data number of the module graphs will be rounded and shortened" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:480 -msgid "Type of module charts" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:489 -msgid "Type of interface charts" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:498 -msgid "Show only average" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:499 -msgid "Hide Max and Min values in graphs" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:506 -#: ../../godmode/reporting/visual_console_builder.wizard.php:218 -msgid "Percentile" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:507 -msgid "Show percentile 95 in graphs" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:512 -msgid "Charts configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:528 -msgid "" -"This interval will affect to the lines between elements on the Visual Console" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:533 -msgid "Show report info with description" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:535 -msgid "" -"Custom report description info. It will be applied to all reports and " -"templates by default." -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:543 -msgid "Custom report front page" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:545 -msgid "" -"Custom report front page. It will be applied to all reports and templates by " -"default." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_visuals.php:614 -msgid "Show QR Code icon in the header" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:626 -msgid "Custom directory where the graphviz binaries are stored." -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:639 -msgid "Show only the group name" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:652 -msgid "Example" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:665 -msgid "Comparation in rollover" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:667 -msgid "Timestamp in rollover" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:675 -msgid "Custom values post process" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:689 -msgid "Delete custom values" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:709 -msgid "Interval values" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:717 -msgid "Add new custom value to intervals" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:734 -msgid "Other configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:922 -#: ../../godmode/setup/setup_visuals.php:962 -msgid "Logo preview" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:1002 -msgid "Background preview" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:1046 -msgid "Gis icons preview" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:1101 -msgid "Status set preview" -msgstr "" - -#: ../../godmode/setup/os.list.php:75 -msgid "There are no defined operating systems" -msgstr "" - -#: ../../godmode/setup/os.list.php:81 -msgid "Create OS" -msgstr "" - -#: ../../godmode/setup/setup.php:145 -msgid "Correct update the setup options" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_auth.php:129 -msgid "" -"If this option is enabled, the users can use double authentication with " -"their accounts" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:141 -msgid "Session timeout (mins)" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/setup/setup_auth.php:177 -msgid "Local Pandora FMS" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:177 -msgid "ldap" -msgstr "" - -#: ../../godmode/setup/os.builder.php:34 -#: ../../godmode/reporting/visual_console_builder.data.php:102 -msgid "Name:" -msgstr "" - -#: ../../godmode/events/event_filter.php:167 -#: ../../godmode/netflow/nf_edit.php:162 -msgid "There are no defined filters" -msgstr "" - -#: ../../godmode/events/custom_events.php:131 -msgid "Show event fields" -msgstr "" - -#: ../../godmode/events/custom_events.php:133 -msgid "Load default event fields" -msgstr "" - -#: ../../godmode/events/custom_events.php:133 -msgid "Default event fields will be loaded. Do you want to continue?" -msgstr "" - -#: ../../godmode/events/custom_events.php:181 -msgid "Fields available" -msgstr "" - -#: ../../godmode/events/custom_events.php:185 -msgid "Add fields to select" -msgstr "" - -#: ../../godmode/events/custom_events.php:189 -msgid "Delete fields to select" -msgstr "" - -#: ../../godmode/events/custom_events.php:193 -msgid "Fields selected" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/events/event_edit_filter.php:203 -msgid "Update Filter" -msgstr "" - -#: ../../godmode/events/event_edit_filter.php:206 -msgid "Create Filter" -msgstr "" - -#: ../../godmode/events/event_edit_filter.php:219 -msgid "Save in group" -msgstr "" - -#: ../../godmode/events/event_edit_filter.php:220 -msgid "" -"This group will be use to restrict the visibility of this filter with ACLs" -msgstr "" - -#: ../../godmode/events/event_edit_filter.php:286 -msgid "Choose between the users who have validated an event. " -msgstr "" - -#: ../../godmode/events/event_responses.editor.php:63 -msgid "Edit event responses" -msgstr "" - -#: ../../godmode/events/event_responses.editor.php:93 -msgid "For Command type Modal Window mode is enforced" -msgstr "" - -#: ../../godmode/events/event_responses.editor.php:94 -msgid "Modal window" -msgstr "" - -#: ../../godmode/events/event_responses.editor.php:94 -msgid "New window" -msgstr "" - -#: ../../godmode/events/events.php:42 -#: ../../godmode/netflow/nf_edit_form.php:55 -msgid "Filter list" -msgstr "" - -#: ../../godmode/events/events.php:65 ../../godmode/events/events.php:80 -#: ../../godmode/reporting/reporting_builder.list_items.php:179 -msgid "Filters" -msgstr "" - -#: ../../godmode/events/event_responses.list.php:38 -msgid "No responses found" -msgstr "" - -#: ../../godmode/events/event_responses.list.php:76 -msgid "Create response" -msgstr "" - -#: ../../godmode/events/event_responses.php:52 -msgid "Response added succesfully" -msgstr "" - -#: ../../godmode/events/event_responses.php:55 -msgid "Response cannot be added" -msgstr "" - -#: ../../godmode/events/event_responses.php:81 -msgid "Response updated succesfully" -msgstr "" - -#: ../../godmode/events/event_responses.php:84 -msgid "Response cannot be updated" -msgstr "" - -#: ../../godmode/events/event_responses.php:93 -msgid "Response deleted succesfully" -msgstr "" - -#: ../../godmode/events/event_responses.php:96 -msgid "Response cannot be deleted" -msgstr "" - -#: ../../godmode/massive/massive_add_action_alerts.php:96 -msgid "No alerts selected" -msgstr "" - -#: ../../godmode/massive/massive_add_action_alerts.php:120 -msgid "No actions selected" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_add_action_alerts.php:157 -#: ../../godmode/massive/massive_delete_action_alerts.php:158 -msgid "Agents with templates" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_add_alerts.php:78 -#: ../../godmode/massive/massive_delete_alerts.php:78 -msgid "No alert selected" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:97 -msgid "No values changed" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:126 -msgid "Configuration files deleted successfully" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:127 -msgid "Configuration files cannot be deleted" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:185 -msgid "Agents updated successfully" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:186 -msgid "Agents cannot be updated" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:225 -#: ../../godmode/massive/massive_delete_agents.php:123 -msgid "Show agents" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:291 -#: ../../godmode/agentes/agent_manager.php:266 -msgid "Cascade protection" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_agents.php:356 -#: ../../godmode/agentes/agent_manager.php:327 -msgid "Module definition" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:358 -#: ../../godmode/agentes/agent_manager.php:329 -msgid "Learning mode" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:359 -#: ../../godmode/agentes/agent_manager.php:332 -msgid "Normal mode" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:365 -#: ../../godmode/agentes/agent_manager.php:343 -msgid "Active" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:371 -msgid "Delete available remote configurations" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:375 -#: ../../godmode/agentes/agent_manager.php:350 -#: ../../godmode/agentes/agent_manager.php:372 -msgid "Not available" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:401 -#: ../../godmode/agentes/agent_manager.php:381 -msgid "Agent icon" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:403 -msgid "Without status" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:406 -msgid "Bad" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_agents.php:450 -#: ../../godmode/agentes/agent_manager.php:452 -msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" -msgstr "" - -#: ../../godmode/massive/massive_delete_action_alerts.php:56 -msgid "Could not be deleted. No agents selected" -msgstr "" - -#: ../../godmode/massive/massive_delete_action_alerts.php:81 -msgid "Could not be deleted. No alerts selected" -msgstr "" - -#: ../../godmode/massive/massive_delete_action_alerts.php:124 -msgid "Could not be deleted. No action selected" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -msgid "Enabled alerts" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:165 -msgid "Disable selected alerts" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:169 -msgid "Enable selected alerts" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -msgid "Disabled alerts" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:36 -msgid "Bulk alert add" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:37 -msgid "Bulk alert delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:38 -msgid "Bulk alert actions add" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:39 -msgid "Bulk alert actions delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:40 -msgid "Bulk alert enable/disable" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:41 -msgid "Bulk alert setting standby" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:44 -msgid "Bulk agent edit" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:45 -msgid "Bulk agent delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:49 -msgid "Bulk profile add" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:50 -msgid "Bulk profile delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:57 -msgid "Bulk module delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:58 -msgid "Bulk module edit" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:59 -msgid "Bulk module copy" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:62 -msgid "Bulk plugin edit" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:215 -msgid "Massive operations" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_operations.php:239 -msgid "Please wait..." -msgstr "" - -#: ../../godmode/massive/massive_operations.php:276 -msgid "The blank fields will not be updated" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:151 -msgid "Error retrieving the plugin macros" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:158 -msgid "Error retrieving the modified macros" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:172 -msgid "Error retrieving the module plugin macros" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:190 -msgid "Error retrieving the module plugin macros data" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:224 -msgid "Error building the new macros" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:253 -#, php-format -msgid "%d modules updated" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:272 -msgid "There are not registered plugins" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:421 -msgid "Invalid plugin data" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:528 -msgid "Clear" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:556 -msgid "Invalid macros array" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:581 -msgid "Multiple values" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_plugins.php:629 -msgid "Invalid agent element" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:640 -msgid "Invalid modules array" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:668 -msgid "Invalid module element" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:876 -msgid "There are no modules using this plugin" -msgstr "" - -#: ../../godmode/massive/massive_edit_plugins.php:955 -msgid "There was a problem loading the module plugin macros data" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_delete_agents.php:63 -#, php-format -msgid "Successfully deleted (%s)" -msgstr "" - -#: ../../godmode/massive/massive_standby_alerts.php:154 -msgid "Not standby alerts" -msgstr "" - -#: ../../godmode/massive/massive_standby_alerts.php:165 -#: ../../godmode/massive/massive_standby_alerts.php:169 -msgid "Set standby selected alerts" -msgstr "" - -#: ../../godmode/massive/massive_standby_alerts.php:171 -msgid "Standby alerts" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:56 -msgid "No module selected" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:230 -msgid "" -"There was an error deleting the modules, the operation has been cancelled" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:396 -#: ../../godmode/massive/massive_edit_modules.php:239 -msgid "Selection mode" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:397 -#: ../../godmode/massive/massive_edit_modules.php:240 -msgid "Select modules first " -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:399 -#: ../../godmode/massive/massive_edit_modules.php:242 -msgid "Select agents first " -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:405 -#: ../../godmode/massive/massive_edit_modules.php:249 -msgid "Module type" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:414 -#: ../../godmode/massive/massive_edit_modules.php:258 -msgid "Select all modules of this type" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:435 -#: ../../godmode/massive/massive_edit_modules.php:279 -msgid "Agent group" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:443 -#: ../../godmode/massive/massive_edit_modules.php:287 -msgid "Select all modules of this group" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:464 -#: ../../godmode/massive/massive_edit_modules.php:293 -msgid "Module Status" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:483 -#: ../../godmode/massive/massive_edit_modules.php:311 -msgid "When select modules" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:486 -#: ../../godmode/massive/massive_edit_modules.php:314 -msgid "Show common agents" -msgstr "" - -#: ../../godmode/massive/massive_delete_modules.php:487 -#: ../../godmode/massive/massive_edit_modules.php:315 -msgid "Show all agents" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:136 -msgid "Copy modules" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:141 -msgid "Copy alerts" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:150 -msgid "No modules for this agent" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:159 -msgid "No alerts for this agent" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:168 -msgid "Targets" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:217 -msgid "To agent(s)" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:442 -msgid "No operation selected" -msgstr "" - -#: ../../godmode/massive/massive_delete_profiles.php:61 -msgid "Not deleted. You must select an existing user" -msgstr "" - -#: ../../godmode/massive/massive_delete_profiles.php:87 -msgid "Profiles deleted successfully" -msgstr "" - -#: ../../godmode/massive/massive_delete_profiles.php:88 -msgid "Profiles cannot be deleted" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:324 -msgid "Agent Status" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:357 -#: ../../godmode/modules/manage_network_components_form_common.php:107 -msgid "Dynamic Interval" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:359 -msgid "Dynamic Min." -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:362 -#: ../../godmode/modules/manage_network_components_form_common.php:113 -msgid "Dynamic Max." -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:365 -#: ../../godmode/modules/manage_network_components_form_common.php:115 -msgid "Dynamic Two Tailed: " -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_modules.php:479 -msgid "SMNP community" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:485 -#: ../../godmode/agentes/module_manager_editor_network.php:86 -msgid "Force primary key" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_modules.php:532 -#: ../../godmode/agentes/module_manager_editor_common.php:427 -msgid "Export target" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_modules.php:552 -#: ../../godmode/agentes/module_manager_editor_common.php:456 -msgid "FF interval" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_modules.php:554 -#: ../../godmode/agentes/module_manager_editor_common.php:462 -msgid "FF timeout" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_modules.php:571 -msgid "Policy linking status" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:571 -msgid "This field only has sense in modules adopted by a policy." -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:572 -msgid "Linked" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_edit_modules.php:602 -msgid "The module still store data but the alerts and events will be stop" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:606 -#: ../../godmode/agentes/module_manager_editor_common.php:621 -msgid "Timeout" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/massive/massive_delete_tags.php:107 -msgid "No tag selected" -msgstr "" - -#: ../../godmode/massive/massive_add_tags.php:43 -msgid "No tags selected" -msgstr "" - -#: ../../godmode/massive/massive_add_profiles.php:72 -msgid "Profiles added successfully" -msgstr "" - -#: ../../godmode/massive/massive_add_profiles.php:73 -msgid "Profiles cannot be added" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/profile_list.php:53 -msgid "Profiles defined in Pandora" -msgstr "" - -#: ../../godmode/users/configure_profile.php:113 -msgid "Create profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:119 -msgid "There was a problem loading profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:219 -msgid "Update profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:229 -msgid "Update Profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:231 -msgid "Create Profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:249 -msgid "View agents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:253 -msgid "Disable agents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:257 -msgid "Edit agents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:264 -msgid "Edit alerts" -msgstr "" - -#: ../../godmode/users/configure_profile.php:279 -msgid "Edit events" -msgstr "" - -#: ../../godmode/users/configure_profile.php:290 -msgid "View reports" -msgstr "" - -#: ../../godmode/users/configure_profile.php:294 -msgid "Edit reports" -msgstr "" - -#: ../../godmode/users/configure_profile.php:298 -msgid "Manage reports" -msgstr "" - -#: ../../godmode/users/configure_profile.php:305 -msgid "View network maps" -msgstr "" - -#: ../../godmode/users/configure_profile.php:309 -msgid "Edit network maps" -msgstr "" - -#: ../../godmode/users/configure_profile.php:313 -msgid "Manage network maps" -msgstr "" - -#: ../../godmode/users/configure_profile.php:324 -msgid "Edit visual console" -msgstr "" - -#: ../../godmode/users/configure_profile.php:335 -msgid "View incidents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:339 -msgid "Edit incidents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:343 -msgid "Manage incidents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:350 -msgid "Manage users" -msgstr "" - -#: ../../godmode/users/configure_profile.php:357 -msgid "Manage database" -msgstr "" - -#: ../../godmode/users/configure_profile.php:364 -msgid "Pandora management" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/users/configure_user.php:182 -msgid "User ID cannot be empty" -msgstr "" - -#: ../../godmode/users/configure_user.php:189 -msgid "Passwords cannot be empty" -msgstr "" - -#: ../../godmode/users/configure_user.php:196 -msgid "Passwords didn't match" -msgstr "" - -#: ../../godmode/users/configure_user.php:245 -msgid "" -"Strict ACL is not recommended for admin users because performance could be " -"affected." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/users/configure_user.php:318 -msgid "Passwords does not match" -msgstr "" - -#: ../../godmode/users/configure_user.php:366 -msgid "" -"Strict ACL is not recommended for this user. Performance could be affected." -msgstr "" - -#: ../../godmode/users/configure_user.php:398 -msgid "Profile added successfully" -msgstr "" - -#: ../../godmode/users/configure_user.php:399 -msgid "Profile cannot be added" -msgstr "" - -#: ../../godmode/users/configure_user.php:425 -msgid "Update User" -msgstr "" - -#: ../../godmode/users/configure_user.php:428 -msgid "Create User" -msgstr "" - -#: ../../godmode/users/configure_user.php:464 -msgid "Global Profile" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/users/configure_user.php:516 -msgid "Use global conf" -msgstr "" - -#: ../../godmode/users/configure_user.php:531 -msgid "Metaconsole access" -msgstr "" - -#: ../../godmode/users/configure_user.php:539 -msgid "Not Login" -msgstr "" - -#: ../../godmode/users/configure_user.php:540 -msgid "The user with not login set only can access to API." -msgstr "" - -#: ../../godmode/users/configure_user.php:543 -msgid "Strict ACL" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/users/configure_user.php:547 -msgid "Session Time" -msgstr "" - -#: ../../godmode/users/configure_user.php:554 -msgid "Enable agents managment" -msgstr "" - -#: ../../godmode/users/configure_user.php:561 -msgid "Assigned node" -msgstr "" - -#: ../../godmode/users/configure_user.php:561 -msgid "Server where the agents created of this user will be placed" -msgstr "" - -#: ../../godmode/users/configure_user.php:573 -msgid "Enable node access" -msgstr "" - -#: ../../godmode/users/configure_user.php:573 -msgid "With this option enabled, the user will can access to nodes console" -msgstr "" - -#: ../../godmode/users/profile_list.php:80 -msgid "" -"Unsucessful delete profile. Because the profile is used by some admin users." -msgstr "" - -#: ../../godmode/users/profile_list.php:88 -#: ../../godmode/users/user_list.php:189 -msgid "There was a problem deleting the profile" -msgstr "" - -#: ../../godmode/users/profile_list.php:226 -msgid "There was a problem updating this profile" -msgstr "" - -#: ../../godmode/users/profile_list.php:230 -msgid "Profile name cannot be empty" -msgstr "" - -#: ../../godmode/users/profile_list.php:282 -#: ../../godmode/users/profile_list.php:286 -msgid "There was a problem creating this profile" -msgstr "" - -#: ../../godmode/users/profile_list.php:304 -msgid "System incidents reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:305 -msgid "System incidents writing" -msgstr "" - -#: ../../godmode/users/profile_list.php:306 -msgid "System incidents management" -msgstr "" - -#: ../../godmode/users/profile_list.php:307 -msgid "Agents reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:309 -msgid "Agents disable" -msgstr "" - -#: ../../godmode/users/profile_list.php:310 -msgid "Alerts editing" -msgstr "" - -#: ../../godmode/users/profile_list.php:311 -msgid "Alerts management" -msgstr "" - -#: ../../godmode/users/profile_list.php:313 -msgid "Database management" -msgstr "" - -#: ../../godmode/users/profile_list.php:314 -msgid "Events reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:315 -msgid "Events writing" -msgstr "" - -#: ../../godmode/users/profile_list.php:316 -msgid "Events management" -msgstr "" - -#: ../../godmode/users/profile_list.php:317 -msgid "Reports reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:318 -msgid "Reports writing" -msgstr "" - -#: ../../godmode/users/profile_list.php:319 -msgid "Reports management" -msgstr "" - -#: ../../godmode/users/profile_list.php:320 -msgid "Network maps reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:321 -msgid "Network maps writing" -msgstr "" - -#: ../../godmode/users/profile_list.php:322 -msgid "Network maps management" -msgstr "" - -#: ../../godmode/users/profile_list.php:323 -msgid "Visual console reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:324 -msgid "Visual console writing" -msgstr "" - -#: ../../godmode/users/profile_list.php:325 -msgid "Visual console management" -msgstr "" - -#: ../../godmode/users/profile_list.php:326 -msgid "Systems management" -msgstr "" - -#: ../../godmode/users/profile_list.php:398 -msgid "There are no defined profiles" -msgstr "" - -#: ../../godmode/users/user_list.php:121 -msgid "Users defined in Pandora" -msgstr "" - -#: ../../godmode/users/user_list.php:143 -#, php-format -msgid "Deleted user %s" -msgstr "" - -#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 -msgid "There was a problem deleting the user" -msgstr "" - -#: ../../godmode/users/user_list.php:163 -#, php-format -msgid "Deleted user %s from metaconsole" -msgstr "" - -#: ../../godmode/users/user_list.php:172 -#, php-format -msgid "Deleted user %s from %s" -msgstr "" - -#: ../../godmode/users/user_list.php:175 -#, php-format -msgid "Successfully deleted from %s" -msgstr "" - -#: ../../godmode/users/user_list.php:176 -#, php-format -msgid "There was a problem deleting the user from %s" -msgstr "" - -#: ../../godmode/users/user_list.php:204 -msgid "There was a problem disabling user" -msgstr "" - -#: ../../godmode/users/user_list.php:209 -msgid "There was a problem enabling user" -msgstr "" - -#: ../../godmode/users/user_list.php:231 ../../godmode/users/user_list.php:233 -msgid "Search by username, fullname or email" -msgstr "" - -#: ../../godmode/users/user_list.php:249 -msgid "Users control filter" -msgstr "" - -#: ../../godmode/users/user_list.php:276 -msgid "Profile / Group" -msgstr "" - -#: ../../godmode/users/user_list.php:406 ../../godmode/tag/tag.php:204 -#: ../../godmode/tag/edit_tag.php:205 -msgid "Phone" -msgstr "" - -#: ../../godmode/users/user_list.php:470 -msgid "Deleting User" -msgstr "" - -#: ../../godmode/users/user_list.php:472 -msgid "Delete from all consoles" -msgstr "" - -#: ../../godmode/users/user_list.php:472 -#, php-format -msgid "Deleting User %s from all consoles" -msgstr "" - -#: ../../godmode/users/user_list.php:488 -msgid "Create user" -msgstr "" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:87 -#: ../../godmode/reporting/graph_builder.graph_editor.php:156 -msgid "Weight" -msgstr "" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:185 -msgid "Please, select a module" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.main.php:85 -msgid "Only the group can view the report" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.main.php:86 -msgid "The next group can edit the report" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.main.php:87 -msgid "Only the user and admin user can edit the report" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.main.php:89 -msgid "Write Access" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.main.php:110 -msgid "Non interactive report" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:224 -msgid "Graph builder" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:244 -msgid "Graph stored successfully" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:244 -msgid "There was a problem storing Graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:247 -#: ../../godmode/agentes/configurar_agente.php:1393 -msgid "Module added successfully" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:247 -msgid "There was a problem adding Module" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:250 -msgid "Update the graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:250 -msgid "Bad update the graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:253 -msgid "Graph deleted successfully" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:253 -msgid "There was a problem deleting Graph" -msgstr "" - -#: ../../godmode/reporting/map_builder.php:187 -#: ../../godmode/reporting/map_builder.php:197 -msgid "Not copied. Error copying data" -msgstr "" - -#: ../../godmode/reporting/map_builder.php:207 -msgid "Map name" -msgstr "" - -#: ../../godmode/reporting/map_builder.php:209 -msgid "Items" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:125 -msgid "Range between elements (px)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:132 -msgid "Size (px)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:170 -msgid "Font" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:204 -msgid "Width (px)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:223 -msgid "Bubble" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:232 -msgid "Percent" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:267 -msgid "One item per agent" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:301 -#: ../../godmode/reporting/visual_console_builder.wizard.php:604 -msgid "Agent - Module" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:310 -msgid "Enable link agent" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:322 -msgid "Set Parent" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:324 -msgid "Item created in the visualmap" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:325 -msgid "Use the agents relationship (from selected agents)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:328 -msgid "Item in the map" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:331 -msgid "The parent relationships in Pandora will be drawn in the map." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:525 -msgid "Please select any module or modules." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:79 -msgid "Width x Height
Max value" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:143 -msgid "Percentile Bar" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:148 -msgid "Percentile Bubble" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:163 -msgid "Simple Value (Process Max)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:168 -msgid "Simple Value (Process Min)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:173 -msgid "Simple Value (Process Avg)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:226 -#: ../../godmode/reporting/visual_console_builder.elements.php:619 -msgid "Edit label" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:35 -msgid "Only table" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:36 -msgid "Table & Graph" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:37 -msgid "Only graph" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:41 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1257 -msgid "Ascending" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:42 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1260 -msgid "Descending" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:611 -msgid "Item Editor" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:639 -msgid "Not valid" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:705 -#: ../../godmode/reporting/reporting_builder.list_items.php:302 -msgid "Time lapse" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:720 -msgid "Last value" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:766 -msgid "Projection period" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:776 -msgid "Data range" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:787 -msgid "Only display wrong SLAs" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:796 -msgid "Working time" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1042 -msgid "Show modules" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1175 -msgid "Target server" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1203 -msgid "Custom SQL template" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1224 -msgid "Select server" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 -msgid "Serialized header" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 -msgid "The separator character is |" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 -msgid "Field separator" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 -msgid "Separator for different fields in the serialized text chain" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1246 -msgid "Line separator" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1246 -msgid "" -"Separator in different lines (composed by fields) of the serialized text " -"chain" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1250 -msgid "Group by agent" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1263 -msgid "By agent name" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1271 -msgid "Quantity (n)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1304 -msgid "Only average" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1308 -#: ../../godmode/reporting/graph_builder.main.php:177 -msgid "Percentil" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1321 -msgid "Condition" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1327 -msgid "Greater or equal (>=)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1328 -msgid "Less or equal (<=)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1329 -msgid "Less (<)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1330 -msgid "Greater (>)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1331 -msgid "Equal (=)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1332 -msgid "Not equal (!=)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1356 -msgid "Show graph" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1364 -msgid "Show address instead module name." -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1365 -msgid "Show the main address of agent." -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1377 -msgid "Show resume" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1387 -msgid "Show Summary group" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1420 -msgid "Event Status" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1432 -msgid "Event graphs" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1436 -msgid "By agent" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1442 -msgid "By user validator" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1448 -msgid "By criticity" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1454 -msgid "Validated vs unvalidated" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1462 -msgid "Show in two columns" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1468 -msgid "SLA items sorted by fulfillment value" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1473 -msgid "Show in landscape" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1484 -msgid "Hide not init agents" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1509 -#: ../../godmode/netflow/nf_item_list.php:260 -msgid "Create item" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1542 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 -msgid "Service" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1543 -msgid "SLA Min. (value)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1544 -msgid "SLA Max. (value)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1545 -msgid "SLA Limit (%)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1554 -msgid "Please save the SLA for start to add items in this list." -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1726 -msgid "rate" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1727 -msgid "max" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1728 -msgid "min" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1729 -msgid "sum" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1763 -msgid "Please save the report to start adding items into the list." -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2072 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2092 -msgid "Please select Agent" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.data.php:91 -msgid "Create visual console" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/visual_console_builder.data.php:122 -msgid "Group:" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.data.php:142 -msgid "Background image" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:139 -msgid "Loading in progress" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:144 -msgid "Saving in progress" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:149 -msgid "Deletion in progress" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.php:81 -msgid "An error has ocurred" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:335 -#: ../../godmode/reporting/reporting_builder.php:1902 -#: ../../godmode/reporting/reporting_builder.php:1954 -msgid "Reports list" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:435 -msgid "Free text for search: " -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:436 -msgid "Search by report name or description, list matches." -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:446 -msgid "Show Option" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:554 -msgid "Private" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:610 -msgid "This report exceeds the item limit for realtime operations" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:615 -msgid "HTML view" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:616 -msgid "Export to XML" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:735 -msgid "Create report" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:2020 -msgid "Successfull action" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:2020 -msgid "Unsuccessfull action

" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:307 -#: ../../godmode/reporting/reporting_builder.list_items.php:507 -msgid "Sort" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:493 -#: ../../godmode/reporting/reporting_builder.list_items.php:498 -msgid "Sort items" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:500 -msgid "Sort selected items from position: " -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:502 -msgid "Move before to" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:502 -msgid "Move after to" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:524 -#: ../../godmode/reporting/reporting_builder.list_items.php:529 -msgid "Delete items" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:531 -msgid "Delete selected items from position: " -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:533 -msgid "Delete above to" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:533 -msgid "Delete below to" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:582 -msgid "Please select any item to order" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:612 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:634 -msgid "Please select any item to delete" -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:163 -msgid "Horizontal bars" -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:164 -msgid "Vertical bars" -msgstr "" - -#: ../../godmode/reporting/graphs.php:154 -msgid "Number of Graphs" -msgstr "" - -#: ../../godmode/reporting/graphs.php:213 -msgid "Create graph" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:159 -msgid "This file isn't image" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:160 -msgid "This file isn't image." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:164 -#: ../../godmode/reporting/visual_console_builder.php:165 -msgid "File already are exists." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:171 -#: ../../godmode/reporting/visual_console_builder.php:172 -msgid "The file have not image extension." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/reporting/visual_console_builder.php:223 -msgid "Successfully update." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:235 -msgid "Could not be update." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:250 -msgid "Successfully created." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:263 -msgid "Could not be created." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:304 -msgid "Successfully multiple delete." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:305 -msgid "Unsuccessfull multiple delete." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:387 -msgid "Successfully delete." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:693 -msgid "New visual console" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:44 -#: ../../godmode/netflow/nf_item_list.php:54 -msgid "Report items" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:49 -msgid "Edit report" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:58 -msgid "Netflow reports" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:59 -msgid "Item list" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:151 -msgid "Chart type" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:203 -#: ../../godmode/netflow/nf_item_list.php:210 -msgid "Move to down" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:206 -#: ../../godmode/netflow/nf_item_list.php:209 -msgid "Move to up" -msgstr "" - -#: ../../godmode/netflow/nf_item_list.php:255 -msgid "There are no defined items" -msgstr "" - -#: ../../godmode/netflow/nf_edit_form.php:59 -#: ../../godmode/netflow/nf_edit_form.php:67 -msgid "Add filter" -msgstr "" - -#: ../../godmode/netflow/nf_edit_form.php:62 -msgid "Netflow Filter" -msgstr "" - -#: ../../godmode/netflow/nf_edit_form.php:206 -msgid "Filter:" -msgstr "" - -#: ../../godmode/netflow/nf_edit.php:39 -msgid "Manage Netflow Filter" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:111 -msgid "Map successfully created" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:112 -msgid "Map could not be created" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:201 -msgid "Map successfully update" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:202 -msgid "Map could not be updated" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:219 -msgid "View GIS" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:222 -msgid "GIS Maps builder" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:329 -msgid "Map Name" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:329 -msgid "Descriptive name for the map" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:348 -msgid "Add Map connection" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/gis_maps/configure_gis_map.php:366 -msgid "Group that owns the map" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:369 -msgid "Default zoom" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:369 -msgid "Default zoom level when opening the map" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:372 -msgid "Center Latitude" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:375 -msgid "Center Longitude" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:378 -msgid "Center Altitude" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:381 -msgid "Default Latitude" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:384 -msgid "Default Longitude" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "Default Altitude" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:392 -msgid "Layers" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/gis_maps/configure_gis_map.php:398 -msgid "List of layers" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:398 -msgid "It is possible to edit, delete and reorder the layers." -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:399 -msgid "New layer" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:407 -msgid "Layer name" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:409 -msgid "Visible" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:413 -msgid "Show agents from group" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:425 -msgid "Add agent" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:441 -msgid "List of Agents to be shown in the layer" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/gis_maps/configure_gis_map.php:464 -#: ../../godmode/gis_maps/configure_gis_map.php:471 -msgid "Save map" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:467 -msgid "Update map" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:668 -#: ../../godmode/gis_maps/configure_gis_map.php:724 -msgid "Update Layer" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:790 -msgid "Do you want to use the default data from the connection?" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:825 -msgid "The connection" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:825 -msgid "just added previously." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/db/db_purge.php:43 -msgid "Get data from agent" -msgstr "" - -#: ../../godmode/db/db_purge.php:75 -#, php-format -msgid "Purge task launched for agent %s :: Data older than %s" -msgstr "" - -#: ../../godmode/db/db_purge.php:78 -msgid "" -"Please be patient. This operation can take a long time depending on the " -"amount of modules." -msgstr "" - -#: ../../godmode/db/db_purge.php:92 -#, php-format -msgid "Deleting records for module %s" -msgstr "" - -#: ../../godmode/db/db_purge.php:140 -#, php-format -msgid "Total errors: %s" -msgstr "" - -#: ../../godmode/db/db_purge.php:141 ../../godmode/db/db_purge.php:144 -#, php-format -msgid "Total records deleted: %s" -msgstr "" - -#: ../../godmode/db/db_purge.php:149 -msgid "Deleting records for all agents" -msgstr "" - -#: ../../godmode/db/db_purge.php:166 -msgid "Choose agent" -msgstr "" - -#: ../../godmode/db/db_purge.php:172 -msgid "Select the agent you want information about" -msgstr "" - -#: ../../godmode/db/db_purge.php:174 -msgid "Get data" -msgstr "" - -#: ../../godmode/db/db_purge.php:175 -msgid "Click here to get the data from the agent specified in the select box" -msgstr "" - -#: ../../godmode/db/db_purge.php:179 -#, php-format -msgid "Information on agent %s in the database" -msgstr "" - -#: ../../godmode/db/db_purge.php:182 -msgid "Information on all agents in the database" -msgstr "" - -#: ../../godmode/db/db_purge.php:317 -msgid "Packets less than three months old" -msgstr "" - -#: ../../godmode/db/db_purge.php:319 -msgid "Packets less than one month old" -msgstr "" - -#: ../../godmode/db/db_purge.php:321 -msgid "Packets less than two weeks old" -msgstr "" - -#: ../../godmode/db/db_purge.php:323 -msgid "Packets less than one week old" -msgstr "" - -#: ../../godmode/db/db_purge.php:325 -msgid "Packets less than three days old" -msgstr "" - -#: ../../godmode/db/db_purge.php:327 -msgid "Packets less than one day old" -msgstr "" - -#: ../../godmode/db/db_purge.php:329 -msgid "Total number of packets" -msgstr "" - -#: ../../godmode/db/db_purge.php:335 ../../godmode/db/db_audit.php:92 -#: ../../godmode/db/db_event.php:73 -msgid "Purge data" -msgstr "" - -#: ../../godmode/db/db_purge.php:340 -msgid "Purge data over 3 months" -msgstr "" - -#: ../../godmode/db/db_purge.php:341 -msgid "Purge data over 1 month" -msgstr "" - -#: ../../godmode/db/db_purge.php:342 -msgid "Purge data over 2 weeks" -msgstr "" - -#: ../../godmode/db/db_purge.php:343 -msgid "Purge data over 1 week" -msgstr "" - -#: ../../godmode/db/db_purge.php:344 -msgid "Purge data over 3 days" -msgstr "" - -#: ../../godmode/db/db_purge.php:345 -msgid "Purge data over 1 day" -msgstr "" - -#: ../../godmode/db/db_purge.php:346 -msgid "All data until now" -msgstr "" - -#: ../../godmode/db/db_purge.php:350 -msgid "Purge" -msgstr "" - -#: ../../godmode/db/db_main.php:69 -msgid "Current database maintenance setup" -msgstr "" - -#: ../../godmode/db/db_main.php:76 -msgid "Database setup" -msgstr "" - -#: ../../godmode/db/db_main.php:80 -msgid "Max. time before compact data" -msgstr "" - -#: ../../godmode/db/db_main.php:86 -msgid "Max. time before purge" -msgstr "" - -#: ../../godmode/db/db_main.php:95 -msgid "Database size stats" -msgstr "" - -#: ../../godmode/db/db_main.php:111 -msgid "Total data items (tagente_datos)" -msgstr "" - -#: ../../godmode/db/db_main.php:123 -msgid "Total log4x items (tagente_datos_log4x)" -msgstr "" - -#: ../../godmode/db/db_main.php:135 -msgid "Total data string items (tagente_datos_string)" -msgstr "" - -#: ../../godmode/db/db_main.php:141 -msgid "Total modules configured" -msgstr "" - -#: ../../godmode/db/db_main.php:149 -msgid "Total agent access records" -msgstr "" - -#: ../../godmode/db/db_main.php:160 -msgid "Database sanity" -msgstr "" - -#: ../../godmode/db/db_main.php:164 -msgid "Total uknown agents" -msgstr "" - -#: ../../godmode/db/db_main.php:170 -msgid "Total non-init modules" -msgstr "" - -#: ../../godmode/db/db_main.php:179 -msgid "Last time on DB maintance" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/db/db_info.php:32 -msgid "Database information" -msgstr "" - -#: ../../godmode/db/db_info.php:34 -msgid "Module data received" -msgstr "" - -#: ../../godmode/db/db_audit.php:19 -msgid "Database audit purge" -msgstr "" - -#: ../../godmode/db/db_audit.php:70 -msgid "Success data deleted" -msgstr "" - -#: ../../godmode/db/db_audit.php:72 -msgid "Error deleting data" -msgstr "" - -#: ../../godmode/db/db_audit.php:81 ../../godmode/db/db_event.php:62 -msgid "Records" -msgstr "" - -#: ../../godmode/db/db_audit.php:84 ../../godmode/db/db_event.php:64 -msgid "First date" -msgstr "" - -#: ../../godmode/db/db_audit.php:88 -msgid "Latest date" -msgstr "" - -#: ../../godmode/db/db_audit.php:97 -msgid "Purge audit data over 90 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:98 -msgid "Purge audit data over 30 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:99 -msgid "Purge audit data over 14 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:100 -msgid "Purge audit data over 7 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:101 -msgid "Purge audit data over 3 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:102 -msgid "Purge audit data over 1 day" -msgstr "" - -#: ../../godmode/db/db_audit.php:103 -msgid "Purge all audit data" -msgstr "" - -#: ../../godmode/db/db_audit.php:107 ../../godmode/db/db_event.php:92 -msgid "Do it!" -msgstr "" - -#: ../../godmode/db/db_event.php:22 -msgid "Event database cleanup" -msgstr "" - -#: ../../godmode/db/db_event.php:40 -msgid "Successfully deleted old events" -msgstr "" - -#: ../../godmode/db/db_event.php:43 -msgid "Error deleting old events" -msgstr "" - -#: ../../godmode/db/db_event.php:67 -msgid "Latest data" -msgstr "" - -#: ../../godmode/db/db_event.php:81 -msgid "Purge event data over 90 days" -msgstr "" - -#: ../../godmode/db/db_event.php:82 -msgid "Purge event data over 30 days" -msgstr "" - -#: ../../godmode/db/db_event.php:83 -msgid "Purge event data over 14 days" -msgstr "" - -#: ../../godmode/db/db_event.php:84 -msgid "Purge event data over 7 days" -msgstr "" - -#: ../../godmode/db/db_event.php:85 -msgid "Purge event data over 3 days" -msgstr "" - -#: ../../godmode/db/db_event.php:86 -msgid "Purge event data over 1 day" -msgstr "" - -#: ../../godmode/db/db_event.php:87 -msgid "Purge all event data" -msgstr "" - -#: ../../godmode/db/db_refine.php:42 -msgid "Maximum is equal to minimum" -msgstr "" - -#: ../../godmode/db/db_refine.php:56 -msgid "Filtering data module" -msgstr "" - -#: ../../godmode/db/db_refine.php:76 -msgid "Filtering completed" -msgstr "" - -#: ../../godmode/db/db_refine.php:88 -msgid "No agent selected" -msgstr "" - -#: ../../godmode/db/db_refine.php:92 -msgid "Get Info" -msgstr "" - -#: ../../godmode/db/db_refine.php:105 -msgid "Purge data out of these limits" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:189 -msgid "" -"By default, in Windows, Pandora FMS only support Standard network sweep, not " -"custom scripts" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/servers/manage_recontask_form.php:232 -msgid "Network sweep" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:234 -msgid "Custom script" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:253 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:255 -#: ../../godmode/servers/manage_recontask.php:346 -msgid "Manual" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:260 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:265 -msgid "Module template" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:299 -#: ../../godmode/servers/manage_recontask.php:291 -msgid "Ports" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/servers/manage_recontask_form.php:313 -msgid "Choose if the discovery of a new system creates an incident or not." -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:316 -msgid "SNMP Default community" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:322 -msgid "Explanation" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:363 -msgid "OS detection" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:367 -msgid "Name resolution" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:371 -msgid "Parent detection" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:375 -msgid "Parent recursion" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:376 -msgid "" -"Maximum number of parent hosts that will be created if parent detection is " -"enabled." -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:55 -msgid "Successfully deleted recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:58 -msgid "Error deleting recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:68 -#: ../../godmode/servers/manage_recontask.php:179 -msgid "Successfully updated recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:75 -#: ../../godmode/servers/manage_recontask.php:182 -msgid "Error updating recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:163 -#: ../../godmode/servers/manage_recontask.php:234 -msgid "Wrong format in Subnet field" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:230 -msgid "Recon-task name already exists and incorrect format in Subnet field" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:238 -#: ../../godmode/servers/manage_recontask.php:247 -msgid "Recon-task name already exists" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:261 -msgid "Successfully created recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:264 -msgid "Error creating recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:387 -msgid "There are no recon task configured" -msgstr "" - -#: ../../godmode/servers/recon_script.php:73 -msgid "Recon script creation" -msgstr "" - -#: ../../godmode/servers/recon_script.php:75 -msgid "Recon script update" -msgstr "" - -#: ../../godmode/servers/recon_script.php:101 -msgid "Script fullpath" -msgstr "" - -#: ../../godmode/servers/recon_script.php:161 -#: ../../godmode/servers/plugin.php:451 -msgid "Default value" -msgstr "" - -#: ../../godmode/servers/recon_script.php:174 -#: ../../godmode/servers/plugin.php:464 -msgid "Hide value" -msgstr "" - -#: ../../godmode/servers/recon_script.php:174 -#: ../../godmode/servers/plugin.php:464 -msgid "This field will show up as dots like a password" -msgstr "" - -#: ../../godmode/servers/recon_script.php:199 -#: ../../godmode/servers/plugin.php:491 -msgid "Add macro" -msgstr "" - -#: ../../godmode/servers/recon_script.php:206 -#: ../../godmode/servers/plugin.php:506 -msgid "Delete macro" -msgstr "" - -#: ../../godmode/servers/recon_script.php:228 -msgid "Recon scripts registered in Pandora FMS" -msgstr "" - -#: ../../godmode/servers/recon_script.php:271 -msgid "Problem updating" -msgstr "" - -#: ../../godmode/servers/recon_script.php:274 -#: ../../godmode/modules/manage_network_components.php:352 -msgid "Updated successfully" -msgstr "" - -#: ../../godmode/servers/recon_script.php:317 -msgid "Problem creating" -msgstr "" - -#: ../../godmode/servers/recon_script.php:320 -#: ../../godmode/modules/manage_network_components.php:261 -msgid "Created successfully" -msgstr "" - -#: ../../godmode/servers/recon_script.php:331 -msgid "Problem deleting reconscript" -msgstr "" - -#: ../../godmode/servers/recon_script.php:334 -msgid "reconscript deleted successfully" -msgstr "" - -#: ../../godmode/servers/recon_script.php:378 -msgid "There are no recon scripts in the system" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:38 -msgid "There are no servers configured into the database" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:69 -msgid "Lag" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:69 -msgid "Avg. Delay(sec)/Modules delayed" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:70 -msgid "T/Q" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:70 -msgid "Threads / Queued modules currently" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:97 -msgid "This is a master server" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:110 -#: ../../godmode/servers/servers.build_table.php:115 -msgid "of" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:142 -msgid "Reset module status and fired alert counts" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:148 -msgid "Claim back SNMP modules" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:168 -msgid "Modules run by this server will stop working. Do you want to continue?" -msgstr "" - -#: ../../godmode/servers/servers.build_table.php:189 -msgid "Tactical server information" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:35 -msgid "Update Server" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:61 -msgid "Remote Configuration" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:66 -msgid "Pandora servers" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/modificar_server.php:85 -msgid "Unsuccessfull action" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:76 -#: ../../godmode/servers/modificar_server.php:88 -msgid "Successfully action" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:98 -msgid "Server deleted successfully" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:101 -msgid "There was a problem deleting the server" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:112 -msgid "Server updated successfully" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:115 -msgid "There was a problem updating the server" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:134 -#: ../../godmode/agentes/configurar_agente.php:610 -msgid "Conf file deleted successfully" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:135 -#: ../../godmode/agentes/configurar_agente.php:611 -msgid "Could not delete conf file" -msgstr "" - -#: ../../godmode/servers/plugin.php:53 -msgid "Network Components" -msgstr "" - -#: ../../godmode/servers/plugin.php:170 -msgid "Compatibility mode" -msgstr "" - -#: ../../godmode/servers/plugin.php:266 -msgid "Plugin creation" -msgstr "" - -#: ../../godmode/servers/plugin.php:269 -msgid "Plugin update" -msgstr "" - -#: ../../godmode/servers/plugin.php:299 -msgid "Plugin type" -msgstr "" - -#: ../../godmode/servers/plugin.php:300 ../../godmode/servers/plugin.php:759 -msgid "Standard" -msgstr "" - -#: ../../godmode/servers/plugin.php:301 ../../godmode/servers/plugin.php:761 -msgid "Nagios" -msgstr "" - -#: ../../godmode/servers/plugin.php:306 -msgid "Max. timeout" -msgstr "" - -#: ../../godmode/servers/plugin.php:306 -msgid "" -"This value only will be applied if is minor than the server general " -"configuration plugin timeout" -msgstr "" - -#: ../../godmode/servers/plugin.php:306 -msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "" - -#: ../../godmode/servers/plugin.php:362 -msgid "Plugin command" -msgstr "" - -#: ../../godmode/servers/plugin.php:373 -msgid "Plug-in parameters" -msgstr "" - -#: ../../godmode/servers/plugin.php:524 ../../godmode/servers/plugin.php:531 -msgid "Parameters macros" -msgstr "" - -#: ../../godmode/servers/plugin.php:564 -msgid "Plugins registered in Pandora FMS" -msgstr "" - -#: ../../godmode/servers/plugin.php:569 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "" - -#: ../../godmode/servers/plugin.php:629 -msgid "Problem updating plugin" -msgstr "" - -#: ../../godmode/servers/plugin.php:632 -msgid "Plugin updated successfully" -msgstr "" - -#: ../../godmode/servers/plugin.php:687 -msgid "Problem creating plugin" -msgstr "" - -#: ../../godmode/servers/plugin.php:690 -msgid "Plugin created successfully" -msgstr "" - -#: ../../godmode/servers/plugin.php:700 -msgid "Problem deleting plugin" -msgstr "" - -#: ../../godmode/servers/plugin.php:703 -msgid "Plugin deleted successfully" -msgstr "" - -#: ../../godmode/servers/plugin.php:782 -msgid "All the modules that are using this plugin will be deleted" -msgstr "" - -#: ../../godmode/servers/plugin.php:789 -msgid "There are no plugins in the system" -msgstr "" - -#: ../../godmode/servers/plugin.php:801 -#, php-format -msgid "List of modules and components created by \"%s\" " -msgstr "" - -#: ../../godmode/servers/plugin.php:909 ../../godmode/servers/plugin.php:925 -msgid "Some modules or components are using the plugin" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/servers/plugin.php:912 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ../../godmode/servers/plugin.php:926 -msgid "Are you sure you want to unlock this item?" -msgstr "" - -#: ../../godmode/servers/plugin.php:946 -msgid "" -"The plugin command cannot be updated because some modules or components are " -"using the plugin." -msgstr "" - -#: ../../godmode/servers/plugin.php:952 -msgid "" -"The plugin macros cannot be updated because some modules or components are " -"using the plugin" -msgstr "" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Pandora audit" -msgstr "" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Review Logs" -msgstr "" - -#: ../../godmode/admin_access_logs.php:65 -#: ../../godmode/admin_access_logs.php:66 -msgid "Free text for search (*)" -msgstr "" - -#: ../../godmode/admin_access_logs.php:303 -msgid "Export to CSV " -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/update_manager/update_manager.online.php:85 -msgid "The last version of package installed is:" -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:89 -msgid "Checking for the newest package." -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:93 -msgid "Downloading for the newest package." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:37 -msgid "Drop the package here or" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:38 -msgid "browse it" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:39 -msgid "The package has been uploaded successfully." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/update_manager/update_manager.offline.php:41 -msgid "Click on the file below to begin." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:42 -msgid "Updating" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:43 -msgid "Package updated successfully." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:44 -msgid "If there are any database change, it will be applied on the next login." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:45 -msgid "Package not updated." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/update_manager/update_manager.php:43 -msgid "Online update manager" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:50 -msgid "Update manager messages" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:55 -msgid "Update manager » Setup" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:58 -msgid "Update manager » Offline" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:61 -msgid "Update manager » Online" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:64 -msgid "Update manager » Messages" -msgstr "" - -#: ../../godmode/update_manager/update_manager.messages.php:96 -#: ../../godmode/update_manager/update_manager.messages.php:170 -msgid "Mark as not read" -msgstr "" - -#: ../../godmode/update_manager/update_manager.messages.php:101 -#: ../../godmode/update_manager/update_manager.messages.php:175 -msgid "Mark as read" -msgstr "" - -#: ../../godmode/update_manager/update_manager.messages.php:186 -msgid "There is not any update manager messages." -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:58 -#: ../../godmode/update_manager/update_manager.setup.php:87 -msgid "Succesful Update the url config vars." -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:59 -#: ../../godmode/update_manager/update_manager.setup.php:88 -msgid "Unsuccesful Update the url config vars." -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:100 -msgid "URL update manager:" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:102 -msgid "URL update manager" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:104 -msgid "Proxy server:" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:106 -msgid "Proxy server" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:108 -msgid "Proxy port:" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:110 -msgid "Proxy port" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:112 -msgid "Proxy user:" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:114 -msgid "Proxy user" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:116 -msgid "Proxy password:" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:118 -msgid "Proxy password" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:122 -msgid "Pandora FMS community reminder" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/category/category.php:72 -msgid "Error deleting category" -msgstr "" - -#: ../../godmode/category/category.php:76 -msgid "Successfully deleted category" -msgstr "" - -#: ../../godmode/category/category.php:110 -msgid "Category name" -msgstr "" - -#: ../../godmode/category/category.php:141 -msgid "No categories found" -msgstr "" - -#: ../../godmode/category/category.php:150 -#: ../../godmode/category/edit_category.php:146 -msgid "Create category" -msgstr "" - -#: ../../godmode/category/edit_category.php:57 -msgid "Editor" -msgstr "" - -#: ../../godmode/category/edit_category.php:76 -msgid "Error updating category" -msgstr "" - -#: ../../godmode/category/edit_category.php:80 -msgid "Successfully updated category" -msgstr "" - -#: ../../godmode/category/edit_category.php:99 -msgid "Error creating category" -msgstr "" - -#: ../../godmode/category/edit_category.php:105 -msgid "Successfully created category" -msgstr "" - -#: ../../godmode/category/edit_category.php:137 -msgid "Update category" -msgstr "" - -#: ../../godmode/groups/configure_modu_group.php:32 -msgid "Module group management" -msgstr "" - -#: ../../godmode/groups/configure_modu_group.php:51 -#: ../../godmode/groups/configure_group.php:70 -msgid "There was a problem loading group" -msgstr "" - -#: ../../godmode/groups/group_list.php:158 -msgid "Edit or delete groups can cause problems with synchronization" -msgstr "" - -#: ../../godmode/groups/group_list.php:164 -msgid "Groups defined in Pandora" -msgstr "" - -#: ../../godmode/groups/group_list.php:210 -#: ../../godmode/groups/modu_group_list.php:75 -msgid "Group successfully created" -msgstr "" - -#: ../../godmode/groups/group_list.php:213 -#: ../../godmode/groups/modu_group_list.php:78 -msgid "There was a problem creating group" -msgstr "" - -#: ../../godmode/groups/group_list.php:217 -msgid "Each group must have a different name" -msgstr "" - -#: ../../godmode/groups/group_list.php:222 -msgid "Group must have a name" -msgstr "" - -#: ../../godmode/groups/group_list.php:266 -#: ../../godmode/groups/modu_group_list.php:106 -msgid "Group successfully updated" -msgstr "" - -#: ../../godmode/groups/group_list.php:269 -#: ../../godmode/groups/modu_group_list.php:109 -msgid "There was a problem modifying group" -msgstr "" - -#: ../../godmode/groups/group_list.php:294 -#, php-format -msgid "The group is not empty. It is use in %s." -msgstr "" - -#: ../../godmode/groups/group_list.php:298 -#: ../../godmode/groups/modu_group_list.php:138 -msgid "Group successfully deleted" -msgstr "" - -#: ../../godmode/groups/group_list.php:301 -#: ../../godmode/groups/modu_group_list.php:136 -msgid "There was a problem deleting group" -msgstr "" - -#: ../../godmode/groups/group_list.php:390 -msgid "There are no defined groups" -msgstr "" - -#: ../../godmode/groups/group_list.php:396 -#: ../../godmode/groups/configure_group.php:94 -msgid "Create group" -msgstr "" - -#: ../../godmode/groups/configure_group.php:92 -msgid "Update group" -msgstr "" - -#: ../../godmode/groups/configure_group.php:106 -msgid "Update Group" -msgstr "" - -#: ../../godmode/groups/configure_group.php:108 -msgid "Create Group" -msgstr "" - -#: ../../godmode/groups/configure_group.php:144 -msgid "You have not access to the parent." -msgstr "" - -#: ../../godmode/groups/configure_group.php:166 -msgid "Group Password" -msgstr "" - -#: ../../godmode/groups/configure_group.php:174 -msgid "Propagate ACL" -msgstr "" - -#: ../../godmode/groups/configure_group.php:174 -msgid "Propagate the same ACL security into the child subgroups." -msgstr "" - -#: ../../godmode/groups/configure_group.php:186 -msgid "Contact" -msgstr "" - -#: ../../godmode/groups/configure_group.php:186 -msgid "Contact information accessible through the _groupcontact_ macro" -msgstr "" - -#: ../../godmode/groups/configure_group.php:190 -msgid "Information accessible through the _group_other_ macro" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/groups/modu_group_list.php:55 -msgid "Module groups defined in Pandora" -msgstr "" - -#: ../../godmode/groups/modu_group_list.php:82 -#: ../../godmode/groups/modu_group_list.php:113 -msgid "Each module group must have a different name" -msgstr "" - -#: ../../godmode/groups/modu_group_list.php:86 -#: ../../godmode/groups/modu_group_list.php:117 -msgid "Module group must have a name" -msgstr "" - -#: ../../godmode/groups/modu_group_list.php:208 -msgid "There are no defined module groups" -msgstr "" - -#: ../../godmode/groups/modu_group_list.php:213 -msgid "Create module group" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/modules/module_list.php:28 -msgid "Defined modules" -msgstr "" - -#: ../../godmode/modules/module_list.php:50 -msgid "Problem modifying module" -msgstr "" - -#: ../../godmode/modules/module_list.php:52 -msgid "Module updated successfully" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_network.php:47 -msgid "SNMP Enterprise String" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/modules/manage_network_components_form_network.php:90 -#: ../../godmode/agentes/module_manager_editor_network.php:171 -msgid "TCP send" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_network.php:97 -#: ../../godmode/agentes/module_manager_editor_network.php:177 -msgid "TCP receive" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Component group management" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:58 -msgid "Could not be created. Blank name" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/modules/manage_nc_groups.php:238 -msgid "There are no defined component groups" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups_form.php:54 -msgid "Update Group Component" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups_form.php:57 -msgid "Create Group Component" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:51 -msgid "Network component management" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:516 -msgid "Free Search" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:517 -msgid "Search by name, description, tcp send or tcp rcv, list matches." -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:569 -msgid "Max/Min" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:595 -msgid "Network module" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:599 -msgid "WMI module" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:603 -msgid "Plug-in module" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:634 -msgid "There are no defined network components" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:641 -msgid "Create a new network component" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:642 -msgid "Create a new plugin component" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:643 -msgid "Create a new WMI component" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form.php:253 -msgid "Update Network Component" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form.php:256 -msgid "Create Network Component" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/manage_network_templates.php:39 -msgid "Module template management" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:54 -msgid "Successfully deleted module from profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:55 -msgid "Error deleting module from profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:70 -msgid "Successfully added module to profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:71 -msgid "Error adding module to profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:94 -msgid "Successfully updated network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:95 -msgid "Error updating network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:110 -msgid "Successfully added network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:111 -msgid "Error adding network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:116 -msgid "Cannot create a template without name" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:184 -msgid "No modules for this profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:224 -msgid "Add modules" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:302 -msgid "Components" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:109 -#: ../../godmode/agentes/module_manager_editor_common.php:258 -msgid "Advanced options Dynamic Threshold" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:111 -msgid "Dynamic Min. " -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:165 -msgid "Any value below this number is discarted" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:167 -msgid "Any value over this number is discarted" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:212 -#: ../../godmode/agentes/module_manager_editor_common.php:478 -msgid "Tags available" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:219 -#: ../../godmode/agentes/module_manager_editor_common.php:540 -msgid "Add tags to module" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:220 -#: ../../godmode/agentes/module_manager_editor_common.php:541 -msgid "Delete tags to module" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:222 -#: ../../godmode/agentes/module_manager_editor_common.php:543 -msgid "Tags selected" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:379 -#: ../../godmode/agentes/module_manager_editor_common.php:1248 -msgid "Normal Status" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:380 -#: ../../godmode/agentes/module_manager_editor_common.php:1249 -msgid "Warning Status" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_common.php:381 -#: ../../godmode/agentes/module_manager_editor_common.php:1250 -msgid "Critical Status" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/modules/manage_network_templates.php:61 -msgid "Template successfully deleted" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:62 -msgid "Error deleting template" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:94 -msgid "This template does not exist" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:232 -msgid "There are no defined network profiles" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:32 -#: ../../godmode/agentes/module_manager_editor_wmi.php:64 -msgid "WMI query" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:34 -#: ../../godmode/agentes/module_manager_editor_wmi.php:73 -msgid "Key string" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:40 -#: ../../godmode/agentes/module_manager_editor_wmi.php:77 -msgid "Field number" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/configurar_agente.php:187 -#: ../../godmode/agentes/configurar_agente.php:733 -msgid "No agent alias specified" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:268 -msgid "Could not be created, because name already exists" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:385 -msgid "Agent wizard" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:397 -#: ../../godmode/agentes/configurar_agente.php:561 -msgid "SNMP Interfaces wizard" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:402 -#: ../../godmode/agentes/configurar_agente.php:564 -msgid "WMI Wizard" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:523 -msgid "Collection" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:531 -msgid "Agent plugins" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:546 -msgid "Gis" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:572 -msgid "SNMP explorer" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:587 -msgid "Agent manager" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:647 -#: ../../godmode/agentes/configurar_agente.php:652 -msgid "No data to normalize" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:656 -#, php-format -msgid "Deleted data above %f" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:657 -#, php-format -msgid "Error normalizing module %s" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:782 -msgid "There was a problem updating the agent" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:826 -msgid "There was a problem loading the agent" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1227 -msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1230 -msgid "" -"There was a problem updating module. Some required fields are missed: (name)" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1233 -msgid "There was a problem updating module. \"No change\"" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1238 -msgid "There was a problem updating module. Processing error" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1258 -msgid "Module successfully updated" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1367 -msgid "" -"There was a problem adding module. Another module already exists with the " -"same name." -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1370 -msgid "" -"There was a problem adding module. Some required fields are missed : (name)" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1375 -msgid "There was a problem adding module. Processing error" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1511 -msgid "There was a problem deleting the module" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1514 -msgid "Module deleted succesfully" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1528 -#, php-format -msgid "copy of %s" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1538 -#, php-format -msgid "copy of %s (%d)" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:1696 -#: ../../godmode/agentes/configurar_agente.php:1706 -msgid "Invalid tab specified" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:390 -msgid "This policy is applying and cannot be modified" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:394 -msgid "Module will be linked in the next application" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:402 -msgid "Module will be unlinked in the next application" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:490 -#, php-format -msgid "DEBUG: Invalid module type specified in %s:%s" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/module_manager_editor.php:517 -#: ../../godmode/agentes/module_manager_editor_common.php:667 -msgid "Custom macros" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:519 -msgid "Module relations" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:565 -msgid "No module name provided" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:566 -msgid "No target IP provided" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:567 -msgid "No SNMP OID provided" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:568 -msgid "No module to predict" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:569 -msgid "No plug-in provided" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:592 -msgid "" -"Error, The field name and name in module_name in data configuration are " -"different." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.export_csv.php:199 -#: ../../godmode/agentes/planned_downtime.list.php:358 -msgid "No planned downtime" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:70 -msgid "Using module component" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:76 -#: ../../godmode/agentes/module_manager_editor_common.php:85 -msgid "Manual setup" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:81 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:336 -msgid "No component was found" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:161 -msgid "Delete module" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:180 -msgid "Module parent" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:256 -msgid "Dynamic Threshold Interval" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:268 -msgid "Dynamic Threshold Min. " -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:271 -msgid "Dynamic Threshold Max. " -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:274 -msgid "Dynamic Threshold Two Tailed: " -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:280 -#: ../../godmode/agentes/module_manager_editor_common.php:301 -msgid "Min. " -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:385 -#: ../../godmode/agentes/module_manager_editor_common.php:388 -#, php-format -msgid "Agent interval x %s" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/module_manager_editor_common.php:422 -msgid "Any value below this number is discarted." -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:424 -msgid "Any value over this number is discarted." -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:433 -msgid "Not needed" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/module_manager_editor_common.php:471 -msgid "This value can be set only in the async modules." -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:554 -msgid "Tags from policy" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:567 -msgid "The module still stores data but the alerts and events will be stop" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../godmode/agentes/module_manager_editor_common.php:624 -msgid "Retries" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:625 -msgid "Number of retries that the module will attempt to run." -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:701 -msgid "Add relationship" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:719 -msgid "Changes" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:719 -msgid "Activate this to prevent the relation from being updated or deleted" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:286 -msgid "Successfully modules created" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:296 -msgid "Another module already exists with the same name" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 -msgid "Some required fields are missed" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 -msgid "name" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:304 -msgid "Processing error" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:345 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:706 -msgid "Use agent ip" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:377 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:739 -msgid "privacy pass" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:397 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:759 -msgid "SNMP Walk" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:401 -msgid "Unable to do SNMP walk" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:435 -msgid "Interfaces" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/module_manager_editor_network.php:152 -msgid "SNMP OID" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/agent_conf_gis.php:60 -msgid "Agent position" -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:66 -msgid "Latitude: " -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:70 -msgid "Longitude: " -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:74 -msgid "Altitude: " -msgstr "" - -#: ../../godmode/agentes/configure_field.php:36 -msgid "Update agent custom field" -msgstr "" - -#: ../../godmode/agentes/configure_field.php:39 -msgid "Create agent custom field" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/planned_downtime.editor.php:318 -msgid "Cannot be modified while the downtime is being executed" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:485 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:486 -msgid "Disable Agents: Disables the selected agents." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:487 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:489 -#: ../../godmode/agentes/planned_downtime.list.php:428 -msgid "Disabled Agents" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:490 -#: ../../godmode/agentes/planned_downtime.list.php:429 -msgid "Disabled only Alerts" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:494 -#: ../../godmode/agentes/planned_downtime.list.php:153 -msgid "Once" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:495 -#: ../../godmode/agentes/planned_downtime.list.php:153 -#: ../../godmode/agentes/planned_downtime.list.php:434 -msgid "Periodically" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:500 -msgid "Configure the time" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:531 -msgid "Type Periodicity:" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:533 -#: ../../godmode/agentes/module_manager_editor_prediction.php:152 -msgid "Weekly" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:534 -#: ../../godmode/agentes/module_manager_editor_prediction.php:153 -msgid "Monthly" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:569 -msgid "From day:" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:575 -msgid "To day:" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:586 -msgid "From hour:" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:594 -msgid "To hour:" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:637 -msgid "Available agents" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:708 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:316 -msgid "Filter by group" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:714 -msgid "Available modules:" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:715 -msgid "Only for type Quiet for downtimes." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:729 -msgid "Agents planned for this downtime" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:744 -msgid "There are no agents" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:780 -msgid "All alerts" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:783 -msgid "Entire agent" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:787 -#: ../../godmode/agentes/planned_downtime.editor.php:892 -msgid "All modules" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/planned_downtime.editor.php:856 -msgid "Add Module:" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:1072 -msgid "Please select a module." -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:111 -#, php-format -msgid "Free space on %s" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:204 -#, php-format -msgid "%s service modules created succesfully" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:207 -#, php-format -msgid "Error creating %s service modules" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:212 -#, php-format -msgid "%s process modules created succesfully" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:215 -#, php-format -msgid "Error creating %s process modules" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:220 -#, php-format -msgid "%s disk space modules created succesfully" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:223 -#, php-format -msgid "Error creating %s disk space modules" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:228 -#, php-format -msgid "%s modules created from components succesfully" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:231 -#, php-format -msgid "Error creating %s modules from components" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:234 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:676 -#, php-format -msgid "%s modules already exist" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:274 -msgid "WMI Explore" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:278 -msgid "Unable to do WMI explorer" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:302 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:794 -msgid "Free space on disk" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:303 -msgid "WMI components" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:305 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 -msgid "Wizard mode" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:358 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 -msgid "Remove from modules list" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:491 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1027 -msgid "Modules list is empty" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:156 -msgid "The agent's name must be the same as the one defined at the console" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:159 -msgid "QR Code Agent view" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:193 -msgid "This agent can be remotely configured" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:196 -msgid "You can remotely edit this agent configuration" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:203 -msgid "Delete agent" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:205 -msgid "Alias" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:208 -msgid "Use alias as name" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:238 -msgid "Only it is show when
the agent is saved." -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:335 -msgid "Autodisable mode" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:363 -msgid "Delete remote configuration file" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:366 +#: ../../general/login_page.php:539 msgid "" -"Delete this conf file implies that for restore you must reactive remote " -"config in the local agent." -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:381 -msgid "Agent icon for GIS Maps." -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -msgid "The SNMP remote plugin doesnt seem to be installed" +"In the config.php file in the variable $config[\"homedir\"] = add the " +"correct path" msgstr "" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -msgid "It is necessary to use some features" +#: ../../general/login_page.php:543 +msgid "Bad defined homeurl or homeurl_static" msgstr "" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 +#: ../../general/login_page.php:544 msgid "" -"Please, install the SNMP remote plugin (The name of the plugin must be " -"snmp_remote.pl)" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:253 -msgid "Remote system doesnt support host SNMP information" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:338 -msgid "The number of bytes read from this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:340 -msgid "The number of bytes written to this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:342 -msgid "The number of read accesses from this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:344 -msgid "The number of write accesses from this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:519 -#, php-format -msgid "Check if the process %s is running or not" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:590 -msgid "Disk use information" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:661 -#, php-format -msgid "%s modules created succesfully" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:666 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:671 -#, php-format -msgid "Error creating %s modules" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 -msgid "Modules created succesfully" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -msgid "If the device is a network device, try with the SNMP Interfaces wizard" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:792 -msgid "Devices" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:795 -msgid "Temperature sensors" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:796 -msgid "Other SNMP data" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:932 -msgid "Device" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:980 -msgid "Temperature" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:62 -msgid "Agents defined in Pandora" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Success deleted agent." -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Could not be deleted." -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:94 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:154 -msgid "Show Agents" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:156 -msgid "Everyone" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:481 -msgid "Remote agent configuration" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:481 -msgid "R" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:597 -msgid "Edit remote config" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:624 -msgid "Enable agent" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:629 -msgid "Disable agent" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:31 -msgid "Agents custom fields manager" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:44 -msgid "The name must not be empty" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:47 -msgid "The name must be unique" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:52 -msgid "Field successfully created" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:69 -msgid "Field successfully updated" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:72 -msgid "There was a problem modifying field" +"In the config.php file in the variable $config[\"homeurl\"] or " +"$config[\"homeurl_static\"] = add the correct path" msgstr "" -#: ../../godmode/agentes/fields_manager.php:82 -msgid "There was a problem deleting field" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:84 -msgid "Field successfully deleted" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:138 -msgid "Create field" -msgstr "" - -#: ../../godmode/agentes/agent_incidents.php:67 -msgid "No incidents associated to this agent" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:78 -msgid "Create a new data server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:80 -msgid "Create a new network server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:82 -msgid "Create a new plugin server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:84 -msgid "Create a new WMI server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:86 -msgid "Create a new prediction server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:148 -msgid "Get more modules in Pandora FMS Library" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:175 -msgid "Nice try buddy" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:272 +#: ../../general/pandora_help.php:23 #, php-format -msgid "There was a problem deleting %s modules, none deleted." +msgid "%s help system" msgstr "" -#: ../../godmode/agentes/module_manager.php:277 -msgid "All Modules deleted succesfully" +#: ../../general/pandora_help.php:72 +msgid "Help system error" msgstr "" -#: ../../godmode/agentes/module_manager.php:281 +#: ../../general/pandora_help.php:77 #, php-format -msgid "There was a problem only deleted %s modules of %s total." -msgstr "" - -#: ../../godmode/agentes/module_manager.php:569 -msgid "D." -msgstr "" - -#: ../../godmode/agentes/module_manager.php:716 -msgid "Non initialized module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:749 -msgid "Enable module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:754 -msgid "Disable module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:769 -msgid "Normalize" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:775 -msgid "Normalize (Disabled)" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:789 -msgid "Create network component (Disabled)" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:91 -msgid "Source module" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:119 -#: ../../godmode/agentes/module_manager_editor_prediction.php:144 -msgid "Select Module" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -msgid "Daily" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:46 -msgid "An error occurred while migrating the malformed planned downtimes" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:47 -msgid "Please run the migration again or contact with the administrator" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:79 -msgid "An error occurred stopping the planned downtime" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:101 -msgid "This planned downtime is running" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:154 -msgid "Execution type" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:156 -msgid "Show past downtimes" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:391 -msgid "Name #Ag." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:397 -#: ../../godmode/agentes/planned_downtime.list.php:446 -msgid "Running" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:400 -#: ../../godmode/agentes/planned_downtime.list.php:456 -msgid "Stop downtime" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:433 -msgid "once" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:442 -msgid "Not running" -msgstr "" - -#: ../../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 "" - -#: ../../godmode/agentes/planned_downtime.list.php:541 -msgid "WARNING: There are malformed planned downtimes" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:541 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "" - -#: ../../godmode/agentes/agent_template.php:69 -msgid "Created by template " -msgstr "" - -#: ../../godmode/agentes/agent_template.php:157 -msgid "Error adding modules" -msgstr "" - -#: ../../godmode/agentes/agent_template.php:159 -msgid "Error adding modules. The following errors already exists: " -msgstr "" - -#: ../../godmode/agentes/agent_template.php:162 -msgid "Modules successfully added" -msgstr "" - -#: ../../godmode/agentes/agent_template.php:189 -msgid "Assign" -msgstr "" - -#: ../../godmode/tag/tag.php:80 -msgid "Number of modules" -msgstr "" - -#: ../../godmode/tag/tag.php:82 -msgid "Number of policy modules" -msgstr "" - -#: ../../godmode/tag/tag.php:100 ../../godmode/tag/edit_tag.php:53 -#: ../../godmode/tag/edit_tag.php:64 -msgid "List tags" -msgstr "" - -#: ../../godmode/tag/tag.php:110 ../../godmode/tag/edit_tag.php:68 -msgid "Tags configuration" -msgstr "" - -#: ../../godmode/tag/tag.php:121 -msgid "Error deleting tag" -msgstr "" - -#: ../../godmode/tag/tag.php:125 -msgid "Successfully deleted tag" -msgstr "" - -#: ../../godmode/tag/tag.php:199 -msgid "Tag name" -msgstr "" - -#: ../../godmode/tag/tag.php:201 -msgid "Detail information" -msgstr "" - -#: ../../godmode/tag/tag.php:202 -msgid "Number of modules affected" -msgstr "" - -#: ../../godmode/tag/tag.php:222 -msgid "Tag details" -msgstr "" - -#: ../../godmode/tag/tag.php:249 -#, php-format -msgid "Emails for the tag: %s" -msgstr "" - -#: ../../godmode/tag/tag.php:264 -#, php-format -msgid "Phones for the tag: %s" -msgstr "" - -#: ../../godmode/tag/tag.php:282 -msgid "No tags defined" -msgstr "" - -#: ../../godmode/tag/tag.php:298 -msgid "Create tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:92 -msgid "Error updating tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:96 -msgid "Successfully updated tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:122 -msgid "Error creating tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:128 -msgid "Successfully created tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:161 -msgid "Update Tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:164 -msgid "Create Tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:187 -msgid "Hyperlink to help information that has to exist previously." -msgstr "" - -#: ../../godmode/tag/edit_tag.php:197 -msgid "Associated Email direction to use later in alerts associated to Tags." -msgstr "" - -#: ../../godmode/tag/edit_tag.php:207 -msgid "Associated phone number to use later in alerts associated to Tags." +"%s help system has been called with a help reference that currently don't " +"exist. There is no help content to show." msgstr "" diff --git a/pandora_console/install.php b/pandora_console/install.php index 77eb8b9e7a..11f932b548 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 80d1ade9ea..b57bd1078f 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.746 -%define release 200609 +%define release 200612 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 52f0f55f79..9e32f3c168 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.746 -%define release 200609 +%define release 200612 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index fb0959023f..a17ab87f79 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.746" -PI_BUILD="200609" +PI_BUILD="200612" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index c2201aaf14..082450a62a 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.746 PS200609"; +my $version = "7.0NG.746 PS200612"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 856f5ee22e..da6248b2ff 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.746 PS200609"; +my $version = "7.0NG.746 PS200612"; # save program name for logging my $progname = basename($0);